:root {
    --white_clr: #fff;
    --black_clr: #000;
    --text_clr: #050708;
    --primary_clr: #300026;
    --secondary_clr: #d62d38;
    --grd_clr: linear-gradient(to right, rgba(214, 45, 56, 1) 0%, rgba(169, 39, 63, 1) 40%, rgba(95, 14, 70, 1) 100%);
    --primary_font_family: "Inter", system-ui;
}

.main-wrapper {
    max-width: 100%;
    overflow: auto;
}

.offer-tagline {
    background: var(--grd_clr);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: var(--white_clr);
    text-transform: uppercase;
}

.offer-tagline strong {
    font-weight: 400;
}

/*Header*/
.header-quiz {
    position: relative;
    z-index: 10;
    padding: 0;
    background: var(--white_clr);
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.quiz-header-inner {
    height: 70px;
}

.quiz-logo {
    width: 80px;
    position: relative;
    z-index: 5;
    margin: 0 auto;
}

.quiz-logo a {
    display: block;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%
}

.quiz-logo img {
    display: block;
    margin: 0;
    width: 100%;
}

.head-left-back-btnbox {
    margin-right: auto;
}

.quiz-head-right-btnbox {
    margin-left: auto;
}

.close-btn {
    font-size: 36px;
    line-height: 1.4;
    color: #2d2d2d;
}

/*Steps Section Style*/
.h-100vh {
    min-height: calc(100vh - 100px);
}

.half-imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.half-content-block {
    padding: 40px;
    position: relative;
}

.half-content-block p {
    font-size: 18px;
}

.mw-500 {
    max-width: 500px;
    margin: 0 auto;
}

.mw-640 {
    max-width: 640px;
    margin: 0 auto;
}

.mw-786 {
    max-width: 786px;
    margin: 0 auto;
}

.quiz-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 30px;
    cursor: pointer;
    text-align: center;
    position: relative;
    line-height: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: hidden;
    color: var(--white_clr);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--primary_font_family);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    min-width: 180px;
    background: linear-gradient(to right, rgba(214, 45, 56, 1) 0%, rgba(169, 39, 63, 1) 40%, rgba(95, 14, 70, 1) 100%);
    background-size: 100% auto;
    border: 2px solid var(--white_clr);
    outline: 2px solid var(--secondary_clr) !important;
}

.quiz-btn:hover {
    background: linear-gradient(to right, rgba(214, 45, 56, 1) 0%, rgba(169, 39, 63, 1) 40%, rgba(95, 14, 70, 1) 100%);
    background-size: 200% auto;
    color: var(--white_clr);
}

.quiz-form input {
    padding: 2px 15px;
    height: 50px;
    font-size: 16px;
    background: var(--white_clr);
}

.quiz-progressbar {
    background: #ccc;
    border-radius: 4px;
    height: 8px;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 343px;
}

.quiz-progressbar i {
    background: #2d2d2d;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
}

