html {
	font-family: "Inter", sans-serif;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline
}

audio:not([controls]) {
	display: none;
	height: 0
}

[hidden],
template {
	display: none !important
}

a {
	background: rgba(0, 0, 0, 0)
}

a:active,
a:hover {
	outline: 0
}

abbr[title] {
	border-bottom: 1px dotted
}

b,
strong {
	font-weight: bold
}

dfn {
	font-style: italic
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

mark {
	background: #ff0;
	color: #000
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sup {
	top: -0.5em
}

sub {
	bottom: -0.25em
}

img {
	border: 0
}

svg:not(:root) {
	overflow: hidden
}

figure {
	margin: 1em 40px
}

hr {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0
}

pre {
	overflow: auto
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0
}

button {
	overflow: visible
}

button,
select {
	text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	appearance: button;
	cursor: pointer
}

button[disabled],
html input[disabled] {
	cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0
}

input {
	line-height: normal
}

input[type=checkbox],
input[type=radio] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto
}

input[type=search] {
	-webkit-appearance: textfield;
	appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

legend {
	border: 0;
	padding: 0
}

textarea {
	overflow: auto
}

optgroup {
	font-weight: bold
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

td,
th {
	padding: 0
}

* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	outline: none
}

:root {
	--balck: #121212;
	--gray: #A0A0A0;
	--wh-60: rgba(255, 255, 255, .5);
	--fade: #FFFFFF0A;
	--prime: #FFC148;
	--bg: rgba(255, 255, 255, .04);
	--red: #FF4242;
	
	/* Region dropdown design tokens */
	--region-btn-width: 130px;
	--region-btn-height: 36px;
	--region-btn-font-size: 16px;
	--region-btn-opacity: 0.85;
	--region-btn-opacity-hover: 1;
	--region-spinner-size: 16px;
	--region-spinner-border: 2px;
	--region-dropdown-max-height: 235px;
	--region-dropdown-width: 120px;
	--region-transition: 0.3s ease;
}

body {
	min-height: 100vh;
	font-size: 16px;
	color: #fff;
	background-color: var(--balck);
	font-family: "Inter", sans-serif;
	position: relative;
	z-index: 1
}

body::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .7);
	z-index: -1;
	opacity: 0;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	pointer-events: none
}

body[data-overlay=true] {
	overflow: hidden
}

body[data-overlay=true]::after {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	z-index: 999
}

@media screen and (max-width: 992px) {
	body[data-overlay=true] .header {
		z-index: unset
	}
}

body.is_active {
	overflow: hidden
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
	margin-bottom: 0
}

.container,
.lk-container {
	max-width: 1420px;
	width: -webkit-calc(100% - 30px);
	width: -moz-calc(100% - 30px);
	width: calc(100% - 30px);
	margin: 0 auto
}

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

.pt-0 {
	padding-top: 0 !important
}

hr {
	height: 1px;
	background-color: hsla(0, 0%, 100%, .05)
}

a,
button {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s;
	background-color: rgba(0, 0, 0, 0)
}

a:hover,
a.active,
button:hover,
button.active {
	color: var(--prime)
}

a:hover .ic,
a.active .ic,
button:hover .ic,
button.active .ic {
	fill: var(--prime)
}

a:active,
button:active {
	opacity: 1;
	-webkit-transform: scale(0.98);
	-moz-transform: scale(0.98);
	-ms-transform: scale(0.98);
	-o-transform: scale(0.98);
	transform: scale(0.98)
}

.fill img,
.nav__ic img {
	-webkit-filter: brightness(10);
	filter: brightness(10);
	opacity: .7
}

.fill:hover,
.nav__ic:hover {
	opacity: 1
}

h1,
.h1 {
	font-weight: 600;
	font-size: 40px;
	line-height: 120%;
	margin: 0 0 12px
}

.h2,
h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	margin: 0 0 32px;
	text-wrap: balance
}

.word-break {
	word-break: break-all
}

ul {
	list-style: none
}

ul.inform li {
	gap: 8px;
	padding: 8px 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px
}

ul.inform .head {
	color: #898989
}

ul.inform .text {
	gap: 8px;
	max-width: 60%;
	text-align: right;
	margin-left: auto
}

ul.progress {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1
}

ul.progress::before {
	content: "";
	display: block;
	width: 2px;
	top: 12px;
	left: 11px;
	height: -webkit-calc(100% - 24px);
	height: -moz-calc(100% - 24px);
	height: calc(100% - 24px);
	z-index: -1;
	background-color: #242424;
	position: absolute
}

ul.progress li {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	position: relative;
	z-index: 1;
	padding-left: 40px;
	margin-bottom: 12px;
	color: #898989
}

ul.progress li:last-child {
	margin-bottom: 0
}

ul.progress li::after,
ul.progress li::before {
	content: "";
	color: var(--prime);
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	z-index: -1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	opacity: 0
}

ul.progress li::before {
	opacity: 1;
	background-color: #242424
}

ul.progress li::after {
	width: 11px;
	height: 11px;
	left: calc((24px - 11px) / 2);
	top: calc((24px - 11px) / 2);
	background-color: transparent;
	opacity: 0;
}

ul.progress li.active {
	color: #fff
}

ul.progress li.active::before {
	background-color: #242424
}

ul.progress li.active::after {
	opacity: 1;
	background-color: var(--prime)
}

ul.progress[data-status="created"] li[data-step="created"].active {
	color: #898989
}

ul.progress[data-status="created"] li[data-step="created"].active::before {
	background-color: #242424
}

.progress__icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	display: none
}

.progress__icon img {
	width: 100%;
	height: 100%;
	display: block
}

ul.progress li.progress__step--has-icon .progress__icon {
	display: block
}

ul.progress li.progress__step--completed .progress__icon {
	width: 24px;
	height: 24px
}

.progress__icon--pending {
	width: 16px;
	height: 16px;
	background-color: #FFC148;
	border-radius: 50%;
	top: 4px;
	left: 4px
}

.btn {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
	color: var(--balck);
	font-weight: 500;
	min-height: 40px;
	font-size: 16px;
	line-height: 100%;
	padding: 8px 20px;
	background-color: var(--prime);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	border: 1.5px solid var(--prime)
}

.btn img {
	max-width: 24px;
	max-height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.btn:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0)
}

.btn:hover img {
	-webkit-filter: none;
	filter: none
}

.btn__link {
	border: none;
	color: hsla(0, 0%, 100%, .5019607843);
	background-color: rgba(0, 0, 0, 0)
}

.btn-light {
	color: #fff;
	border: none;
	min-height: 48px;
	background-color: hsla(0, 0%, 100%, .08);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px)
}

.btn-outline {
	background-color: rgba(0, 0, 0, 0) !important;
	color: #fff
}

.btn-outline:hover {
	color: var(--prime)
}

.btn-2,
.btn-dark {
	min-height: 48px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px
}

.lk-group .referral-promo .fieldset {
	flex: 1;
	width: auto;
	margin: 0
}

.lk-group .referral-promo .btn.btn-2 {
	height: 62px;
	min-height: 62px;
	max-height: 62px;
	box-sizing: border-box;
	width: auto;
	flex-shrink: 0;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--prime)
}

.btn-dark {
	color: #fff;
	border: none;
	background-color: var(--fade)
}

.btn-dark:hover {
	background-color: hsla(0, 0%, 100%, .04)
}

.quick-btn.active {
	background-color: hsla(0, 0%, 100%, .04)
}

.btn__dell {
	position: relative;
	z-index: 111
}

.btn__dell::before {
	content: "";
	display: block;
	position: absolute;
	left: -10px;
	top: -10px;
	z-index: -1;
	width: -webkit-calc(100% + 20px);
	width: -moz-calc(100% + 20px);
	width: calc(100% + 20px);
	height: -webkit-calc(100% + 20px);
	height: -moz-calc(100% + 20px);
	height: calc(100% + 20px);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease
}

.btn__dell:hover {
	opacity: 1
}

.btn__dell:hover::before {
	background-color: var(--bg)
}

.btn__fav,
.btn__search {
	width: 48px;
	height: 48px;
	background-color: var(--fade);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px
}

.btn__fav:hover,
.btn__search:hover {
	background-color: hsla(0, 0%, 100%, .06)
}

.btn__fav.is_active .ic,
.btn__search.is_active .ic {
	fill: var(--prime)
}

.btn__search .ic {
	width: 20px;
	height: 20px
}

.btn__more {
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-color: var(--fade);
	padding: 4px 16px;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px
}

.btn__play {
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-image: url("../img/btn_play.svg")
}

.btn.--white {
	background-color: #fff;
	border-color: #fff
}

.btn.disabled,
.btn:disabled {
	pointer-events: none;
	background-color: #232323;
	color: var(--gray);
	border-color: #232323
}

.btn.in-cart {
	background: rgba(76, 175, 80, 0.2);
	border-color: #4CAF50;
	color: #4CAF50;
	transition: all 0.3s ease;
}

