@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

html {
    position: relative;
    min-height: 100%;
}

body {
    height: 100%;
    font-family: 'Nunito', sans-serif, Helvetica !important;
}

a:focus {
    outline: none;
}

#wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#wrapper #content-wrapper {
    background-color: #f8f9fc;
    width: 100%;
    overflow-x: hidden;
}

#wrapper #content-wrapper #content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.container,
.container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@-webkit-keyframes growIn {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes growIn {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.animated--grow-in,
.sidebar .nav-item .collapse {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated--fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}

.bg-gradient-primary {
    background-color: #27598e;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #27598e), to(#224abe));
    background-image: linear-gradient(180deg, #27598e 10%, #224abe 100%);
    background-size: cover;
}

.bg {
    background-color: #021832;
}

body.bg-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

.bg-login {
    background-image: url('../images/login.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

img.login-logo {
    max-width: 40%;
}

.o-hidden {
    overflow: hidden !important;
}

.text-xs {
    font-size: .7rem;
}

.text-lg {
    font-size: 1.2rem;
}

.card-info {
    border-left: 0.25rem solid #43b1ce !important;
    font-weight: 600;
}

.card-info h5 {
    color: #43b1ce;
    font-size: 19px;
}

.card-footer {
    background-color: rgba(146, 204, 217, 0.1) !important;
}

.text-gray-900 {
    color: #3a3b45 !important;
}


.progress-sm {
    height: .5rem;
}

.rotate-15 {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.rotate-n-15 {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.rotate-n-45 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.dropdown .dropdown-menu {
    font-size: 0.85rem;
}

.dropdown .dropdown-menu .dropdown-header {
    font-weight: 800;
    font-size: 0.65rem;
    color: #b7b9cc;
}


.sidebar .nav-item.dropdown .dropdown-toggle::after,
.topbar .nav-item.dropdown .dropdown-toggle::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after,
.topbar .nav-item.dropdown.show .dropdown-toggle::after {
    content: '\f107';
}

.sidebar .nav-item .nav-link,
.topbar .nav-item .nav-link {
    position: relative;
}

.sidebar .nav-item .nav-link .badge-counter,
.topbar .nav-item .nav-link .badge-counter {
    position: absolute;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    right: .25rem;
    margin-top: -.25rem;
}

.sidebar .nav-item .nav-link .img-profile,
.topbar .nav-item .nav-link .img-profile {
    height: 2rem;
    width: 2rem;
}

.topbar {
    height: 4.375rem;
}

.topbar #sidebarToggleTop {
    height: 2.5rem;
    width: 2.5rem;
}

.topbar #sidebarToggleTop:hover {
    background-color: #eaecf4;
}

.topbar #sidebarToggleTop:active {
    background-color: #dddfeb;
}

.topbar .topbar-divider {
    width: 0;
    border-right: 1px solid #e3e6f0;
    height: calc(4.375rem - 2rem);
    margin: auto 1rem;
}

.topbar .nav-item .nav-link {
    height: 4.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0.75rem;
}

.topbar .nav-item .nav-link:focus {
    outline: none;
}

.topbar .nav-item:focus {
    outline: none;
}

.topbar .dropdown {
    position: static;
}

.topbar .dropdown .dropdown-menu {
    width: calc(100% - 1.5rem);
    right: 0.75rem;
}

.topbar .dropdown-list {
    padding: 0;
    border: none;
    overflow: hidden;
}

.topbar .dropdown-list .dropdown-header {
    background-color: #27598e;
    border: 1px solid #27598e;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #fff;
}

.topbar .dropdown-list .dropdown-item {
    white-space: normal;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-left: 1px solid #e3e6f0;
    border-right: 1px solid #e3e6f0;
    border-bottom: 1px solid #e3e6f0;
    line-height: 1.3rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image {
    position: relative;
    height: 2.5rem;
    width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
    height: 2.5rem;
    width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator {
    background-color: #eaecf4;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 0.125rem solid #fff;
}

.topbar .dropdown-list .dropdown-item .text-truncate {
    max-width: 10rem;
}

.topbar .dropdown-list .dropdown-item:active {
    background-color: #eaecf4;
    color: #3a3b45;
}

@media (min-width: 576px) {
    .topbar .dropdown {
        position: relative;
    }

    .topbar .dropdown .dropdown-menu {
        width: auto;
        right: 0;
    }

    .topbar .dropdown-list {
        width: 20rem !important;
    }

    .topbar .dropdown-list .dropdown-item .text-truncate {
        max-width: 13.375rem;
    }
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
    color: #d1d3e2;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
    color: #b7b9cc;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:active {
    color: #858796;
}

.navbar .btn-link {
    font-weight: 400;
    color: #1da7b1;
    text-decoration: none;
}

.no-arrow a {
    color: #1da7b1;
}

@media (min-width: 768px) {
    .dropdown.no-arrow .dropdown-toggle::after {
        display: none;
    }
}

.sidebar {
    width: 6.5rem;
    min-height: 100vh;
}

.sidebar a,
.sidebar-heading {
    color: #fff;
}

.sidebar .nav-item {
    position: relative;
}

.sidebar .nav-item .nav-link {
    text-align: center;
    padding: 0.75rem 1rem;
    width: 6.5rem;
}

.sidebar .nav-item .nav-link span {
    font-size: 0.65rem;
    display: block;
}

.sidebar .nav-item.active .nav-link {
    font-weight: 700;
}

.sidebar .nav-item .collapse {
    position: absolute;
    left: calc(6.5rem + 1.5rem / 2);
    z-index: 1;
    top: 2px;
}

.sidebar .nav-item .collapse .collapse-inner {
    border-radius: 0.35rem;
    -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.sidebar .nav-item .collapsing {
    display: none;
    -webkit-transition: none;
    transition: none;
}

.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
    padding: .5rem 0;
    min-width: 10rem;
    font-size: 0.85rem;
    margin: 0;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
    margin: 0;
    white-space: nowrap;
    padding: .5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.65rem;
    color: #b7b9cc;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item {
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    margin: 0 0.5rem;
    display: block;
    color: #3a3b45;
    text-decoration: none;
    border-radius: 0.35rem;
    white-space: nowrap;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
    background-color: #eaecf4;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
    background-color: #dddfeb;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
    color: #4e73df;
    font-weight: 700;
}

.sidebar #sidebarToggle {
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.45);
    color: rgba(0, 0, 0, 0.9);
}

.sidebar #sidebarToggle::after {
    font-weight: 900;
    opacity: 0.4;
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    margin-right: 0.1rem;
}

.sidebar #sidebarToggle:hover {
    text-decoration: none;
}

.sidebar #sidebarToggle:focus {
    outline: none;
}

.sidebar.toggled {
    width: 0 !important;
    overflow: hidden;
}

.sidebar.toggled #sidebarToggle::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin-left: 0.25rem;
}

