﻿body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d;
    text-align: left;
    background-color: #eeeeee;
}

.font-grey {
    color: rgba(0, 0, 0, 0.87);
}

.container {
    max-width: 100%;
}

.user-search input /*, select, textarea*/ {
    max-width: 280px;
}

.form-100 {
    max-width: 100%
}

#modal-add-task input,
#modal-add-task select,
#modal-add-task textarea {
    max-width: 100%;
}

.div-user .col-xs-12 {
    padding-top: 10px;
}

h3 {
    margin: 0 0 15px 0;
}

a {
    color: #38a3fc;
}

    a:hover {
        color: #6abafd;
        text-decoration: none;
    }

.box {
    border: none;
    margin-bottom: 24px;
    position: relative;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #6f6f6f;
    background-color: #fff;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
}

    .box .content {
        padding: 1.5rem;
    }

.alert {
    margin-top: 15px;
}

.section {
    background-color: #eee;
    margin: 0 -15px;
    padding: 15px;
    margin-bottom: 10px;
}

.subbox {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
}

.font-red {
    color: red;
}

.font-green {
    color: green;
}

.div-hover {
    overflow: hidden;
    height: 1157px;
}

    .div-hover:hover {
        overflow-y: scroll;
    }


.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
    padding: 3px 8px;
}

.table tbody > tr > td {
    vertical-align: middle;
}

h3, .h3 {
    font-size: 20px;
}

table tr.selected td {
    background-color: #a6b4cd;
}

.table thead th {
    border-bottom: none !important;
    border-top: none !important;
}


.div-user .input-group {
    width: 100px;
    float: left;
}

.loader-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20000;
    background-color: rgba(0, 0, 0, 0.6);
}

    .loader-wrapper .loader {
        position: relative;
        left: 50%;
        top: 50%;
        height: 100px;
        width: 100px;
        margin: -50px 0 0 -50px;
        border: 3px solid transparent;
        border-top-color: #3498db;
        border-bottom-color: #3498db;
        border-radius: 50%;
        z-index: 2;
        -webkit-animation: spin 2s linear infinite;
        -moz-animation: spin 2s linear infinite;
        -o-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }

        .loader-wrapper .loader:before {
            content: "";
            position: absolute;
            top: 2%;
            bottom: 2%;
            left: 2%;
            right: 2%;
            border: 3px solid transparent;
            z-index: 2;
            border-top-color: #db213a;
            border-radius: 50%;
            -webkit-animation: spin 3s linear infinite;
            -moz-animation: spin 3s linear infinite;
            -o-animation: spin 3s linear infinite;
            animation: spin 3s linear infinite;
        }

        .loader-wrapper .loader:after {
            content: "";
            position: absolute;
            top: 5%;
            bottom: 5%;
            left: 5%;
            right: 5%;
            border: 3px solid transparent;
            border-top-color: #dec52d;
            z-index: 2;
            border-radius: 50%;
            -webkit-animation: spin 1.5s linear infinite;
            -moz-animation: spin 1.5s linear infinite;
            -o-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
        }

