.quiz__item_input-hide {
    display: none;
}

input {
    outline: none;
}

/* Quiz */

.quiz {
    margin-top: 10px;
    width: 100%;
    display: flex;
}

.quiz-form {
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    z-index: 3;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 2px solid #ececec;
    overflow: hidden;
}

.quiz-form__bg {
    background-image: url(../images/quiz-form-bg.webp);
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quiz-form__shadow {
    padding: 2vw;
    background-color: #ffffff;
}

.quiz__send-text {
    margin-bottom: 2vw;
    padding: 1vw;
    width: calc(100% - 2vw);
    font-size: 1vw;
    font-weight: 500;
    color: #101010;
    text-align: center;
    background-color: #F3F31E;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.quiz__subtitle {
    margin-top: 2vw;
    font-size: 1.2vw;
    font-weight: 500;
    color: #101010;
    text-align: center;
	margin-bottom: 20px;
}

.quiz__progress {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.quiz__progress_line {
    margin: auto 0;
    width: 2vw;
    height: 4px;
    background-color: #ececec;
    border: none;
}

.quiz__progress_item {
    width: 4vw;
    height: 4vw;
    background-color: #ececec;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
}

.quiz__progress_item-success {
    background-color: #F3F31E;
}

.quiz__progress_num {
    margin: auto;
    font-size: 1vw;
    font-weight: 400;
    color: #101010;
}

.quiz__container {
    margin-top: 2vw;
    flex-direction: column;
}

.quiz__container {
    display: none;
}

[quiz-slider="1"] {
    display: flex;
}

.quiz__title {
    margin: 0 auto;
    font-size: 2vw;
    font-weight: 500;
    color: #101010;
    text-align: center;
    border-radius: 10vw;
    -webkit-border-radius: 10vw;
    -moz-border-radius: 10vw;
    -ms-border-radius: 10vw;
    -o-border-radius: 10vw;
    -webkit-box-shadow: 0px 0px 30px -4px #ffffff30;
    -moz-box-shadow: 0px 0px 30px -4px #ffffff30;
    box-shadow: 0px 0px 30px -4px #ffffff30;
}

.quiz__title > span {
    font-size: 1vw;
    font-weight: 400;
    color: #101010da;
    display: block;
}

.quiz__wrapper {
    margin-top: 2vw;
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}

.quiz__item {
    padding: 1vw 0;
    width: calc(25% - 1vw);
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 30px 6px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 30px 6px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 30px 6px rgba(34, 60, 80, 0.2);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item_image {
    margin: 0 auto;
    margin-bottom: 1vw;
    width: calC(100% - 2vw);
    height: 10vw;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.quiz__item_container {
    margin: auto;
    padding: .6vw 0;
    width: calc(100% - 2vw);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.quiz__wrapper [type=radio]:checked + label > .quiz__item_container,
.quiz__wrapper [type=checkbox]:checked + label > .quiz__item_container {
    background-color: #F3F31E;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item_point {
    margin: auto 0;
    margin-left: 1vw;
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__wrapper [type=radio]:checked + label > .quiz__item_container .quiz__item_point,
.quiz__wrapper [type=checkbox]:checked + label > .quiz__item_container .quiz__item_point {
    background-color: #fff;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item_point-image {
    margin: auto;
    width: 80%;
    height: 80%;
    opacity: .2;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__wrapper [type=radio]:checked + label > .quiz__item_container .quiz__item_point-image,
.quiz__wrapper [type=checkbox]:checked + label > .quiz__item_container .quiz__item_point-image {
    opacity: .8;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item_name {
    margin: auto 0;
    margin-right: 1vw;
    width: calc(100% - 5vw);
    font-size: 1vw;
    font-weight: 400;
    color: #101010;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__wrapper [type=radio]:checked + label > .quiz__item_container > .quiz__item_name,
.quiz__wrapper [type=checkbox]:checked + label > .quiz__item_container > .quiz__item_name {
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item_input {
    margin-top: 2vw;
    padding: 0 1vw;
    width: calc(50% - 3vw);
    height: 4vw;
    font-size: 1vw;
    font-weight: 400;
    color: #101010;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__item_input:disabled {
    cursor: not-allowed;
    color: #cccccc;
    background-color: #ececec;
}

.quiz__item_input:disabled::placeholder {
    color: #cccccc;
}

.quiz__item_input-mt-a {
    margin: auto 0;
}

.quiz__item_input:focus {
    -webkit-box-shadow: 0px 0px 30px 6px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 30px 6px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 30px 6px rgba(34, 60, 80, 0.2);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__btn-next {
    margin: 0 auto;
    margin-top: 2vw;
    padding: .8vw 4vw;
    font-size: 1vw;
    font-weight: 400;
    color: #101010;
    background-color: #F3F31Eda;
    border: 1px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: block;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__btn-next:hover {
    cursor: pointer;
    border-color: #F3F31E;
    background-color: unset;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}


.quiz__success {
    margin-top: 2vw;
    display: flex;
    justify-content: space-between;
}

.quiz__success_text {
    padding: 2vw;
    width: calc(70% - 4vw);
    background-color: #ffffffda;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.quiz__success_desc {
    margin-top: 1vw;
    font-size: 1.5vw;
    font-weight: 400;
    color: #101010da;
    text-align: center;
}

.quiz__success_subdesc {
    margin-top: 2vw;
    font-size: 1.2vw;
    font-weight: 400;
    color: #101010da;
    text-align: center;
}

.quiz__success_subtitle {
    margin-top: 2vw;
    font-size: 1vw;
    font-weight: 600;
    color: #101010;
    text-align: center;
}

.quiz__success_wrapper {
    margin-top: 1vw;
    display: flex;
    justify-content: center;
    gap: 2vw;
}

.quiz__success_item {
    cursor: pointer;
}

.quiz__item_point-col {
    margin: 0 auto;
    width: 2vw;
    height: 2vw;
    background-color: #fff;
}

.quiz__item_point-col > .quiz__item_point-image {
    margin: auto;
    width: 70%;
    height: 70%;
    opacity: .2;
}

.quiz__success_item [type=radio]:checked + label > .quiz__item_point > .quiz__item_point-image,
.quiz__success_item [type=checkbox]:checked + label > .quiz__item_point > .quiz__item_point-image {
    opacity: 1;
}

.quiz__item-col {
    cursor: pointer;
}

.quiz__item_name-col {
    margin: 0 auto;
    font-size: 1vw;
    font-weight: 400;
    color: #101010;
    text-align: center;
}

.quiz__success_wrapper > .quiz__item_input {
    margin-top: 0;
}

.quiz__item_input-success {
    height: 3.5vw;
    border: 2px solid #101010;
}

.quiz__success_btn {
    margin: auto 0;
    padding: 1.2vw 2vw;
    margin-left: .5vw;
    font-size: 1vw;
    font-weight: 500;
    color: #101010;
    background-color: #F3F31E;
    border: 1px solid #F3F31E;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__success_btn:hover {
    cursor: pointer;
    background-color: unset;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.quiz__success_policy {
    margin: 0 auto;
    margin-top: .5vw;
    font-size: .9vw;
    font-weight: 400;
    color: #101010ad;
    text-align: center;
}

.quiz__success_image {
    width: calc(30% - 2vw);
    border-radius: 10px;
    background-image: url(../images/quiz-bg.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


@media screen and (max-width: 650px) {

    
    .quiz-image {
        width: 100%;
        height: 40vw;
    }
    
    .quiz-form {
        margin: 0 auto;
        width: calc(100% - 2vw);
    }
    
    .quiz-form__shadow {
        padding: 2vw;
    }

    .quiz__send-text {
        margin-bottom: 4vw;
        padding: 2vw;
        width: calc(100% - 4vw);
        font-size: 3vw;
    }
    
    .quiz__progress {
        flex-wrap: wrap;
    }
    
    .quiz__progress_line {
        width: 2vw;
        height: 4px;
    }
    
    .quiz__progress_item {
        width: 8vw;
        height: 8vw;
    }
    
    .quiz__progress_num {
        font-size: 2.5vw;
    }

    .quiz__container {
        margin-top: 4vw;
    }
    
    .quiz__title {
        padding: 2vw 6vw;
        font-size: 3.5vw;
    }

    .quiz__title > span {
        font-size: 2.5vw;
    }

    .quiz__subtitle {
        margin-top: 4vw;
        font-size: 4vw;
		margin-bottom: 20px;
    }
    
    .quiz__wrapper {
        margin-top: 4vw;
        gap: 2vw;
    }
    
    .quiz__item {
        padding: 2vw 0;
        width: calc(50% - 2vw);
    }
    
    .quiz__item_image {
        margin-bottom: 2vw;
        width: calC(100% - 1vw);
        height: 35vw;
    }
    
    .quiz__item_container {
        padding: 1.5vw 0;
        width: calc(100% - 4vw);
    }
    
    .quiz__item_point {
		width: 4vw;
		height: 4vw;
        margin-left: 2vw;
    }
    
    .quiz__item_point-image {
        width: 90%;
        height: 90%;
    }

    .quiz__item_name {
        margin-right: 2vw;
        width: calc(100% - 10vw);
        font-size: 3.7vw;
    }
    
    .quiz__item_input {
        margin-top: 4vw;
        padding: 0 2vw;
        width: calc(100% - 4vw);
        height: 10vw;
        font-size: 3vw;
    }
    
    .quiz__btn-next {
        margin: 0 auto;
        margin-top: 4vw;
        padding: 2vw 8vw;
        font-size: 4.5vw;
    }


    .quiz__success {
        margin-top: 4vw;
    }
    
    .quiz__success_text {
        width: 100%;
    }
    
    .quiz__success_desc {
        margin-top: 2vw;
        font-size: 3.5vw;
    }
    
    .quiz__success_subdesc {
        margin-top: 4vw;
        font-size: 3vw;
    }
    
    .quiz__success_subtitle {
        margin-top: 4vw;
        font-size: 3vw;
    }
    
    .quiz__success_wrapper {
        margin-top: 2vw;
        gap: 4vw;
        flex-wrap: wrap;
    }
    
    .quiz__item_point-col {
        margin: 0 auto;
        width: 4vw;
        height: 4vw;
    }
    
    .quiz__item_name-col {
        font-size: 3vw;
    }
    
    .quiz__success_btn {
        padding: 1.8vw 4vw;
        margin-left: 2vw;
        font-size: 3vw;
    }
    
    .quiz__success_policy {
        margin-top: 1vw;
        font-size: 2.5vw;
    }

    .quiz__success_image {
        display: none;
    }

}