/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// GLOBAL ///////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

/* oculta el ojo de mostrar contraseña en ie y edge o los que requieran */

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

/* configura border-box y font a Roboto*/

* {
    box-sizing: border-box;
}

/* evita que se pueda seleccionar */

.lexx_noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/* oculta el elemento */

.lexx_hide {
    display: none !important;
}

/* muestra el elemento */

.lexx_show {
    display: block !important;
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// ALERTAS ///////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

/* Contenedor */

/* Contenedor */

.alert_Mensaje_Contenedor {
    bottom: 0px;
    position: fixed;
    right: 0px;
}

/* Mensajes */

.alert_Mensaje_Mensaje {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    overflow: hidden;
    border-radius: .45em;
    margin: 1em;
    padding: 1em;
    max-width: 300px;
}

.alert_Icon_Span {
    display: none;
}

.alert_Text_Info {
    flex: 1;
    font-size: 13px;
    line-height: 1.3;
}

.alert_btn_close {
    margin: 0;
}

.alert_btn_close i {
    display: flex;
    cursor: pointer;
}

/* Mensaje de Alerta */

.alert_Mensaje_Mensaje_Alert {
    /* background-color: rgb(243, 162, 40); */
    background-color: #e9bb4f;
}

/* Mensaje de Alerta  - Icono */

.alert_Mensaje_Mensaje_Alert>span {
    background-color: rgb(228, 147, 25);
}

.alert_Mensaje_Mensaje_Alert>span>span::before {
    content: "!";
    font-size: 18px;
}

/* Mensaje de Error */

.alert_Mensaje_Mensaje_Error {
    /* background-color: rgb(164, 56, 74); */
    background-color: #e1536a;
}

/* Mensaje de Error  - Icono */

.alert_Mensaje_Mensaje_Error>span {
    background-color: rgb(152, 46, 63);
}

.alert_Mensaje_Mensaje_Error>span>span::before {
    content: "X";
}

/* Mensaje de Info */

.alert_Mensaje_Mensaje_Info {
    /* background-color: rgb(63, 81, 181); */
    background-color: #5066e1;
}

/* Mensaje de Info  - Icono */

.alert_Mensaje_Mensaje_Info>span {
    background-color: rgb(71, 91, 207);
}

.alert_Mensaje_Mensaje_Info>span>span::before {
    content: "ℹ";
    font-size: 18px;
}

/* Mensaje de Ok */

.alert_Mensaje_Mensaje_Ok {
    /* background-color: rgb(60, 192, 137); */
    background-color: #45df9f;
}

/* Mensaje de Ok  - Icono */

.alert_Mensaje_Mensaje_Ok>span {
    background: rgb(49, 216, 147);
}

.alert_Mensaje_Mensaje_Ok>span>span::before {
    content: "✓";
}

@keyframes alert_Mensaje_Slide {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes Alert_Mensaje_Rotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// LOADING ///////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.Lexx_Ventana_Cargando {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
}

.Lexx_Ventana_Cargando_overlay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.Lexx_Ventana_Cargando_center {
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 300px;
    color: white;
    overflow: inherit !important;
}

.Lexx_Ventana_Cargando_Progreso {
    width: 100%;
    height: 6px;
    background-color: rgba(85, 93, 103, 0.88);
    border-radius: 20px;
    margin-top: 1.8em;
    position: relative;
}

.Lexx_Ventana_Cargando_Progreso_Bar {
    text-align: center;
}

.Lexx_Ventana_Cargando_Progreso_Mensaje {
    background: rgb(78, 87, 98);
    background-image: linear-gradient(to right, rgb(60, 75, 86) 0%, rgb(70, 89, 95) 100%);
    padding: .8em;
    border-radius: 3px;
    top: 25px;
    display: inline-block;
    color: rgb(255, 255, 255);
    left: 0px;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    max-width: 220px;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.28);
    animation-name: Lexx_Cargando_Texto;
    animation-duration: .4s;
}

