*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.container {
	margin: 0 auto;
	position: relative;
	width: 100%;
	padding: 0 10px;
	max-width: 846px;
}

.wrapper {
	overflow: hidden;
	margin: 0 auto -30px;
	max-width: 1920px;
}

body {
	font-family: 'Roboto Condensed', sans-serif;
	background-color: #fff;
	line-height: 1.2;
	font-size: 18px;
}

.title {
	font-size: 25px;
	font-weight: 900;
	text-transform: uppercase;
	color: #00283b;
	margin-top: 30px;
}

.title--decor {
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
}

.brt {
	border-top: 3px solid #f50000;
	margin-top: 30px;
}

img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

.button {
	position: relative;
	width: 400px;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px;
	height: 84px;
	color: white;
	text-decoration: none;
	border: none;
	background: -webkit-gradient(linear, left top, left bottom, from(#f5798d), to(#f3627b));
	background: linear-gradient(180deg, #f5798d 0%, #f3627b 100%);
	border-radius: 12px;
	font-size: 20px;
	z-index: 10;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.button::after,
.button::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	border-radius: 12px;
}

.button::before {
	top: 10px;
	bottom: -10px;
	background-color: white;
	-webkit-transform: translateZ(-10px) translateY(0px);
	transform: translateZ(-10px) translateY(0px);
	z-index: -10;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

.button::after {
	top: 20px;
	bottom: -20px;
	background: -webkit-gradient(linear, left top, left bottom, from(#f5798d), to(#f3627b));
	background: linear-gradient(180deg, #f5798d 0%, #f3627b 100%);
	z-index: -20;
	-webkit-transform: translateZ(-20px) translateY(0px);
	transform: translateZ(-20px) translateY(0px);
}

.button:hover::after,
.button:hover::before {
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transform: translateZ(-10px) translateY(-10px);
	transform: translateZ(-10px) translateY(-10px);
}

.grid__left,
.grid__right {
	display: none;
}

.header {
	background: #00283b;
	height: 77px;
	-webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 7px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .logo svg {
	width: 108px;
	height: 77px;
}

.header .logo p {
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	line-height: 1;
}

.header .logo p::before {
	position: absolute;
	content: '';
	inline-size: 10px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #ff3640;
	right: -21px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 14px;
	-moz-column-gap: 14px;
	column-gap: 14px;
}

.header__right svg {
	width: 36px;
	height: 36px;
}

.promo__header {
	padding: 55px 0 16px;
	border-bottom: 4px solid #1db0d5;
	color: #f50000;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 900;
	font-size: 20px;
}

.promo__subheader {
	background: #fcc122;
	margin-top: 30px;
	padding: 10px;
	font-size: 20px;
	font-weight: 600;
	line-height: 0.8;
}

.promo h1 {
	font-size: 30px;
}

.promo .subtitle {
	font-size: 25px;
}

@media (min-width: 990px) {
	.promo .subtitle {
		font-size: 32px;
	}
}

.promo .subtitle b {
	color: #00283b;
}

.promo p {
	margin-top: 30px;
}

.promo__img {
	margin-top: 30px;
}

.promo__img figcaption {
	margin-top: 10px;
}

.promo__img figcaption span {
	font-style: italic;
}

.promo__img figcaption b {
	display: block;
}

.promo .other {
	position: relative;
	overflow: hidden;
}

.promo .other__all {
	position: absolute;
	bottom: 0px;
	left: 48%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.promo .other__txt {
	font-size: 27px;
	font-weight: 900;
	background: #ec1c24;
	position: absolute;
	z-index: 10;
	display: block;
	text-align: center;
	color: #fff;
	text-transform: uppercase; 
	transform: rotate(-13deg) translateY(29%);
	bottom: 35%;
	left: -40px;
	right: -40px;
}

.promo .formula {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 8px;
	-moz-column-gap: 8px;
	column-gap: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-around;
	padding-top: 29px;
}

.promo .formula img {
	margin: 0;
	max-width: 50%;
}

.promo .formula .img img {
	margin: 0;
	max-width: 100%;
}

.promo .formula .img span {
	display: block;
	text-align: center;
	font-size: 15.5px;
	margin-top: 4px;
}

.promo .fruit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

.promo .fruit img {
	width: 33%;
	margin: 0;
}

.promo .note {
	border: 3px solid #ff6358;
	padding: 10px;
	text-align: center;
	margin: 30px auto 70px;
}

.promo .action {
	margin-top: 30px;
	margin-bottom: 70px;
	padding-bottom: 70px;
	border-bottom: 4px solid #1db0d5;
}

.promo .action__item {
	border: 3px solid #ff6358;
	padding: 20px 10px;
	background: #f9d7d2;
	margin-top: 15px;
}

.promo .action__item img {
	border-radius: 50%;
	width: 86px;
}

.promo .action__item figcaption {
	margin-top: 16px;
}

.promo .action__item figcaption p {
	margin-top: 16px;
}

.promo .not {
	position: relative;
	overflow: hidden;
	background: -webkit-gradient(linear, right top, left top, from(#ffffff), to(#999999));
	background: linear-gradient(270deg, #ffffff 0%, #999999 100%);
}



.promo .not__prods {
	width: 200px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}

.promo .not__txt {
	width: 190px;
	position: absolute;
	top: 2px;
	right: 10px;
	z-index: 10;
}

.promo h4 {
	margin: 30px 0 0;
	font-weight: bold;
}

.promo p i b {
	font-weight: 500;
}

.promo .prod-serc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 6px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-around;
	-webkit-column-gap: 3px;
	-moz-column-gap: 3px;
	column-gap: 3px;
}

.promo .prod-serc img {
	margin: 0;
	max-width: 50%;
	aspect-ratio: 296/467;
	max-width: 50%;
	object-fit: contain;
}

.promo .prod-serc--doc {
	padding-top: 0;
	row-gap: 17px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.promo .prod-serc--doc img {
	aspect-ratio: auto;
	width: 100%;
}

.promo .prod-serc--doc img:first-child {
	width: 100%;
	max-width: 329px;
}

.promo .prod-serc--doc img:last-child {
	width: 100%;
	max-width: 246px;
}

.promo .recomend {
	border: 3px solid #8faa99;
	padding: 20px 10px;
	background: #f5faf4;
	margin-top: 30px;
}

.promo .recomend ul {
	margin-top: 30px;
}

.promo .recomend ul li {
	position: relative;
	padding-left: 23px;
}

.promo .recomend ul li::before {
	position: absolute;
	top: 8px;
	left: 6px;
	inline-size: 4px;
	aspect-ratio: 1;
	content: '';
	background: #000;
	border-radius: 50%;
}

@media (min-width: 815px) {
	.promo .recomend ul li::before {
		top: 12px;
	}
}

.promo .table {
	font-size: 11px;
	overflow: hidden;
	margin-top: 30px;
}

.promo .table__headers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.promo .table__headers .table__title {
	font-size: 12px;
	margin-top: auto;
	display: block;
	font-weight: bold;
	text-align: center;
	padding-bottom: 15px;
}

.promo .table__headers .table__column figcaption {
	text-align: center;
}

.promo .table__headers .table__column--red {
	background: #f9d7d2;
	border: 1.38px solid #ff6358;
	border-bottom: 0;
}

.promo .table__headers .table__column--red img {
	width: 105px;
	margin: auto;
}

.promo .table__headers .table__column--red figcaption {
	font-size: 9px;
	margin-top: auto;
}

.promo .table__headers .table__column--green {
	background: #f5faf4;
	border: 1.38px solid #8faa99;
	border-bottom: 0;
}

.promo .table__headers .table__column--green img {
	width: 47px;
}

.promo .table__headers .table__column--green figcaption {
	font-size: 16px;
}

.promo .table__header {
	display: grid;
	grid-template-rows: 1fr auto;
	gap: 10px;
	padding: 9px 8px;
	height: 100%;
}

.promo .table__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 18px;
}

.promo .table__row:last-child {
	margin-top: 13px;
}

.promo .table__row:last-child .table__column {
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.promo .table__row:last-child .table__column::before {
	bottom: 0;
}

.promo .table__row:last-child .table__column--red {
	border-bottom: 1.38px solid #ff6358;
}

.promo .table__row:last-child .table__column--green {
	border-bottom: 1.38px solid #8faa99;
}

.promo .table__title {
	width: 24.32%;
	padding: 0 4.61px;
}

.promo .table__column {
	position: relative;
	padding: 0 4.61px;
}

.promo .table__column::before {
	top: -60px;
	bottom: -40px;
	left: 0;
	right: 0;
	content: '';
	position: absolute;
	z-index: -1;
}

.promo .table__column--red {
	width: 35.14%;
}

.promo .table__column--red::before {
	border-right: 1.38px solid #ff6358;
	border-left: 1.38px solid #ff6358;
	background: #f9d7d2;
}

.promo .table__column--green {
	width: 35.14%;
}

.promo .table__column--green::before {
	border-right: 1.38px solid #8faa99;
	border-left: 1.38px solid #8faa99;
	background: #f5faf4;
}

.promo .steps__list figure {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.promo .steps__list figure figcaption {
	width: calc(100% - 57px);
}

.promo .steps__list figure svg {
	max-width: 57px;
	max-height: 51px;
}

.promo .arrows {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 69px;
	-moz-column-gap: 69px;
	column-gap: 69px;
	margin-top: 30px;
}

.promo .arrows svg {
	inline-size: 46px;
	aspect-ratio: 1;
	fill: #8faa99;
}

.promo .arrows--txt {
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.promo .arrows--txt p {
	color: #f50000;
	margin: 0;
	font-size: 24px;
	font-weight: 900;
	text-transform: uppercase;
}

.promo .arrows--txt svg {
	fill: #f50000;
	inline-size: 31px;
}

.promo .hand.left div {
	top: -63px;
	position: relative;
	-webkit-transform: translateY(8px);
	-ms-transform: translateY(8px);
	transform: translateY(8px);
	z-index: 10;
	width: 72px;
	padding: 9px;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	background: #f58c2a;
	-webkit-box-shadow: inset -3.06147px -3.93617px 0px #e67424;
	box-shadow: inset -3.06147px -3.93617px 0px #e67424;
	border-radius: 44px;
	font-weight: 900;
	font-size: 14px;
	color: #fff;
	margin: 0 auto;
}

.promo .hand.right img:last-child {
	width: 53px;
	top: -120px;
	position: relative;
	-webkit-transform: translateY(28px);
	-ms-transform: translateY(28px);
	transform: translateY(28px);
}

.promo .scales__btn {
	grid-row: -1/-2;
	grid-column: 1/-1;
	margin: 43px auto 0;
	width: 100%;
	position: relative;
	z-index: 30;
}

.promo .scales__popup,
.promo .btns__popup {
	margin-top: 17px;
	display: none;
	background: #f5faf4;
	border: 1.4px solid #8faa99;
	line-height: 1.16;
	color: #505050;
	padding: 9px 5px;
	text-align: center;
	z-index: 20;
	left: 50%;
	max-width: 570px;
	width: 100%;
	margin: 10px auto 0;
}

.promo .scales__popup b,
.promo .btns__popup b {
	color: #33994c;
	display: block;
	font-size: 18px;
}

.promo .btn {
	padding: 10px 20px;
	font-weight: 900;
	font-size: 20px;
	color: #ffffff;
	background: #33994c;
	border: 2px solid #33994c;
	text-align: center;
	text-transform: uppercase;
	margin-top: 16px;
	cursor: pointer;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.promo .btn:hover {
	background: #fff;
	color: #33994c;
}

.promo .burn {
	width: 370px;
	max-width: 100%;
	margin: 70px auto 0;
}

.promo .burn__popup {
	text-transform: uppercase;
	padding: 9px 4px;
	background: #f5faf4;
	border: 1.4px solid #8faa99;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	margin-top: 15px;
	font-size: 18px;
}

.promo .burn__popup p {
	font-weight: 900;
	margin: 0;
	color: #505050;
}

.promo .burn__popup span {
	font-weight: 700;
	margin: -5px 0;
	font-size: 45px;
	color: #e63d1a;
}

.promo .burn__popup b {
	font-weight: 900;
	color: #e63d1a;
}

.promo .burn__button {
	padding: 15px 5px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #e63d1a;
	border: 0.5px solid #474747;
	-webkit-box-shadow: 0px 3.2px 0px #474747;
	box-shadow: 0px 3.2px 0px #474747;
	border-radius: 4.6px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
}

.promo .burn__button--comm {
	width: 320px;
	margin: 30px auto;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	cursor: pointer;
	max-width: 100%;
}

.promo .burn__button--comm:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.promo .burn #progress-container {
	width: 100%;
	height: 42px;
	border: 4px solid #fdedd1;
	margin-bottom: 10px;
	position: relative;
	background: #d8d3c6;
	border-radius: 13px;
}

.promo .burn #progress-bar {
	width: 100%;
	height: 100%;
	background-color: #fb7d22;
	-webkit-transition: width 0.5s;
	transition: width 0.5s;
	border-radius: 9px;
}

.promo .burn #discount-button {
	-webkit-animation: pulse 1.5s infinite;
	animation: pulse 1.5s infinite;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.form {
	color: #fff;
	margin: 70px auto 0;
	border: 1.3px solid #194c25;
	-webkit-box-shadow: 0px 0px 12.9789px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 12.9789px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
	padding: 15px 44px;
	max-width: 570px;
}

.form::before {
	background: url(../img/form.png) center/contain no-repeat;
	content: '';
	position: absolute;
	top: 0;
	aspect-ratio: 1440/1233;
	left: 50%;
	height: 100%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
	background-color: #2d8743;
}

.form__header {
	font-weight: bold;
	font-size: 21px;
	text-align: center;
}

.form .time-container {
	margin-top: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 13px;
	-moz-column-gap: 13px;
	column-gap: 13px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.form .time-container .time {
	width: 79.05px;
	height: 73.43px;
	background: linear-gradient(138.1deg, #e01337 8.77%, #7a0a1e 146.37%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.form .time-container .time span {
	font-weight: 900;
	font-size: 40px;
}

.form .time-container .time div {
	font-weight: 700;
	font-size: 13px;
}

.form .prod {
	margin: 20px auto 0;
	position: relative;
	width: 191px;
}

.form .prod .sale {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	top: -14px;
	right: -54px;
	z-index: 5;
	font-size: 44px;
	font-weight: 900;
	inline-size: 108px;
	aspect-ratio: 1;
}

.form .prod .sale svg {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	z-index: -1;
}

.form .price {
	text-align: center;
	margin-top: 20px;
}

.form .price .oldPrice {
	font-size: 27px;
	text-decoration-line: line-through;
}

.form .price .newprice {
	margin-top: -5px;
	font-size: 42px;
	font-weight: 700;
	color: #df1337;
	text-shadow:
		-1px 0px 0px #fff,
		0px -1px 0px #fff,
		0px 1px 0px #fff,
		1px 0px 0px #fff;
}

.form .counter {
	font-size: 26px;
	text-align: center;
	margin-top: 15px;
	font-weight: 700;
	margin-top: 16px;
}

.form .counter span {
	padding: 2px 8px;
	border: 1.3px solid #ffffff;
	background: #d41033;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form .rate {
	margin-top: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.form .rate figure {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 3px;
	background: #e3fadc;
	border-radius: 64.8944px;
	padding: 6px;
}

.form .rate figure svg {
	inline-size: 15.57px;
	aspect-ratio: 1/1;
}

.form .rate figure figcaption {
	color: #6a923a;
	font-size: 15px;
}

.form .rate .stars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.form .rate .stars img {
	width: 103px;
	width: 80px;
}

.form .rate .stars span {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.form input,
.form select {
	width: 100%;
	margin-top: 16px;
	height: 45px;
	padding: 7px 14px;
	line-height: 1.2;
	font-size: 15px;
	outline: none;
	border: none;
	background: #fff;
}

.form select {
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E%0A")
			no-repeat 95% 50%,
		#fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form button {
	margin: 16px auto 0;
	display: block;
	padding: 14px;
	width: 281px;
	max-width: 100%;
	background: linear-gradient(101.69deg, #df1337 8.46%, #8c0019 120.86%);
	border: 0.648944px solid #8e0100;
	-webkit-box-shadow: inset 0px -3.24472px 0px #8e0100;
	box-shadow: inset 0px -3.24472px 0px #8e0100;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}

.form__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 3px;
	margin-top: 16px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.form__footer figure {
	gap: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	padding: 2px 4px;
}

.form__footer figure figcaption {
	font-size: 12px;
	color: #df1337;
}

.form__footer figure svg {
	inline-size: 18px;
	aspect-ratio: 1;
}

.comment {
	padding-bottom: 50px;
	margin-top: 70px;
	border-top: 4px solid #193166;
}

.comment .title {
	margin-top: 70px;
}

.comment__button {
	color: #00283b;
	padding: 20px;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid #00283b;
	margin: 40px auto;
}

.comment__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	margin-top: 10px;
	border-top: 1px solid #d8d8d8;
	padding-top: 10px;
}

.comment__item--1 {
	padding-top: 10px;
}

.comment__item figcaption {
	width: calc(100% - 55px);
}

.comment__item figcaption .comment__item {
	border-top: none;
}

.comment__autor {
	font-size: 16px;
}

.comment__ava {
	width: 55px;
}

.comment__txt {
	margin-top: 15px;
}

.comment__img {
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.comment__img img {
	width: 131px;
	margin: 0;
}

.comment__footer {
	margin-top: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.comment__footer a {
	font-size: 16px;
	color: #686868;
	text-decoration: underline;
}

.comment__footer div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.comment__footer div svg {
	inline-size: 24px;
	aspect-ratio: 1;
	margin-right: 5px;
}

.comment__footer div span {
	font-weight: bold;
	font-size: 16px;
	color: #686868;
	margin-right: 30px;
}

.comment__footer div b {
	font-size: 16px;
	color: #686868;
	font-weight: 400;
}

.menu {
	display: none;
}

@media screen and (min-width: 390px) {
 

	.promo .not__txt {
		width: 200px;
		min-width: -10px;
	}

	.promo .not__prods {
		width: 270px;
		margin-top: -15px;
	}

	.promo .prod-serc img {
		width: 169px;
	}

	.promo .table__row .table:last-child .table__column {
		height: 44px;
	}

	.promo .table__row .table__column {
		padding-left: 28px;
	}

	.promo .table__row .table__column::after {
		position: absolute;
		content: '';
		left: 3px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		inline-size: 18px;
		aspect-ratio: 1;
	}

	.promo .table__row .table__column--green:after {
		background: url("data:image/svg+xml,%3Csvg width='41' height='41' viewBox='0 0 41 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20.5' cy='20.5' r='20' fill='%2300C317'/%3E%3Cg clip-path='url(%23clip0_6_553)'%3E%3Cpath d='M31.501 8.49902L16.501 23.499L9.50098 16.499L4.50098 21.499L16.501 33.499L36.501 13.499L31.501 8.49902Z' fill='%23F5FAF4'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6_553'%3E%3Crect width='32' height='32' fill='white' transform='translate(4.50098 4.50098)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ")
			center/contain no-repeat;
	}

	.promo .table__row .table__column--red::after {
		background: url("data:image/svg+xml,%3Csvg width='40' height='41' viewBox='0 0 40 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20.5' r='20' fill='%23DE0000'/%3E%3Cpath d='M35 9.7855L30.7145 5.5L20 16.2145L9.2855 5.5L5 9.7855L15.7145 20.5L5 31.2145L9.2855 35.5L20 24.7855L30.7145 35.5L35 31.2145L24.2855 20.5L35 9.7855Z' fill='%23F9D7D2'/%3E%3C/svg%3E%0A")
			center/contain no-repeat;
	}

	.form .rate .stars img {
		width: 160px;
	}
}

@media screen and (min-width: 425px) {
	.promo .action__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 16px;
		padding: 12px 10px 20px;
	}

	.promo .action__item figcaption {
		margin-top: 0;
	}

	.promo .prod-serc {
		gap: 20px;
	}

	.promo .prod-serc img {
		max-width: 48%;
		width: auto;
		max-height: 588px;
	}

	.promo .prod-serc--doc {
		gap: 0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-right: 39px;
	}

	.promo .prod-serc--doc img:first-child {
		max-width: 456px;
		width: 55%;
	}

	.promo .prod-serc--doc img:last-child {
		max-width: 330px;
		width: 41%;
	}
 
 

	.promo .not__prods {
		width: 60%;
		margin-top: -15px;
	}

	.promo .scales__btn {
		max-width: 316px;
	}

	.promo .table__title {
		max-width: 141px;
	}

	.promo .table__column {
		max-width: 335px;
	}

	.promo .btns .btn {
		max-width: 279px;
		margin: 34px auto 0;
	}
}

@media screen and (min-width: 815px) {
	body {
		font-size: 24px;
	}

	.title {
		font-size: 32px;
	}

	.title--decor {
		font-size: 32px;
	}

	.title .subtitle {
		font-size: 32px;
	}

	.promo h1 {
		font-size: 40px;
	}

	.promo__img figcaption {
		font-size: 18px;
	}

	.promo .other__txt {
		font-size: 58px;
	}

	.promo .action__item img {
		width: 106px;
	}

	.promo .action__item figcaption b {
		font-size: 26px;
	}

	.promo .action__item figcaption p {
		font-size: 24px;
	}

	.promo .note {
		font-size: 24px;
		padding: 10px;
	}

	.promo .note br:first-child {
		display: none;
	}

	.promo .recomend {
		font-size: 24px;
		top: 10px;
	}

	.promo .formula .img span {
		font-size: 33px;
		margin-top: 8px;
	}

	.promo .table {
		font-size: 18px;
	}

	.promo .table__title {
		font-weight: 700;
	}

	.promo .table__row .table__column {
		padding-left: 70px;
	}

	.promo .table__row .table__column::after {
		inline-size: 40px;
		left: 10px;
	}

	.promo .table__headers .table__title {
		font-size: 20px;
	}

	.promo .table__headers .table__column--red img {
		width: 205px;
		/* margin-top: -20px; */
	}

	.promo .table__headers .table__column--red figcaption {
		font-size: 20px;
	}

	.promo .table__headers .table__column--green figcaption {
		font-size: 34px;
	}

	.promo .table__headers .table__column--green img {
		width: 103px;
	}

	.promo .table__column--red::before,
	.promo .table__column--green::before,
	.promo .table__headers .table__column--red,
	.promo .table__headers .table__column--green,
	.promo .table__row:last-child .table__column--red,
	.promo .table__row:last-child .table__column--green {
		border-width: 3px;
	}

	.promo .steps__list figure svg {
		max-width: 112px;
		max-height: 102px;
	}

	.promo .steps__list figure figcaption {
		width: calc(100% - 112px);
	}

	.promo .arrows--txt {
		-webkit-column-gap: 13px;
		-moz-column-gap: 13px;
		column-gap: 13px;
		margin-bottom: 58px;
	}

	.promo .arrows--txt svg {
		inline-size: 45px;
	}

	.promo .arrows--txt p {
		font-size: 43px;
	}

	.promo .scales__popup,
	.promo .btns__popup {
		padding: 20px 10px;
	}

	.promo .scales__popup b,
	.promo .btns__popup b {
		font-size: 30px;
	}

	.promo .hand.left div {
		width: 164px;
		font-size: 32px;
		padding: 18px;
		border-radius: 100px;
		top: -122px;
		left: -13px;
	}

	.promo .hand.right img:last-child {
		width: 60px;
		top: -164px;
	}

	.promo .scales__btn {
		margin-top: 90px;
	}

	.promo .scales__popup {
		margin-top: 80px;
	}

	.promo .burn {
		width: 100%;
		min-width: 570px;
	}

	.promo .burn__popup {
		width: 100%;
		max-width: 570px;
		margin: 58px auto 0;
		font-size: 24px;
		padding: 20px;
	}

	.promo .burn__popup span {
		font-size: 93px;
		margin: 0;
	}

	.promo .burn #progress-container {
		width: 557px;
		height: 63px;
		margin: -15px auto 0;
		border-radius: 20px;
		border-width: 6px;
	}

	.promo .burn #progress-bar {
		border-radius: 15px;
	}

	.promo .burn #discount-button {
		width: 161px;
		margin: 25px auto 0;
		font-size: 32px;
		padding: 15px 20px;
		border-radius: 10px;
		-webkit-box-shadow: 0px 5.2px 0px #474747;
		box-shadow: 0px 5.2px 0px #474747;
	}

	.form {
		padding: 24px 68px;
	}

	.form__header {
		font-size: 32px;
	}

	.form .time-container {
		margin-top: 10px;
	}

	.form .time-container .time {
		width: 122px;
		height: 113px;
	}

	.form .time-container .time span {
		font-size: 62px;
	}

	.form .time-container .time div {
		font-size: 20px;
		margin-top: -5px;
	}

	.form .prod {
		margin-top: 32px;
		width: 100%;
		max-width: 513px;
	}

	.form .prod .sale {
		inline-size: 167px;
		right: -20px;
		top: -32px;
		font-size: 68px;
	}

	.form .price {
		margin-top: 32px;
	}

	.form .price .oldPrice {
		font-size: 42px;
	}

	.form .price .newprice {
		font-size: 66px;
	}

	.form .counter {
		font-size: 40px;
		margin-top: 24px;
	}

	.form .rate {
		margin-top: 24px;
	}

	.form .rate figure {
		gap: 10px;
		padding: 10px;
	}

	.form .rate figure svg {
		inline-size: 24px;
	}

	.form .rate figure figcaption {
		font-size: 24px;
	}

	.form .rate .stars span {
		font-size: 24px;
	}

	.form input,
	.form select {
		margin-top: 24px;
		height: 70px;
		font-size: 24px;
		padding-left: 22px;
	}

	.form button {
		margin-top: 24px;
		width: 100%;
		font-size: 57px;
		font-variant: all-small-caps;
		letter-spacing: -0.05em;
		cursor: pointer;
		-webkit-transition: -webkit-transform 0.3s ease;
		transition: -webkit-transform 0.3s ease;
		transition: transform 0.3s ease;
		transition:
			transform 0.3s ease,
			-webkit-transform 0.3s ease;
	}

	.form button:hover {
		-webkit-transform: scale(0.95);
		-ms-transform: scale(0.95);
		transform: scale(0.95);
	}

	.form__footer {
		margin-top: 24px;
	}

	.form__footer figure {
		border-radius: 16px;
		padding: 2px 10px;
	}

	.form__footer figure svg {
		inline-size: 27px;
	}

	.form__footer figure figcaption {
		font-size: 19px;
	}

	.comment {
		font-size: 16px;
	}

	.comment__img img {
		width: 300px;
	}
}

@media screen and (min-width: 1100px) {
	.promo h1 {
		margin-top: 30px;
	}

	.title {
		margin-top: 70px;
	}

	.promo .table__headers .table__title,
	.promo .table__title {
		width: 141px;
	}

	.promo .table__column--red,
	.promo .table__column--green {
		width: 332px;
	}

	.promo .table__row {
		margin-top: 43px;
	}

	.promo .table__row:last-child {
		margin-top: 33px;
	}

	.header .container {
		width: 100%;
		max-width: 1423px;
	}

	.grid {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.grid__center {
		width: 846px;
	}

	.grid__center .promo .container {
		width: 100%;
		padding: 0;
	}

	.grid__right {
		display: block;
	}

	.grid__right,
	.grid__left {
		width: 197px;
	}

	.grid__right .title,
	.grid__left .title {
		font-size: 26px;
		font-weight: 900;
		border-bottom: 4px solid #1db0d5;
		padding: 29px 0 7px;
		color: #00283b;
		margin-bottom: 30px;
		text-transform: capitalize;
		text-align: center;
		margin-top: 30px;
	}

	.grid__right figure,
	.grid__left figure {
		margin-top: 20px;
	}

	.grid__right figure:last-child,
	.grid__left figure:last-child {
		padding-bottom: 30px;
		border-bottom: 4px solid #1db0d5;
	}

	.grid__right figure figcaption,
	.grid__left figure figcaption {
		font-size: 11px;
		font-weight: 600;
		color: #2d5d75;
	}

	.grid__right figure figcaption p,
	.grid__left figure figcaption p {
		margin-top: 5px;
		font-size: 8px;
		color: #2d5d75;
		margin-bottom: 8px;
		text-transform: uppercase;
	}
}

@media screen and (min-width: 1300px) {
	.grid__left {
		display: block;
		width: 197px;
	}

	.header .logo {
		-webkit-column-gap: 10px;
		-moz-column-gap: 10px;
		column-gap: 10px;
	}

	.menu {
		display: block;
	}

	.menu .container {
		max-width: 1423px;
	}

	.menu ul {
		margin-top: 14px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-size: 18px;
		color: #00283b;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-column-gap: 21px;
		-moz-column-gap: 21px;
		column-gap: 21px;
	}

	.menu ul li:not(:last-child) {
		position: relative;
	}

	.menu ul li:not(:last-child)::before {
		position: absolute;
		content: '';
		width: 3px;
		height: 3px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		right: -12px;
		background: #00283b;
		border-radius: 50%;
	}
}

@media (min-width: 1100px) {
	.promo .prod-serc--doc img:first-child {
		width: 55%;
		max-width: 467px;
	}
}
.promo .steps__list figure figcaption b {
	display: block;
}