.btn.in-cart:hover {
	background: rgba(76, 175, 80, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.badge {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	background-color: #ef4444;
	border: 2px solid #121212;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	min-height: 20px;
	min-width: 20px;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	text-align: center
}

.c-red {
	color: var(--red) !important
}

.c-prime {
	color: var(--prime) !important
}

.c-gray {
	color: #858585
}

.c-green {
	color: #41d61c
}

.w-100 {
	width: 100% !important;
	max-width: 100% !important
}

.text-center {
	text-align: center !important
}

.headline {
	gap: 8px;
	margin: 0 0 28px
}

.headline>* {
	margin: 0
}

.arrows {
	gap: 8px
}

.tag {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: #000;
	font-size: 12px;
	text-align: center;
	line-height: 120%;
	padding: 2px 5px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-color: var(--prime)
}

.tag.tag--with-icon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tag__icon {
	width: 16px;
	height: 16px;
	-webkit-filter: brightness(0);
	-moz-filter: brightness(0);
	-o-filter: brightness(0);
	filter: brightness(0);
	opacity: 1
}

.tag.--red {
	color: #fff;
	background-color: var(--red)
}

.tag.--dark {
	color: var(--wh-60);
	background-color: var(--fade)
}

.tag.--md {
	padding: 6px 16px
}

[class^=fx-],
[class^=btn],
[class*=" fx-"],
.lk-nav__link,
.lk-content,
.arrows,
.headline,
.ddown_btn,
.ddown_item,
.price,
body,
.lk-list li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex
}

.fx-col,
body,
.lk-content {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

[class^=btn],
.arrows,
.headline,
.ddown_btn,
.ddown_item,
.lk-nav__link,
.fx-ac,
.btn,
.lk-list li,
.price {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.fx-jb,
.headline,
.lk-list li {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

[class^=btn],
.fx-jc {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.fx-w,
.price {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.fx-w {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.fx-as {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.fx-je {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.fx-js {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.fx-ae {
	-webkit-box-align: end;
	-webkit-align-items: end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: end
}

section,
.section {
	padding: 40px 0
}

.form {
	gap: 8px
}

.form .submit {
	height: 43px;
	min-width: 64px;
	width: 64px;
	-webkit-border-radius: 41px;
	-moz-border-radius: 41px;
	border-radius: 41px;
	background-color: #0e0e0e
}

.form .submit img {
	display: block;
	margin: 0 auto
}

.form__heading {
	padding: 0 16px
}

.form-group {
	--gap: 20px;
	--amm: 4;
	gap: var(--gap);
	margin-bottom: 24px
}

.form-group.fx-w>* {
	margin: 0 !important;
	width: -webkit-calc((100% - var(--gap)*(var(--amm) - 1))/var(--amm)) !important;
	width: -moz-calc((100% - var(--gap)*(var(--amm) - 1))/var(--amm)) !important;
	width: calc((100% - var(--gap)*(var(--amm) - 1))/var(--amm)) !important
}

@media screen and (max-width: 992px) {
	.form-group {
		--gap: 16px;
		--amm: 2;
		margin-bottom: 16px
	}
}

@media screen and (max-width: 700px) {
	.form-group:not(.--last) {
		gap: 4px;
		--amm: 1
	}

	.form-group.--last {
		gap: 8px;
		--gap: 8px
	}
}

input,
select {
	width: 100%;
	background-color: #242424;
	height: 35px;
	-webkit-border-radius: 110px;
	-moz-border-radius: 110px;
	border-radius: 110px;
	padding: 0 16px;
	font-size: 16px;
	font-weight: 300;
	color: #fff
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder {
	color: #fff
}

input:-moz-placeholder,
select:-moz-placeholder {
	color: #fff
}

input::-moz-placeholder,
select::-moz-placeholder {
	color: #fff
}

input:-ms-input-placeholder,
select:-ms-input-placeholder {
	color: #fff
}

input::-ms-input-placeholder,
select::-ms-input-placeholder {
	color: #fff
}

input::placeholder,
select::placeholder {
	color: #fff
}

input:focus,
select:focus {
	color: #fff
}

select {
	padding-right: 34px;
	background-position: center right 16px;
	background-repeat: no-repeat;
	-webkit-background-size: 24px auto;
	-moz-background-size: 24px auto;
	-o-background-size: 24px auto;
	background-size: 24px auto;
	background-image: url("../img/select-arr.svg");
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.fieldset {
	display: block;
	background-color: #1b1b1b;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	position: relative;
	margin: 0 0 12px;
	--inp-padd: 16px;
	border: 1px solid rgba(0, 0, 0, 0);
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	--label-show: 19%;
	--inp-show: 19px
}

.fieldset:focus,
.fieldset:focus-within {
	border-color: var(--prime)
}

.fieldset:focus .ic,
.fieldset:focus-within .ic {
	fill: var(--prime)
}

.fieldset.--icond {
	--inp-padd: 52px
}

.fieldset__icon {
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 16px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 24px
}

.fieldset:not(.--icond) .fieldset__icon {
	right: 16px;
	left: auto
}

.fieldset__label {
	font-size: 16px;
	line-height: 16px;
	display: block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: var(--inp-padd);
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	color: hsla(0, 0%, 100%, .5);
	pointer-events: none
}

.fieldset input,
.fieldset select,
.fieldset .select-wrap,
.fieldset .priceinp.--field,
.fieldset .ddown {
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	padding: var(--inp-show) 16px 0 var(--inp-padd);
	height: 60px;
	background-color: rgba(0, 0, 0, 0)
}

.fieldset .ddown {
	position: relative;
	padding: 0;
	z-index: 1;
}

.fieldset .ddown .ddown_btn {
	width: 100%;
	height: 60px;
	padding: var(--inp-show) 40px 0 var(--inp-padd);
	background-color: transparent;
	border: none;
	text-align: left;
	font-size: 16px;
	line-height: 24px;
	cursor: pointer;
	position: relative;
	display: block;
	z-index: 1;
	color: inherit;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.fieldset .ddown .ddown_btn::after {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.fieldset .ddown.is_active .ddown_btn::after {
	transform: translateY(-50%) scaleY(-1);
}

.fieldset .ddown[data-lk-region-dropdown] {
	z-index: 1000;
}

[data-lk-region-selector] {
	position: relative;
	z-index: 100;
}

.fieldset .ddown .ddown-content {
	position: absolute;
	top: 100%;
	left: 0 !important;
	width: 100%;
	margin-top: 4px;
	z-index: 1000;
	display: none;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}

.fieldset__label--active {
	font-size: 12px !important;
	top: var(--label-show) !important;
	transform: translateY(0%) !important;
}

.fieldset input::-webkit-input-placeholder,
.fieldset select::-webkit-input-placeholder,
.fieldset .select-wrap::-webkit-input-placeholder,
.fieldset .priceinp.--field::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0)
}

.fieldset input:-moz-placeholder,
.fieldset select:-moz-placeholder,
.fieldset .select-wrap:-moz-placeholder,
.fieldset .priceinp.--field:-moz-placeholder {
	color: rgba(0, 0, 0, 0)
}

.fieldset input::-moz-placeholder,
.fieldset select::-moz-placeholder,
.fieldset .select-wrap::-moz-placeholder,
.fieldset .priceinp.--field::-moz-placeholder {
	color: rgba(0, 0, 0, 0)
}

.fieldset input:-ms-input-placeholder,
.fieldset select:-ms-input-placeholder,
.fieldset .select-wrap:-ms-input-placeholder,
.fieldset .priceinp.--field:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0)
}

.fieldset input::-ms-input-placeholder,
.fieldset select::-ms-input-placeholder,
.fieldset .select-wrap::-ms-input-placeholder,
.fieldset .priceinp.--field::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0)
}

.fieldset input::placeholder,
.fieldset select::placeholder,
.fieldset .select-wrap::placeholder,
.fieldset .priceinp.--field::placeholder {
	color: rgba(0, 0, 0, 0)
}

.fieldset input:not(:-moz-placeholder)~label,
.fieldset select:not(:-moz-placeholder)~label,
.fieldset .select-wrap:not(:-moz-placeholder)~label,
.fieldset .priceinp.--field:not(:-moz-placeholder)~label {
	font-size: 12px;
	top: var(--label-show);
	-moz-transform: translateY(0%);
	transform: translateY(0%)
}

.fieldset input:not(:-ms-input-placeholder)~label,
.fieldset select:not(:-ms-input-placeholder)~label,
.fieldset .select-wrap:not(:-ms-input-placeholder)~label,
.fieldset .priceinp.--field:not(:-ms-input-placeholder)~label {
	font-size: 12px;
	top: var(--label-show);
	-ms-transform: translateY(0%);
	transform: translateY(0%)
}

.fieldset input:not(:placeholder-shown)~label,
.fieldset input:focus~label,
.fieldset select:not(:placeholder-shown)~label,
.fieldset select:focus~label,
.fieldset .select-wrap:not(:placeholder-shown)~label,
.fieldset .select-wrap:focus~label,
.fieldset .priceinp.--field:not(:placeholder-shown)~label,
.fieldset .priceinp.--field:focus~label {
	font-size: 12px;
	top: var(--label-show);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%)
}

.fieldset .select {
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
	padding: 8px 0 0;
	width: 100%
}

.fieldset .select::after {
	top: 50%;
	right: 16px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%)
}

.fieldset .select[data-price]::after {
	display: none
}

.link {
	text-decoration: underline;
	-webkit-text-decoration-color: #494949;
	-moz-text-decoration-color: #494949;
	text-decoration-color: #494949
}

.rad {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	cursor: pointer
}

.rad label {
	gap: 6px;
	cursor: pointer;
	padding: 10px;
	min-height: 112px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background-color: var(--bg);
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0)
}

.rad input {
	display: none
}

.rad input:checked~label {
	border-color: var(--prime)
}

.rad__text {
	width: 100%
}

@media screen and (max-width: 700px) {
	.rad label {
		min-height: 90px
	}
}

.radio,
.checkbox {
	position: relative;
	z-index: 1
}

.radio label,
.checkbox label {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	z-index: 1;
	padding-left: 28px;
	font-size: 15px;
	cursor: pointer;
	display: block
}

.radio label::after,
.radio label::before,
.checkbox label::after,
.checkbox label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #858585
}

.radio input,
.checkbox input {
	width: 18px;
	height: 18px;
	left: 0;
	top: 0;
	position: absolute;
	opacity: 0
}

.radio input:checked~label::before,
.checkbox input:checked~label::before {
	border-color: var(--prime)
}

.checkbox label::after {
	display: none
}

.checkbox label::before {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: 120% auto;
	-moz-background-size: 120% auto;
	-o-background-size: 120% auto;
	background-size: 120% auto
}

.checkbox input:checked~label::before {
	background-image: url("../img/check_dark.svg");
	background-color: var(--prime)
}

.radio__heading {
	display: block;
	font-size: 14px;
	line-height: 20px
}

.radio label::after,
.radio label::before {
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%
}

.radio label::after {
	background-color: var(--prime);
	border-color: var(--prime);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0)
}

.radio input:checked~label::after {
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	-ms-transform: scale(0.6);
	-o-transform: scale(0.6);
	transform: scale(0.6)
}

.inp {
	position: relative;
	z-index: 1;
	margin: 0 0 30px;
	max-width: 366px
}

.inp__edit {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 10px 20px;
	right: 0
}

@media screen and (max-width: 720px) {
	.inp {
		margin: 0 0 25px
	}
}

form.inp {
	gap: 8px
}

.dinp {
	margin: 0 0 10px;
	gap: 12px
}

.dinp>* {
	margin: 0
}

.dinp .inp {
	width: 120px
}

.dinp .lk__headline {
	margin-bottom: 10px
}

.dinp .swap {
	margin-bottom: 9px
}

.dinp input {
	text-align: center;
	color: #fff;
	padding: 0 10px
}

.dinp__text {
	font-size: 14px;
	color: #9a9a9a
}

.dinp .fx-ac {
	gap: 10px
}

@media screen and (max-width: 1200px) {
	.lg-hide {
		display: none
	}
}

@media screen and (min-width: 1201px) {
	.lg-show {
		display: none
	}
}

@media screen and (max-width: 991px) {
	.md-hide {
		display: none
	}
}

@media screen and (min-width: 992px) {
	.md-show {
		display: none
	}
}

@media screen and (max-width: 640px) {
	.sm-hide {
		display: none
	}
}

@media screen and (min-width: 641px) {
	.sm-show {
		display: none
	}
}

.select {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select-wrap {
	width: 100%
}

.select-options {
	display: none
}

.select i {
	font-style: normal;
	color: var(--wh-60)
}

.select .from {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select .to {
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-moz-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap
}

main {
	padding-top: 24px;
	padding-bottom: 25px
}

main>*:first-child {
	padding-top: 0
}

.breadcrumbs {
	gap: 8px;
	margin: 0 0 24px
}

.breadcrumbs__link {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px
}

.breadcrumbs li {
	opacity: .3
}

.breadcrumbs li::after {
	content: "·";
	margin: 0 0 0 8px
}

.breadcrumbs li:last-child::after {
	display: none
}

.recomend {
	gap: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px
}

.recomend__btn {
	gap: 8px
}

.recomend__text {
	opacity: .5
}

.recomend__text::before {
	content: "·";
	margin: 0 8px 0 0
}

.ic {
	width: 24px;
	height: 24px;
	fill: var(--wh-60);
	-webkit-transition: .3s ease fill;
	-o-transition: .3s ease fill;
	-moz-transition: .3s ease fill;
	transition: .3s ease fill
}

@media screen and (max-width: 1450px) {

	.container,
	.lk-container {
		max-width: 1240px
	}
}

@media screen and (max-width: 992px) {

	section,
	.section {
		padding: 25px 0
	}

	.h2,
	h2 {
		font-size: 20px;
		margin: 0 0 25px
	}

	.headline {
		margin-bottom: 25px
	}

	.btn {
		border-width: 1px;
		font-size: 14px
	}

	.btn-2 {
		min-height: 42px
	}
}

@media screen and (max-width: 720px) {

	h1,
	.h1 {
		font-size: 24px;
		margin-bottom: 10px
	}

	h2,
	.h2 {
		font-size: 18px;
		margin-bottom: 14px
	}

	.btn-light {
		gap: 7px;
		padding: 6px 18px;
		min-height: 42px
	}

	.btn-light img {
		width: 21px
	}

	.headline {
		margin-bottom: 14px
	}

	section,
	.section {
		padding: 25px 0
	}

	.breadcrumbs {
		margin-bottom: 16px
	}
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: none
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

.slick-slider {
	--gaper: 10px;
	width: -webkit-calc(100% + var(--gaper)*2);
	width: -moz-calc(100% + var(--gaper)*2);
	width: calc(100% + var(--gaper)*2);
	left: -webkit-calc(0px - var(--gaper));
	left: -moz-calc(0px - var(--gaper));
	left: calc(0px - var(--gaper));
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	float: left;
	height: 100%;
	margin: 0 10px;
	min-height: 1px;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.slick-slide img {
	display: block
}

.slick-slide.slick-loading img {
	display: none;
	display: none
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto
}

.slick-arrow.slick-hidden {
	display: none
}

.slick-arrow {
	display: block;
	width: 36px;
	height: 36px;
	border: none;
	color: rgba(0, 0, 0, 0);
	font-size: 0;
	z-index: 999;
	background-color: #252525;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px
}

.slick-arrow::before {
	display: none
}

.slick-prev {
	background-image: url("../img/arr-left.svg")
}

.slick-next {
	background-image: url("../img/arr-right.svg")
}

.slick-dots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none
}

.slick-dots li {
	padding: 20px 4px 4px 4px;
	font-size: 0
}

.slick-dots button {
	width: 11px;
	height: 11px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-size: 0;
	margin: 0;
	background-color: hsla(0, 0%, 100%, .1)
}

.slick-dots .slick-active button {
	background-color: var(--prime)
}

.slick-disabled {
	cursor: no-drop;
	pointer-events: none;
	opacity: .5
}

@media screen and (max-width: 1250px) {
	.slick-slide {
		margin: 0 5px
	}

	.slick-slider {
		--gaper: 15px;
		z-index: 1;
		position: relative
	}

	.slick-list {
		padding: 0 var(--gaper)
	}
}

.header {
	width: 100%;
	padding: 24px 15px;
	margin: 0 auto;
	z-index: 9999;
	background-color: rgba(24, 24, 24, .85);
	gap: 32px
}

.header.--fixed {
	top: 0;
	left: 0;
	position: fixed
}

.header .logo {
	display: block;
	width: 140px;
	margin-right: auto
}

.header.unicode-mode {
	justify-content: center
}

.header.unicode-mode .logo {
	margin-right: 0;
	margin-left: 0
}

.header .logo img {
	width: 100%;
	display: block
}

.header .col {
	gap: 8px
}

.header .nav {
	margin: 0 auto;
	gap: 32px
}

.header .nav .searchbar {
	-webkit-box-flex: 0;
	-webkit-flex: none;
	-moz-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 100%;
	margin-bottom: 10px
}

.header .nav__ic {
	padding: 2px 12px
}

.header .nav__ic img {
	display: block
}

.header .nav__ic:hover {
	opacity: 1
}

.header .nav__link {
	font-size: 16px;
	line-height: 20px;
	white-space: nowrap;
	padding: 2px 0 2px;
	gap: 8px;
	color: var(--gray)
}

.header .nav__link.active {
	color: #fff
}

.header .nav__link--img {
	width: 20px;
	margin-left: 8px
}

.header .nav a.nav__link:hover {
	color: var(--prime);
	opacity: 1
}

.header .nav-right {
	margin-left: auto
}

.header .nav-right .nav__link {
	padding: 2px 12px
}

.header .nav-sec {
	margin-left: auto
}

.header .nav .tag {
	margin-left: 2px
}

.header .btn__menu {
	display: none
}

.header .btn__header {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	padding: 8px;
	position: relative;
	z-index: 1
}

.header .btn__header .badge {
	z-index: 11;
	top: 0;
	right: 0;
	position: absolute
}

.header .btn__search-header {
	display: none;
	background-color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	width: auto;
	height: auto;
	padding: 0;
	margin-right: 8px
}

.header:not(.auth) .btn__search-header {
	min-height: 40px
}

.header .btn__search-header:hover {
	background-color: transparent
}

.header:not(.auth) .btn__search-header .ic {
	width: 24px;
	height: 24px
}

.header.auth .btn__search-header .ic {
	width: 20px;
	height: 20px
}

@media screen and (max-width: 1450px) {
	.header .nav__link {
		gap: 10px
	}

	.header .nav__link--img {
		width: 18px;
		margin: 0
	}
}

@media screen and (max-width: 1200px) {
	.header {
		padding: 15px;
		gap: 16px
	}

	.header .logo {
		min-width: 105px;
		width: 105px;
		margin-right: auto
	}

	.header .nav {
		position: fixed;
		z-index: 999;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		max-width: 310px;
		background-color: #171717;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
		padding: 70px 20px;
		text-align: left;
		-webkit-box-shadow: -320px 0 0 500px rgba(0, 0, 0, .8);
		-moz-box-shadow: -320px 0 0 500px rgba(0, 0, 0, .8);
		box-shadow: -320px 0 0 500px rgba(0, 0, 0, .8);
		-webkit-transition: all ease .3s;
		-o-transition: all ease .3s;
		-moz-transition: all ease .3s;
		transition: all ease .3s;
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%)
	}

	.header .nav>* {
		margin-right: auto
	}

	.header .nav__link {
		display: block;
		padding: 8px !important;
		width: 100%;
		font-size: 14px;
		line-height: 18px
	}

	.header .nav__ic {
		padding: 12px
	}

	.header .nav-right {
		width: 100%;
		display: block !important;
		margin: 0 0 16px;
		padding-bottom: 16px;
		border-bottom: 1px solid hsla(0, 0%, 100%, .1)
	}

	.header .nav .btn {
		width: 100%;
		margin-top: 30px
	}

	.header .nav.is_active {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0%)
	}

	.header .nav-footer {
		width: 100%;
		margin-top: 10px;
		padding-top: 20px;
		border-top: 1px solid hsla(0, 0%, 100%, .1);
		gap: 16px
	}

	.header .tag {
		margin: 0
	}

	.header .user__avatar {
		width: 45px;
		height: 45px;
		border-width: 1px
	}

	.header .btn__menu {
		position: relative;
		margin: 0 0 0 8px;
		z-index: 99999;
		width: 36px;
		height: 40px;
		display: block
	}

	.header .btn__menu span {
		display: block;
		width: 85%;
		height: 1px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		margin: 0 auto;
		background-color: #fff;
		position: relative;
		z-index: 1;
		-webkit-transition: all ease .3s;
		-o-transition: all ease .3s;
		-moz-transition: all ease .3s;
		transition: all ease .3s
	}

	.header .btn__menu span::before,
	.header .btn__menu span::after {
		-webkit-transition: all ease .3s;
		-o-transition: all ease .3s;
		-moz-transition: all ease .3s;
		transition: all ease .3s;
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		position: absolute;
		background-color: #fff;
		left: 0;
		top: 9px
	}

	.header .btn__menu span::after {
		top: -9px
	}

	.header .btn__menu.is_active span {
		background-color: rgba(0, 0, 0, 0)
	}

	.header .btn__menu.is_active span::before {
		top: 0;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg)
	}

	.header .btn__menu.is_active span::after {
		top: 0;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}
}

@media screen and (max-width: 992px) {
	.header .btn__search-header {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.header .nav-footer .btn__search {
		display: none
	}
}

@media screen and (max-width: 360px) {
	.header .logo {
		min-width: 90px;
		width: 90px
	}

	.header .nav__ic {
		padding: 10px
	}

	.header .user__avatar {
		width: 40px;
		height: 40px
	}
}

.searchbar {
	position: relative;
	z-index: 999999;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.searchbar .ic,
.searchbar__clean {
	position: absolute;
	top: 50%;
	left: 17px;
	width: 16px;
	height: 16px;
	z-index: 111;
	-webkit-transform: translateY(-50%) !important;
	-moz-transform: translateY(-50%) !important;
	-ms-transform: translateY(-50%) !important;
	-o-transform: translateY(-50%) !important;
	transform: translateY(-50%) !important
}

.searchbar:focus-within .ic {
	opacity: 1;
	fill: var(--prime)
}

.searchbar__input {
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	box-sizing: border-box !important;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 48px;
	padding: 0 0 0 48px;
	position: relative;
	z-index: 1;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease
}

.searchbar__input::-webkit-input-placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.searchbar__input:-moz-placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.searchbar__input::-moz-placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.searchbar__input:-ms-input-placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.searchbar__input::-ms-input-placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.searchbar__input::placeholder {
	color: hsla(0, 0%, 100%, .5)
}

.searchbar__clean {
	display: none;
	left: auto;
	right: 44px;
	width: 32px;
	font-size: 20px;
	line-height: 20px;
	height: 100%;
	text-align: center
}

.search-filter-btn {
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	opacity: 0.6;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 12;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.search-filter-btn:hover,
.search-filter-btn.active {
	opacity: 1;
	background-color: rgba(255, 193, 72, 0.1);
	-webkit-transform: translateY(-50%) scale(1.1);
	-moz-transform: translateY(-50%) scale(1.1);
	-ms-transform: translateY(-50%) scale(1.1);
	-o-transform: translateY(-50%) scale(1.1);
	transform: translateY(-50%) scale(1.1)
}

.search-filter-btn img {
	width: 18px;
	height: 18px;
	-webkit-filter: brightness(0) saturate(100%) invert(100%);
	filter: brightness(0) saturate(100%) invert(100%);
	-webkit-transition: filter 0.3s ease;
	-o-transition: filter 0.3s ease;
	-moz-transition: filter 0.3s ease;
	transition: filter 0.3s ease
}

.search-filter-btn:hover img,
.search-filter-btn.active img {
	-webkit-filter: brightness(0) saturate(100%) invert(66%) sepia(76%) saturate(466%) hue-rotate(6deg) brightness(102%) contrast(96%);
	filter: brightness(0) saturate(100%) invert(66%) sepia(76%) saturate(466%) hue-rotate(6deg) brightness(102%) contrast(96%)
}

@media screen and (max-width: 768px) {
	.search-filter-btn {
		width: 20px;
		height: 20px;
		right: 20px
	}
	
	.search-filter-btn img {
		width: 16px;
		height: 16px
	}
	
	.searchbar__clean {
		right: 40px;
		width: 28px
	}
}

.searchbar-content {
	width: -webkit-calc(100% - 32px);
	width: -moz-calc(100% - 32px);
	width: calc(100% - 32px);
	position: absolute;
	top: -webkit-calc(100% + 12px);
	top: -moz-calc(100% + 12px);
	top: calc(100% + 12px);
	left: 16px;
	padding: 4px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: #1b1b1b;
	display: none
}

.searchbar.--active {
	position: fixed;
	width: 70%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 24px;
	left: 50%;
	z-index: 99999
}

@media screen and (max-width: 992px) {
	.searchbar {
		position: fixed;
		top: 16px;
		left: 16px;
		width: -webkit-calc(100% - 32px);
		width: -moz-calc(100% - 32px);
		width: calc(100% - 32px);
		visibility: hidden;
		-webkit-transform: translateY(-10%);
		-moz-transform: translateY(-10%);
		-ms-transform: translateY(-10%);
		-o-transform: translateY(-10%);
		transform: translateY(-10%);
		opacity: 0
	}

	.searchbar.active {
		visibility: visible;
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1
	}

	.searchbar-content {
		width: 100%;
		left: 0
	}
}

.select.active {
	position: relative;
}

.fieldset {
	position: relative;
}

.priceinp-cont,
.select-options,
.ddown-content {
	display: none;
	z-index: 10;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 105%;
	width: 100%;
	padding: 6px;
	overflow: hidden;
	min-width: 150px;
	position: absolute;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: #272626;
	border: 1px solid #2d2d2d
}

.select-options,
.ddown-content {
	max-height: 220px;
	overflow-y: auto
}

.select-options img,
.ddown-content img {
	width: 20px;
	height: 20px;
	margin-right: 2px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%
}

.select-options>*,
.ddown-content>* {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	gap: 8px;
	width: 100%;
	cursor: pointer;
	min-width: unset;
	padding: 7px 15px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background-color: rgba(0, 0, 0, 0);
	border-bottom: 1px solid #2d2d2d;
	background-repeat: no-repeat;
	background-position: center right 12px;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.select-options>*:last-child,
.ddown-content>*:last-child {
	padding-bottom: 5px;
	border: none
}

.select-options>*:hover,
.ddown-content>*:hover {
	background-color: hsla(0, 0%, 100%, .06)
}

.select-options>*.selected,
.select-options>*[selected],
.ddown-content>*.selected,
.ddown-content>*[selected] {
	background-color: var(--bg);
	background-image: url("../img/check.svg")
}

.select-options--with-search {
	padding-top: 0;
}

.select-options .select-search-item {
	display: block !important;
	padding: 12px 14px;
	border-bottom: 1px solid #2d2d2d;
	cursor: default;
	background-color: transparent;
}

.select-options .select-search-item:hover {
	background-color: transparent;
}

.select-search__box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 10px;
	background-color: #201f1f;
	border: 1px solid #2d2d2d;
}

.select-options .select-search__input {
	flex: 1;
	width: 100%;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 14px;
	line-height: 36px;
	outline: none;
	min-width: 0;
	height: 36px;
	min-height: 36px;
	margin: 0;
	padding: 0;
	display: block;
}

.select-search__input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .55);
}

.select-search__input::-moz-placeholder {
	color: rgba(255, 255, 255, .55);
}

.select-search__input:-ms-input-placeholder {
	color: rgba(255, 255, 255, .55);
}

.select-search__input::placeholder {
	color: rgba(255, 255, 255, .55);
}

.select-search__clear {
	width: 20px;
	height: 20px;
	padding: 0;
	border: none;
	background: none;
	color: rgba(255, 255, 255, .6);
	font-size: 18px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease, color .2s ease;
}

.select-search__clear::before {
	content: "×";
	display: block;
	-webkit-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	transform: translateY(-1px);
}

.select-search__clear.is-visible {
	opacity: .8;
	pointer-events: auto;
}

.select-search__clear.is-visible:hover {
	color: #fff;
	opacity: 1;
}

.select-empty {
	display: none;
	padding: 12px 16px;
	font-size: 14px;
	color: rgba(255, 255, 255, .55);
	cursor: default;
}

.select-empty:hover {
	background-color: transparent;
}


.select__icon {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%
}

.select,
.ddown_btn {
	gap: 8px;
	padding: 8px;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px
}

.select::after,
.ddown_btn::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-image: url("../img/ar-down.svg");
	z-index: 111;
	margin-left: auto
}

.priceinp {
	width: 100%;
	height: 100%;
	position: relative
}

.fieldset .priceinp {
	width: 100%;
	min-width: 0
}

.fieldset .priceinp > .select {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	width: 100%;
	min-width: 0;
	height: 60px;
	gap: 8px;
}

.priceinp .select {
	height: 100%;
	width: 100%
}

.priceinp-cont {
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, 10%);
	-moz-transform: translate(-50%, 10%);
	-ms-transform: translate(-50%, 10%);
	-o-transform: translate(-50%, 10%);
	transform: translate(-50%, 10%);
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease
}

.priceinp-cont.active {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, 0%);
	-moz-transform: translate(-50%, 0%);
	-ms-transform: translate(-50%, 0%);
	-o-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%)
}

