html{
    scroll-behavior: smooth;
    
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;  
}
body{
    display: flex;
    flex-direction: column;
    position: relative;

}

/*HEADER*/

header{
    width: 100%;
    height: 15vh;
    background-color: #ffdd00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.div__logo-header{
    display: block;
    width: 140px;
    height: auto;
}
.div__logo-header a {
    display: block;
    width: 100%;
}
.div__logo-header a img{
    width: 100%;
    height: 100%;
}

.open__menu{
    display: none;
}
.label__menu{
    width: 70px;
    height: 70px;
    z-index: 4;
}
.label__menu img{
    width: 100%;
    cursor: pointer;
    
}
.header__nav{
    
    opacity: 0;
    background-color:  #ffdd00bd ;
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
    border-radius: 0 0 0 20px;
    right: 0;
    top:0;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.open__menu:checked ~ .header__nav{
    opacity: 1;
    display: flex;
    width: 60vw;
    height: 48vh;
    
}

.header__nav-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap:2em;
    list-style: none;
}

.header__nav-item{
    transform: scale(1.2);
    align-items: center;
    
}
.header__nav-item a{
    color: black;
    text-decoration: none;
        
}

/*DIV CONTENT PAGE*/

.content__general-base{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #292636;
    

}
/*DIV CONTENT NOTIFICACIONES*/
.messages__notificacion{
    
    position: fixed;
    top: 12em;
    right: 0;
    width: 50%;
    min-height: 6vh;
    z-index: 500;
    border-radius: 8px 0 0 8px;
}

