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

*:hover,
*:active,
*:focus,
*:visited {
	-webkit-tap-highlight-color: transparent;
}

:root {
	--white: #FFFFFF;
	--black: #000000;
	--dark-grey: #666666;
	--light-grey: #999CA4;
	--green: #27AE60;
	--blue-1: #339BEA;
	--blue-2: #0567C9;
	--blue-3: #91CCF6;
	--blue-4: linear-gradient(180deg, #167AD4 42%, #0E75DC 48.71%, #0567C9 50%);
	--blue-5: linear-gradient(180deg, #136FC2 42%, #046AD0 48.71%, #075BB0 50%);
	--blue-6: #075CB0;
	--light-1: #F5F5F7;
	--light-2: #EBECED;
	--light-3: #E1E1E1;
	--light-4: #F2F2F2;
	--other-1: #AEC4D9;
	--other-2: #62B2F2;
	--other-3: #3B3E47;
	--other-4: #EB5757;
	--other-5: #E0E0E0;
	--second-family: 'PT Root UI';
}

html {}

body {
	font-family: 'MADE Evolve Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.15;
    margin: 0;
    padding: 0;
	background-color: var(--white-color);
}

b, strong {
    font-weight: 500;
}

a {
	text-decoration: none;
}

ul,
ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

p {
	line-height: 22px;
	font-size: 16px;
	margin-bottom: 10px;
}

.container {
	max-width: 1715px;
	padding: 0 20px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.img-fluid {
	width: 100%;
	height: auto;
}

.p-0 {
	padding: 0;
}

/*
	GENERAL
*/
.no-oveflow {
	overflow: hidden;
}
.city {}
.city__link {
	color: var(--black);
    position: relative;
    background-image: url(../img/icons/location.svg);
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 26px;
}

.logo {}
.logo__src {}

.open__catalog {}
.open__catalog-link {
	line-height: 19px;
	text-transform: uppercase;
	letter-spacing: 1.05px;
	font-weight: 700;
	padding: 16px 33px 15px 61px;
	position: relative;
	background: var(--blue-4);
	border-radius: 2px;
	color: var(--white);
	display: inline-block;
}
.open__catalog-link:after {
	content: '';
	position: absolute;
    left: 33px;
    top: calc(50% - 6px);
	width: 18px;
	height: 12px;
	background-image: url(../img/icons/hamburger.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.seo__text {
	padding-top: 50px;
	line-height: 1.4;
	color: var(--dark-grey);
}

.content {
	display: flex;
	margin: 0 -20px;
}
.sidebar {
    flex: 0;
    max-width: 340px;
    flex-basis: 340px;
    padding: 0 20px;
}
.article {
	flex: 1 1 100%;
	max-width: 100%;
	padding: 0 20px;
}

.short {
	max-width: 1130px;
}

.show__list-hide {
	display: none !important;
}

.divider__10 {
	height: 10px;
}
.divider__20 {
	height: 20px;
}
.divider__30 {
	height: 30px;
}
.divider__40 {
	height: 40px;
}
.divider__50 {
	height: 50px;
}

.mw-450 {
    max-width: 400px;
    width: 100vw;
}
.show__more {
	display: none;
    border-top: 1px solid #F2F2F2;
    margin-top: 20px;
}
.show__more-link {
	background: var(--light-1);
    border-radius: 2px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: var(--black);
    padding: 15px 0;
}
.rub {
	font-family: var(--second-family);
}
/*
	END GENERAL
*/


/*
	DROPDOWN
*/
.dropdown {
	position: relative;
}
.dropdown__selected {
	background-image: url(../img/icons/dropdown.svg);
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 20px;
	font-weight: 300;
	font-size: 16px;
	line-height: 40px;
	text-align: right;
	color: var(--black);
	cursor: pointer;
}
.dropdown__list {
	display: none;
	background: var(--white);
	box-shadow: 0px 10px 25px rgba(237, 237, 237, 0.5);
	border-radius: 2px;
    position: absolute;
    right: 0;
    z-index: 10;
    text-align: left;
	width: max-content;
}
.dropdown__item {}
.dropdown__link {
	padding: 10px 31px 8px 51px;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
	transition: 1s;
	display: block;
	background-image: url(../img/icons/dropdown_unactive.svg);
	background-repeat: no-repeat;
	background-position: 15px center;
}
.dropdown__link.active {
	background-image: url(../img/icons/dropdown_active.svg);
}
.dropdown__link:hover {
	background-color: var(--light-1);
}
/*
	END DROPDOWN
*/


/*
	MENUS
*/
.menu__list {
	display: flex;
}
.menu__list-item:not(:last-child) {
	margin-right: 40px;
}
.menu__list-link {
	color: var(--black);
	padding-bottom: 18px;
	border-bottom: 2px solid transparent;
	transition: 1s;
}
.menu__list-link:hover {
	color: var(--light-grey);
}
.menu__list-link.active {
	color: var(--blue-2);
	border-bottom: 2px solid var(--blue-2);
}

.menu__sections {
	padding-bottom: 45px;
}
.menu__sections-item {
	margin-bottom: 35px;
}
.menu__sections-link {
	font-weight: 700;
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--black);
}

.menu__categories-box {
	margin-bottom: 40px;
}
.menu__categories-title {
	font-weight: bold;
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: var(--black);
	position: relative;
}
.menu__categories {}
.menu__categories-item {
	margin-bottom: 8px;
}
.menu__categories-link {
	line-height: 1.4;
	color: var(--black);
	transition: 1s;
}
.menu__categories-link:hover {
	color: var(--blue-2);
}

.menu__section {
	padding-bottom: 30px;
}
.menu__section-parent {
	margin-bottom: 10px;
}
.menu__section-second {
	padding-left: 20px;
	margin-bottom: 10px;
}
.menu__section-link {
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
}
span.menu__section-link {
	font-weight: bold;
	font-size: 16px;
	line-height: 29px;
	color: var(--black);
}

.menu__cabinet {}
.menu__cabinet-item {
	margin-bottom: 20px;
}
.menu__cabinet-link {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--black);
}
.menu__cabinet-link:hover,
.menu__cabinet-link.active {
	color: var(--blue-2);
}
/*
	END MENUS
*/


/*
	FANCYBOX
*/
.fancybox-slide--html .fancybox-close-small {
	right: 10px;
	top: 10px;
	color: var(--light-grey);
	height: 50px;
	width: 50px;
	padding: 0;
	transition: color 1s;
}
.fancybox-slide--html .fancybox-close-small:hover {
	color: var(--blue-2);
}
/*
	END FANCYBOX
*/


/*
	SLICK
*/
.slick-prev, .slick-next {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--white);
	box-shadow: 0px 10px 25px rgba(130, 130, 130, 0.15);
	transition: 1s;
	top: 35%;
    z-index: 10;
}
.slick-prev:hover:before, .slick-next:hover:before {
	background-image: url(../img/icons/navigation-blue.svg);
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 29px;
}
.slick-prev:before,
.slick-next:before {
	content: '';
	position: absolute;
	width: 9px;
	height: 16px;
	opacity: 1;
    top: calc(50% - 8px);
    left: calc(50% - 3px);
	background-image: url(../img/icons/navigation.svg);
	background-position: center;
}
.slick-prev:before {
	transform: rotate(180deg);
	left: calc(50% - 5px);
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: rgb(255 255 255 / 50%);
}
.slick-disabled {
	opacity: 0;
}
/*
	END SLICK
*/


/*
	TITLES
*/
.section__title {
	font-weight: normal;
	font-size: 40px;
	line-height: 140%;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding-bottom: 60px;
}
.section__title-v2 {
	padding-bottom: 35px;
}
.section__title.center {
	text-align: center;
}
.title__h1 {
	font-weight: normal;
	font-size: 40px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--black);
	margin-top: 0;
	margin-bottom: 40px;
}
.title__h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 120%;
	margin-top: 0;
	margin-bottom: 26px;
}
.title__h3 {
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	color: var(--black);
	margin-bottom: 20px;
	margin-top: 0;
}
.title__h4 {
	font-weight: bold;
	font-size: 16px;
	line-height: 100%;
	color: var(--black);
	margin-bottom: 20px;
	margin-top: 0;
}
.title__center {
	text-align: center;
}
/*
	END TITLES
*/


/*
	BREADCRUMBS
*/
.breadcrumbs {
	margin-bottom: 20px;
}
.breadcrumbs__list {
	display: flex;
}
.breadcrumbs__item {
	font-size: 14px;
	line-height: 1.4;
}
.breadcrumbs__item:not(:last-child) {
	margin-right: 5px;
}
.breadcrumbs__item-link {
	color: var(--light-grey);
}
.breadcrumbs__item a:hover {
	color: var(--blue-2);
	transition: .5s;
}
span.breadcrumbs__item-link {
	cursor: default;
}
.breadcrumbs__item-separator {
	padding-left: 5px;
	color: var(--light-grey);
}
.back {
	display: none;
	margin-bottom: 10px;
}
.back a {
    font-size: 12px;
    background-image: url(../img/icons/arrow-left-4.svg);
    background-repeat: no-repeat;
    background-position: left center;
	background-size: 5px;
    padding-left: 15px;
}
/*
	BREADCRUMBS
*/