.sidebar .sidebar-brand {
    height: 4.375rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.5rem 1rem;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
}

.sidebar .sidebar-brand .sidebar-brand-icon i {
    font-size: 2rem;
}

.sidebar .sidebar-brand .sidebar-brand-text {
    display: none;
}

.sidebar hr.sidebar-divider {
    margin: 0.25rem 0rem;
}

.sidebar .sidebar-heading {
    text-align: center;
    padding: 0.5rem 1rem 0 1rem;
    font-size: 0.85rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .sidebar {
        width: 14rem !important;
    }

    .sidebar .nav-item .collapse {
        position: relative;
        left: 0;
        z-index: 1;
        top: 0;
        -webkit-animation: none;
        animation: none;
    }

    .sidebar .nav-item .collapse .collapse-inner {
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .sidebar .nav-item .collapsing {
        display: block;
        -webkit-transition: height 0.15s ease;
        transition: height 0.15s ease;
    }

    .sidebar .nav-item .collapse,
    .sidebar .nav-item .collapsing {
        margin: 0 1rem;
    }

    .sidebar .nav-item .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.35rem 1rem;
        width: 14rem;
    }

    .sidebar .nav-item .nav-link i {
        font-size: 0.85rem;
        margin-right: 0.25rem;
    }

    .sidebar .nav-item .nav-link span {
        font-size: 0.85rem;
        display: inline;
    }

    .sidebar .nav-item .nav-link[data-toggle="collapse"]::after {
        width: 1rem;
        text-align: center;
        float: right;
        vertical-align: 0;
        border: 0;
        font-weight: 900;
        content: '\f142';
        font-family: 'Font Awesome 5 Free';
    }

    .sidebar .sidebar-brand .sidebar-brand-icon i {
        font-size: 2rem;
    }

    .sidebar .sidebar-brand .sidebar-brand-text {
        display: inline;
    }

    .sidebar .sidebar-heading {
        text-align: left;
    }

    .sidebar.toggled {
        overflow: visible;
        width: 6.5rem !important;
    }

    .sidebar.toggled .nav-item .collapse {
        position: absolute;
        left: calc(6.5rem + 1.5rem / 2);
        z-index: 1;
        top: 2px;
        -webkit-animation-name: growIn;
        animation-name: growIn;
        -webkit-animation-duration: 200ms;
        animation-duration: 200ms;
        -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
        animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    }

    .sidebar.toggled .nav-item .collapse .collapse-inner {
        -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
        box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
        border-radius: 0.35rem;
    }

    .sidebar.toggled .nav-item .collapsing {
        display: none;
        -webkit-transition: none;
        transition: none;
    }

    .sidebar.toggled .nav-item .collapse,
    .sidebar.toggled .nav-item .collapsing {
        margin: 0;
    }

    .sidebar.toggled .nav-item:last-child {
        margin-bottom: 1rem;
    }

    .sidebar.toggled .nav-item .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
        width: 6.5rem;
    }

    .sidebar.toggled .nav-item .nav-link span {
        font-size: 0.65rem;
        display: block;
    }

    .sidebar.toggled .nav-item .nav-link i {
        margin-right: 0;
    }

    .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
        display: none;
    }

    .sidebar.toggled .sidebar-brand .sidebar-brand-icon i {
        font-size: 2rem;
    }

    .sidebar.toggled .sidebar-brand .sidebar-brand-text {
        display: none;
    }

    .sidebar.toggled .sidebar-heading {
        text-align: center;
    }
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

