/* ► FUENTES */

@font-face {
    font-family: 'Transformers';
    src: url('../fonts/Transformers.woff2') format("woff2");
}

@font-face {
    font-family: 'Slider';
    src: url('../fonts/Slider.woff2') format("woff2");
}

@font-face {
    font-family: 'LeelawadeeUI';
    src: url('../fonts/LeelawadeeUI.woff2') format("woff2");
}

:root {
    --azulOptimus: #0497CD;
    --rojoOptimusA: #ff343b;
    --rojoOptimusB: #ff3134;
    --enfasisOptimus: #F3F7FA;
    --secondaryOptimus: #7B9DA9;
    --grayOptimus: #3A566A;
    --fuenteOptimusGeneral: 'LeelawadeeUI';
    --fuenteOptimusLogo: 'Transformers';
    --fuenteOptimusEncabezados: 'Slider';
    --tamanioGralFuente: .898rem;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-weight: 300 !important;
    /* line-height: 1.5; */
    font-size: var(--tamanioGralFuente);
    background-color: #000;
    color: #000;
    /* color: #212529; */
    /* background-color: #4b545c; */
    font-family: var(--fuenteOptimusGeneral), 'Segoe UI', sans-serif;
}

/* ► ESTILOS GENERALES */

/* FIX Quitar inputs de color al mostrar autollenado Chrome */

/* input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
} */

/* FIX para estilo campo autocompletado transparente en Chrome */

/* input.loginUsuario:-webkit-autofill,
input.loginUsuario:-webkit-autofill:hover,
input.loginUsuario:-webkit-autofill:focus,
input.loginUsuario:-webkit-autofill:active,
input.loginUsuario:-webkit-autofill:valid {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #FFF !important;
} */

/* Quitar icono de ojo en input password Navegador Edge Insider */

::-ms-reveal {
    display: none;
}

@keyframes autofill {
    to {
        color: #3f454b;
        background: transparent;
    }
}

@-webkit-keyframes autofill {
    to {
        color: #3f454b;
        background: transparent;
    }
}

input:-webkit-autofill {
    animation-name: autofill;
    -webkit-animation-name: autofill;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

/* FIX Cambiar símbolos de campo tipo password por unos más grandes Chrome */

input[type="password"] {
    font-family: "verdana";
    font-style: normal;
    font-weight: normal;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
    /* add spacing to better separate each image */
    letter-spacing: 2.05px;
}

input::-moz-placeholder {
    font-family: "Source Sans Pro", "Segoe UI", sans-serif;
    letter-spacing: 0;
}

input::-webkit-input-placeholder {
    font-family: "Source Sans Pro", "Segoe UI", sans-serif;
    letter-spacing: 0;
}

/* Quitar flechitas al campo input type number */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
}

/* Placeholders Text Color */

.txtPlaholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-select-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder {
    font-size: var(--tamanioGralFuente);
    color: var(--secondaryOptimus) !important;
}

input,
textarea,
select,
.btn {
    font-size: var(--tamanioGralFuente) !important;
}

/* Color texto placeholder BS4 */

.form-control::-webkit-input-placeholder,
.custom-file-label {
    color: var(--secondaryOptimus);
}

textarea {
    resize: none;
}

.cursorPointer {
    cursor: pointer !important;
}

.cursorDefault {
    cursor: default !important;
}

.sombraTxt-md {
    text-shadow: 2.59px 2.59px 2.59px rgba(0, 0, 0, .259);
}

.fontConsolas {
    font-family: Consolas;
}

.noFocus {
    cursor: default !important;
}

.noTxtShadow {
    text-shadow: none !important;
}

.nowrap {
    white-space: nowrap !important;
}

/* END ESTILOS GENERALES */

/* ► ESTILOS BOOTSTRAP 4 - ADMIN LTE 3 */

/* .layout-navbar-fixed .wrapper .main-header {
    z-index: 10100;
} */

.img-thumbnail {
    padding: 0.124rem;
    border: 1px solid #D6DEE2;
    border-radius: 0.304rem !important;
    margin: 0;
}

label.custom-control-label::after {
    cursor: pointer;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    cursor: pointer;
}

/* Color de fondo de tablas tipo zebra - striped */

.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #eeeeee;
}

.table-hover tbody tr:hover {
    background-color: #e2e8ec;
}

.table-bordered thead th,
.table-bordered thead td {
    border-width: 0px;
}

.table-responsive {
    overflow-y: hidden;
}

.btn[class*="elevation"]:active,
.btn-group[class*="elevation"]:active,
div.dt-buttons:active {
    box-shadow: .16px .16px 1.6px rgba(0, 0, 0, .34) !important;
}

.btnEstado:active {
    filter: drop-shadow(.16px .16px 1.6px rgba(0, 0, 0, .34));
}

/* END ESTILOS BOOTSTRAP 4 ADMIN LTE 3 */

