.add_to_cart span{
	display: none;
}
.header-cart__total-items{
	line-height: normal;
}

.product-page__discount-quiz-btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #41bd2f !important;
	border: 1px solid #41bd2f !important;
	color: #fff !important;
	border-radius: 4px;
	font-weight: 800;
	box-shadow: 0 8px 22px rgba(65,189,47,.28);
	transition: .25s ease;
	animation: discountBtnPulse 2.4s ease-in-out infinite;
}

.product-page__discount-quiz-btn:hover,
.product-page__discount-quiz-btn:focus {
	background: #36a126 !important;
	border-color: #36a126 !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(65,189,47,.38);
}

.discount-quiz-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;

}

@keyframes discountBtnPulse {
	0%,100% {
		box-shadow: 0 8px 22px rgba(65,189,47,.28);
	}
	50% {
		box-shadow: 0 8px 22px rgba(65,189,47,.28), 0 0 0 10px rgba(65,189,47,.14);
	}
}

.discount-quiz-modal {
	z-index: 1065 !important;
	padding-right: 0 !important;
}

.discount-quiz-backdrop {
	z-index: 1060 !important;
}

.discount-quiz-modal .modal-dialog {
	width: 540px;
	max-width: calc(100% - 30px);
	margin: 55px auto !important;
	transform: none !important;
}

.discount-quiz {
	position: relative;
	padding: 36px;
	border: 0;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0,0,0,.28);
	overflow: hidden;
}

.discount-quiz:before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 7px;
	background: linear-gradient(90deg,#ff8a00,#ffc04d);
}

.discount-quiz:after {
	content: "";
	position: absolute;
	right: -70px;
	top: -70px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: rgba(255,138,0,.08);
	pointer-events: none;
}

.discount-quiz__close {
	position: absolute;
	right: 16px;
	top: 14px;
	z-index: 5;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f5f5f5;
	color: #555;
	font-size: 30px;
	line-height: 32px;
	cursor: pointer;
	transition: .2s ease;
}

.discount-quiz__close:hover {
	background: #41bd2f;
	color: #fff;
}

.discount-quiz__step {
	display: none;
	animation: quizFade .35s ease;
}

.discount-quiz__step.active {
	display: block;
}

.discount-quiz__label {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(65,189,47,.12);
	color: #41bd2f;
	font-size: 13px;
	font-weight: 800;
}

.discount-quiz__title {
	margin-bottom: 22px;
	padding-right: 38px;
	font-size: 25px;
	line-height: 1.25;
	font-weight: 900;
	color: #222;
}

.discount-quiz label {
	position: relative;
	display: block;
	margin-bottom: 12px;
	cursor: pointer;
}

.discount-quiz label input {
	display: none;
}

.discount-quiz label span {
	position: relative;
	display: block;
	padding: 15px 16px 15px 48px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fff;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	transition: .22s ease;
}

.discount-quiz label span:before {
	content: "";
	position: absolute;
	left: 17px;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-radius: 50%;
	background: #41bd2f;
	box-shadow: 0 0 0 5px rgba(65,189,47,.14);
	transition: .22s ease;
}

.discount-quiz label span:hover {
	border-color: #41bd2f;
	background: #fff;
	transform: translateX(2px);
}

.discount-quiz label input:checked + span {
	border-color: #41bd2f;
	background: #f8fff7;
	box-shadow: 0 8px 24px rgba(65,189,47,.15);
	color: #222;
}

.discount-quiz label input:checked + span:before {
	background: #41bd2f;
	box-shadow: 0 0 0 5px rgba(65,189,47,.18), inset 0 0 0 4px #fff;
}

.discount-quiz__buttons {
	display: flex;
	gap: 10px;
}

.discount-quiz__next,
.discount-quiz__prev,
.discount-quiz__submit {
	margin-top: 14px;
	height: 48px;
	border: 0;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	transition: .25s ease;
}

.discount-quiz__next {
	width: 100%;
	background: #ff8a00;
	box-shadow: 0 9px 22px rgba(255,138,0,.25);
}

.discount-quiz__next:hover,
.discount-quiz__next:focus {
	background: #f07d00;
	color: #fff;
	transform: translateY(-1px);
}

.discount-quiz__submit {
	width: 100%;
	background: #41bd2f;
	box-shadow: 0 9px 22px rgba(65,189,47,.25);
}

.discount-quiz__submit:hover,
.discount-quiz__submit:focus {
	background: #36a126;
	color: #fff;
	transform: translateY(-1px);
}

.discount-quiz__prev {
	width: 130px;
	background: #9a9a9a;
}

.discount-quiz__prev:hover,
.discount-quiz__prev:focus {
	background: #777;
	color: #fff;
}

.discount-quiz__phone {
	height: 50px;
	margin-bottom: 14px;
	border-radius: 10px;
	border: 1px solid #ddd;
	font-size: 17px;
	box-shadow: none;
}

.discount-quiz__phone:focus {
	border-color: #41bd2f;
	box-shadow: 0 0 0 4px rgba(65,189,47,.12);
}

.discount-quiz__note {
	margin-top: 15px;
	font-size: 13px;
	line-height: 1.45;
	color: #666;
}

.discount-quiz__message {
	margin-top: 15px;
}

.discount-quiz__success {
	padding: 38px 10px;
	text-align: center;
	font-size: 23px;
	line-height: 1.42;
	font-weight: 900;
	color: #41bd2f;
}

.shake {
	animation: quizShake .4s ease;
}

@keyframes quizFade {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes quizShake {
	0%,100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-6px);
	}
	75% {
		transform: translateX(6px);
	}
}

@media (max-width:480px) {
	.product-page__discount-quiz-btn {
		width: 100%;
	}

	.discount-quiz-modal .modal-dialog {
		margin: 25px auto !important;
	}

	.discount-quiz {
		padding: 30px 20px;
		border-radius: 16px;
	}

	.discount-quiz__title {
		font-size: 22px;
	}

	.discount-quiz__buttons {
		flex-direction: column;
	}

	.discount-quiz__prev {
		width: 100%;
	}
}