.table-hover tbody tr {
    cursor: pointer;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@media (max-width:768px) {
    .box {
        margin-left: -10px;
        margin-right: -10px;
    }

    .div-user .table-bordered tr td:first-child {
        display: none;
    }
}

.log-response {
    cursor: pointer;
    padding: 25px 15px 0px 15px;
    height: 100%;
}

    .log-response:hover {
        background-color: rgba(221, 221, 221, 0.2);
    }

.tcontainer {
    position: fixed;
    z-index: 2000000;
    right: 20px;
    bottom: 15px;
    min-width: 250px;
}

.toast {
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 2px;
    padding: 16px;
    margin-top: 15px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

    .toast.show {
        visibility: visible;
        opacity: 1;
    }

    .toast.error {
        background-color: #e74c3c;
    }


/**************************00*/
.page {
    margin-left: 220px;
    overflow: hidden;
    padding: 90px 12px 65px;
    min-height: 100vh;
}


.navbar-custom {
    padding: 0 24px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 13px 0 rgba(154,161,171,.15);
    box-shadow: 0 0 13px 0 rgba(154,161,171,.15);
    min-height: 70px;
    position: fixed;
    left: 220px;
    top: 0;
    right: 0;
    z-index: 1001;
}


    .navbar-custom .user-search {
        padding: calc(32px / 2) 0;
        overflow: hidden;
    }

        .navbar-custom .user-search .input-group {
            width: 400px;
            float: left;
        }

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #c1c9d0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control.custom, .user-search .form-control {
    border: none;
    padding-right: 20px;
    background-color: #f1f3fa;
    -webkit-box-shadow: none;
    box-shadow: none
}

    .user-search .form-control.is-invalid:focus,
    .user-search .form-control.is-valid:focus,
    .user-search .form-control:invalid:focus,
    .user-search .form-control:valid:focus,
    .form-control.custom.is-invalid:focus,
    .form-control.custom.is-valid:focus,
    .form-control.custom:invalid:focus,
    .form-control.custom:valid:focus {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        background-color: #f1f3fa;
    }


.form-control.icon {
    padding-left: 40px;
}

    .form-control.icon + i {
        position: absolute;
        z-index: 9;
        font-size: 16px;
        line-height: 38px;
        left: 10px;
        top: 0;
    }

.form-control::-webkit-input-placeholder {
    color: #adb5bd;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #adb5bd;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #adb5bd;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #adb5bd;
    opacity: 1
}

.form-control::placeholder {
    color: #adb5bd;
    opacity: 1
}

.sidebar {
    background: #008dff;
    width: 220px;
    z-index: 10;
    bottom: 0;
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 0 13px 0 rgba(154,161,171,.15);
    box-shadow: 0 0 13px 0 rgba(154,161,171,.15);
}

    .sidebar .logo {
        display: block;
        line-height: 70px;
        width: 260px;
        position: fixed;
        top: 0;
        max-width: 100%;
        padding: 0 20px;
    }

        .sidebar .logo img {
            max-width: 100%;
        }

ul.menu {
    padding: 0;
}

    ul.menu li {
        list-style: none;
        position: relative;
    }

        ul.menu li a {
            color: #fff;
            display: block;
            padding: 15px 20px;
            font-size: 13px;
            position: relative;
            -webkit-transition: all .4s;
            transition: all .4s;
            cursor: pointer;
        }

            ul.menu li a span {
                vertical-align: middle;
            }

            ul.menu li a i:first-child {
                display: inline-block;
                line-height: 1.0625rem;
                margin: 0 10px 0 0;
                font-size: 1.1rem;
                vertical-align: middle;
                width: 20px;
                text-align: center;
                font-size: 21px;
            }

        ul.menu li:hover, ul.menu li.active {
            background: #0070cc;
        }

            ul.menu li.active::before {
                width: 4px;
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                background: #ffb900;
                content: '';
                z-index: 11;
            }



    ul.menu .active > a .arrow {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    ul.menu .arrow {
        -webkit-transition: -webkit-transform .15s;
        transition: -webkit-transform .15s;
        transition: transform .15s;
        transition: transform .15s,-webkit-transform .15s;
        position: absolute;
        right: 30px;
        display: inline-block;
        text-rendering: auto;
        line-height: 1.5rem;
        font-size: 1.1rem;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        font-size: 11px;
        vertical-align: middle;
    }

    ul.menu ul {
        margin: 0;
        padding: 0;
        display: none;
    }

        ul.menu ul li a {
            padding: 8px 30px 8px 65px;
            font-size: .89rem;
        }

.nav-user {
    padding: calc(31px / 2) 20px calc(31px / 2) 57px !important;
    text-align: left !important;
    position: relative;
    background-color: #fafbfd;
    border: 1px solid #f1f3fa;
    border-width: 0 1px;
    min-height: 70px;
    float: right;
    color: #98A6B0;
}

    .nav-user .name {
        display: block;
        font-weight: 600;
    }

    .nav-user .role {
        display: block;
        font-size: 12px;
        margin-top: -3px;
    }

    .nav-user .avatar {
        position: absolute;
        top: 13px;
        left: 13px;
        font-size: 32px;
    }

    .nav-user .fa-user-circle:hover {
        cursor: pointer;
        color: #343a40;
    }


.nav-bar {
    display: none;
}

.sidebar .hide {
    display: none;
}

@media(max-width:767px) {
    .sidebar {
        position: absolute;
        left: -220px;
        z-index: 1002;
    }

    .page {
        margin-left: 0;
        padding: 163px 12px 65px;
    }

    .navbar-custom {
        left: 0;
        position: absolute;
    }

    .nav-user {
        border-bottom-width: 1px;
    }

    .user-search {
        display: block;
        float: left;
        width: 100%;
    }

    .navbar-custom .user-search input {
        max-width: 100%;
    }

    .navbar-custom .user-search .input-group {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }

    .nav-bar {
        display: inline-block;
        font-size: 36px;
        margin-top: 11px;
        position: absolute;
        top: 0px;
        right: -55px;
    }

    .sidebar .hide {
        display: inline-block;
        position: absolute;
        top: 0px;
        font-size: 33px;
        right: -43px;
        padding: 0px 12px;
        background-color: #313a46;
    }
}

.btn {
    border-radius: 3px;
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12) !important;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12) !important;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12) !important;
    border: none !important;
}