/*
	LINKS
*/
.link-border-bottom {
	border-bottom: 1px solid;
}
.link-v1 {
	font-weight: 500;
	font-size: 22px;
	line-height: 25px;
	color: #000000;
	transition: 1s;
}
.link-v2 {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 15px 20px;
	color: var(--white);
	border: 1px solid var(--white);
	border-radius: 2px;
	display: inline-block;
}
.link-v3 {
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
}
.link-v3:hover {
	color: var(--blue-2);
	transition: 1s;
}
.link-v4 {
	font-size: 16px;
	line-height: 22px;
	color: var(--blue-2);
}
.contacts__email a:hover {
	border-bottom: 1px solid rgba(5, 103, 201, .3);;
	transition: 	opacity .2s ease-in-out,
			color .2s ease-in-out,
			text-decoration .2s ease-in-out,
			background-color .2s ease-in-out,
			-webkit-text-decoration .2s ease-in-out;
}
.link-v5 {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--white);
}
.link-v6 {
	padding: 15px 20px;
	border: 1px solid var(--black);
	border-radius: 6px;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	color: var(--black);
	white-space: nowrap;
	transition: 1s;
}
.link-v6:hover {
	border: 1px solid var(--blue-6);
	background-color: var(--blue-6);
	color: var(--white);
}
.link-check {
	background-image: url(../img/icons/check-3.svg);
	background-repeat: no-repeat;
	background-position: center left;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 33px;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	text-decoration-line: underline;
	color: var(--blue-2);
	transition: 1s;
}
.link-check:hover {
	text-decoration-line: none;
}
.link-phone {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: var(--black);
	padding-left: 32px;
	background-image: url(../img/icons/phone.svg);
	background-repeat: no-repeat;
	background-position: center left;
}
/*
	END LINKS
*/


/*
	LISTS
*/
.list-v1 {
    list-style-type: disc;
    padding-left: 17px;
	margin-bottom: 10px;
}
.list-v1 li {
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
}
.list-v1 li::marker {
	color: var(--blue-2);
}

.list-v2 {}
.list-v2 li {
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
	margin-bottom: 20px;
	padding-left: 36px;
	position: relative;
}
.list-v2 li:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 12px;
	left: 0;
    top: 5px;
	background-image: url(../img/icons/check-2.svg);
}
/*
	END LISTS
*/


/*
	BUTTONS
*/
.btn__icon {
	color: var(--blue-2);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	position: relative;
	display: inline-block;
	padding-top: 30px;
	transition: 1s;
}
.btn__icon:before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    top: -8px;
    background-size: cover;
    left: calc(50% - 17.5px);
}
.btn__icon-sale:before {
    width: 35px;
    height: 35px;
	background-image: url(../img/icons/sale-4.svg);
}
.btn__icon-client:before {
    width: 35px;
    height: 35px;
	background-image: url(../img/icons/client-2.svg);
}
.btn__icon-client--approved:before {
    width: 28px;
    height: 28px;
    background-image: url(../img/icons/client-approved.svg);
    background-size: cover;
}
.btn__icon-cart:before {
    width: 35px;
    height: 35px;
	background-image: url(../img/icons/cart-3.svg);
}
.btn__icon.active,
.btn__icon:hover {
	filter: grayscale(1);
    opacity: 0.5;
}
.btn__blue {
	line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 12px 26px 9px 26px;
    position: relative;
    background: var(--blue-4);
	border: 1px solid var(--blue-2);
    color: var(--white);
    display: inline-block;
    outline: none;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
}
.btn__blue.btn__blue-active,
.btn__blue:hover {
    background: var(--white);
    color: var(--blue-2);
    border: 1px solid var(--blue-2);
    transition: 1s;
}
.btn__blue.btn__blue-active:hover {
	color: var(--blue-6);
	border: 1px solid var(--blue-6);
}
.btn__blue-little {
	padding: 9px 30px;
}
.btn__blue-little-2 {
	padding: 11px 21px;
}
.btn__blue-small {
	padding: 15px 30px;
}
.btn__blue-medium {
	padding: 15px 40px;
}
.btn__light {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white);
	padding: 15px 40px;
	border: none;
	cursor: pointer;
}
.btn__blue.icon__cart {
	background-image: url("../img/icons/cart-2.svg"); /* fallback */
	background-image: url("../img/icons/cart-2.svg"), var(--blue-4); /* W3C */
	background-position: center;
	background-repeat: no-repeat;
}
.btn__mr-20 {
	margin-right: 20px;
}
/*
	END BUTTONS
*/


/*
	BACKGROUNDS
*/
.bg__triangle-v1 {
    background-image: url(../img/bg/triangle-1.png) !important;
    background-repeat: no-repeat !important;
    background-position: top right !important;
}
.bg__triangle-v2 {
    background-image: url(../img/bg/triangle-2.png) !important;
    background-repeat: no-repeat !important;
    background-position: top right !important;
}
.bg__triangle-v3 {
    background-image: url(../img/bg/triangle-3.png) !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
}
.bg__top-grey {
    background: rgb(130,130,130);
    background: linear-gradient(180deg, rgba(130,130,130,0.1) 0%, rgba(130,130,130,0) 15%, rgba(130,130,130,0) 100%);
}
/*
	END BACKGROUNDS
*/


/*
	POPUP - ADDCART
*/
.addcart__box {
	padding-top: 15px;
}
.addcart__inner {
	display: flex;
}
.addcart__img {
	flex: 0;
	margin-right: 20px;
    margin-left: 20px;
}
.addcart__detail {
    display: flex;
    flex: 1;
    align-items: center;
}
.addcart__img-src {
	max-width: 35px;
}
.addcart__info {
	flex: 4;
	margin-right: 25px;
}
.addcart__info-name {
	margin-bottom: 10px;
}
.addcart__info-price {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
}
.addcart__info-price--old {
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	text-decoration-line: line-through;
	color: var(--light-grey);
}
.addcart__count {
	flex: 1;
	margin-right: 80px;
}
.addcart__count .product__item-count {
	padding: 0;
	flex-basis: 100%;
    max-width: 100%;
}
.addcart__btn {}
.addcart__btn-back {
	display: none;
}
/*
	END POPUP - ADDCART
*/


/*
	POPUP - GIFT
*/
.gift {}
.gift__head {
	display: flex;
	align-items: center;
	margin-bottom: 38px;
}
.gift__head-icon {
	margin-left: 40px;
}
.gift__head-src {}
.gift__inner {
	display: flex;
	flex-wrap: wrap;
	max-width: 1029px;
}
.gift__box {
	flex: 0;
	flex-basis: 33.33333%;
	max-width: 33.33333%;
}
/*
	END POPUP - GIFT
*/


/*
	POPUP - DELETE PRODUCT
*/
.delete__product {
	margin-bottom: 40px;
}
.delete__product-inner {
	display: flex;
	align-items: flex-start;
}
.delete__product-img {
	flex: 0;
	flex-basis: 20%;
	max-width: 20%;
	text-align: center;
	margin-right: 20px;
}
.delete__product-src {
	margin: 0 auto;
	max-height: 90px;
    width: auto;
}
.delete__product-name {
	padding-right: 15px;
}
.delete__product .product__item-name {
    min-height: auto;
}
.delete__product .product__item-options {
    margin-bottom: 10px;
}
.delete__product .product__item-price {
    margin-bottom: 0;
}
/*
	END POPUP - DELETE PRODUCT
*/


/*
	CRYSTALS
*/
.crystal__fly {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
}
.crystal__v1 {
	background-image: url(../img/crystals/crystal-1.svg);
	width: 132px;
	height: 120px;
}
.crystal__v2 {
	background-image: url(../img/crystals/crystal-2.svg);
	width: 61px;
	height: 57px;
}
.crystal__v3 {
	background-image: url(../img/crystals/crystal-3.svg);
	width: 93px;
	height: 86px;
}
.crystal__v4 {
	background-image: url(../img/crystals/crystal-4.svg);
	width: 43px;
	height: 40px;
}
.crystal__v5 {
	background-image: url(../img/crystals/crystal-5.svg);
	width: 59px;
	height: 54px;
}
.crystal__position-1 {
	top: 0;
    right: 0;
}
.crystal__position-2 {
    top: -150px;
    left: 50%;
}
.crystal__position-3 {
    top: 50%;
    left: 55%;
}
.crystal__position-4 {
    left: 20%;
    top: -75px;
}
.crystal__position-5 {
	top: -120px;
    left: -80px;
}
/*
	END CRYSTALS
*/


