body {
    font-family: 'Rubik', sans-serif !important;
}

.input-group {
    margin: 10px;
}

.popover {
    font-family: 'Rubik', sans-serif !important;
    border: 0px !important;
}

.popover-title {
    color: #6b7280 !important;
    background-color: #f5f7fa !important;
    font-weight: bold;
}

[data-toggle="tooltip"]:hover {
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7 !important;
    border-color: #2e6da4;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de !important;
    border-color: #46b8da;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f !important;
    border-color: #d43f3a;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e !important;
    border-color: #eea236;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c !important;
    border-color: #4cae4c;
}

.panel {
    margin-bottom: 0px;
}

.btn.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #e5e7eb;
    transition: all 0.5s;
}

.btn.btn-default:hover {
    color: #333;
    background-color: #e5e7eb;
    border-color: #e5e7eb;
}

.btn.btn-primary {
    color: #fff;
    background-color: #337ab7 !important;
    border-color: #2e6da4 !important;
    transition: all 0.5s;
}

.btn.btn-primary:hover {
    color: #fff;
    background-color: #286090 !important;
    border-color: #204d74 !important;
}

select {
    border: 1px solid #e5e7eb !important;
}

input {
    border: 1px solid #e5e7eb !important;
}

select:focus {
    box-shadow: none !important;
}

input {
    box-shadow: none !important;
}

.nav-pills>li>a {
    transition: all 0.3s;
}

.nav-pills>li.active>a {
    background-color: transparent !important;
    color: #1f2937 !important;
    font-weight: bold;
}

.nav-pills>li>a:hover {
    background-color: #f5f7fa !important;
}

tr,
th,
td {
    border-top: 0px !important;
    border-bottom: 0px !important;
}


.table>tbody>tr.isActive>td {
    background-color: rgb(219 234 254) !important;
    color: #1f2937 !important;
}

.list-group-item {
    border: 0px !important;
    transition: all 0.3s;
}

.list-group-item.active {
    background-color: #f5f7fa !important;
    color: #1f2937 !important;
    font-weight: bold;
}

.table-responsive {
    border: 0px !important;
}

.rotate {
    animation: rotation 3s infinite;
    animation-timing-function: cubic-bezier(.77, 0, .175, 1);
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}