.modal_mensaje {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
position: fixed;
top: 0;
left: 0;
z-index: 999999999999999;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.modal_mensaje_cont {
background-color: #1e90ff;
width: 750px;
padding: 20px 15px 5px;
position: relative;
}
.modal_mensaje_cont #h3_modal_mens:before {
content: "";
display: block;
width: 40px;
padding: 1;
height: 1px;
background-color: #000;
position: absolute;
z-index: 2;
top: 33px;
left: 200px;
}
.modal_mensaje_cont #h3_modal_mens {
text-align: center;
font-weight: bold;
display: block;
margin-bottom: 30px;
text-transform: uppercase;
font-size: 20px;
}
.modal_mensaje_cont #btnClose {
font-size: 16px;
color: #8f2015;
font-weight: bold;
text-transform: uppercase;
background-color: transparent;
cursor: pointer;
border: none;
outline: none;
float: right;
margin-right: 25px;
margin-bottom: 20px;
transition: 1s all ease-out;
}
.modal_mensaje_cont #btnClose:hover {
color: #e26d5a;
margin-right: 10px;
}
#p_modal_mens {
font-size: 20px;
color: #000;
}