.btn-primary {
    color: #fff;
    background-color: #38a3fc !important;
    border: none !important;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #6abafd !important;
        border: none !important;
    }

.widget-icon {
    color: #727cf5;
    font-size: 20px !important;
    background-color: rgba(114,124,245,.25);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px !important;
    border-radius: 3px;
    display: inline-block !important;
    position: absolute;
    right: 10px;
    top: 10px;
}



.box h5 {
    font-weight: 400;
    color: #98a6ad !important;
    margin-top: 0 !important;
    font-size: .9375rem;
}

.to-do {
    margin-bottom: 3px;
}

    .to-do a {
        float: right;
    }

    .to-do b {
        display: inline-block;
        width: 21px;
    }

input[type="checkbox"].custom, input[type="radio"].custom {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.175rem;
    opacity: 0;
}

    input[type="checkbox"].custom + label, input[type="radio"].custom + label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
        margin-left: 24px;
    }

        input[type="checkbox"].custom + label::before {
            border-radius: .25rem;
        }

        input[type="radio"].custom + label::before {
            border-radius: 50%;
        }

        input[type="checkbox"].custom + label::before, input[type="checkbox"].custom + label, input[type="radio"].custom + label::before, input[type="radio"].custom + label {
            -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
            transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
            transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        }

            input[type="checkbox"].custom + label::before, input[type="radio"].custom + label::before {
                position: absolute;
                top: .175rem;
                left: -1.5rem;
                display: block;
                width: 1rem;
                height: 1rem;
                pointer-events: none;
                content: "";
                background-color: #fff;
                border: #dee2e6 solid 1px;
            }

            input[type="checkbox"].custom + label::after, input[type="radio"].custom + label::after {
                position: absolute;
                top: .175rem;
                left: -1.5rem;
                display: block;
                width: 1rem;
                height: 1rem;
                content: "";
                background: no-repeat 50%/50% 50%;
            }

    input[type="checkbox"].custom:checked + label::before, input[type="radio"].custom:checked + label::before {
        color: #727cf5;
        border-color: #727cf5;
        background-color: #727cf5;
    }

    input[type="checkbox"].custom:checked + label::after {
        content: "\f00c";
        display: inline-block;
        font-variant: normal;
        font-family: "Font Awesome 5 Free";
        font-style: normal;
        font-weight: 900;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #fff;
        font-size: 12px !important;
        text-align: center;
        top: 2px;
    }



    input[type="radio"].custom:checked + label::after {
        content: "\f111";
        display: inline-block;
        font-variant: normal;
        font-family: "Font Awesome 5 Free";
        font-style: normal;
        font-weight: 900;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #fff;
        font-size: 8px !important;
        text-align: center;
        top: 5.2px;
    }


















.highlight {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: #f7f7f9;
    -webkit-transition: all .4s;
    transition: all .4s;
}