/* ► SCROLLBAR */

.scrollBody {
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    border: 0;
}

.scrollBody::-webkit-scrollbar,
.scrollBody::-webkit-scrollbar-track,
.scrollBody::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:window-inactive,
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active,
::-webkit-scrollbar-button:horizontal:decrement:hover {
    /* border-radius: 43px; */
    margin: 0;
    border: 0;
    position: fixed;
}

.scrollBody::-webkit-scrollbar {
    width: 5.2px;
    box-shadow: inset 0.7px 0.7px 7px rgba(23, 34, 43, 1);
    background-color: transparent;
}

.scrollBody::-webkit-scrollbar:hover {
    width: 7.99px;
}

.scrollBody::-webkit-scrollbar-thumb {
    border-radius: 1.69px;
    box-shadow: inset .7px .7px 20.5px rgba(101, 178, 236, 0.79);
}

.scrollBody::-webkit-scrollbar-track {
    box-shadow: inset 0.7px 0.7px 7.9px rgba(3, 8, 12, 0.7);
}

::-webkit-scrollbar-thumb:window-inactive {
    box-shadow: inset 0.7px 0.7px 10.6px rgba(143, 156, 161, 0.79);
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0.7px 0.7px 23.2px rgba(106, 169, 218, 0.97);
}

::-webkit-scrollbar-thumb:active {
    box-shadow: inset 0.7px 0.7px 27.7px rgba(85, 160, 211, 0.88);
}

/* ::-webkit-scrollbar-button:horizontal:decrement:hover {
    box-shadow: inset 0.52px 0.52px 16px rgba(60, 114, 145, 0.527);
} */

/* END SCROLLBAR */

/* ► LOGIN */

/* Fondo fijo optimizado con overlay */
.imgBackground {
    width: 100vw;
    height: 100dvh;
    background: #000 url('../images/background.jpg') center/cover fixed no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.imgBackground::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(34deg, #031bbd 25%, #F70604 88%);
    opacity: .493;
    z-index: 1;
    box-shadow: inset 0 0 115px 223px rgba(0, 0, 0, .88);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .imgBackground {
        background-attachment: scroll;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        perspective: 1000;
    }

    .imgBackground::before {
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
    }
}

.imgLogoLogin {
    width: 115px;
    height: 115px;
    /* filter: drop-shadow(0 0 7px rgba(79, 151, 205, .7)); */
    pointer-events: none;
    user-select: none;
}

.fondoLogoContainer {
    background-color: rgba(20, 22, 24, 0.754);
    box-shadow: 2.5px 0 16px rgba(0, 0, 0, .43);
}

.cuerpoLogin {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 88px -25px rgba(255, 255, 255, .25);
    border-radius: .34rem;
    background-color: rgba(255, 255, 255, 0.169);
    border: 1px solid rgba(195, 220, 235, 0.097);
    backdrop-filter: blur(16px);
}

.txtLogoLogin {
    font-family: var(--fuenteOptimusLogo);
    font-size: 2.68rem;
    text-shadow: 2.05px 2.05px 7px rgba(0, 0, 0, .52);
    color: var(--rojoOptimusA);
    letter-spacing: .7px;
    user-select: none;
}

.iconoLogin {
    /* width: 41.2px; */
    margin-top: .457rem;
    margin-left: -.52rem;
    font-size: 1.204rem;
}

input.loginUsuario.form-control,
input.loginClave.form-control {
    padding-bottom: 0;
    font-weight: 300;
    color: #FFF;
    font-size: 1.15rem !important;
    letter-spacing: 1.06px;
    padding-left: 0;
    margin-left: 0rem;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom: 1px solid #B7B7B7;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-bottom .61s;
}

input.loginUsuario.form-control:focus,
input.loginClave.form-control:focus,
input.loginUsuario.form-control:hover,
input.loginClave.form-control:hover,
input.loginUsuario.form-control:valid,
input.loginClave.form-control:valid {
    border-bottom: 1px solid #F2F2F2;
}

input.loginUsuario::placeholder,
input.loginClave::placeholder,
input.loginUsuario::-moz-placeholder,
input.loginClave::-moz-placeholder {
    font-weight: 300;
    font-size: 1.15rem;
    letter-spacing: 1.06px;
}

input.loginUsuario::placeholder,
input.loginClave::placeholder {
    color: #CDCDCD !important;
}

input.loginUsuario::-moz-placeholder,
input.loginClave::-moz-placeholder {
    color: #CDCDCD !important;
}

/* Campo de Contraseña Login */

input[type="text"].loginUsuario {
    padding-bottom: 2px;
}

input[type="password"].loginClave {
    letter-spacing: 1.9px;
    font-family: 'verdana';
    padding-bottom: 2px;
}

.loginClave {
    letter-spacing: 2.5px !important;
    font-family: 'consolas';
    padding-bottom: 0px;
}