.priceinp input {
	padding: 0 0 0 16px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0
}

.priceinp input:first-child {
	border-right: 1px solid hsla(0, 0%, 100%, .1)
}

.priceinp input::-webkit-input-placeholder {
	color: hsla(0, 0%, 100%, .8)
}

.priceinp input:-moz-placeholder {
	color: hsla(0, 0%, 100%, .8)
}

.priceinp input::-moz-placeholder {
	color: hsla(0, 0%, 100%, .8)
}

.priceinp input:-ms-input-placeholder {
	color: hsla(0, 0%, 100%, .8)
}

.priceinp input::-ms-input-placeholder {
	color: hsla(0, 0%, 100%, .8)
}

.priceinp input::placeholder {
	color: hsla(0, 0%, 100%, .8)
}

.ddown {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.ddown.is_active .ddown_btn::after {
	-webkit-transform: scaleY(-1);
	-moz-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	transform: scaleY(-1)
}

.ddown.is_active::before {
	-webkit-transform: scaleY(-1);
	-moz-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	transform: scaleY(-1)
}

.ddown_btn {
	gap: 8px;
	padding: 8px;
	cursor: pointer
}

/* Region dropdown component - scalable and reusable */
.ddown_btn.region-btn {
	width: var(--region-btn-width);
	height: var(--region-btn-height);
	font-size: var(--region-btn-font-size);
	opacity: var(--region-btn-opacity);
	display: flex;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	padding: 8px 26px 8px 8px;
	transition: opacity var(--region-transition);
}

.ddown_btn.region-btn:hover {
	opacity: var(--region-btn-opacity-hover);
}

.ddown_btn.region-btn::after {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform var(--region-transition);
}

.ddown.is_active .ddown_btn.region-btn::after {
	transform: translateY(-50%) scaleY(-1);
}

/* Region spinner - absolute positioning for perfect centering */
.region-spinner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--region-transition);
}

.region-spinner.show {
	opacity: 1;
	visibility: visible;
}

.region-spinner .spinner {
	width: var(--region-spinner-size);
	height: var(--region-spinner-size);
	border: var(--region-spinner-border) solid #333;
	border-top: var(--region-spinner-border) solid var(--prime);
	border-radius: 50%;
	animation: region-spin 1s linear infinite;
}

@keyframes region-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.region-content {
	max-height: var(--region-dropdown-max-height);
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	width: var(--region-dropdown-width);
	min-width: var(--region-dropdown-width);
}

.region-content::-webkit-scrollbar {
	display: none;
}

.ddown_btn::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-image: url("../img/ar-down.svg");
	z-index: 111
}

.ddown img {
	width: 20px;
	height: 20px;
	margin-right: 2px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%
}

.ddown_item input {
	display: none
}

.ddown.--lg::before {
	height: 8px;
	width: 12px;
	right: 11px;
	top: 13px
}

.ddown.--lg .ddown_btn {
	padding: 5px 30px 5px 7px;
	font-size: 16px
}

.ddown.--lg .ddown_item {
	font-size: 16px;
	padding-right: 25px;
	white-space: nowrap
}

.ddown.--lg img {
	width: 30px;
	margin-right: 5px;
	height: 22px
}

.user {
	z-index: 1;
	margin-left: 8px;
	position: relative
}

.user__avatar {
	width: 50px;
	height: 50px;
	border: 2px solid var(--prime);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: visible;
	position: relative;
}

.user__avatar__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}

.user__avatar::before {
	content: "";
	display: block;
	width: 120%;
	height: 120%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1
}

