body {
	font-family: 'Roboto', sans-serif;
}

.hide {
    display: none;
}

.u-w-100 {
	width: 100%;
}

.o-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.o-flex-grid--start    { justify-content: flex-start; }
.o-flex-grid--center   { justify-content: center; }
.o-flex-grid--end      { justify-content: flex-end; }
.o-flex-grid--between  { justify-content: space-between; }
.o-flex-grid--around   { justify-content: space-around; }
.o-flex-grid--evenly   { justify-content: space-evenly; }

.l-container {
    /* max-width: var(--container-max-width, 1440px); */
    max-width: var(--container-max-width, 1720px);
    margin: 0 auto;
    /* padding: 60px 15px */
}

@media(max-width: 650px) {
    .l-container {
        /* padding:25px 15px */
    }
}

.l-container .l-container {
    max-width: 100%;
    /* padding: 15px 0; */
    margin: 0
}

header .l-container,footer .l-container {
    /* padding-top: 15px; */
    /* padding-bottom: 15px */
}

.l-container.has-sidebars {
    display: flex;
    gap: 4%
}

.l-container.has-sidebars>.l-content {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden
}

.l-container.has-sidebars>.l-content *:first-child .l-container {
    padding: 15px
}

.l-container.has-sidebars .l-container {
    max-width: unset;
    padding: 30px 15px;
    margin: 0
}

@media(max-width: 650px) {
    .l-container.has-sidebars .l-container {
        padding:15px 15px
    }
}

.l-sidebar {
    --_sidebar-width: var(--sidebar-width, 240px);
    width: var(--_sidebar-width);
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.logo img {
    width: 82px;
}

.l-header .logo {
    display: block;
    max-width: 90px;
}

.l-footer .logo {
    display: block;
    max-width: 90px;
}


/* Header */

.l-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* padding: 10px 20px; */
	padding-top: 28px;
	padding-bottom: 18px;
}

.l-header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.l-header-search button {
	height: 100%;
}

.l-header-icons {
	display: flex;
	gap: 32px;
	cursor: pointer;
}

.l-header-icons .icon {
	width: 32px;
	height: 32px;
	color: #1E1E1E;
	transition: color 0.3s ease;
}

.l-header-icons .icon:hover {
	color: #848484;
}

.l-header-search .input-group {
    display: flex;
    flex-wrap: nowrap;
}

.l-header-search form {
	margin-bottom: 0;
}

.l-header-search input {
	border-color: #1E1E1E;
	border-radius: 4px !important;
}

.l-header-search .input-group {
	position: relative;
	width: 480px;
}

.l-header-search .input-group .form-control {
	padding-right: 40px;
}

.l-header-search .input-group .input-group-append {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

.l-header-search .search-title-button {
	background: transparent;
	border: none;
	padding: 0;
	color: #999;
	font-size: 16px;
}

.l-header-search .search-title-button:hover {
  color: #333;
}

.l-header-search .form-control:focus {
    border-color: #333;
    outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .07), 0 0 8px rgba(0, 0, 0, .3);
}



/* Footer */

.l-footer {
	background-color: #1E1E1E;
	color: #fff;
}

.l-footer a {
	color: #fff;
	text-decoration: none !important;
}

.l-footer .contact-link {
	font-size: 20px;
	line-height: 160%;
	color: #F2F2F2;
	text-underline-offset: 6px;
}

.l-footer .contact-link a {
	font-size: 20px;
	line-height: 160%;
	color: #F2F2F2;
	text-underline-offset: 6px;
	transition: all 0.3s ease;
}

.l-footer .schedule {
	font-size: 16px;
	line-height: 160%;
	color: #F2F2F2;
	opacity: 0.6;	
	/* padding-left: 37px; */
}

.l-footer__line .l-container {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.l-footer .col-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 23px;
	text-transform: uppercase;	
	padding-bottom: 10px;
}

.l-footer .o-flex-grid {
	margin-top: 28px;
    /* gap: 80px; */
}

.l-footer .nav>li>a {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 140%;
    padding: 10px 0;
}

.l-footer .nav>li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0%;
	/* width: 100%; */
	/* opacity: 0; */
    height: 1px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.l-footer .nav>li>a:hover::after,
.l-footer .nav>li>a:focus::after {
    width: 100%;
	/* opacity: 1; */
}

.l-footer .nav>li>a:hover,
.l-footer .nav>li>a:focus {
    background-color: unset;
}

