
#divOfertasModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
}

#divOfertasLayer {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

#divOfertasContainer {
    position: relative;
    width: 790px;
    max-width: 790px;
    margin: 0 auto;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

#btnCerrarOfertas {
    position: absolute;
    top: 0px;
    right: -36px;
    border: none;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: url("../images/ofertas/cerrar.svg") no-repeat;
    background-size: contain;
}
#divOfertas {
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
}

#divOfertasHeader img {
    width: 100%;
    height: auto;
}
#divOfertasBody {
    width: 100%;
    padding: 0 32px;
}

#divOfertasBody h2 {
    display: flex;
    align-items: center;
    font-family: BreePeru_Regular;
    font-size: 32px;
    margin: 26px 0 16px 0;
    color: #48948C;
    justify-content: center;
}

#divOfertasBody h2 i {
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: url(../images/ofertas/locacion.svg) no-repeat;
    margin-right: 3px;
}

#divOfertasBody p {
    font-family: 'ClanOffc-Book';
    font-size: 16px;    
    line-height: 26px;
    color: #636363;
    margin: 18px 0;
    text-align: center;
}

#divOfertasFooter {
    width: 100%;
    text-align: center;
    padding: 24px 0;
    box-shadow: 0px 4px 19.2px rgba(0, 0, 0, 0.49);
    margin-top: 26px;
}

#divOfertasFooter h4 {
    display: block;
    color: #000000;
    font-family: 'ClanOffc-Bold';
    font-size: 24px;
}

#divOfertasFooter a {
    width: auto;
    padding: 15px 50px;
    border: none;
    border-radius: 35px;
    background: #48948C;
    box-shadow: 2px 4px 6.3px rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    font-family: 'ClanOffc-Bold';
    font-size: 18px;
    margin-top: 10px;
    display: inline-block;
}




body.dark #divOfertas {
    background: #262626;
}
body.dark #divOfertasFooter {
    background: #454545;
}
body.dark #divOfertasFooter h4,
body.dark #divOfertasBody p {
    color: #ffffff;
}
body.dark #divOfertasBody h2 i  {
    filter: brightness(0) invert(1);
}



@media (max-height: 760px) {
    #divOfertasContainer {
        width: 560px;
        max-width: 560px;
    }
    #divOfertasBody p {
        font-size: 14px;
    }
    #divOfertasFooter h4 {
        font-size: 22px;
    }
}

@media screen and (max-width:768px) {

    #divOfertasContainer {
        width: 90%;
        max-width: 360px;
    }
    #divOfertasBody h2 {
        font-size: 26px;
    }
    #divOfertasBody p {
        font-size: 14px;
        line-height: 22px;
        margin: 14px 0;
    }
    #divOfertasBody p br {
        display:none;
    }
    #divOfertasFooter h4 {
        font-size: 18px;
        padding:0 30px;
    }
    #divOfertasFooter a {
        padding: 14px 40px;
        font-size: 16px;
    }
    #btnCerrarOfertas {
        top: -30px;
        right: 0;
    }
}