.user__avatar img {
	pointer-events: none;
	opacity: 1;
	-webkit-filter: none !important;
	filter: none !important;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.user__avatar-frame {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 120%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: contain;
	object-fit: contain;
	pointer-events: none;
	z-index: 2;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.user__avatar:active~div,
.user__avatar:hover~div,
.user__avatar:focus~div {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0)
}

.user-menu {
	min-width: 220px;
	width: max-content;
	max-width: 280px;
	padding: 15px 25px;
	background: -webkit-gradient(linear, left top, left bottom, from(#2D2B29), to(#171716));
	background: -webkit-linear-gradient(top, #2D2B29 0%, #171716 100%);
	background: -moz-linear-gradient(top, #2D2B29 0%, #171716 100%);
	background: -o-linear-gradient(top, #2D2B29 0%, #171716 100%);
	background: linear-gradient(180deg, #2D2B29 0%, #171716 100%);
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	position: absolute;
	-webkit-transition: .2s ease all;
	-o-transition: .2s ease all;
	-moz-transition: .2s ease all;
	transition: .2s ease all;
	top: 110%;
	right: 0px;
	-webkit-transform: translateY(5%);
	-moz-transform: translateY(5%);
	-ms-transform: translateY(5%);
	-o-transform: translateY(5%);
	transform: translateY(5%);
	opacity: 0;
	visibility: hidden;
	text-align: left;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.user-menu > div:first-child {
	-webkit-box-ordinal-group: 1;
	-webkit-order: 0;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
	margin-bottom: 10px
}

.user-menu > nav {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}

.user-menu > .user__link {
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	-moz-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2
}

.user.is-open .user-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0)
}

@media (hover: hover) and (pointer: fine) {
	.user-menu:hover,
	.user-menu:focus,
	.user__avatar:hover + .user-menu,
	.user__avatar:focus + .user-menu {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0)
	}
}

.user__name {
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	margin: 0 0 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	display: block
}

.user__id,
.user__link {
	color: var(--gray);
	font-size: 12px;
	line-height: 14.52px;
	margin: 0
}

.user__id {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	display: block
}

.user__link {
	padding: 2px 0
}

.user__link:hover {
	text-decoration: underline
}

.user .lk-nav {
	margin: 10px 0;
	padding: 4px 0;
	border-top: 1px solid hsla(0, 0%, 100%, .1);
	border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.user .lk-nav__link {
	font-size: 14px;
	padding: 6px 0;
	gap: 8px
}

.user .lk-nav__link .ic {
	max-width: 20px
}

.lk {
	padding-bottom: 60px;
	--sidebar: 340px
}

.lk-header {
	gap: 10px;
	margin-bottom: 24px !important
}

.lk-header>* {
	margin: 0
}

.lk-header__back {
	gap: 10px
}

.lk-header,
.lk-content {
	width: -webkit-calc(100% - (var(--sidebar) + 20px));
	width: -moz-calc(100% - (var(--sidebar) + 20px));
	width: calc(100% - (var(--sidebar) + 20px));
	max-width: 940px
}

.lk-content {
	gap: 48px
}

.lk-content.--g-md {
	gap: 32px
}

.lk-content.--g-sm {
	gap: 20px
}

.lk-content>* {
	margin: 0
}

.lk-container>*:first-child {
	margin-right: auto
}

.lk-container.fx-col {
	gap: 24px
}

.lk-container.fx-col>* {
	margin: 0 !important
}

.lk-container .row>* {
	margin: 0 !important
}

.lk-aside {
	width: var(--sidebar);
	position: relative;
	z-index: 1
}

.lk-aside .lk-nav {
	padding: 8px 0;
	border: none;
	margin-bottom: 8px;
	background-color: #1b1b1b;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px
}

.lk-aside__content {
	padding: 20px;
	background-color: #1b1b1b;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px
}

.lk-aside .fieldset {
	background-color: var(--bg);
	--label-show: 10%;
	--inp-show: 12px
}

.lk-aside .fieldset input {
	height: 48px
}

.lk-aside .inform li {
	padding: 4px 0
}

.lk-aside__btns {
	gap: 8px
}

.balance-layout {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.balance-form {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px
}

.balance-aside {
	width: var(--sidebar);
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.lk-nav__link {
	gap: 10px;
	color: var(--wh-60);
	padding: 12px 20px
}

.lk-nav__link img {
	width: 24px;
	height: 24px
}

.lk-nav__link:hover,
.lk-nav__link.active {
	color: #fff
}

.lk-nav__text {
	margin-left: auto;
	color: #fff
}

.lk-profile {
	gap: 20px
}

.lk-profile__avatar-wrapper {
	position: relative;
	width: 100px;
	height: 100px;
	flex-shrink: 0;
}

.lk-profile__img {
	width: 100px;
	height: 100px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #1b1b1b
}

.lk-profile__frame {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120px;
	height: 120px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-o-object-fit: contain;
	object-fit: contain;
	pointer-events: none;
	z-index: 1;
}

.lk__username {
	font-weight: 600;
	font-size: 24px;
	line-height: 110%;
	margin: 0 0 12px
}

.lk__id {
	font-weight: 400;
	font-size: 16px;
	color: hsla(0, 0%, 100%, .5)
}

.lk__subheading {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 24px
}

.lk-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 16px;
	gap: 24px
}

.lk-sticky>* {
	margin-bottom: 0
}

.lk__total {
	margin-bottom: 12px
}

.lk__total>* {
	color: #fff !important;
	font-weight: 600;
	font-size: 24px
}

.lk-row {
	margin: 0 0 24px
}

.lk-row>* {
	margin: 0 !important
}

.lk-info {
	gap: 16px;
	padding: 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: var(--bg)
}

.lk-info__img {
	width: 48px;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 1
}

.lk-info__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: hsla(0, 0%, 100%, .5)
}

.lk-info__text a {
	color: #fff;
	text-decoration: underline;
	-webkit-text-decoration-color: hsla(0, 0%, 100%, .5);
	-moz-text-decoration-color: hsla(0, 0%, 100%, .5);
	text-decoration-color: hsla(0, 0%, 100%, .5)
}

@media screen and (max-width: 1300px) {
	.lk {
		--sidebar: 260px
	}
}

@media screen and (max-width: 992px) {

	.lk-footer,
	.lk-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 32px
	}

	.lk-header,
	.lk-content {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-moz-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.lk-content {
		gap: 32px
	}

	.lk-content.--g-md {
		gap: 24px
	}

	.lk-aside {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-moz-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: 100%
	}

	.balance-layout {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.balance-aside {
		width: 100%
	}

	.lk-aside .lk-navbar {
		display: none
	}

	.lk-aside__content {
		padding: 16px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px
	}

	.lk-sticky {
		gap: 20px
	}

	.lk__subheading {
		margin-bottom: 12px
	}

	.lk-footer {
		gap: 16px
	}

	.lk__link {
		font-size: 14px
	}

	.lk-info {
		gap: 8px;
		padding: 14px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px
	}

	.lk-info__img {
		width: 32px
	}

	.lk-info__text {
		font-size: 14px;
		line-height: 20px
	}
}

.dropdown-btn {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1
}

.dropdown-btn::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	background-image: url(../img/ar-down.svg);
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -4px;
	z-index: 11
}

.dropdown-btn.is_active::before {
	-webkit-transform: scaleY(-1);
	-moz-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	transform: scaleY(-1)
}

.dropdown-content {
	display: none
}

.policy {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #898989
}

.policy a {
	color: inherit;
	text-decoration: underline
}

.form-register .policy {
	margin-top: 15px
}

.conf {
	position: relative;
	z-index: 1;
	--ic-width: 80px
}

.conf__img,
.conf__icon {
	width: var(--ic-width);
	height: var(--ic-width);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover
}

.conf__img {
	border: 2px solid #fff
}

.conf__icon {
	z-index: 11;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #121212
}

.conf__icon-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.conf__icon-img.lk-info__img {
	width: 70%;
	height: 70%;
	-o-object-fit: contain;
	object-fit: contain;
}

.conf__icon-img.is-rotating {
	-webkit-animation: order-status-rotate 1.4s linear infinite;
	animation: order-status-rotate 1.4s linear infinite;
	transform-origin: center center;
}

@-webkit-keyframes order-status-rotate {
	0% {
		-webkit-transform: rotate(0deg) scale(var(--icon-scale, 1));
		transform: rotate(0deg) scale(var(--icon-scale, 1))
	}
	100% {
		-webkit-transform: rotate(360deg) scale(var(--icon-scale, 1));
		transform: rotate(360deg) scale(var(--icon-scale, 1))
	}
}

@keyframes order-status-rotate {
	0% {
		-webkit-transform: rotate(0deg) scale(var(--icon-scale, 1));
		transform: rotate(0deg) scale(var(--icon-scale, 1))
	}
	100% {
		-webkit-transform: rotate(360deg) scale(var(--icon-scale, 1));
		transform: rotate(360deg) scale(var(--icon-scale, 1))
	}
}

.conf__icon-img.is-pulsing {
	-webkit-animation: order-status-pulse 2s ease-in-out infinite;
	animation: order-status-pulse 2s ease-in-out infinite;
}

@-webkit-keyframes order-status-pulse {
	0%, 100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0.8;
	}
}

@keyframes order-status-pulse {
	0%, 100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		opacity: 0.8;
	}
}

.dot-spinner {
	--dot-spinner-speed: .9s;
	--dot-spinner-color: #fff;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	height: calc(var(--ic-width) / 2);
	width: calc(var(--ic-width) / 2);
}

.dot-spinner__dot {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	height: 100%;
	width: 100%
}

.dot-spinner__dot::before {
	content: "";
	height: 20%;
	width: 20%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: var(--dot-spinner-color);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: .5;
	-webkit-animation: dot-spinner-pulse calc(var(--dot-spinner-speed) * 1.111) ease-in-out infinite;
	animation: dot-spinner-pulse calc(var(--dot-spinner-speed) * 1.111) ease-in-out infinite;
	-webkit-box-shadow: 0 0 20px rgba(255, 255, 255, .4);
	box-shadow: 0 0 20px rgba(255, 255, 255, .4)
}

.dot-spinner__dot:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}

.dot-spinner__dot:nth-child(2)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.875);
	animation-delay: calc(var(--dot-spinner-speed) * -.875)
}

.dot-spinner__dot:nth-child(3) {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg)
}

.dot-spinner__dot:nth-child(3)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.75);
	animation-delay: calc(var(--dot-spinner-speed) * -.75)
}

.dot-spinner__dot:nth-child(4) {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg)
}

.dot-spinner__dot:nth-child(4)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.625);
	animation-delay: calc(var(--dot-spinner-speed) * -.625)
}

.dot-spinner__dot:nth-child(5) {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg)
}

.dot-spinner__dot:nth-child(5)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.5);
	animation-delay: calc(var(--dot-spinner-speed) * -.5)
}

.dot-spinner__dot:nth-child(6) {
	-webkit-transform: rotate(225deg);
	-moz-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	transform: rotate(225deg)
}

.dot-spinner__dot:nth-child(6)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.375);
	animation-delay: calc(var(--dot-spinner-speed) * -.375)
}

.dot-spinner__dot:nth-child(7) {
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg)
}

.dot-spinner__dot:nth-child(7)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.25);
	animation-delay: calc(var(--dot-spinner-speed) * -.25)
}

.dot-spinner__dot:nth-child(8) {
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	transform: rotate(315deg)
}

.dot-spinner__dot:nth-child(8)::before {
	-webkit-animation-delay: calc(var(--dot-spinner-speed) * -.125);
	animation-delay: calc(var(--dot-spinner-speed) * -.125)
}

@-webkit-keyframes dot-spinner-pulse {
	0%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .5
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes dot-spinner-pulse {
	0%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: .5
	}
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

.conf-item {
	background-color: var(--bg);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	gap: 16px;
	padding: 20px;
	width: -webkit-calc((100% - 20px)/2);
	width: -moz-calc((100% - 20px)/2);
	width: calc((100% - 20px)/2)
}

@media screen and (min-width: 701px) {
	.conf-item:last-child {
		text-align: right;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-moz-box-orient: horizontal;
		-moz-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse
	}
}

.conf__heading {
	font-weight: 600;
	font-size: 18px;
	margin: 0 0 4px
}

.conf-title {
	width: 100%
}

.conf__text {
	text-wrap: pretty;
	font-weight: 400;
	font-size: 14px;
	color: #898989
}

@media screen and (max-width: 992px) {
	.conf {
		--ic-width: 65px
	}
}

@media screen and (max-width: 700px) {
	.conf {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
		--ic-width: 60px
	}

	.conf-item {
		padding: 16px;
		width: 100%
	}

	.conf__text {
		max-width: 78%
	}

	.conf__icon {
		--ic-width: 80px;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 10px;
		left: auto
	}
}

.calc {
	gap: 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: var(--bg);
	padding: 20px
}

.calc>* {
	margin: 0
}

.calc-wrap {
	gap: 12px
}

.calc-wrap>* {
	width: 100%;
	margin: 0
}

@media screen and (min-width: 701px) {
	.calc-wrap>* {
		width: -webkit-calc((100% - 12px)/2);
		width: -moz-calc((100% - 12px)/2);
		width: calc((100% - 12px)/2)
	}
}

.calc .fieldset {
	background-color: var(--bg)
}

.calc-info {
	gap: 12px
}

.calc-info img {
	width: 24px;
	aspect-ratio: 1;
	margin: 0
}

.calc-info h4 {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px
}

.calc-info p {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: hsla(0, 0%, 100%, .5)
}

.card {
	z-index: 1;
	position: relative
}

.card-img {
	overflow: hidden;
	position: relative;
	aspect-ratio: 340/510;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin-bottom: 16px;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.card__img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -111;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.card-content {
	padding: 16px;
	position: absolute;
	width: 100%;
	max-height: 100%;
	z-index: 1;
	bottom: 0;
	left: 0
}

.card.--inner {
	overflow: hidden;
	position: relative;
	aspect-ratio: 340/510;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin-bottom: 16px
}

.card.--inner::after {
	content: "";
	display: block;
	pointer-events: none;
	width: 105%;
	height: 105%;
	top: 0;
	left: 0;
	z-index: -1;
	position: absolute;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(18, 18, 18, 0.9))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%)
}

.card:hover .card-img {
	-webkit-transform: scale(0.98);
	-moz-transform: scale(0.98);
	-ms-transform: scale(0.98);
	-o-transform: scale(0.98);
	transform: scale(0.98)
}

.card:hover .card__img {
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
	transform: scale(1.04)
}

.card-wrap {
	--gap: 20px;
	--amm: 4;
	gap: 32px var(--gap)
}

.card-wrap>* {
	width: -webkit-calc((100% - var(--gap)*(var(--amm) - 1))/var(--amm)) !important;
	width: -moz-calc((100% - var(--gap)*(var(--amm) - 1))/var(--amm)) !important;
	width: calc((100% - var(--gap)*(var(--amm) - 1))/var(--amm)) !important
}

