@charset "UTF-8";

/* ROOT */
:root {
	--color-footer: #1a1a1a;
	--color-text-input: #808080;
}

/* end ROOT */
/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}

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

body {
	line-height: 1
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none
}

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

* {
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
	text-decoration: none;
}

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

input,
button,
select,
optgroup,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	outline: none;
	border: 0;
}

textarea,
input[type="text"],
input[type="button"],
input[type="search"],
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
	display: none;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
	cursor: pointer;
}

hr {
	border: 0;
}

/*end RESET*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background-color: var(--color-background);
	color: var(--color-text-base);
	font-family: 'Gilroy', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
}

a {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	color: rgb(var(--main-color));
}

a:hover {
	text-decoration: none;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

b,
strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

.text-center {
	text-align: center;
}

.mt20 {
	margin-top: 20px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.wrapper {
	overflow: hidden;
}

/* BTN */
.btn {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0 20px;
	background-color: var(--color-background-second);
	color: var(--color-text-base);
}

.btn:hover {
	background: rgb(var(--main-color));
	color: #fff;
	border-color: rgb(var(--main-color)) !important;
}

.btn-center {
	display: table;
	margin: 0 auto;
}

.btn-primary {
	background: rgb(var(--main-color));
	color: #fff;
}

.btn-primary:hover {
	opacity: 0.8;
}

.btn-gray {
	border: 1px solid #e7e7e7;
	color: #111;
}

.btn-gray:hover {
	border: 1px solid #111;
}

.btn-green {
	background: #4dae51;
	color: #fff;
}

.btn-green:hover {
	background: #4dae51;
	color: #fff;
}

.btn-nostock {
	background: #d2d2d2;
	color: #fff;
	cursor: default;
}

.btn-more[data-hide="true"] {
	display: none;
}

/* end BTN */
/* ALERTS */
.alert,
attention,
delivery {
	display: block;
	background-color: var(--color-background-second);
	color: var(--color-text-base);
	padding: 15px 20px;
	line-height: 22px;
	width: 100%;
}

.alert:after {
	content: "";
	display: table;
	clear: both;
}

.alert-success,
delivery {
	background-color: #46b955;
	color: #fff;
}

.alert-danger {
	background-color: #e06060;
	color: #fff;
}

.alert-warning,
attention {
	background-color: #f3d766;
	color: var(--color-text-base);
}

.alert-gray {
	background-color: #f3f3f3;
	color: var(--color-text-base);
}

.alert h2 {
	font-weight: 600;
}

.alert a {
	text-decoration: underline;
}

.products-list .alert {
	margin: 4px;
}

.alert__purple {
	background-color: #9b59b6;
	color: #fff;
	margin-bottom: 40px;
}

.alert__purple a {
	color: #fff;
}

.alert__purple a:hover {
	text-decoration: underline;
}

.alert__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
}

/* end ALERTS */
@media (max-width:992px) {
	body.lock {
		overflow: hidden;
	}
}

/* HEADER */
header {
	background-color: var(--color-background-second);
}

.header {
	padding: 20px 0;
	background-color: var(--color-background-second);
	z-index: 100;
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width:992px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		padding-bottom: 0;
	}

	.header,
	.header>.container {
		padding: 0;
	}

	.header__inner {
		height: 72px;
	}
}

@media (max-width:480px) {
	.header__inner {
		height: 57px;
	}
}

.header__mob {
	display: none;
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
}

.nav-toggle {
	background-color: rgb(var(--main-color));
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 72px;
	height: 100%;
	padding: 0;
	cursor: pointer;
	border: none;
}

@media (max-width:480px) {
	.nav-toggle {
		width: 57px;
	}
}

.nav-toggle span {
	display: block;
	margin: 0 auto;
	width: 24px;
	height: 1px;
	background-color: #fff;
}

.nav-toggle span+span {
	margin-top: 6px;
}

.header__mob_open .nav-toggle>span {
	display: none;
}

.nav-toggle>svg {
	display: none;
}

.header__mob_open .nav-toggle>svg {
	display: block;
	color: #fff;
}

.header-mob__menu {
	display: none;
	position: fixed;
	z-index: 600;
	left: 0;
	right: 0;
	background-color: rgb(var(--main-color));
	padding: 15px;
	height: 100%;
	overflow: auto;
}

.header-mob__menu ul {
	display: block;
	width: 25%;
	padding: 10px;
}

@media (max-width:768px) {
	.header-mob__menu {
		padding: 15px 15px 72px 15px;
	}

	.header-mob__menu ul {
		width: 50%;
	}
}

@media (max-width:480px) {
	.header-mob__menu ul {
		width: 100%;
	}
}