.ojoClave {
    color: #c3c8c9;
    font-size: 1.06rem;
    right: 1.15px;
    cursor: pointer;
    margin-top: .16rem;
    transition: color .52s;
    z-index: 100;
    position: absolute;
    opacity: 1;
}

.ojoClave:hover {
    color: #FFF !important;
}

.ojoAbierto {
    color: #FC4E4E;
}

/* input.loginClave::-moz-placeholder {
    font-family: "Source Sans Pro", "Segoe UI", sans-serif;
}

input.loginClave::-webkit-input-placeholder {
    font-family: "Source Sans Pro", "Segoe UI", sans-serif;
} */

/* END LOGIN */

/* ► NAVBAR */

/* Estilo color Navbar y SideBar  */

.navbar-dark

/* ,
.sidebar-dark-primary */
    {
    background-color: rgb(215 39 57);
    /* background-color: #16222B; */
}

/* .navbar-dark, */
.sidebar-dark-primary {
    background-color: rgb(0 77 111);
    /* background-color: #16222B; */
    /* background-color: transparent; */
}

.btnCerrarSesion {
    width: 1.996rem;
    height: 1.996rem;
    border-radius: 50%;
    margin: .25rem .34rem;
    padding: .214rem .4291rem;
}

/* Estilo para Navbar fixed AdminLTE */

.layout-navbar-fixed .sidebar-dark-primary .brand-link {
    background-color: var(--azulOptimus);
}

.main-header.border-bottom {
    border-bottom: 1px solid rgba(196, 62, 62, 0.78) !important;
}

[class*=sidebar-dark] .brand-link {
    border-bottom: 1px solid #2a323a;
}

.relojNavbar {
    color: #FFF;
    text-align: center;
    width: 100%;
    font-size: .88rem;
    font-family: Calibri;
    text-shadow: .34px .34px 1.6px rgba(255, 255, 255, .7);
}

/* END NAVBAR */

/* ► SIDEBAR */

.fondoAzulOptimus {
    /* background-color: var(--azulOptimus) !important; */
    background: linear-gradient(97deg, #123 7%, var(--azulOptimus));
    box-shadow: inset 0 0 30.4px rgba(0, 43, 52, .493);
}

.bg-info.fondoSombraOptimus {
    background: linear-gradient(97deg, #123 7%, #1BA1B8);
    box-shadow: inset 0 0 30.4px rgba(0, 43, 52, .493);
}

.brand-link {
    /* background-color: var(--azulOptimus) !important; */
    /* background: linear-gradient(97deg, #102131 16%, var(--azulOptimus) 52%, #102131 160%);
    box-shadow: inset 0 0 25px rgba(0, 36, 52, 0.52);
    font-size: inherit !important; */
    /* background-color: #192934; */
}

.layout-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*=navbar]) {
    background-color: #192934;
}

.brand-image {
    max-height: 41.2px !important;
    margin: -6.1px 5.29px -7px 8.08px !important;
}

.txtLogoSidebar {
    color: #fff;
    font-size: 1.24rem;
    font-family: var(--fuenteOptimusLogo);
    letter-spacing: .97px;
    /* text-shadow: 1.69px 1.69px 3.04px rgba(0, 0, 0, .7); */
    text-align: center;
}

@media (min-width: 992px) {
    .sidebar-mini.sidebar-collapse .brand-text {
        text-align: unset;
    }
}

.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-text,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-text {
    display: block;
}

.sidebar-mini.sidebar-collapse .main-sidebar:not(.sidebar-no-expand).sidebar-focused .brand-image,
.sidebar-mini.sidebar-collapse .main-sidebar:not(.sidebar-no-expand):hover .brand-image {
    margin-right: 0.79rem !important;
}

.txtNombreUsr {
    font-size: .853rem;
}

.txtCargoSidebar {
    font-size: .745rem;
}

.user-panel img {
    width: 2.86rem;
    height: 2.86rem;
    margin-left: -.142rem;
}

/* ► FIX: Alto del Sidebar para quitar scroll horizontal parte inferior AdminLTE */

:not(.layout-fixed) .main-sidebar {
    /* min-height: 103.3%; */
    overflow-y: unset;
}

