.dnone {display:none;}
.test__title-sub {
	font-weight: 700;
	font-size: 17px;
	color: #2f364c;
}

.test__title-sub-2 {
	font-size: 25px;
	margin: 20px 0;
}

.test__title-sub-3 {
	font-size: 20px;
}

.test {
	background-color: var(--blue_3);
	border-radius: 50px;
	color: #fff;
	margin: 50px 0;
}

.test__screen {
	width: 100%;
	height: 100%;
	padding: 20px 20px 50px;
	position: relative;
}

.test__screen-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.test__screen-question {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.test__in-title {
	font-weight: 700;
	font-size: 45px;
	text-align: center;
}

.test__in-sub {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.test__in-btn-begin {
	padding: 15px 30px;
	font-size: 17px;
	border: 10px solid #fff !important;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
}

.test__in-title-question-num {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
}

.test__in-title-question-large {
	font-weight: 700;
	font-size: 25px;
}

.test__in-title-question-mid {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.test__in-answers {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
	width: 100%;
}

.test__in-answers-item {
	padding: 15px 20px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.2);
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
	transition: all .3s ease;
	text-align: left;
	position: relative;
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	width: 90%;
}

.test__in-answers-item input {
	display: none;
}

.test__in-answers-item-box {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background-color: #fff;
	transition: all .3s ease;
	position: relative;
	flex: none;
}

.test__in-answers-item-box:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border-radius: 1px;
	background-color: var(--orange);
	opacity: 0;
	transition: all .3s ease
}

.test__in-answers-item:has(input[type='radio']) .test__in-answers-item-box:after {
	border-radius: 100%;
}

.test__in-answers-item:has(input:checked) .test__in-answers-item-box:after {
	opacity: 1;
}

.test__screen-decor-img {
	width: 100%;
	height: 100%;
	max-width: 500px;
}

.test__in-navigation {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
	width: calc(100% - 40px);
	padding: 0 40px;
	margin: 0px 15px;
	margin-top: 20px;
}

.test__in-navigation-btn {
	padding: 15px 30px;
	background-color: transparent;
	border: 1px solid #fff;
	transition: .3s all ease;
}

.test__in-navigation-btn:hover {
	background-color: #fff;
	color: var(--blue_3);
	scale: 1.05;
}

.test__in-navigation-btn-2 {
	background-color: #fff;
	color: var(--blue_3);
}

.test__lock {
	pointer-events: none;
	opacity: .5;
}

.test__screen-wrapper:has(input:checked) .test__lock {
	pointer-events: initial;
	opacity: 1;
}

.test__screen-question .test__in-sub {
	font-size: 17px;
	max-width: 600px;
}

.test__in-inputs {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 45px;
	width: 100%;
}

.test__in-input {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
}

.test__in-input input {
	width: 100%;
	background-color: transparent;
	color: #fff;
}

.test__in-input input::placeholder {
	color: #fff;
}

.test__in-input .input-error {
	margin-top: 5px;
}

.test__screen-question .event-page__home-form-price {
	margin-top: 30px; gap:15px;
}

.test__screen-question .event-page__home-form-price-free {
	color: #e1ff00;
}

.test__screen-decor-timer {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
}

.test__screen-decor-timer-time {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	font-family: 'Montserrat';
	gap: 10px;
}

.test__screen-decor-timer-indicator {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	border: 1px solid #fff;
}

.test__screen-decor-timer-indicator, .test__screen-decor-timer-dots {
	font-weight: 700;
	font-size: 40px;
}

@media screen and (min-width: 700px) {
	.test__in-title {
		font-size: 65px;
	}

	.test__in-sub {
		font-size: 20px;
	}

	.test__in-btn-begin {
		padding: 15px 50px;
	}

	.test__in-title-question-large {
		font-size: 35px;
	}

	.test__in-title-question-mid {
		font-size: 30px;
	}
}

@media screen and (min-width: 1320px) {
	.test__screen-wrapper, .test__in-navigation {
		flex-direction: row;
	}

	.test__screen-decor, .test__screen-question, .test__in-navigation > * {
		flex-grow: 1;
	}

}
.test * {box-sizing: border-box;}
*::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.test .center {
	display: flex;
	justify-content: center;
	align-items: center;
}