@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #111111;
    padding-bottom: 160px;
    position: relative;
    min-height: calc(100vh - 23px);
    height: 100%;
}
.line-bg {
    position: absolute;
    bottom: 0;
    left: 0;
}
.figure-bg {
    position: absolute;
    right: 10px;
    top: calc(50% - 200px);
}
.green-star-bg {
    position: absolute;
    right: 20%;
    top: 20%;
}
.yellow-star-bg {
    position: absolute;
    left: 10%;
    top: 30%;
}
.red-flower-bg {
    position: absolute;
    right: 15%;
    bottom: 20%;
}

.header {
    margin: 23px auto;
    max-width: 1144px;
    width: 100%;
    display: none;
}

.head-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
}
.head-progress {
    width: 100%;
    background: #1C1C1C;
    height: 8px;
    border-radius: 10px;
}
.head-progress-line {
    background: #FF9AE2;
    height: 100%;
    width: 5%;
    border-radius: 10px;
    transition: all .30s;
}
.head-back-btn {
    height: 40px;
    width: 40px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #1C1C1C;
    cursor: pointer;
    flex: 0 0 40px;
}


.home-page-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 150px);
}
.home-page-wrapper .logo {}
.home-page-wrapper .logo img {}
.home-page-wrapper .content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-page-wrapper .content h1 {
    font-size: 58px;
    font-weight: 500;
    color: #fff;
}
.home-page-wrapper .content h1 .color {
    color: #A6FE5A;
}
.home-page-wrapper .content p {
    margin-top: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 150%;
}
.home-page-wrapper .content button {
    margin-top: 32px;
    background: #FBFBFB;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 275px;
    width: 100%;
    color: #111111;
    font-family: inherit;
    padding: 16px 24px;
    border-radius: 40px;
    font-size: 16px;
    border: none;
    outline: none;
}
.home-page-wrapper .features {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.home-page-wrapper .features .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 16px;
    align-items: center;
}
.home-page-wrapper .features .item .icon {}
.home-page-wrapper .features .item .icon img {
    height: 48px;
    width: 48px;
}
.home-page-wrapper .features .item .text {
    text-align: left;
}
.home-page-wrapper .features .item .text h2 {
    font-weight: 500;
    font-size: 20px;
}
.home-page-wrapper .features .item .text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}
.home-page-wrapper .features .item {}
.home-page-wrapper .features {}
.home-page-wrapper .features {}
.home-page-wrapper {}
.home-page-wrapper {}
.home-page-wrapper {}






.quiz {
    margin-top: 48px;
}

.quiz-items-wrapper {
    max-width: 590px;
    width: 100%;
    margin: 0 auto;
}

.quiz-item {
    text-align: center;
    display: none;
    position: relative;
}

.first-step {
    display: block;
}

.question-title {
    font-size: 28px;
    color: #fff;
    font-weight: 500;
}

.quiz-item-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-top: 8px;
}



span.green-color {
    color: #A6FE5A;
}
span.pink-color {
    color: #FF9AE2;
}
 

 


.answers-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.answers-wrapper .item {
    position: relative;
    flex: 1 1 30%;
    background: #1C1C1C;
    border-radius: 12px;
    border: 2px solid #1C1C1C;
    padding: 24px;
    cursor: pointer;
    transition: all .30s;
    max-width: 184px;
}
.answers-wrapper .item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}
.answers-wrapper .item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 20px
}
.answers-wrapper .item p {
    margin-top: 16px;
    color: #fff;
}

.answers-wrapper .item.active {
    border: 2px solid #A6FE5A;
}

.answers-wrapper .item.active p {
    color: #A6FE5A;
}

.buttons-wrapper {
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.buttons-wrapper .next-step, .send-email {
    color: #111111;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    background: #fff; 
    border-radius: 40px;
    padding: 16px;
    max-width: 220px;
    width: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}
.buttons-wrapper .skip-step {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    background: #1C1C1C; 
    border-radius: 40px;
    padding: 14px;
    max-width: 220px;
    width: 100%;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.buttons-wrapper .next-step:disabled, .send-email:disabled {
    background: #1C1C1C;
    color: rgba(255, 255, 255, 0.4);
}

.regular-answers {
    margin-top: 32px;
}
.four-in-line .item {
    flex: 1 1 20%;
    padding: 12px;
}
.two-in-line .item {
    flex: 1 1 45%;
    max-width: 100%;
}
.two-in-line .item .item-sub-text {
    font-size: 14px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.8);
}
.img-question {
    margin-top: 32px;
}
.img-question img {
    max-width: 375px;
    width: 100%;
    height: auto;
} 
 
.text-question-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 354px;
    width: 100%;
    margin: 32px auto 0; 
    justify-content: center;
    color: #FBFBFB;
    border-radius: 8px;
    border: 2px solid #1C1C1C; 
    padding: 16px;
    font-size: 20px;
    font-weight: 500;
}
.text-btns-answers {
    flex-direction: column;
    max-width: 354px;
    margin: 32px auto 0px;
    gap: 8px; 
}
.text-btns-answers .item {
    flex: 1 1 100%;
    padding: 16px 12px;  
    max-width: 100%;
}
.text-btns-answers .item p {
    margin-top: 0; 
}

