body{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
}
.quiz{
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 0;
}
.quiz__row{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.quiz__row .btn__green{
    margin-right: 10px;
    margin-top: 0 !important;
}
.question{
    display: none;
}
.question.active{
    display: block;
}
.question__content{
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}
.question__label{
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    margin-bottom: 16px;
    margin-right: 16px;
    padding: 16px;
    border: 1px solid #EAEAF1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.question__label:nth-child(2n){
    margin-right: 0;
}

.question__label .check{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E8E8E8;
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #E8E8E8;
    transition: 0.3s;
    margin-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
}
.question__label .input{
    display: none;
}
.question__label .check::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ea57b;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

}
.question__label .input[type=radio]:checked+.check{
    background: #fff;
    border: 1px solid #2ea57b;
}
.question__label .input[type=radio]:checked+.check::before{
    opacity: 1;
    visibility: visible;
}
.question__info{
    display: flex;
    align-items: center;
    padding: 4px;
    border: 1px solid #2ea57b;
    background: rgba(109, 198, 167, 0.5);
    max-width: fit-content;
    border-radius: 4px;
    margin-top: 11px;
}
.question__info .text{
    font-size: 11px;
    margin-bottom: 2px;
}
.question__iconBlock .icon{
    background-color: transparent;
    fill: currentColor;
    stroke-width: 0;
    stroke: currentColor;
    pointer-events: none;
    width: 16px;
    height: 16px;
    color: #2ea57b;
    margin-right: 4px;
}

.question__label--check .check{
    border-radius: 10%;
   
}
.question__label--check .check svg{
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
   
}

.question__label .input[type=checkbox]:checked+.check{
    background: #2ea57b;
    border: 1px solid #2ea57b;
}
.question__label .input[type=checkbox]:checked+.check svg{
    opacity: 1;
    visibility: visible;
}
.question__title{
    font-size: 28px;
    line-height: 1.2;
    font-weight: inherit;
    display: block;
    margin-bottom: 15px;
}
.quiz__btn svg{
    width: 18px;
    height: 18px;
    margin-left: 4px;
    background-color: transparent;
    fill: currentColor;
    stroke-width: 0;
    stroke: currentColor;
    pointer-events: none;
}

.quiz__btn span {
    margin-top: -1px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis
}

.quiz__btn {
    color: #fff;
    display: flex;
    position: relative;
    align-items: center;
    background-color: #2ea57b;
    box-shadow: 0 3px 10px 0 rgba(109,198,167,0.5);
    will-change: box-shadow;
    transition: box-shadow .2s ease-in;
    border: 0;
    padding: 12px 18px;
    border-radius: 20px;
}

.qquiz__btn[disabled],.quiz__btn[disabled]:focus,.quiz__btn[disabled]:hover {
    box-shadow: 0 3px 10px 0 rgba(109,198,167,0.5);
}

/* .quiz__btn:focus,.quiz__btn:hover {
    background-color: rgba(109,198,167,0.5);
    box-shadow: 0 3px 15px 0 rgba(109,198,167,0.5);
} */
.ball__title{
    font-weight: bold;
    display: flex;
    margin-bottom: 20px;
}
.quiz__btn:focus {
    box-shadow: 0 2px 8px 0 rgba(109,198,167,0.5);
}
.quiz__btn[disabled]{
    background-color: rgba(109,198,167,0.5);
    box-shadow: 0 3px 15px 0 rgba(109,198,167,0.5);
}
.quiz__btn[disabled]::after{
   display: none;
}
.quiz__btn:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(90deg,hsla(0,0%,100%,.1) 10%,hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.6));
    width: 20px;
    transform: skewX(-45deg);
    left: -20%;
    transition: all .6s ease;
    animation-name: blick;
    animation-duration: 6s;
    animation-iteration-count: infinite
}
.question__output{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.question__output .callback{
    margin-top: 20px;
}

@-webkit-keyframes blick {
    15%,to {
        left: 110%
    }
}

@keyframes blick {
    15%,to {
        left: 110%
    }
}

@media (max-width: 475px) {
    .question__label{
        margin-right: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}