a.nav-item,
.nav-link,
.sidebar-dark-primary .nav-sidebar>.nav-item.menu-open>.nav-link,
.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active {
    /* transition: box-shadow .304s; */
    transition: color .43s !important;
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link {
    border: 1px ridge #385a72;
}

.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link {
    color: #878d94;
}

.nav .nav-treeview .nav-icon.fal {
    font-size: .79rem;
}

.has-treeview>.nav-link {
    background-color: rgba(52, 52, 52, .16);
}

.nav .nav-treeview {
    /* background-color: rgba(52, 52, 52, .20); */
    background-color: #0b1e2b !important;
    border-radius: .25rem;
    box-shadow: inset 0 0 7px .7px rgba(88, 130, 160, .79);
    /* box-shadow: inset 0 0 1.6px 1.6px rgba(88, 130, 160, .709); */
}

.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link:hover {
    background-color: rgba(42, 69, 88, .34);
    color: #ffffff;
    /* background-color: rgba(63, 93, 115, .61); */
    box-shadow: inset 0 0 18.7px 5.2px rgba(63, 93, 115, 1);
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active,
.sidebar-dark-primary .nav-sidebar>.nav-item.menu-open>.nav-link {
    color: #ffffff;
    /* background-color: #026285; */
    background-color: rgba(16, 16, 16, 0.7);
    box-shadow: inset 0 0 25px 10.6px rgba(33, 158, 204, 0.79);

}

.sidebar-dark-primary .nav-sidebar>.nav-item:hover>.nav-link {
    /* background-color: #048ABB; */
    background-color: rgba(16, 16, 16, 0.7);
    box-shadow: inset 0 0 25px 10.6px rgba(33, 158, 204, 0.79);
}

.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active,
.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active:focus {
    color: #FFF;
    /* background-color: rgba(214, 42, 56, 1); */
    background-color: rgba(16, 16, 16, 0.7);
    box-shadow: inset 0 0 25px 7px rgb(231, 45, 61);
}

.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active:hover {
    color: #FFF;
    /* background-color: rgba(223, 52, 66, 1); */
    background-color: rgba(16, 16, 16, 0.7);
    box-shadow: inset 0 0 25.9px 10.6px rgb(233, 47, 66);
}

.nav-treeview>.nav-item>.nav-link {
    border-radius: 0;
}

.nav-treeview>.nav-item:first-child>.nav-link {
    border-radius: .25rem .25rem 0 0;
}

.nav-treeview>.nav-item:last-child>.nav-link {
    border-radius: 0 0 .25rem .25rem;
}

.nav-treeview>.nav-item>.nav-link {
    /* margin-bottom: 0.106rem; */
    margin-bottom: 0;
}

.nav-treeview>.nav-item:last-child>.nav-link {
    /* margin-bottom: 0.106rem; */
    margin-bottom: .2rem;
}

/* END SIDEBAR */

/* ► PÁGINAS DE CONTENIDO */

/* Fondo contenido de las páginas AdminLTE */

.small-box {
    transition: all .25s ease-out;
    color: #fff;
}

.small-box .icon {
    opacity: .403;
    transition: all .25s linear;
    color: #fff;
}

.small-box:hover .icon {
    opacity: .7;
}

.categoria-box {
    background-color: #eb294d;
}

.articulo-box {
    background-color: #ffbc13;
}

.proveedor-box {
    background-color: #ff8409;
}

.cliente-box {
    background-color: #a14fff;
}

.content-wrapper {
    /* background-color: #f0f0f0; */
    background-color: #ebebeb;
}

.content-header h1 {
    color: var(--rojoOptimusB);
    font-family: var(--fuenteOptimusEncabezados);
    font-size: 1.69rem;
    /* text-shadow: 1.33px 1.33px 2.59px rgba(70, 70, 70, .556); */
    text-shadow: 1.06px 1.06px 1.6px rgba(0, 0, 0, .61);
    letter-spacing: .88px;
    font-weight: bold;
}

.content-header h1 small {
    font-family: consolas;
    font-weight: 900;
    font-size: 1.06rem;
    text-shadow: 1.33px 1.33px 1.96px rgba(0, 0, 0, .34);
}

.content-header {
    padding: .5704rem .43rem;
}

/* END PÁGINAS DE CONTENIDO */

/* ► PÁGINA DE INICIO */

.small-box .icon>i {
    transition: all 0.25s linear;
    top: 8.8px;
}

.info-box:hover {
    box-shadow: inset 0 0 70px rgba(0, 0, 0, .34);
}

.small-box h3,
.small-box p,
.card-header .h6 {
    font-weight: 600;
    text-shadow: .7px .7px 1.6px rgba(0, 0, 0, .34);
}

.small-box-footer {
    font-size: .88rem;
    font-weight: 100;
    text-shadow: .7px .7px 1.6px rgba(0, 0, 0, .34);
}

/* END PÁGINA DE INICIO */

/* ► TABLAS DE REGISTROS */

thead tr th,
tfoot tr td {
    font-weight: 700;
    /* text-align: center; */
    color: #FFF;
    font-size: .799rem;
    text-shadow: .61px .34px .7px rgba(0, 0, 0, .403);
    white-space: nowrap;
}

tfoot tr td {
    font-weight: normal;
}

/* tfoot tr th {
    font-weight: 100;
} */

.encabezadosTabla,
.row-total {
    background-color: #2d404e;
}

.encabezadosTabla tr th {
    white-space: nowrap;
    padding: .34rem;
    letter-spacing: .79px;
    text-align: center;
}

.colDestacada {
    color: var(--grayOptimus);
    font-weight: 600;
}

.table td,
.table th {
    vertical-align: middle;
    padding: 3.31px 5.2px;
}

.table th {
    text-align: center;
}

.table td {
    font-size: .9007rem;
}

.table td {
    border-top: 1px solid #dadfe7;
}

.table.table-report td {
    padding: 8.08px 5.2px;
}

.table-hover .table-success:hover>td {
    background-color: #d4f8dd;
}

.table-success td {
    border-color: #c1e4cb;
}

.table-success>td {
    background-color: #e6fdeb;
}

.table-hover .table-danger:hover>td {
    background-color: #ffd5da;
}

.table-danger td {
    border-color: #ffd5da;
}

.table-danger>td {
    background-color: #ffe1e3;
}

.table-responsive>.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th {
    border: 0;
}

.table-bordered td {
    border-right: 1px dashed rgba(210, 219, 227, .898);
    border-left: 1px dashed rgba(210, 219, 227, .898);
    border-top: 1px solid rgba(210, 219, 227, .898);
}

.imgTablaListado,
.imgTablaListadoUsr,
.imgForm,
.imgFormUsr {
    object-fit: cover;
}

.table td.imgAnchoListado {
    min-width: 5.29rem;
    width: 5.92rem !important;
    height: 3.67rem !important;
    padding: .115rem !important;
}

.table td.imgTablaListadoUsr {
    min-width: 1rem;
    width: 4.3rem !important;
    height: 4.3rem !important;
    padding: .115rem !important;
}

table #tbodyDetalleCompra td {
    padding: 0.448rem 0.43rem;
}

.btnIcono,
.btnComprador,
.btnEstado {
    width: 2.0005rem;
    height: 2.0005rem;
    padding: 0;
    border-radius: 50%;
    filter: drop-shadow(1.87px 1.24px 2.05px rgba(0, 0, 0, .475));
}

.btnComprador i {
    margin-top: .403rem;
    font-size: 1.24rem;
}

.btnComprador i,
.btnEstado i {
    /* margin-bottom: 3.67px; */
    margin-left: .43px;
    text-shadow: .7px .7px 1.6px rgba(0, 0, 0, .34);
}

.textEstado {
    visibility: hidden;
    position: fixed;
}

.fondoFilaEnfasis {
    background-color: var(--enfasisOptimus);
    box-shadow: inset 0 0 13.3px 1.06px rgba(120, 138, 151, .34);
}

.fondoFilaTotal {
    background-color: var(--enfasisOptimus);
    box-shadow: inset 0 0 20.5px rgba(120, 128, 133, .43);
}

.fondoSombraOptimus {
    box-shadow: inset 0 0 30.4px rgba(0, 34, 43, .493);
}

.fondoTotal td {
    background-color: #e8ecf0;
    color: inherit;
}

.alertaStock {
    color: #F1274C;
    font-size: 1.114rem;
    animation-name: alertaStock;
    -webkit-animation-duration: 2.05s;
    animation-duration: 2.05s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes alertaStock {
    0% {
        color: var(--grayOptimus);
    }

    50% {
        color: #F1274C;
    }

    100% {
        color: var(--grayOptimus);
    }
}

/* END TABLAS DE REGISTROS */

/* ► CARRITOS DE COMPRAS/VENTAS */

.txtTituloCarrito {
    font-family: 'Slider';
    color: var(--rojoOptimusA);
    font-size: 1.6rem;
    text-shadow: 1.06px 1.06px 1.6px rgba(0, 0, 0, .61);
}

.imgCarrito {
    width: 34px;
    height: 34px;
    filter: drop-shadow(.97px 1.69px 1.6px rgba(0, 0, 0, .61));
}

.containerMoneda {
    display: flex;
    justify-content: space-between !important;
    width: 100% !important;
}

.blacky {
    color: #38607c;
    font-weight: 700;
    text-shadow: none;
}

#tablaCarritoCompra th:nth-child(1),
#tablaCarritoVenta th:nth-child(1) {
    width: 55px;
}

#tablaCarritoCompra th:nth-child(2),
#tablaCarritoVenta th:nth-child(2) {
    width: auto;
}

