/*Quiz CSS*/

.quiz__section {
    position: fixed;
    z-index: 9999;
    bottom: 10px;
    left: -100%;
    background: #fff;
    width: 350px;
    border-radius: 15px;
    overflow: hidden;

}
.amoforms_iframe {
    height: 350px!important;
}
.active_quiz {
    transition: 1s;
    left: 1%;
}
.first-block {
    position: relative;
}

.first-bottom {
    position: absolute;
    top: 0;
}
.first-bottom .title {
    color: #fff;
    font-size: 18px;
}
.first-bottom .text {
    display: none;
}
.close__quiz {
    position: absolute;
    z-index: 9;
    right: 0;
    background: #fff;
    width: 24px;
    text-align: center;
}
.progress_bar {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c1c1c1;
}

.progress {
    height: 100%;
    background: red;
    width: 0;
    transition: .3s ease-in-out;
}

.quiz_blockControl {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.bottom-block {
    padding: 20px;
}
.title {
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #020202;
    margin-bottom: 1rem;

}
.btnPrev {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 5px;
    opacity: 0.2;
}
.btnNext {
    background: #ff6114;
    color: #fff;
    border: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
}
.quiz_block {
    display:none;
}

.quiz_block.active {
    display: block;
}
.quiz__title {
    padding: 25px 20px;
    text-align: center;
    font-size: 20px;
}
.quiz__content {
    padding: 0 20px;
    font-size: 16px;
}
.quiz_block p {
    margin-bottom: 10px;
}
.quiz__fields {
    display: flex;
    flex-direction: column;
    padding: 20px;
}
label {
    cursor: pointer;
    height: 50px;
}
.quiz__fields label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #9d9b9b;
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 10px;
}
.quiz-checkbox {
    opacity: 0;
    position: absolute;
}
.quiz-checkbox + span {
    width: 20px;
    height: 20px;
    background: #a7a7a7;
    border-radius: 50%;
    margin-right: 10px;
}
.quiz-checkbox:checked + span {
    background: #ff6114;
}
.input__fields label {
    height: 70px;
    font-size: 14px;
}
.input_frm {
    width: 100%;
    height: 50px;
    text-indent: 20px;
    color: #a7a7a7;
    background: none;
    font-size: 16px;
}

.input_frm::placeholder {
    color: #a7a7a7;
}
.send_btn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.form_btn {
    background: #ff6114;
    color: #fff;
    border: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    width: 90%;
}