.card .btn {
	position: relative;
	z-index: 111
}

@media screen and (min-width: 1100px) {
	.card-wrap.--six {
		--amm: 5
	}
}

@media screen and (min-width: 1300px) {
	.card-wrap.--six {
		--amm: 6
	}
}

@media screen and (max-width: 800px) {
	.card-wrap {
		--amm: 3
	}
}

@media screen and (max-width: 700px) {
	.card-wrap {
		--gap: 10px;
		--amm: 2
	}
}

@media screen and (max-width: 560px) {
	.card {
		width: -webkit-calc((100vw - 42px)/2);
		width: -moz-calc((100vw - 42px)/2);
		width: calc((100vw - 42px)/2)
	}

	.card-img {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
		margin-bottom: 10px
	}

	.card.--big {
		width: 66vw
	}
}

.wide {
	z-index: 1;
	position: relative
}

.wide-wrap {
	gap: 20px
}

.wide-wrap>* {
	width: -webkit-calc((100% - 40px)/3);
	width: -moz-calc((100% - 40px)/3);
	width: calc((100% - 40px)/3)
}

.wide-head {
	z-index: 1;
	overflow: hidden;
	position: relative;
	aspect-ratio: 460/215;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin-bottom: 16px;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.wide__img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.wide:hover .wide-head {
	-webkit-transform: scale(0.98);
	-moz-transform: scale(0.98);
	-ms-transform: scale(0.98);
	-o-transform: scale(0.98);
	transform: scale(0.98)
}

.wide:hover .wide__img {
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
	transform: scale(1.04)
}

.wide.--long .wide-head {
	aspect-ratio: 460/262
}

@media screen and (max-width: 991px) {
	.wide-wrap>* {
		width: -webkit-calc((100% - 20px)/2);
		width: -moz-calc((100% - 20px)/2);
		width: calc((100% - 20px)/2)
	}
}

@media screen and (max-width: 720px) {
	.wide-head {
		margin-bottom: 10px
	}

	.wide-wrap {
		gap: 16px
	}

	.wide-wrap>* {
		width: 100%
	}
}

@media screen and (max-width: 560px) {
	.wide.--long {
		width: 80vw;
		opacity: .5
	}

	.wide.--long.slick-active {
		opacity: 1
	}
}

.evn {
	gap: 16px;
	z-index: 1;
	width: 580px;
	padding: 16px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: hsla(0, 0%, 100%, .04)
}

.evn .btn {
	position: relative;
	z-index: 111
}

.evn-head {
	width: 55.8394160584%
}

.evn-title {
	width: 41.2408759124%
}

.evn__img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	aspect-ratio: 306/260
}

.evn.slick-slide {
	opacity: .5
}

.evn.slick-active {
	opacity: 1
}

.evn-footer {
	margin-top: auto
}

.evn.--full {
	padding: 42px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.evn.--full .evn-head,
.evn.--full .evn-title {
	width: 46.1077844311%
}

.evn.--full .evn__img {
	aspect-ratio: 616/353
}

@media screen and (max-width: 1450px) {
	.evn {
		width: 550px
	}

	.evn.--full {
		padding: 32px
	}

	.evn.--full .evn-head,
	.evn.--full .evn-title {
		width: 47.1556886228%
	}
}

@media screen and (max-width: 1240px) {
	.evn {
		width: -webkit-calc((100vw - 50px)/2);
		width: -moz-calc((100vw - 50px)/2);
		width: calc((100vw - 50px)/2)
	}
}

@media screen and (max-width: 800px) {
	.evn:not(.--full) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.evn:not(.--full)>* {
		width: 100%
	}

	.evn.--full {
		padding: 22px
	}
}

@media screen and (max-width: 680px) {
	.evn {
		width: 70vw
	}

	.evn.--full {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
		width: -webkit-calc(100vw - 32px);
		width: -moz-calc(100vw - 32px);
		width: calc(100vw - 32px)
	}

	.evn.--full>* {
		width: 100% !important
	}
}

@media screen and (max-width: 560px) {
	.evn {
		width: 80vw;
		padding: 12px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
		gap: 8px
	}

	.evn-head {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px
	}

	.evn.--full {
		padding: 12px
	}

	.evn-footer {
		margin-top: 32px
	}
}

.favorite {
	top: 8px;
	right: 8px;
	width: 24px;
	z-index: 111;
	height: 24px;
	position: absolute
}

.favorite:hover {
	opacity: .5
}

.favorite::before,
.favorite::after {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../img/fav.svg");
	-webkit-transition: .3s ease all;
	-o-transition: .3s ease all;
	-moz-transition: .3s ease all;
	transition: .3s ease all
}

.favorite::after {
	opacity: 0;
	background-image: url("../img/fav-f.svg")
}

.favorite.is_active::before {
	opacity: 0
}

.favorite.is_active::after {
	opacity: 1
}

.itm-img,
.ord-img,
.popular-img {
	width: 49.5495495495%;
	overflow: hidden;
	aspect-ratio: 220/103;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.itm-img img,
.ord-img img,
.popular-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.itm-title,
.ord-title,
.popular-title {
	width: 50.4504504505%
}

.itm,
.ord,
.popular-item {
	gap: 16px;
	position: relative;
	z-index: 1
}

.itm:hover .popular-img,
.ord:hover .popular-img,
.popular-item:hover .popular-img {
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95)
}

.itm:hover .popular-img img,
.ord:hover .popular-img img,
.popular-item:hover .popular-img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05)
}

.popular-wrap {
	gap: 20px
}

.popular-wrap>* {
	width: -webkit-calc((100% - 40px)/3);
	width: -moz-calc((100% - 40px)/3);
	width: calc((100% - 40px)/3)
}

@media screen and (max-width: 1100px)and (min-width: 992px) {
	.popular-item {
		display: block !important
	}

	.popular-item>* {
		width: 100%
	}

	.popular-img {
		margin-bottom: 10px
	}
}

@media screen and (max-width: 991px) {
	.popular-wrap>* {
		width: -webkit-calc((100% - 20px)/2);
		width: -moz-calc((100% - 20px)/2);
		width: calc((100% - 20px)/2)
	}
}

@media screen and (max-width: 720px) {
	.popular-wrap {
		gap: 12px 10px
	}

	.popular-wrap>* {
		width: -webkit-calc(50% - 5px);
		width: -moz-calc(50% - 5px);
		width: calc(50% - 5px)
	}

	.popular-img {
		margin-bottom: 8px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px
	}

	.popular-item {
		display: block !important
	}

	.popular-item>* {
		width: 100%
	}
}

.itm {
	padding: 20px;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px
}

.itm:hover {
	background-color: hsla(0, 0%, 100%, .04)
}

.itm-img {
	max-width: 196px
}

@media screen and (max-width: 720px) {
	.itm {
		padding: 8px
	}

	.itm-img {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
		width: 45.045045045%
	}
}

.ord {
	overflow: hidden;
	padding: 20px;
	margin-bottom: 8px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	background-color: hsla(0, 0%, 100%, .04)
}

.ord:last-of-type {
	margin-bottom: 0 !important
}

.ord-img {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	max-width: 220px
}

.lk-group .ord {
	margin-bottom: 24px;
}

.lk-group .ord:last-of-type {
	margin-bottom: 24px;
}

.ord-img img[src$=".svg"],
.ord-img img[src*="blank.svg"] {
	-o-object-fit: contain;
	object-fit: contain;
	background-color: #242424;
}

.ord__heading {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px
}

.ord-title {
	width: unset;
	gap: 4px
}

.ord-title>*:last-child {
	margin-top: auto
}

.ord-aside {
	margin-left: auto;
	text-align: right
}

.ord-aside .tag {
	margin-top: auto
}

#orders-container .lk-group {
	margin-bottom: 32px;
}

#orders-container .lk-group:last-of-type {
	margin-bottom: 0;
}

@media screen and (max-width: 800px) {
	.ord {
		padding: 16px
	}
}

@media screen and (max-width: 580px) {
	.ord {
		max-width: 300px;
		margin: 0 auto 8px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0;
		gap: 8px
	}

	.ord-title {
		padding: 0 10px
	}

	.ord-img {
		width: 100%;
		max-width: 100%
	}

	.ord-aside {
		padding: 0 10px 10px
	}

	.lk-group .ord {
		margin: 0 auto 24px;
	}

	.lk-group .ord:last-of-type {
		margin: 0 auto 24px;
	}
}

.search__input {
	height: 60px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background-color: rgba(0, 0, 0, 0);
	font-size: 30px;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2)
}

.search__input:focus {
	border-color: var(--prime)
}

.search-tabs {
	margin: 0 0 25px
}

.search-wrap {
	gap: 15px;
	margin: 0 0 20px
}

.search__btn {
	padding: 10px
}

.search__btn img {
	margin: 0
}

.search-togglers {
	gap: 10px 50px
}

.search-togglers label {
	color: var(--gray);
	border: 1px solid rgba(0, 0, 0, 0)
}

.search-togglers input:checked~label {
	color: #fff;
	background-color: rgba(0, 0, 0, 0);
	border-color: var(--prime)
}

.search-items {
	--gap: 20px;
	margin-top: 40px;
	width: 100%;
}

@media screen and (max-width: 720px) {
	.search-togglers {
		gap: 15px
	}

	.search__input {
		height: 45px;
		font-size: 18px
	}
}

.purchase {
	padding: 40px 0 20px
}

.purchase-wrap {
	gap: 10px;
	overflow-x: scroll;
	padding-bottom: 18px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px
}

.purchase-wrap::-webkit-scrollbar {
	width: 5px;
	height: 5px
}

.purchase-wrap::-webkit-scrollbar-track {
	background-color: rgba(106, 106, 106, .21);
	-webkit-border-radius: 10px;
	border-radius: 10px
}

.purchase-wrap::-webkit-scrollbar-thumb {
	background-color: #646464;
	-webkit-border-radius: 10px;
	border-radius: 10px
}

.purchase-item {
	min-width: 129px;
	width: 129px;
	display: block;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	overflow: hidden
}

