/* body {
    margin: 0;
    background-image: url("../Activos/fondo2025.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
} */

/* Desktop (fondo completo) */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: url("../Activos/fondo2025.png") no-repeat center top;
    background-size: cover;
    /* Cubre toda la pantalla */
    background-attachment: fixed;
    /* Opcional: mantiene el efecto fijo */
    min-height: 100vh;
    /* Crece dinámicamente */
}


/* Cuando sea móvil o pantallas pequeñas */
@media (max-width: 768px) {
  body {
    background-image: url(../Activos/FondoV22025.png);
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    background-position: center top; 
    background-color: #b21a0f;
    min-height: 100vh;
  }
}



@font-face {
    /*font-family: "Nunito Variable Font";*/
    font-family: 'Futura Condensed Medium';
    src: url("../Fuentes/FuturaCondensedMedium/FuturaCondensedMedium.otf") format('opentype');
    /*src: url("../Fuentes/Nunito-Italic-VariableFont_wght.ttf");*/
    /*src: local("☺"), url("fonts/Roboto-Light.woff") format("woff"), url("fonts/Roboto-Light.ttf") format("truetype"), url("fonts/Roboto-Light.svg") format("svg");
    font-weight: normal;
    font-style: normal;*/
}


.contenido {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 40%;
    /* Ancho como en la segunda imagen */
    min-height: 85%;
    background-color: rgba(0, 0, 0, 0.5);
    /* border-radius: 20px; */
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    /* Animación suave al cambiar tamaño */
}

#logoTecnolite {
    padding-top: 20px;
}


.DivCajaPrincipal {
    /*    padding-top: 20px;*/
    /*    background-image: url("../Activos/marco_amarillo.png");*/
    background-size: cover;
    background-color: aqua;
    /* background-position: center; */
    margin-bottom: 20px;
    margin-top: 120px;
    border-radius: 20px;
    /* Bordes redondeados */
    box-shadow: 0 0 15px 5px rgba(255, 215, 0, 0.8),
        /* Sombra amarilla interna */
        inset 0 0 20px 10px rgba(255, 215, 0, 0.6),
        /* Sombra amarilla interna */
        0 0 30px 10px rgba(255, 215, 0, 0.6);
    /* Sombra externa para brillo */
    position: relative;
    /* Necesario para que el contenido dentro pueda posicionarse de manera absoluta */
    padding-top: 40px;
    /* Espacio superior para acomodar la imagen sobre el div */
}

.Logo2024 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: absolute;
    /* Posiciona la imagen de manera absoluta */
    top: -115px;
    /* Mueve la imagen hacia arriba, ajusta este valor según sea necesario */
    /*left: 50%;*/
    /* Centra horizontalmente */
    /*transform: translateX(-50%);*/
    /* Ajusta el centrado debido al uso de left: 50% */
}

.Logo2024 img {
    max-width: 30%;
    height: auto;
}

.LogoTecnolite {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 50%;
    max-width: 50%;
    margin: 0 auto 10px auto;
}

.LogoTecnolite img {
    max-width: 50%;
    height: auto;
}

.text-left,
.text-right {
    max-width: 30%;
    color: white;
}


.text-with-lines {
    margin-top: 20px;
    text-align: center;
    /* Centrar el texto */
    margin-bottom: 20px;
    /* Espacio debajo del texto */
    position: relative;
    /* Para posicionar el div de la línea */
}

.text-with-lines .line {
    width: 50px;
    /* Ancho de la línea */
    height: 2px;
    /* Grosor de la línea */
    background-color: #ffd700;
    /* Color de la línea */
    box-shadow: 0 0 15px 5px rgba(255, 215, 0, 0.8),
        /* Sombra amarilla interna */
        inset 0 0 20px 10px rgba(255, 215, 0, 0.6),
        /* Sombra amarilla interna */
        0 0 30px 10px rgba(255, 215, 0, 0.6);
    /* Sombra externa para brillo */
    margin: 0 auto 10px auto;
    /* Centra la línea y añade espacio debajo */
}

/* .counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    margin-right: 20px;
} */

.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.counter-container .label {
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 80px;
    /* igual a la altura de los dígitos */
}

.counter {
    display: flex;
    gap: 5px;
}

.counter .digit {
    background-color: black;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(255, 180, 0, 0.9);
    /* Brillo amarillo */
    position: relative;
}

/* Línea del flip en medio */
.counter .digit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    opacity: 0.5;
}

/* 
.digit {
    height: 150px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    margin-top: 65px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    font-size: 2em;
    overflow: hidden;
} */

/* .label {
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
} */

.dateEvent {
    margin-top: 5px;
    font-size: 1em;
    /* letter-spacing: 2px; */
    color: white;
}

#logoPatrocinador {
    padding-top: 5px;
    color: white;
    margin-left: 480px;
}

