/*pop up*/
/*pop up de promoción*/
#fondo-pop
{
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    z-index: 100000000000;
    backdrop-filter: blur(5px);
}

#boton_cerrar_pop_up
{
    z-index: 2;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 50px;
    color: red;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
#boton_cerrar_pop_up:hover
{
    color: grey;
}
#fondo-pop .img
{
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img img
{
    margin: 3px;
}
/*resposive*/
@media screen and (max-width:840px)
{
    #fondo-pop .img
    {
        width: 100%;
        flex-direction: column;
    }
    .img img
    {
        width: 60% !important;
    }
}
@media screen and (max-width:570px)
{
    .img img
    {
        width: 80% !important;
    }
}