.header-mob__menu ul>li>span {
	display: block;
	color: #fff;
	font-weight: 600;
	padding: 5px 0;
}

.header-mob__menu a {
	display: block;
	color: #fff;
	padding: 5px 0;
}

.header__mob_open .header-mob__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width:992px) {
	.header__mob {
		display: block;
	}
}

.header__logo {
	max-width: 210px;
	margin-right: 40px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media (max-width:992px) {
	.header__logo {
		max-width: 130px;
		padding: 0 10px;
		margin: 0 10px;
	}
}

@media (max-width:480px) {
	.header__logo {
		padding: 5px;
	}
}

.logo__link {
	display: block;
}

.logo__link img {
	display: block;
}

.header__middle {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

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

.header__nav-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header__nav-menu li {
	padding: 5px 10px;
}

.header__nav-menu li:first-child {
	padding-left: 0;
}

.header__nav-menu a {
	display: block;
	color: var(--color-text-base);
	border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.header__nav-menu a:hover {
	color: rgb(var(--main-color));
	border-bottom-color: transparent;
}

.header__user a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-text-base);
}

.header__user a:hover {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: rgb(var(--main-color));
}

.header__user a svg {
	width: 20px;
	height: 20px;
	color: var(--color-text-base);
	margin-right: 10px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.header__user a:hover svg {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}

.header__search .header__search-form {
	position: relative;
	width: 100%;
}

.header__search .header__search-form .search_input {
	width: 100%;
	padding: 0 50px 0 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--color-background-second);
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	border: 2px solid var(--color-background);
}

.header__search .header__search-form .search-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header__search .header__search-form .search-btn svg {
	display: block;
	width: 25px;
	height: 25px;
	color: #808080;
}

.header__search .header__search-form .search-btn:hover svg {
	color: rgb(var(--main-color));
}

.header__search .header__search-form .search_input:hover,
.header__search .header__search-form .search_input:focus {
	border-color: rgb(var(--main-color));
	-webkit-transition: 150ms;
	-o-transition: 150ms;
	transition: 150ms;
}

.live_search {
	display: none;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0;
	right: 0;
	overflow: auto;
	margin-top: 8px;
	-webkit-box-shadow: 3.5px 6.06px 32px 0 rgba(55, 54, 55, .24);
	box-shadow: 3.5px 6.06px 32px 0 rgba(55, 54, 55, .24);
	background-color: var(--color-background-second);
}

.live_search_button {
	width: 100%;
}

.search-result__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px;
	border-bottom: 1px solid var(--color-background);
}

.search-result__item:hover {
	background-color: var(--main-color-two);
}

.search-result__img {
	margin-right: 8px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
}

.search-result__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.search-result__main {
	padding-right: 10px;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.search-result__title {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	color: var(--color-text-base);
}

.search-result__attr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 2px;
}

.search-result__activation {
	font-size: 12px;
	line-height: normal;
}

.search-result__type {
	font-size: 12px;
	line-height: normal;
	margin-left: 5px;
	padding-left: 5px;
	border-left: 1px solid var(--color-background);
}

.search-result__price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
}

.search-result__cost {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text-base);
}

@media(max-width:992px) {
	.header__middle {
		-webkit-box-flex: unset;
		-ms-flex-positive: unset;
		flex-grow: unset;
		width: 100%;
		padding: 0 10px;
	}

	.header__search {
		width: 100%;
	}

	.header__logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header__middle-top {
		display: none;
	}
}

.header__mob-search {
	width: 57px;
	background-color: var(--color-background);
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media(max-width:480px) {
	.header__mob-search {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header__search {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--color-background);
		padding: 8px 6px;
	}

	BODY._mob-search-open .header__search {
		display: block;
	}
}

/* end HEADER */
/* BAR */
.bar {
	border-top: 1px solid var(--color-background);
	border-bottom: 1px solid var(--color-background);
}

.bar__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.bar__nav__group {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.bar__nav__group>a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--color-text-base);
	font-size: 16px;
	padding: 15px 20px;
}

.bar__nav__group>a:hover {
	background-color: var(--color-background);
}

@media (max-width: 992px) {
	.bar {
		display: none;
	}
}

/* end BAR */
/* MAIN */
@media (max-width: 992px) {
	main {
		padding-top: 72px;
	}
}

@media (max-width: 480px) {
	main {
		padding-top: 57px;
	}
}

section,
.section {
	padding: 40px 0;
}

section:after,
section:before {
	content: "";
	display: table;
	clear: both;
}

section h1,
section h2 {
	text-align: center;
	margin-bottom: 40px;
}