.l-footer__line--2 .l-container {
	/* border-top: 1px solid #F2F2F280; */
	/* opacity: 0.5; */
	border-top: 1px solid rgba(242, 242, 242, 0.5);
	padding-top: 37px;
	margin-top: 15px;
}



.l-footer__line--2 {
	color: #F2F2F2;
}

.l-footer__line--2,
.l-footer__line--2 a {
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	color: #F2F2F2;
	/* opacity: 0.9; */
}

.l-footer__line--2 a {
	color: #848484;
	text-decoration: underline;
	text-underline-offset: 5px;
    transition: all 0.15s ease;
}

.l-footer__line--2 a:hover {
	color: #fff;
	opacity: 1;
	text-decoration: none;
}

.o-footer-form {
	display: flex;
	flex-direction: column;
}

.footer-form-title {
	font-size: 20px;
	line-height: 160%;
}

.footer-form-body {
	display: flex;
	flex-direction: column;
}

.footer-form-line {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
	margin: 15px 0;
}

.footer-form-button {
	width: 137px;
}

.footer-form-line input {
	padding: 9px 12px;
	border: 1px solid #fff;
	border-radius: 4px;
	font-size: 16px;
	line-height: 160%;
	color: #1E1E1E;
	background-color: currentColor;
	max-width: 100%;
    transition: all 0.3s ease;
}

.footer-form-line input:hover,
.footer-form-line input:focus {
	outline: none;
	color: #1E1E1E;
	background-color: #fff;
}

.footer-form-line button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 9px 20px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 4px;
	font-size: 16px;
	line-height: 160%;
	color: #1E1E1E;
    transition: all 0.3s ease;	
}

.footer-form-line button:hover {
	background: #1E1E1E;
	color: #fff;
	border: 1px solid #fff;
}

.footer-form-checkbox span {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	position: relative;
	padding-left: 10px;
}

.footer-form-checkbox a {
	color: #848484;
	text-decoration: underline;
	text-underline-offset: 5px;
    transition: all 0.3s ease;
}

.footer-form-checkbox a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-form-checkbox span::before {
	position: absolute;
	content: '';
    box-shadow: none;
    border: 1px solid #fff !important;
    border-radius: 4px;
    width: 20px;
    height: 20px;
	top: -1px;
    left: -16px;
    box-sizing: border-box;
    box-shadow: none !important;
    background: none;
}

.footer-form-checkbox input {
	opacity: 0;
}

.footer-form-checkbox span::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 5px;
    width: 12px;
    height: 10px;
	cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.2s ease;	
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7L6 11L15 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-form-checkbox input:checked + span::after {
    opacity: 1;
}

.o-footer-socials {
	/* margin-top: 40px; */
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-form-title {
	font-size: 20px;
	line-height: 23px;	
}

.o-footer-socials .icon {
	width: 32px;
	height: 43px;
	color: #fff;
	transition: color 0.3s ease;
	cursor: pointer;
}

.o-footer-socials .icon:hover {
	color: #848484;
}



/* Main page */



.s-products .o-main-products-top{
	display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 30px;
}

.main-products-btn {
	display: flex;
	padding: 16px 42px;
	border: 1px solid #1E1E1E;
	border-radius: 4px;
	font-size: 18px;
	line-height: 160%;
	color: #1E1E1E;
	text-decoration: none;
	transition: all 0.3s ease;
}

.main-products-btn:hover {
	text-decoration: none;
	background-color: #1E1E1E;
	color: #FFF;
}

.products-swiper {
    position: relative;
    padding-bottom: 30px;
	overflow: hidden;
	height: fit-content;
}

.swiper-slide {
	/* height: 300px; */
	/* background-color: #e1e1e1; */
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
    display: none;
}

.products-swiper .swiper-slider-controls > div {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 0px #1E1E1E4D;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
	/* transform: translate(0, -50%); */
	top: 40%;
    /* opacity: 0; */
    /* visibility: visible; */
    transition: all 0.3s ease;
}

.products-swiper .swiper-button-prev {
    left: 10px;
	/* transform: translateX(-50px); */
}

.products-swiper .swiper-button-next {
    right: 10px;
	/* transform: translateX(50px); */
}

.products-swiper .swiper-button-prev svg,
.products-swiper .swiper-button-next svg {
    width: 12px;
    height: 24px;
    display: block;
}

.products-swiper:hover .swiper-button-prev {
    /* transform: translateX(0); */
    /* opacity: 1;visibility: visible; */
}

.products-swiper:hover .swiper-button-next {
    /* transform: translateX(0); */
    /* opacity: 1;visibility: visible; */
}

.products-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.products-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
}