#tablaCarritoCompra th:nth-child(3) {
    width: 79.9px;
}


#tablaCarritoCompra th:nth-child(4) {
    width: 151px;
}

#tablaCarritoCompra td:nth-child(4) .input-group {
    width: 151px;
}

#tablaCarritoCompra th:nth-child(5) {
    width: auto;
}

#tablaCarritoVenta th:nth-child(3) {
    width: 1rem;
}

#tablaCarritoVenta th:nth-child(4) {
    width: 4.894rem;
}

#tablaCarritoVenta th:nth-child(5) {
    width: 10.07rem;
}

#tablaCarritoVenta th:nth-child(6) {
    min-width: 8.08rem;
}

#sel-precio-art {
    height: 35.08px;
}

.inputPrecio {
    width: 106px !important;
}

/* END CARRITOS DE COMPRAS/VENTAS */

/* ► FORMULARIOS DE REGISTROS MODALES */

.txtEncabezadoModal {
    color: #FAFAFA;
    font-size: 1.33rem;
    font-family: var(--fuenteOptimusEncabezados);
    /* /letter-spacing: .7px;
    /font-weight: 100; */
    padding-bottom: .142rem;
    text-shadow: 1.15px 1.15px 3.04px rgba(0, 0, 0, .7);
}

.imgForm {
    width: 100%;
    height: auto;
}

