@font-face {
	font-family: 'Manrope';
	src: url(../fonts/Manrope.ttf);
}

:root {
	--main_pay: #e5e7e9;
	--main_block: #fff;
	--other_block: #e5e7e9;
	--main_font: #000;
	--color_s: rgb(0, 0, 0);
	--color_textline: #000;
	--color_icons: #000;
	--circle_price_fill: #f5f5f5;
}

.dark {
	--main_pay: #121212;
	--main_block: #1d1d1d;
	--other_block: #292929;
	--main_font: #e5e7e9;
	--color_s: rgb(255, 255, 255);
	--color_textline: #fff;
	--color_icons: #fff;
	--circle_price_fill: #343438;
}

* {
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--main_pay);
	width: 100%;
}

.pay_main_block {
	display: flex;
	width: 100%;
	padding: 0 60px 60px 60px;
}

.pay_main_block .left {
	width: calc(100% - 300px - 16px);
	margin-right: 16px;
}

.pay_main_block .left .left_main_block {
	width: 100%;
	background-color: var(--main_block);
	border-radius: 28px;
	padding: 64px;
}

.pay_main_block .left .left_main_block .other_leftblock {
	width: 100%;
	border-radius: 28px;
	background-color: var(--other_block);
	margin-top: 54px;
	padding: 16px 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.other_leftblock .right_dop {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.other_leftblock .right_dop .h1_auto {
	font-family: 'Manrope', Helvetica;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
}

.other_leftblock .right_dop .h3_auto {
	font-family: 'Manrope', Helvetica;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	margin: 0;
}

.other_leftblock .promo_input {
	color: var(--main_font);
	font-family: 'Manrope', Helvetica;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;

	float: center;
	width: 295px;
	height: 71px;
	padding: 0 20px;
	align-items: center;
	gap: 12px;
	flex: 1 0 0;
	border-radius: 100px;
	border: none;
	outline: none;
	background: var(--main_block);
	text-align: center;
}

.other_leftblock .promo_input::placeholder {
	text-decoration: underline;
	text-align: center;
}

.left .left_main_block h1 {
	font-family: 'Manrope', Helvetica;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	color: var(--main_font);
	margin-bottom: 32px;
}

.left .left_main_block p {
	font-family: 'Manrope', Helvetica;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	color: var(--main_font);
}

.left .left_main_block .checkbox-month_block {
	position: relative;
	float: right;
}

.left .left_main_block .checkbox-month_block .sale {
	position: absolute;
	width: max-content;
	background-color: #abe847;
	right: 10px;
	top: -10px;
	border-radius: 100px;
	z-index: 6;
	padding: 5px 8px;

	font-family: 'Manrope', Helvetica, sans-serif;
	font-size: 10px;
	font-weight: 400;
	margin: 0;
}

.price_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.price_list > .price_block {
	position: relative;
	width: 30%;
	background: var(--other_block);
	color: #000;
	border-radius: 28px;
	margin-top: 54px;
	padding: 20px 20px 30px 20px;
	cursor: pointer;
}

.price_list > .price_block h1 {
	font-family: 'Manrope', Helvetica;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	color: var(--main_font);
	background-color: var(--main_block);
	border-radius: 28px;
	width: max-content;
	padding: 8px 20px;
	margin: 0;
}

.price_list > .price_block h1 span {
	font-size: 16px;
	font-weight: 400;
}

.price_list > .price_block .circle_price {
	position: absolute;
	width: 20px;
	height: 20px;
	right: 20px;
	top: 20px;
}

.price_list > .price_block .img-svg circle {
	fill: #f5f5f5;
}

.price_list > .price_block .price {
	font-family: 'Manrope', Helvetica;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	color: var(--main_font);
	line-height: 1;
}

.price_list > .price_block .plus_icon {
	width: 32px;
	height: 32px;
	background-color: #fff;
	border-radius: 100px;
	font-family: 'Manrope', Helvetica;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	color: #000;
	text-align: center;
	justify-content: center;
	text-align: center;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
	cursor: pointer;
}

.price_list > .price_block .plus_icon:hover {
	background-color: #abe847;
}

.price_list > .price_block .count_block {
	width: max-content;
	height: max-content;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 8px;
	gap: 5px;
}

.price_list > .price_block .count_block h1 {
	font-family: 'Manrope', Helvetica;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
}

.left .left_bottom_block {
	width: 100%;
	background-color: var(--main_block);
	border-radius: 28px;
	margin-top: 16px;
	padding: 64px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.left .left_bottom_block .text_line {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	padding: 5px;
	cursor: pointer;
}

.left .left_bottom_block .text_line:hover p {
	color: var(--color_textline);
	opacity: 1;
}

.left .left_bottom_block .text_line .img-svg circle {
	stroke: var(--color_icons);
}

.left .left_bottom_block .text_line:hover .img-svg circle {
	stroke: var(--color_icons);
	stroke-opacity: 1;
}

.left .left_bottom_block .text_line .img-svg path {
	stroke: var(--color_icons);
}

.left .left_bottom_block .text_line:hover .img-svg path {
	stroke: var(--color_icons);
	stroke-opacity: 1;
}

.left .left_bottom_block .text_line .faq_icon .img-svg rect {
	stroke: var(--color_icons);
}

.left .left_bottom_block .text_line:hover .faq_icon .img-svg rect {
	stroke: var(--color_icons);
	stroke-opacity: 1;
}

.svg_circle .img-svg .rect_1 rect {
	fill: #000;
}

.left .left_bottom_block .text_line img {
	width: 24px;
	height: 24px;
}

.left .left_bottom_block .text_line p {
	font-family: 'Manrope', Helvetica;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	color: var(--color_textline);
	opacity: 0.4;
	margin: 0;
	padding: 0;
}

.left .left_bottom_block .text_line .add_week {
	font-family: 'Manrope', Helvetica;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	color: #000;
	background-color: #abe847;
	padding: 4px 8px;
	border-radius: 8px;
}

.pay_main_block .right {
	width: 300px;
}

.pay_main_block .right .up {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 28px;
	margin-bottom: 16px;
	font-family: 'Manrope', Helvetica;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	color: #000;
	padding: 30px;
}

.pay_main_block .right .down {
	position: relative;
	width: 100%;
	background-color: #fff;
	border-radius: 28px;
}

.up span {
	font-size: 24px;
}

.up p {
	font-family: 'Manrope', Helvetica;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	color: #000;
	margin-bottom: 0;
}

.up .emoji_bg_block {
	position: absolute;
	right: 30px;
	top: -30px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 100px;
	border: 4px solid var(--main_pay);
	text-align: center;
}

.up .emoji_bg_block img {
	width: 40px;
	height: 40px;
	margin-top: -11px;
}

.text_block {
	width: 100%;
	padding: 30px;
}

.text_block h1 {
	font-family: 'Manrope', Helvetica;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	color: #000;
	margin-bottom: 0;
}

.text_block ul {
	padding: 0;
	margin: 0;
	margin-top: 30px;
}

.text_block li {
	list-style: none; /* Убираем исходные маркеры */
	background: url(../img/check.svg) no-repeat 0 50%; /* Параметры фона */
	padding-left: 30px;
	font-family: 'Manrope', Helvetica;
	font-size: 14px;
	margin-bottom: 20px;
}

.text_block li:last-child {
	margin-bottom: 0;
}

.price_list > .price_block_select123:hover {
	background-color: var(--main_block);
}

.price_list > .price_block_select123 {
	border: 1px solid #3f3f3f;
}

.price_block {
	width: 100%;
	position: relative;
	padding: 20px 30px;
	bottom: 0;
	top: auto;
	background-color: #abe847;
	border-radius: 28px;
}

.price_block p {
	font-family: 'Manrope', Helvetica;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	color: #000;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

.price_block p span {
	font-size: 14px;
}

.price_block .btn_buy {
	width: 100%;
	height: 48px;
	background-color: #000;
	border-radius: 100px;
	color: #fff;
	font-family: 'Manrope', Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 500;
	justify-content: center;
	text-align: center;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
	cursor: pointer;
}

/* Header */
.header_pay {
	width: 100%;
	padding: 42px 60px;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-ms-flex-align: start;
	-webkit-align-items: start;
	-webkit-box-align: start;
	align-items: start;
	justify-content: space-between;
}

.header_pay .frame-18 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	flex: 1;
	flex-grow: 1;
	text-align: center;
	margin-left: 50px;
}

.header_pay .text-wrapper-18 {
	font-weight: 700;
	color: rgb(var(--black_color-rgb));
	font-size: 40px;
	letter-spacing: 0.2px;
	line-height: 1;
	position: relative;
	font-family: 'Manrope', Helvetica;
	text-align: left;
}

.header_pay .logo_left {
	font-family: 'Manrope', Helvetica;
	font-weight: 700;
	color: var(--main_font);
	font-size: 24px;
}

.frame-19 {
	right: 0;
}

.header_pay .p {
	position: relative;
	align-self: stretch;
	font-family: 'Manrope', Helvetica;
	font-weight: 500;
	color: rgb(var(--black_color-rgb));
	font-size: 16px;
	letter-spacing: 0.16px;
	line-height: normal;
	text-align: left;
}

.header_pay .frame-24 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 5px 16px 5px 5px;
	position: relative;
	flex: 0 0 auto;
	background-color: #ffffff;
	border-radius: 100px;
	box-shadow: 0px 30px 64px -32px rgba(0, 0, 0, 0.03);
	cursor: pointer;
}

.header_pay .img-2 {
	width: 38px;
	height: 38px;
	position: relative;
	flex: 0 0 auto;
	border-radius: 100px;

	background-position: 50% 50%;
}

.header_pay .text-wrapper-20 {
	width: fit-content;
	margin-top: -1px;
	font-weight: 500;
	color: rgb(0, 0, 0);
	font-size: 14px;
	letter-spacing: 0;
	line-height: normal;
	position: relative;
	font-family: 'Manrope', Helvetica;
}

.header_pay .icon-9 {
	position: relative;
	width: 16px;
	height: 16px;
}

.header_pay .frame-21 {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	position: relative;
	flex: 0 0 auto;
}

.header_pay .frame-22 {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 4px;
	position: relative;
	flex: 0 0 auto;
}

/* Checkbox */
.checkbox-month {
	display: inline-block;
	height: 28px;
	line-height: 28px;
	position: relative;
	vertical-align: middle;
	font-size: 14px;
	user-select: none;
}
.checkbox-month .checkbox-month-switch {
	display: inline-block;
	height: 50px;
	width: 200px;
	box-sizing: border-box;
	position: relative;
	border-radius: 100px;
	background: var(--other_block);
	transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
}
.checkbox-month .checkbox-month-switch:before {
	content: attr(data-label-on);
	display: inline-block;
	box-sizing: border-box;
	width: 100px;
	padding: 0 12px;
	position: absolute;
	top: 0;
	left: 100px;
	text-align: center;
	color: var(--main_font);
	font-family: 'Manrope', Helvetica;
	font-size: 12px;
	line-height: 50px;
}
.checkbox-month .checkbox-month-switch:after {
	content: attr(data-label-off);
	display: inline-block;
	box-sizing: border-box;
	width: 99px;
	border-radius: 1px;
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 5;
	text-align: center;
	background: #89abf6;
	line-height: 42px;
	font-family: 'Manrope', Helvetica;
	font-size: 12px;
	color: #fff;
	transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
	border-radius: 100px;
}
.checkbox-month input[type='checkbox'] {
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.checkbox-month input[type='checkbox']:checked + .checkbox-month-switch {
	background-color: var(--other_block);
}
.checkbox-month input[type='checkbox']:checked + .checkbox-month-switch:before {
	content: attr(data-label-off);
	left: 0;
}
.checkbox-month input[type='checkbox']:checked + .checkbox-month-switch:after {
	content: attr(data-label-on);
	color: #fff;
	left: -4px;
	transform: translate3d(99px, 0, 0);
}

/* Hover */
.checkbox-month
	input[type='checkbox']:not(:disabled)
	+ .checkbox-month-switch:hover {
	cursor: pointer;
}

/* Disabled */
.checkbox-month input[type='checkbox']:disabled + .checkbox-month-switch {
	opacity: 0.6;
	filter: grayscale(50%);
}

/* Focus */
.checkbox-month.focused .checkbox-month-switch:after {
	box-shadow: inset 0px 0px 4px #ff5623;
}

/* switch */
/* The switch - the box around the slider */
.switch_auto {
	position: relative;
	display: inline-block;
	min-width: 44px;
	max-width: 44px;
	height: 24px;
}

/* Hide default HTML checkbox */
.switch_auto input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: '';
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

s {
	color: rgb(var(--color_s));
	opacity: 0.4;
}

input:checked + .slider {
	background-color: #89abf6;
}

input:focus + .slider {
	box-shadow: 0 0 1px #89abf6;
}

input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.plus_icon_mob {
	display: none;
}

@media screen and (max-width: 1400px) {
	.price_list > .price_block {
		position: relative;
		width: 48%;
		background: var(--main_pay);
		color: var(--main_font);
		border-radius: 28px;
		margin-top: 54px;
		padding: 20px 20px 30px 20px;
		cursor: pointer;
	}
}

@media screen and (max-width: 1300px) {
	.other_leftblock .right_dop {
		margin-top: 16px;
	}
}

@media screen and (max-width: 1200px) {
	.price_list > .price_block {
		position: relative;
		width: 100%;
		background: var(--main_pay);
		color: var(--main_font);
		border-radius: 28px;
		margin-top: 54px;
		padding: 20px 20px 30px 20px;
		cursor: pointer;
	}
}

@media screen and (max-width: 870px) {
	.header_pay {
		display: none;
	}

	.pay_main_block {
		display: block;
		width: 100%;
		padding: 14px;
	}

	.pay_main_block .left {
		width: 100%;
	}

	.pay_main_block .left .left_main_block {
		width: 100%;
		background-color: var(--main_block);
		border-radius: 28px;
		padding: 24px;
	}

	.left .left_main_block h1 {
		font-family: 'Manrope', Helvetica;
		font-size: 30px;
		font-style: normal;
		font-weight: 600;
		color: var(--main_font);
		margin-bottom: 16px;
		line-height: 1.2;
		padding: 0;
	}

	.left .left_main_block p {
		font-family: 'Manrope', Helvetica;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		color: var(--main_font);
		margin-bottom: 54px;
	}

	.left .left_main_block .checkbox-month_block {
		position: relative;
		float: inline-start;
		left: 50%;
		transform: translateX(-50%);
	}

	.price_list > .price_block {
		position: relative;
		width: 48%;
		background: var(--main_pay);
		color: var(--main_font);
		border-radius: 28px;
		margin-top: 54px;
		padding: 14px;
		cursor: pointer;
	}

	.price_list > .price_block .count_block {
		width: max-content;
		height: max-content;
		display: flex;
		display: -ms-flexbox;
		display: -webkit-flex;
		-ms-flex-align: center;
		-webkit-align-items: center;
		-webkit-box-align: center;
		align-items: center;
		margin-bottom: 0;
		margin-top: 8px;
		gap: 5px;
		float: left;
		margin-left: 50%;
		transform: translateX(-50%);
	}

	.price_list > .price_block .count_block h1 {
		padding: 5px 10px;
		margin-top: 15px;
	}

	.price_list > .price_block .price {
		font-family: 'Manrope', Helvetica;
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		color: var(--main_font);
		line-height: 1;
		margin-bottom: 6px;
	}

	.price_list > .price_block .plus_icon {
		display: none;
	}

	.pay_main_block .left .left_main_block .other_leftblock {
		width: 100%;
		border-radius: 28px;
		background-color: var(--main_pay);
		margin-top: 48px;
		padding: 16px;
		display: block;
	}

	.other_leftblock .promo_input {
		color: var(--main_font);
		font-family: 'Manrope', Helvetica;
		font-size: 14px;
		font-style: normal;
		font-weight: 500;

		width: 100%;
		height: 71px;
		align-items: center;
		gap: 12px;
		flex: 1 0 0;
		border-radius: 100px;
		border: none;
		outline: none;
		background: var(--main_block);
		text-align: center;
		margin: 0;
	}

	.other_leftblock .right_dop {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		margin-top: 28px;
	}

	.other_leftblock .right_dop .switch_auto {
		flex-grow: 2;
	}

	.other_leftblock .right_dop .text_auto {
		flex-grow: 0;
	}

	.other_leftblock .right_dop .h1_auto {
		font-family: 'Manrope', Helvetica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		margin-bottom: 8px;
	}

	.left .left_bottom_block {
		width: 100%;
		background-color: var(--main_block);
		border-radius: 28px;
		margin-top: 16px;
		padding: 16px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.pay_main_block .right {
		width: 100%;
	}

	.pay_main_block .right .up {
		position: relative;
		width: 100%;
		background-color: #fff;
		border-radius: 28px;
		margin-bottom: 16px;
		font-family: 'Manrope', Helvetica;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		color: #000;
		padding: 30px;
		margin-top: 32px;
	}

	.left .left_bottom_block .text_line {
		display: flex;
		flex-wrap: nowrap;
		gap: 16px;
		align-items: center;
		padding: 5px;
		cursor: pointer;
	}

	.plus_icon_mob_block {
		position: absolute;
		bottom: -16px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		flex-wrap: nowrap;
		gap: 5px;
	}

	.price_list > .price_block .plus_icon_mob {
		width: 32px;
		height: 32px;
		background-color: var(--main_block);
		border-radius: 100px;
		font-family: 'Manrope', Helvetica;
		font-size: 32px;
		font-style: normal;
		font-weight: 400;
		color: var(--main_font);
		text-align: center;
		justify-content: center;
		text-align: center;
		display: flex;
		display: -ms-flexbox;
		display: -webkit-flex;
		-ms-flex-align: center;
		-webkit-align-items: center;
		-webkit-box-align: center;
		align-items: center;
		cursor: pointer;
		border: 4px solid var(--main_pay);
	}

	.price_list > .price_block .plus_icon_mob:hover {
		background-color: #abe847;
	}
}