.ul__notificacion{
    width: 100%;
    height: 100%;
    list-style: none;
    padding: .5em;
    gap: .5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.li__mensaje{
    position: relative;
    width: 100%;
    min-height: 3.8em;
    align-content: center;
    padding: .5em;
    
    border-radius: 7px;
    transition: all .6s ease-out;
        &&:hover{
            transform: scale(1.02);
            box-shadow: 0 0 8px 0 #acacac;
        }
}
.li__mensaje.warning{
    background-color: rgba(255, 212, 101, 0.849);
}
.li__mensaje.error{
    background-color: rgba(255, 101, 101, 0.849);
}
.li__mensaje.success{
    background-color: rgba(101, 255, 152, 0.849);
}
.li__mensaje.info{
    background-color: rgba(101, 181, 255, 0.849);
}

.li__mensaje:hover .relleno__timeline {
  animation-play-state: paused;
}


.timeline__mensaje{
    position: absolute;
    width: 100%;
    height: 1vh;
    background-color: transparent;
    bottom: 0;
    left: 0;
    border-radius:0 0 7px 7px;
}
.relleno__timeline{
    width: 0%;
    height: 100%;
    background-color:#ffffffbb ;
    border-radius:0 0 7px 7px;
    animation: rellenar 6s linear forwards;
}

/*PRINCIPAL SECTION INICIAL*/
.section__base{
    width: 100%;
    height: 100%;
}
.section__base.inicial{
    position: relative;
    height: 85vh;
    background-image: url(../images/background/premioMobile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.inicial__button-div{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button__inicial{
    padding: 1em;
    width: 10rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: box-shadow .3s ease-in,
                transform .2s ease-out;
                

        &&:hover{
            box-shadow: 0px 0px 8px 0px #ffffffbb;
            transform: scale(1.1);
        }
}
.button__inicial.ganadores{
    border: 6px solid #ffdd00bd;
    background-color: #ff2636;
    transition: border .2s ease-in,
                transform .2s ease-out;
        &&:hover{
            border: 6px solid #ffdd00;
        }

}
.button__inicial.juega{
    background-color: #292636;
    border: 2px solid #fff;
}
.button__inicial a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    align-content: center;
    color: #fff;
}
/*SECTION INFORMACION*/

.section__base.informacion{ 
    height:100vh;
    background-color: #292636;
    display: flex;
    flex-direction: column;
}

.content__informacion-primario{
    width: 100%;
    height: 60vh;
    align-content:center ;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 10% cover 35%;
}
.content__informacion-primario h2{
    color: #fff;
    text-align: center;
    font-style:oblique;
}
.sangria__blanco{
    margin-left:2rem ;
    font-size: 22px;
}
.point{
    font-size: 44px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.point.red{
    color: #ff2636;
}
.point.yellow{
    color: #ffde26;
}

.content__informacion-primario article{
    padding: 15px 10px 10px 10px;
    color: #fff;
}

.content__informacion-secundario{
    width: 100%;
    height: 35vh;
    background-color: #811919;
    overflow: hidden;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 0% cover 35%;
}


.logo__informacion-secundaria{
    width: 50%;
    height: 50%;
    margin: 0 auto;
}
.logo__informacion-secundaria img{
    width: 100%;
    height: 100%;

}

.modales__informacion-secundaria{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    
}
.button__info-modal{
    
    width: 8rem;
    height:3.5rem;
    border-radius: 10px;
    background-color: #ffdd00bd;
    border: 2px solid #811919;
    transition: background-color .3s ease-out;
    position: relative;

        &&:hover{
            background-color: #ddc003;
        }
}
.button__info-modal img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.modal__info{
    display: none;
    background-color: aliceblue;
    width: 10rem;
    padding: 8px;
    border-radius: 0px 5px 5px 5px;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: 5px;
    
}
.modal__info::before{
    background-color:aliceblue;
    content:'';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -7px;
    left: 0;
    border-radius: 0px 100% 10% 0px;
    
    
   
}
.button__info-modal.support:hover .modal__info.support{
    display: block;
    
    
}
.button__info-modal.cloud:hover .modal__info.cloud{
    display: block;
    
}


/*SECTION POLITICA*/
.section__base.politica{
    min-height:100vh;
    background-color: #292636;
    display: flex;
    flex-direction: column;
    
}


.content__politica-primario{
    width: 100%;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 10% cover 35%;

}
.content__politica-primario h2{
    color: #fff;
    text-align: center;
    font-style:oblique;
}
.content__politica-primario article{
    padding: 15px 10px 10px 15px;
    color: #fff;
}
.content__politica-primario article ul{
    margin-left: 40px;
    
}
.content__politica-primario article ul li{
    margin: 5px 0px;
}

.content__politica-secundario{
    width: 100%;
    height: 35vh;
    background-color: rgb(209, 181, 0);
    position: relative;
    display: flex;
    align-items: center;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 0% cover 35%;
}

.content__politica-secundario article{
    color: #fff;
    text-align: center;
    font-weight: 600;
}
.logo__politica-secundario{
    
    width: 4rem;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}
.logo__politica-secundario img{
    width: 100%;
    height: 100%;
}

/*SECTION SORTEO*/

.section__base.sorteo{
    width: 100%;
    height: 100vh;
    background-color: #292636;
    
    position: relative;
}

.content__sorteo-primario{
    width: 100%;
    height: 100vh;
    display: grid;
    
    grid-template-rows: 2.5fr .5fr 3fr 2fr;
    gap: 10px;
    padding: 1em;
    color: #fff;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 10% cover 35%;
}

.info__general-sorteo{
    padding: .5em;
}
.info__general-sorteo h2{
    text-align: center;
    margin-bottom: .5em;
}
.info__general-sorteo article{
    font-size: 17px;
    
}
.barra__porcentaje-sorteo{
    padding: .3em;
}
.barra__blanca-sorteo{
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: .2em;
    border-radius:8px ;
    border: 1px solid #ddc003;
    margin: 0 auto;

}
.barra__relleno-sorteo{
    
    height: 100%;
    background-color: #ac2323e7;
    border-radius:8px ;
    text-align: center;
    align-content: center;
    font-weight: 600;
}
.imagen__principal-sorteo{
    
    background-color: #ac2323e7;
    text-align: center;
    align-content: center;
    border-radius: 8px;
}
.imagen__principal-sorteo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.botones__select-sorteo{
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
}
.select__opcion-sorteo{
    width: 95%;
    height: 30%;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: transform .3s ease-in,
                box-shadow .2s ease-out;
        &&:hover{
            transform: scale(1.1);
            box-shadow: 0px 0px 8px 0 #ffffffbb;
        }
}
.select__opcion-sorteo a{
    display: block;
    width: 100%;
    height: 100%;
    align-content: center;
    text-decoration: none;
    color: #fff;
        &&:link{
            color: #fff;
        }
}
.select__opcion-sorteo.juega,.select__opcion-sorteo.resultados{
    background-color: #ffdd00d3;
}
.select__opcion-sorteo.verificacion{
    background-color: #ac2323;
}
.content__sorteo-secundario.mobile{
    background-color: #ac2323;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: .3em;
    
}
.instruc__mobile-button{
    display: none;
}
.content__sorteo-secundario.mobile label{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.content__sorteo-secundario.mobile label img{
    width: 90%;
    height: 90%;
}
.sorteo__mobile-desplegable{
    background-color: #811919;
    border-radius: 16px 16px 4px 16px;
    position: absolute;
    bottom:  2rem;
    right: 2rem;
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    color: #fff;
    
}

.instruc__mobile-button:checked ~ .sorteo__mobile-desplegable{ 
    width: 80vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    padding: 2em;
    overflow-y : auto;
}
.sorteo__mobile-desplegable label{
    font-weight: 600;
    position: relative;
    right: 55%;
    bottom: 5%;
}
.sorteo__mobile-desplegable h3{
    font-size: 24px;
    text-align: center;
}
.sorteo__mobile-desplegable ol{
    font-size: 16px;
    padding: 1.5rem;
}
.sorteo__mobile-desplegable ol li{
    margin: 1.5rem 0px;
}

.content__sorteo-secundario.pc{
    display: none;
}

/*SECTION GANADORES*/

.section__base.ganadores{
    width: 100%;
    height: 100vh;
    background-color: #292636;
    color: #fff;
}
.section__base.ganadores h2{
    text-align: center;
    font-style: oblique;
    font-size: 26px;
    margin: 2rem 0px;
}
.content__ganadores-primario{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 1rem;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 5% cover 45%;
    
}
.block__ganadores-item{
    background-color: #ffffff71;
    width: 70%;
    height: 35%;
    border-radius: 16px;
    padding: 1rem;
    overflow: hidden;
    transition: all .2s ease-in;
        &&:hover{
            transform: scale(1.05);
        }
}
.block__ganadores-item.red{
    border: 5px solid #811919;
}
.block__ganadores-item.yellow{
    border: 5px solid #ddc003;
}


.imagen__ganadores-item{
    width: 100%;
    height: 70%;
}
.imagen__ganadores-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1em;
}
.info__ganadores-item{
    width: 100%;
    height: auto;
    text-align: center;
    margin: 1em;
}

/*FOOTER*/
footer{
    background-color: rgb(209, 181, 0);
    width: 100%;
    height: 13vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.logo__footer{
    height: 100%;
    width: 35%;
    align-content: center;
}
.logo__footer img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.contactanos__footer{
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contactanos__redes{
    
    
    padding: 0;
    list-style: none;
    width: 70%;
}
.item__social{
    display: inline-block;
    width: 30%;
    height: 100%;
}
.item__social img{
    width: 80%;
    height: 80%;
}

/*FORMULARIO*/
.base__form-sorteo{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}
/*PASO 1*/
.form__sorteo-base{
    background-color: #635f74;
    border-radius: 6px;
    padding: 2em;
}

.titulo__form{
    color: #fff;
    font-size: 1.4em;
    margin: .5em;
    
}

.form__sorteo-base.primero{
    width: 80%;
    height: 40vh;
    
}


.content__form-sorteo, .content__form-sorteo.paso_uno form{
    width: 100%;
    height: 100%;
}
.content__form-sorteo form{
    display: grid;
    gap: 1em;
    align-items: center;
    color: #c2c2c2;
}

.div__form-sorteo{
    width: 100%;
}

.div__form-sorteo input{
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
}
.div__form-sorteo label{
    cursor: pointer;
    display: block;
    font-size: 18px;
    transform: translateY(-25px);
    transition: transform .3s ease-in-out,
                color .2s ease-in,
                font-size .2s ease-in;
}
.div__form-sorteo input:focus + label,.div__form-sorteo input:not(:placeholder-shown) + label {
    transform: translateY(-40px);
    color: #fff;
    font-size: 15px;
    transform-origin: left top;
}

.div__form-sorteo.submit{
    height: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.div__form-sorteo.submit button a{
    display: block;
    width: 100%;
    height: 100%;
    align-content: center;
    color: #6b6b6b;
    text-decoration:none;
    &&:hover{
            color: #fff;}
            
}
.div__form-sorteo.submit button:hover a{
    color: #fff;
}

.div__form-sorteo.submit button{
    border-radius: 4px;
    width: 50% ;
    height: 80%;
    font-size: .8em;
    color: #6b6b6b;
    cursor: pointer;
    transition: all .3s ease-in;
        &&:hover{
            color: #fff;
            background: #272041a8;
            
        }
}
/*PASO 2*/
.form__sorteo-base.dos{
    width: 80%;
    min-height: 50vh;
    
    margin:1em;
}

.content__form-sorteo.paso_dos form{
    gap: 0;
}
/*GRID TICKETS PASO 2*/

.div__base-ticket{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(70px,1fr));
    gap: .2em;
    padding: 1em 0;
}
.ticket__item-base{
    height: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.input__ticket-item{
    display: none;
}



.div__image-item{
    background-image: url(../images/svg/ticketfree.svg);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;    
    width: 100%;
    height: 100%;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease-out;
        &&:hover{
            background-size: 95%;
        }

}
.input__ticket-item:checked ~ .div__image-item{
    background-image: url(../images/svg/ticketselect.svg);
}
.div__image-item label{
    font-weight: 600;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}

/*PAGINADOR PASO 2*/
.div__pag-sorteo{
    width: 100%;
    height: 50px;
}
.div__pag-sorteo nav{
    height: 100%;
}
.pagination__ul{
    font-size: 20px;
    text-align: center;
    align-content: center;
    height: 100%;
    color: #fff;
    text-decoration: none;
}
.li__page-item{
    display: inline-block;
        
}
.li__page-item a{
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    color: #fff; 
    &&:link{
           color: #fff; 
        }
}
.li__page-item a img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
/*SELECTORES PASO 2*/

.div__select-sorteo.select{
    display: flex;
    flex-direction: column;
    padding: .5em 0;
    gap: .3em;
    justify-content: center;
    height: 9rem;
    
}
.botton__select{
    height: 30%;
    transition: all .3s ease-in;
    color: #6b6b6b;
    cursor: pointer;
        &&:hover{
            color: #fff;
            background: #272041a8;
            
        }
}

/*PASO 3*/
.form__sorteo-base.tercero{
    height: 55vh;
    width: 80%;
}
.div__datos-banc{
    width: 100%;
    height: 45%;
    position: relative;
}
.datos__banc{
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 1em;
    color: #fff;
}
.datos__banc.pagomovil{
    
    z-index: 40;
}
.datos__banc.zelle{
    
    z-index: 0;
    opacity: 0;
}
.div__form-sorteo.option{
    display: none;
}

.image__logo-datos{
    width: 5em;
    height: 5em;
    position: absolute;
    right: 1.5em;
    top: 0;
    
}
.image__logo-datos.bnc{
    width: 3em;
    height: 3em;
    right: 1.5em;
}

.image__logo-datos img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.div__form-sorteo.select{
    padding: .5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 4em;
    gap:.5em;
}
.method__page{
    background-color: #292636bd;
    width: 30%;
    height: 100%;
    display: flex;
    border-radius:4px ;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease-out;

        &&:hover{
            background-color: #524c6bbd;
            box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.685);
            transform: scale(1.1);
        }
        
    
}


.method__page img{
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all .2s ease-out;
}
.method__page:hover img{
    transform: scale(1.1);
}



.content__form-sorteo.paso_tres form{
    height: 50%;
    width: 100%;
}

/*PASO 4*/
.form__sorteo-base.cuatro{
    padding: 1em;
    min-height: 60vh;
    width: 80%;
}
.content__general-form.cuatro{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: space-evenly;

}


.content__alert-info{
    color:#fff;
    max-height: 50%;
}
.content__alert-info h4{
    text-align: center;
    margin-bottom: 1rem;
    font-size: 18px;
}
.info__ticket-p{
    text-overflow: ellipsis;


}
.content__form-sorteo.paso_cuatro{
    height: 50%;
}

.content__form-sorteo.paso_cuatro form{
    height: 100%;
    width: 100%;
    gap:1.5em;
}
.div__form-sorteo .form__control-image{
    border: none;
}


/*COMPROBANTE USUARIO*/
.section__base.comprobante{
    width: 100%;
    min-height: 73vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.5fr 0.5fr 2fr 1fr;
    flex-direction: column;
    justify-content:end;
    gap: 1em;
    padding: 1.5em;
    align-items: center ;
}

.titulo__comprobante{
    color: #fff;
    font-size: 1.4em;
    margin: .5em;
    text-align: center;
    align-self: start;
}

.content__comprobante-base{
    
    color: #fff;
    background-color: #635f74;
    border-radius: 6px;
  
    padding: 1em;
   
}
.content__comprobante-base.buscador form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    
}
.content__comprobante-base.buscador form button{
    height: 2em;
    width: 70%;
    align-self: center;
    font-size: 17px;
    border-radius: 6px;
    transition: all .3s ease-in;
    cursor: pointer;
        &&:hover{
            color: #fff;
            background: #272041a8;
            
        }
    
}
.content__comprobante-base.image{
    display: none;
}
.consulta__comprobante{
    width: 100%;
    height: 100%;
    position: relative;
}
.consulta__comprobante input{
    width: 100%;
    height: 1.3em;
    font-size: 18px;
    color: #fff;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid #fff;
    margin: .5em 0;
    
}
.consulta__comprobante label{
    display: block;
    position: absolute;
    top: .3em;
    left: 0;
    cursor: pointer;
    font-size: 20px;
    transition: transform .3s ease-in-out,
                color .2s ease-in,
                font-size .2s ease-in;
    

}

.consulta__comprobante input:focus + label, .consulta__comprobante input:not(:placeholder-shown) + label{

    transform: translateY(-15px);
    color: #fff;
    font-size: 15px;
    transform-origin: left top;
}

.info__user-personal h3{
    text-align: center;
    margin: .2em 0 .8em 0;
}
.info__user-personal p{
    margin: .15em
}

/*MEDIA QUERIES*/
@media screen and (min-width:56.25rem){


    /*PRINCIPAL SECTION INICIAL*/
    .div__logo-header{
        width: 200px;
        padding-left: 16px;
    }
    .label__menu{
        display: none;
    }
    .header__nav{
        opacity: 1;
        display: block !important;
        position: static;
        width: 50% !important;
        height: 100% !important;
        background-color: transparent;
        border-radius: 0px;
    }
    .header__nav-list{
        flex-direction: row;
        gap: 0;
        height: 100%;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        
        
    }
    .header__nav-item{
        width: 33.33%;
        transform: none;
        text-align: center;
        height: 100%;
        overflow: hidden;
       
    }
    .header__nav-item a{
        display: block;
        width: 100%;
        height: 100%;
        line-height: 6.5rem;
        font-size: 22px;
        font-weight: 400;
        transition: background-color .3s ease-out,
                    font-size .2s ease-in;
            &&:hover{
                background-color: #7e70199f;
                font-size: 24px;
            }
        
    }

    .inicial__button-div{
        flex-direction: row;
        right: 3rem;
    }
    .button__inicial{
         &&:hover{
            box-shadow: 0px 0px 8px 0px #ffffffbb;
            transform: scale(1.1);
        }
    }

    /*DIV CONTENT GENERAL*/
    .content__general-base{
        min-height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*DIV NOTIFICACIONES CONTENT*/
    .messages__notificacion{
        width: 25%;
    }
    /*Background inicial*/
    .section__base.inicial{
 
        background-image: url(../images/background/premioPc.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 130%;
        
       

    }
    /*SECTION INFORMACION*/

    .section__base.informacion{
        view-timeline: --infosection block;
        flex-direction: row;
    }

    .content__informacion-primario{
        width: 60%;
        height: 100vh;
        align-content:start ;
    }
    .content__informacion-primario h2{
        margin-top:5rem ;
        margin-bottom: 3rem;
        font-size: 32px;
    }
    .content__informacion-primario article{
        margin: 0px 4rem;
        font-size: 20px;
    }
    .sangria__blanco{
        font-size: 28px;
    }

    .content__informacion-secundario{
    
    width: 35%;
    height: 100vh;
    animation: desenrrollar both;
    animation-timeline: --infosection;
    animation-timing-function: linear;
    animation-range-start: cover 2%;
    animation-range-end:  contain 80%;

    }
    .logo__informacion-secundaria{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: end;
        animation: aparecer both;
        animation-timeline: --infosection;
        animation-range-start: cover 5%;
        animation-range-end:cover 100%;
        
    }
    
    .logo__informacion-secundaria img{
        width: 60%;
        height: 60%;
        object-fit: cover;
        
    }
    .modales__informacion-secundaria{
      
        animation: aparecer both;
        animation-timeline: --infosection;
        animation-range-start: cover 35%;
        animation-range-end:contain 80%;
       
    }

    .button__info-modal{
        width: 10rem;
        height:4rem;
        
    }

    /*SECTION POLITICA*/
    .section__base.politica{
        view-timeline: --polisection block;
        height: 100vh;
        flex-direction: row-reverse;
    }
    .content__politica-primario{
        width: 60%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    .content__politica-primario h2{
        font-size: 28px;
        margin-top:2rem ;
        margin-bottom: .5rem;
    }
    .content__politica-primario article{
        font-size: 1.2em;
    }
    .content__politica-primario article ul{
        font-size: 1.1rem;
    }
    .content__politica-primario article ul li{
        margin: 8px 0px;
    }
    .content__politica-secundario{
        width: 35%;
        height: 100vh;
        animation: desenrrollar both;
        animation-timeline: --polisection;
        animation-range-start: cover 2%;
        animation-range-end:  contain 80%;
        overflow: hidden;
    }
    .content__politica-secundario article{
        font-size: 18px;
        animation: aparecer both;
        animation-timeline: --polisection;
        animation-range-start: cover 30%;
        animation-range-end:contain 80% ;
    }
    .logo__politica-secundario{
        width:8rem ;
        animation: aparecer both;
        animation-timeline: --polisection;
        animation-range-start: cover 0%;
        animation-range-end:cover 10% ;
    }
    /*SECTION SORTEO*/

    .section__base.sorteo{
        view-timeline: --sortesection block;
        display: flex;
        flex-direction: row;
    }
    
    .content__sorteo-primario{
        grid-template-columns: 1fr repeat(2,1fr);
        grid-template-rows: 1fr repeat(2, .5fr) repeat(2, 1fr);
        width: 60%;
        height: 100vh;
        animation-range: cover 18% cover 40%;
    }

    .info__general-sorteo{
        grid-column: 1/4;
        grid-row: 1/3;
    }
    .info__general-sorteo h2{
        font-size: 28px;
        margin: .5em  0  1.5em 0;
    }
    .info__general-sorteo h3{
        margin-left: 3.5rem;
        font-size: 20px;
    }
    .info__general-sorteo article{
        margin:1rem 0 0 2.5rem;
        font-size: 18px;
    }

    .barra__porcentaje-sorteo{
        grid-column: 1/4;
        grid-row: 3;
        align-self: center;
        justify-self: center;
        height: 80%;
        width: 100%;
    }
    .barra__blanca-sorteo{
        height: 80%;
        width: 95%;
    }

    .imagen__principal-sorteo{
        grid-column: 2/4;
        grid-row: 4/6;

    }

    .botones__select-sorteo{
        grid-row: 4/6;
        justify-content: center;
        align-items: center;
        gap:1rem
    }
    .select__opcion-sorteo{
        width: 80%;
        height: 20%;
        
    }
    .content__sorteo-secundario.mobile{
        display: none;
    }


    .content__sorteo-secundario.pc{
        display: block;
        width: 35%;
        height: 100vh;
        background-color: #811919;;
        color: #fff;
        padding: 2em;
        animation: desenrrollar both;
        animation-timeline: --sortesection;
        animation-range-start: cover 2%;
        animation-range-end:  contain 80%;
        overflow: hidden;
    }
    .content__sorteo-secundario.pc h3{
        font-size: 45px;
        text-align: center;
        margin: 1em 0;
        animation: aparecer both;
        animation-timeline: --sortesection;
        animation-range-start: cover 10%;
        animation-range-end:contain 80% ;
    }
    .content__sorteo-secundario.pc ol{
        align-content: center;
        font-size: 24px;
        padding: 2.5rem;
        animation: aparecer both;
        animation-timeline: --sortesection;
        animation-range-start: cover 18%;
        animation-range-end:contain 80% ;
    }
    .content__sorteo-secundario.pc ol li{
        margin: 1.5rem 0px;
    }
    /*SECTION GANADORES*/
    .section__base.ganadores h2{
        font-size: 42px;
    }
    .content__ganadores-primario{
          flex-direction: row;
    }
    .block__ganadores-item{
        width: 25%;
        height: 65%;
    }

    /*FOOTER*/
    footer{
        height: 13vh;
        
        padding: 0;
    }

    .logo__footer{
        width: 10%;
    }
    .logo__footer img{
        width:100%;
        height: 100%;
    }
    .contactanos__footer{
        width:15% ;

    }

    .contactanos__redes{
        width: 100%;
        height: 100%;
    }
    .item__social{
        height: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    .item__social img{
    width: 60%;
    height: 60%;
    }   
    html{
        background-color: #ddc003;
    }
    /*FORMULARIO*/

    /*PASO 1*/
    .form__sorteo-base.primero{
    width: 40%;
    height: 45vh;

    }
    
    .content__form-sorteo form{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        align-items: center;
        gap: .8em;
    }
    .div__form-sorteo.nombre{
        grid-column:1/2 ;
        grid-row: 1/2;
    }
    .div__form-sorteo.telefono{
        grid-column:2/3 ;
        grid-row: 1/2;
    }
    .div__form-sorteo.correo{
        grid-column:1/3 ;
        grid-row: 2/3;
        
    }
    .div__form-sorteo.submit{
        grid-column:1/3 ;
        grid-row: 3/4;
    }
    /*PASO 2*/

    .form__sorteo-base.dos{
        width: 50%;
        min-height: 50vh;
        
    }
    .content__form-sorteo.paso_dos form{
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2rem .8fr;
    }
    .titulo__form.paso_2{
        margin: 1.5em 0 .5em 0;
    }
    /*PASO 3*/

    .form__sorteo-base.tercero{
        width: 50%;
    }

    /*PASO 4*/

    .form__sorteo-base.cuatro{
        width: 50%;
    }
    .div__form-sorteo.ref{
        grid-column: 1/2;
        grid-row: 1/2;
    }
    .div__form-sorteo.image{
        grid-column: 1/2;
        grid-row: 2/3;
    }

    /*SECTION COMPROBANTE*/

    .section__base.comprobante{
        grid-template-columns: 1.1fr .9fr 1fr;
        grid-template-rows: 0.2fr 0.2fr 1.5fr 0.5fr;
        height: 100%;
    }
    .titulo__comprobante{
        grid-column: 1/4;
        grid-row: 1/2;
    }
    .content__comprobante-base.buscador{
        grid-column: 1/4;
        grid-row: 2/3;
        min-width: 80%;
        justify-self: center;
    }
    .content__comprobante-base.buscador form{
        flex-direction: row;
    }
    .content__comprobante-base.buscador form button{
        
        width: 10%;
    }

    .content__comprobante-base.image{
        display: block;
        grid-column: 2/4;
        grid-row: 3/5;
        max-width: 95%;
        height: 90%;
        justify-self: center;
    }
    .content__comprobante-base.image img{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .content__comprobante-base.tickets{
        grid-column: 1/2;
        grid-row: 4/5;
        align-self: start;
    }
    
}

/*ANIMACIONES*/

@keyframes rellenar {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes aparecer{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@keyframes desenrrollar{
    from{
        height:0 ;
    }
    to{
        height: 100vh;
    }
}