.modal_wrap{
    width: 100%;
    height: 100vh;
    background: rgba (0,0,0,0.7);
    position: fixed;
    Top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mensaje_modal{
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    width: 400px;
    padding: 30px 20px 15px;
}

.mensaje_modal h3{
    text-align: center;
    font-family: "ubuntu";
    font-size: 20px;
    font-weight: 400;
    
}

.mensaje_modal h3:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #c5c5c5;
    margin: 10px 0 15 px;
    ´}
    
.mensaje_modal p{
    font-size: 16px;
    color: #606060;
}   
    
#btnClose{
    display: inline-block;
    padding: 3px 10px;
    margin-top: 10px;
    background: #E25151;
    Color: #fff;
    border: 2px solid #814141;
    cursor: pointer;
    float: right;
}