<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.foo {
    width: 1300px;
    max-width: 100%;
    height: 80px;
    overflow-y: hidden;
}
.boton-suscripcion{
    margin-left: 0.5rem;
}
/* SecciÃ³n modal */
.titulo-suscripcion{
    margin-top: 0px;
}
.modal-container{
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}
.modal-container.show{
    pointer-events: auto;
    opacity: 1;
    z-index: 999;
}
.modal-suscripcion{
    background-color: #fff;
    width: 500px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2 ); 
    padding: 30px 50px;
    text-align: center;
    height: 156px;
 }
.modal-suscripcion .close-modal {
    cursor: pointer;
    border: none;
    float: right;
    margin-right: -65px;
    margin-top: -45px;
    background-color: rgb(190, 190, 190);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    opacity: 1;
    font-size: 1.2rem; 
}
.modal-suscripcion .close-modal:focus{
    outline: 0px !important;
}
.modal-suscripcion .close-modal span{
    position: relative;
    bottom: 2px;
}
.bg-footer-bottom{
    background-color:#fff;
    color: #777;
    padding: 15px 0 5px;
}
.container-footer-bottom{
    background-color: #efefef;
    display: flex;
    justify-content: center;
    padding-top: 16px;
}
.btn-footer-bottom{
    font-size: 16px;
    color: #fff;
    background-color: var(--verde-gadnic);
    padding:10px 30px 7px 30px;
    border: none;
    line-height: 23px;
    border-radius: 8px 8px 0px 0px;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.btn-footer-bottom:focus{
    outline:none;
}
@media (max-width: 760px){
    .modal-suscripcion{
        width: 340px;
        height: 150px;
        flex-direction: column;
    }
    .titulo-suscripcion{
        font-size: 1rem;
    }
    .boton-suscripcion{
        margin-left: 0px !important;
    }
}</pre></body></html>