/* source-sans-pro */

* {
    margin: 0px;
    padding: 0px
}

:root {
    --error-color: #dc3545;
    --hover-color: #007bff;
}

.login-page {
    height: 80vh;
    background-color: #8fbdd5;
}

.login-box {
    width: 420px;
}

.input-group>.form-control.is-invalid {
    border: none !important;
}

.input-group:has(.form-control.is-invalid) {
    border: 1px solid var(--error-color);
}

.input-group:has(.form-control.is-invalid) .input-group-append {
    margin-left: 0px;
}

.input-group:has(.form-control.is-invalid) .input-group-text {
    border-left: 0px !important;
    color: var(--error-color);
}

.dropdown-menu-right-user a:hover {
    background-color: var(--hover-color);
    color: white;
}

.form-group {
    margin-bottom: 0.75rem;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .col-form-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
    color: #dc3545;
}

span.highlight {
    background: yellow;
    font-weight: bold;
}

.table th,
.table td {
    padding: 0.5rem;
    vertical-align: middle;
}

.table>thead>tr>th:first-child,
.table>tbody>tr>td:first-child {
    padding-left: 0.5rem !important;
}

.table thead .row-heading th {
    background-color: #3c8dbc !important;
    color: #fff;
    vertical-align: middle;
    text-align: center;
}

.my-card-filter {
    padding: 0.5rem !important;
}

.my-card-pagination {
    padding: 0.5rem !important;
}

.col-button-filter .btn-filter {
    color: #ffffff;
}

.col-button-filter .btn-warning.btn-filter,
.col-button-filter .btn-warning.btn-filter:hover {
    color: #000;
}

.col-button-filter .btn-filter:hover {
    color: #fff;
}

.col-button-filter .btn-filter:not(:last-child) {
    margin-right: 0.25rem;
}

.toggle.ios,
.toggle-on.ios,
.toggle-off.ios {
    border-radius: 20rem;
}

.toggle.ios .toggle-handle {
    border-radius: 20rem;
}

.toggle-handle {
    width: 32px;
}

.nav-sidebar .nav-header {
    font-size: .9rem;
    padding: 0.5rem 0.75rem !important;
}

.table .thumb img {
    max-height: 40px;
}

.ntg-avatar {
    margin-top: 0.25rem;
    max-width: 125px;
    margin-bottom: 0;
}

.modal-header {
    padding-top: .5rem;
    padding-bottom: 0.5rem;
    color: #fff;
}

.modal-footer {
    padding-top: .25rem;
    padding-bottom: 0.25rem;
}

td.media img,
td.media video {
    max-width: 100px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    z-index: 1;
}


/* Simple CSS3 Fade-in-down Animation */

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeIn {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.parent:not(:hover) .child.did-fade-in {
    display: block;
    animation: fade-out 1s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}