#overlay-popup {
background-color: rgba(0, 0, 0, 0.7);
width: 100vw;
height: 100vh;
position: fixed;
top: 0px;
left: 0px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
display: none;
z-index: 99999999;
}
.popup-atendimento {
background-color: #FFF;
width: 600px;
height: auto;
position: absolute;
padding-bottom: 50px;
border-radius: 55px;
}
.close-popup{
position: absolute;
right: 50px;
top: 20px;
z-index: 999999999;
font-size: 35px;
color: #fff;
cursor: pointer;
}
.title-popup {
padding: 30px;
text-align: center;
background-color: #2b5f8f;
color: #FFF;
text-transform: uppercase;
font-weight: 700;
font-size: 18px;
border-top-left-radius: 48px;
border-top-right-radius: 48px;
margin-top: 0px;
}
.formulario-popup {
width: 350px;
display: block;
margin: 0 auto;
margin-top: 50px;
}
.inputs {
width: 230px;
margin: 0 auto;
margin-top: 7px;
}
.botao_init_atendimento {
margin: 0 auto;
display: flex;
font-size: 19px;
background-color: #febd00;
padding: 20px 30px;
color: #2b5f8f;
font-weight: bold;
text-transform: uppercase;
width: fit-content;
margin-top: 30px;
text-decoration: none;
border-radius: 50px;
border: none;
line-height: 1;
align-items: center;
}
.img-button {
margin-right: 5px;
width: 25px;
height: 25px;
}
.formulario-popup .input_label {
display: flex;
align-items: center;
margin-bottom: 8px;
}
.formulario-popup label {
font-size: 23px;
color: rgb(41, 41, 41);
line-height: 1;
}
.formulario-popup input[type="radio"] {
width: 20px;
height: 20px;
-webkit-appearance: none;
border: 2px solid #2b5f8f;
padding: 3px;
background-color: #FFF;
border-radius: 50%;
outline: 0;
margin-right: 10px;
}
.formulario-popup input[type="radio"]:checked {
background-color: #2b5f8f;
padding: 5px;
}
@media (max-width: 600px){
.popup-atendimento{
width: 90%;
}
.close-popup{
right: 20px;
}
.formulario-popup{
width: 100%;
}
}