
/* OFERTA PRIMAVERA*/

.spring-offer-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: #000000;
}

.offer-content {
    position: absolute;
    top: 10px;
    left: 50%;
    height:calc(100% - 20px);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.offer-content h2{
    font-size: 32px;
    line-height: 1.1em;
}
.offer-content p{
    line-height: 1.5em;
}
.modal-header{
    padding:8px !important;
}
@media (max-width: 767px) {
    .offer-content h2{
       font-size: 28px;
    }
    
}

/*END OFERTA PRIMAVERA*/