.fixed-desk-btnbox {
    padding: 30px;
    background: var(--white_clr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

.mw_300 {
    min-width: 300px;
}

.qz-checkbox {
    position: relative;
    margin: 0 !important;
    overflow: hidden;
    cursor: pointer;
}

.qz-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.qz-text {
    padding: 10px 20px 10px 50px;
    min-height: 60px;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--white_clr);
    border: 1px solid #ddd;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.qz-checmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #2d2d2d;
    background: none;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.qz-checmark:before {
    display: block;
    content: "";
    width: 12px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: rotate(-50deg);
    position: relative;
    bottom: 2px;
}

.qz-checkbox input:checked~.qz-checmark {
    background: #2d2d2d;
    border-color: #2d2d2d;
}

.qz-checkbox input:checked~.qz-checmark:before {
    opacity: 1;
}

.qz-checkbox:hover .qz-text {
    box-shadow: 0 0 0 1px #2d2d2d inset;
}

.qz-checkbox input:checked~.qz-text {
    box-shadow: 0 0 0 1px #2d2d2d inset;
    font-weight: 600;
}

.fav-check-block {
    justify-content: center;
}

.qz-iconbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 60px;
    height: 60px;
}

.fav-check-block .qz-text {
    padding: 6px 15px;
    min-width: 180px;
}

.input-field-check {
    padding: 0 10px;
    margin-bottom: 20px;
}

.smooth-options {
    flex-direction: column;
    align-items: center;
}

.result-top-block .page-tl span {
    font-family: "Alex Brush", cursive;
}

.nav-slider .sub-items {
    padding: 0;
    display: inline-block;
    width: 80px;
}

.nav-slider .imgbox {
    width: 100%;
    height: 80px;
    border: 1px solid #ccc;
    overflow: hidden;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    transform: scale(0.7);
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.nav-slider .slick-current .imgbox {
    border-color: var(--secondary_clr);
    transform: scale(0.8);
}

.nav-slider .imgbox img,
.for-slider .imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.for-slider .imgbox {
    width: 100%;
    height: 480px;
}

.small-prod-tl {
    padding: 10px 20px;
    display: block;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    color: var(--text_clr);
    font-weight: 400;
}

.prod-info-textarea p {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
}

.qz-checkout {
    border: 1px solid hsla(0, 0%, 7%, .11);
    background: linear-gradient(to bottom, rgba(255, 224, 155, 1) 0%, rgba(255, 201, 250, 1) 100%);
}

.offer-textbox {
    padding: 10px 20px;
    background: #E8FAE5;
    box-shadow: 0 0 0 1px rgba(28, 202, 0, 0.50);
}

.offer-textbox p {
    font-size: 15px;
}

.offer-textbox b {
    padding: 2px 5px;
    color: var(--white_clr);
    font-weight: 400;
    background: var(--grd_clr);
    white-space: nowrap;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.total-items {
    padding: 12px 20px;
}

.total-items.th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.discount-price {
    color: var(--secondary_clr);
}

.qzm-price s {
    opacity: 0.5;
}

.order-msg p {
    font-size: 14px;
    font-weight: 300;
    color: green;
}

.nav-slider {
    padding: 10px 30px;
}

.for-slider.loading {
    background-image: url(../images/spinner.svg);
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    border: 1px dotted #d1d1d1;
}

button.loading::after {
    content: '';
    background-image: url(../images/spinner.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    margin-left: 10px;
}




/*============::MEDIA CSS::=======*/
/*iPad 1024px View*/
@media screen and (max-width:1199px) {
    .half-content-block p {
        font-size: 16px;
    }

    .half-content-block {
        padding: 20px;
    }

}

/*iPad 768px view*/
@media screen and (max-width:991px) {
    .form-inner .input-field {
        max-width: 50%;
        min-width: 50%;
    }


}

/*iPhone-6 plus 736 (Landscape) view*/
@media screen and (max-width:767px) {
    .offer-tagline {
        display: none;
    }

    .h-100vh {
        height: auto;
        min-height: inherit;
    }

    .steps-ss-inn {
        flex-wrap: wrap;
    }

    .half-imgbox {
        min-width: 100%;
    }

    .half-content-block {
        min-width: 100%;
    }

    .half-imgbox img {
        min-height: 320px;
    }

    .fixed-mobi-btnbox {
        padding: 20px;
        background: var(--white_clr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
    }

    .quiz-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .mob-pb-80 {
        padding-bottom: 80px;
    }

    .form-inner .input-field {
        max-width: 100%;
        min-width: 100%;
    }

    .quiz-progressbar {
        width: 90%;
        top: 20px;
    }

    .fav-check-block .qz-text {
        padding: 4px 10px;
        min-width: 150px;
    }

    .for-slider .imgbox {
        width: 100%;
        height: 380px;
    }


}

/*767 End*/