
/* VENTANA MODAL */

.pop-up{
    width: 100%;
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.pop-up-wrap{
    height: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    transform: scale(0.2);
    opacity: 0.0;
    transition: .3s ease all;

}

.imagenpopup{
    margin-top: 25vh;
    width: 30%;
    align-items: center;
    

}






.subcription::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
    z-index: -1;
}





.subcription{
    background: #fff;
    flex-basis: 0;
    flex-grow: 1;
    height: 60%;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    align-items: center;
    position: relative;
    text-align: center;
}

.sub-content{
    width: 30%;
    background-color: #EDBD7C;
}



.subs-send:hover{
    /*background: #1bc59b;*/
}

.line{
    width: 100%;
    height: 20px;
    /*background: #1F4068;*/
}

#close{
    position: absolute;
    top: 150px;
    right: 250px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

.pop-up.show{
    visibility: visible;
}

.pop-up-wrap.show{
    transform: scale(1);
    opacity: 1;
}

/*@media only screen and (max-width: 980px){
    .pop-up-title{
        display: none;
    }

}*/

@media only screen and (max-width: 411px){
    
    .imagenpopup{
        width: 80%;
    }

    .pop-up{
        margin-top: 60px;
    }

    .sub-content{
        width: 80%;
    }
    
}