.products-swiper .swiper-pagination-bullet-active {
    background: #000;
}

.product-slide-inner {
	display: flex;
	flex-direction: column;
	padding: 10px 10px 20px;
    transition: all 0.3s ease;
	border-radius: 4px;
	margin: 2px;
}

.product-slide-inner:hover {
    /* box-shadow: inset 0 0 4px rgba(0,0,0,.2); */
	box-shadow: 0px 0px 4px 0px #00000033;
}

.product-slide-image {
	/* padding: 10px; */
}

.product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-slide-name {
	font-size: 28px;
	line-height: 140%;
	color: #424242;
	margin-top: 20px;
}

.product-slide-name span {
	font-weight: 700;
}

.product-slide-bottom {
	display: flex;
	justify-content: space-between;
    align-items: center;
	margin-top: 6px;
}

.product-slide-price {
	font-size: 20px;
	line-height: 140%;
	color: #1E1E1E;	
}

.product-slide-price span {
	font-size: 16px;
	line-height: 140%;
	color: #848484;	
	text-decoration: line-through;
}

.product-slide-icons {
	display: flex;
	gap: 12px;
	margin-right: 25px;
}

.product-slide-icons .icon {
	cursor: pointer;
}





.l-folders-in-block {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 20px;
    margin: 0 auto;
    padding: 0;	
}

.o-category-item {
	display: flex;
    height: 500px;
    width: calc(33.3% - 13.34px);	
}

.o-category-item:nth-child(4) {
    width: calc(66.6% - 6px);
}

.o-category-item a {
	position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;	
}

.category-item-image {
    position: relative;
    width: 100%;
    display: block;
    height: 100%;	
}

.o-category-item .category-item-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
    will-change: transform;	
}

.o-category-item a:hover .category-item-image img {
    transform: scale(1.2);
}

.category-item-body {
	position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(199.17deg, rgba(30, 30, 30, 0) 35.55%, rgba(30, 30, 30, 0.13) 62.32%, #1E1E1E 115.4%);
}

.category-item-name {
	font-size: 32px;
	line-height: 140%;
	color: #FFF;	
}

.category-item-btn {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 16px 42px;
	border: 1px solid #FFF;
	border-radius: 4px;
	font-size: 18px;
	line-height: 160%;
	color: #FFF;
	transition: all 0.5s ease;
}

.category-item-btn:hover {
	background-color: #FFF;
	color: #1E1E1E;
}

.s-bonus-cards .l-container {
	padding-bottom: 80px;
}

.s-bonus-cards .l-bonus-cards-inner {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 140px 0 150px 140px;
	max-height: 600px;
	border-radius: 4px;
}

.s-bonus-cards .l-bonus-cards-inner h2 {
	font-weight: 700;
	font-size: 42px;
	line-height: 140%;
	text-transform: uppercase;
	color: #FFF;
}

.s-bonus-cards .l-bonus-cards-inner p {
	font-size: 22px;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 20px;
	max-width: 700px;
}

.s-bonus-cards .o-in-block-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 16px 42px;
	gap: 10px;
	border: 1px solid #FFF;
	border-radius: 4px;
	font-size: 22px;
	line-height: 160%;
	color: #FFF;
	margin-top: 40px;
	transition: all 0.5s ease;
	text-decoration: none;
}

.s-bonus-cards .o-in-block-btn:hover {
	background-color: #FFF;
	color: #1E1E1E;
}

.s-about-shop .o-flex-grid {
	gap: 80px;
}

.s-about-shop .o-flex-grid .o-flex-grid__col {
	width: calc(50% - 40px);
	color: #1E1E1E;
}

.s-about-shop .o-flex-grid .o-flex-grid__col img {
	border-radius: 4px;
}

.s-about-shop .o-flex-grid .o-flex-grid__col h2 {
	font-weight: 500;
	font-size: 42px;
	line-height: 160%;
}

.s-about-shop .o-flex-grid .o-flex-grid__col p {
	font-weight: 300;
	font-size: 16px;
	line-height: 160%;
}

.l-products-outer-block {
	display: flex;
    gap: 20px;	
	color: #1E1E1E;	
}

.l-products-left-block {
    display: flex;
    flex-direction: column;
    min-width: 290px;
    width: 290px;
}

.products-block-title {
	font-weight: 500;
	font-size: 42px;
	line-height: 140%;
}

