body {
    overflow-y: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Alfa+Slab+One&family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

#modalUniq-fondo {
    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;
}

.modalUniq-contenedor {
    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,1000px);
    gap: 8px;
    height: 90vh;
    border-radius: 20px;
}

#modalUniq-cuerpo {
    height: 100%;
    display: flex;
    gap: 32px;
    margin: 0 16px;
    align-items: center;
}

#modalUniq-cerrar-contenedor {
    width: 100%;
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    flex-direction: row-reverse;
    padding: 8px;
}

#modalUniq-btnCerrar {
    background-color: transparent;
    border: 0px;
    width: 40px;
    height: 40px;
    padding: 0px;
}
#modalUniq-btnCerrar > svg {
    width: 100%;
    height: 100%;
}

#modalUniq-fecha-out {
    width: 100%;
    display: flex;
    padding: 8px;
}

.modalUniq-contenedor img {
    width: 100%;
}

.modalUniq-img {
    width: 50%;
}

.modalUniq-info {
    width: 50%;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}

.modalUniq-info > h2 {
    font-size: clamp(18px, 5vw, 65px) !important;
    font-family: "Titan One", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    color: #5E5D5A;
}
.modalUniq-info > h2 > span {
    font-size: clamp(18px, 5vw, 55px) !important;
    color: #972420c9;
    font-weight: 700;
    text-shadow: -9px 9px 7px rgba(255, 131, 131, 0.705);
}

#modalUniq-botones {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modalUniq-btn {
    padding: 8px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modalUniq-btn > span {
    font-family: 'Lato';
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(12px, 2vw, 30px);
}

.modalUniq-btn > img {
    width: auto;
    height: 60px;
}

#modalUniq-btnBach {
    background: linear-gradient(90deg,#F3B415 0%, #EDE264 100%);
    box-shadow: -3px 20px 10px -3px rgba(255, 240, 32, 0.57);
}

#modalUniq-btnLic {
    background: linear-gradient(90deg,#F57D58 0%, #F2B05B 100%);
    box-shadow: -3px 20px 10px -3px rgba(224, 100, 22, 0.57);
}

#modalUniq-btnMed {
    background: linear-gradient(90deg,#E2402B 0%, #E97371 100%);
    box-shadow: -3px 20px 10px -3px rgba(246, 61, 61, 0.57);
}

#modalUniq-btnBach:hover {
    background-color: #007545;
    color: #fff !important;
}

#modalUniq-btnLic:hover {
    background-color: #b93800;
    color: #fff !important;
}

#modalUniq-btnMed:hover {
    background-color: #0064b1;
    color: #fff !important;
}

#modalUniq-fecha-in {
    display: none;
}
#modalUniq-fecha-out {
    display: flex;
    justify-content: center;
}

.modalUniq-fadeIn {
    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) {
    .modalUniq-contenedor {
        position: relative;
    }
    #modalUniq-cerrar-contenedor {
        position: absolute;
        top: 0;
        right: 10px;
        z-index: 2;
    }
    .modalUniq-img {
        position: absolute;
        width: 95%;
    }
    .modalUniq-info {
        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;
    }
    .modalUniq-info > h2 {
        color: #fff;
        font-size: 26px !important;
    }
    .modalUniq-info > h2 > span {
        color: #fff;
        text-shadow: none;
        font-size: 26px !important;
    }
    #modalUniq-botones {
        gap: 24px;
    }
    #modalUniq-cuerpo {
        margin: 0;
    }
    .modalUniq-btn > span {
        max-width: 150px;
    }
    .modalUniq-btn > a {
        font-size: 16px;
    }
    .modalUniq-btn > img {
        height: 30px;
    }
    #modalUniq-fecha-in {
        display: block;
    }
    #modalUniq-fecha-out {
        display: none;
    }
}
