<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    overflow-y: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&amp;family=Alfa+Slab+One&amp;family=Mukta:wght@200;300;400;500;600;700;800&amp;display=swap');

#popupFondo{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.popup{
    display: flex;
    flex-direction: column;
    background: linear-gradient(229deg,rgba(255, 255, 255, 1) 33%, rgba(230, 216, 216, 1) 78%);
    width: clamp(200px,90vw,1200px);
    gap: 8px;
    height: 90vh;
    border-radius: 20px;
    overflow: auto;
}

#popupContainer{
    height: 100%;
    display: flex;
    margin: 0 16px;
    align-items: center;
}

#btnCerrarContainer{
    width: 100%;
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    flex-direction: row-reverse;
    padding: 8px;
}

#btnCerrar{
    background-color: transparent;
    border: 0px;
    width: 40px;
    height: 40px;
    padding: 0px;
}
#btnCerrar&gt;svg{
    width: 100%;
    height: 100%;
}
#fechas-insc-out{
width: 100%;
    display: flex;
    padding: 8px;

}
.popup img{
    width: 100%;
}


 .imgPopup{
    width: 50%;
}

.infoPopup{
    width: 50%;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}



.infoPopup&gt;h2{
    font-size: clamp(18px, 5vw, 65px) !important;
    font-family: "Titan One", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    color: #5E5D5A;
}
.infoPopup&gt;h2&gt;span{
        font-size: clamp(18px, 5vw, 55px) !important;
    color: #972420c9;
    font-weight: 700;
text-shadow: -9px 9px 7px rgba(255, 131, 131, 0.705);}

#buttons{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.buttonPre{
    padding: 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
}



.buttonPre&gt;span{
    font-family: 'Lato';
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size:  clamp(12px, 2vw, 30px);
}

.buttonPre&gt;img{
    width: auto;
    height:60px;
}

#btnPreBach{
   background: linear-gradient(90deg,#F3B415 0%, #EDE264 100%);
box-shadow: -3px 20px 10px -3px rgba(255, 240, 32, 0.57);
}

#btnPreLic{
background: linear-gradient(90deg,#F57D58 0%, #F2B05B 100%);
box-shadow: -3px 20px 10px -3px rgba(224, 100, 22, 0.57);
}

#btnPreMed{
background: linear-gradient(90deg,#E2402B 0%, #E97371 100%);
box-shadow: -3px 20px 10px -3px rgba(246, 61, 61, 0.57);
}
#btnPreBach:hover{
    background-color: #007545;
    color: #fff !important;
}

#btnPreLic:hover{
    background-color: #b93800;
    color: #fff !important;
}

#btnPreMed:hover{
    background-color: #0064b1;
    color: #fff !important;
}

#fechas-insc-in{
    display: none;
}
#fechas-insc-out{
    display: flex;
    justify-content: center;
}


.fade-in-image { animation: fadeIn 1.5s; }

@keyframes fadeIn {
    0% { opacity: 0;
        transform: scale(0); }
   
    100% { opacity: 1; 
        transform: scale(1);}
  }

  @media only screen and (max-width: 768px) {
    .popup{
        position: relative;
    }
    #btnCerrarContainer{
        position: absolute;
        top:0 ;
        right: 10px;
        z-index: 2;

    }
    .imgPopup{
        position: absolute;
        width: 95%;
        
    }
    .infoPopup {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg,rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.5) 78%);        z-index: 1;
        color: aliceblue;
        border-radius: 20px;
    }

   .infoPopup&gt;h2{
    color: #fff;
    font-size: 26px !important;
   }
    .infoPopup&gt;h2&gt;span{
        color: #fff;
        text-shadow: none;
        font-size: 26px !important;
    }

    #buttons{
        gap: 24px;
    }
    

    #popupContainer{
        margin: 0;
    }
    .buttonPre&gt;span{
        max-width: 150px;
    }
    .buttonPre&gt;a{
        font-size: 16px;
    }
.buttonPre&gt;img{
    width: auto;
    height:30px;
}
    #fechas-insc-in{
    display: block;
}
#fechas-insc-out{
    display: none;}
    
  }</pre></body></html>