:root {
    --primary-blue: #004AAD;
    --dark-blue: #003366;
    --light-blue: #4d94ff;
    --highlight-orange: #ff6600;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #98a2b3;
    --dark-gray: #333333;
    --success-green: #004AAD;
    --primary-font: "Inter", sans-serif;
}

.quiz-page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-page .quiz-container {
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
}

.quiz-page .quiz-question-wrapper {
    display: flex;
    gap: 24px;
}

/* Progress tracker */

.quiz-page .progess_bar_warpper {
    display: flex;
    justify-content: center;
}

.quiz-page .progress-tracker {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    min-width: 620px;
    max-width: 620px;
}

.quiz-page .progress-step {
    display: flex;
    align-items: center;
    flex: 1;
}

.quiz-page .progress-step:last-child {
    flex: 0;
}

.quiz-page .step-indicator {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    border: 3px dashed #98A2B3;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #667085;
}

.quiz-page .step-indicator .checkmark {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.quiz-page .step-indicator.completed {
    background-color: var(--success-green);
    border-color: var(--success-green);
}

.quiz-page .step-indicator.completed .checkmark > svg {
    display: flex;
}

.quiz-page .step-content {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    font-family: var(--primary-font);
}

.quiz-page .checkmark {
    display: none;
    color: var(--white);
    font-size: 0.8rem;
}

.quiz-page .step-indicator.completed .step-content {
    display: none;
}

.quiz-page .step-indicator.completed .checkmark {
    display: block;
}

.quiz-page .step-line {
    flex: 1;
    height: 0; /* No height needed since we're using border */
    border-top: 3px dashed var(--medium-gray); /* Dashed line */
    margin: 0 5px;
}

/* Question container */
.quiz-page .quiz-question-content {
    flex: auto;
}

.quiz-page .question-container {
    margin-bottom: 2.5rem;
}

.quiz-page .question {
    display: none;
}

.quiz-page .question.active {
    display: block;
}

.quiz-page .question-number {
    font-size: 20px;
    color: #667085;
    margin-bottom: 0.5rem;
    font-family: var(--primary-font);
}

.quiz-page .question-text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #667085;
    font-family: var(--primary-font);
    line-height: 31.2px
}

.quiz-page .options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-page .option {
    display: flex;
    align-items: center;
    padding: 1rem;
    /* background-color: rgba(255, 255, 255, 0.1); */
    border: 1px solid #667085;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-page .option:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.quiz-page .option.selected {
    background-color: rgba(26, 35, 198, 0.10);
    border-color: #1A23C6;
}

.quiz-page .option.selected .option-letter {
    background: #1A23C6;
    color: #fff;
    border-radius: 5px;
}

.quiz-page .option-letter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    border: 1px solid #D0D5DD;
    margin-right: 1rem;
    color: #667085;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
}

.quiz-page .option-text {
    font-size: 16px;
    color: #667085;
    font-family: var(--primary-font);
    line-height: 26px;
}

/* Navigation buttons */
.quiz-page .navigation-buttons {
    display: flex;
    justify-content: right;
    gap: 16px;
}

.quiz-page .nav-button {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 31.2px;
    font-size: 20px;
    font-family: var(--primary-font);
}

.quiz-page .prev-button {
    border: 1px solid #475467;
    color: #1D2939;
    font-weight: 600;
    font-size: 20px;
    background: var(--white);
    line-height: 31.2px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--primary-font);
}

.quiz-page .prev-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.quiz-page .next-button {
    border: 1px solid #475467;
    color: #1D2939;
    font-weight: 600;
    font-size: 20px;
    background-color: var(--primary-blue);
    line-height: 31.2px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--primary-font);
    border: none;
    color: var(--white);
}

.quiz-page .next-button:hover {
    background-color: var(--light-blue);
}

.quiz-page .nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-cta-button {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 4px;
    width: 170px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.2px;
    font-family: var(--primary-font);
    height: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .3s ease;
    cursor: pointer !important;
}

.quiz-cta-button:hover {
    background-color: var(--light-blue);
}

#quizEmail, #desktopQuizEmail {
    width: 515px;
    height: 50px;
    background: transparent;
    border: 1px solid #717A8A;
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--white);
	outline: none;
}

#quizEmail input[type="email"]::placeholder {
    color: #717A8A;
}

#quizEmail:focus-visible {
    outline: none;
}

.quiz-custom-list li::marker {
	color: #FFB52B;
}

.question-number-mob {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quiz-page .quiz-container {
        padding: 1.5rem;
    }
    
    .quiz-page .question-text {
        font-size: 1.3rem;
    }
    
    .quiz-page .step-indicator {
        width: 40px;
        height: 40px;
    }
	.quiz-page .navigation-buttons {
        gap: 2.625rem ;
    }
}

@media (max-width: 480px) {
	.question-wrapper {
	  display: flex;
	  gap:15px;
	}
	.question-number-desktop {
	  display: none;
	}
	.question-number-mob {
	  display: block;
	}
	.quiz-page .progress-tracker {
		min-width: 342px;
	    max-width: 342px;
	}
    .quiz-page .quiz-container {
        padding: 1rem;
    }
    
    .quiz-page .progress-tracker {
        margin-bottom: 2rem;
    }
    
    .quiz-page .question-text {
        font-size: 1.1rem;
    }
    
    .quiz-page .option {
        padding: 0.75rem;
    }
    
    .quiz-page .option-letter {
       	max-width: 22px;
		height: 22px;
        font-size: 0.8rem;
    }
    
    .quiz-page .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-page .nav-button {
        width: 100%;
    }
	.quiz-page .navigation-buttons {
		flex-direction: row;
		gap: 42px;
  }
}