.imgFormUsr {
    height: 7.9rem;
    width: auto;
    max-width: 7.9rem;
}

.labelForm {
    color: #3F6375;
    font-weight: 400;
    font-size: .88rem;
    text-shadow: .52px .52px .97px rgba(0, 0, 0, .295);
}

/* Evitar desplazamiento derecho ventanas modales AdminLTE BS4 */

.modal .fade .show,
.modal-open {
    padding-right: 0 !important;
}

/* Campo de cambio de Contraseña Usuario */

input[type="password"].inputClave,
input[type="password"].inputClaveU {
    letter-spacing: 1.393px;
    font-family: 'verdana';
    padding-bottom: 7px;
}

.inputClave,
.inputClaveU {
    letter-spacing: 1.42px;
    font-family: 'consolas';
    padding-bottom: 5px;
}

.ojoClaveUsr,
.ojoClaveUsrU {
    color: #7B9CA9;
    right: .808rem;
    cursor: pointer;
    transition: color .52s;
    z-index: 100;
}

.ojoClaveUsr:hover,
.ojoClaveUsrU:hover {
    color: #AAC4CD !important;
}

.ojoAbiertoUsr,
.ojoAbiertoUsrU {
    color: #DD3A44;
}

/* END FORMULARIOS DE REGISTROS MODALES */

/* ► OVERLAYSCROLLBARS */

.os-theme-light>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    background: rgba(120, 139, 151, .7) !important;
    border-radius: 7px;
    width: 52%;
    margin-left: 3.94px;
    margin-top: -1.6px;
}

/* END OVERLAYSCROLLBARS */

/* ► DATATABLES */

/* ► DataTables - flechas orden  */

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    /* content: "\23F6"; */
    content: "\1D149";
    bottom: 0.8008em;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    /* content: "\23F7"; */
    content: "\1D14F";
    bottom: 0.403em;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    right: 0.16em;
}

table.dataTable thead>tr>th.sorting_asc,
table.dataTable thead>tr>th.sorting_desc,
table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>td.sorting_asc,
table.dataTable thead>tr>td.sorting_desc,
table.dataTable thead>tr>td.sorting {
    padding-right: 13.3px;
}

/* ► DataTables - Sombreado y Redondeado botones de exportación */

div.dt-buttons {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23) !important;
    border-radius: 0.25rem !important;
}

/* ► FIX: DataTables pagination */
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: center;
    padding-top: 0.52em;
}

#tablaDT_previous .page-link,
#tablaDT_next .page-link {
    padding: 0.304rem 0.52rem;
}

.page-link {
    padding: 0.304rem 0.61rem;
}

@media (min-width: 768px) {
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: flex-end;
    }
}

/* ► Icono de toggle-fullscreen */

.nav-link.toggle-fullscreen {
    padding: 0.52rem 0.7rem !important;
}

/* ► Ocultar icono de toggle-fullscreen en pantallas inferiores a 768px */
@media (max-width: 768px) {
    /* .toggle-fullscreen {
        display: none;
    } */
}

@media (max-width: 540px) {
    /* .dt-buttons {
        display: none;
    } */
}

/* END DATATABLES */

/* ► SELECT2 */

/* FIX Espacio inferior en select de Select2 en Chrome */