#logoPatrocinador p {
    font-size: 20px;
    padding-left: 5px;
}

#tituloDias {
    color: white;
    margin-left: 710px;
}

#tituloDias h5 {
    font-size: 4.25rem;
}

#demo {
    background-color: white;
}

#diasDiv,
#horasDiv,
#minutosDiv,
#segundosDiv,
#TimerLabel {
    /*background-color: rgba(255,255,255,.7);*/
    font-size: 100px;
    /* color: black; */
    /*  border-radius: 20px;*/
    /* -moz-border-radius: 20px;
    -webkit-border-radius: 20px;*/
    /* margin-left: 20px;
    margin-right: 20px;
    font-weight: bold; */
}

.reloj {
    width: 100%;
}

/* .formulario {
    background-color: black;
    border-radius: 35px;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
    margin-top: 2%;
    margin-left: 0%;
    height: auto;
    color: white;
}

.tituloPreregistro {
    font-size: 25px;
    color: white;
}

#datosComp {
    margin-top: 10px;
    margin-left: 0px;
} */

.fechaEvento {
    font-family: 'Times New Roman', serif;
    /* o una fuente elegante */
    font-weight: 400;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.form-container {
    /* border-radius: 0px; */
    /* padding: 30px 20px; */
    margin-top: 20px;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tituloPreregistro {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
}

.form-control,
.form-select {
    /* border-radius: px; */
    border: none;
    padding: 10px 12px;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    transition: 0.2s;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    box-shadow: 0 0 1px rgba(255, 204, 0, 0.8);
    outline: none;
}


#NOMBRE_TXT,
#CORREO_TXT,
#EMPRESA_TXT,
#TELEFONO_TXT,
#FECHA_CMB,
#CITAS_CMB,
#N_ACOM_TXT,
#CIUDAD_TXT {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

#NOMBRE_TXT1,
#CORREO_TXT1,
#NOMBRE_TXT2,
#CORREO_TXT2,
#NOMBRE_TXT3,
#CORREO_TXT3,
#NOMBRE_TXT4,
#CORREO_TXT4 {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

/* ===== Botón ===== */
#ENVIAR_BTN {
    background-color: #ffb100;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    transition: 0.2s;
}

#ENVIAR_BTN:hover {
    background-color: #ffa000;
    box-shadow: 0 0 10px rgba(255, 180, 0, 0.9);
}

#infoRifa {
    margin-left: 330px;
    ;
}

#textoRifa {
    padding-top: 20px;
    font-size: 15px;
    font-weight: bold;
}

#imagenRifa {
    background-color: white;
    font-weight: bold;
    color: #E96B00;
    border-radius: 35px;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
}

#footerContenido {
    margin-top: 20px;
    color: white;
    font-size: 25px;
    margin-left: 50px;
}

#iconosFooter {
    margin-left: 290px;
}

#iconoHora {

    border-left: solid #E7AB15;
    border-right: solid #E7AB15;
}

@media (max-width: 1440px) {

    .LogoTecnolite img {
        max-width: 50%;
        height: auto;
    }

    .contenido {
        left: 3.5%;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoPatrocinador {
        margin-left: 325px;
    }

    #logoPatrocinador img {
        height: 110px;
        width: 150px;
    }

    #logoPatrocinador p {
        padding-left: 3px;
    }

    #tituloDias {
        margin-left: 560px;
        ;
    }

    #iconosFooter {
        margin-left: 240px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 17px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #infoRifa {
        margin-left: 200px;
    }

    #footerContenido {
        margin-top: 20px;
        color: white;
        font-size: 20px;
        margin-left: 10px;
    }
}

@media (max-width: 1412px) {



    .LogoTecnolite img {
        max-width: 50%;
        height: auto;
    }

    .contenido {
        left: 3.5%;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoPatrocinador {
        margin-left: 325px;
    }

    #logoPatrocinador img {
        height: 110px;
        width: 150px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
    }

    #tituloDias {
        margin-left: 550px;
        ;
    }

    #iconosFooter {
        margin-left: 275px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 17px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #infoRifa {
        margin-left: 250px;
    }

    #footerContenido {
        margin-top: 20px;
        color: white;
        font-size: 20px;
        margin-left: 0px;
    }

    #textoRifa {
        padding-top: 10px;
        font-size: 15px;
        font-weight: bold;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 1362px) {

    .LogoTecnolite img {
        max-width: 50%;
        height: auto;
    }


    .contenido {
        min-width: 93%;
        left: 50px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 100px;
        color: black;
        border-radius: 20px;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        /* margin-left: 55px;*/
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #iconosFooter {
        margin-left: 200px;
    }

    #infoRifa {
        margin-left: 215px;
    }

    #tituloDias {
        margin-left: 530px;
    }

    #logoIluminando {
        padding-top: 20px;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoPatrocinador {
        margin-left: 325px;
    }

    #logoPatrocinador img {
        height: 110px;
        width: 150px;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }

}