/*
	FORM
*/
.popup__form {
	max-width: 520px;
	width: 100%;
}
.form {}
.form__group {
	position: relative;
	margin-bottom: 10px;
}
.form__group-wrap {
	display: flex;
	margin: 0 -5px;
}
.form__group-wrap .form__group {
	margin-left: 5px;
    margin-right: 5px;
	flex: 1 1 50%;
	max-width: 50%;
}
.form__group-wrap.col-3 {}
.form__group-wrap.col-3 .form__group {
	flex: 1 1 33.3333333%;
	max-width: 33.3333333%;
}
.form__group-flex {
	display: flex;
}
.form__group-flex--center {
	align-items: center;
}
.form__control {
	border: 1px solid var(--light-3);
	border-radius: 2px;
	padding: 20px 20px 18px 16px;
	width: 100%;
}
.form__group-name {
	position: absolute;
	color: var(--light-grey);
	font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    left: 16px;
    top: calc(50% - 9px);
	transition: 1s;
	pointer-events: none;
}
textarea.form__control + .form__group-name {
	top: 19px;
}
.form__control:valid:not(select) {
	padding: 28px 20px 10px 16px;
}
.form__control.not_empty + .form__group-name,
.form__control:focus + .form__group-name,
.form__control:not(:placeholder-shown) + .form__group-name {
	top: 8px;
	font-size: 14px;
}
.form__control:placeholder-shown {
	padding: 28px 20px 10px 16px;
}
select.form__control {
	padding: 19px 20px 19px 16px;
}
select.form__control {
	background: url(../img/icons/arrow-bottom.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-position-x: calc(100% - 25px);
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none !important;
}
.form__group + .form__btn {
	padding-top: 30px;
}
.form__file {
    text-align: center;
    display: block;
    border: 2px dashed var(--blue-2);
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
}
.form__file .file-selectdialog-switcher,
.form__file-name {
    color: var(--blue-2);
    font-weight: normal;
    line-height: 1;
	display: block;
	padding: 19px 16px 22px 16px;
	width: 100%;
	height: 100%;
}
.form__file-input {
	display: none;
}
.form__file .file-selectdialog {
	margin-bottom: 0;
}
/*
	END FORM
*/


/*
	SEARCH
*/
.search__block {}
.search__form {
	position: relative;
}
.search__form-input {
    border: none;
    background-color: var(--light-1);
    width: 100%;
    min-width: 210px;
    height: 50px;
    padding: 17px 15px 15px 29px;
    line-height: 18px;
    color: var(--light-grey);
    border-radius: 2px;
    transition: 1s;
    border: 2px solid transparent;
    font-weight: 400;
}
.search__form-input:focus,
.search__form-input:active {
    border: 2px solid var(--blue-2);
    color: var(--black);
    background-color: var(--white);
}
.search__form-submit {
	position: absolute;
    border: none;
    background: none;
    top: 0;
    right: 0;
    background-image: url(../img/icons/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 100%;
    cursor: pointer;
}
.search__form-submit:hover {
	background-image: url(../img/icons/search-blue.svg);
}
/*
	END SEARCH
*/


/*
	TABS
*/
.tabs__header {
	display: flex;
	justify-content: center;
	margin-bottom: 37px;
}
.tabs__header.start {
	justify-content: flex-start;
}
.tabs__content {}
.tab__content {
	display: none;
}
.tab__content.active {
	display: block;
}
.tabs__products {
	padding-top: 70px;
	padding-bottom: 26px;
}
.tab__products-header {
	margin-bottom: 27px;
}
.tab__products-header .tab {
    border-bottom: 2px solid var(--light-2);
	line-height: 18px;
	color: var(--light-grey);
	font-weight: 500;
	transition: 1s;
	cursor: pointer;
	padding-bottom: 15px;
}
.tab__products-header .tab:hover {
	color: var(--blue-2);
}
.tab__products-header .tab > span {
	white-space: nowrap;
}
.tab__products-header .tab.active > span {
    border-bottom: 2px solid var(--blue-2);
	color: var(--blue-2);
	padding-bottom: 15px;
}
.tab__products-header .tab:not(:last-child) {
    padding-right: 42px;
}

.tab__sections-header {}
.tab__sections-header .tab {
	font-size: 13px;
	line-height: 15px;
	text-transform: uppercase;
	color: var(--dark-grey);
	border: 0.8px solid var(--dark-grey);
	border-radius: 3px;
	padding: 7px;
	cursor: pointer;
	transition: 1s;
}
.tab__sections-header .tab:not(:last-child) {
	margin-right: 10px;
}
.tab__sections-header .tab:hover,
.tab__sections-header .tab.active {
	background: var(--blue-2);
	border: 0.8px solid var(--blue-2);
	color: var(--white);
}

.tabs__tiles {
	margin: 0 -5px;
}
.tabs__tiles .tab {
	padding: 0 5px;
	margin-bottom: 20px;
	flex: 0 0 33.333333%;
}
.tabs__tiles .tab__name {
	border: 2px solid var(--light-3);
	border-radius: 2px;
	text-align: center;
	padding: 19px 5px;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: var(--black);
	transition: 1s;
}
.tabs__tiles .tab__name:hover {
	border: 2px solid var(--blue-2);
}
.tabs__tiles .tab.active .tab__name {
	border: 2px solid var(--blue-2);
}
.tabs__tiles .tab__name-big {
	width: 265px;
}
/*
	END TABS
*/


/*
	HEADER
*/
.header {}
.header__top {
	padding-top: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--light-4);
}
.header__top-inner {
	display: flex;
	align-items: center;
}
.header__bottom {
	padding-top: 40px;
	padding-bottom: 55px;
}
.header__bottom-inner {
	display: flex;
	align-items: center;
}
.header__city {
	flex: 1;
	position: relative;
}
.header-city__text {
    display: none;
    position: absolute;
    top: 150%;
    left: 0;
    padding: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    background-color: var(--white);
    box-shadow: 0px 10px 55px rgb(153 156 164 / 10%);
    border-radius: 2px;
    z-index: 10;
}
.header-city__text:before {
    content: '';
    position: absolute;
    top: -18px;
    border: 10px solid transparent;
    border-bottom: 12px solid var(--white);
    box-shadow: 0px 10px 55px rgb(153 156 164 / 10%);
}
.header__city:hover .header-city__text {
	display: block;
}
.header__links {}
.header__links-list {}
.header__links-item {}
.header__links-link {}

.header__bottom-logo {
	margin-right: 35px;
}
.header__logo-src {}

.header__bottom-center {
    flex: 1;
    margin-left: 35px;
    display: flex;
    align-items: center;
}
.header__open-catalog {
	margin-right: 20px;
}
.header__search {
	flex: 1;
	margin-right: 49px;
	position: relative;
}
.header__search-result-b {
	//display: none;
    //position: absolute;
    //width: 100%;
    //margin-top: 5px;
    background: var(--white);
    box-shadow: -10px 25px 45px rgb(130 130 130 / 10%);
    border-radius: 2px;
    padding: 20px 23px 33px 30px;
	//z-index: 10;
}
.header__search-result.active {
	display: block;
}
.header__search-list {
    max-height: 315px;
    overflow: hidden;
    overflow-y: scroll;
}
.header__search-list {
	overflow-y: scroll;
	scrollbar-color: var(--other-5) var(--white);
	scrollbar-width: thin;
}
.header__search-list::-webkit-scrollbar-track {
    background-color: var(--white);
}
.header__search-list::-webkit-scrollbar {
    width: 3px;
    background-color: #F5F5F5;
}
.header__search-list::-webkit-scrollbar-thumb {
    background-color: var(--other-5);
}
.header__search-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.header__search-item:last-child {
	margin-bottom: 0;
}
.header__search-img {
    flex: 0;
    margin-right: 20px;
}
.header__search-src {
	width: 22px;
    height: auto;
}
.header__search-name {
	flex: 1;
}
.header__search-link {
	font-size: 16px;
	line-height: 18px;
	color: var(--black);
	transition: 1s;
}
.header__search-link:hover {
	color: var(--blue-2);
}
.header__search-name--link {
	margin-bottom: 5px;
}
.header__search-name--info {
	font-size: 14px;
	line-height: 14px;
	color: var(--black);
}
.header__search-name--info > span,
.header__search-name--info > a {
	font-size: 14px;
	line-height: 14px;
}
.header__search-name--info > span {
	color: var(--other-4);
}
.header__search-cart {
	opacity: 0;
	margin-right: 10px;
}
.header__search-cart .product__item-count {
	display: flex;
	padding: 0;
    flex-basis: 100%;
    max-width: 100%;
}
.header__search-cart .product__item-count .product__count {
	margin-right: 10px;
}
.header__search-item:hover .header__search-cart {
	opacity: 1;
}

.header__phones {}
.header__phone-link {
	display: block;
	font-size: 16px;
	line-height: 18px;
	font-weight: 700;
}
.header__phone-link + .header__phone-link {
	margin-top: 3px;
}

.header__bottom-buttons {
	margin-left: 90px;
	text-align: right;
}
.header__buttons-item:not(:last-child) {
	margin-right: 60px;
	max-width: 140px;
	text-align: center;
}
.header__mobile {
	display: none;
	padding: 16px 20px 12px 20px;
	background-color: var(--white);
	position: relative;
	box-shadow: 0px 2px 15px rgba(130, 130, 130, 0.25);
}
.header__mobile-inner {
	display: flex;
	align-items: center;
	position: relative;
}
.header__mobile-logo {
	flex: 1 1 auto;
	padding-right: 15px;
}
.header__mobile-logo--src {
	max-width: 120px;
}
.header__mobile-icons {}
.header__mobile-icons--item {
	display: inline-block;
	margin-right: 16px;
}
.header__mobile-hamburger {
	cursor: pointer;
	padding: 5px;
}
.header__mobile-close {
	display: none;
	cursor: pointer;
}
.header__mobile-phones {
    display: none;
    justify-content: center;
    margin-top: 20px;
}
.header__mobile.show-phones .header__mobile-phones {
	display: flex;
}
.header__mobile-phones .group__phones {
    margin-bottom: 8px;
}
.header__mobile.show-phones .header__mobile-icons,
.header__mobile.show-phones .header__mobile-hamburger {
	display: none;
}
.header__mobile.show-phones .header__mobile-close {
    display: block;
}
.header__mobile-menu {
	display: none;
}
.header__mobile-menu--close {
	padding: 5px;
	line-height: 1;
	height: 24px;
	margin-top: -5px;
	margin-bottom: -5px;
}
.header__mobile-menu.is--active {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	padding: 20px;
	background-color: var(--white);
	z-index: 15;
}
.header__mobile-menu--head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
.header__mobile-menu--body {}
.header__mobile-menu--list {}
.header__mobile-menu--item:not(:last-child) {
	margin-bottom: 20px;
}
.header__mobile-menu--item {
	display: flex;
	align-items: center;
	position: relative;
}
.header__mobile-menu--link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 15;
}
.header__mobile-menu--icon {
    flex: 0 1 5%;
    margin-right: 16px;
    text-align: center;
}
.header__mobile-menu--icon svg {
    width: 18px;
}
.header__mobile-menu--name {
	flex: 1 1 auto;
}
.header__mobile-menu--name > span {
	font-weight: bold;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--black);
	position: relative;
}
.header__mobile-menu--name .count {
	position: absolute;
    top: -5px;
    right: -20px;
	padding: 1px 5px;
	background: var(--blue-2);
	border-radius: 4px;
	font-weight: bold;
	font-size: 9px;
	line-height: 11px;
	color: var(--white);
}
.header__mobile-menu--footer {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid var(--light-3);
}
.header__mobile-menu--item.is--parent {}
.header__mobile-menu--item.is--parent .header__mobile-menu--name {
    background-image: url(../img/icons/navigation.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 6px;
}
/*
	END HEADER
*/


/*
	MOBILE MENU
*/
.mobile__menu {
	display: none;
}
.mobile__menu.is--active {
	display: block;
	position: fixed;
    top: -1px;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	background-color: var(--white);
	z-index: 99;
}
.mobile__menu-header {
	display: flex;
	align-items: center;
	padding: 20px;
	background: var(--blue-2);
	position: relative;
	z-index: 20;
}
.mobile__menu-hamburger {
	padding-right: 10px;
}
.mobile__menu-back {
	display: none;
	padding-right: 10px;
	width: 28px;
}
.mobile__menu-title {
	flex: 1;
	font-weight: bold;
	font-size: 13px;
	line-height: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--white);
}
.mobile__menu-close {
	padding: 10px 15px;
	margin-top: -10px;
	margin-bottom: -10px;
}
.mobile__menu-body {
	position: relative;
	z-index: 20;
	padding: 15px 20px;
}
.mobile__menu-search {
	margin-bottom: 35px;
}
.mobile__search-input {
    padding: 14px;
    height: 40px;
}
.mobile__search-submit {
    background-size: 12px;
	width: 50px;
}
.mobile__menu-list {
	margin-bottom: 30px;
}
.mobile__menu-item:not(:last-child) {
	margin-bottom: 20px;
}
.mobile__menu-link {
	display: block;
	color: #000000;
	font-size: 13px;
	line-height: 1;
}
.mobile__menu-link.lvl-1{
	font-weight: bold;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.mobile__menu-parent {
    background-image: url(../img/icons/navigation.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 6px;
}
.mobile__menu-sub {
	display: none;
}
.mobile__menu-sub.is--active {
	display: block;
    position: absolute;
    z-index: 20;
    background-color: var(--white);
    top: 15px;
    right: 20px;
	padding-top: 10px;
    left: 20px;
    height: 100%;
	z-index: 20;
}
.mobile__menu-sub--item:not(:last-child) {
	margin-bottom: 25px;
}
.mobile__menu-header.show-sub-menu .mobile__menu-hamburger {
	display: none;
}
.mobile__menu-header.show-sub-menu .mobile__menu-back {
	display: block;
}
/*
	END MOBILE MENU
*/


/*
	SLIDER
*/
.slider {
	margin-bottom: 0 !important;
	padding-bottom: 30px;
}
.slider__item {
	position: relative;
	height: 584px;
	padding-top: 91px;
    padding-left: 146px;
}
.slider__item:not(:first-child) {
	display: none;
}
.slider__item.slick-slide {
	display: block;
}
.slider__item-img {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.slider__item-src {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}
.slider__item-info {
	color: var(--white);
	position: relative;
	max-width: 485px;
	width: 100%;
}
.slider__item-category {
	margin-bottom: 22px;
	line-height: 19px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.slider__item-name {
	margin-bottom: 10px;
	font-size: 40px;
	line-height: 140%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 400;
}
.slider__item-description {
	margin-bottom: 20px;
	line-height: 140%;
}
.slider__item-description + .slider__item-btn {
	padding-top: 20px;
}
.slider__item-btn {}
.slider__item-link {
	letter-spacing: 0.08em;
}
.slider .slick-dots {
    bottom: 50px;
}
.slider .slick-dots li button:before {
    font-size: 10px;
    width: 15px;
    height: 15px;
    line-height: 15px;
	color: var(--white);
	opacity: 1;
	background-color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
}
.slider .slick-dots li.slick-active button:before {
	opacity: 1;
    color: transparent;
    border: 2px solid var(--white);
    border-radius: 50%;
	background-color: transparent;
}
/*
	END SLIDER
*/


/*
	EDGE
*/
.edge {
	padding-top: 30px;
	padding-bottom: 10px;
}
.edge__inner {
	display: flex;
}
.edge__item {
	flex: 0 0 25%;
	padding-left: 42px;
	padding-right: 67px;
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
}
.edge__item-icon {
	padding-right: 25px;
}
.edge__item-src {
	max-width: 50px;
	width: 100%;
}
.edge__item-info {
	flex: 1;
}
.edge__item-name {
	line-height: 19px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
}
.edge__item-text {
	line-height: 22px;
}
/*
	END EDGE
*/


/*
	INFORM
*/
.inform {
	padding-top: 70px;
}
.inform__slider {}
.inform__slider-item {}

.inform__wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.inform__wrap .inform__box {
	padding: 20px;
	flex: 0 0 25%;
}
.inform__item {
	max-width: 398px;
	width: 100%;
	position: relative;
	border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.inform__item-link {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
.inform__item-stickers {
	position: absolute;
	top: 0;
	right: 42px;
	display: flex;
}
.inform__item-stick {
    background-image: url(../img/icons/diamond.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    width: 56px;
    height: 52px;
    line-height: 36px;
}
.inform__item-stick + .inform__item-stick {
	margin-left: 25px;
}
.inform__item-img {
	max-width: 398px;
	width: 100%;
	height: 292px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 2px;
}
.inform__item-info {
	padding: 25px 40px 60px 22px;
	position: relative;
	transition: 1s;
	cursor: pointer;
	max-height: 148px;
	border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
.inform__item-date {
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 9px;
}
.inform__item-name {
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: bold;
}
.inform__item-icon {
	position: absolute;
	right: 30px;
	bottom: 30px;
}
.inform__icon-src {}
.inform__item:hover .inform__item-info {
	background-color: var(--blue-2);
	color: var(--white);
}
/*
	END INFORM
*/


/*
	PRODUCT
*/
.product__slider {
	width: 100%;
}
.product__slider .slick-track {
	margin-left: 0;
}
.product__slider .slick-list {
	padding: 0px 15px 0 15px;
    padding-top: 5px;
    padding-bottom: 20px;
    margin-left: -15px;
}
.product__slider .slick-prev {
    left: 20px;
}
.product__slider .slick-next {
    right: 20px;
}
.product__slider-item {}

.products__sort {
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.products__sort-select {
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
	border: none;
    background: url(../img/icons/select.svg);
    background-repeat: no-repeat;
    background-position: center right;
    -webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none!important;
	padding: 0 10px;
}
.product__wrap {
	display: flex;
	flex-wrap: wrap;
}
.product__box {
	flex: 0 0 25%;
}
.product__item {
	max-width: 343px;
	width: 100%;
	padding: 37px 30px 30px 30px;
	box-shadow: 0px 15px 20px rgba(221, 221, 221, 0);
	border-radius: 2px;
	cursor: pointer;
	transition: 1s;
	position: relative;
	z-index: 1;
}
.product__item-img {
	text-align: center;
	max-height: 170px;
	min-height: 170px;
	margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product__item img {
	max-height: 170px;
}
.product__item-src {
	height: 100%;
	width: auto;
}
.product__item-labels {
	display: flex;
	margin-bottom: 19px;
}
.product__item-label:not(:last-child) {
	margin-right: 5px;
}
.product__item-label {
	cursor: default;
	border-radius: 16px;
	color: var(--white);
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	padding: 5px 10px;
}
.product__item-label--v1 {
	background: var(--other-1);
}
.product__item-label--v2 {
	background: var(--other-2);
}
.product__item-label--v3 {
	background: var(--blue-2);
}
.product__item-name {
	min-height: 44px;
	font-weight: 300;
	font-size: 16px;
	line-height: 140%;
	color: var(--black);
	margin-bottom: 10px;
}
.product__item-options {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.product__item-option--label {
	line-height: 18px;
	cursor: pointer;
}
.product__item-option--label > span {
	color: var(--light-grey);
	border: 1px solid var(--light-grey);
	border-radius: 3px;
	padding: 7px;
	display: block;
	transition: 1s;
}
.product__item-option--label input:checked + span {
	color: var(--blue-2);
	border: 1px solid var(--blue-2);
}
.product__item-option--label:not(:last-child) {
	margin-right: 5px;
	margin-bottom: 5px;
}
.product__item-option--label:hover > span {
	color: var(--black);
	border: 1px solid var(--blue-2);
}
.product__item-option {
	display: none;
}
.product__item-option--v2 > span {
	color: var(--black);
}
.product__item-option--v2 input:checked + span {
	color: var(--white);
	background: var(--blue-2);
	border: 1px solid var(--blue-2);
}
.product__item-option:disabled + span {
	color: var(--light-grey);
}
.product__item-price {
	display: flex;
	align-items: baseline;
	margin-bottom: 23px;
}
.product__item-actualPrice {
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	margin-right: 9px;
}
.product__item-actualPrice > span {
	font-size: 16px;
	font-family: var(--second-family);
}
.product__item-oldPrice {
	text-decoration-line: line-through;
	color: var(--light-grey);
}
.product__item-oldPrice > span {
	font-size: 12px;
	font-family: var(--second-family);
}
.product__item-maxCount {
	flex: 1 1 100%;
	margin: 0;
}
.product__item-select {
	display: flex;
	margin: 0 -5px;
	opacity: 0;
	transition: 1s;
}
.product__item-count {
	padding: 0 5px;
	flex-basis: 43%;
	max-width: 43%;
}
.product__count {
    display: flex;
    background: var(--light-1);
    border-radius: 3px;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.product__count .minus {
    line-height: 41px;
    width: 30px;
    text-align: center;
	cursor: pointer;
}
.product__count .plus {
    line-height: 41px;
    width: 30px;
    text-align: center;
	cursor: pointer;
}
.product__item-inputCount {
    width: 40px;
    border: none;
    background: none;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 19px;
	font-weight: bold;
}
.product__item-inputCount::-webkit-outer-spin-button,
.product__item-inputCount::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.product__item-inputCount {
	-moz-appearance: textfield;
}

.product__item-count--text {
	margin-top: 10px;
	font-size: 14px;
	line-height: 16px;
	color: var(--black);
	opacity: 0.8;
	white-space: nowrap;
}
.product__item-count--text > span {
	color: var(--other-2);
}
.product__item-btn {
	padding: 0 5px;
	flex: 1;
}
.product__item-submit {
	width: 100%;
}
.product__item-goCart {
	display: none;
    text-align: center;
    margin-top: 10px;
}
.product__item-goCart.active {
	display: block;
}
.product__item:hover {
	box-shadow: 0px 5px 15px 1px rgb(221 221 221 / 50%);
	background-color: var(--white);
}
.product__item:hover .product__item-select {
	opacity: 1;
}

.product__item-bonuses {
	margin-bottom: 40px;
}
.product__item-bonus--item {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
	padding-right: 15px;
}
.product__item-bonus--img {
	margin-right: 22px;
}
.product__item-bonus--src {
	width: 40px;
	height: auto;
}
.product__item-bonus--text {
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
}
/*
	END PRODUCT
*/


/*
	SECTIONS
*/
.sections {
	padding-top: 70px;
	padding-bottom: 40px;
	background: var(--light-1);
	position: relative;
}
.sections .section__title {
	padding-bottom: 47px;
}

.sections__inner {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.section__item-box {
	padding: 20px;
	flex: 0 0 33.3333333%;
}
.section__item {
	max-width: 545px;
	/*max-height: 295px;*/
	border-radius: 2px;
	transition: 1s;
	cursor: pointer;
}
.section__item-wrap {
	display: flex;
	align-items: center;
	background-color: var(--white);
}
.section__item-img {
	max-width: 148px;
	min-width: 148px;
	min-height: 210px;
	max-height: 500px;
	flex-grow: 1;
	background-position: center;
    background-size: cover;
	align-self: stretch;
}
.section__item-info {
	padding: 60px 30px 60px 40px;
}
.section__item-main {
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	display: block;
	color: var(--black);
/*	min-height: 48px; */
	margin-bottom: 24px;
}
.section__item-main + .section__item-other {
	margin-top: 20px;
}
.section__item-list {
    min-height: 128px;
}
.section__item-other {
	color: var(--dark-grey);
	line-height: 24px;
	display: block;
	transition: 1s;
	font-weight: normal;
	margin-bottom: 16px;
}
.section__item-other:hover {
	color: var(--blue-2);
}
.section__item-other:last-child {
/*	text-decoration: underline;*/
}
.section__item:hover {
	box-shadow: 0px 15px 35px rgba(221, 221, 221, 0.5);
}
/*
	END SECTIONS
*/


/*
	ADVANTAGES
*/
.advantages__inner {
	display: flex;
}
.advantages__left {
	flex: 1;
}
.advantages__right {
	flex: 1;
	flex-basis: 30%;
	max-width: 30%;
	text-align: center;
}
.advantages__block {
	padding-top: 70px;
}
.advantages__wrap {
	display: flex;
	flex-wrap: wrap;
}
.advantages__item {
	flex: 0 0 33.333333%;
	margin-bottom: 80px;
}
.advantages__item-img {
	margin-bottom: 34px;
}
.advantages__item-src {
	width: auto;
	height: 45px;
}
.advantages__item-name {
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: bold;
	max-width: 220px;
}
.advantages__item-text {
	line-height: 1.4;
	max-width: 250px;
}
/*
	END ADVANTAGES
*/


/*
	RATINGS
*/
.ratings {}
.ratings.center .ratings__item {
	margin: 0 auto;
}
.ratings__item {
	max-width: 280px;
	padding-bottom: 80px;
}
.ratings__item-img {
	max-width: 200px;
	margin: 0 auto;
	padding-bottom: 20px;
}
.ratings__item-src {
	width: 100%;
}
.ratings__item-text {
	line-height: 22px;
	color: var(--light-grey);
}
.ratings__item-text > a {
	display: block;
	color: var(--blue-1);
}
/*
	END RATINGS
*/


/*
	ABOUT
*/
.about {
	padding-top: 100px;
}
/*
	END ABOUT
*/


/*
	PARTNERS
*/
.partners {
	padding-top: 40px;
	padding-bottom: 50px;
}
.partners__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.partners__inner--center {
	justify-content: center;
}
.partners__box {
	flex: 0 0 12.5%;
	text-align: center;
	padding: 45px 20px;
}
.partners__item {}
.partners__item-src {
	width: 150px;
}
/*
	END PARTNERS
*/


/*
	SOCIAL
*/
.socials {
	display: flex;
}
.social__item:not(:last-child) {
	margin-right: 10px;
}
.social__item {}
.social__item-link {}
.social__item-src {
	transition: 1s;
}
.social__item-src:hover {
	opacity: 0.5;
}
/*
	END SOCIAL
*/


/*
	DOCUMENTS
*/
.documents {}
.documents__inner {
	display: flex;
	flex-wrap: wrap;
}
.documents__item {
	flex: 0 0 16.6666666%;
	margin-bottom: 50px;
	padding-right: 30px;
}
.documents__item-title {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.documents__item-list {}
.documents__item-list--link {
	color: var(--black);
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 10px;
	display: block;
	transition: 1s;
}
.documents__item-list--link:hover {
	color: var(--blue-2);
}
.documents__item-show {
	cursor: pointer;
	line-height: 22px;
	color: var(--blue-2);
	position: relative;
}
.documents__item-show:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 6px;
	right: -15px;
	top: calc(50% - 3px);
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/icons/arrow-blue.svg);
}
.documents__item-show.active:after {
	transform: rotate(180deg);
}

.document__window {
	max-width: 436px;
	width: 100%;
}
.document__window-head {
	border-bottom: 1px solid var(--light-1);
	display: flex;
	align-items: center;
	padding-bottom: 30px;
}
.document__window-img {
	padding: 0 35px 0 35px;
}
.document__window-src {}
.document__window-name {
	font-weight: 500;
	font-size: 22px;
	line-height: 22px;
	color: #000000;
}
.document__window-body {
	padding-top: 20px;
}
.document__window-files {
	max-width: 200px;
}
.document__window-files:not(:last-child) {
	margin-bottom: 35px;
}
.document__window-link {
	display: flex;
	align-items: center;
}
.document__window-icon {
	flex: 0;
	margin-right: 16px;
}
.document__window-file {
	color: var(--blue-2);
}
.document__window-icon > img {
	transition: 1s;
}
.document__window-link:hover .document__window-file {
	color: var(--blue-1);
}
.document__window-link:hover .document__window-icon path {
	/*fill: var(--blue-1);*/
}
/*
	END DOCUMENTS
*/


/*
	CONTACTS
*/
.contacts__inner {
	display: flex;
}
.contacts__info {
	flex: 1;
	flex-basis: 600px;
	max-width: 600px;
}
.contacts__map {
	flex: 1;
}
.contacts__address {
	margin-bottom: 10px;
}
.contacts__email {
	margin-bottom: 34px;
}
.contacts__social {
	margin-bottom: 47px;
}
.contacts__btn {
	margin-bottom: 20px;
}
.group__phones {
	margin-bottom: 43px;
}
.group__phones-item:not(:last-child) {
	margin-bottom: 19px;
}
/*
	END CONTACTS
*/


/*
	BANNER
*/
.banner {
	max-height: 300px;
	padding: 25px 113px 37px 60px;
	border-radius: 2px;
	background-color: var(--blue-2);
	margin-bottom: 60px;
}
.banner__inner {
	display: flex;
	align-items: center;
}
.banner__img {
	margin-right: 102px;
}
.banner__img-src {
	max-height: 238px;
	height: 100%;
	width: auto;
}
.banner__info {
	flex: 1;
}
.banner__info-date {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
	background-color: var(--white);
	padding: 8px 10px;
	margin-bottom: 15px;
	display: inline-block;
}
.banner__info-name {
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	color: var(--white);
	padding-bottom: 20px;
}
.banner__info-more {
	padding-top: 20px;
}
.banner__info-link {}
.banner__detail {
	margin-left: 186px;
}
.banner__detail-list {
	list-style-type: none;
	counter-reset: list 0;
}
.banner__detail-item {
	margin-bottom: 10px;
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	position: relative;
}
.banner__detail-item:before {
	counter-increment: list;
    content: counter(list);
    font-size: 12px;
    color: var(--blue-2);
    background-color: var(--white);
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    position: absolute;
    left: -35px;
    top: -2px;
}
/*
	END BANNER
*/


/*
	FILTER
*/
.filter__title {
	display: none;
	position: relative;
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	margin-bottom: 20px;
}
.filter__close {
    position: absolute;
    background-image: url(../img/icons/cross-4.svg);
    width: 10px;
    height: 10px;
    top: calc(50% - 10px);
    right: 0;
    padding: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
.filter__submit {
	display: none;
	position: fixed;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    right: 0;
    box-shadow: 0px -4px 8px rgb(0 0 0 / 10%);
    padding: 15px 20px;
    z-index: 15;
}
.filter__submit-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter__submit-inner .filter__submit-btn {
	margin-left: 20px;
	padding: 10px 25px;
}
.filter__info {
	display: none;
}
.filter__info-open {
	position: relative;
	font-size: 13px;
	line-height: 15px;
	margin-right: 25px;
}
.filter__info + .dropdown {}
.filter__info-open > span {
	position: absolute;
	top: -5px;
    right: -25px;
    background: #339BEA;
    border-radius: 29.9px;
    font-weight: bold;
    font-size: 9px;
    line-height: 11px;
    color: #FFFFFF;
    padding: 1px 8px;
}
.filter {}
.filter__group-name {
	font-weight: 500;
	font-size: 22px;
	line-height: 22px;
	color: var(--black);
	margin-bottom: 20px;
}
.filter__selected {
	border-top: 1px solid var(--light-4);
	border-bottom: 1px solid var(--light-4);
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.filter__selected-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.filter__selected-item {
	flex: 0 0 auto;
	margin-right: 10px;
	margin-bottom: 10px;
	background: var(--light-1);
	border: 0.817025px solid var(--light-1);
	border-radius: 3px;
	line-height: 22px;
	padding: 7px 27px 7px 7px;
	background-image: url(../img/icons/cross.svg);
	background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: center;
	cursor: pointer;
	transition: 1s;
}
.filter__selected-item:hover {
	background-color: var(--light-2);
	border: 0.817025px solid var(--light-1);
}
.filter__input {
    margin-bottom: 20px;
    border: 1px solid var(--light-2);
    border-radius: 2px;
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
    line-height: 22px;
    color: var(--light-grey);
}
.filter__group {
	padding-bottom: 40px;
}
.filter__group-params .filter__checkbox:last-child {
	margin-bottom: 0;
}
.filter__checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: 300;
	font-size: 16px;
	line-height: 25px;
	color: var(--black);
}
.filter__checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.filter__checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: var(--white);
	border: 1px solid var(--light-2);
	border-radius: 2px;
	transition: 1s;
}
.filter__checkbox input:disabled ~ .checkmark {
	background: var(--light-2);
	border: 1px solid var(--light-2);
}
.filter__checkbox:hover input:not(:disabled) ~ .checkmark {
	/*background-color: var(--white);*/
}
.filter__checkbox input:checked ~ .checkmark {
	background-color: var(--blue-2);
	border: 1px solid var(--blue-2);
}
.filter__checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.filter__checkbox input:checked ~ .checkmark:after {
	display: block;
}
.filter__checkbox .checkmark:after {
	left: calc(50% - 7px);
    top: calc(50% - 6px);
    width: 15px;
    height: 12px;
    background-image: url(../img/icons/check.svg);
}
.filter__checkbox:hover .checkmark {
	border: 1px solid var(--blue-2);
}
.filter__range * {
    outline: none;
}
.filter__range {
	margin-bottom: 40px;
	border: 1px solid var(--light-2);
	border-radius: 2px;
	padding: 12px 14px 0 14px;
	position: relative;
	max-width: 255px;
}
.filter__range:after {
    content: "";
    clear: both;
    display: table;
}
.filter__range-wrap {
	display: flex;
	overflow: hidden;
}
.filter__range .ui-slider {
    position: relative;
    height: 2px;
}
.filter__range .ui-slider .ui-slider-handle {
    position: absolute;
    margin-left: -7px;
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius: 50%;
    top: -5px;
    background: var(--blue-2);
    z-index: 2;
}
.filter__range .ui-slider .ui-slider-handle:hover,
.filter__range .ui-slider .ui-slider-handle:focus {
    transform: scale(1.2);
    border: 4px solid #337AB7;
}
.filter__range-left {
	color: var(--light-grey);
}
.filter__range-left,
.filter__range-right {
	margin-bottom: 12px;
	border: none;
	font-size: 16px;
	line-height: 1.4;
	font-family: var(--second-family);
	max-width: 50%;
	color: var(--light-grey);
}
.filter__range-right {
	text-align: right;
}
.filter__range .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 2px;
    border: 0;
    background: var(--blue-2);
}
.filter__list-search {
	overflow: hidden;
	max-height: 225px;
}
.filter__list-search.active {
	max-height: 100%;
}
.filter__list-more {
    cursor: pointer;
    line-height: 22px;
    color: var(--blue-2);
    position: relative;
	display: inline-block;
}
.filter__list-more.active:after {
	transform: rotate(180deg);
}
.filter__list-more:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    right: -15px;
    top: calc(50% - 3px);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/icons/arrow-blue.svg);
}
.filter__list-more--hide {
	display: none;
}
.filter__list-more--show {
	display: inline-block;
}
/*
	FILTER
*/


/*
	CATEGORY LIST
*/
.category__slider {
	margin-bottom: 60px;
}
.category__slider .slick-track {
	margin-left: 0;
}
.category__slider-item {}
.category__slider .slick-prev, .category__slider .slick-next {
	top: 50%;
}
.category__item {
	max-width: 258px;
	padding: 15px 20px;
	position: relative;
	background: var(--light-1);
	border-radius: 2px;
	cursor: pointer;
	min-height: 88px;
	display: flex;
	transition: 1s;
}
.category__item:hover {
	background: var(--light-2);
}
.category__item-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.category__item-wrap {
	display: flex;
	align-items: center;
}
.category__item-img {
    margin-right: 20px;
    flex: 0 0 20%;
    display: none;
}
.category__item-src {
	max-width: 50px;
}
.category__item-name {
	color: var(--black);
	line-height: 19px;
	font-size: 16px;
}
/*
	END CATEGORY LIST
*/


/*
	SECTION BANNER
*/
.section__banner {
	flex: 1 1 100%;
	width: 100%;
	background: var(--light-4);
	border-radius: 2px;
    display: flex;
    align-items: center;
    padding: 13px 95px 5px 78px;
	margin-bottom: 60px;
	margin-top: -30px;
	position: relative;
    z-index: 0;
}
.section__banner-title {
	font-weight: bold;
	font-size: 30px;
	line-height: 42px;
	text-transform: uppercase;
	color: var(--black);
}
.section__banner-img {
	flex: 1;
	margin: 0 80px;
	position: relative;
}
.section__banner-sale {
    position: absolute;
    top: 15px;
    right: 0;
    background-image: url(../img/icons/sale-3.png);
    width: 70px;
    height: 78px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22.3695px;
    text-align: center;
    line-height: 76px;
	cursor: default;
    pointer-events: none;
}
.section__banner-src {}
.section__banner-btn {}
.section__banner-link {}
/*
	END SECTION BANNER
*/


/*
	PAGINATION
*/
.pagination {
	margin-top: 40px;
}
.pagination__list {
	display: flex;
}
.pagination__item {}
.pagination__item-link {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--black);
	padding: 11px 16px 12px 17px;
	border-radius: 2px;
	border: 2px solid transparent;
	transition: 1s;
}
.pagination__item-link:hover:not(.pagination__item-link--edge) {
	background: var(--light-1);
	border: 2px solid var(--light-1);
}
.pagination__item-link.active {
	border: 2px solid var(--blue-1);
}
.pagination__item-link--prev {}
.pagination__item-link--next {}
.pagination__item-link--edge {
	transition: 1s;
}
.pagination__item-link--edge:hover {
	color: var(--blue-2);
}
/*
	END PAGINATION
*/


/*
	PRODUCT PAGE
*/
.product__head {
	padding-top: 46px;
	margin-bottom: 80px;
	border-top: 1px solid var(--light-4);
}
.product__head-wrap {
	display: flex;
	margin: 0 -20px;
}
.product__head-gallery {
	flex: 5;
	padding: 0 20px;
}
.product__head-info {
	flex: 5;
	padding: 0 20px;
}
.product__head-short {
	margin-bottom: 40px;
}
.product__head-select {
	margin-bottom: 40px;
}
.product__head-select--item:not(:last-child); {
	margin-bottom: 20px;
}
.product__head-select--item .title__h4 {
	margin-bottom: 10px;
}
.product__head-cart {
	flex: 4;
	padding: 0 20px;
}
.product__head-cart .product__cart-box {
	margin-left: auto;
}

.product__gallery {}
.product__gallery-wrap {
	display: flex;
}
.product__gallery-thumb {
	flex: 1;
	max-width: 60px;
	margin-right: 70px;
}
.product__gallery-thumb--item {
	cursor: pointer;
	margin-bottom: 10px;
}
.product__gallery-thumb--item.slick-current {
	border: 1px solid var(--blue-2) !important;
	border-radius: 2px;
}
.product__gallery-thumb-src {
	margin: 0 auto;
}
.product__gallery-main {
	flex: 9;
	max-width: 540px;
}
.product__gallery-main--item {}
.product__gallery-main--item:not(:first-child) {
	display: none;
}
.product__gallery-main--item.slick-slide {
	display: block;
}
.product__gallery-main--src {
	margin: 0 auto;
}
.product__gallery-main .slick-prev,
.product__gallery-main .slick-next {
	top: 50%;
}

.product__cart-box {
	background: var(--white);
	box-shadow: -10px 25px 45px rgba(130, 130, 130, 0.1);
	border-radius: 2px;
	max-width: 400px;
	padding: 30px 30px 37px 30px;
}
.product__cart-box .product__item-labels {
	justify-content: flex-end;
}
.product__cart-box .product__item-price {
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.product__cart-box .product__item-select {
	opacity: 1;
}

.product__body {
	margin-bottom: 80px;
	max-width: 65%;
}
.product__body-description {
	margin-bottom: 40px;
}
.product__body-files {
	margin-bottom: 50px;
}
.product__body-files--wrap {
	display: flex;
}
.product__body-files--wrap .document__window-files {
	margin-right: 80px;
	margin-bottom: 20px;
}
.product__body-params {}

.product__footer {}
.product__footer-slider {}
/*
	END PRODUCT PAGE
*/


/*
	CART
*/
.cart {
	margin-bottom: 120px;
}
.cart__inner {
	display: flex;
}
.cart__list {
	flex: 1;
	padding-right: 180px;
}
.cart__list-item:first-child {
	border-top: 1px solid var(--light-1);
}
.cart__list-item {
	min-height: 130px;
	padding: 20px 40px 20px 10px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--light-1);
}
.cart__item-img {
    flex: 1 1 10%;
    max-width: 10%;
    text-align: center;
    padding-right: 10px;
}
.cart__item-src {
    max-height: 100px;
    width: auto;
}
.cart__item-info {
    align-items: center;
    display: flex;
    flex: 1;
}
.cart__item-name {
    flex: 1;
    flex-basis: 70%;
    max-width: 70%;
    padding-right: 15px;
}
.cart__item-name--replace {
	display: flex;
	align-items: center;
	margin-top: 5px;
}
.cart__item-name--replace > span {
	color: var(--other-4);
	padding-right: 20px;
}
.cart__item-name > span {
	display: block;
/*	margin-bottom: 5px;  */
}
.cart__item-labels {
	display: flex;
	margin-bottom: 10px;
}
.cart__item-label {
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	color: var(--white);
	background: var(--blue-2);
	border-radius: 16px;
	padding: 5px 10px;
}
.cart__item-price {
	font-weight: 500;
    margin-right: 70px;
    text-align: left;
    flex-basis: 15%;
    max-width: 15%;
}
.cart__item-price > span.basket-item-price-current-text {
  font-weight: 500;
}
.cart__item-price > span.basket-item-price-old-text {
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
	text-decoration-line: line-through;
	color: var(--light-grey);
}
.cart__item-price > span.rub {
	color: var(--black);
}
.cart__item-price > svg {
	width: 8px;
	height: auto;
}
.cart__item-count {
    flex: 0;
    flex-basis: 15%;
    max-width: 15%;
    text-align: left;
    margin-right: 60px;
}
.cart__item-count .product__item-count {
    padding: 0;
    flex-basis: 100%;
    max-width: 100%;
}
.cart__item-count .product__item-count--text {
    font-size: 16px;
}
.cart__item-link {
    flex: 0;
    flex-basis: 10%;
    max-width: 10%;
}
.cart__item-remove {}
.cart__item-remove--icon {
    display: block;
    background-image: url(../img/icons/remove-close.svg);
    background-position: center;
    background-repeat: no-repeat;
	background-size: contain;
    width: 20px;
    height: 24px;
    cursor: pointer;
}
.cart__item-remove--icon:hover {
	margin-top: -2px;
    background-image: url(../img/icons/remove-open.svg);
}
.cart__result {
	flex: 1;
    max-width: 400px;
}
.cart__result-box {
    background: var(--white);
    box-shadow: -10px 25px 45px rgb(130 130 130 / 10%);
    border-radius: 2px;
    padding: 30px 30px 30px 25px;
}
.cart__result .product__item-bonuses {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--light-1);
}
.cart__result .product__item-bonus--item:last-child {
	margin-bottom: 0;
}
.cart__result-info {}
.cart__result-head--wrap {
	display: flex;
	justify-content: space-between;
}
.cart__result-list {
	margin-bottom: 40px;
}
.cart__result-list--item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.cart__result-list--green {
	color: var(--green);
}
.cart__result-list--red {
	color: var(--other-4);
}
.cart__result-price {
	display: flex;
	justify-content: space-between;
	font-weight: 500;
	font-size: 22px;
	line-height: 22px;
	color: var(--black);
    margin-bottom: 30px;
}
.cart__result-price--name {}
.cart__result-price--name > p {
	font-weight: 300;
}
.cart__result-price--value {}
.cart__result-btn {}
.cart__result-btn.center {
	text-align: center;
}
.cart__result-btn > a {
	width: 100%;
}
.cart__product-not {
	color: var(--other-4);
	margin-top: -40px;
	margin-bottom: 42px;
}
/*
	END CART
*/


/*
	CHECKOUT
*/
.checkout {}
.checkout__inner {
	display: flex;
}
.checkout__inner.center {
	align-items: center;
}
.checkout__data {
	flex: 1 1 50%;
	max-width: 50%;
	padding-right: 20px;
}
.checkout__detail {
	flex: 1;
	padding-right: 20px;
}
.checkout__auth {
	max-width: 540px;
}
.checkout__next {
	display: none;
	text-align: center;
	margin-top: 30px;
}
.checkout__title-h2 {
	margin-bottom: 16px;
}
.checkout__info {
	flex: 1 1 50%;
	max-width: 50%;
	position: relative;
}
.checkout__confirm {
	max-width: 815px;
}
.checkout__form-box {
	margin-bottom: 60px;
}
.checkout__form-group {
	max-width: 540px;
}
.checkout__form-icon {
	max-height: 21px;
	width: auto;
	vertical-align: text-bottom;
    margin-right: 10px;
}
.checkout-delivery {
	display: flex;
	margin-top: 20px;
}
.checkout__success {
	flex: 1;
	max-width: 1130px;
}
.checkout__success-box {
	margin-bottom: 40px;
}
.checkout__success .cart__list {
    padding-right: 0;
}
.checkout__success .cart__list .cart__item-img {
    margin-right: 20px;
}
.checkout__success .cart__list .cart__item-count {
    margin-right: 0;
}
.related__products {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	background-color: var(--white);
	z-index: 10;
	padding-top: 60px;
	box-shadow: 0px -4px 25px rgba(226, 226, 226, 0.25);
}
.related__products.active {
	display: block;
}
.related__products .container {
	position: relative;
}
.related__products-cross {
	width: 22px;
	height: 22px;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url(../img/icons/cross.svg);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	background-size: cover;
}
/*
	END CHECKOUT
*/


/*
	AUTH
*/
.auth {}
.auth__inner {
	max-width: 540px;
	margin: 0 auto;
}
.auth__form-btn {}
.auth__form-btn--auth {
	margin-right: 60px;
}
/*
	END AUTH
*/


/*
	CABINET
*/
.cabinet__mobile.is--active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    z-index: 10;
    overflow-y: scroll;
    height: 100vh;
    padding-top: 76px;
	padding-bottom: 100px;
}
.cabinet__mobile-back:not(.title__h1) {
	display: none;
}
.cabinet__short-info {
	margin-bottom: 40px;
}
.cabinet__short-info .title__h3 {
	margin-bottom: 5px;
}
.cabinet__history {}
.cabinet__history .title__h1 {
	margin-bottom: 29px;
}
.cabinet__history-filter {
	padding-bottom: 25px;
    border-bottom: 1px solid var(--light-4);
	margin: 0;
}
.cabinet__history-filter .form__group {
	max-width: 270px;
	margin-left: 0px;
	margin-right: 10px;
}
.cabinet__history-list {
	margin-bottom: 70px;
}
.cabinet__history-item {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--light-4);
}
.cabinet__history-item--link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.cabinet__history-item--info {
	flex: 1;
	padding-right: 20px;
	position: relative;
}
.cabinet__history-item--info .title__h2 {
	margin-bottom: 5px;
}
.cabinet__history-item--number {
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	color: var(--blue-2);
	margin-bottom: 20px;
}
.cabinet__history-item--info p {
	margin-bottom: 3px;
	margin-top: 0;
}
.cabinet__history-item--info p:last-child {
	margin-bottom: 0;
}
.cabinet__history-item--img {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    flex-basis: 40%;
    max-width: 40%;
	overflow: hidden;
}
.cabinet__history-item--img .cabinet__history-item--src:not(:nth-child(-n+4)) {
	display: none;
}
.cabinet__history-item--img.is--active {
	overflow-x: scroll;
}
.cabinet__history-item--img.is--active .cabinet__history-item--src {
	display: block;
}
.cabinet__history-item--img.is--active .cabinet__history-item--show {
	display: none;
}
.cabinet__history-item--src {
	max-height: 80px;
	width: auto;
	margin-right: 20px;
	flex: 0 1 auto;
    margin-bottom: 10px;
}
.cabinet__order {}
.cabinet__order-detail--head {
	display: flex;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--light-4);
}
.cabinet__order-head--info {
	margin-right: 60px;
}
.cabinet__order-head--info .title__h2 {
	margin-bottom: 5px;
}
.cabinet__order-head--info .cabinet__history-item--number {
	margin-bottom: 0;
}
.cabinet__order-head--btn {}
.cabinet__order-detail--body {
	margin-bottom: 40px;
}
.cabinet__order-detail--body p {
	margin-bottom: 3px;
	margin-top: 0;
}
.cabinet__order-detail--box {
	margin-bottom: 30px;
}
.cabinet__order-detail--box:last-child {
	margin-bottom: 20px;
}
.cabinet__order-detail--title {
	font-weight: bold;
	font-size: 16px;
	line-height: 16px;
	color: var(--black);
	margin-bottom: 10px;
}
.cabinet__order-detail--bottom .cabinet__order-detail--title {
	margin-bottom: 20px;
}
.cabinet__order-detail--list {
	margin-bottom: 40px;
}
.cabinet__profile-head {
	border-bottom: 1px solid var(--light-4);
    margin-bottom: 40px;
}
.cabinet__profile-head .title__h1 {
	margin-bottom: 20px;
}
.cabinet__profile-body--box:not(:last-child) {
	margin-bottom: 60px;
}
.cabinet__profile-body--box .title__h2 {
	margin-bottom: 5px;
}
.cabinet__profile-box--head {
	margin-bottom: 30px;
}
.cabinet__profile-body--dataBox:not(:last-child) {
	margin-bottom: 20px;
}
.cabinet__profile-box--address:not(:last-child) {
	margin-bottom: 30px;
}
.cabinet__profile-data--name {
	font-weight: normal;
	font-size: 14px;
	line-height: 17px;
	color: var(--light-grey);
}
.cabinet__profile-data--value {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
}
.cabinet__profile-address--value {
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--black);
	margin-bottom: 10px;
}
.cabinet__profile-address--btns > a:not(:last-child) {
	margin-right: 10px;
}
.cabinet__profile-body form {
	max-width: 540px;
}
.cabinet__recommendation {}
.cabinet__recommendation-head {
	margin-bottom: 40px;
}
.cabinet__recommendation-head .title__h1 {
	margin-bottom: 0;
}
/*
	END CABINET
*/


/*
	FOOTER
*/
.footer {
	margin-top: 100px;
	background-color: var(--light-2);
	padding: 80px 0 63px 0;
	line-height: 1.4;
}
.footer__head {
	padding-bottom: 30px;
	display: flex;
}
.footer__col {
	flex: 0 0 25%;
	padding-right: 100px;
}
.footer__phones {
	margin-bottom: 43px;
}
.footer__phones-item {}
.footer__address {
	margin-bottom: 10px;
}
.footer__email {
	margin-bottom: 34px;
}
.footer__social {
	margin-bottom: 80px;
}
.footer__payment {}
.footer__payment-text {
	line-height: 1.4;
	margin-bottom: 10px;
}
.footer__payment-list {
	display: flex;
}
.footer__payment-item:not(:last-child) {
	margin-right: 10px;
}
.footer__payment-item {}
.footer__payment-src {
	max-height: 20px;
	height: 100%;
	width: auto;
}
.footer__bottom {
	display: flex;
	align-items: center;
	padding-top: 31px;
	border-top: 1px solid var(--other-3);
}
.footer__copyright {
	flex: 0;
	white-space: nowrap;
	margin-right: 45px;
}
.footer__links {
	flex: 1;
	display: flex;
}
.footer__links-item {
	display: block;
}
.footer__links-item:not(:last-child) {
	margin-right: 48px;
}
.footer__developer {
	flex: 0;
	margin-right: 100px;
}
.footer__developer-link {
	white-space: nowrap;
}
/*
	END FOOTER
*/


/*
	PAGE 404
*/
.page__404 {
	text-align: center;
	position: relative;
	max-width: 60%;
    margin: 0 auto;
	padding-top: 50px;
}
.page__404-text {
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	color: var(--black);
	margin-bottom: 20px;
}
.page__404-main {
	font-weight: normal;
	font-size: 278.571px;
	line-height: 100%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--black);
}
.page__404-back {
	font-weight: bold;
}
.page__404 .crystal__position-1 {
    top: 50%;
    right: -50px;
}
.page__404 .crystal__position-2 {
    top: 0;
    left: 75%;
}
.page__404 .crystal__position-3 {
    top: 80%;
    left: 70%;
}
.page__404 .crystal__position-4 {
    left: 25%;
    top: 100%;
}
/*
	END PAGE 404
*/


/*
	COOKIE
*/
.cookie {
	/*display: none;*/
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 28px 15px;
	background: var(--white);
	box-shadow: 0px -15px 45px rgba(130, 130, 130, 0.1);
	z-index: 10;
}
.cookie.active {
	display: block;
}
.cookie__inner {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}
.cookie__inner.center {
/*	align-items: center;   */
}
.cookie__description {
	flex: 4;
}
.cookie__description p {
	margin-top: 0;
	margin-bottom: 0;
}
.cookie__btn {
	flex: 1;
	text-align: center;
}
.cookie__description-short {
	padding-right: 15px;
}
.cookie__description-full {
	display: none;
}
.cookie.show .cookie__description-short {
	margin-bottom: 40px;
}
.cookie.show .cookie__description-full {
	display: block;
}
/*
	END COOKIE
*/


/*
	MESSENGER
*/
.messenger__popup {}
.messenger {
	position: fixed;
	bottom: 25px;
	right: 25px;
	background-color: var(--blue-2);
	background-image: url(../img/icons/messenger.svg);
	background-repeat: no-repeat;
	background-position: center 55%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	transition: 1s;
	cursor: pointer;
	z-index: 10;
}
.messenger:hover {
	background-color: var(--blue-6);
}
.messenger.active {
	background-position: center;
	background-image: url(../img/icons/cross-3.svg);
}
.messenger__item {
	display: none;
	position: fixed;
	right: 43px;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 10;
}
.messenger__item-text {
    position: absolute;
    right: calc(100% + 15px);
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
	top: calc(50% - 19px);
	background: #FFFFFF;
	border-radius: 9px;
	padding: 10px 12px;
}
.messenger__item-text:after {
    content: '';
    position: absolute;
    right: -15px;
    border: 7px solid transparent;
    border-left: 10px solid white;
    top: calc(50% - 7px);
}
.messenger__item-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.messenger__whatsapp {
	bottom: 125px;
	background-image: url(../img/icons/whatsapp.svg);
}
.messenger__vk {
	bottom: 195px;
	background-image: url(../img/icons/vk-2.svg);
}
/*
	END MESSENGER
*/