.table.custom td, .table.custom th {
    padding: .8rem;
    vertical-align: top;
    border-top: 1px solid #eef2f7;
}

.box-wrapper {
    height: 100%;
    padding-bottom: 24px;
}

    .box-wrapper .box {
        margin-bottom: 0;
        height: 100%;
    }

.box .header i {
    font-size: 15px;
    margin-right: 10px;
    vertical-align: middle;
}

    .box .header i + span {
        vertical-align: middle;
    }

.box .header {
    background-color: #fafafa;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
    font-size: 12px;
    color: #6f6f6f;
    padding: 11px 16px;
    height: 40px;
    position: relative;
    z-index: 4;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

    .box .header .action {
        float: right;
        cursor: pointer;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        color: #38a3fc;
        text-transform: uppercase;
        font-weight: 500;
    }

        .box .header .action i {
            margin-right: 3px;
        }

        .box .header .action:hover {
            color: #6abafd;
        }

.box .header .action select {
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
    margin-top: -3px;
}

.btn-radio {
    text-align: center;
    display: inline-block;
    margin: 0 5px;
}

    .btn-radio input[type="radio"], .btn-radio-alphabet input[type="radio"] {
        display: none;
    }

    .btn-radio label {
        display: inline-block;
        background-color: #404040;
        color: #fff;
        padding: 11px 22px 0 22px;
        text-transform: uppercase;
        cursor: pointer;
        font-weight: 600;
        padding: 12px 25px 0 25px;
        font-size: 18px;
        height: 47px;
    }

    .btn-radio .icon {
        background-color: #fff;
        border: 1px solid #404040;
        float: left;
        height: 47px;
        width: 25px;
    }

        .btn-radio-alphabet label .radio-alphabet.fa-times, .btn-radio .icon .fa-times {
            color: #e44949;
        }

        .btn-radio .icon .fa {
            padding-top: 14px;
            font-size: 19px;
        }

        .btn-radio-alphabet label .radio-alphabet.fa-check, .btn-radio .icon .fa-check {
            color: #2bb673;
        }

.btn-radio-alphabet {
    display: block;
    text-align: left;
    margin: -2px 0;
}

    .btn-radio-alphabet label {
        display: table;
        background-color: #fff;
        color: #404040;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

        .btn-radio-alphabet label .radio-alphabet {
            background-color: #404040;
            color: #fff;
            font-size: 21px;
            width: 29px;
            text-align: center;
            display: table-cell;
            float: none;
            vertical-align: middle;
            line-height: 30px;
        }

    .btn-radio-alphabet .radio-name {
        display: table-cell;
        padding-left: 9px;
        vertical-align: middle;
        border-left: 1px solid #fff;
    }

.box.box-invert {
    background-color: #fafbfe;
    -webkit-box-shadow: 0 0 10px 0 rgba(154,161,171,.15);
    box-shadow: 0 0 10px 0 rgba(154,161,171,0.55);
}

input.switch {
    display: none;
}

    input.switch:checked + label {
        background-color: #727cf5;
    }

    input.switch + label {
        width: 56px;
        height: 24px;
        background-color: #fa5c7c;
        background-image: none;
        border-radius: 2rem;
        cursor: pointer;
        display: inline-block;
        text-align: center;
        position: relative;
        -webkit-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out;
    }

        input.switch + label:before, input.switch :checked + label:before {
            color: #fff !important;
        }

    input.switch:checked + label:before {
        color: #fff;
        content: attr(data-on-label);
        right: auto;
        left: 4px;
    }

    input.switch + label:before {
        color: #313a46;
        content: attr(data-off-label);
        display: block;
        font-family: inherit;
        font-weight: 600;
        font-size: .75rem;
        line-height: 24px;
        position: absolute;
        right: 3px;
        margin: 0 .21667rem;
        top: 0;
        text-align: center;
        min-width: 1.66667rem;
        overflow: hidden;
        -webkit-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out;
    }

    input.switch:checked + label:after {
        left: 34px;
        background-color: #f1f3fa;
    }

    input.switch + label:after {
        content: '';
        position: absolute;
        left: 4px;
        background-color: #f1f3fa;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 2rem;
        height: 18px;
        width: 18px;
        top: 3px;
        -webkit-transition: all .1s ease-in-out;
        transition: all .1s ease-in-out;
    }



.modal-header {
    border: none;
    background-color: #38a3fc;
}

    .modal-header .close {
        color: #fff;
        opacity: 1 !important;
        text-shadow: none;
        outline: none !important;
        font-weight: 500;
    }

.modal-title {
    color: #fff;
    font-size: 16px;
}

.modal-content {
    box-shadow: 0 5px 10px 0 rgba(106,117,130,.75);
    border: 0;
    border-radius: 2px;
}

.modal-header {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.modal-footer {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}


.form-control.light {
    border-radius: unset;
    border: none;
    border-bottom: 1px solid #b2b6ba;
    padding: 5px 0px;
    line-height: 1;
    height: calc(1em + 2px + 10px);
}

    .form-control.light:active, .form-control.light:focus {
        border-bottom: 2px solid #38a3fc;
        padding: 5px 0 4px 0px;
    }

    .form-control.light:disabled {
        opacity: 0.5;
        padding-left: 3px !important
    }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.timetable .content {
    background-color: #fafafa;
}

.timetable .right {
    margin-left: 70px;
}

.timetable .left {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fafafa;
    text-align: center;
    position: absolute;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
    z-index: 2;
}

    .timetable .left .fas {
        color: #9a9a9a;
        font-size: 22px;
        line-height: 44px;
    }

.timetable .item:after {
    content: "";
    background-color: #e0e0e0;
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    left: 22px;
    z-index: 1;
}

.timetable .item {
    position: relative;
    padding: 20px 0;
}

    .timetable .item:first-child {
        padding-top: 0;
    }

    .timetable .item:last-child {
        padding-bottom: 0;
    }

.timetable .name {
    position: relative;
    padding-right: 70px;
    margin-bottom: 15px;
    color: #9a9a9a;
    font-weight: 500;
}

.timetable .date {
    position: absolute;
    right: 0;
    color: #9a9a9a;
    font-weight: 500;
    top: 0;
}

.payments .header .btn-xs {
    margin-top: -6px;
    margin-right: 10px;
}

.payments table {
    width: 100%;
}

.payments th {
    font-size: 12px;
    padding: 7px 10px;
    color: #3f3f3f;
    font-weight: 500;
}

.payments td {
    font-size: 12px;
    padding: 7px 10px;
    color: #6f6f6f;
}

.payments tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.b {
    font-size: 12px;
    padding: 7px 0;
    color: #3f3f3f;
    font-weight: 500;
    display: block;
}

.btn-toggle-select {
    position: absolute;
    top: -15px;
    right: 3px;
    cursor: pointer;
}

    .btn-toggle-select:hover {
        color: #38a3fc;
    }

#notifications-container {
    position: absolute;
    right: 0;
    border-radius: 8px;
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

#notifications {
    background: #fff;
    min-width: 400px;
    max-height: 600px;
    padding: 10px;
    border-radius: 8px;
}

#notification-count {
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    background-color: #f02849;
    width: 20px;
    display: inline-block;
    height: 20px;
    position: absolute;
    right: -9px;
    font-weight: 500;
    text-align: center;
    line-height: 20px;
}

.notification {
    color: #212529;
    border-radius: 8px;
    cursor: pointer;
    margin: 8px;
    padding: 8px;
    padding-left: 74px;
    position: relative;
    display: block;
}

    .notification:hover {
        background-color: rgba(0,0,0,0.05);
    }

    .notification .time {
        display: block;
        font-size: 13px;
    }

    .notification .icon {
        position: absolute;
        display: inline-block;
        width: 50px;
        height: 50px;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
        color: rgb(0, 141, 255);
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
        left: 8px;
        top: 50%;
        margin-top: -25px;
    }

.combobox-container .dropdown-toggle {
    position: absolute;
    right: 0;
}

.callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

.callout-info {
    border-left-color: #008dff;
}