.products-block-text {
	font-size: 22px;
	line-height: 140%;
	margin-top: auto;
}

.products-block-text span {
	font-weight: 500;
	text-transform: uppercase;
}

.products-block-button {
	padding: 16px 42px;
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	color: #FFF;
	background-color: #1E1E1E;
	border: 1px solid #1E1E1E;
	border-radius: 4px;
	transition: all 0.5s ease;
	text-align: center;
	margin-bottom: auto;
	margin-top: 28px;
}

.products-block-button:hover {
	background-color: #FFF;
	color: #1E1E1E;
	text-decoration: none;
}

.l-products-right-block {
    /* display: flex; */
    /* flex-direction: row; */
	/* gap: 0px; */
	width:80%;
}

.o-products-block-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
    transition: all 0.3s ease;
	margin: 2px;
	padding: 10px 10px 20px;
}

.o-products-block-item:hover {
    box-shadow: 0px 0px 4px 0px #00000033;
}

.products-block-image {
	position: relative;
}

.products-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 4px;
	position: relative;
}

.products-block-sale {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	color: #FFF;
}

.products-block-sale-discount {
	padding: 9px 20px;
	background-color: #DC0000;
}

.products-block-sale-new {
	padding: 9px 20px;
	background-color: #03AA46;
	text-transform: uppercase;
}

.products-block-name {
	font-size: 28px;
	line-height: 140%;
	color: #424242;	
}

.products-block-name span {
	font-weight: 500;
	color: #1E1E1E;
}

.products-block-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.products-block-price {
	font-size: 20px;
	line-height: 140%;
	color: #1E1E1E;	
}

.products-block-price span {
    font-size: 16px;
    line-height: 140%;
    color: #848484;
    text-decoration: line-through;
}

.products-block-icons {
    display: flex;
    gap: 12px;
    margin-right: 25px;	
}

.products-block-icons .icon {
    cursor: pointer;
}



.sk_wrapper{
	padding: 0px 100px;
	max-width: 1720px;
	margin: auto;
}

@media(max-width: 1890px) {
    .sk_wrapper {
        padding:0px 70px;
    }
}

@media(max-width: 1380px) {
    .sk_wrapper {
        padding:0px 60px;
		max-width: 1300px;
    }
}

@media(max-width: 1260px) {
    .sk_wrapper {
        padding:0px 20px
    }
}

.bx-nav-1-lvl-link-text{
	font-size: 22px;
	text-transform: none;
}

.bx-nav-1-lvl-link{
	color:black !important;
}

.bx-hover .bx-nav-1-lvl-link{
	text-decoration: underline;
}

.bx-nav-list-1-lvl{
	justify-content: space-around;
    gap: 10px;
}

section{
	padding-top: 40px;
	padding-bottom: 15px;
}

.b-slider__slide .slider_button{
	background: black;
    color: white;
    font-size: 24px;
    display: inline-block;
    padding: 0.8em 1em;
	border-radius: 5px;
}

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

.b-slider--single {
    position: relative;
}

.b-slider--single .slick-prev,
.b-slider--single .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 52px;
    height: 52px;
    min-height: 52px;
    box-shadow: 0px 0px 10px 0px #1E1E1E4D;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff; /* можно убрать */
    /* border-radius: 50%; /* если нужны круглые */
    cursor: pointer;
	border-color: lightgray;
}

/* левая */
.b-slider--single .slick-prev {
    left: -20px; /* регулируй */
}

/* правая */
.b-slider--single .slick-next {
    right: -20px; /* регулируй */
}

/* убираем стандартные стрелки */
.slick-prev:before,
.slick-next:before {
    display: none;
}

.b-slider--single .slick-prev {
    left: 0px;
}

.b-slider--single .slick-next {
    right: 0px;
}

h2{
	font-size: 42px;
    font-weight: 500;
    line-height: 58.8px;
}

.product-item-small-card .row {
	justify-content: center;
}

.product-item-image-wrapper{
	filter: brightness(0.9);
}

.bx-no-touch .product-item-container.hover .product-item{
	padding: 5px 5px;
}

.product-item-image-wrapper:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, .1);
}

.product-item-price-container .c-favorite-btn{
	position: absolute;
    right: 3px;
}

.product-item-price-current{
	font-size: 20px;
	font-weight: 400;
}

.product-item-title a{
	font-size: 28px;
}

.product-item-title{
	margin-bottom: 0px;
}

.product-item-info-container{
	margin-top: 0px;
}