@media (max-width: 1292px) {

    .LogoTecnolite img {
        max-width: 50%;
        height: auto;
    }


    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 25px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 175px;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoPatrocinador {
        margin-left: 260px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
    }

    #logoPatrocinador img {
        height: 110px;
        width: 150px;
    }

    #tituloDias {
        margin-left: 495px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #infoRifa {
        margin-left: 200px;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 892px) {

    .LogoTecnolite {
        max-width: 50%;
        height: auto;
    }

    .contenido {
        left: 3.5%;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 60px;
        color: black;
        border-radius: 15px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        margin-left: 30px;
    }

    .formulario {
        margin-left: 0px;
        min-width: 100%;
    }

    #logoIluminando {
        padding-top: 20px;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite {
        padding-right: 50px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoPatrocinador {
        margin-left: 125px;
    }

    #logoPatrocinador p {
        padding-left: 3px;
        font-size: 15px;
    }

    #tituloDias {
        margin-left: 360px;
        ;
    }

    #tituloDias p {
        margin-left: 360px;
        ;
    }

    #iconosFooter {
        margin-left: 35px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 17px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #infoRifa {
        margin-left: 0px;
    }

    #footerContenido {
        margin-top: 20px;
        color: white;
        font-size: 20px;
        margin-left: 10px;
    }

    #ENVIAR_BTN {
        margin-left: 5%;
        margin-bottom: 10px;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }

}

@media (max-width: 768px) {

    /* body {
        min-height: 280vh;
    } */


    .LogoTecnolite {
        width: 100%;
    }

    .LogoTecnolite img {
        max-width: 100%;
        height: auto;
    }


    .counter-container {
        font-size: 2em;
        margin-top: 40px;
    }

    .agrupadorForm {
        background-image: url("../Activos/Fondo_sin-recuadro.jpg");
        height: 60%;
    }

    .formulario {
        margin-left: 0px;
        min-width: 100%;
    }

    #datosComp {
        margin-left: 0px;
    }


    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    .reloj {
        min-width: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 70px;
        color: black;
        margin-left: 12px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #iconosFooter {
        margin-left: 0px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 17px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 25px;
        width: 25px;
    }

    #infoRifa {
        margin-left: 150px;
    }

    #tituloDias {
        margin-left: 265px;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoTecnolite {
        padding-right: 20px;
    }

    #logoPatrocinador {
        margin-left: 45px;
    }

    #logoPatrocinador img {
        height: 110px;
        width: 150px;
    }

    #logoPatrocinador p {
        padding-left: 3px;
        font-size: 15px;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 628px) {

    /* body {
        min-height: 265vh;
    } */


    .text-left,
    .text-right {
        max-width: 80%;
    }

    .digit {
        height: 50px;
    }


    .LogoTecnolite {
        width: 100%;
    }

    .LogoTecnolite img {
        max-width: 100%;
        height: auto;
    }

    .Logo2024 img {
        max-width: 60%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #logoIluminando img {
        height: 170px;
        width: 250px;

    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 50px;
        color: black;
        border-radius: 15px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        margin-left: 20px;
    }

    #iconosFooter {
        margin-left: -15px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 14px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 20px;
        width: 20px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 80px;
        width: 200px;
    }

    #logoTecnolite img {
        height: 70px;
        width: 150px;
    }

    #logoTecnolite {
        padding-right: 20px;
    }

    #logoPatrocinador {
        margin-left: 15px;
    }

    #logoPatrocinador img {
        height: 110px;
        width: 150px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
    }


    #tituloDias {
        margin-left: 200px;
    }

    #textoRifa {
        font-size: 12px;
    }

    #infoRifa {
        margin-left: 125px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 426px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }


    .digit {
        height: 50px;
    }

    .LogoTecnolite {
        width: 100%;
    }

    .LogoTecnolite img {
        max-width: 100%;
        height: auto;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .counter-container {
        font-size: 1.5em;
        margin-top: 20px;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 32px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 20px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 55px;
        width: 115px;
    }

    #logoTecnolite img {
        height: 55px;
        width: 100px;
    }

    #logoPatrocinador {
        margin-left: -11px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 12px;
    }

    #logoPatrocinador img {
        height: 66px;
        width: 100px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 14px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 18px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 25px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 420px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }


    .digit {
        height: 50px;
    }


    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 31px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 20px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 55px;
        width: 115px;
    }

    #logoTecnolite img {
        height: 55px;
        width: 100px;
    }

    #logoPatrocinador {
        margin-left: -11px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 12px;
    }

    #logoPatrocinador img {
        height: 66px;
        width: 100px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 13px;
    }

    #infoRifa {
        margin-left: -5px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 17px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 25px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 414px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }


    .digit {
        height: 50px;
    }


    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 28px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 10px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 40px;
        width: 95px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: 0px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 12px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 13px;
    }

    #infoRifa {
        margin-left: -5px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 17px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 20px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 412px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }


    .digit {
        height: 50px;
    }

    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 30px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 20px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 40px;
        width: 100px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: 5px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 12px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 13px;
    }

    #infoRifa {
        margin-left: -5px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 17px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 20px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 405px) {


    .text-left,
    .text-right {
        max-width: 80%;
    }


    .digit {
        height: 50px;
    }


    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }


    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 30px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 6px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 40px;
        width: 100px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: 0px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 12px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 13px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 17px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 20px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }


}