h1,
h2 {
	font-size: 20px;
	font-weight: 600;
}

section h1>span,
section h2>span {
	color: var(--color-text-base);
	border-bottom: 1px solid rgba(0, 0, 0, .3);
}

section h2>a {
	color: var(--color-text-base);
	border-bottom: 1px solid rgba(0, 0, 0, .3);
}

section h2>a:hover {
	border-bottom-color: transparent;
}

.second {
	background-color: var(--color-background-second);
}

/* end MAIN */
/* SLIDER */
.main-slider {
	position: relative;
	overflow: hidden;
	padding: 0;
}

.main-slider,
.promo-slider .slick-track {
	height: 500px;
}

.slick-slide {
	position: relative;
	overflow: hidden;
}

.promo-slider__bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.promo-slider .container {
	height: 100%;
	position: relative;
}

.promo-slider__inner {
	color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding-bottom: 45px;
	padding-left: 20px;
	padding-right: 20px;
}

.promo-slider__title {
	margin: 15px 0 3px;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 2.3px;
	text-align: left;
}

.promo-slider__price {
	font-weight: 700;
	white-space: nowrap;
	font-size: 24px;
	line-height: 30px;
}

.promo-slider .slick-prev {
	left: 30px;
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
	margin-top: -10px;
}

.promo-slider .slick-next {
	right: 30px;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	margin-top: -10px;
}