.purchase-item img {
	display: block;
	width: 100%;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.purchase-item:hover {
	opacity: 1;
	-webkit-transform: scale(0.94);
	-moz-transform: scale(0.94);
	-ms-transform: scale(0.94);
	-o-transform: scale(0.94);
	transform: scale(0.94)
}

.purchase-item:hover img {
	-webkit-transform: scale(1.06) rotate(1deg);
	-moz-transform: scale(1.06) rotate(1deg);
	-ms-transform: scale(1.06) rotate(1deg);
	-o-transform: scale(1.06) rotate(1deg);
	transform: scale(1.06) rotate(1deg)
}

.load {
	text-align: center;
	min-height: 320px
}

.load img {
	display: block;
	margin: 0 auto;
	width: 158px;
	-webkit-animation: rotate_anim 1.5s linear infinite;
	-moz-animation: rotate_anim 1.5s linear infinite;
	-o-animation: rotate_anim 1.5s linear infinite;
	animation: rotate_anim 1.5s linear infinite
}

@media screen and (max-width: 720px) {
	.load {
		min-height: 280px
	}

	.load img {
		width: 120px
	}
}

.box-header {
	padding-bottom: 40px;
	margin-bottom: 20px;
	border-bottom: 1px solid hsla(0, 0%, 100%, .1)
}

.box-header .lk__subheading {
	margin-bottom: 10px
}

.box-col {
	width: 60%
}

.box-sender {
	width: 39%;
	text-align: center
}

.box-sender img {
	display: block;
	width: 120px;
	height: 120px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin: 0 auto 7px
}

.box-sender__text {
	font-size: 16px;
	margin: 0 0 2px
}

.box-sender__heading {
	font-size: 18px;
	color: var(--prime);
	line-height: 24px;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis
}

.box-row {
	padding: 25px 0
}

@media screen and (max-width: 720px) {
	.box-header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-moz-box-orient: vertical;
		-moz-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.box-sender {
		margin-bottom: 20px
	}

	.box-col,
	.box-sender {
		width: 100%;
		text-align: center
	}
}

.range {
	height: 15px;
	width: 100%;
	-webkit-border-radius: 41px;
	-moz-border-radius: 41px;
	border-radius: 41px;
	background-color: rgba(14, 14, 14, .21)
}

.range__item {
	-webkit-border-radius: 41px;
	-moz-border-radius: 41px;
	border-radius: 41px;
	background-color: #ffc148;
	display: block;
	width: 0px;
	height: 100%;
	-webkit-animation: ranger_anim 15s ease-in-out infinite;
	-moz-animation: ranger_anim 15s ease-in-out infinite;
	-o-animation: ranger_anim 15s ease-in-out infinite;
	animation: ranger_anim 15s ease-in-out infinite
}

@-webkit-keyframes rotate_anim {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

@-moz-keyframes rotate_anim {
	0% {
		-moz-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-moz-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

@-o-keyframes rotate_anim {
	0% {
		-o-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-o-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

@keyframes rotate_anim {
	0% {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(-360deg);
		-moz-transform: rotate(-360deg);
		-o-transform: rotate(-360deg);
		transform: rotate(-360deg)
	}
}

@-webkit-keyframes ranger_anim {
	0% {
		width: 3%;
		left: 7px;
		right: auto
	}

	25% {
		left: 7px;
		right: auto;
		width: 100%
	}

	25.01% {
		width: 100%;
		left: auto;
		right: 7px
	}

	50% {
		left: auto;
		right: 7px;
		width: 3%
	}

	75% {
		left: auto;
		right: 7px;
		width: 100%
	}

	75.01% {
		left: 7px;
		right: auto
	}

	100% {
		left: 7px;
		right: auto;
		width: 3%
	}
}

@-moz-keyframes ranger_anim {
	0% {
		width: 3%;
		left: 7px;
		right: auto
	}

	25% {
		left: 7px;
		right: auto;
		width: 100%
	}

	25.01% {
		width: 100%;
		left: auto;
		right: 7px
	}

	50% {
		left: auto;
		right: 7px;
		width: 3%
	}

	75% {
		left: auto;
		right: 7px;
		width: 100%
	}

	75.01% {
		left: 7px;
		right: auto
	}

	100% {
		left: 7px;
		right: auto;
		width: 3%
	}
}

@-o-keyframes ranger_anim {
	0% {
		width: 3%;
		left: 7px;
		right: auto
	}

	25% {
		left: 7px;
		right: auto;
		width: 100%
	}

	25.01% {
		width: 100%;
		left: auto;
		right: 7px
	}

	50% {
		left: auto;
		right: 7px;
		width: 3%
	}

	75% {
		left: auto;
		right: 7px;
		width: 100%
	}

	75.01% {
		left: 7px;
		right: auto
	}

	100% {
		left: 7px;
		right: auto;
		width: 3%
	}
}

@keyframes ranger_anim {
	0% {
		width: 3%;
		left: 7px;
		right: auto
	}

	25% {
		left: 7px;
		right: auto;
		width: 100%
	}

	25.01% {
		width: 100%;
		left: auto;
		right: 7px
	}

	50% {
		left: auto;
		right: 7px;
		width: 3%
	}

	75% {
		left: auto;
		right: 7px;
		width: 100%
	}

	75.01% {
		left: 7px;
		right: auto
	}

	100% {
		left: 7px;
		right: auto;
		width: 3%
	}
}

.hero {
	padding: 0;
	z-index: 1;
	position: relative;
	text-align: center
}

.hero .container {
	min-height: 620px
}

.hero-content {
	max-width: 870px;
	margin: auto
}

.hero__heading {
	font-weight: 600;
	font-size: 64px;
	line-height: 68px;
	letter-spacing: -0.256px;
	text-align: center;
	margin: 0 0 48px
}

.hero-links {
	gap: 8px
}

.hero-brends {
	gap: 32px
}

.hero-brends>* {
	display: block
}

.hero-brends img {
	height: 56px;
	-o-object-position: center center;
	object-position: center center;
	-o-object-fit: contain;
	object-fit: contain
}

.hero__bg {
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -111;
	-o-object-fit: cover;
	object-fit: cover
}

@media screen and (max-width: 1250px) {
	.hero .container {
		min-height: 500px
	}
}

@media screen and (max-width: 992px) {
	.hero-content {
		max-width: 670px
	}

	.hero h1 {
		font-size: 50px;
		line-height: 120%;
		margin-bottom: 36px
	}
}

@media screen and (max-width: 720px) {
	.hero .container {
		min-height: 400px
	}

	.hero h1 {
		font-size: 36px;
		line-height: 120%;
		margin-bottom: 16px
	}

	.hero-content {
		padding: 40px 0
	}

	.hero-brends {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 20px
	}

	.hero-brends img {
		height: 40px
	}

	.hero-links {
		gap: 6px;
		max-width: 400px;
		margin: 0 auto
	}
}

.absolute {
	top: 0;
	left: 0;
	font-size: 0;
	overflow: hidden;
	opacity: 0 !important;
	position: absolute;
	z-index: 11;
	display: block;
	width: 100%;
	height: 100%
}

.catalog {
	width: 220px;
	position: relative;
	z-index: 1
}

.catalog__head {
	z-index: 1;
	overflow: hidden;
	position: relative;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin: 0 0 16px
}

.catalog__img {
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s
}

.catalog__heading {
	font-weight: 600;
	font-size: 16px;
	line-height: 120%
}

.catalog:hover .catalog__head {
	-webkit-transform: scale(0.95);
	-moz-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95)
}

.catalog:hover .catalog__img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05)
}

.catalog.--inner {
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 220/214;
	position: relative;
	z-index: 1
}

.catalog.--inner::after {
	content: "";
	display: block;
	pointer-events: none;
	width: 105%;
	height: 105%;
	top: 0;
	left: 0;
	z-index: 11;
	position: absolute;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(18, 18, 18, 0.9))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(18, 18, 18, 0.9) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%)
}

.catalog.--inner .catalog__heading {
	width: -webkit-calc(100% - 32px);
	width: -moz-calc(100% - 32px);
	width: calc(100% - 32px);
	bottom: 16px;
	left: 16px;
	position: absolute;
	z-index: 111
}

.catalog.--ver .catalog__head {
	aspect-ratio: 220/187
}

@media screen and (max-width: 991px) {
	.catalog__head {
		margin-bottom: 8px
	}

	.catalog__heading {
		font-size: 14px
	}
}

@media screen and (max-width: 560px) {
	.catalog {
		width: 150px
	}

	.catalog__head {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px
	}

	.catalog.--squere {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px
	}

	.catalog.--squere .catalog__heading {
		width: -webkit-calc(100% - 16px);
		width: -moz-calc(100% - 16px);
		width: calc(100% - 16px);
		bottom: 8px;
		left: 8px
	}
}

.descr {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #898989
}

@media screen and (max-width: 720px) {
	.descr {
		font-size: 12px;
		line-height: 17px
	}
}

.price {
	gap: 4px 8px;
	margin-bottom: 8px
}

.price__current {
	font-weight: 600;
	font-size: 18px;
	line-height: 120%
}

.price__old {
	color: #898989;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	text-decoration: line-through
}

.discount-timer {
	display: none;
	font-variant-numeric: tabular-nums
}

.discount-timer[data-discount-end] {
	display: inline-block
}

.discount-timer--card {
	display: block;
	color: #898989;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	padding-top: 4px
}

.discount-timer--price {
	color: #898989;
	font-weight: 400;
	font-size: 12px;
	line-height: 120%
}

.price__tag {
	color: #000;
	font-size: 12px;
	text-align: center;
	line-height: 120%;
	padding: 2px 5px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-color: var(--prime)
}

.price__tag.--red {
	color: #fff;
	background-color: var(--red)
}

@media screen and (max-width: 720px) {
	.price {
		margin-bottom: 4px;
		gap: 4px 6px
	}

	.price__current {
		font-size: 16px
	}

	.price__tag {
		font-size: 11px;
		line-height: 15px;
		padding: 1px 4px
	}
}

.service {
	overflow: hidden
}

.service-slider:not(.slick-initialized) {
	gap: 30px
}

.service-slide {
	width: 236px;
	position: relative;
	z-index: 1;
	max-width: 100%;
	margin: 0 15px
}

.service-slide:not(.slick-slide) {
	display: none;
	margin: 0
}

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

	.service-slide:not(.slick-slide):nth-child(1),
	.service-slide:not(.slick-slide):nth-child(2),
	.service-slide:not(.slick-slide):nth-child(3),
	.service-slide:not(.slick-slide):nth-child(4),
	.service-slide:not(.slick-slide):nth-child(5) {
		display: block
	}
}

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

	.service-slide:not(.slick-slide):nth-child(1),
	.service-slide:not(.slick-slide):nth-child(2),
	.service-slide:not(.slick-slide):nth-child(3) {
		display: block
	}
}

@media screen and (max-width: 720px) {
	.service-slide:not(.slick-slide) {
		width: 200px
	}

	.service-slide:not(.slick-slide):nth-child(1) {
		display: block
	}
}

.service__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 11;
	height: 100%
}

.service__img {
	width: 100%;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 16/15;
	margin: 0 0 12px;
	background-color: #fff
}

.service__price {
	color: #fff;
	font-size: 24px;
	line-height: 120%;
	font-weight: 500;
	gap: 9px;
	margin: 0 0 2px
}

.service .btn__fav {
	float: right;
	margin-left: 5px
}

.service__text {
	font-size: 13px;
	line-height: 15.85px;
	margin: 0
}

@media screen and (max-width: 992px) {
	.service-slide {
		margin: 0 10px
	}

	.service-slider {
		width: 100vw;
		position: relative;
		left: -15px
	}

	.service-slider .slick-list {
		padding: 0 15px
	}
}

@media screen and (max-width: 720px) {
	.service-slide {
		width: 210px;
		margin: 0 8px
	}

	.service__price {
		font-size: 20px
	}
}

.box {
	position: relative;
	z-index: 1
}

.box__img {
	display: block;
	width: 100%;
	aspect-ratio: 5/6.03;
	margin: 0 0 14px;
	overflow: hidden;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px
}

.box .btn__fav {
	float: right;
	margin-left: 5px
}

.box__price {
	color: #fff;
	font-size: 24px;
	line-height: 120%;
	font-weight: 500;
	gap: 9px;
	margin: 0 0 2px
}

.box__text {
	font-size: 20px
}

.box__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 11;
	height: 100%
}

@media screen and (max-width: 720px) {
	.box__price {
		font-size: 18px
	}

	.box__text {
		font-size: 14px
	}
}

.crd-wrap {
	padding-top: 32px;
	position: relative;
	z-index: 1
}

.crd-content {
	width: 74.6478873239%
}

.crd-content>* {
	margin-bottom: 64px
}

.crd-nav img,
.crd-nav video,
.crd-slider img,
.crd-slider video {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 1060/596;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px
}

.crd-nav .slick-track {
	display: flex;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.crd-nav .slick-slide {
	float: none;
	height: auto;
	display: flex;
}

.crd-nav .slick-slide > div {
	width: 100%;
}

.crd-nav .btn__play,
.crd-slider .btn__play {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10
}

.crd-nav .slick-slide,
.crd-slider .slick-slide {
	position: relative;
	z-index: 1
}

.crd-nav img {
	opacity: .5;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px
}

.crd-nav .slick-list {
	padding: 0 4px
}

.crd-nav .slick-current img {
	border: 1px solid var(--prime);
	opacity: 1
}

.crd-nav__item {
	width: 122px;
	margin: 0 6px
}

.crd-slider {
	margin: 0 0 20px;
	aspect-ratio: 1080/596
}

.crd-slider .btn__play {
	width: 54px;
	height: 54px
}

.crd-slider .btn__play~* {
	opacity: .5
}

.crd-slider .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -18px
}

.crd-slider .slick-next {
	right: 20px
}

.crd-slider .slick-prev {
	left: 20px
}

.crd-slider:not(.slick-initialized)>*:not(:first-child) {
	display: none
}

.crd-slider:not(:hover) .slick-arrow {
	opacity: 0
}

.crd-slide img {
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px
}

.crd-aside__content {
	gap: 20px
}

.crd__preview {
	width: 100%;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin-bottom: 20px;
	-o-object-fit: cover;
	object-fit: cover
}

.crd__preview[data-product-link] {
	cursor: pointer;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s;
	position: relative
}

.crd__preview[data-product-link]:hover {
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-ms-transform: scale(1.02);
	-o-transform: scale(1.02);
	transform: scale(1.02);
	-webkit-box-shadow: 0 4px 16px rgba(255, 255, 255, .1);
	-moz-box-shadow: 0 4px 16px rgba(255, 255, 255, .1);
	box-shadow: 0 4px 16px rgba(255, 255, 255, .1);
	opacity: .95
}

.crd__preview[data-product-link]:active {
	-webkit-transform: scale(.98);
	-moz-transform: scale(.98);
	-ms-transform: scale(.98);
	-o-transform: scale(.98);
	transform: scale(.98)
}

.crd-require__subheading {
	color: hsla(0, 0%, 100%, .6980392157);
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .8px;
	text-transform: uppercase;
	margin: 0 0 20px
}

.crd-require__wrap {
	gap: 40px
}

.crd-require__wrap>* {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 calc(50% - 20px);
	-moz-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 20px);
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px)
}

.crd-require ul li {
	padding: 8px 0;
	gap: 8px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #898989
}

.crd-require ul .text {
	color: #fff;
	text-align: left;
	margin-left: auto;
	text-wrap: balance;
	min-width: 64%;
	width: 64%
}

.crd-description p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: hsla(0, 0%, 100%, .6);
	margin: 0 0 24px
}

.crd-description img,
.crd-description picture,
.crd-description picture img,
.crd-description video,
.crd-description iframe {
	max-width: 100%
}

.crd-description img,
.crd-description picture img,
.crd-description video {
	height: auto
}

.crd-description video,
.crd-description iframe {
	width: 100%;
	display: block
}

.crd-description picture,
.crd-description figure {
	display: block;
	max-width: 100%
}

@media screen and (min-width: 751px) {
	.crd-aside {
		position: absolute;
		top: 32px;
		height: 100%;
		right: 0;
		width: 23.9436619718%
	}

	.crd-aside__content {
		position: -webkit-sticky;
		position: sticky;
		top: 20px
	}
}

@media screen and (min-width: 751px)and (max-width: 1450px) {
	.crd-aside {
		width: 27.4647887324%
	}
}

@media screen and (min-width: 751px)and (max-width: 1240px) {
	.crd-aside {
		width: 29.8850574713%
	}
}

@media screen and (max-width: 1450px) {
	.crd-content {
		width: 70.4225352113%
	}
}

@media screen and (max-width: 1240px) {
	.crd-slider {
		margin-bottom: 10px
	}

	.crd-aside__content {
		gap: 10px
	}

	.crd-require ul li {
		padding: 4px 0
	}

	.crd-require__subheading {
		margin-bottom: 6px
	}

	.crd-require .container>*,
	.crd-description .container>* {
		width: 100%
	}

	.crd-content>* {
		margin-bottom: 32px
	}
}

@media screen and (max-width: 1240px)and (min-width: 751px) {
	.crd-content {
		overflow: hidden;
		width: 68.9655172414%
	}

	.crd-content .slick-slider {
		width: -webkit-calc(100% + 20px);
		width: -moz-calc(100% + 20px);
		width: calc(100% + 20px);
		left: -10px
	}

	.crd-content .slick-list {
		padding: 0 10px
	}
}