.input-group {
    flex-wrap: unset;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: inline;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
    /* color: var(--secondaryOptimus); */
    color: #6c757d;
    font-size: .8998rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    color: #3f454b;
    padding-left: 12.04px;
    font-weight: 400;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.select2-container--bootstrap4 .select2-selection__clear {
    font-family: unset;
    background-color: #97b8c2 !important;
    width: 1.06rem;
    height: 1.06rem;
    line-height: .916rem;
    padding-left: 0.241rem;
    margin-top: .628rem;
    border: none;
    margin-right: .2482rem;
    text-shadow: 1.06px 1.06px 1.33px rgba(0, 0, 0, .403);
    transition: all .43s;
    position: relative;
    z-index: 1;
}

.select2-container--bootstrap4 .select2-selection__clear:hover {
    background-color: #f88888 !important;
}

.select2-container--bootstrap4.select2-container--open.select2-container--below .select2-selection {
    border-color: #80bdff;
    border-bottom-color: transparent;
}

.select2-container--bootstrap4 .select2-dropdown {
    margin-top: -4.3px;
    border-color: #80bdff;
    border-radius: 0;
}

.select2-search--dropdown,
.select2-search--dropdown .select2-search__field {
    padding: 6.01px;
}

.select2-search--dropdown .select2-search__field {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.16rem rgba(0, 123, 255, 0.25);
}

.select2-results__option[aria-disabled=true] {
    color: #0A9CD2;
    text-align: center;
    font-weight: 500;
}

.select2-results__message {
    color: #EA3D43;
    text-align: center;
    font-weight: 500;
}

.select2-container--bootstrap4 .select2-selection--single {
    height: calc(1.6em + .79rem + 2.05px) !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.78em + .7rem) !important;
}

.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
    margin-top: 1px;
}

.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
    /* border-top: 1px solid #80bdff;
    border-bottom: 1px solid #80bdff; */
    border: 1px solid #80bdff;
}

.select2-container--bootstrap4.select2-container--above.select2-container--open .select2-selection {
    border-radius: 0 0 .25rem .25rem;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 0.16rem rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 0.16rem rgba(0, 123, 255, .25);
}

/* END SELECT2 */

/* ► SweetAlert 2 */

.swal2-title {
    color: #0089bb !important;
    text-align: center !important;
    font-weight: normal !important;
    text-shadow: 0.511px 0.511px 1.51px rgba(0, 0, 0, .511);
}

.swal2-popup.swal2-toast {
    box-shadow: 0 0 .16rem #d9d9d9;
}

.swal2-popup {
    box-shadow: 0 0 50.2px -16px rgba(255, 255, 255, 1);
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, .7);
}

button[class*='swal2-'] {
    min-width: 115px;
}

/* END SWEETALERT 2 */

/* ► FontAwesome */

.fas,
.far,
.fal {
    text-shadow: 1px 1px 1.6px rgba(0, 0, 0, .52);
}

/* END FONTAWESOME */

/* ► VALIDACIÓN DE FORMULARIOS */

.campoValido,
.validaCampo:valid {
    border-color: #28a745;
    padding-right: 2.25rem;
    background-image: url('../images/valido.svg');
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.campoValido:focus,
.validaCampo:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.16rem rgba(40, 167, 69, 0.25) !important;
}

.campoInvalido,
.validaCampo:invalid {
    border-color: #dc3545;
    padding-right: 2.25rem;
    background-image: url('../images/invalido.svg');
    background-repeat: no-repeat;
    background-position: center right calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.campoInvalido:focus,
.validaCampo:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.16rem rgba(220, 53, 69, 0.25) !important;
}

.mensajeValidacion {
    width: 100%;
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: 85.3%;
    display: none;
}

/* ► Marco iluminado en foco de formularios */
.form-control:focus {
    -webkit-box-shadow: 0 0 0 0.16rem rgba(0, 123, 255, .25);
    box-shadow: 0 0 0 0.16rem rgba(0, 123, 255, .25);
}

input:focus,
textarea:focus,
select:focus,
.input-group>.form-control:focus,
.input-group>.custom-select:focus,
.input-group>.custom-file .custom-file-input:focus~.custom-file-label {
    /* color: #3f454b; */
    background-color: #ffffff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0.16rem rgba(0, 123, 255, .25);
}

/* END VALIDACIÓN DE FORMULARIOS */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    option {
        margin: -2.005px;
    }
}

@-moz-document url-prefix() {
    option {
        margin: unset;
    }
}

.toggle-fullscreen-icon,
.fa-bars {
    font-size: 1.15rem;
    margin-top: 2.5px;
}

.btn-precios.dropdown-toggle::after {
    display: none;
}

.input-group>.input-group-prepend>.btn-precios.btn:hover {
    background-color: #e2e8ec !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #ebeff1;
}

.dropdown-item:active {
    color: #6C757D;
}

.input-group-text,
.input-group>.input-group-prepend>.btn {
    background-color: #F0F3F7;
}

.input-group>.input-group-prepend>.btn:hover {
    background-color: #F8F9FA;
}

.dropdown-menu {
    font-size: .88rem;
}

option {
    font-size: 1.024rem;
}

/* ► FLECHA BACK TOP */

.back-to-top {
    background-color: #276681;
    right: .52rem;
    bottom: .61rem;
    width: 2.23rem;
    display: none;
    opacity: .61;
    transition: all .493s;
}

.back-to-top i {
    color: #FFF;
    /* margin-left: -0.7px; */
}

.back-to-top:hover {
    opacity: .826;
}

.back-to-top:active {
    opacity: .907;
}

/* END FLECHA BACK TOP */

.dropdown-menu a {
    display: flex;
    justify-content: space-between;
}