@media (max-width: 398px) {


    .text-left,
    .text-right {
        max-width: 80%;
    }

    .digit {
        height: 50px;
    }


    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 29px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 20px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 40px;
        width: 100px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: 0px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 10px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 12.5px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 16px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 15px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 392px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }


    .digit {
        height: 50px;
    }

    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }


    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 28px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 20px;
    }

    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 40px;
        width: 100px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: -5px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 10px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 12.5px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 16px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 10px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 387px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }

    .digit {
        height: 50px;
    }


    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 27px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 6px;
    }


    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 10px;
    }

    #logoIluminando img {
        height: 40px;
        width: 95px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: -10px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 10px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 12.5px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 16px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 20px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 40px;
        width: 40px;
    }

    #iconosFooter {
        margin-left: 5px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 384px) {

    .text-left,
    .text-right {
        max-width: 80%;
    }

    .digit {
        height: 50px;
    }

    .LogoTecnolite {
        width: 100%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }


    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 27px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 20px;
    }


    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 10px;
    }

    #logoIluminando img {
        height: 40px;
        width: 95px;
    }

    #logoTecnolite img {
        height: 40px;
        width: 95px;
    }

    #logoPatrocinador {
        margin-left: -5px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 10px;
    }

    #logoPatrocinador img {
        height: 70px;
        width: 95px;
    }

    #tituloDias {
        margin-left: 140px;
    }

    #textoRifa {
        font-size: 12.5px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #footerContenido {
        font-size: 15px;
    }

    #tituloDias h5 {
        font-size: 2.25rem;
    }

    #footerContenido {
        font-size: 16px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 18px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 30px;
        width: 30px;
    }

    #iconosFooter {
        margin-left: 5px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

@media (max-width: 320px) {

    .LogoTecnolite {
        width: 100%;
    }

    .digit {
        height: 50px;
    }

    .text-left,
    .text-right {
        max-width: 80%;
    }

    .Logo2024 img {
        max-width: 100%;
        height: auto;
    }

    .contenido {
        min-width: 100%;
        left: 0px;
        top: 0px;
    }

    #diasDiv,
    #horasDiv,
    #minutosDiv,
    #segundosDiv,
    #TimerLabel {
        background-color: rgba(255, 255, 255, .7);
        font-size: 19px;
        color: black;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        margin-left: 4px;
    }


    #ENVIAR_BTN {
        margin-left: 0%;
        margin-bottom: 15px;
    }

    #logoIluminando img {
        height: 25px;
        width: 60px;
    }

    #logoTecnolite img {
        height: 25px;
        width: 60px;
    }

    #logoPatrocinador {
        margin-left: -0px;
    }

    #logoPatrocinador p {
        padding-left: 0px;
        font-size: 10px;
    }

    #logoPatrocinador img {
        height: 56px;
        width: 75px;
    }

    #tituloDias {
        margin-left: 110px;
    }

    #textoRifa {
        font-size: 9px;
    }

    #infoRifa {
        margin-left: -10px;
    }

    #tituloDias h5 {
        font-size: 1.25rem;
    }

    #footerContenido {
        font-size: 11px;
    }

    #iconoDia,
    #iconoHora,
    #iconoUbicacion {
        font-size: 15px;
    }

    #iconoDia img,
    #iconoHora img,
    #iconoUbicacion img {
        height: 30px;
        width: 30px;
    }

    #iconosFooter {
        margin-left: 5px;
    }

    #iconoHora {
        border-left: none;
        border-right: none;
    }

    #imagenRifa img {
        height: 40px;
        width: 40px;

    }
}

.error {
    border-style: solid !important;
    border-color: red !important;
}

.ok {
    border-style: solid !important;
    border-color: green !important;
}

.Loading__container {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9) !important;
    position: fixed;
    top: 0;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: opacity 500ms;
}

.Loading__container--show {
    height: 100%;
    opacity: 100;
}

.Loading__imagen {
    width: 90%;
    max-width: 270px;
}