@media screen and (max-width: 750px) {
	.crd-wrap {
		padding-top: 16px
	}

	.crd-wrap>* {
		width: 100% !important
	}

	.crd-wrap .slick-list {
		padding: 0 11px
	}

	.crd-wrap .slick-next {
		right: 5px
	}

	.crd-wrap .slick-prev {
		left: 5px
	}

	.crd-slider {
		margin-bottom: 8px
	}

	.crd-slide {
		margin: 0 4px
	}

	.crd-nav__item {
		margin: 0 4px
	}

	.crd-aside {
		margin: 32px 0
	}

	.crd-require__wrap {
		display: block !important;
		gap: 0
	}

	.crd-require__wrap>* {
		max-width: 100%;
		flex: none
	}

	.crd-require__wrap>*:first-child {
		margin-bottom: 30px
	}

	.crd-require__subheading {
		margin-bottom: 6px
	}

	.crd-description p {
		margin-bottom: 16px
	}

	.crd-description img,
	.crd-description picture img {
		width: auto !important;
		max-width: 100% !important;
		height: auto !important;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.crd-description picture,
	.crd-description figure {
		display: block;
		max-width: 100%;
		width: 100%;
	}

	.crd-description video,
	.crd-description iframe {
		width: 100% !important;
		max-width: 100%;
		height: auto !important;
		display: block;
	}
}

.cont {
	padding: 20px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: var(--fade)
}

.cont .radio {
	padding: 8px 0
}

.cont .radio .price {
	margin: 0
}

.cont .radio .price__current {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px
}

.cont .radio .price__tag {
	margin-left: auto
}

.cont__total {
	padding-top: 20px;
	margin-bottom: 16px
}

.cont--single-package .cont__total {
	padding-top: 0
}

.cont__total .price__current {
	font-size: 24px;
	margin-right: 8px
}

.cont-action {
	gap: 8px
}

.cont-action .btn {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.cont-age {
	gap: 16px
}

.cont-age>* {
	margin: 0
}

.cont-age__head {
	font-weight: 600;
	font-size: 24px;
	line-height: 28px
}

.cont-age__text {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #898989
}

@media screen and (max-width: 1240px) {
	.cont {
		padding: 14px
	}

	.cont ul.inform .text {
		font-size: 12px;
		line-height: 16px
	}
}

.more {
	margin-bottom: 20px
}

.more h2 {
	margin-bottom: 12px
}

.more .btn {
	width: 100%
}

.more .btn:disabled {
	opacity: 0.6;
	cursor: not-allowed
}

.dlc-hidden {
	display: none
}

.more-table {
	width: 100%;
	margin-bottom: 12px
}

.more-table td {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	padding: 12px 20px;
	background-color: var(--fade)
}

.more-table td>* {
	margin: 0
}

.more-table td:last-child {
	text-align: right
}

.more-table tr:first-child td {
	padding-top: 20px
}

.more-table tr:first-child td:first-child {
	-webkit-border-top-left-radius: 12px;
	-moz-border-radius-topleft: 12px;
	border-top-left-radius: 12px
}

.more-table tr:first-child td:last-child {
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topright: 12px;
	border-top-right-radius: 12px
}

.more-table tr:last-child td {
	padding-bottom: 20px
}

.more-table tr:last-child td:first-child {
	-webkit-border-bottom-left-radius: 12px;
	-moz-border-radius-bottomleft: 12px;
	border-bottom-left-radius: 12px
}

.more-table tr:last-child td:last-child {
	-webkit-border-bottom-right-radius: 12px;
	-moz-border-radius-bottomright: 12px;
	border-bottom-right-radius: 12px
}

.more-table tr:not(:last-child) td {
	border-bottom: 1px solid hsla(0, 0%, 100%, .0509803922)
}

.more-table .price {
	white-space: nowrap
}

.more-table .price__current {
	font-size: 14px
}

.more-table .price__unavailable {
	color: #898989;
	font-size: 12px;
	font-weight: 400
}

@media screen and (max-width: 640px) {
	.more-table {
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		background-color: var(--fade)
	}

	.more-table tr {
		gap: 12px 8px;
		padding: 16px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		border-bottom: 1px solid hsla(0, 0%, 100%, .0509803922)
	}

	.more-table tr:last-child {
		border: none
	}

	.more-table td {
		padding: 0 !important;
		border: none !important;
		background-color: rgba(0, 0, 0, 0)
	}

	.more-table td:first-child {
		width: 100%
	}

	.more-table td:last-child {
		margin-left: auto
	}
}

.footer {
	z-index: -1;
	margin-top: auto;
	position: relative;
	padding: 92px 0 80px;
	background-color: hsla(0, 0%, 100%, .02)
}

.footer-top {
	gap: 20px
}

.footer-top>* {
	width: 340px;
	width: 23.9436619718%
}

.footer-top>*:first-child {
	margin-right: auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.footer-bottom {
	width: 100%;
	padding-top: 92px;
	color: hsla(0, 0%, 100%, .2)
}

.footer-bottom p {
	font-size: 16px;
	line-height: 19.5px
}

.footer__link {
	color: #fff;
	display: block;
	font-weight: 400;
	margin-bottom: 16px
}

.footer__link:last-child {
	margin-bottom: 0
}

.footer-list a {
	color: hsla(0, 0%, 100%, .6)
}

@media screen and (max-width: 1200px) {
	.footer {
		padding: 72px 0 60px
	}

	.footer-bottom {
		padding-top: 62px;
		max-width: 700px;
		margin: 0 auto
	}

	.footer-top {
		gap: 40px;
		max-width: 700px;
		margin: 0 auto
	}

	.footer-top>* {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content
	}

	.footer-top>*:first-child {
		width: 100%
	}
}

@media screen and (max-width: 720px) {
	.footer {
		padding: 30px 0
	}

	.footer-top {
		gap: 20px
	}

	.footer-nav {
		margin-right: auto
	}

	.footer__link {
		font-size: 14px;
		line-height: 18px;
		margin-bottom: 12px
	}

	.footer-bottom {
		padding-top: 40px
	}
}

.partnership-content {
	max-width: 1000px;
	margin: 0 auto
}

.partnership-content .lk-info {
	margin-bottom: 20px
}

.partnership-content .inform li {
	padding: 0
}

.partnership-content .inform li:first-child {
	padding-top: 8px
}

.partnership-content .lk-info.fx-ac {
	justify-content: space-between
}

.partnership-content .lk-info__img {
	width: 48px;
	height: 48px;
	flex-shrink: 0
}

.partnership-content .lk-info__img[src="/img/tg.svg"] {
	width: 40px;
	height: 40px
}

.partnership-content a {
	text-decoration: none
}

.partnership-content a:hover {
	opacity: 0.8
}

.partnership-content .lk-group:has(+ hr) .lk-info:last-child {
	margin-bottom: 0
}

.partnership-content hr {
	margin: 0 0
}

.accordion {
	margin-bottom: 20px
}

.accordion-btn {
	cursor: pointer;
	transition: background-color 0.2s
}

.accordion-btn:hover,
.accordion-btn.active {
	background-color: hsla(0, 0%, 100%, .04)
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out
}

.accordion-content.active {
	max-height: 5000px;
	transition: max-height 0.5s ease-in
}

.instruction-img {
	max-width: 100%;
	height: auto;
	border-radius: 8px
}

.blog-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	justify-content: center;
	margin-top: 40px
}

.blog-layout .lk-nav {
	min-width: 220px;
	width: 220px
}

.blog-content {
	position: relative;
	min-height: 600px
}

.articles-feed {
	display: flex;
	flex-direction: column;
	background-color: #161616;
	border-radius: 35px;
	padding: 26px 40px;
	width: 760px;
	transition: opacity 0.3s ease
}

.filter-buttons-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.search-wrapper {
	margin-top: 10px;
	padding: 10px 0 0 0
}

.search-wrap {
	position: relative;
	margin: 0 !important;
	display: flex;
	justify-content: center
}

.search__input {
	width: 100%;
	padding: 10px 14px;
	background-color: #1b1b1b;
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease
}

.search__input::placeholder {
	color: #a0a0a0
}

.search__input:focus {
	outline: none;
	border-color: var(--prime);
	background-color: var(--bg)
}

.search-spinner {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) scale(0);
	opacity: 0;
	transition: all 0.3s ease
}

.search-spinner.show {
	opacity: 1;
	transform: translateY(-50%) scale(1)
}

.spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top: 2px solid var(--prime);
	border-radius: 50%;
	animation: spin 1s linear infinite
}


.tag-img {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	border-radius: 50%;
}

@keyframes spin {
	0% { transform: rotate(0deg) }
	100% { transform: rotate(360deg) }
}

.content-spinner {
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 760px;
	z-index: 2;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.2s ease, transform 0.2s ease
}

.content-spinner.show {
	display: flex;
	opacity: 1;
	transform: scale(1)
}

.content-spinner.hide {
	display: none
}

.content-spinner .spinner {
	width: 40px;
	height: 40px;
	border: 3px solid #333;
	border-top: 3px solid var(--prime);
	border-radius: 50%;
	animation: spin 1s linear infinite
}

.load-more-spinner {
	display: none;
	justify-content: center;
	align-items: center;
	padding: 16px 0
}

.load-more-spinner .spinner {
	width: 24px;
	height: 24px;
	border: 3px solid #333;
	border-top: 3px solid var(--prime);
	border-radius: 50%;
	animation: spin 1s linear infinite
}

.article-item {
	padding: 25px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	transition: all 0.2s ease
}

.article-item:hover {
	background-color: rgba(255, 255, 255, 0.02);
	padding-left: 15px;
	padding-right: 15px;
	margin-left: -15px;
	margin-right: -15px;
	border-radius: 12px
}

.article-item:last-child {
	border-bottom: none
}

.article-content {
	display: flex;
	flex-direction: column;
	gap: 15px
}

.article-text {
	flex: 1;
	min-width: 0
}

.article-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 8px;
	color: #fff;
	transition: color 0.2s ease
}

.article-item:hover .article-title {
	color: var(--prime)
}

.article-description {
	font-size: 16px;
	line-height: 1.5;
	color: #a0a0a0;
	margin-bottom: 15px
}

.article-read-more {
	margin-top: 15px
}

.read-more-btn {
	color: var(--prime);
	font-size: 15px;
	font-weight: 500;
	transition: all 0.2s ease;
	cursor: pointer
}

.article-item:hover .read-more-btn {
	color: #fff
}

.article-image {
	width: 100%;
	height: 180px;
	border-radius: 8px;
	object-fit: cover;
	order: -1
}

.article-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.blog-filter-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	width: 100%;
	background-color: #1b1b1b;
	border: 1px solid rgba(0, 0, 0, 0);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.blog-filter-btn:hover {
	background-color: var(--bg);
	border-color: rgba(0, 0, 0, 0);
	color: #fff;
}

.blog-filter-btn.active {
	background-color: var(--bg);
	border-color: var(--prime);
	color: #fff;
}

@media screen and (max-width: 720px) {
	.blog-layout {
		flex-direction: column;
		gap: 25px
	}
	
	.lk-nav {
		min-width: auto;
		width: 100%;
		order: -1;
		flex-direction: column;
		gap: 15px;
		margin-bottom: 25px;
		align-items: center
	}
	
	.blog-layout .lk-nav {
		width: 100%;
		min-width: auto
	}
	
	.filter-buttons-wrapper {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%
	}
	
	.lk-nav__link {
		flex: 0 1 auto;
		padding: 10px 16px;
		text-align: center
	}
	
	.blog-filter-btn {
		width: 100%;
		padding: 10px 16px;
		text-align: center
	}
	
	.search-wrapper {
		margin-top: 15px;
		padding-top: 15px;
		width: 100%
	}
	
	.search-wrap {
		display: flex;
		justify-content: center;
		width: 100%;
		position: relative;
		margin: 0 !important
	}
	
	.search__input {
		width: 100%;
		border-radius: 50px !important;
		padding: 10px 44px 10px 14px;
		-webkit-appearance: none;
		appearance: none;
		box-sizing: border-box
	}
	
	.articles-feed {
		padding: 20px 25px;
		border-radius: 25px;
		width: 100%
	}
	
	.content-spinner {
		width: 100%
	}
	
	.blog-content {
		max-width: 100%;
		min-height: 500px
	}
	
	.article-title {
		font-size: 20px
	}
	
	.article-description {
		font-size: 15px
	}
}

.article-single {
	max-width: 760px;
	margin: 0 auto;
	padding: 30px 40px;
	background-color: #161616;
	border-radius: 35px
}

.article-single-header {
	margin-bottom: 30px
}

.article-single-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px
}

.article-single-meta {
	font-size: 14px;
	color: var(--gray)
}

.article-single-title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #fff
}

.article-single-image {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 30px
}

.article-single-content {
	font-size: 18px;
	line-height: 1.7;
	color: #e0e0e0
}

.article-single-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--prime);
	margin: 35px 0 20px
}

.article-single-content p {
	margin-bottom: 20px
}

.article-single-content ul,
.article-single-content ol {
	margin: 20px 0;
	padding-left: 25px
}

.article-single-content li {
	margin-bottom: 8px
}

.article-single-content strong {
	color: var(--prime);
	font-weight: 600
}

.article-single .btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px
}

.article-single .btn-outline img {
	flex-shrink: 0;
	filter: brightness(10);
	opacity: 0.7
}

.article-single .btn-outline:hover img {
	opacity: 1
}

@media screen and (max-width: 720px) {
	.article-single {
		padding: 20px 25px;
		border-radius: 25px
	}
	
	.article-single-title {
		font-size: 26px
	}
	
	.article-single-content {
		font-size: 16px
	}
	
	.article-single-content h3 {
		font-size: 20px
	}
}

.transactions-wrapper {
	overflow-x: auto
}

.transactions-table {
	min-width: 600px;
	display: block;
	width: 100%
}

.transactions-table tbody {
	display: block
}

.transactions-table tr {
	transition: all 0.2s ease;
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 12px;
	border-radius: 12px;
	overflow: hidden
}

.transactions-table td {
	vertical-align: middle;
	background-color: var(--fade);
	padding: 18px 20px !important;
	border: none !important;
	display: table-cell
}

.transactions-table td:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	padding-left: 24px !important
}

.transactions-table td:last-child {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	padding-right: 24px !important
}

.transactions-table tr:hover td {
	background-color: rgba(255, 255, 255, 0.06)
}

.transactions-table tr:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15)
}

.transactions-table tr:hover .ic {
	fill: var(--prime);
	opacity: 1
}

.transactions-table td:nth-child(1) {
	width: 20%
}

.transactions-table td:nth-child(2) {
	width: 15%;
	text-align: right;
	font-weight: 500;
	font-size: 15px;
	white-space: nowrap
}

.transactions-table td:nth-child(3) {
	width: 45%;
	opacity: 0.7;
	font-size: 14px
}

.transactions-table td:nth-child(4) {
	text-align: right;
	opacity: 0.5;
	white-space: nowrap;
	font-size: 13px
}

