
#quiz-app {
    margin: 50px auto;
}
#quiz-app-page-wrap {
    background-color: #f7f7f7;
}
#quiz-app-intro p {
    margin-bottom: 20px;
}
#quiz-app-intro header {
    max-width: 850px;
}
.quiz-app-question h3 {
    max-width: 910px;
}
.quiz-app-question {
    min-height: 215px;
}
.progress-bar {
    height: 20px;
    background-color: #cce5ff;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}
.progress {
    height: 100%;
    width: 0;
    background-color: #004085;
    transition: width 0.3s;
}

/* Container for question text */
.question {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

/* Container for all options (the row of circles) */
.options {
    display: flex;
    margin: 2rem 0;
}

/* Each option is a vertical stack of the circle and the label below it */
.option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin: 0 5px;
    text-decoration: none;
    transition: transform 0.2s;
    text-align: center;
    width: 160px;
}

/* Circle that acts like a radio button, empty by default */
.option .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 8px;
    background-color: #fff;
    box-shadow: 0 0 0 8px #f1f1f1;
}

/* Label under the circle */
.option-label {
    font-size: 0.9rem;
    text-align: center;
    color: #333;
}

/* By default, circles have different border colors according to score */
.option[data-score="1"] .circle {
    border: 2px solid #E0F2FF;
}
.option[data-score="2"] .circle {
    border: 2px solid #C6E5FF;
}
.option[data-score="3"] .circle {
    border: 2px solid #A5D8FF;
}
.option[data-score="4"] .circle {
    border: 2px solid #85CCFF;
}
.option[data-score="5"] .circle {
    border: 2px solid #27A2FF;
}

/* When the option is active (selected), fill the circle with the color */

.option[data-score="1"] .circle:hover {
    background-color: #F0F6FF;
}
.option[data-score="2"] .circle:hover {
    background-color: #F0F6FF;
}
.option[data-score="3"] .circle:hover {
    background-color: #F0F6FF;
}
.option[data-score="4"] .circle:hover {
    background-color: #F0F6FF;
}
.option[data-score="5"] .circle:hover {
    background-color: #F0F6FF;
}

/* When the option is active (selected), fill the circle with the color */
.option.active[data-score="1"] .circle {
    background-color: #E0F2FF;
}
.option.active[data-score="2"] .circle {
    background-color: #C6E5FF;
}
.option.active[data-score="3"] .circle {
    background-color: #A5D8FF;
}
.option.active[data-score="4"] .circle {
    background-color: #85CCFF;
}
.option.active[data-score="5"] .circle {
    background-color: #27A2FF;
}

/* Results styling */
.results {
    margin-top: 20px;
    max-width: 800px;
    margin: 30px auto;
}
.results-section.white {
    background-color: #fff;
}
.results-section .results-container {
    max-width: 1174px;
    margin: 0px auto 0px;
}
.results-section h2 {
    color: #004085;
    margin-bottom: 20px !important;
}
.results-section p {
    font-size: 18px;
    color: #2c2e2e;
    letter-spacing: 0.1px;
    line-height: 1.35;
    padding-bottom: 30px;
}
.results-section span.bullet {
    font-weight: bold;
    font-size: 24px;
}
.faq-item .question::after {
	background: none;
	content: "►";
	font-size: 20px;
	top: 26px;
	width: auto;
	height: auto;
	margin-top: 0px;
	left: -50px;
}
.faq-item.active .question::after {
	background: none;
	top: 25px;
	content: "▼";
	right: 0px;
}
.faq-item .question:before {
	display: none;
}
#quiz-app-results .cta {
	text-align: center;
    margin: 50px 0;
}
#quiz-app-results #cta-container {
	padding: 50px 0;
	margin-bottom: 10px;
}

#quiz-app-results .cta input {
	margin-right: 50px;
	display: inline;
	width: 375px;
	border-radius: 7px;
	border: solid #cccccc 1px;
	font-size: 18px;
	font-weight: 600;
	padding: 19px;
	box-shadow: -8px 8px 0px #f1f1f1, 8px 8px 0px #f1f1f1, 8px -8px 0px #f1f1f1, -8px -8px 0px #f1f1f1;
}

#quiz-app-results .cta header {
	margin-bottom: 25px;
}

#quiz-app-results .cta p {
    padding-top: 30px;
    text-align: center;
    font-size: 20px;
}

#quiz-app-results .cta button {
	margin: 27px auto 0;
	display: inline;
	padding: 21px 58px;
	background: #27a2ff;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	border: none;
	transition: ease all 0.2s;
}

#quiz-app-results .cta .thankyou {
	display: none;
	font-size: 24px;
	font-weight: bold;
	padding-top: 15px;
	color: #333;
}

#quiz-app-results .cta .sms-info {
	max-width: 830px;
	display: block;
	margin: 40px auto 0;
	font-size: 14px;
	line-height: 1.3;
	padding: 0px 15px;
	color: #888;
}

#quiz-app-results .cta .sms-info p {
	font-size: 14px !important;
}

#quiz-app-recommended-products,
#quiz-app-recommended-products-others {
    background-color: transparent;
    padding-top: 15px;
}
.results-section p strong {
    line-height: 3;
}
#overall-results.results-section p strong {
    font-size: 30px;
}
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.nav-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #004085;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}
.nav-buttons button:hover {
    background-color: #003366;
}
.hidden {
    display: none;
}
.results-section .quiz-app-products {
    display: flex;
    justify-content: space-between;
    margin-top: 150px;
}

/* #quiz-app-results #customerSlider li {
    display: block !important;
} */
.citation {
    vertical-align: super;
    font-size: 11px;
}

@media screen and (max-width: 1024px) {
    .options {
        margin: 0px auto;
        padding-top: 0px;
        max-width: 1024px;
    }
    .option {
        width: 130px;
    }
    .option .circle {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 768px) {
    .option {
        padding: 0 0 30px;
        width: 15%;
    }
    .option .circle {
        width: 50px;
        height: 50px;
    }
    .quiz-app-question {
        min-height: 250px;
    }
    #overall-results .recommendation-text,
    #health-overview .recommendation-text {
        padding: 0 15px;
    }
    .results-section .quiz-app-products {
        display: block;
        margin-top: 0px;
    }
    .faq-item .question::after {
        left: 20px;
    }

    
}