@charset "UTF-8";

/* ROOT */
:root{
	--color-main: #fc6f04;
}
/* 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{
	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, label {
	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 {
	position: relative;
	background-color: #1a1c21;
	color: #fefefe;
	font-family: 'Play', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
}
svg {
	display: block;
	transition: all 0.2s;
	color: #fefefe;
}
a {
	transition: all 0.2s;
	text-decoration: none;
	color: #fefefe;
}
a:hover {
	color: var(--color-main);
	text-decoration: none;
}
span {
	transition: all 0.2s;
}
p {
	margin: 0 0 10px;
}
b, strong {
	font-weight: 700;
}
i, em {
	font-style: italic;
}
.container {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 30px;
}
.center {
	text-align: center;
}
@media (max-width: 992px) {
	.container {
		padding: 0 15px;
	}
}
/* BTN */
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: max-content;
	background-color: var(--color-main);
	color: #fff;
	height: 46px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	padding: 0 30px;
	border: 2px solid var(--color-main);
	border-radius: 3px;
}
.btn:hover {
	background: var(--color-main);
	color: #fff;
}
.btn-center {
	margin: 0 auto;
}
.btn-primary {
	background: var(--color-main);
	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-load[data-hide="true"] {display: none;}
/* end BTN */
/* ALERTS */
.alert, attention, delivery, .warning {
	display: block;
	background-color: #181818;
	color: #787878;
	line-height: 22px;
	width: 100%;
	font-weight: 700;
	padding: 15px 20px;
	margin-bottom: 15px;
}
.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: #111;
}
.alert-gray {
	background-color: #f3f3f3;
	color: var(--color-text-base);
}
.alert h2 {
	font-weight: 600;
}
.alert a {
	text-decoration: underline;
}
/* end ALERTS */
/* HEADER */
header {
	position: fixed;
	background-color: #21242a;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
	box-shadow: 0 0 20px 1px #1d2021;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 70px;
	padding: 15px 0;
}
.header-left {
	display: flex;
	align-items: center;
	margin-right: 15px;
}
.header-right {
	display: flex;
	align-items: center;
}
.logo {
	display: block;
	margin-right: 40px;
}
.social {
	margin-right: 40px;
}
.header__nav {
	position: relative;
	display: block;
}
.nav-toggle {
	position: relative;
	display: none;
	background: var(--color-main);
	width: 40px;
	height: 40px;
	padding: 0;
	cursor: pointer;
	border: none;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	border-radius: 5px;
}
.nav-toggle__bar {
	position: absolute;
	top: 12px;
	left: 50%;
	display: block;
	width: 24px;
	height: 2px;
	margin-left: -12px;
	transition: all .3s ease-in-out;
	background-color: #fff;
}
.nav-toggle__bar:nth-child(2) {
	top: 19px;
}
.nav-toggle__bar:nth-child(3) {
	top: 26px;
}
.header__nav_open .nav-toggle__bar:nth-child(1), .header__nav_open .nav-toggle__bar:nth-child(3), .nav-toggle_active .nav-toggle__bar:nth-child(1), .nav-toggle_active .nav-toggle__bar:nth-child(3) {
	top: 19px;
}
.header__nav_open .nav-toggle__bar:nth-child(1), .nav-toggle_active .nav-toggle__bar:nth-child(1) {
	transform: rotate(225deg);
}
.header__nav_open .nav-toggle__bar:nth-child(2), .nav-toggle_active .nav-toggle__bar:nth-child(2) {
	transform: scale(0);
}
.header__nav_open .nav-toggle__bar:nth-child(3), .nav-toggle_active .nav-toggle__bar:nth-child(3) {
	transform: rotate(-225deg);
}
.nav {
	display: flex;
	flex-wrap: wrap;
}
.dropbtn {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	color: #fff;
	border: none;
	cursor: pointer;
	padding: 10px;
	white-space: nowrap;
}
.dropbtn svg {
	color: #737578;
	margin-left: 10px;
	-webkit-transform: scale(1,-1);
	-ms-transform: scale(1,-1);
	transform: scale(1,-1);
}
.dropbtn:hover svg, .dropbtn:focus svg {
	color: var(--color-main);
}
.dropbtn:hover, .dropbtn:focus {
	background-color: transparent;
	color: var(--color-main);
}
.dropdown {
	position: relative;
}
.dropdown-content {
	display: none;
	position: absolute;
	/*left: 0;*/
	right: 0;
	background-color: #2a2d33;
	/*min-width: 160px;*/
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content:before {
	position: absolute;
	top: -6px;
	right: 50%;
	margin-right: -5px;
	display: block;
	content: '';
	border-right: 5px solid transparent;
	border-bottom: 6px solid #2a2d33;
	border-left: 5px solid transparent;
}
.dropdown-content a {
	color: #fff;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover {background-color: var(--color-main);}
.show {display:block;}
.login {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-main);
	color: #fff;
	height: 40px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 5px;
	text-transform: uppercase;
	padding: 0 20px;
}
.login svg {
	margin-right: 10px;
}
.login:hover {
	color: #fff;
	box-shadow: 0 0 20px 1px rgb(242 105 1 / 33%);
}
@media (max-width: 1300px) {
	.nav-toggle {
		display: flex;
	}
	.header-right .social {
		display: none;
	}
	.header-left {
		justify-content: space-between;
		width: 100%;
	}
	.top-menu {
		position: absolute;
		z-index: 600;
		top: 100%;
		right: 0;
		display: flex;
		flex-direction: column;
		visibility: hidden;
		padding: 0;
		transition: all .2s;
		transform: translateY(0);
		opacity: 0;
		background-color: #2a2d33;
		box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
		border-radius: 2px;
	}
	.header__nav_open .top-menu {
		visibility: visible;
		transform: translateY(8px);
		opacity: 1;
	}
	.top-menu:before {
		position: absolute;
		top: -8px;
		right: 14px;
		display: block;
		content: '';
		border-right: 6px solid transparent;
		border-bottom: 8px solid #2a2d33;
		border-left: 6px solid transparent;
	}
	header .top-menu>li {
		padding: 0;
	}
	.top-menu>li>a {
		display: block;
		color: #fff;
		font-weight: 500;
		text-transform: uppercase;
		text-decoration: none;
		padding: 10px 15px;
		white-space: nowrap;
		border-bottom: 1px solid #21242a;
	}
	.top-menu>li:last-child>a {
		border: 0;
	}
	.top-menu>li>a:hover {
		background-color: #21242a;
	}
}
@media (max-width: 576px) {
	.profile {
		width: 100%;
	}
	.dropbtn {
		margin: 0 auto;
	}
	.dropdown-content {
		left: 0;
	}
}
/* end HEADER */
/*  */
main {
	margin: 100px 0 30px 0;
}
.page-header {
	text-align: center;
}
.page-header .bread {
	font-size: 13px;
	color: #737578;
}
.page-header .bread a {
	color: #737578;
	text-decoration: none;
}
.page-header .bread a:hover {
	color: var(--color-main);
}
.page-header h1 {
	color: #2a2d33;
	font-size: 70px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	text-overflow: ellipsis;
}
.main {
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-top: -27px;
}
.filter {
	position: sticky;
	top: 70px;
	background-color: #21242a;
	width: 300px;
	padding: 10px 25px 0 25px;
	margin-right: 2px;
}
.filter__search {
	position: relative;
	cursor: text;
}
#menu-search {
	display: block;
	width: 100%;
	height: 35px;
	background-color: #2a2d33;
	color: #fff;
	border-radius: 3px;
	padding: 0 10px 0 35px;
}
.filter__search svg {
	position: absolute;
	top: 10px;
	left: 10px;
	color: #8e9191;
}
#menu-search:focus {
	background-color: #353840;
}
.filter__block {
	padding: 15px 0 20px 0;
	border-bottom: 2px solid #2a2d33;
}
.filter__block:last-child {
	border-bottom: 0;
}
.filter__block-head {
	position: relative;
	cursor: pointer;
}
.filter__block-head: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: #fff;
}
.filter__block-head.open: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: #fff;
}
.filter__block-content {
	margin-top: 10px;
}
.filter-reset {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2a2d33;
	color: #fff;
	height: 40px;
	font-size: 12px;
	border-radius: 5px;
	text-transform: uppercase;
	padding: 0 20px;
	margin: 20px 0;
}
.filter-reset:hover {
	background-color: var(--color-main);
	color: #fff;
}
.range__inputs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
}
.range__inputs label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 12px 0;
	height: 45px;
	background-color: #2a2d33;
	border-radius: 3px;
	flex: 1;
	color: #fff;
	font-size: 12px;
	position: relative;
	cursor: text;
}
.range__inputs label:focus-within {
	background-color: #353840;
}
.range__inputs label span {
	color: #747778;
	position: absolute;
	top: 5px;
	left: 12px;
}
.range__inputs label input {
	width: 100%;
	color: #fff;
	font-weight: 600;
	padding: 0;
	border: 0;
	background-color: transparent;
	box-shadow: none;
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.range__inputs label:first-child {
	margin-right: 5px;
}
.range__inputs label:last-child {
	margin-left: 5px;
}
.range_block {
	font-weight: 600;
	min-height: 120px;
}
.checks {
	flex-direction: column;
}
.checks .checkbox label {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 0;
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	input[type=checkbox],
	input[type=radio] {
		--active: var(--color-main);
		--active-inner: #fff;
		--focus: 2px rgba(252, 111, 4, 0.3);
		--border: #b5b6b7;
		--border-hover: #fff;
		--background: transparent;
		--disabled: #f6f8ff;
		--disabled-inner: #e1e6f9;
		-webkit-appearance: none;
		-moz-appearance: none;
		height: 16px;
		outline: none;
		display: inline-block;
		vertical-align: top;
		position: relative;
		margin: 0;
		cursor: pointer;
		border: 1px solid var(--bc, var(--border));
		background: var(--b, var(--background));
		transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
	}
	input[type=checkbox]:after,
	input[type=radio]:after {
		content: "";
		display: block;
		left: 0;
		top: 0;
		position: absolute;
		transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
	}
	input[type=checkbox]:checked,
	input[type=radio]:checked {
		--b: var(--active);
		--bc: var(--active);
		--d-o: 0.3s;
		--d-t: 0.6s;
		--d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
	}
	input[type=checkbox]:disabled,
	input[type=radio]:disabled {
		--b: var(--disabled);
		cursor: not-allowed;
		opacity: 0.9;
	}
	input[type=checkbox]:disabled:checked,
	input[type=radio]:disabled:checked {
		--b: var(--disabled-inner);
		--bc: var(--border);
	}
	input[type=checkbox]:disabled + label,
	input[type=radio]:disabled + label {
		cursor: not-allowed;
	}
	input[type=checkbox]:hover:not(:checked):not(:disabled),
	input[type=radio]:hover:not(:checked):not(:disabled) {
		--bc: var(--border-hover);
	}
	input[type=checkbox]:focus,
	input[type=radio]:focus {
		box-shadow: 0 0 0 var(--focus);
	}
	input[type=checkbox]:not(.switch),
	input[type=radio]:not(.switch) {
		width: 16px;
	}
	input[type=checkbox]:not(.switch):after,
	input[type=radio]:not(.switch):after {
		opacity: var(--o, 0);
	}
	input[type=checkbox]:not(.switch):checked,
	input[type=radio]:not(.switch):checked {
		--o: 1;
	}
	input[type=checkbox] + label,
	input[type=radio] + label {
		font-size: 14px;
		line-height: 21px;
		display: inline-block;
		vertical-align: top;
		cursor: pointer;
		margin-left: 4px;
	}

	input[type=checkbox]:not(.switch) {
		border-radius: 2px;
		margin-top: -2px;
	}
	input[type=checkbox]:not(.switch):after {
		width: 5px;
		height: 8px;
		border: 2px solid var(--active-inner);
		border-top: 0;
		border-left: 0;
		left: 5px;
		top: 2px;
		transform: rotate(var(--r, 20deg));
	}
	input[type=checkbox]:not(.switch):checked {
		--r: 43deg;
	}
	input[type=checkbox].switch {
		width: 38px;
		border-radius: 11px;
	}
	input[type=checkbox].switch:after {
		left: 2px;
		top: 2px;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		background: var(--ab, var(--border));
		transform: translateX(var(--x, 0));
	}
	input[type=checkbox].switch:checked {
		--ab: var(--active-inner);
		--x: 17px;
	}
	input[type=checkbox].switch:disabled:not(:checked):after {
		opacity: 0.6;
	}

	input[type=radio] {
		border-radius: 50%;
	}
	input[type=radio]:after {
		width: 19px;
		height: 19px;
		border-radius: 50%;
		background: var(--active-inner);
		opacity: 0;
		transform: scale(var(--s, 0.7));
	}
	input[type=radio]:checked {
		--s: 0.5;
	}
}

.checks .checkbox span {
	color: #b5b6b7;
	margin-left: 10px;
}
.checks .checkbox:hover span {
	color: #fff;
}
.sorting {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #21242a;
	min-height: 70px;
	padding: 0 30px;
	margin-bottom: 2px;
}
.js-sorting {
	display: flex;
}
.sort-btn {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-left: 15px;
}
.sort-btn input {
	display: none!important;
}
.sort-btn svg {
	display: none;
	color: #fff;
	margin-right: 5px;
	-webkit-transform: scale(1,-1);
	-ms-transform: scale(1,-1);
	transform: scale(1,-1);
}
.sort-btn.active svg {
	display: block;
}
.sort-btn.reverse svg {
	-webkit-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}
.sort-btn.active, .sort-btn.active svg {
	color: var(--color-main);
}
.content {
	display: flex;
	flex: 1 1;
	flex-direction: column;
}
.catalog_load {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
	-webkit-column-gap: 2px;
	column-gap: 2px;
	row-gap: 2px;
}
.catalog-col {
	position: relative;
}
.catalog-col:hover {
	box-shadow: 0 0 20px 1px #1d2021;
	z-index: 4;
}
.catalog-card {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #2a2d33;
	padding: 20px;
	z-index: 3;
}
.catalog-card.weapon .card-type {
	color: #f15840;
}
.catalog-card.armor .card-type {
	color: #a7ec2e;
}
.catalog-card.clothing .card-type {
	color: #a7ec2e;
}
.catalog-card.misc .card-type {
	color: #35a3f1;
}
.catalog-card.game .card-type {
	color: var(--color-main);
}
.catalog-card:hover {
	color: #fff;
}
.catalog-col:hover .catalog-card {
	background-color: #3d3f47;
	transform: translateY(-25px);
	transition: transform .2s ease,.2s filter ease,background-color .2s ease,box-shadow .2s ease,.2s -webkit-filter ease;
}
.card-img {
	position: relative;
	width: 100%;
	height: 120px;
	padding: 0 50px;
	margin: 10px auto 20px auto;
}
.card-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.card-priceg {
	display: flex;
	align-items: center;
}
.card-discount {
	background-color: var(--color-main);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 3px;
	padding: 2px 10px;
	margin-left: 12px;
}
.card-price {
	font-size: 24px;
	font-weight: 600
}
.card-title {
	font-size: 16px;
	font-weight: 600;
}
.card-cat {
	color: #8e9191;
	font-size: 12px;
}
.card-buy {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 0 0 5px 5px;
	background: var(--color-main);
	z-index: 2;
	transition: transform .2s ease,z-index 0s;
	text-transform: uppercase;
	font-weight: 600;
}
.card-buy:hover {
	color: #fff;
}
.catalog-col:hover .card-buy {
	transform: translateY(25px);
	transition: transform .2s ease,z-index 0s .2s;
	z-index: 5;
}
.load {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	background-color: #21242a;
	text-transform: uppercase;
	margin-top: 2px;
}
.load:hover {
	background-color: var(--color-main);
	color: #fff;
}
.filter__toggle {
	display: none;
}
.filter__toggle-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-main);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	width: 100%;
	height: 40px;
	padding: 0 10px;
	text-align: center;
	vertical-align: bottom;
	text-decoration: none;
	text-transform: uppercase;
	border: none;
}
.filter__toggle-btn:before {
	content: 'Показать фильтр';
}
.filter__toggle-btn_active:before {
	content: 'Скрыть фильтр';
}
.filter__toggle-btn:after {
	content: ' ';
	display: block;
	position: absolute;
	right: 24px;
	top: 50%;
	margin-top: -2px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
}
.filter__toggle-btn_active:after {
	border-top: 0;
	border-bottom: 6px solid #fff;
}
@media (max-width: 992px) {
	.page-header {
		margin-bottom: 15px;
	}
	.page-header h1 {
		font-size: 27px;
	}
	.main {
		flex-direction: column;
		margin-top: 0;
	}
	.filter__toggle {
		display: block;
		width: 100%;
		margin-bottom: 2px;
	}
	.filter {
		position: static;
		top: auto;
		display: none;
		width: 100%;
		margin-bottom: 2px;
	}
	.content {
		width: 100%;
	}
}
@media (max-width: 576px) {
	.header {
		flex-direction: column;
		align-items: normal;
		justify-content: center;
	}
	.header-left {
		justify-content: space-between;
		margin-bottom: 15px;
	}
	main {
		margin: 140px 0 30px 0;
	}
	.sorting {
		flex-direction: column;
		justify-content: center;
	}
	.total {
		margin-bottom: 5px;
	}
}
/* end */
/**/
.page {
	margin-top: 50px;
}
.wrapper {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
}
.warranty-list{
	display:flex;
	flex-flow:row wrap
}
.warranty-list>li {
	display:block;
	position:relative;
	width:33.3333%;
	padding: 5px 50px 0 75px;
	margin-bottom:50px
}
.warranty-list>li:before{
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	background-repeat: no-repeat;
}
.warranty-list>li>h3{
	color:var(--color-main);
	font-size:18px;
	font-weight:600;
	margin-bottom:20px
}
.warranty-list>li>p{
	font-size:14px;
}
.warranty-list>li a{
	color:var(--color-main);
	text-decoration:none
}
.warranty-list>li a:hover{
	border-bottom:1px solid var(--color-main)
}
.sup-icon>ul>li {
	position: relative;
	padding-left: 15px;
}
.sup-icon>ul>li:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	display: block;
	width: 6px;
	height: 6px;
	background-color: var(--color-main);
}
.warranty-list .wm-icon:before {
	background-image: url(../img/warranty/certificate.svg);
	width: 33px;
	height: 33px;
	top: 4px;
}
.warranty-list .time-icon:before {
	background-image: url(../img/warranty/clock.svg);
	width: 32px;
	height: 32px;
	top: 2px;
}
.warranty-list .qw-icon:before {
	background-image: url(../img/warranty/wallet.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.warranty-list .ya-icon:before {
	background-image: url(../img/warranty/delivery.svg);
	width: 36px;
	height: 36px;
	top: 1px;
}
.warranty-list .sup-icon:before {
	background-image: url(../img/warranty/avatar.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.warranty-list .rev-icon:before {
	background-image: url(../img/warranty/feedback.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.warranty-list .ite-icon:before {
	background-image: url(../img/warranty/shopping-cart.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.warranty-list .dea-icon:before {
	background-image: url(../img/warranty/handshake.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.advantages {
	display: flex;
	flex-flow: row wrap;
	margin-top: 50px;
}
.advantages__item {
	position: relative;
	width: 33.3333%;
	padding: 5px 50px 0 75px;
	margin-bottom: 50px;
}
.advantages__item h3 {
	color: var(--color-main);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}
.advantages__item p {
	font-size: 14px;
}
.advantages__item:before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	background-repeat: no-repeat;
}
.safety-icon:before {
	background-image: url(../img/howitworks/security.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.profit-icon:before {
	background-image: url(../img/howitworks/profit.svg);
	width: 34px;
	height: 34px;
	top: 2px;
}
.speed-icon:before {
	background-image: url(../img/howitworks/rocket.svg);
	width: 33px;
	height: 33px;
	top: 2px;
}
.hiw-title {
	color: var(--color-main);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.hiw__list>li {
	margin-bottom: 30px;
}
.hiw__list h3 {
	color: var(--color-main);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
.tradeoffer {
	display: flex;
	align-items: center;
}
.tradeoffer_input {
	display: block;
	width: 100%;
	height: 46px;
	background-color: #2a2d33;
	color: #fff;
	padding: 0 15px;
}
.tradeoffer .btn {
	border-radius: 0;
}
.link {
	color: var(--color-main);
}
.link:hover {
	border-bottom: 1px solid var(--color-main);
}
.sup_img {
	display: block;
	margin: 20px auto 0 auto;
	border-radius: 5px;
	overflow: hidden;
}
@media (max-width: 992px) {
	.warranty-list>li, .advantages__item {
		padding-top: 50px;
		padding-left: 15px;
		padding-right: 15px;
		text-align: center;
	}
	.warranty-list>li:before, .advantages__item:before {
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@media (max-width: 768px) {
	.warranty-list>li, .advantages__item {
		width: 100%;
	}
}
@media (max-width: 576px) {
	.tradeoffer {
		flex-direction: column;
	}
	.tradeoffer_input {
		margin-bottom: 10px;
	}
}
/* FOOTER */
footer {
	background-color: #21242a;
	padding: 25px 0;
	margin-top: 2px;
}
.footer__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
.footer__description {
	color: #737578;
}
.nav li {
	display: inline-block;
	padding: 0 15px;
	text-transform: uppercase;
}
header .nav li:first-child {
	padding-left: 0;
}
footer .nav:not(.social-links) li:first-child {
	padding-left: 0;
}
footer .nav:not(.social-links) li a {
	color: #fff;
}
footer .nav:not(.social-links) li a:hover {
	color: var(--color-main);
}
footer .nav.social-links li:last-child {
	padding-right: 0;
}
.social-links li {
	padding: 0 10px;
}
.social-links a svg {
	color: #737578;
	width: 18px;
	height: 18px;
}
.social-links a:hover svg {
	color: var(--color-main);
	transform: scale(1.5);
}
.footer__about {
	margin-bottom: 40px;
}
.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ytstyle {
	color: #737578;
}
.ytstyle span {
	color: var(--color-main);
}
.copyright {
	display: flex;
}
.copyright-email {
	margin-left: 5px;
}
@media (max-width: 992px) {
	.footer__nav {
		flex-direction: column;
		margin-bottom: 25px;
	}
	.footer__nav .nav:first-child {
		margin-bottom: 20px;
	}
	footer .nav {
		align-items: center;
		justify-content: center;
	}
	footer .nav li {
		padding: 10px 15px;
	}
	.social-links li {
		padding: 10px;
	}
	footer .nav:not(.social-links) li:first-child {
		padding-left: 15px;
	}
	footer .nav.social-links li:last-child {
		padding-right: 10px;
	}
	.footer__bottom {
		flex-direction: column;
	}
	.copyright {
		margin-bottom: 15px;
	}
}
@media (max-width: 576px) {
	.copyright {
		display: block;
	}
	.copyright-email {
		margin-left: 0;
		margin-top: 15px;
	}
}
/* end FOOTER */
#back-to-top{
	display:flex;
	align-items:center;
	justify-content:center;
	position:fixed;
	z-index:100;
	bottom:25px;
	right:-50px;
	width:50px;
	height:50px;
	cursor:pointer;
	transition:all .4s ease 0s;
	text-align:center;
	text-decoration:none;
	background-color: var(--color-main);
	-webkit-box-shadow:0 0 7.5px 2.5px rgba(0,0,0,.1);
	box-shadow:0 0 7.5px 2.5px rgba(0,0,0,.1);
	border-radius: 50%;
}
#back-to-top svg {
	color: #fff
}
#back-to-top:hover {
	background-color: var(--color-main);
}
#back-to-top:hover svg {
	color: #fff
}
#back-to-top.visible{
	right: 25px
}
#back-to-top.gone{
	right: -50px
}
/* SCROLL AND SELECT */
::-moz-selection {
	background-color: var(--color-main);
	color: #fff;
	text-shadow: none;
}
::selection {
	background-color: var(--color-main);
	color: #fff;
	text-shadow: none;
}
::-webkit-scrollbar-track {
	background: #fff;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-thumb {
	background-color: var(--color-main);
	cursor: pointer;
}
/* end SCROLL AND SELECT */