.card .card-header .dropdown {
    line-height: 1;
}

.card .card-header .dropdown .dropdown-menu {
    line-height: 1.5;
}

.card .card-header[data-toggle="collapse"] {
    text-decoration: none;
    position: relative;
    padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

.card .card-header[data-toggle="collapse"]::after {
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 1.725rem;
    line-height: 51px;
    font-weight: 900;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    color: #d1d3e2;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
}

.card .card-header[data-toggle="collapse"].collapsed {
    border-radius: 0.35rem;
}

.card .card-header[data-toggle="collapse"].collapsed::after {
    content: '\f105';
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: rgb(8, 29, 134);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(8, 29, 134, 0.25);
}

.user .form-control-user {
    border-radius: 10rem;
    padding: 1.5rem 1rem;
}

.user .btn-user {
    font-size: 0.9rem;
    border-radius: 10rem;
    padding: 0.75rem 1rem;
}

.btn-user {
    color: #ffffff;
    background-color: #21217e;
    border-color: #21217e;
}

.btn-user:hover,
.btn-user:focus {
    color: #ffffff;
    background-color: #0c0c6f;
    border-color: #0c0c6f;
}

.btn-user:not(:disabled):not(.disabled).active,
.btn-user:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0c0c6f;
    border-color: #0c0c6f;
}

footer.sticky-footer {
    color: #214150;
    font-weight: 600;
    padding: 2rem 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

footer.sticky-footer a,
footer.sticky-footer a:hover,
footer.sticky-footer a:focus,
footer.sticky-footer a:active {
    color: #214150;
    text-decoration: underline;
}

footer.sticky-footer .copyright {
    line-height: 1;
    font-size: 0.8rem;
}

body.sidebar-toggled footer.sticky-footer {
    width: 100%;
}

.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.show>.btn.dropdown-toggle:focus {
    box-shadow: unset;
}

@media (min-width: 768px) {
    .sidebar.toggled .nav-item .collapse {
        background: #e27c4d !important;
        border-radius: 6px !important;
    }

    .sidebar.toggled .nav-item .collapse.show .nav-link {
        width: 150px !important;
    }

    .sidebar.toggled .nav-item .collapse.show .nav-link span {
        font-size: 12px !important;
    }

    .sidebar.toggled .nav-item .collapse.show .nav-item {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .nav-item .collapse {
        background: #e27c4d !important;
        border-radius: 6px !important;
    }

    .nav-item .collapse.show .nav-link {
        width: 150px !important;
    }

    .nav-item .collapse.show .nav-link span {
        font-size: 12px !important;
    }

    .nav-item .collapse.show .nav-item {
        margin-bottom: 0 !important;
    }
}

.swal-text {
    text-align: center;
}

.fc-basic-view .fc-body .fc-row {
    height: 2.45em !important;
    min-height: 2.45em !important;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    font-weight: 500;
    font-family: monospace;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.55em !important;
}

.fc-prev-button,
.fc-next-button,
.fc-month-button,
.fc-agendaDay-button,
.fc-prev-button:hover,
.fc-next-button:hover,
.fc-month-button:hover,
.fc-agendaDay-button:hover,
.fc-prev-button:active,
.fc-next-button:active,
.fc-month-button:active,
.fc-agendaDay-button:active,
.fc-prev-button:focus,
.fc-next-button:focus,
.fc-month-button:focus,
.fc-agendaDay-button:focus {
    font-size: 0.75rem !important;
    background: none !important;
    border: none !important;
    color: #43b1ce;
}

.fc-center h2 {
    font-size: 1.25rem;
    text-transform: capitalize;
}

.fc-today {
    background: #dce9fd !important;
}

.fc-ltr .fc-axis {
    font-size: 0.8rem;
    text-align: center;
}

.fc-event,
.fc-event-dot {
    background: #43b1ce !important;
    border-color: #43b1ce !important;
}

.fc-scroller {
    height: 100%;
    overflow: hidden !important;
}

.fc-day-grid-event .fc-content {
    font-size: 0.7rem;
}

.modal-header {
    padding: 0.4rem 1rem;
}

.div-accesorapido {
    margin-bottom: 1rem;
}

.div-accesorapido:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.btn-accesorapido {
    color: #fff;
    background-color: #021832;
    border-color: #021832;
    text-align: center;
    display: block;
    width: 100%;

    text-decoration: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-accesorapido:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0b557e;
    border-color: #0b557e;
}

.btn-accesorapido:not(:disabled):not(.disabled).active,
.btn-accesorapido:not(:disabled):not(.disabled):active,
.show>.btn-accesorapido.dropdown-toggle {
    color: #fff;
    text-decoration: none;
    background-color: #054568;
    border-color: #054568;
}

#time {
    font-family: monospace;
}

.custom-file-input~.custom-file-label::after {
    content: "Elegir";
}

.select2-selection__rendered:only-child>li.select2-search--inline .select2-search__field,
.select2-selection__rendered:only-child>li.select2-search--inline {
    width: 100% !important;
}

.select2-container--bootstrap .select2-results__option[aria-selected=true] {
    background-color: #e8e8e8 !important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background-color: #337ab7 !important;
    color: #fff;
}

.fa-spin-hover:hover i {
    animation: fa-spin 2s infinite linear !important;
}

@-webkit-keyframes fa-spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

@keyframes fa-spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}



