.survey .checkbox-wrapper label {
    position: relative;
 
    font-weight: 400;
    font-size: var(--sme-fs-checkbox-label);
    line-height: var(--sme-lh-checkbox-label);
}
.survey .checkbox-wrapper a {
    font-weight: 400;
    color: var(--sme-secondary-color);
    text-decoration: underline;
    font-size: var(--sme-fs-checkbox-label);
    line-height: var(--sme-lh-checkbox-label);
}
.survey .container {
    max-width: 47.9375rem;
    position: relative;
}
.survey .row{
    display: flex;
    justify-content: space-between;
}
.survey .field{
width: 100%;
margin-right: 20px;
}
.survey .field:last-child{
margin-right: 0;
}
.survey .wp-block-button{
margin-top: 15px;
}
.survey .wp-element-button{
width: 100%;
}
.survey .mb-10{
margin-bottom: 10px;
}
.survey .overlay-container {
    position: absolute;
    top: 0;
    left: 20px;
    width: 95%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8); 
    z-index: 4; 
    display: none;
    flex-direction: column;
    border-radius: var(--sme-block-radius);
    padding: 2.5rem;
}
.survey .overlay-container .inside-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; 
    height: 100%; 
}
.survey .overlay-container .inside-overlay img{
max-width: 150px;
}
.survey .content-block form [data-target="error_message"] {
    color: var(--sme-error-color);
    font-size: var(--sme-fs-xs-p);
    line-height: var(--sme-lh-xs-p);
}
@media(max-width:600px) {
.survey .row{
display: block;
}
.survey .field{
width: 100%;
margin-right: 0;
}
}