.Lexx_Ventana_Cargando_Progreso_Mensaje:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 6px 6px;
    border-color: rgb(67, 76, 88) transparent;
    display: block;
    width: 0;
    z-index: 1;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes Lexx_Cargando_Texto {
    from {
        opacity: 0;
        top: 33px;
    }

    to {
        opacity: 1;
        top: 25px;
    }
}

.Lexx_Ventana_Cargando_Animacion {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 50%;
    background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
    border-radius: 20px;
    transition: width .4s;
    user-select: none;
}

.Lexx_Ventana_Cargando_Animacion::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 0 30px;
    z-index: 1;
}

.Lexx_Ventana_Cargando_spinner_container {
    position: relative;
    width: 200px;
    margin: auto;
    user-select: none;
}

.Lexx_Ventana_Cargando_spinner {
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.Lexx_Ventana_Cargando_spinner_animacion {
    width: 16px;
    height: 16px;
    background-color: rgb(255, 255, 255);
    margin: 0 .4em;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: Lexx-cargando 1s infinite ease-in-out both;
    animation: Lexx-cargando 1s infinite ease-in-out both;
}

.Lexx_Ventana_Cargando_spinner_animacion:nth-child(1) {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.Lexx_Ventana_Cargando_spinner_animacion:nth-child(2) {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@keyframes Lexx-cargando {

    /* 0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    } */

    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        transform: scale(1) rotate(180deg);
    }

    75% {
        transform: scale(0.5) rotate(360deg);
    }

    100% {
        transform: scale(0);
    }
}

/*
    Elementos Globales Lexx
*/

.Lexx_ocultar {
    display: none !important;
}

/*
    Placeholder Color Select
*/

.Lexx_Global_Select_Placeholder:not(:checked) {
    color: rgb(121, 137, 150);
}

/*
    Estilos Div Placeholder Editables
*/

.Lexx_Global_Editable_Contenido[placeholder]:empty:before {
    content: attr(placeholder);
    color: rgb(121, 137, 150);
    pointer-events: none;
    cursor: text;
    font-size: 13px;
    user-select: none;
    pointer-events: none;
}

/*
    Estilos Globales Para Keyframes
*/

@keyframes Lexx_Animacion_Up {
    from {
        transform: translate3d(0, 20px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes Lexx_Animacion_Down {
    from {
        transform: translate3d(0, -10px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// CALENDARIO ///////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.Lex_Calendario_Container {
    width: 275px;
    background-color: initial;
    overflow: hidden;
    position: absolute;
    border-radius: 4px;
    user-select: none;
    animation: lex_Calendario_Fade .2s;
    z-index: 9999;
    outline: none !important;
}

.Lex_CalendarioDbl_Container {
    width: 275px;
    background-color: initial;
    overflow: hidden;
    position: absolute;
    border-radius: 4px;
    user-select: none;
    animation: lex_Calendario_Fade .2s;
    z-index: 9999;
    outline: none !important;
}

.Lex_Calendario_Header {
    display: flex;
    align-items: center;
    height: 35px;
    background-color: black;
    padding: 0 .5em 0 .5em;
}

.Lex_Calendario_Navegacion {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2em .3em;
    border-radius: .2em;
    cursor: pointer;
    user-select: none;
    font-size: 1.30em;
    vertical-align: middle;
    transition: .4s;
}

.Lex_Calendario_Seleccion {
    flex: 1 1 auto;
    outline: none;
    border: none;
    text-align-last: center;
    margin: 0 1em 0 1em;
}

.Lex_Calendario_Contenedor_Tabla {
    padding-bottom: .4em;
}

.Lex_Calendario_Tabla {
    width: 90%;
    margin: auto;
    text-align: center;
    border-collapse: collapse;
    font-size: 14px;
}

.Lex_Calendario_Dias_Semana>th {
    padding: .5em;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
}

.Lex_Calendario_Dias_Numero>td {
    position: relative;
    cursor: pointer;
    font-size: 12px;
}

.Lex_Calendario_Dias_Numero>td>span {
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
}

.Lex_Calendario_Pie {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 35px;
    margin-top: .2em;
}

.Lex_Calendario_Pie_Boton {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    outline: none;
    border: none;
    cursor: pointer;
    height: 35px;
    font-size: 12px;
    text-transform: uppercase;
    transition: .5s;
}

/*
    Estilo Tema Dark
*/

.Lex_Calendario_Theme_Dark {
    background: rgb(34, 47, 59);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(140, 151, 157, 0.07);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header {
    color: white;
    background-color: rgb(34, 47, 59);
}

.Lex_Calendario_Navegacion_Pre,
.Lex_Calendario_Navegacion_Next {
    font-size: 18px;
}

.Lex_Calendario_Navegacion_Pre::before {
    transform: rotate(90deg);
}

.Lex_Calendario_Navegacion_Next::before {
    transform: rotate(-90deg);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Navegacion {
    background-color: rgb(43 60 75);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Navegacion:hover {
    background-color: rgb(17, 67, 195);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Seleccion {
    background-color: rgb(34, 47, 59);
    color: white;
    font-size: 14px;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Tabla {
    color: white;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Dias_Numero td span:hover {
    background: rgb(40, 56, 70);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Dias_Hiden {
    color: rgb(89, 104, 117);
    font-weight: 600;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Dia_Activo {
    background-color: rgb(39, 104, 239);
    box-shadow: 0 0 100px;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Dia_Activo:hover {
    /* background-color: rgb(39, 104, 239) !important; */
    background-color: rgb(39, 104, 239);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Dia_Selecionado {
    background-color: rgb(62, 77, 91);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Dia_Selecionado:hover {
    background-color: rgb(62, 77, 91);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Pie {
    background-color: rgb(34, 47, 59);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Pie .Lex_Calendario_Pie_Boton {
    color: white;
    background-color: rgb(52, 72, 88);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Pie .Lex_Calendario_Hoy {
    background-color: rgb(17, 67, 195);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Cerrar:hover {
    box-shadow: inset 100px 50px rgba(0, 0, 0, 0.1);
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Seleccion::-webkit-scrollbar-track {
    border-radius: none;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Seleccion::-webkit-scrollbar {
    width: 7px;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Seleccion::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255, 0.25);
    border-radius: 30px;
}

.Lex_Calendario_Theme_Dark .Lex_Calendario_Header .Lex_Calendario_Seleccion::-webkit-scrollbar-thumb:hover {
    background: rgb(255, 255, 255, 0.35);
}

/*
    Estilo Tema Light
*/

.Lex_Calendario_Theme_Light {
    background: rgb(255, 255, 255);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55), 0 0 1px rgba(162, 182, 198, 0.60);
    border: 0px;
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Header {
    color: rgb(102, 113, 122);
    background-color: rgb(255, 255, 255);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Header .Lex_Calendario_Navegacion {
    background-color: rgb(237, 242, 247);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Header .Lex_Calendario_Navegacion:hover {
    background-color: rgb(16, 216, 194);
    color: white;
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Header .Lex_Calendario_Seleccion {
    background-color: rgb(255, 255, 255);
    color: rgb(102, 113, 122);
    font-size: 14px;
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Tabla {
    color: rgb(104, 121, 126);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Dias_Numero td span:hover {
    background: rgb(247, 248, 249);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Dias_Hiden {
    color: rgb(187, 210, 210);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Dia_Activo {
    background-color: rgb(16 216 194);
    box-shadow: 0 0 100px;
    color: rgb(255 255 255);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Dia_Activo:hover {
    background-color: rgb(16 216 194) !important;
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Dia_Selecionado {
    background-color: rgb(215, 255, 250);
    color: rgb(30, 158, 144);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Dia_Selecionado:hover {
    background-color: rgb(215, 255, 250) !important;
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Pie {
    background-color: rgb(34, 47, 59);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Pie .Lex_Calendario_Pie_Boton {
    background-color: rgb(236, 240, 241);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Pie .Lex_Calendario_Hoy {
    background-color: rgb(16, 216, 194);
    color: white;
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Cerrar {
    color: rgb(127, 142, 148);
}

.Lex_Calendario_Theme_Light .Lex_Calendario_Cerrar:hover {
    box-shadow: inset 100px 50px rgba(0, 0, 0, 0.01);
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// CALENDARIO DOBLE /////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.Lex_CalendarioDbl_Container {
    width: unset;
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
////////////////////RESPUESTA EMAIL CLAVE ///////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.Lexx_Global_Respuesta_Email_Clave {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background: rgb(42, 50, 60);
}

.Lexx_Global_Respuesta_Email_Logo_Contenedor {
    margin: 1em 0;
    user-select: none;
}

.Lexx_Global_Respuesta_Email_Logo {
    max-width: 120px;
    vertical-align: middle;
    object-fit: cover;
}

.Lexx_Global_Respuesta_Email_Contenedor {
    max-width: 85%;
    background: rgb(50, 60, 72);
    border-radius: 10px;
    padding: 2.5em;
    color: rgb(255, 255, 255);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.Lexx_Global_Respuesta_Email_Clave span {
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
}

.Lexx_Global_Respuesta_Email_Correcto::before {
    content: "\2713";
    position: absolute;
    top: -34px;
    left: -34px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50em;
    border: 4px solid rgb(42, 50, 60);
    background: rgb(54, 198, 165);
    font-size: 35px;
    user-select: none;
}

.Lexx_Global_Respuesta_Email_Caducado::before {
    content: "\0021";
    position: absolute;
    top: -34px;
    left: -34px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50em;
    border: 4px solid rgb(42, 50, 60);
    background: rgb(236, 138, 54);
    font-size: 35px;
    user-select: none;
}

.Lexx_Global_Respuesta_Email_Bloqueado::before {
    content: "\00D7";
    position: absolute;
    top: -34px;
    left: -34px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50em;
    border: 4px solid rgb(42, 50, 60);
    background: rgb(176 79 72);
    font-size: 35px;
    user-select: none;
}

.Lexx_Global_Respuesta_Email_Footer {
    margin: 1.5em 0;
    color: rgb(255, 255, 255);
    user-select: none;
}

.Lexx_Global_Respuesta_Email_Footer p {
    color: rgb(90 103 119);
    font-size: 13.5px;
    font-weight: bold;
}

.Lexx_Global_Respuesta_Email_Footer p a {
    color: rgb(4, 162, 179);
    animation: lex_Calendario_Fade 1s;
}

@keyframes lex_Calendario_Fade {
    from {
        transform: translateY(-3px)
    }

    to {
        transform: translateY(0deg)
    }
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// ToolTipText ///////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

/* Contenedor del Tooltip */

.Lexx_ToolTipTextBox {
    position: absolute;
    width: auto;
    max-width: 280px;
    height: auto;
    margin-left: -10px;
}

/* Background Tooltip */

.Lexx_ToolTipTextBox>div {
    position: relative;
    width: 100%;
    height: auto;
    padding: 8px;
    font-size: 14px;
    background: #383c41;
    backdrop-filter: blur(13px);
    color: #ffffff;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 25px 50px -12px #00000080;
}

.Lexx_ToolTipTextBox_Hide {
    opacity: 0;
    visibility: hidden;
}

/* barra de señalamiento izquierda y cuadro arriba */

.Lexx_ToolTipTextBox_Show_LeftTop {
    opacity: 1;
    visibility: visible;
}

/* Posiciones del After Izquierda Arriba */

.Lexx_ToolTipTextBox_Show_LeftTopFP::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 12px 0;
    border-color: rgb(0, 0, 0) transparent;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -7px;
    left: 15px;
    display: none;
}

/* barra de señalamiento izquierda y cuadro abajo */

.Lexx_ToolTipTextBox_Show_LeftBottom {
    opacity: 1;
    visibility: visible;
}

/* Posiciones del After Izqierda Abajo */

.Lexx_ToolTipTextBox_Show_LeftBottomFP>div::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 12px 12px;
    border-color: rgb(0, 0, 0) transparent;
    display: block;
    width: 0;
    z-index: 1;
    top: -7px;
    left: 15px;
    display: none;
}

/* barra de señalamiento derecha y cuadro arriba */

.Lexx_ToolTipTextBox_Show_RighttTop {
    opacity: 1;
    visibility: visible;
}

/* Posiciones del After Derecha Arriba*/

.Lexx_ToolTipTextBox_Show_RightTopFP::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 12px 0;
    border-color: rgb(0, 0, 0) transparent;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -11px;
    right: 15px;
    display: none;
}

/* barra de señalamiento derecha y cuadro abajo */

.Lexx_ToolTipTextBox_Show_RightBottom {
    opacity: 1;
    visibility: visible;
}

/* Posiciones del After Derecha Abajo */

.Lexx_ToolTipTextBox_Show_RightBottomFP::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 12px 12px;
    border-color: rgb(0, 0, 0) transparent;
    display: block;
    width: 0;
    z-index: 1;
    top: -11px;
    right: 15px;
    display: none;
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// autocomplete /////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.Lexx_AutoCompleteBox {
    box-sizing: border-box;
    position: absolute;
    padding: .8em;
    max-height: 180px;
    overflow-y: auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    user-select: none;
    overflow-x: hidden;
    box-shadow: 0 8px 6px -6px #00000099, 0 25px 35px #00000073;
}

.Lexx_AutoCompleteBox::before {
    content: "Resultado de búsqueda";
    padding: .75em;
    font-size: 11px;
    font-style: italic;
    color: #9aa3ac;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: left;
    pointer-events: none;
}

.Lexx_AutoCompleteBox>div {
    position: relative;
    padding: .75em;
    cursor: pointer;
    font-size: 13px;
    border-radius: 5px;
    padding-right: 40px;
    text-align: left;
    margin: 0px !important;
    /* white-space: nowrap; */
    /* overflow: hidden;
    text-overflow: ellipsis; */
}

.Lexx_AutoCompleteBox>div:hover {
    background: rgba(83, 98, 113, 0.13) !important;
}

.Lexx_AutoCompleteBox>div:after {
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 17px;
    opacity: 0.9;
    transform: translateY(-50%);
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// sortable /////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.sortable_class_active {
    border-style: dotted;
    opacity: 0.4;
    padding-top: .5em;
    padding-bottom: .5em;
    box-shadow: 0 25px 50px 12px rgba(0, 0, 0, 0.01);
}

.sortable_class_noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}


/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
/////////////////////// PAGINADO /////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.Lexx__Paginador__Global {
    gap: 5px;
}

.Lexx__Paginador__Global__Siguiente i,
.Lexx__Paginador__Global__Final i {
    transform: rotate(180deg);
}

.Lexx__Paginador__Global__Contador {
    border-radius: 3em;
    background: #0047c0;
    padding: 0.25em 0.85em;
}

.Lexx__Paginador__Global__Contador samp {
    font-size: 14px;
}

.Lexx__Paginador__Global span {
    display: flex;
    cursor: pointer;
}

.Lexx__Paginador__Global span:hover {
    opacity: 0.78;
}

.Lexx__Paginador__Global span i {
    font-size: 18px;
}

/*
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
////////////////////VENTA CONFIRMACION //////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
*/

.lexx_window_confirm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: #1d1f20b0;
    animation: lexx_confirm_fade 300ms alternate;
}

.lexx_window_confirm_overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lexx_window_confirm_container {
    background: #fff;
    position: relative;
    width: 90%;
    max-width: 460px;
    color: #333;
    border-radius: 6px;
    font-family: system-ui;
    max-height: 90%;
    box-shadow: 0 0 0 1px transparent;
    overflow-y: auto;
}

.lexx_window_confirm_container .hide {
    display: none;
    margin-bottom: 1em;
}

.lexx_window_confirm_header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 1.5em;
    position: sticky;
    top: -1px;
    z-index: 1;
    background: #f5f5f5;
}

.lexx_window_confirm_title b {
    font-size: 16px;
}

.lexx_window_confirm_footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    height: 60px;
    padding: 0 1.5em;
}

.lexx_window_confirm_footer button {
    padding: 10px 12px;
    font-size: 12px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-weight: 500 !important;
    font-family: system-ui;
    text-transform: uppercase;
}

.lexx_window_confirm_btn_cancel button {
    background: #cd5c5cc4;
}

.lexx_window_confirm_btn_ok button {
    background: #30bda2e3;
}

.lexx_window_confirm_info {
    font-size: 18px;
    padding: 1em 1.5em;
}

.lexx_window_confirm_container span samp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    animation: icon 300ms alternate;
}

.lexx_window_confirm_container span samp i {
    vertical-align: middle;
    font-size: 54px;
}

.lexx_window_confirm_container.warning {
    background: #da9620;
    color: #fff7d4;
}

.lexx_window_confirm_container.warning span samp i {
    margin-bottom: 3px;
}

.lexx_window_confirm_container.danger {
    background: #972b2b;
    color: #ffd4d4;
}

.lexx_window_confirm_container.success {
    background: #136052;
    color: #ecfffc;
}

.lexx_window_confirm_container.warning .lexx_window_confirm_header {
    background: #c3871f;
}

.lexx_window_confirm_container.danger .lexx_window_confirm_header {
    background: #882727;
}

.lexx_window_confirm_container.success .lexx_window_confirm_header {
    background: #11564a;
}

.lexx_window_confirm_container.warning .lexx_window_confirm_btn_cancel button,
.lexx_window_confirm_container.danger .lexx_window_confirm_btn_cancel button,
.lexx_window_confirm_container.success .lexx_window_confirm_btn_cancel button {
    background: #0000002b;
}

.lexx_window_confirm_container.warning .lexx_window_confirm_btn_ok button {
    background: #ffffff;
    color: #da9620;
}

.lexx_window_confirm_container.danger .lexx_window_confirm_btn_ok button {
    background: #ffffff;
    color: #972b2b;
}

.lexx_window_confirm_container.success .lexx_window_confirm_btn_ok button {
    background: #ffffff;
    color: #136052;
}

.lexx_window_confirm_container.warning .lexx_confirm_icon_alert {
    display: inline-flex;
    color: #ffe7bd;
    box-shadow: 0 25px 50px -20px #32200094;
    border: 1px dashed #ffcc71c9;
    background: #0000000d;
}

.lexx_window_confirm_container.danger .lexx_confirm_icon_error {
    display: inline-flex;
    color: #ffc0c0;
    box-shadow: 0 25px 50px -20px #250303a3;
    border: 1px dashed #fd8a8a5e;
    background: #00000021;
}

.lexx_window_confirm_container.success .lexx_confirm_icon_success {
    display: inline-flex;
    color: #d2fff7;
    box-shadow: 0 25px 50px -20px #001c13bf;
    border: 1px dashed #75e0cc47;
    background: #00000017;
}

.lexx_window_confirm_container.warning .lexx_window_confirm_subtitle,
.lexx_window_confirm_container.danger .lexx_window_confirm_subtitle,
.lexx_window_confirm_container.success .lexx_window_confirm_subtitle {
    text-align: center;
    line-height: 27px;
    font-size: 16px;
}


@keyframes lexx_confirm_fade {
    0% {
        visibility: hidden;
        opacity: 0;
    }

    100% {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes icon {

    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }

}