#form_api_modal_Resposta {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
-ms-align-items: center;
align-items: center;
justify-content: center;
background: rgba(0,0,0,.5);
z-index: 999999;
transition: all .3s;
visibility: hidden;
opacity: 0;
}
#form_api_modal_Resposta.show {
visibility: visible;
opacity: 1;
}
#form_api_modal_Resposta .modal_box {
max-width: 600px;
min-width: 600px;
padding: 30px;
border-radius: 4px;
box-shadow: 1px 2px 20px rgba(0,0,0,.6);
background: #fff;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
flex-wrap: wrap;
-ms-align-items: center;
align-items: center;
flex-direction: column;
}
#form_api_modal_Resposta .modal_box button {
display: inline-block;
max-width: 50%;
min-width: 20%;
background: #333;
color: #fff;
border: 0;
border-radius: 4px;
margin: 5px;
padding: 5px 25px;
text-transform: uppercase;
transition: all .3s;
}
#form_api_modal_Resposta .modal_box button:hover {
background: #e56600!important;
}
#form_api_modal_Resposta.enviado .modal_box button {
background: #28a745;
}
#form_api_modal_Resposta.falha .modal_box button {
background: #a00f2e;
}
#form_api_modal_Resposta header#title_modal {
font-size: 26px;
line-height: 1;
padding: 5px 0;
font-weight: bold;
text-transform: uppercase;
}
#form_api_modal_Resposta.enviado header#title_modal {
color: #28a745;
}
#form_api_modal_Resposta.falha header#title_modal {
color: #a00f2e;
}
#form_api_modal_Resposta .modal_box_texto {
padding: 15px;
width: 100%;
margin: 20px 0;
text-align: center;
}
.form_contato .elementor-message-danger {
display: none!important;
}