.notallowed{
	display: none !important;
}

.product-item-scu-container{
	margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: #424242;
    line-height: 22.4px;
}

.product-item-scu-block {
	display: inline-block;
	vertical-align: bottom;
}

.product-item-scu-item-color-container, .product-item-scu-item-text-container{
	padding: 0px;
}

.product-item-scu-item-list{
	margin: 0px;
}

.product-item-scu-item-text{
	font-size: 18px;
    vertical-align: unset;
    text-transform: unset;
    line-height: 22.4px;
    font-weight: 400;
}

.product-item-scu-item-text-block{
	outline-width: 0px !important;
}

.product-item-scu-item-color-container, .product-item-scu-item-text-container {
	vertical-align: bottom;
}

.product-item-scu-item-list .selected {
	background: lightgray;
    border-radius: 5px;
    padding: 3px;
}

.product-item-button-container{
	display: flex;
}

.product-item-button-container>div{
	display: flex;
    flex-direction: column;
	width: 100%;
	margin-top: 5px;
}

.product-item-button-container div .btn{
	display: block;
    width: 100%;
    font-size: 18px;
    background: white;
    color: black !important;
    background-color: white !important;
    margin: 5px 0px;
    border-color: black !important;
	padding: 10px 0px;
}

.product-item-button-container div .btn:hover{
	background-color: gray !important;
	color: white !important;
}

.product-item-info-container{
	margin-bottom: 0px;
}

.product-item-button-container div .add_to_cart{
	background-color: black !important;
	color: white !important;
}

.product-item-button-container div .add_to_cart:hover{
	color: black !important;
    background-color: gray !important;
}

.footer_logo{
	margin-bottom: 2em;
}

.l-footer ul.nav li {
	max-width: 190px;
}

.no_margin_top{
	margin-top: 0px !important;
}

.l-footer .b-form-subscribe .o-field input{
	margin-top: 1em;
}

.l-footer .b-form-subscribe .o-form__submit-btn{
	margin-top: 1em;
}

.sk-product-item-label-text {
	position: absolute;
    top: 0px;
    display: flex;
    /* gap: 5px; */
    /* padding: 3px 5px; */
}

.sk-product-item-label-text div{
	padding: 7px 10px;
    color: white;
    z-index: 20;
    font-weight: 600;
    font-size: 16px;
}



/* Catalog */

.bx-filter.bx-blue .bx-filter-section {
	background-color: #fff;
}

.bx-filter-title {
	display: none;
}

.bx-filter-parameters-box {
    padding: 20px 9px;
    border-bottom: 1px solid #bcbcbc;	
}

.bx-filter-parameters-box:first-child {
    border-top: 1px solid #bcbcbc;
}

.bx-filter-parameters-box-title {
	position: relative;
    padding: 0;
    font-size: 22px;
    font-weight: normal;
    line-height: 30.8px;
    color: #1e1e1e;
    cursor: pointer;
}

.bx-filter .bx-filter-parameters-box-title span {
    color: #1e1e1e;
    padding: 0;
    font-size: 22px;
    font-weight: normal;
    line-height: 30.8px;
}

.bx-filter .bx-filter-parameters-box-title span:hover {
    border: 0;
}

.bx-filter-parameters-box-title svg {
    width: 14px;
    /* height: 32px; */
	/* min-height: 30px; */
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
	transition: all .18s linear;
}

.bx-filter .bx-ui-slider-track {
	height: 2px;
}

.bx-filter.bx-blue .bx-ui-slider-handle.left,
.bx-filter.bx-blue .bx-ui-slider-handle.right {
    width: 14px;
    height: 14px;
    background: #1e1e1e;
    border-radius: 50%;
    border: none;
    top: 50%;
    transform: translateY(-50%);
}

.bx-filter .bx-ui-slider-handle.left {
	margin-left: -7px;
}

.bx-filter .bx-ui-slider-handle.right {
	margin-right: -7px;
}

.bx-filter.bx-blue .bx-ui-slider-pricebar-v {
	background: #1e1e1e;
}

.bx-filter.bx-blue .bx-ui-slider-pricebar-vn {
	background: #848484;
	z-index: 49;
}

.bx-filter .bx-ui-slider-part.p1,
.bx-filter .bx-ui-slider-part.p5 {
	height: 0;
}

.price-filter-container {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
	gap: 7px;
}

.bx-filter-parameters-box-container-block {
    display: flex;
    align-items: center;
    gap: 6px;
	border: none;
	border-bottom: 1px solid #1e1e1e;
    width: 110px;
	padding: 0 10px;
}

