/*
Theme Name: Avada dsimobility Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
#fondo {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1111111;
}
#pop-up {
    background-color: white;
    width: 800px;
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left:-400px;
    padding: 30px;
    border-radius:10px;
}
#cerrar-pop-up {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
}
#cerrar-pop-up span{
    display: flex;
    width: 50px;
    height: 50px;
    background-color: grey;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: bold;
    border-radius: 1000%;
}
@media (max-width: 800px){
    #pop-up {
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        bottom: 0;
        overflow-y: scroll;
    }
}