.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid #4e73df !important;
}

.border-left-secondary {
    border-left: 0.25rem solid #858796 !important;
}

.border-bottom-secondary {
    border-bottom: 0.25rem solid #858796 !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-bottom-success {
    border-bottom: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-bottom-info {
    border-bottom: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-bottom-warning {
    border-bottom: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

.border-bottom-danger {
    border-bottom: 0.25rem solid #e74a3b !important;
}

.border-left-light {
    border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
    border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
    border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
    border-bottom: 0.25rem solid #5a5c69 !important;
}

.text-gray-100 {
    color: #f8f9fc !important;
}

.text-gray-200 {
    color: #eaecf4 !important;
}

.text-gray-300 {
    color: #dddfeb !important;
}

.text-gray-400 {
    color: #d1d3e2 !important;
}

.text-gray-500 {
    color: #b7b9cc !important;
}

.text-gray-600 {
    color: #858796 !important;
}

.text-gray-700 {
    color: #6e707e !important;
}

.text-gray-800 {
    color: #5a5c69 !important;
}

.text-gray-900 {
    color: #3a3b45 !important;
}

.shadow {
    box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important;
}

.bg-enviado {
    background-color: #c3e6cb;
}

.bg-encola {
    background-color: #ffeeba;
}

.bg-anulado {
    background-color: #bee5eb;
}

.bg-rechazado {
    background-color: #f5c6cb;
}

div.logs {
    font-family:'Courier New', Courier, monospace;
    max-height: 65vh;
    overflow-y: scroll;
    font-size: 13px;
    background: #333333;
    color: #f1f1f1;
    padding: 8px;
    border-radius: 5px;
}

.logrequests {
    height: 80vh;
    overflow-y: scroll;
}

ul.toggled #sysVersion {
    display: none;
}

.swal-overlay {
    overflow: hidden;
}

.btn-group-xs>.btn, .btn-xs {
    padding: 0.17rem 0.4rem;
    font-size: 0.775rem;
    line-height: 1.25;
    border-radius: 0.1rem;
}

.dataTable-container .form-check-input {
    position: fixed;
    margin-top: 0;
    margin-left: 0;
}

.nav-tabs .nav-link {
    color: #232d36;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #115da9;
}

.card-criterio .card-body .input-group:not(:last-child) {
    margin-bottom: 1rem!important;
}
.card-criterio .card-body .input-group:last-child {
    margin-bottom: 0!important;
}

.select2-container--bootstrap .select2-results__option[aria-selected=true] {
    background-color: #c7d7e7 !important;
}

.select2-container--bootstrap .select2-selection--multiple {
    max-height: 300px;
    overflow-y: scroll;
}

.accordion .card-header button:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f068";
    float: right;
    color: #202020;
}
.accordion .card-header button.collapsed:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f067";
    color: #202020;
}

/*
.select2-results__option[aria-selected=true], .select2-results__option--selected {
    display: none;
}
*/