.resident-survey-wrapper {
    max-width: 1080px; margin: 0 auto; width: 100%;
    /*margin-top: 100px;*/
}
.answer {padding: 10px 30px 10px 0;}
.answer [type="radio"]:checked,
.answer [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.answer [type="radio"]:checked + label,
.answer [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.answer [type="radio"]:checked + label:before,
.answer [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.answer [type="radio"]:checked + label:after,
.answer [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #f59d24;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.answer [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.answer [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.survey-answer {
    padding: 50px; box-shadow: 0px 0px 50px -20px rgb(0 0 0 / 20%); border-bottom: 1px solid #f59d24; margin-top: 50px;
}

.question .answers {
    display: flex;
}
.preloader {text-align: center;}
.mentzen-preloader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.mentzen-preloader div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #f59d24;
    animation: mentzen-preloader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.mentzen-preloader div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}
.mentzen-preloader div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}
.mentzen-preloader div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}
@keyframes mentzen-preloader {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}