.text-btns-answers .item.true { 
    color: #A6FE5A; 
    border: 2px solid #A6FE5A;
}
.text-btns-answers .item.false {
    color: #EF1B2D; 
    border: 2px solid #EF1B2D;
}


.start-point-wrapper {}
.start-point-wrapper h3 {
    font-size: 14px;
    color: #FF9AE2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-transform: uppercase;
    font-weight: normal;
}
.start-point-wrapper h2 {
    margin-top: 32px;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}
.start-point-wrapper p {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}


.build-features {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
}
.build-features .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 16px;
    align-items: center;
}
.build-features .item .icon img {
    height: 48px;
    width: 48px;
}
.build-features .item .text {
    text-align: left;
}
.build-features .item .text h2 {
    font-weight: 500;
    font-size: 20px;
}
.build-features .item .text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}



.final-chart-text {
    margin-top: 32px;
}
.final-chart-text .item {
    margin-bottom: 12px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
}

.result-list {
    margin-top: 24px;
}
.result-list .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FBFBFB;
    margin-bottom: 12px;
}



.form-item {
    background: #1C1C1C;
    padding: 24px 20px;
    border-radius: 24px;
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}
.form-item:before {
    content: '';
    position: absolute;
    top: -20px;
    right: 30px;
    width: 20px;
    height: 32px;
    background: url(red-star.svg) center/contain no-repeat;
}
.form-item h2 {
    text-align: left;
    color: #FBFBFB;
    font-size: 24px;
}
.form-item form {
    margin-top: 24px;
}
.form-item .form-field {
    margin-bottom: 24px;
}
.form-item .form-field h3 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    text-align: left;
    font-weight: normal;
    margin-bottom: 6px;
}
.form-item .form-field input {
    display: block;
    width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: #1C1C1C;
    font-family: inherit;
    outline: none;
    padding: 16px;
    font-size: 16px;
}
.form-item form button {
 
    background: #FBFBFB;
    display: flex;
    align-items: center;
    gap: 6px;
 
    width: 100%;
    color: #111111;
    font-family: inherit;
    padding: 16px 24px;
    border-radius: 40px;
    font-size: 16px;
    border: none;
    outline: none;
    justify-content: center;
    
}
.form-gift {
    margin-top: 16px;
}
.form-gift img {}
.form-gift h3 {
    margin-top: 8px;
    color: #FBFBFB;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.form-gift p {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


.loader-box {
    position: relative;
    height: 200px;
    width: 200px;
    margin: 24px auto;
}

.loader-box img {
    animation: rotateClockwise 5s linear infinite;
    height: 200px;
    width: 200px;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #fff;
    font-weight: 500;
    font-size: 42px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 42px;
}

 
 
/*
.outlined-number {
    font-size: 120px; 
    font-weight: 900;
    color: #ffe600;  
    text-shadow: 
        3px 3px 0 #ff6700,
        -3px 3px 0 #ff6700,
        3px -3px 0 #ff6700,
        -3px -3px 0 #ff6700,
        0 3px 0 #ff6700,
        3px 0px 0 #ff6700,
        0 -3px 0 #ff6700,
        -3px 0px 0 #ff6700;
}
*/



 

.h-sub {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}
 

/*******************************/

/*******************************/

.logading-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000069;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all .30s;
    z-index: 9999;
}

.loading-box__wrapper {
    height: 100px;
    width: 100px;
}

.loading-box__wrapper svg {
    width: 100%;
    height: 100%;
}

.logading-box__active {
    visibility: visible;
    opacity: 1;
    transition: all .30s;
}

.loader-box {
    position: relative;
    height: 200px;
    width: 200px;
    margin: 24px auto;
}


.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
.iti--separate-dial-code .iti__selected-dial-code {
    color: #fff;
}
