

.quiz-container {
	display: flex;
	height:470px;
	flex-direction: row;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	overflow: hidden;
}

.image-section {
	flex: 0 0 300px;
	position: relative;
	width: 412px;
	border-radius: 32px;	
}

.img-quiz-1{
	background: 50% 0 url('/wp-content/uploads/2025/12/f861c74bf9a529ddd0b1ad25cd7b6bb9cc33fb32.jpg') no-repeat;	
	background-size: auto 100%;
}
.img-quiz-2{
	background: 50% 0 url('/wp-content/uploads/2025/12/rectangle-45.png') no-repeat;
	background-size: auto 100%;
}
.img-quiz-3{
	background: 50% 0 url('/wp-content/uploads/2025/12/53e85d294eea9a908038b62e2e6bd4c71aca6dec.jpg') no-repeat;
	background-size: auto 100%;
}
.img-quiz-4{
	background: 50% 0 url('/wp-content/uploads/2025/12/13a5e069f1d961c35357d0e398b428e928f378fc.jpg') no-repeat;
	background-size: auto 100%;
}
.img-quiz-5{
	background: 50% 0 url('/wp-content/uploads/2025/12/da6c22b97759f9f9696c4278388c0c8a9d7a263a.jpg') no-repeat;
	background-size: auto 100%;
}
.img-quiz-6{
	background: 50% 0 url('/wp-content/uploads/2025/12/70259a4d55ce32a2931cfc8461ce0e4ec9a19d4d.jpg') no-repeat;
	background-size: auto 100%;
}

.content-section {
	flex: 1;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 600px
}

.title {
	font-size: 30px;
	font-weight: 400;
	font-family: "Montserrat", Sans-serif;
	color: #404041;
	margin-bottom: 40px;
	text-align: center;
}

.options-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 30px;
}

.option-card {
	background: #F5F2ED;
	border: 1px solid #F5F2ED;
	border-radius: 32px;
	padding: 32px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.option-card:hover {
	border-color: #152A3F;
}

.option-card.selected {
	background: #e8f0f7;
	border-color: #1a3a52;
}

.option-icon {
	font-size: 32px;
	color: #666;
	width: 30px;
	height: 30px;
}

.option-card:nth-child(1) .option-icon {
    background: url(../icons/quiz1.svg) no-repeat center/contain;
}
.option-card:nth-child(2) .option-icon {
    background: url(../icons/quiz2.svg) no-repeat center/contain;
}
.option-card:nth-child(3) .option-icon {
    background: url(../icons/quiz3.svg) no-repeat center/contain;
}
.option-card:nth-child(4) .option-icon {
    background: url(../icons/quiz4.svg) no-repeat center/contain;
}



.option-text {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}

#quiz-main-form .elementor-button{
	background: #152A3F;
	color: #E3DCCD;
	border: none;
	border-radius: 100px;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}
#quiz-main-form .elementor-field-type-previous .elementor-button {
	background: #E3DCCD;
	color: var(--dark-grey);
}
#quiz-main-form .elementor-button:hover {
	background: #112232;
	transform: translateY(-2px);
}

.submit-btn:active {
	transform: translateY(0);
}

@media (max-width: 768px) {
	.wellness-container {
		flex-direction: column;
	}

	.image-section {
		flex: 0 0 200px;
	}

	.content-section {
		padding: 30px 20px;
	}

	.title {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.options-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.option-card {
		padding: 20px;
	}

	.option-icon {
		width: 30px;
		height: 30px;
		font-size: 28px;
	}

	.option-text {
		font-size: 13px;
	}
}

/* Контейнер индикаторов */
#quiz-main-form .e-form__indicators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 20px 0;
	padding-right: 60px;
    width: 740px;
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    TOP: -15px;
    right: 10px;
    z-index: 99;
}

/* Скрываем текст шагов */
#quiz-main-form .e-form__indicators__indicator__label {
    display: none;
}

/* Убираем точки индикаторов - делаем их невидимыми */
#quiz-main-form .e-form__indicators__indicator {
    width: 0;
    height: 0;
    background: transparent;
    border: none;
    flex-shrink: 0;
}

/* Линия между индикаторами - неактивная */
#quiz-main-form .e-form__indicators__indicator__separator {
    flex: 1 1 auto;
    min-width: 0;
    height: 4px;
    background: #EBEAE9;
    transition: all 0.3s ease;
}

/* Линия становится активной (темной), если предыдущий шаг активен */
#quiz-main-form .e-form__indicators__indicator--state-active + .e-form__indicators__indicator__separator {
    background: #E3DCCD;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    #quiz-main-form .e-form__indicators {
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }
    
    #quiz-main-form .e-form__indicators__indicator__separator {
        height: 2px;
    }
}