.bx-filter .bx-filter-input-container input {
    font-size: 16px;
    font-weight: normal;
    line-height: 18.75px;
    border: none;
}

.bx-ft-sub {
    font-style: normal;
}

.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub {
	padding-bottom: 0;
}

.bx-filter .delimiter {
	/* margin-top: 10px; */
}

.bx-filter-input-checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bx-filter-input-checkbox input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 16px;
    height: 16px;
    border: 1px solid #1e1e1e;
    background: #fff;
    position: relative;
    margin: 0;
    cursor: pointer;
}

.bx-filter-input-checkbox input[type="checkbox"]:checked::after{
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #848484;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bx-filter-input-checkbox input[type="checkbox"]:checked{
    border-color: #848484;
}

.bx-filter-input-checkbox input[type="checkbox"]:checked + .bx-filter-param-text{
    color: #848484;
}

.bx-filter .checkbox label {
	padding-left: 12px;
    font-size: 16px;
    font-weight: normal;
    color: #424242;
    line-height: 18.75px;
}

.bx-filter .checkbox label:hover {
	color: #848484;
}

.bx-filter-block .checkbox:first-child {
    margin-top: 20px;
}

.bx-filter-block .checkbox {
    margin-top: 16px;
}

.bx-filter .btn-check:focus + .btn, .btn:focus {
	outline: unset;
	box-shadow: unset;
}

.bx-filter .btn:active:focus {
	outline: unset;
	box-shadow: unset;
}

.bx-filter .bx-filter-button-box {
	padding: 0;
	margin-top: 10px;
}

.bx-filter .btn.btn-themes,
.bx-filter .btn.btn-link {
	font-size: 18px;
    line-height: 160%;
    border-radius: 4px;
	padding: 16px;
	width: 100%;
	height: unset;
}



/* Возвраты */

.blocks-title {
    font-weight: 500;
    font-size: 42px;
    line-height: 58.8px;
	color: #1e1e1e;
	margin: 0 0 25px;
}

.return-contacts {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	padding: 32px 0;
}

.return-contacts-left {
	width: 33%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 12px;
}

.return-contacts-right {
	width: 67%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 12px;
}

.return-contacts-title {
	font-size: 17px;
	line-height: 1.53;
	color: rgb(75,78,84);
}

.return-contacts-text,
.return-contacts-text a {
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: rgb(30,30,30);
}

.return-contacts-text a {
	font-size: 26px;
}

.return-contacts a {
	text-decoration: none;
}

.return-contacts img {
    height: 44px;
    width: 44px;
    border-radius: 6px;
	margin: 10px 4px 8px;
    transition: all .15s;
}

.return-contacts img:hover {
    opacity: 0.9;
}

.return-contacts-top {
    display: flex;
    justify-content: center;
	padding: 12px 0;
}

.return-contacts-top p {
	width: 67%;
	font-size: 18px;
	line-height: 1.667;
	color: rgb(75,78,84);
}

.return-form {
	padding: 32px 0;
	width: 50%;
}

.return-form-title {
	font-size: 18px;
	line-height: 1.667;
	color: rgb(75,78,84);
	margin-top: 28px;
	padding-bottom: 24px;
}

.return-form-item {
	font-size: 16px;
	line-height: 1.2;
	color: rgb(75,78,84);
	padding-bottom: 24px;
}

.return-form span {
	color: #eb5757;
}

.return-form-item input {
    border: 1px solid rgb(75 78 84 / 30%);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 12px 16px;
    width: 100%;
    outline: 0;
    transition: all .15s;
	margin-top: 8px;
}

.return-form-item input:focus,
.return-form-item input:hover {
    background: rgb(62 39 35 / 10%);
    border: 1px solid #3e2723;
}

.return-form-check {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;	
	font-size: 16px;
	line-height: 1.2;
	color: rgb(75,78,84);
    margin-bottom: -12px;
	cursor: pointer;
}

.return-form-check input{
    position: absolute;
    opacity: 0;
}

.return-form-check .checkmark{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgb(75 78 84 / 30%);
    border-radius: 4px;
    transition: all .15s;
	flex-shrink: 0;
}

.return-form-check .checkmark::after{
    content: "";
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: all .15s;
}

.return-form-check input:checked + .checkmark{
    background: #3e2723;
    border-color: #3e2723;
}