@media(min-width:1921px) {
	.main-slider {
		width: 100%;
		max-width: 1140px;
		margin: 20px auto 0 auto;
		padding: 0 15px;
	}

	.main-slider,
	.promo-slider .slick-track {
		height: 440px;
	}

	.promo-slider__inner {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media(max-width:768px) {

	.main-slider,
	.promo-slider .slick-track {
		height: 400px;
	}
}

@media(max-width:576px) {

	.main-slider,
	.promo-slider .slick-track {
		height: 300px;
	}
}

/* end SLIDER */
/* PAYMENTS */
.main-payments {
	padding: 80px 0;
}

.main-payments ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.payments-list .item svg {
	width: 40px;
	height: 40px;
}

@media(min-width:992px) {
	.payments-list .item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media(max-width:992px) {
	.main-payments {
		padding: 50px 0;
	}

	.main-payments ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 4px;
	}

	.payments-list .item {
		width: 33.33%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 25px auto;
	}
}

/* end PAYMENTS */
/* FOOTER */
footer {
	padding: 50px 0;
	background-color: var(--color-footer);
	overflow: hidden;
}

.footer__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 40px;
}

.footer-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer-menu a {
	display: block;
	color: #fff;
	padding: 10px 25px;
}

.footer-menu a:hover {
	color: rgb(var(--main-color));
}

@media(max-width:768px) {
	.footer-menu a {
		padding: 10px 15px;
	}
}

.footer-social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer-social a {
	display: block;
	color: #fff;
	padding: 10px;
}

.footer-social a svg {
	width: 20px;
	height: 20px;
	color: #fff;
}

.footer-social a:hover svg {
	color: rgb(var(--main-color));
}

.footer__middle {
	display: flex;
	gap: 40px;
	color: #484848;
	font-size: 12px;
	margin-bottom: 40px;
}

.footer__safe {
	flex-shrink: 0;
}

.footer__middle-text {}

.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__bottom .copy {
	color: #484848;
}

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

.counters a {
	display: block;
	margin: 0 10px;
	opacity: 0.5;
}

.counters a:hover {
	opacity: 1;
}

.counters a:last-child {
	margin-right: 0;
}

.ytstyle span {
	display: block;
	text-align: right;
}

.ytstyle-title {
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
}

.ytstyle-text {
	color: #888;
	font-size: 11px;
}

@media (min-width: 993px) {
	.footer-menu li:first-child a {
		padding-left: 0;
	}

	.footer-social li:last-child a {
		padding-right: 0;
	}
}

@media (max-width: 992px) {
	.footer__nav {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.footer__nav-inner {
		width: 100%;
		margin-bottom: 20px;
	}

	.footer-menu {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.footer-social {
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.footer__bottom .copy {
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}

	.counters {
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.counters a {
		margin: 5px;
	}

	.counters a:last-child {
		margin-right: 5px;
	}

	.ytstyle span {
		text-align: center;
	}
}

/* end FOOTER */
/* CATALOG */
.catalog-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.catalog-wrap__aside {
	width: 25%;
	padding-right: 20px;
}

.catalog-wrap__main {
	width: 75%;
}

fieldset {
	background-color: var(--color-background-second);
	padding: 20px;
	border-bottom: 2px solid var(--color-background);
}

fieldset:last-child {
	border-bottom: 0;
}

fieldset .field-title {
	position: relative;
}

fieldset .field-title span {
	font-size: 14px;
	display: block;
	cursor: pointer;
	color: var(--color-text-base);
	text-transform: uppercase;
	font-weight: 500;
}

fieldset .field-title span:before {
	position: absolute;
	top: 50%;
	right: 0;
	width: 0;
	height: 0;
	margin-top: -5px;
	content: ' ';
	pointer-events: none;
	border: solid transparent;
	border-width: 4px;
	border-color: transparent;
	border-bottom-color: var(--color-text-base);
}

fieldset .field-title.open span:before {
	position: absolute;
	top: 50%;
	right: 0;
	width: 0;
	height: 0;
	margin-top: -2px;
	content: ' ';
	pointer-events: none;
	border: solid transparent;
	border-width: 4px;
	border-color: transparent;
	border-top-color: var(--color-text-base);
}

fieldset .field-container {
	padding-top: 20px;
}

fieldset input[type='text'] {
	font-size: 12px;
	width: 100%;
	height: 30px;
	padding: 8px 10px;
	color: var(--color-text-input);
	border: 0;
	outline: none;
	background-color: var(--color-background-input);
}

fieldset .filter-price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

fieldset .filter-cost__addon {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	padding: 0 6px;
	color: #898989;
}

fieldset .filter-price input[type='text'] {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 0 4px;
	text-align: center;
}

fieldset ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

fieldset ul li {
	position: relative;
	margin: 4px;
}

fieldset ul li:hover .filter__label {
	color: rgb(var(--main-color));
}

fieldset ul li:hover .filter__label:before {
	border-color: rgb(var(--main-color));
}

fieldset .ul-checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -4px;
	padding: 0;
	list-style: none;
}

fieldset ul li {
	width: calc(50% - 8px);
}

fieldset.activation .ul-checkbox li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

fieldset.activation .ul-checkbox li a:hover svg {
	color: #fff;
}

fieldset .checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}

fieldset .checkbox input {
	position: absolute;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
}

fieldset .filter__label {
	font-size: 12px;
	font-weight: 400;
	position: relative;
	padding-left: 22px;
	color: #898989;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

fieldset .filter__label:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 16px;
	height: 16px;
	content: '';
	border: 1px solid #898989;
}

fieldset .filter__label:after {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 16px;
	height: 16px;
	content: '';
	background-color: transparent;
}

fieldset .filter__label:after {
	background-color: rgb(var(--main-color));
}

.checkbox input:checked+.filter__label:before,
.checkbox input.checked+.filter__label:before {
	display: none;
}

.checkbox input:checked+.filter__label:after,
.checkbox input.checked+.filter__label:after {
	display: block;
}

.checkbox input:checked+.filter__label,
.checkbox input.checked+.filter__label {
	color: rgb(var(--main-color));
}

.ul-checkbox li [class^='icon-img_'],
.ul-checkbox li [class*=' icon-img_'] {
	width: 22px;
	height: 20px;
	margin-right: 5px;
	background-position: center center;
}

.ul-checkbox li a {
	padding: 4px;
}

.ul-checkbox li a.checked {
	text-decoration: none;
	color: #111;
	border-radius: 2px;
	background-color: rgb(var(--main-color));
}

.ul-checkbox li a:hover {
	text-decoration: none;
	color: #fff;
	border-radius: 2px;
	background-color: rgb(var(--main-color));
}

.ul-checkbox li a:focus {
	text-decoration: none;
	color: #fff;
	outline: none;
}

.ul-checkbox li a span {
	color: #808080;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	border-bottom: 1px dotted;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

.ul-checkbox li a.checked span,
.ul-checkbox li a:hover span {
	text-decoration: none;
	color: #fff;
	border-bottom: 0;
}

.ul-checkbox li a [class^='icon-img_'],
.ul-checkbox li a [class*=' icon-img_'] {
	border-bottom: 0;
}

.filter-reset {
	display: block;
	background-color: rgb(var(--main-color));
	color: #fff;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
	padding: 20px;
}

.filter-reset:hover {
	color: #fff;
}

.ul-checkbox svg {
	position: relative;
	color: #808080;
	width: 22px;
	height: 20px;
	margin-right: 4px;
}

.filter-field.activation .ul-checkbox li a.checked svg {
	color: #fff;
}

/* SORTING */
.catalog-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: var(--color-background-second);
	line-height: 2em;
	padding: 10px 20px;
	margin-bottom: 20px;
}

.catalog-find {
	color: var(--color-text-base);
	font-weight: 500;
}

.catalog-head__sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.select-sort__label {
	color: var(--color-text-base);
}

.catalog-sort-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.catalog-sort-list li {
	margin: 0 2px;
}

.catalog-sort-list li.active a {
	color: #808080;
	background-color: var(--main-color-two);
}

.catalog-sort-list li.active a:hover {
	color: #111;
	background-color: rgb(var(--main-color));
}

.catalog-sort-list li a {
	display: inline-block;
	padding: 0 4px;
	white-space: nowrap;
}

.catalog-sort-list li a:focus {
	text-decoration: none;
	outline: none;
}

.catalog-sort-list li a:hover {
	text-decoration: none;
	color: rgb(var(--main-color));
}

.catalog-sort-list li.active span {
	border-bottom: 0;
}

.catalog-sort-list li.active a:active span {
	color: var(--color-text-base);
}

.catalog-sort-list li.active a:hover span {
	color: #111;
}

.catalog-sort-list li a:hover span {
	color: rgb(var(--main-color));
	border-bottom: 0;
}

.catalog-sort-list li span {
	font-size: 12px;
	font-weight: 600;
	color: #808080;
	border-bottom: 1px dotted;
}

.catalog-sort-list li a.ascendant:after {
	position: relative;
	bottom: 10px;
	width: 0;
	height: 0;
	margin-left: 8px;
	content: '';
	border-width: 0 4px 5px;
	border-style: solid;
	border-color: transparent transparent #808080;
}

.catalog-sort-list li a.ascendant:hover:after {
	border-color: transparent transparent #111;
}

.catalog-sort-list li a.descendant:after {
	position: relative;
	top: 12px;
	width: 0;
	height: 0;
	margin-left: 8px;
	content: '';
	border-width: 5px 4px 0;
	border-style: solid;
	border-color: #808080 transparent transparent;
}

.catalog-sort-list li a.descendant:hover:after {
	border-color: #111 transparent transparent;
}

/* end SORTING */
/* end CATALOG */
/* GOODS */
.product-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	margin-bottom: 40px;
}

.product-main__img {
	width: 40%;
	position: relative;
	display: block;
	padding-top: 19%;
	overflow: hidden;
}

.product-main__img img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-o-object-fit: cover;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.product-main__body {
	width: 35%;
	padding: 0 30px;
}

.product-main__foot {
	width: 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 215px;
	padding: 20px;
	background: var(--color-background-second);
	text-align: center;
}

.product-price__economy span {
	border-bottom: 1px dotted;
}

.product-price__cost {
	font-size: 40px;
	font-weight: 700;
}

.product-price__stock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product-price__stock img {
	margin-right: 5px;
}

.product-main__foot button {
	width: 100%;
}

.product-about__option {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media(max-width: 768px) {
	.product-about__option {
		height: auto;
	}
}

.product-about__option-unit {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 5px 0;
}

.product-about__option-label {
	color: #898989;
	font-weight: 600;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 120px;
	flex: 0 0 120px;
}

.product-about__option-value {
	color: var(--color-text-base);
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.product-desc-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.product-desc__tabs {
	/* width: 70%;
		 */
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.product-desc__tabs .tabs-header {
	-webkit-box-pack: left;
	-ms-flex-pack: left;
	justify-content: left;
}

.product-desc__media {
	width: 30%;
	padding-left: 30px;
}

.product-media {
	position: relative;
}

.product-media__link {
	position: relative;
	width: 100%;
	display: block;
	padding-top: 55%;
	overflow: hidden;
}

.product-media__link img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-o-object-fit: cover;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.product-media__link_video {
	position: relative;
}

.product-media__link_video:before {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 60px;
	height: 60px;
	margin-top: -30px;
	margin-left: -30px;
	content: '';
	background: url(../img/ico-video-play.svg) center center no-repeat;
	background-size: 60px 60px;
	z-index: 1;
}

.product-media__link_video img {
	width: 100%;
}

.product-media .slick-prev,
.product-media .slick-next {
	margin-top: -10px;
}

.product-media__video {
	margin-bottom: 8px;
}

.product-media__screenshots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -4px;
}

.product-media__screenshots .product-media__item {
	width: calc(50% - 8px);
	margin: 4px;
}

@media (min-width: 1200px) {
	.product-desc__tabs .tabs-header a:first-child {
		margin-left: 0;
	}
}

@media (max-width: 1200px) {
	.product-media .slick-prev {
		left: 20px;
	}

	.product-media .slick-next {
		right: 20px;
	}
}

@media(max-width:992px) {
	.product-main {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.product-main__img {
		width: 60%;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.product-main__body {
		background-color: var(--color-background-second);
		padding: 10px 20px;
		width: 100%;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin: 20px 0;
	}

	.product-main__foot {
		width: auto;
		margin-left: 15px;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.product-desc {
		padding-top: 0;
	}
}

@media(max-width:768px) {
	.product-main__img {
		width: 100%;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		padding-top: 46%;
	}

	.product-main__body {
		margin: 15px 0;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.product-main__foot {
		width: 100%;
		margin-left: 0;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin-top: 15px;
	}

	.product-desc-inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.product-desc__tabs {
		width: 100%;
		padding-bottom: 20px;
	}

	.product-desc__tabs .tabs-header {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.product-desc__media {
		width: 100%;
		padding-top: 20px;
		padding-left: 0;
	}

	.product-media__screenshots .product-media__item {
		width: calc(25% - 8px);
		margin: 4px;
	}

	.product-media__screenshots .product-media__item {
		width: calc(50% - 8px);
		margin: 4px;
	}
}

@media(max-width:320px) {
	.product-media__screenshots .product-media__item {
		width: calc(100% - 8px);
		margin: 4px;
	}
}

/* end GOODS */
/* TABS */
#tabs div.tabs,
#tabs_series div.tabs {
	display: none;
}

#tabs div.active,
#tabs_series div.active {
	display: block;
}

.tabs-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 40px;
}

.tabs-header a {
	display: block;
	background-color: transparent;
	color: var(--main-color-color);
	font-weight: 500;
	padding: 10px 22px;
	margin: 0 5px;
	border-color: transparent;
}

.tabs-header a.active {
	background: rgb(var(--main-color));
	color: #fff;
}

.tabs-header a.active:hover {
	color: #fff;
}

.tabs-header a:hover {
	color: rgb(var(--main-color));
}

.tabs ul,
.text_block ul {
	margin: 0 0 1rem 10px;
}

.tabs ul>li:before,
.text_block ul>li:before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 100px;
	background-color: rgb(var(--main-color));
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 3px;
}

.tabs ol,
.text_block ol {
	margin: 0 0 1rem 25px;
}

.tabs ol>li,
.text_block ol>li {
	list-style-type: decimal;
}

@media(max-width:576px) {
	.tabs-header {
		display: block;
	}

	.tabs-header a {
		border-bottom: 1px solid rgba(0, 0, 0, .1);
		margin: 0;
	}
}

/* end TABS */
/* products-list */
.products-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -4px;
}

.catalog-col {
	width: calc(33.33% - 8px);
	margin: 8px;
}

.catalog-card {
	display: block;
	width: 100%;
	position: relative;
	text-align: center;
	overflow: hidden;
	background-color: #111;
}

.catalog-card__inner {
	position: relative;
	width: 100%;
	display: block;
	padding-top: 46%;
	overflow: hidden;
}

.catalog-card__img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-o-object-fit: cover;
	object-fit: cover;
	width: 0;
	min-width: 100%;
	min-height: 100%;
}

.catalog-card:hover .catalog-card__img {
	opacity: .3;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.catalog-card__badge {
	position: absolute;
	display: block;
	top: 8px;
	left: 0;
	height: 25px;
	min-width: 25px;
	max-width: 90%;
	z-index: 5;
}

.catalog-card__badge-icon {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	padding-left: 2px;
}

.catalog-card__badge-icon svg {
	width: 16px;
	height: 16px;
	color: #fff;
}

.catalog-card__badge-icon:before,
.catalog-card__badge-text:before {
	position: absolute;
	top: 0;
	right: -6px;
	display: block;
	content: '';
	border-bottom: 26px solid transparent;
	border-left: 6px solid rgb(var(--main-color));
}

@media screen and (min-width: 1021px) {
	.catalog-card__badge-icon {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 25px;
		height: 25px;
		background-color: rgb(var(--main-color));
		opacity: 1;
	}

	.catalog-card:hover .catalog-card__badge-icon {
		opacity: 0;
	}

	.catalog-card:hover .catalog-card__badge-text {
		opacity: 1;
	}
}

.catalog-card__badge-text {
	display: block;
	line-height: 25px;
	font-weight: 600;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 12px;
	background-color: rgb(var(--main-color));
	opacity: 1;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	width: 100%;
	box-sizing: border-box;
}

@media screen and (min-width: 1021px) {
	.catalog-card__badge-text {
		opacity: 0;
	}
}

.catalog-card__info {
	width: 100%;
	position: absolute;
	bottom: 15px;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 2;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 15px;
}

.catalog-card__info_title {
	color: #fff;
	margin-right: 10px;
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

.catalog-card__info_buy {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.catalog-card__info_buy-sale {
	width: 53px;
	height: 34px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.catalog-card__info_buy-btn {
	width: 80px;
	height: 34px;
	background-color: rgb(var(--main-color));
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
}

.catalog-card:hover .productItem__platforms,
.catalog-card:hover .catalog-card__info_title {
	opacity: 1;
}

.ribbon {
	font-size: 10px;
	font-weight: 600;
	line-height: 25px;
	position: absolute;
	top: 8px;
	right: 0;
	display: block;
	padding: 0 8px 0 6px;
	text-transform: uppercase;
	color: #edf1f2;
	background-color: #cccccc;
}

.ribbon:before {
	position: absolute;
	top: 0;
	left: -6px;
	display: block;
	content: '';
	border-bottom: 26px solid transparent;
	border-right: 6px solid #cccccc;
}

.ribbon.preorder {
	background-color: #e71e62;
}

.ribbon.preorder:before {
	border-right-color: #e71e62;
}

.ribbon.dlc {
	background-color: #9b27ae;
}

.ribbon.dlc:before {
	border-right-color: #9b27ae;
}

.product-main__img .ribbon {
	left: 0;
	right: unset;
	padding: 0 6px 0 8px;
}

.product-main__img .ribbon:before {
	left: unset;
	right: -6px;
	border-right: 0;
	border-left: 6px solid #cccccc;
}

.product-main__img .ribbon.preorder:before {
	border-left-color: #e71e62;
}

.product-main__img .ribbon.dlc:before {
	border-left-color: #9b27ae;
}

.catalog-list.products-list {
	margin: -4px;
}

.catalog-col {
	width: calc(33.33% - 8px);
	margin: 4px;
}

@media(max-width:992px) {
	.catalog-col {
		width: calc(50% - 8px);
	}
}

@media(max-width:550px) {
	.catalog-col {
		width: calc(100% - 8px);
	}
}

/* end products-list */
/* FILTER MOBILE */
.filter__toggle {
	display: none;
}

@media(max-width:992px) {
	section.catalog-bg {
		padding: 20px 0;
	}

	.catalog-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.catalog-wrap__aside {
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.catalog-wrap__main {
		width: 100%;
	}

	.catalog-filter {
		display: none;
	}

	.filter__toggle {
		display: block;
	}

	.filter__btn-toggle {
		position: relative;
		font-size: 12px;
		font-weight: 600;
		line-height: 40px;
		display: block;
		width: 100%;
		height: 40px;
		padding: 0 10px;
		text-align: center;
		vertical-align: bottom;
		text-decoration: none;
		text-transform: uppercase;
		color: #fff;
		border: none;
		background-color: rgb(var(--main-color));
	}

	.filter__btn-toggle:before {
		content: 'Show Filter';
	}

	.filter__btn-toggle:after {
		width: 0;
		height: 0;
		content: ' ';
		display: block;
		position: absolute;
		right: 10px;
		top: 50%;
		margin-top: -3px;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 6px solid #fff;
	}

	.filter__btn-toggle:hover {
		color: #fff;
		background-color: rgb(var(--main-color));
	}

	.filter__btn-toggle_active {
		margin-top: 20px;
	}

	.filter__btn-toggle_active:before {
		content: 'Hide Filter';
	}

	.filter__btn-toggle_active:after {
		border-top: 0;
		border-bottom: 6px solid #fff;
	}

	.catalog-head {
		-ms-flex-flow: wrap;
		flex-flow: wrap;
	}

	.catalog-head .catalog-find {
		width: 100%;
		text-align: center;
	}

	.catalog-head .catalog-head__sort {
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-flow: wrap;
		flex-flow: wrap;
	}

	fieldset ul li {
		width: calc(25% - 8px);
	}

	fieldset .filter__label:after {
		background-color: rgb(var(--main-color));
	}
}

@media(max-width:768px) {
	fieldset ul li {
		width: calc(33.33% - 8px);
	}
}

@media(max-width:576px) {
	.catalog-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.catalog-wrap__aside {
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.catalog-wrap__main {
		width: 100%;
	}

	.select-sort__label {
		width: 100%;
		margin-bottom: 5px;
		text-align: center;
	}

	.catalog-sort-list {
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-flow: wrap;
		flex-flow: wrap;
	}

	fieldset ul li {
		width: calc(50% - 8px);
	}
}

@media(max-width:425px) {
	fieldset ul li {
		width: calc(100% - 8px);
	}
}

/* end FILTER MOBILE */
/* REVIEWS */
.response-loop {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.response-cont {
	background: var(--color-background-second);
	padding: 15px 20px;
	position: relative;
	line-height: 24px;
}

.response-loop.good .response-cont {
	border-left: 3px solid #28b262;
}

.response-loop.bad .response-cont {
	border-left: 3px solid #dd301c;
}

.response-arrow {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 4.5px 0 4.5px;
	border-color: var(--color-background-second) transparent transparent transparent;
	margin-left: 20px;
}

.response-det {
	font-size: 12px;
	color: var(--color-text-base);
}

.bad hr {
	margin: 15px 0;
	border-top: 2px solid #ddd;
}

.main-reviews .reviews-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -8px;
}

.main-reviews .response-loop {
	width: calc(33.33% - 16px);
	margin: 8px;
}

.main-reviews .response-loop .response-cont {
	background-color: var(--color-background);
}

@media(max-width:992px) {
	.main-reviews .response-loop {
		width: calc(50% - 16px);
	}
}

@media(max-width:480px) {
	.main-reviews .response-loop {
		width: calc(100% - 16px);
	}
}

/* end REVIEWS */
/**/
.page-text__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.page-text__vk-widget {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 330px;
	padding-left: 30px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

@media(max-width:992px) {
	.page-text__blocks {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.page-text__content {
		width: 100%;
		margin-bottom: 20px;
	}

	.page-text__vk-widget {
		width: 100%;
		padding-left: 0;
	}
}

/* end */
/* TIMER */
.release-timer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
}

.release-timer-text {
	width: 65%;
	color: var(--color-text-base);
	background-color: var(--color-background-second);
	padding: 22px 35px;
	font-size: 18px;
	line-height: 30px;
	position: relative;
}

.release-timer-time {
	width: 35%;
	padding: 14px 30px 10px;
	color: #fff;
	font-size: 12px;
	background-color: rgb(var(--main-color));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.countdown__divider,
.countdown__item {
	white-space: normal;
	display: inline-block;
	vertical-align: top
}

.countdown__item {
	min-width: 42px
}

.countdown__value {
	display: block
}

.countdown__divider {
	margin: 0 3px
}

.countdown__divider,
.countdown__value {
	font-weight: 700;
	font-size: 34px;
	line-height: 30px
}

@media(max-width:992px) {
	.release-timer {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.release-timer-text {
		width: 100%;
	}

	.release-timer-time {
		width: 100%;
	}
}

/* end TIMER */
.id_link {
	background-color: rgb(var(--main-color));
	color: #fff;
	padding: 15px 20px;
	display: table;
	margin: 0 auto;
}

.warranty-list .warranty-list__item {
	margin-bottom: 15px;
	background: var(--color-background-second);
	position: relative;
	width: 100%;
	padding: 28px 32px;
}

.warranty-list__item h2 {
	text-align: left;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	color: var(--color-text-base);
	letter-spacing: .5px;
	line-height: 28px;
	margin-bottom: 0;
}

.warranty-list__item p {
	margin: 0;
	padding-top: 6px;
	font-size: 13px;
	font-weight: 400;
	color: var(--color-text-base);
	letter-spacing: 0;
	line-height: 20px;
}

.mainInfo__img img {
	border-radius: 5px;
	border: 2px solid rgb(var(--main-color));
}

.cpuz {
	font-size: 12px;
	margin-top: 20px;
}

table {
	width: 100%;
}

table>tbody>tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #ddd;
	padding: 8px 0;
}

table>tbody>tr:last-child {
	border-bottom: 0;
}

th {
	text-align: left;
}

table>tbody>tr>th {
	width: 25%;
	font-weight: 600;
}

table>tbody>tr>td {
	width: 75%;
}

.disabled {
	pointer-events: none;
}

.tabs p {
	-webkit-margin-before: 1em;
	margin-block-start: 1em;
	-webkit-margin-after: 1em;
	margin-block-end: 1em;
}

/* SEO Catalog */
.seo-data {
	display: none;
	margin-bottom: 20px;
}

.seo-data h1 {
	display: none;
	font-weight: normal;
	margin-bottom: 10px;
}

/* end SEO Catalog */
.example {
	display: -ms-grid;
	display: grid;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
	background: -o-linear-gradient(top, white, black);
	background: linear-gradient(to bottom, white, black);
}

.formatting h3 {
	font-weight: 700;
	margin-bottom: 1rem;
}

.formatting ol {
	padding-left: 40px;
	margin-bottom: 1rem;
}

.formatting ol,
.formatting ol li {
	list-style-type: decimal;
}

.formatting ul {
	padding-left: 40px;
	margin-bottom: 1rem;
}

.formatting ul,
.formatting ul li {
	list-style-type: disc;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}

.form-control {
	display: block;
	width: 100%;
	font-size: 14px;
	padding: 6px 12px;
	border-radius: 4px;
}