@media (max-width: 768px) {
	.transactions-wrapper {
		overflow-x: visible
	}

	.transactions-table {
		min-width: 0;
		display: block
	}

	.transactions-table tbody {
		display: block
	}

	.transactions-table tr {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 12px 16px;
		padding: 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: 12px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.02)
	}

	.transactions-table td {
		padding: 0 !important;
		background-color: transparent !important;
		border-radius: 0 !important
	}

	.transactions-table td:first-child,
	.transactions-table td:last-child {
		padding: 0 !important
	}

	.transactions-table tr:hover td {
		background-color: transparent !important;
		box-shadow: none !important
	}

	.transactions-table td:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
		width: auto !important
	}

	.transactions-table td:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
		text-align: right !important;
		width: auto !important
	}

	.transactions-table td:nth-child(3) {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100% !important
	}

	.transactions-table td:nth-child(4) {
		grid-column: 1 / -1;
		grid-row: 3;
		text-align: left !important;
		font-size: 14px;
		opacity: 0.5 !important;
		width: 100% !important
	}
}

#app {
	transition: height 0.3s ease-out;
}

.lk-content {
	animation-duration: 0.3s;
	animation-timing-function: ease-out;
	animation-fill-mode: both;
}

.page-exit .lk-content {
	animation-name: pageExit;
}

.page-enter .lk-content {
	animation-name: pageEnter;
}

@keyframes pageExit {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@keyframes pageEnter {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

[data-page="home"] .hero,
[data-page="home"] > section:not(.hero),
.home-dynamic > section {
	opacity: 0;
	transform: translateY(30px);
}

[data-page="home"] .hero.home-section-enter,
[data-page="home"] > section:not(.hero).home-section-enter,
.home-dynamic > section.home-section-enter {
	animation: homeContentEnter 0.5s ease-out forwards;
}

@keyframes homeContentEnter {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

[data-page="search"] h1,
[data-page="search"] .card-wrap {
	opacity: 0;
	transform: translateY(30px);
}

[data-page="search"] .form-group > .fieldset {
	opacity: 0;
	transform: translateY(30px);
}

[data-page="search"] h1.search-section-enter,
[data-page="search"] .card-wrap.search-section-enter {
	animation: searchContentEnter 0.5s ease-out forwards;
}

[data-page="search"] .form-group > .fieldset.search-section-enter {
	animation: searchContentEnter 0.5s ease-out forwards;
}

[data-page="search"] .card {
	opacity: 0;
	transform: translateY(20px);
}

[data-page="search"] .card.search-card-enter {
	animation: searchCardEnter 0.4s ease-out forwards;
}

@keyframes searchContentEnter {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes searchCardEnter {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sg-partner-toggle,
.sg-toggle {
	position: relative;
	margin-left: auto;
	z-index: 120;
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(22, 22, 22, 0.9);
	border: 1px solid #333;
	border-radius: 999px;
	padding: 4px 8px;
	transition: border-color 0.3s ease, background 0.3s ease;
	width: fit-content;
}

.sg-partner-toggle[hidden],
.sg-toggle[hidden] {
	display: none !important;
}

.sg-partner-toggle__label {
	display: none;
}

.sg-partner-toggle__tooltip,
.sg-toggle__tooltip {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #161616;
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 400;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10000;
	margin-bottom: 8px;
	border: 1px solid #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.sg-partner-toggle__tooltip::after,
.sg-toggle__tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #161616;
}

.sg-partner-toggle:hover .sg-partner-toggle__tooltip,
.sg-toggle:hover .sg-toggle__tooltip {
	opacity: 1;
	visibility: visible;
}

.sg-partner-toggle__switch,
.sg-toggle__switch {
	position: relative;
	width: 54px;
	height: 28px;
	border: none;
	background: #1f1f1f;
	border-radius: 999px;
	padding: 0;
	cursor: pointer;
	transition: background 0.3s ease;
}

.sg-partner-toggle__switch::before,
.sg-toggle__switch::before {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 999px;
	background: #1f1f1f;
	transition: background 0.3s ease;
	pointer-events: none;
}

.sg-partner-toggle__switch::after,
.sg-toggle__switch::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	transform: translateX(0);
	transition: transform 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.sg-partner-toggle--partner .sg-partner-toggle__switch {
	background: var(--prime);
}

.sg-partner-toggle--partner .sg-partner-toggle__switch::before {
	background: rgba(0, 0, 0, 0.15);
}

.sg-partner-toggle--partner .sg-partner-toggle__switch::after {
	transform: translateX(26px);
	background: #000;
}

.sg-toggle--active .sg-toggle__switch {
	background: var(--prime);
}

.sg-toggle--active .sg-toggle__switch::before {
	background: rgba(0, 0, 0, 0.15);
}

.sg-toggle--active .sg-toggle__switch::after {
	transform: translateX(26px);
	background: #000;
}

.sg-toggle--disabled {
	opacity: 0.6;
}

.favorite-toggle {
	margin-left: 8px;
}

.favorite-toggle .sg-toggle__tooltip {
	bottom: auto;
	top: 100%;
	margin-bottom: 0;
	margin-top: 8px;
}

.favorite-toggle .sg-toggle__tooltip::after {
	top: auto;
	bottom: 100%;
	border-top-color: transparent;
	border-bottom-color: #161616;
}

.sg-toggle--loading .sg-toggle__switch {
	pointer-events: none;
	opacity: 0.7;
}

.sg-partner-toggle__switch:focus-visible,
.sg-toggle__switch:focus-visible {
	outline: 2px solid var(--prime);
	outline-offset: 2px;
}

@media screen and (max-width: 720px) {
	.sg-partner-toggle,
	.sg-toggle {
		top: 10px;
		right: 10px;
		padding: 3px 6px;
	}
}

.filter-btn {
	background: transparent;
	border: 2px solid #333;
	color: var(--gray);
	transition: all 0.3s ease;
}

.filter-btn:hover {
	border-color: var(--prime);
	color: var(--prime);
}

.filter-btn.active {
	background: var(--prime);
	border-color: var(--prime);
	color: #000;
}
.home-dynamic {
        transition: opacity .3s ease;
}

.home-dynamic > section:first-child {
	padding-top: 30px;
}

.home-dynamic--loading {
        opacity: .8;
}

.home-dynamic__state {
        text-align: center;
        padding: 60px 20px;
        color: #8D8D8D;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
}

.home-dynamic__spinner {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 4px solid rgba(141, 141, 141, .2);
        border-top-color: #FFC148;
        animation: home-spinner .75s linear infinite;
}

@keyframes home-spinner {
        to {
                transform: rotate(360deg)
        }
}

.home-dynamic__retry {
	margin-top: 8px;
}

.unavailable-badge,
.unavailable-badge-large {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-weight: 500;
	line-height: 100%;
	background-color: hsla(0, 0%, 100%, .08);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	border: none;
	border-radius: 0 50px 50px 0;
	z-index: 100;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.unavailable-badge {
	top: 8px;
	left: -9px;
	gap: 6px;
	font-size: 9px;
	padding: 5px 18px 5px 13px;
	min-height: 25px;
}

.unavailable-badge::before {
	content: "";
	position: absolute;
	left: -5px;
	top: 100%;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-top: 5px solid hsla(0, 0%, 100%, .05);
	z-index: -1;
}

.unavailable-badge-large {
	top: 10px;
	left: -12px;
	gap: 8px;
	font-size: 12px;
	padding: 6px 23px 6px 17px;
	min-height: 32px;
}

.unavailable-badge-large::before {
	content: "";
	position: absolute;
	left: -6px;
	top: 100%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-top: 6px solid hsla(0, 0%, 100%, .05);
	z-index: -1;
}

.slider-single .unavailable-badge-large {
	top: 50px;
}

.price-hidden {
	visibility: hidden !important;
}

@media screen and (max-width: 560px) {
	.unavailable-badge {
		top: 6px;
		left: -7px;
		font-size: 8px;
		padding: 4px 13px 4px 10px;
		min-height: 23px;
	}

	.unavailable-badge::before {
		left: -4px;
		border-left: 4px solid transparent;
		border-top: 4px solid hsla(0, 0%, 100%, .05);
	}

	.unavailable-badge-large {
		top: 8px;
		left: -9px;
		font-size: 10px;
		padding: 5px 17px 5px 13px;
		min-height: 30px;
	}

	.unavailable-badge-large::before {
		left: -5px;
		border-left: 5px solid transparent;
		border-top: 5px solid hsla(0, 0%, 100%, .05);
	}

	.slider-single .unavailable-badge-large {
		top: 37px;
	}
}

.fieldset.--success {
	border-color: #4caf50;
	background-color: rgba(76, 175, 80, 0.1);
	transition: all 0.3s ease;
}

.fieldset.--error {
	border-color: #f44336;
	background-color: rgba(244, 67, 54, 0.1);
	transition: all 0.3s ease;
}

.fieldset.--focus {
	background-color: rgba(255, 193, 72, 0.15);
}

[data-tooltip] {
	position: relative;
}

[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.4;
	white-space: normal;
	max-width: 300px;
	width: max-content;
	text-align: left;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
	z-index: 1000;
}

[data-tooltip]::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: calc(100% + 2px);
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.9);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
	z-index: 1000;
}

.dlc-hidden {
	display: none;
}

.dlc-show-all-active {
	display: none;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
	opacity: 1;
	visibility: visible;
}

.home-dynamic--loading {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-dynamic--loaded {
	animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.search-items .search-card {
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.search-items .search-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.search-items .search-card:nth-child(1) { transition-delay: 0.1s; }
.search-items .search-card:nth-child(2) { transition-delay: 0.2s; }
.search-items .search-card:nth-child(3) { transition-delay: 0.3s; }
.search-items .search-card:nth-child(4) { transition-delay: 0.4s; }
.search-items .search-card:nth-child(5) { transition-delay: 0.5s; }
.search-items .search-card:nth-child(6) { transition-delay: 0.6s; }
.search-items .search-card:nth-child(7) { transition-delay: 0.7s; }
.search-items .search-card:nth-child(8) { transition-delay: 0.8s; }
.search-items .search-card:nth-child(9) { transition-delay: 0.9s; }
.search-items .search-card:nth-child(10) { transition-delay: 1s; }

.search-items .search-card .card-img.header-img {
	position: relative;
}

.search-items .search-card .card-img.header-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: inherit;
	background-size: cover;
	background-position: center;
	filter: blur(20px);
	transform: scale(1.2);
}

.search-items .search-card .card-img.header-img img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.search-items .search-card .card-img.logo-img {
	background-image: none !important;
}

.search-items .search-card .card-img.logo-img::before {
	display: none !important;
}

.search-items .search-card .card-img.logo-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.search-items .search-card .descr {
	color: #898989;
}

.search-items {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.search-items.loaded {
	opacity: 1;
}

.home-dynamic > section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.home-dynamic > section.home-section-enter {
	opacity: 1;
	transform: translateY(0);
}

.card img,
.wide img,
.evn img,
.catalog img,
.popular-item img {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.card img[loading="lazy"],
.wide img[loading="lazy"],
.evn img[loading="lazy"],
.catalog img[loading="lazy"],
.popular-item img[loading="lazy"] {
	opacity: 1;
}

.card img[loading="lazy"].loaded,
.wide img[loading="lazy"].loaded,
.evn img[loading="lazy"].loaded,
.catalog img[loading="lazy"].loaded,
.popular-item img[loading="lazy"].loaded {
	opacity: 1;
}

.price {
	will-change: opacity, transform;
}

.card,
.wide,
.evn,
.catalog {
	will-change: transform;
}

.home-dynamic__spinner {
	width: 48px;
	height: 48px;
	border: 4px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--prime);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.slider-five:not(.slick-initialized) > *:not(:first-child),
.slider-quadra:not(.slick-initialized) > *:not(:first-child),
.slider-tripple:not(.slick-initialized) > *:not(:first-child),
.slider-variable:not(.slick-initialized) > *:not(:first-child),
.slider-single:not(.slick-initialized) > *:not(:first-child) {
	display: none;
}

.slider-five:not(.slick-initialized),
.slider-quadra:not(.slick-initialized),
.slider-tripple:not(.slick-initialized),
.slider-variable:not(.slick-initialized),
.slider-single:not(.slick-initialized) {
	display: flex;
	gap: 10px;
	overflow: hidden;
}

.page-transition-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #4CAF50 0%, #45a049 50%, #4CAF50 100%);
	background-size: 200% 100%;
	animation: pageLoadingBar 1.5s ease-in-out infinite;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.page-transition-loading.active {
	opacity: 1;
}

@keyframes pageLoadingBar {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.transactions-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
	padding: 16px 0;
}

.transactions-pagination__button {
	min-height: 40px;
	padding: 8px 16px;
	background-color: var(--fade);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.transactions-pagination__button:hover:not(:disabled) {
	background-color: var(--bg);
	border-color: var(--prime);
	color: var(--prime);
}

.transactions-pagination__button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: #232323;
	color: var(--gray);
	border-color: #232323;
}

.transactions-pagination__info {
	font-size: 14px;
	color: var(--gray);
	white-space: nowrap;
}

.transactions-pagination.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.empty-message {
	text-align: center;
	padding: 60px 20px;
	font-size: 18px;
	color: #666;
	font-weight: 500;
	width: 100%;
}

@media (max-width: 640px) {
	.transactions-pagination {
		gap: 12px;
		margin-top: 16px;
		padding: 12px 0;
	}
	
	.transactions-pagination__button {
		min-height: 36px;
		padding: 6px 12px;
		font-size: 13px;
	}
	
	.transactions-pagination__info {
		font-size: 13px;
	}
	
	.empty-message {
		padding: 40px 15px;
		font-size: 16px;
	}
}


.payment-modal-methods img,
.payment-modal-methods svg {
	width: 48px !important;
	height: 48px !important;
	object-fit: contain !important;
	flex-shrink: 0;
}

.payment-modal-methods svg {
	max-width: 48px;
	max-height: 48px;
}

ul.progress li.progress__step--has-icon::before {
	background-color: transparent
}

ul.progress li.progress__step--has-icon::after {
	display: none
}

ul.progress li.progress__step--check::before,
ul.progress li.progress__step--pending::before {
	background-color: transparent
}

ul.progress li.progress__step--check::before {
	background-color: #242424
}

ul.progress li.progress__step--completed::before {
	background-color: #242424
}

ul.progress li.progress__step--pending::before {
	background-color: #242424
}