.return-form-check:hover .checkmark{
    background: rgb(62 39 35 / 10%);
    border-color: #3e2723;
}

.return-form-check input:checked + .checkmark::after{
    opacity: 1;
}

.return-form-file {
	padding-top: 40px;
}

.return-form-file .return-form-item {
	padding-bottom: 10px;
}

.return-form-button {
	display: flex;
	align-items: center;
	gap: 6px;
}

.return-form-button .upload-button {
	font-size: 18px;
	padding: 8px 16px;
	color: rgb(75,78,84);
	background-color: rgb(62 39 35 / 20%);
    transition: all 0.15s;
	cursor: pointer;
}

.return-form-button .upload-button:hover {
	background-color: rgb(62 39 35 / 30%);
}

.return-form-text {
	font-size: 15px;
	color: rgb(75,78,84);
}

.return-form-consent {
	padding-top: 32px;
}

.return-form-consent a {
	color: #3e2723;
}

.return-form-consent a:hover {
	text-decoration: none;
}

.return-form-button button {
	font-size: 18px;
	padding: 8px 32px;
	background-color: rgb(62, 38, 34);
	color: #fff;
	transition: all 0.15s;
	margin-top: 32px;
}

.return-form-button button:hover {
	background-color: #4e312c;
}

@media (max-width: 1260px) {
	.blocks-title {
		font-size: 28px;
		line-height: 39.2px;
		margin: 0 0 20px;
	}
}

@media (max-width: 1046px) {
	.return-contacts-text a {
		font-size: 22px;
	}
}

@media (max-width: 822px) {
	.return-contacts-top p {
		width: 100%;
	}
	.return-contacts-left {
		width: 100%;		
	}
	.return-contacts-right {
		width: 100%;		
	}
	.return-form {
		width: 100%;
	}
}



/* Доставка */

.delivery-block {
	display: flex;
	padding: 36px;
	border: 1px solid rgb(75 78 84 / 10%);
	margin-bottom: 32px;
}

.delivery-block:first-child {
	margin-top: 32px;
}

.delivery-block-left {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    border-radius: 50%;
    margin: 0 32px 0 0;
    padding: 25px;
    background-color: #aa7369;
    flex: 0 0 auto;
}

.delivery-block-title {
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2;
	color: rgb(30, 30, 30);
	margin-bottom: 20px;
}

.delivery-block-text {
	font-size: 18px;
	line-height: 1.53;
	color: rgb(75,78,84);
	margin-bottom: 20px;
}

.delivery-block-text span {
	font-weight: bold;
}

.delivery-block-text ul{
	padding-left: 1rem;
	padding-top: 16px;
}

.delivery-block-bottom {
	display: flex;
}

.delivery-block-bottom div {
	display: flex;
	flex-wrap: wrap;
	margin: 0 30px 10px 0;
}

.delivery-text-block {
	display: flex;
	flex-direction: column;
}

.delivery-text {
    display: flex;
    justify-content: center;
	margin-bottom: 18px;
}

.delivery-text p {
	width: 67%;
	font-size: 18px;
	line-height: 1.667;
    text-align: center;
	color: rgb(75, 78, 84);
}

.delivery-map{
	margin-bottom: 32px;
}

@media (max-width: 767px) {
	.delivery-block-left {
		margin-bottom: 16px;
        height: 80px;
        width: 80px;
	}
	.delivery-block-left img {
		height: 48px;
		width: 48px;
	}
	.delivery-block-bottom {
		flex-wrap: wrap;
	}
	.delivery-block {
		flex-direction: column;
	}
	.delivery-text p {
		width: 100%;
	}
	.delivery-block-text,
	.delivery-text p {
		font-size: 16px;
		line-height: 1.5;
	}
}



/* Оплата */

.payment-title {
	font-weight: 500;
	font-size: 36px;
	color: rgb(30, 30, 30);
	line-height: 1.2;
	padding-top: 32px;
}

.payment-text {
	font-size: 20px;
	line-height: 1.5;
	color: rgb(75,78,84);
	padding-top: 12px;
}

.payment-options {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin: 32px 0 24px;
}

.payment-options img {
    width: 132px;
    height: 70px;
    max-width: 150px;
    border-radius: 6px;
    border: 1px solid rgb(75 78 84 / 10%);	
}

@media (max-width: 822px) {
	.payment-title {
		font-size: 28px;
	}
	.payment-text {
		font-size: 17px;
		line-height: 1.53;
	}
	.payment-options {
		flex-wrap: wrap;
	}
}