button,
.btn {
    text-shadow: .79px .79px 1.6px rgba(0, 0, 0, .43);
}

.fondoFilaEnfasis tr th {
    /* #tablaCarritoVentaD .fondoFilaEnfasis tr th { */
    color: inherit;
}

#tablaCarritoVentaD th:nth-child(1) {
    min-width: 55px;
}

#tablaCarritoVentaD th:nth-child(2) {
    min-width: 30px;
}

#tablaCarritoVentaD tr>td:nth-child(2)>div {
    width: 75px;
}

#tablaCarritoVentaD tr>td:nth-child(4)>div {
    width: 115px;
}

#tablaCarritoVentaD th:nth-child(4),
#tablaCarritoVentaD th:nth-child(5) {
    min-width: 106px;
}

.custom-switch {
    margin-left: 7px;
    transform: scale(1.393);
}

.quitarItem {
    min-width: 33.55px;
}

.printOnly {
    display: none;
}

@media print {

    @page {
        /* size: letter portrait; */
        /* margin: .88cm; */
        /* margin-top: .7cm;
        margin-bottom: .7cm; */
        /* size: letter; */
    }

    * {
        -webkit-print-color-adjust: economy;
        print-color-adjust: economy;
    }

    body {
        background-color: #fff;
    }

    .printOnly {
        display: block;
    }

    .printHeaderTxt {
        margin-top: -61px;
        margin-bottom: 34px;
    }

    .noPrint {
        display: none !important;
    }

    .content-wrapper {
        background-color: #fff;
    }

    .card-info.card-outline {
        border-top: 0;
    }

    table.reporteVentas th.col-estado,
    table.reporteVentas td.col-estado {
        display: none;
    }

    tfoot tr td {
        color: #6c757d !important;
        display: none;
        text-align: right !important;
        background-color: red !important;
    }

    .dataTables_paginate .pagination {
        display: none;
    }

    /* .paginate_button a {
        text-decoration: none;
    } */

    .dataTables_wrapper .row:first-child>div:first-child,
    .dataTables_filter {
        display: none;
    }

    /* table th {
        color: #333 !important;
    } */
}

/* ► Fix: Carrito Venta hint */

.btn-precios {
    z-index: auto !important;
}

.btn-precios[class*=hint--]:before {
    content: '';
    z-index: auto;
    /* display: flex;
    justify-content: space-around; */
}

#sidebar-overlay {
    background-color: rgba(0, 0, 0, .7);
}

/* ► Tablas Responsivas BS4 */

@media screen and (max-width: 768px) {
    /* @media screen and (max-width: 768px) { */

    .table-responsive-stack .table-responsive-stack-thead {
        font-weight: bold;
        text-shadow: .52px .52px 1.6px rgba(0, 0, 0, .43);
    }

    .table-responsive-stack-thead {
        margin-right: 13.3px;
    }

    .table-responsive-stack tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1.6px solid #cacaca;
        display: block;

        padding-right: 16px;
        padding-left: 7px;
        padding-bottom: 4px;
        padding-top: 4px;

    }

    /*  IE9 FIX   */
    .table-responsive-stack td {
        float: left\9;
        width: 100%;
        text-align: left !important;
        display: flex;
        /* justify-content: space-between; */
        vertical-align: middle;
        align-items: center;
        border-right: 0;
    }

    .table-responsive-stack tr td:first-child {
        border-top: 0;
    }

}

.dtr-details .dtr-title {
    /* background-color: red; */
    color: #0c2236;
    font-style: italic;
}

table.dataTable>tbody>tr.child span.dtr-title {
    min-width: 79px;
    width: 100%;
}

.dtr-details .dtr-data {
    /* background-color: red; */
    white-space: normal;
}

.dtr-details li {
    /* background-color: red; */
    text-align: left !important;

}

.dtr-details {
    width: 100%;
}

.dtr-details .containerMoneda {
    display: block;
}

table.dataTable>tbody>tr.child ul.dtr-details {
    padding: 10px;
}

table.dataTable>tbody>tr.child ul.dtr-details>li {
    border-bottom: 1px solid rgba(210, 219, 227, .88);
    padding: 0.295em 0;
}


/* ► FIX: Select2 overflow del texto largo al elegir */

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .small-box p {
        font-size: 16px;
    }
}

.cantidad-detalle {
    width: 80px;
}

.th-importe-detalle {
    width: 169px;
}

.monto-detalle {
    width: 124px;
}

.subtotal-detalle {
    width: 160px;
}

.content-wrapper {
    background-color: transparent;
}

.content-wrapper {
    background-image: url('../images/background-wrapper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    z-index: -1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.main-footer {
    background-color: #192934;
    border-top: 1px solid rgba(53, 54, 54, 0.671);
    color: #67798a !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    font-family: 'Verdana', monospace;
}