@media (max-width: 534px) {
	.payment-title {
		font-size: 24px;
	}
	.payment-text {
		font-size: 16px;
		line-height: 1.5;
	}
}



/* О нас */

.about-container {
	font-size: 20px;
    line-height: 1.5;
	color: rgb(75,78,84);
}

.about-container::after {
    content: "";
    display: table;
    clear: both;
}

.about-image {
    float: right;
    max-width: 40%;
    margin: 0 0 12px 24px;
}

.about-benefits {
	display: flex;
	justify-content: space-between;
	padding: 32px 0;
}

.about-benefit {
	display: flex;
	/* align-items: center; */
	width: 30%;
	font-size: 16px;
	line-height: 1.5;
	color: rgb(75,78,84);
}

.about-benefit h3 {
	font-size: 20px;
	line-height: 1.2;
	color: rgb(30, 30, 30);
	margin-bottom: 16px;
}

.about-benefit-right {
	display: flex;
	flex-direction: column;
}

.about-benefit img {
	max-width: 140px;
    max-height: 140px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: rgb(247 247 247);
    padding: 16px;
	margin-right: 24px;
}

@media (max-width: 1444px) {
	.about-container {
		font-size: 18px;
		line-height: 1.667;
	}
}

@media (max-width: 1046px) {
	.about-benefits {
		flex-wrap:wrap;
		padding-top: 0;
	}
	.about-benefit {
		width: 100%;
		margin-top: 32px;
	}
}

@media (max-width: 822px) {
	.about-container {
		font-size: 17px;
		line-height: 1.53;
	}
    .about-image {
        max-width: 50%;
		margin: 0 0 8px 16px;
    }
	.about-benefit img {
		max-width: 72px;
	}
}

@media (max-width: 534px) {
	.about-container {
		font-size: 16px;
		line-height: 1.5;
	}
    .about-image {
        float: none;
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 0 15px 0;
    }
	.about-benefit {
		line-height: 1.2;
	}
	.about-benefit h3 {
		font-size: 18px;
		line-height: 1.2;
	}
	.about-benefit img {
		max-width: 64px;
	}
}



/* Акции */

.akcii-title {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 500;
	color: rgb(30, 30, 30);
	margin: 1em 0;
}

.akcii-text {
	font-size: 20px;
	line-height: 1.5;
	color: rgb(75,78,84);
	font-weight: 400;
	margin-bottom: 24px;
}

.akcii-button {
	display: flex;
    justify-content: center;
	padding: 32px 0;
}

.akcii-button button {
	text-transform: uppercase;
	padding: 12px 32px;
	font-size: 18px;
	background-color: #3e2723;
	color: #fff;
	transition: all 0.15s;
}

.akcii-button button:hover {
	background-color: #4e312c;
}

@media (max-width: 1444px) {
	.akcii-title {
		font-size: 28px;
	}
	.akcii-text {
		font-size: 17px;
	}
}

@media (max-width: 822px) {
	.akcii-title {
		font-size: 26px;
	}
}

@media (max-width: 534px) {
	.akcii-title {
		font-size: 24px;
	}
	.akcii-text {
		font-size: 16px;
	}
}



/* Контакты */

.contacts-block {
	display: flex;
	width: 100%;
	padding: 32px 0;
}

.contacts-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: calc(33% - 32px);
	margin: 0 16px;
}

.contacts-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-weight: 500;
	line-height: 1.2;
	font-size: 16px;
}

.contacts-item a {
	font-size: 20px;
	color: rgb(30, 30, 30);
	text-decoration: none;
}

.contacts-item.slim {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.53;
}

.contacts-item-links {
	display: flex;
	gap: 20px;
}

.contacts-right {
	margin: 0 16px;
	width: calc(66% - 32px);
}

.contacts-item.contacts-requisite {
	font-size: 24px;
}

@media (max-width: 1046px) {
	.contacts-left,
	.contacts-right {
		margin: 0 12px;
		width: calc(50% - 24px);
	}
}

@media (max-width: 822px) {
	.contacts-block {
		flex-direction: column;
	}
	.contacts-left,
	.contacts-right {
		width: 100%;
	}
	.contacts-right {
		margin-top: 30px;
	}
	.contacts-item a {
		font-size: 18px;
	}
	.contacts-item.slim {
		font-size: 17px;
	}
}

@media (max-width: 534px) {
	.contacts-item a {
		font-size: 18px;
	}
	.contacts-item.slim {
		font-size: 16px;
	}
}