@media (min-width: 1600px) { :root {
	--column-width: 1280px;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-main: #5D2C6E;
	--color-main-hover: #6c4279;
	--gradient: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
	--color-black: #151515;
	--color-white: #FFFFFF;
	--color-grey: #888888;
	--color-stroke: #D5D5D5;
	--color-green: #35d87c;
    --color-red: #f8444d;
}

html {
	scroll-behavior: smooth;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

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

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition-disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.visuallyhidden {
	position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-main);
}

/* CSS KIT */

.mobile {
    display: none !important;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.j-center {
    justify-content: center;
}

.j-sb {
    justify-content: space-between;
}

.fd-column {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

a {
    text-decoration: none;
	color: var(--color-black);
}

.mb {
    margin-bottom: 100px;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
}

.with-line {
    position: relative;
}

.with-line:after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}

.with-line:hover::after {
    width: 100%;
}

.with-line.color-white::after {
    background: var(--color-white);
}

.hover-color-main {
	transition: .3s;
}

.hover-color-main:hover {
	color: var(--color-main);
}

.hover-color-main.with-line::after {
	background: var(--color-main);
}

/* COLORS */

.color-main {
	color: var(--color-main);
}

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.color-stroke {
	color: var(--color-wtroke);
}

.gradient {
	background: var(--gradient);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

/* TEXT */

.h1 {
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: 70px;
}

.h2 {
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
}

.h3 {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px;
}

.h4 {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px;
}

.h5 {
	font-size: 19px;
	font-style: normal;
	font-weight: 600;
	line-height: 26px;
}

.main-text {
	font-family: 'Montserrat';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

/* 404 */

.error-404 {
	height: 720px;
	position: relative;
	background: var(--blue-gradient, linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%));
}

.error-404 .breadcrumbs {
	position: absolute;
	left: var(--offset);
	z-index: 1;
}

.error-404-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1440px;
	height: 100%;
	z-index: 0;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-404-inner {
	position: relative;
	z-index: 2;
	padding-top: 428px;
}

.error-404-title {
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 20px;
	text-align: center;
}

.error-404-desc {
	margin-bottom: 30px;
	text-align: center;
}

.error-404-content .btn {
	width: 185px;
	height: 50px;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: 100px;
}

.error-404-content .btn-right {
	padding-right: 12px;
	padding-left: 35px;
	margin-right: 30px;
}

.error-404-content .btn svg {
	margin-left: 42px;
}

/* CONTENT */

.content h2 {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 34px; 
	margin: 20px 0;
	margin-top: 40px;
}

.content h2:first-child {
	margin-top: 0;
}

.content h3 {
	/* font-style: normal;
	font-weight: 600;
	font-size: 19px;
	line-height: 22px; */
	margin-bottom: 15px;
	margin-top: 30px;
}

.content p, 
.content li {
	font-family: 'Montserrat';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	margin: 15px 0;
}

.content ol li {
	margin-left: 15px;
	padding-left: 6px;
}

.content ol li::marker {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	color: var(--color-main);
} 

.content ul li {
	align-items: flex-start;
	list-style: none;
}

.content p span,
.content li span {
	display: inline-block;
}

.content li p {
	flex: 1;
}

.content ul li::marker {
	display: none;
	content: "";
}

.content ul li::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-main);
	flex-shrink: 0;
	margin-right: 10px;
	margin-top: 9px;
}

.content ul, 
.content ol {
	margin: 15px 0;
	display: flex;
	flex-direction: column;
}

.content a {
	display: inline;
	text-decoration: underline;
	color: var(--color-main);
}

.content li a {
	display: contents;
}

.content img {
	margin: 25px 0;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.content figure {
	margin: 0;
}

.content p:first-child {
	margin-top: 0;
}

.content p:last-child {
	margin-bottom: 0;
}

.content table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px double var(--color-stroke);
}

.content table td {
	min-width: 2em;
	padding: 0.4em;
	border: 1px solid var(--color-stroke);
}

/* MODALS */

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: 8px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.closemodal svg,
.closemodal img {
    width: 16px;
    height: 16px;
}

/* counter */

.counter-inner {
    position: relative;
    width: 130px;
}

.counter.small .counter-inner {
    width: 101px;
}

.counter-input {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: 6px;
    width: 130px;
    height: 36px;
    text-align: center;
    cursor: pointer;
}

.counter.small .counter-input {
    width: 101px;
}

.counter-symbol {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: .3s;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    user-select: none;
    border: 1px solid var(--color-stroke);
    background: var(--color-white);
    border-radius: 6px;
}

.counter-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-plus {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-symbol:hover {
    color: var(--color-main);
}

.counter.small .counter-symbol {
    width: 32px;
} 

    .breadcrumbs {
        margin-top: 25px;
        margin-bottom: 40px;
    }

    .breadcrumbs-inner {
        display: inline;
        list-style: none;
    }

    .breadcrumbs-item {
        display: inline;
    }

    .breadcrumbs-link {
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 20px;
        color: var(--color-black);
        display: inline;
    }

    .breadcrumbs-link::after{
        content: "";
        display: inline-block;
        width: 4px;
        height: 4px;
        border-right: 1px solid var(--color-black);
        border-bottom: 1px solid var(--color-black);
        transform: rotate(-45deg);
        margin: 0 5px;
        margin-bottom: 2.5px;
    }

    .breadcrumbs-last::after{
        display: none;
    }

    .breadcrumbs-last{
        color: var(--color-grey);
    }


 

    .models {
        margin-bottom: 30px;
    }

    .model {
        width: 190px;
        margin-right: 28px;
        margin-bottom: 30px;
        padding: 10px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        border-radius: 20px;
        background: var(--white, #FFF);
        box-shadow: 0px 4px 20px 2px #F0F0F0;
        transition: .3s;
    }

    .model:hover {
        color: var(--color-main);
    }

    .model:nth-child(6n) {
        margin-right: 0;
    }

    .model-image {
        width: 115px;
        height: 134px;
        object-fit: contain;
        margin-bottom: 10px;
    }


 

    .input-select {
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .select-label {
        margin-bottom: 5px;
        display: block;
    }

    .select {
        position: relative;
        /* min-width: 133px; */
        width: 100%;
        height: 40px;
        cursor: pointer;
    }

    .select-title, 
    .select-item {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
    }

    .select-title {
        display: flex;
        align-items: center;
        border: 1px solid var(--color-stroke);
        background: var(--color-white);
        border-radius: 10px;
        padding-left: 15px;
        padding-right: 15px;
        height: 100%;
        position: relative;
        user-select: none;
    }

    .select-title-icon {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

    .select-title::after {
        position: absolute;
        right: 15px;
        top: 50%;
        display: block;
        content: "";
        width: 7px;
        height: 7px;
        border: 1px solid var(--color-grey);
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
        border-left: none;
        border-top: none;
        margin-top: -2px;
    }

    .select.active .select-title::after {
        margin-top: 1px;
        transform: translateY(-50%) rotate(225deg);
    }

    .select-title.active {
        color: var(--color-text);
    }

    .select-items{
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        width: 100%;
        z-index: 100;
        background: #FFFFFF;
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
        padding: 10px 20px;
        padding-right: 10px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s;
        border-radius: 10px;
    }

    .select.active .select-items {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .select-item {
        margin-bottom: 5px;
        transition: .3s;
    }

    .select-item:last-child{
        margin-bottom: 0;
    }

    .select-item:hover {
        color: var(--color-main);
    }

    .select-items-inner {
        max-height: 244px;
        overflow: auto;
    }

    .select-items-inner::-webkit-scrollbar {
		width: 2px;
	}

	.select-items-inner::-webkit-scrollbar-track {
		background-color: var(--color-light);
	}

	.select-items-inner::-webkit-scrollbar-thumb {
		background-color: var(--color-main);
	}



 

    .rs-container * {
        box-sizing: border-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .rs-container {
        position: relative;
        margin-left: 5px;
        width: 200px;
        margin-top: 15px;
        padding-bottom: 20px;
        margin-left: 10px;
    }

    .priceslider-item {
        display: none;
    }

    .rs-container .rs-bg,
    .rs-container .rs-selected {
        background-color: var(--color-stroke);
        height: 3px;
        left: 0;
        position: absolute;
        top: 5px;
        width: 100%;
        border-radius: 3px
    }

    .rs-container .rs-selected {
        background-color: var(--color-main);
        border: 1px solid var(--color-main);
        /* transition: all .2s linear; */
        width: 0
    }

    .rs-container.disabled .rs-selected {
        background-color: var(--color-stroke);
    }

    .rs-container .rs-pointer {
        width: 13px;
        height: 13px;
        cursor: pointer;
        left: -10px;
        position: absolute;
        top: 0;
        /* transition: all .2s linear; */
        background: var(--color-main);
        border-radius: 50%;
    }

    .rs-container.disabled .rs-pointer {
        cursor: default
    }

    .rs-container.sliding .rs-pointer,
    .rs-container.sliding .rs-selected {
        transition: none
    }

    .rs-container .rs-scale {
        left: 0;
        position: absolute;
        top: 6px;
        white-space: nowrap
    }

    .rs-container .rs-scale span {
        float: left;
        position: relative
    }

    .rs-container .rs-scale span::before {
        background-color: var(--color-stroke);
        content: "";
        height: 8px;
        left: 0;
        position: absolute;
        top: 10px;
        width: 1px
    }

    .rs-container.rs-noscale span::before {
        display: none
    }

    .rs-container.rs-noscale span:first-child::before,
    .rs-container.rs-noscale span:last-child::before {
        display: block
    }

    .rs-container .rs-scale span:last-child {
        margin-left: -1px;
        width: 0
    }

    .rs-container .rs-scale span ins {
        color: var(--color-text);
        display: inline-block;
        font-size: 12px;
        margin-top: 20px;
        text-decoration: none
    }

    .rs-container.disabled .rs-scale span ins {
        color: var(--color-stroke);
    }




    .filter-price .filter-title::before,
    .filter-price .filter-title::after {
        display: none;
    }

    .priceslider-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .priceslider-input-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }

    .priceslider-inner input::-webkit-outer-spin-button,
    .priceslider-inner input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .priceslider-inner input {
        background: var(--color-white);
        width: 75px;
        height: 36px;
        padding: 0 10px;
        text-align: center;
        -webkit-appearance: none;
        border: 1px solid var(--color-stroke);
        display: block;
        border-radius: 5px;
        -moz-appearance: textfield;
    }

    .priceslider-input {
        display: flex;
        align-items: center;
    }

    /* .priceslider-btn {
        background: var(--color-white);
        border: 1px solid var(--color-extra-main);
        width: 42px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        cursor: pointer;
        user-select: none;
    } */


 


    .containercheckbox {
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        position: relative;
        width: 100%;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding-left: 30px;
        transition: .3s;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }   

    .containercheckbox a {
        display: inline;
    }

    .containercheckbox input {
        opacity: 0;
        cursor: pointer;
        height: 1px;
        width: 1px;
    }

    .checkmark {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: 20px;
        width: 20px;
        background-color: var(--color-white);
        border: 1px solid var(--color-stroke);
        transition: .3s;
        border-radius: 4px;
    }

    .checkbox.white .checkmark {
        background-color: var(--color-white);
        border: 1px solid var(--color-stroke);
        border-radius: 4px;
    }

    .checkbox.white .containercheckbox {
        color: var(--color-text-main);
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .containercheckbox input:checked~.checkmark:after {
        display: block;
        opacity: 1;
    }

    .containercheckbox input:checked~.checkmark {
        background: var(--color-main);
        border: 1px solid var(--color-main);
    }

    .containercheckbox .checkmark:after {
        left: 50%;
        top: calc(50% - 2px);
        transform: translate(-50%, -50%) rotate(45deg);
        width: 3px;
        height: 8px;
        border: solid var(--color-white);
        border-width: 0 2.1px 2.1px 0;
        transition: .3s;
        z-index: 10;
    }


 

    .btn {
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .3s;
        border: none;
        text-align: center;
        height: 44px;
        font-family: 'Open Sans';
        padding: 0 20px;
        transition: .3s;
        position: relative;
    }

    .btn-left {
        padding-left: 12px;
    }

    .btn-left::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        left: 36px;
    }

    .btn-right {
        padding-right: 12px;
    }

    .btn-right::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        right: 36px;
    }

    .btn svg {
        width: 14px;
        height: 14px;
    }

    .btn-left svg {
        margin-right: 25px;
    }

    .btn-right svg {
        margin-left: 25px;
    }

    .btn-mobile {
        display: none;
    }

    .btn-100 {
        width: 100%;
    }

    .btn-240 {
        width: 240px;
    }

    .btn-290 {
        width: 290px;
    }

    .btn-200 {
        width: 200px;
    }

    .btn-340 {
        width: 340px;
    }

    .btn-260 {
        width: 260px;
    }

    .btn-415 {
        width: 415px;
    }

    .btn-210 {
        width: 210px;
    }

    .btn-175 {
        width: 175px;
    }

    .btn-cart {
        width: 46px;
        border-radius: 10px;
    }

    .btn-cart svg,
    .btn-cart img {
        width: 24px;
        height: 24px;
    }

    .btn-yellow {
        background: var(--color-main);
    }

    .btn-yellow:hover {
        background: var(--color-yellow);
    }

    .btn-white {
        background: var(--color-white);
        color: var(--color-main);
    }

    .btn-white:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-white:after {
        border-color: var(--color-main);
        transition: .3s;
    }

    .btn-white path {
        fill: var(--color-main);
        transition: .3s;
    }

    .btn-white:hover path {
        fill: var(--color-white);
    }

    .btn-white:hover::after {
        border-color: var(--color-white);
    }

    .btn-red {
        background: #FA580F;
    }

    .btn-red:hover {
        background: #ff7231;
    }

    .btn-main {
        background: var(--color-main);
    }

    .btn-main:hover {
        background: var(--color-main-hover);
    }

    .btn-gradient {
        background: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
        background-size: 130% 100%;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-gradient:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-empty {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-right svg {
        transition: .3s;
    }

    .btn-right:hover svg {
        transform: translateX(2px);
    }

    .btn-left svg {
        transition: .3s;
    }

    .btn-left:hover svg {
        transform: translateX(-2px);
    }

    .btn-empty:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-empty.btn-main {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-empty.btn-main:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-dark-main {
        color: var(--color-white);
        background: var(--color-text-main);
    }

    .btn-dark-main:hover {
        background: var(--color-main-hover);
        color: var(--color-white);
    }

    .btn-none {
        display: none;
    }
   
    .btn-inactive {
        background: var(--color-grey) !important;
        pointer-events: none;
    }


 

    .product-card {
        width: 240px;
        border-radius: 20px;
        background: var(--color-white);
        box-shadow: 0px 4px 20px 2px #F0F0F0;
        margin-right: 20px;
    }

    .product-card-image {
        width: 240px;
        height: 280px;
        object-fit: contain;
    }

    .product-card:nth-child(5n) {
        margin-right: 0;
    }

    .product-card-content {
        padding: 10px 15px 15px;
        flex: 1;
    }

    .product-card-content-info {
        flex: 1;
    }

    .product-card-title {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 15px;
        transition: .3s;
        display: block;
    }

    .product-card:hover .product-card-title {
        color: var(--color-main);
    }

    .product-card-colors {
        margin-bottom: -5px;
    }

    .product-card-color {
        width: 16px;
        height: 16px;
        padding: 4px;
        border-radius: 50%;
        margin-right: 5px;
        margin-bottom: 5px;
        position: relative;
        cursor: pointer;
        border: 1px solid var(--color-stroke);
    }

    .product-card-color.active::after {
        content: "";
        display: block;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1px solid var(--color-black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-card-color.active {
        margin: 0 4px;
        margin-right: 8px;
    }

    .product-card-color:first-child {
        margin-left: 0;
    }

    .product-card-footer {
        margin-top: 16px;
        border-top: 1px solid var(--color-stroke);
        padding-top: 12px
    }

    .product-card-price {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .product-card-footer .btn {
        height: 40px;
        padding: 13px 20px;
        padding-right: 13px;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 13px;
    }

    .product-card-short-desc {
        font-family: 'Montserrat';
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 36px;
        display: none;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: 35px;
    }

    .product-items-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .product-items-inner .product-card {
        margin-bottom: 30px;
    }

    .products-items {
        margin-bottom: -30px;
    }


 


    .pagination-wrapper {
        margin-top: 60px;
    }

    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .pagination-btn {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        color: var(--color-black);
        margin: 0 7.5px;
        border-radius: 50%;
        transition: .3s;
        cursor: pointer;
    }

    .pagination-btn.active,
    .pagination-btn:hover {
        background-color: var(--color-main);
        color: var(--color-white);
    }

    .pagination-btn path {
        fill: var(--color-black);
        transition: .3s;
    }

    .pagination-btn:hover path {
        fill: var(--color-white);
    }

    .pagination-arrow-left,
    .pagination-arrow-right {
        width: 12px;
        height: 12px;
    }

    .pagination-btn-arrow {
        background: var(--color-white);
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.06);
    }



 

    .instagram {
        display: block;
        width: 100%;
        padding: 25px 0;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        margin-bottom: 60px;
    }

    .instagram-back {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .instagram-icon {
        width: 40px;
        height: 40px;
        margin-left: 17px;
    }


 

    .search-items {
        padding: 20px 0 50px;
    }

    .search-items-header {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 20px;
    }

    .search-items-header-title {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .search-items-header-count {
        margin-left: 15px;
        padding: 4px 10px;
        background: #E7E7E7;
        border-radius: 10px;
    }

    .search-items-header .btn {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 14px;
        height: 50px;
        padding-left: 25px;
        padding-right: 16px;
        border-radius: 100px;
    }

    .search-items-header .btn::after {
        right: 45px;
    }

    .search-items-header .btn svg {
        margin-left: 36px;
    }

    .search-products {
        margin-bottom: -10px;
    }

    .search-product {
        padding: 10px 0;
        width: 600px;
        margin-right: 80px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-product:nth-child(2n) {
        margin-right: 0;
    }

    .search-product-image {
        width: 95px;
        height: 95px;
        object-fit: cover;
        margin-right: 20px;
    }

    .search-product-title {
        margin-bottom: 15px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        width: 220px;
        transition: .3s;
    }

    .search-product:hover .search-product-title {
        color: var(--color-main);
    }

    .search-product-price {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .search-items-error {
        padding-top: 30px;
    }


 

    .search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-white);
        width: 100%;
    }

    .search-form {
        padding: 0 var(--offset);
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-icon {
        width: 30px;
        height: 30px;
    }

    .search-icon-close {
        cursor: pointer;
    }

    .search-input {
        padding: 25px 0;
        margin: 0 30px;
        flex: 1;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border: none;
    }


 

	.first-header {
		background: var(--color-white);
		padding: 8px 0;
		border-bottom: 1px solid var(--color-stroke);
	}

	.first-header-menu-item {
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: 18px;
		margin-right: 35px;
	}

	.first-header-phone {
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 18px;
		margin-right: 40px;
		transition: .3s;
	}

	.first-header-worktime {
		margin-right: 40px;
	}

	.currency {
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px;
		cursor: pointer;
	}

	.currency:after {
		content: "";
		display: block;
		height: 15px;
		width: 1px;
		background: var(--color-grey);
		margin: 0 8px;
	}

	.currency:last-child::after {
		display: none;
	}

	.header {
		/* padding: 20px 0; */
		box-shadow: 0px 6px 20px 0px rgba(30, 30, 30, 0.10);
		position: sticky;
		top: 0;
		z-index: 10000;
		background: var(--color-white);
	}

	.header.box-shadow-none {
		box-shadow: none;
	}

	.logo {
		width: 120px;
		height: 48px;
		margin-top: -8px;
		object-fit: contain;
		margin-right: 45px;
	}

	.menu-link {
		font-family: 'Montserrat';
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 25px;
		margin-right: 30px;
		padding: 28px 0;
		display: flex;
	}

	.menu-link::after {
		height: 3px;
	}

	.header-buttons .btn {
		font-family: 'Montserrat';
		font-size: 13px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-left: 20px;
		height: 40px;
	}

	.header-icon,
	.header-icon.svg {
		width: 30px;
		height: 30px;
		cursor: pointer;
		margin-left: 30px;
		position: relative;
	}

	.header-icon-cart svg {
		width: 25px;
		height: 25px;
	}

	.header-icon-cart-counter {
		color: var(--color-white);
		text-align: center;
		font-family: 'Montserrat';
		font-size: 10px;
		font-style: normal;
		font-weight: 600;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: var(--color-main);
		border: 1.5px solid var(--color-white);
		position: absolute;
		bottom: 0;
		right: -1px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.categories-menu-item-submenu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 24px 35px;
		background: var(--color-white);
		box-shadow: 0px 25px 20px 1px rgba(30, 30, 30, 0.1);
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		transition: .3s;
	}

	.categories-menu-item:hover .categories-menu-item-submenu {
		opacity: 1;
		pointer-events: all;
		visibility: visible;
		transition-delay: .3s;
	}

	.categories-submenu-image {
		width: 350px;
		height: 350px;
		border-radius: 20px;
	}

	.categories-submenu-items {
		width: 530px;
		margin: 0 32px;
		padding: 0 40px;
	}

	.categories-submenu-items.border-left {
		border-left: 1px solid var(--color-stroke);
	}

	.categories-submenu-items.border-right {
		border-right: 1px solid var(--color-stroke);
	}

	.categories-submenu-items-col {
		width: 200px;
	}

	.categories-submenu-link-title {
		margin-bottom: 10px;
		margin-top: 10px;
		display: block;
	}

	.categories-submenu-link-title:first-child {
		margin-top: 0;
	}

	.categories-submenu-link {
		margin-bottom: 10px;
		display: block;
	}


 

    .cart {
        margin-top: 20px;
        padding-bottom: 27px;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout {
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .cart-checkout .cart-product {
        width: 100%;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout .cart-product:last-child {
        border-bottom: none;
    }

    .cart-product {
        padding: 15px 0;
        width: 853px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cart-checkout .cart-product {
        align-items: flex-start;
        padding-right: 39px;
    }

    .cart-products {
        max-height: 240px;
        overflow: auto;
    }

    .cart-checkout .cart-products {
        padding-right: 20px;
        max-height: 280px;
    }

    .cart-products::-webkit-scrollbar {
        width: 2px;
    }

    .cart-products::-webkit-scrollbar-track {
        background: var(--color-grey);
    }

    .cart-products::-webkit-scrollbar-thumb {
        background: var(--color-main);
    }

    .cart-product-info-block {
        display: flex;
        align-items: center;
    }

    .cart-checkout .cart-product-info-block {
        align-items: flex-start;
    }

    .cart-product-info {
        margin-right: 100px;
        width: 250px;
        flex-shrink: 0;
    }

    .cart-product-title {
        width: 250px;
        margin-bottom: 3px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        transition: .3s;
    }

    .cart-product-desc {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .cart-product-title:hover {
        color: var(--color-main);
    }
    
    .cart-product-image-wrapper {
        margin-right: 15px;
        flex-shrink: 0;
    }

    .cart-product-image {
        width: 90px;
        height: 90px;
        border-radius: 6px;
        object-fit: contain;
    }

    .cart-checkout .cart-product-image {
        width: 80px;
        height: 80px;
        border-radius: 6px;
        object-fit: contain;
    }

    .cart-product-price-wrapper {
        margin-left: 40px;
        width: 150px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-price-wrapper {
        align-items: flex-start;
        margin: 0;
        margin-top: 6px;
    }

    .cart-product-counter {
        display: flex;
        align-items: center;
    }

    .cart-delete-product-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .cart-delete-product {
        cursor: pointer;
    }

    .cart-delete-product-svg {
        width: 24px;
        height: 24px;
    }

    .cart-delete-product path {
        transition: .3s;
    }

    .cart-delete-product:hover path{
        fill: var(--color-main);
    }

    .cart-checkout .cart-delete-product {
        position: absolute;
        top: 12px;
        right: 0;
    }

    .cart-checkout .cart-product-info {
        margin-right: 0;
    }

    .cart-checkout .cart-product-info-block {
        flex: 1;
    }

    .cart-checkout .cart-delete-product-wrapper {
        flex: 0;
    }

    .cart-checkout .cart-product-counter {
        width: 100%;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-counter .counter {
        margin-bottom: 10px;
    }


 

    .cart-info-items {
        padding: 20px 0;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 20px;
    }

    .cart-info-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
    }

    .cart-info-item-title,
    .cart-info-item-value {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .cart-info-item:last-child {
        margin-bottom: 0;
    }


 

    .container-modal-cart {
        width: 980px;
        border-radius: 20px;
        background: var(--color-white);
        padding: 30px 50px 35px;
    }

    .closemodal-cart {
        cursor: pointer;
        position: absolute;
        top: 18px;
        right: 18px;
    }

    .closemodal-cart svg {
        width: 16px;
        height: 16px;
    }

    .cart-title {
        align-self: flex-start;
    }

    .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

    #promocode-cart, 
    .modal-cart-block,
    #payment-cart,
    #modal-cart-info {
        width: 100%;
    }

    #modal-cart-info {
        margin-bottom: 30px;
    }

    .modal-cart-btns {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modal-cart-btns .btn {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }


 

	.footer {
		padding: 50px 0;
		box-shadow: 0px 6px 30px 0px rgba(30, 30, 30, 0.15);
	}

	.footer-logo {
		width: 120px;
		margin-bottom: 25px;
	}

	.copyright {
		font-family: 'Montserrat';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
		width: 190px;
		margin-bottom: 82px;
	}

	.probotiuk {
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
	}

	.footer-col-title {
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 22px;
		letter-spacing: 0.15px;
		margin-bottom: 15px;
	}

	.footer-link {
		font-family: 'Montserrat';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 25px;
		margin-bottom: 8px;
		max-width: 200px;
	}

	.footer-social {
		margin-top: 7px;
	}

	.footer-social-wrapper {
		margin-right: 20px;
	}

	.footer-social-icon {
		width: 34px;
		height: 34px;
	}

	.footer-social-icon:last-child {
		margin-right: 0;
	}


 

	.category-content-inner {
		width: 100%;
	}

	.catalog-header {
		margin-bottom: 40px;
	}

	.catalog-header .select-items {
		min-width: 200px;
	}

	.catalog-header .select-title {
		color: var(--color-main);
		border-color: var(--color-main);
	}

	.catalog-header .select-title::after {
		display: none;
	}

	.catalog-view-icon svg {
		width: 22px;
		height: 22px;
	}

	.catalog-view-icon {
		width: 40px;
		height: 40px;
		border-radius: 10px;
		border: 1px solid var(--stroke, #D5D5D5);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 20px;
		cursor: pointer;
		transition: .3s;
	}

	.catalog-view-icon path {
		transition: .3s;
		fill: #D5D5D5;
	}

	.catalog-view-icon.active,
	.catalog-view-icon:hover {
		border-color: var(--color-main);
	}

	.catalog-view-icon.active path,
	.catalog-view-icon:hover path {
		fill: var(--color-main);
	}

	.category-content-inner .product-card {
		margin-right: 18px;
	}

	.category-content-inner .product-card:nth-child(5n) {
		margin-right: 18px;
	}

	.category-content-inner .product-card:nth-child(4n) {
		margin-right: 0;
	}

	.category-content.list .product-card-short-desc {
		display: block;
	}

	.category-content.list .product-card {
		margin-right: 20px;
		width: 497px;
		flex-direction: row;
		align-items: center;
		padding: 16px 13px;
	}

	.category-content.list .product-card:nth-child(2n) {
		margin-right: 0;
	}

	.category-content.list .product-card-image {
		width: 210px;
		height: 245px;
	}
	



	#filters {
		width: 250px;
		margin-right: 15px;
		position: relative;
	}

	/* FILTERS */

	.filters {
		width: 250px;
		flex-shrink: 0;
		background: #FFFFFF;
		box-shadow: 0px 4px 20px 2px #F0F0F0;
		border-radius: 16px;
		padding: 20px 15px;
	}

	.filter-item.hide {
		display: none;
	}

	.filters.active .filter-item {
		display: block;
	}

	.filter-field-title {
		display: inline-block;
	}

	.filter-field .containercheckbox a {
		display: flex;
		align-items: center;
	}

	.filter-item {
		width: 100%;
		margin-top: 20px;
		margin-bottom: 25px;
	}

	.filter-item:last-child {
		margin-bottom: 0;
	}

	.filter-item-title {
		position: relative;
		cursor: pointer;
		user-select: none;
		display: flex;
		align-items: center;
		padding-right: 20px;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 22px;
	}

	.filter-item-title:after {
		content: '';
		display: block;
		width: 8px;
		height: 8px;
		border: 1px solid var(--color-grey);
		position: absolute;
		top: 50%;
		right: 5px;
		transform: translateY(-50%) rotate(45deg);
		border-left: none;
		border-top: none;
		transition: .3s;
	}

	.filter-item.active .filter-item-title::after {
		top: 50%;
		transform: translateY(-50%) rotate(225deg);
		margin-top: 4px;
	}

	.filter-item.active .filter-item-fields {
		max-height: 200px;
		margin-top: 10px;
	}

	.filters-title {
		font-size: 19px;
		font-style: normal;
		font-weight: 600;
		line-height: 22px;
	}

	/* .filter-field:first-child {
			margin-top: 0;
		} */

	.filter-field {
		margin-bottom: 9px;
		order: 1;
	}

	.filter-item-fields {
		max-height: 0;
		overflow: auto;
		transition: .3s;
		display: flex;
		flex-direction: column;
	}

	.filter-field.active {
		order: 0;
	}

	.filter-field.inactive {
		order: 2;
	}

	.filter-item-fields::-webkit-scrollbar {
		width: 5px;
	}

	.filter-item-fields::-webkit-scrollbar-track {
		background: var(--color-stroke);
	}

	.filter-item-fields::-webkit-scrollbar-thumb {
		background: var(--color-main);
	}

	.filter-field.inactive .containercheckbox,
	.filter-field.inactive .containercheckbox a {
		color: var(--color-grey);
		pointer-events: none;
	}

	.filter-field-count {
		margin-left: 15px;
	}

	.btn-filters {
		position: sticky;
		bottom: 20px;
		left: 0;
		margin-top: 20px;
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 22px;
	}

	.clear-filters {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 20px;
		text-decoration-line: underline;
		color: var(--color-main);
	}

	.clear-filters-svg {
		width: 16px;
		height: 16px;
		margin-left: 5px;
	}

	.show-filters {
		margin-top: 25px;
		cursor: pointer;
	}

	.show-filters-svg {
		width: 12px;
		height: 12px;
		margin-left: 5px;
	}

	.show-filters.hide {
		display: none;
	}

	.show-filters.hide .show-filters-svg {
		transform: rotate(180deg);
	}

	.filters.active .show-filters.show {
		display: none;
	}

	.filters.active .show-filters.hide {
		display: flex;
	}


 }@media (max-width: 1600px) and (min-width: 1000px) { :root {
	--column-width: 88.8889vw;
	--offset: calc(50% - (var(--column-width) / 2));
	--color-main: #5D2C6E;
	--color-main-hover: #6c4279;
	--gradient: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
	--color-black: #151515;
	--color-white: #FFFFFF;
	--color-grey: #888888;
	--color-stroke: #D5D5D5;
	--color-green: #35d87c;
    --color-red: #f8444d;
}

html {
	scroll-behavior: smooth;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.1111vw;
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

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

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition-disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.visuallyhidden {
	position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0vw 99.9% 99.9%);
    clip-path: inset(0px 0vw 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-main);
}

/* CSS KIT */

.mobile {
    display: none !important;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.j-center {
    justify-content: center;
}

.j-sb {
    justify-content: space-between;
}

.fd-column {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

a {
    text-decoration: none;
	color: var(--color-black);
}

.mb {
    margin-bottom: 6.9444vw;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
}

.with-line {
    position: relative;
}

.with-line:after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}

.with-line:hover::after {
    width: 100%;
}

.with-line.color-white::after {
    background: var(--color-white);
}

.hover-color-main {
	transition: .3s;
}

.hover-color-main:hover {
	color: var(--color-main);
}

.hover-color-main.with-line::after {
	background: var(--color-main);
}

/* COLORS */

.color-main {
	color: var(--color-main);
}

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.color-stroke {
	color: var(--color-wtroke);
}

.gradient {
	background: var(--gradient);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

/* TEXT */

.h1 {
	font-size: 4.1667vw;
	font-style: normal;
	font-weight: 700;
	line-height: 4.8611vw;
}

.h2 {
	font-size: 2.3611vw;
	font-style: normal;
	font-weight: 700;
	line-height: 2.7778vw;
}

.h3 {
	font-size: 1.6667vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.3611vw;
}

.h4 {
	font-size: 1.3889vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.3611vw;
}

.h5 {
	font-size: 1.3194vw;
	font-style: normal;
	font-weight: 600;
	line-height: 1.8056vw;
}

.main-text {
	font-family: 'Montserrat';
	font-size: 1.1111vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8056vw;
}

/* 404 */

.error-404 {
	height: 50vw;
	position: relative;
	background: var(--blue-gradient, linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%));
}

.error-404 .breadcrumbs {
	position: absolute;
	left: var(--offset);
	z-index: 1;
}

.error-404-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	z-index: 0;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-404-inner {
	position: relative;
	z-index: 2;
	padding-top: 29.7222vw;
}

.error-404-title {
	font-size: 2.0833vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.7778vw;
	margin-bottom: 1.3889vw;
	text-align: center;
}

.error-404-desc {
	margin-bottom: 2.0833vw;
	text-align: center;
}

.error-404-content .btn {
	width: 12.8472vw;
	height: 3.4722vw;
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: 6.9444vw;
}

.error-404-content .btn-right {
	padding-right: 0.8333vw;
	padding-left: 2.4306vw;
	margin-right: 2.0833vw;
}

.error-404-content .btn svg {
	margin-left: 2.9167vw;
}

/* CONTENT */

.content h2 {
	font-size: 1.6667vw;
	font-style: normal;
	font-weight: 600;
	line-height: 2.3611vw; 
	margin: 1.3889vw 0;
	margin-top: 2.7778vw;
}

.content h2:first-child {
	margin-top: 0;
}

.content h3 {
	/* font-style: normal;
	font-weight: 600;
	font-size: 1.3194vw;
	line-height: 1.5278vw; */
	margin-bottom: 1.0417vw;
	margin-top: 2.0833vw;
}

.content p, 
.content li {
	font-family: 'Montserrat';
	font-size: 1.1111vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8056vw;
	margin: 1.0417vw 0;
}

.content ol li {
	margin-left: 1.0417vw;
	padding-left: 0.4167vw;
}

.content ol li::marker {
	font-size: 1.1111vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8056vw;
	color: var(--color-main);
} 

.content ul li {
	align-items: flex-start;
	list-style: none;
}

.content p span,
.content li span {
	display: inline-block;
}

.content li p {
	flex: 1;
}

.content ul li::marker {
	display: none;
	content: "";
}

.content ul li::before {
	content: "";
	display: inline-block;
	width: 0.4861vw;
	height: 0.4861vw;
	border-radius: 50%;
	background: var(--color-main);
	flex-shrink: 0;
	margin-right: 0.6944vw;
	margin-top: 0.625vw;
}

.content ul, 
.content ol {
	margin: 1.0417vw 0;
	display: flex;
	flex-direction: column;
}

.content a {
	display: inline;
	text-decoration: underline;
	color: var(--color-main);
}

.content li a {
	display: contents;
}

.content img {
	margin: 1.7361vw 0;
	width: 100%;
	height: auto;
	border-radius: 1.3889vw;
}

.content figure {
	margin: 0;
}

.content p:first-child {
	margin-top: 0;
}

.content p:last-child {
	margin-bottom: 0;
}

.content table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px double var(--color-stroke);
}

.content table td {
	min-width: 2em;
	padding: 0.4em;
	border: 1px solid var(--color-stroke);
}

/* MODALS */

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: 0.5556vw;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.0833vw;
    position: absolute;
    top: 4.1667vw;
    left: 50%;
    transform: translateX(-50%);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: 1.0417vw;
    right: 1.0417vw;
}

.closemodal svg,
.closemodal img {
    width: 1.1111vw;
    height: 1.1111vw;
}

/* counter */

.counter-inner {
    position: relative;
    width: 9.0278vw;
}

.counter.small .counter-inner {
    width: 7.0139vw;
}

.counter-input {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: 0.4167vw;
    width: 9.0278vw;
    height: 2.5vw;
    text-align: center;
    cursor: pointer;
}

.counter.small .counter-input {
    width: 7.0139vw;
}

.counter-symbol {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: .3s;
    display: flex;
    width: 2.5vw;
    height: 2.5vw;
    align-items: center;
    justify-content: center;
    user-select: none;
    border: 1px solid var(--color-stroke);
    background: var(--color-white);
    border-radius: 0.4167vw;
}

.counter-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-plus {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-symbol:hover {
    color: var(--color-main);
}

.counter.small .counter-symbol {
    width: 2.2222vw;
} 

    .breadcrumbs {
        margin-top: 1.7361vw;
        margin-bottom: 2.7778vw;
    }

    .breadcrumbs-inner {
        display: inline;
        list-style: none;
    }

    .breadcrumbs-item {
        display: inline;
    }

    .breadcrumbs-link {
        font-style: normal;
        font-weight: normal;
        font-size: 0.9722vw;
        line-height: 1.3889vw;
        color: var(--color-black);
        display: inline;
    }

    .breadcrumbs-link::after{
        content: "";
        display: inline-block;
        width: 0.2778vw;
        height: 0.2778vw;
        border-right: 1px solid var(--color-black);
        border-bottom: 1px solid var(--color-black);
        transform: rotate(-45deg);
        margin: 0 0.3472vw;
        margin-bottom: 0.1736vw;
    }

    .breadcrumbs-last::after{
        display: none;
    }

    .breadcrumbs-last{
        color: var(--color-grey);
    }


 

    .models {
        margin-bottom: 2.0833vw;
    }

    .model {
        width: 13.1944vw;
        margin-right: 1.9444vw;
        margin-bottom: 2.0833vw;
        padding: 0.6944vw;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        border-radius: 1.3889vw;
        background: var(--white, #FFF);
        box-shadow: 0vw 0.2778vw 1.3889vw 2px #F0F0F0;
        transition: .3s;
    }

    .model:hover {
        color: var(--color-main);
    }

    .model:nth-child(6n) {
        margin-right: 0;
    }

    .model-image {
        width: 7.9861vw;
        height: 9.3056vw;
        object-fit: contain;
        margin-bottom: 0.6944vw;
    }


 

    .input-select {
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .select-label {
        margin-bottom: 0.3472vw;
        display: block;
    }

    .select {
        position: relative;
        /* min-width: 9.2361vw; */
        width: 100%;
        height: 2.7778vw;
        cursor: pointer;
    }

    .select-title, 
    .select-item {
        font-style: normal;
        font-weight: 400;
        font-size: 0.9722vw;
        line-height: 1.5278vw;
    }

    .select-title {
        display: flex;
        align-items: center;
        border: 1px solid var(--color-stroke);
        background: var(--color-white);
        border-radius: 0.6944vw;
        padding-left: 1.0417vw;
        padding-right: 1.0417vw;
        height: 100%;
        position: relative;
        user-select: none;
    }

    .select-title-icon {
        width: 1.6667vw;
        height: 1.6667vw;
        margin-right: 0.3472vw;
    }

    .select-title::after {
        position: absolute;
        right: 1.0417vw;
        top: 50%;
        display: block;
        content: "";
        width: 0.4861vw;
        height: 0.4861vw;
        border: 1px solid var(--color-grey);
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
        border-left: none;
        border-top: none;
        margin-top: -2px;
    }

    .select.active .select-title::after {
        margin-top: 1px;
        transform: translateY(-50%) rotate(225deg);
    }

    .select-title.active {
        color: var(--color-text);
    }

    .select-items{
        position: absolute;
        top: calc(100% + 0.3472vw);
        left: 0;
        width: 100%;
        z-index: 100;
        background: #FFFFFF;
        box-shadow: 0vw 0.2778vw 2.0833vw rgba(0, 0, 0, 0.07);
        padding: 0.6944vw 1.3889vw;
        padding-right: 0.6944vw;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s;
        border-radius: 0.6944vw;
    }

    .select.active .select-items {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .select-item {
        margin-bottom: 0.3472vw;
        transition: .3s;
    }

    .select-item:last-child{
        margin-bottom: 0;
    }

    .select-item:hover {
        color: var(--color-main);
    }

    .select-items-inner {
        max-height: 16.9444vw;
        overflow: auto;
    }

    .select-items-inner::-webkit-scrollbar {
		width: 2px;
	}

	.select-items-inner::-webkit-scrollbar-track {
		background-color: var(--color-light);
	}

	.select-items-inner::-webkit-scrollbar-thumb {
		background-color: var(--color-main);
	}



 

    .rs-container * {
        box-sizing: border-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .rs-container {
        position: relative;
        margin-left: 0.3472vw;
        width: 13.8889vw;
        margin-top: 1.0417vw;
        padding-bottom: 1.3889vw;
        margin-left: 0.6944vw;
    }

    .priceslider-item {
        display: none;
    }

    .rs-container .rs-bg,
    .rs-container .rs-selected {
        background-color: var(--color-stroke);
        height: 3px;
        left: 0;
        position: absolute;
        top: 0.3472vw;
        width: 100%;
        border-radius: 3px
    }

    .rs-container .rs-selected {
        background-color: var(--color-main);
        border: 1px solid var(--color-main);
        /* transition: all .2s linear; */
        width: 0
    }

    .rs-container.disabled .rs-selected {
        background-color: var(--color-stroke);
    }

    .rs-container .rs-pointer {
        width: 0.9028vw;
        height: 0.9028vw;
        cursor: pointer;
        left: -0.6944vw;
        position: absolute;
        top: 0;
        /* transition: all .2s linear; */
        background: var(--color-main);
        border-radius: 50%;
    }

    .rs-container.disabled .rs-pointer {
        cursor: default
    }

    .rs-container.sliding .rs-pointer,
    .rs-container.sliding .rs-selected {
        transition: none
    }

    .rs-container .rs-scale {
        left: 0;
        position: absolute;
        top: 0.4167vw;
        white-space: nowrap
    }

    .rs-container .rs-scale span {
        float: left;
        position: relative
    }

    .rs-container .rs-scale span::before {
        background-color: var(--color-stroke);
        content: "";
        height: 0.5556vw;
        left: 0;
        position: absolute;
        top: 0.6944vw;
        width: 1px
    }

    .rs-container.rs-noscale span::before {
        display: none
    }

    .rs-container.rs-noscale span:first-child::before,
    .rs-container.rs-noscale span:last-child::before {
        display: block
    }

    .rs-container .rs-scale span:last-child {
        margin-left: -1px;
        width: 0
    }

    .rs-container .rs-scale span ins {
        color: var(--color-text);
        display: inline-block;
        font-size: 0.8333vw;
        margin-top: 1.3889vw;
        text-decoration: none
    }

    .rs-container.disabled .rs-scale span ins {
        color: var(--color-stroke);
    }




    .filter-price .filter-title::before,
    .filter-price .filter-title::after {
        display: none;
    }

    .priceslider-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .priceslider-input-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }

    .priceslider-inner input::-webkit-outer-spin-button,
    .priceslider-inner input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .priceslider-inner input {
        background: var(--color-white);
        width: 5.2083vw;
        height: 2.5vw;
        padding: 0 0.6944vw;
        text-align: center;
        -webkit-appearance: none;
        border: 1px solid var(--color-stroke);
        display: block;
        border-radius: 0.3472vw;
        -moz-appearance: textfield;
    }

    .priceslider-input {
        display: flex;
        align-items: center;
    }

    /* .priceslider-btn {
        background: var(--color-white);
        border: 1px solid var(--color-extra-main);
        width: 2.9167vw;
        height: 2.6389vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.3472vw;
        cursor: pointer;
        user-select: none;
    } */


 


    .containercheckbox {
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        position: relative;
        width: 100%;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding-left: 2.0833vw;
        transition: .3s;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5278vw;
    }   

    .containercheckbox a {
        display: inline;
    }

    .containercheckbox input {
        opacity: 0;
        cursor: pointer;
        height: 1px;
        width: 1px;
    }

    .checkmark {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: 1.3889vw;
        width: 1.3889vw;
        background-color: var(--color-white);
        border: 1px solid var(--color-stroke);
        transition: .3s;
        border-radius: 0.2778vw;
    }

    .checkbox.white .checkmark {
        background-color: var(--color-white);
        border: 1px solid var(--color-stroke);
        border-radius: 0.2778vw;
    }

    .checkbox.white .containercheckbox {
        color: var(--color-text-main);
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .containercheckbox input:checked~.checkmark:after {
        display: block;
        opacity: 1;
    }

    .containercheckbox input:checked~.checkmark {
        background: var(--color-main);
        border: 1px solid var(--color-main);
    }

    .containercheckbox .checkmark:after {
        left: 50%;
        top: calc(50% - 2px);
        transform: translate(-50%, -50%) rotate(45deg);
        width: 3px;
        height: 0.5556vw;
        border: solid var(--color-white);
        border-width: 0 0.1458vw 0.1458vw 0;
        transition: .3s;
        z-index: 10;
    }


 

    .btn {
        border-radius: 1.3889vw;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .3s;
        border: none;
        text-align: center;
        height: 3.0556vw;
        font-family: 'Open Sans';
        padding: 0 1.3889vw;
        transition: .3s;
        position: relative;
    }

    .btn-left {
        padding-left: 0.8333vw;
    }

    .btn-left::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        left: 2.5vw;
    }

    .btn-right {
        padding-right: 0.8333vw;
    }

    .btn-right::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        right: 2.5vw;
    }

    .btn svg {
        width: 0.9722vw;
        height: 0.9722vw;
    }

    .btn-left svg {
        margin-right: 1.7361vw;
    }

    .btn-right svg {
        margin-left: 1.7361vw;
    }

    .btn-mobile {
        display: none;
    }

    .btn-100 {
        width: 100%;
    }

    .btn-240 {
        width: 16.6667vw;
    }

    .btn-290 {
        width: 20.1389vw;
    }

    .btn-200 {
        width: 13.8889vw;
    }

    .btn-340 {
        width: 23.6111vw;
    }

    .btn-260 {
        width: 18.0556vw;
    }

    .btn-415 {
        width: 28.8194vw;
    }

    .btn-210 {
        width: 14.5833vw;
    }

    .btn-175 {
        width: 12.1528vw;
    }

    .btn-cart {
        width: 3.1944vw;
        border-radius: 0.6944vw;
    }

    .btn-cart svg,
    .btn-cart img {
        width: 1.6667vw;
        height: 1.6667vw;
    }

    .btn-yellow {
        background: var(--color-main);
    }

    .btn-yellow:hover {
        background: var(--color-yellow);
    }

    .btn-white {
        background: var(--color-white);
        color: var(--color-main);
    }

    .btn-white:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-white:after {
        border-color: var(--color-main);
        transition: .3s;
    }

    .btn-white path {
        fill: var(--color-main);
        transition: .3s;
    }

    .btn-white:hover path {
        fill: var(--color-white);
    }

    .btn-white:hover::after {
        border-color: var(--color-white);
    }

    .btn-red {
        background: #FA580F;
    }

    .btn-red:hover {
        background: #ff7231;
    }

    .btn-main {
        background: var(--color-main);
    }

    .btn-main:hover {
        background: var(--color-main-hover);
    }

    .btn-gradient {
        background: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
        background-size: 130% 100%;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-gradient:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-empty {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-right svg {
        transition: .3s;
    }

    .btn-right:hover svg {
        transform: translateX(2px);
    }

    .btn-left svg {
        transition: .3s;
    }

    .btn-left:hover svg {
        transform: translateX(-2px);
    }

    .btn-empty:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-empty.btn-main {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-empty.btn-main:hover {
        background: var(--color-main);
        color: var(--color-white);
    }

    .btn-dark-main {
        color: var(--color-white);
        background: var(--color-text-main);
    }

    .btn-dark-main:hover {
        background: var(--color-main-hover);
        color: var(--color-white);
    }

    .btn-none {
        display: none;
    }
   
    .btn-inactive {
        background: var(--color-grey) !important;
        pointer-events: none;
    }


 

    .product-card {
        width: 16.6667vw;
        border-radius: 1.3889vw;
        background: var(--color-white);
        box-shadow: 0vw 0.2778vw 1.3889vw 2px #F0F0F0;
        margin-right: 1.3889vw;
    }

    .product-card-image {
        width: 16.6667vw;
        height: 19.4444vw;
        object-fit: contain;
    }

    .product-card:nth-child(5n) {
        margin-right: 0;
    }

    .product-card-content {
        padding: 0.6944vw 1.0417vw 1.0417vw;
        flex: 1;
    }

    .product-card-content-info {
        flex: 1;
    }

    .product-card-title {
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        margin-bottom: 1.0417vw;
        transition: .3s;
        display: block;
    }

    .product-card:hover .product-card-title {
        color: var(--color-main);
    }

    .product-card-colors {
        margin-bottom: -0.3472vw;
    }

    .product-card-color {
        width: 1.1111vw;
        height: 1.1111vw;
        padding: 0.2778vw;
        border-radius: 50%;
        margin-right: 0.3472vw;
        margin-bottom: 0.3472vw;
        position: relative;
        cursor: pointer;
        border: 1px solid var(--color-stroke);
    }

    .product-card-color.active::after {
        content: "";
        display: block;
        width: 1.5278vw;
        height: 1.5278vw;
        border-radius: 50%;
        border: 1px solid var(--color-black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-card-color.active {
        margin: 0 0.2778vw;
        margin-right: 0.5556vw;
    }

    .product-card-color:first-child {
        margin-left: 0;
    }

    .product-card-footer {
        margin-top: 1.1111vw;
        border-top: 1px solid var(--color-stroke);
        padding-top: 0.8333vw
    }

    .product-card-price {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
    }

    .product-card-footer .btn {
        height: 2.7778vw;
        padding: 0.9028vw 1.3889vw;
        padding-right: 0.9028vw;
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 500;
        line-height: 0.9028vw;
    }

    .product-card-short-desc {
        font-family: 'Montserrat';
        font-size: 0.9028vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3889vw;
        margin-bottom: 2.5vw;
        display: none;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: 2.4306vw;
    }

    .product-items-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .product-items-inner .product-card {
        margin-bottom: 2.0833vw;
    }

    .products-items {
        margin-bottom: -2.0833vw;
    }


 


    .pagination-wrapper {
        margin-top: 4.1667vw;
    }

    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .pagination-btn {
        width: 2.4306vw;
        height: 2.4306vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.6667vw;
        color: var(--color-black);
        margin: 0 0.5208vw;
        border-radius: 50%;
        transition: .3s;
        cursor: pointer;
    }

    .pagination-btn.active,
    .pagination-btn:hover {
        background-color: var(--color-main);
        color: var(--color-white);
    }

    .pagination-btn path {
        fill: var(--color-black);
        transition: .3s;
    }

    .pagination-btn:hover path {
        fill: var(--color-white);
    }

    .pagination-arrow-left,
    .pagination-arrow-right {
        width: 0.8333vw;
        height: 0.8333vw;
    }

    .pagination-btn-arrow {
        background: var(--color-white);
        box-shadow: 0vw 0vw 0.4167vw rgba(0, 0, 0, 0.06);
    }



 

    .instagram {
        display: block;
        width: 100%;
        padding: 1.7361vw 0;
        border-radius: 1.3889vw;
        overflow: hidden;
        position: relative;
        margin-bottom: 4.1667vw;
    }

    .instagram-back {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .instagram-icon {
        width: 2.7778vw;
        height: 2.7778vw;
        margin-left: 1.1806vw;
    }


 

    .search-items {
        padding: 1.3889vw 0 3.4722vw;
    }

    .search-items-header {
        padding-bottom: 1.3889vw;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 1.3889vw;
    }

    .search-items-header-title {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .search-items-header-count {
        margin-left: 1.0417vw;
        padding: 0.2778vw 0.6944vw;
        background: #E7E7E7;
        border-radius: 0.6944vw;
    }

    .search-items-header .btn {
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 0.9722vw;
        height: 3.4722vw;
        padding-left: 1.7361vw;
        padding-right: 1.1111vw;
        border-radius: 6.9444vw;
    }

    .search-items-header .btn::after {
        right: 3.125vw;
    }

    .search-items-header .btn svg {
        margin-left: 2.5vw;
    }

    .search-products {
        margin-bottom: -0.6944vw;
    }

    .search-product {
        padding: 0.6944vw 0;
        width: 41.6667vw;
        margin-right: 5.5556vw;
        margin-bottom: 0.6944vw;
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-product:nth-child(2n) {
        margin-right: 0;
    }

    .search-product-image {
        width: 6.5972vw;
        height: 6.5972vw;
        object-fit: cover;
        margin-right: 1.3889vw;
    }

    .search-product-title {
        margin-bottom: 1.0417vw;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        width: 15.2778vw;
        transition: .3s;
    }

    .search-product:hover .search-product-title {
        color: var(--color-main);
    }

    .search-product-price {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
    }

    .search-items-error {
        padding-top: 2.0833vw;
    }


 

    .search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-white);
        width: 100%;
    }

    .search-form {
        padding: 0 var(--offset);
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-icon {
        width: 2.0833vw;
        height: 2.0833vw;
    }

    .search-icon-close {
        cursor: pointer;
    }

    .search-input {
        padding: 1.7361vw 0;
        margin: 0 2.0833vw;
        flex: 1;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border: none;
    }


 

	.first-header {
		background: var(--color-white);
		padding: 0.5556vw 0;
		border-bottom: 1px solid var(--color-stroke);
	}

	.first-header-menu-item {
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.25vw;
		margin-right: 2.4306vw;
	}

	.first-header-phone {
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.25vw;
		margin-right: 2.7778vw;
		transition: .3s;
	}

	.first-header-worktime {
		margin-right: 2.7778vw;
	}

	.currency {
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.8056vw;
		cursor: pointer;
	}

	.currency:after {
		content: "";
		display: block;
		height: 1.0417vw;
		width: 1px;
		background: var(--color-grey);
		margin: 0 0.5556vw;
	}

	.currency:last-child::after {
		display: none;
	}

	.header {
		/* padding: 1.3889vw 0; */
		box-shadow: 0vw 0.4167vw 1.3889vw 0vw rgba(30, 30, 30, 0.10);
		position: sticky;
		top: 0;
		z-index: 10000;
		background: var(--color-white);
	}

	.header.box-shadow-none {
		box-shadow: none;
	}

	.logo {
		width: 8.3333vw;
		height: 3.3333vw;
		margin-top: -0.5556vw;
		object-fit: contain;
		margin-right: 3.125vw;
	}

	.menu-link {
		font-family: 'Montserrat';
		font-size: 1.1111vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.7361vw;
		margin-right: 2.0833vw;
		padding: 1.9444vw 0;
		display: flex;
	}

	.menu-link::after {
		height: 3px;
	}

	.header-buttons .btn {
		font-family: 'Montserrat';
		font-size: 0.9028vw;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin-left: 1.3889vw;
		height: 2.7778vw;
	}

	.header-icon,
	.header-icon.svg {
		width: 2.0833vw;
		height: 2.0833vw;
		cursor: pointer;
		margin-left: 2.0833vw;
		position: relative;
	}

	.header-icon-cart svg {
		width: 1.7361vw;
		height: 1.7361vw;
	}

	.header-icon-cart-counter {
		color: var(--color-white);
		text-align: center;
		font-family: 'Montserrat';
		font-size: 0.6944vw;
		font-style: normal;
		font-weight: 600;
		width: 1.25vw;
		height: 1.25vw;
		border-radius: 50%;
		background: var(--color-main);
		border: 0.1042vw solid var(--color-white);
		position: absolute;
		bottom: 0;
		right: -1px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.categories-menu-item-submenu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 1.6667vw 2.4306vw;
		background: var(--color-white);
		box-shadow: 0vw 1.7361vw 1.3889vw 1px rgba(30, 30, 30, 0.1);
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		transition: .3s;
	}

	.categories-menu-item:hover .categories-menu-item-submenu {
		opacity: 1;
		pointer-events: all;
		visibility: visible;
		transition-delay: .3s;
	}

	.categories-submenu-image {
		width: 24.3056vw;
		height: 24.3056vw;
		border-radius: 1.3889vw;
	}

	.categories-submenu-items {
		width: 36.8056vw;
		margin: 0 2.2222vw;
		padding: 0 2.7778vw;
	}

	.categories-submenu-items.border-left {
		border-left: 1px solid var(--color-stroke);
	}

	.categories-submenu-items.border-right {
		border-right: 1px solid var(--color-stroke);
	}

	.categories-submenu-items-col {
		width: 13.8889vw;
	}

	.categories-submenu-link-title {
		margin-bottom: 0.6944vw;
		margin-top: 0.6944vw;
		display: block;
	}

	.categories-submenu-link-title:first-child {
		margin-top: 0;
	}

	.categories-submenu-link {
		margin-bottom: 0.6944vw;
		display: block;
	}


 

    .cart {
        margin-top: 1.3889vw;
        padding-bottom: 1.875vw;
        margin-bottom: 1.7361vw;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout {
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .cart-checkout .cart-product {
        width: 100%;
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout .cart-product:last-child {
        border-bottom: none;
    }

    .cart-product {
        padding: 1.0417vw 0;
        width: 59.2361vw;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cart-checkout .cart-product {
        align-items: flex-start;
        padding-right: 2.7083vw;
    }

    .cart-products {
        max-height: 16.6667vw;
        overflow: auto;
    }

    .cart-checkout .cart-products {
        padding-right: 1.3889vw;
        max-height: 19.4444vw;
    }

    .cart-products::-webkit-scrollbar {
        width: 2px;
    }

    .cart-products::-webkit-scrollbar-track {
        background: var(--color-grey);
    }

    .cart-products::-webkit-scrollbar-thumb {
        background: var(--color-main);
    }

    .cart-product-info-block {
        display: flex;
        align-items: center;
    }

    .cart-checkout .cart-product-info-block {
        align-items: flex-start;
    }

    .cart-product-info {
        margin-right: 6.9444vw;
        width: 17.3611vw;
        flex-shrink: 0;
    }

    .cart-product-title {
        width: 17.3611vw;
        margin-bottom: 3px;
        font-size: 0.9722vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
        transition: .3s;
    }

    .cart-product-desc {
        font-size: 0.8333vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3889vw;
    }

    .cart-product-title:hover {
        color: var(--color-main);
    }
    
    .cart-product-image-wrapper {
        margin-right: 1.0417vw;
        flex-shrink: 0;
    }

    .cart-product-image {
        width: 6.25vw;
        height: 6.25vw;
        border-radius: 0.4167vw;
        object-fit: contain;
    }

    .cart-checkout .cart-product-image {
        width: 5.5556vw;
        height: 5.5556vw;
        border-radius: 0.4167vw;
        object-fit: contain;
    }

    .cart-product-price-wrapper {
        margin-left: 2.7778vw;
        width: 10.4167vw;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-price-wrapper {
        align-items: flex-start;
        margin: 0;
        margin-top: 0.4167vw;
    }

    .cart-product-counter {
        display: flex;
        align-items: center;
    }

    .cart-delete-product-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .cart-delete-product {
        cursor: pointer;
    }

    .cart-delete-product-svg {
        width: 1.6667vw;
        height: 1.6667vw;
    }

    .cart-delete-product path {
        transition: .3s;
    }

    .cart-delete-product:hover path{
        fill: var(--color-main);
    }

    .cart-checkout .cart-delete-product {
        position: absolute;
        top: 0.8333vw;
        right: 0;
    }

    .cart-checkout .cart-product-info {
        margin-right: 0;
    }

    .cart-checkout .cart-product-info-block {
        flex: 1;
    }

    .cart-checkout .cart-delete-product-wrapper {
        flex: 0;
    }

    .cart-checkout .cart-product-counter {
        width: 100%;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-counter .counter {
        margin-bottom: 0.6944vw;
    }


 

    .cart-info-items {
        padding: 1.3889vw 0;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: 1.3889vw;
    }

    .cart-info-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.4167vw;
    }

    .cart-info-item-title,
    .cart-info-item-value {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.3889vw;
    }

    .cart-info-item:last-child {
        margin-bottom: 0;
    }


 

    .container-modal-cart {
        width: 68.0556vw;
        border-radius: 1.3889vw;
        background: var(--color-white);
        padding: 2.0833vw 3.4722vw 2.4306vw;
    }

    .closemodal-cart {
        cursor: pointer;
        position: absolute;
        top: 1.25vw;
        right: 1.25vw;
    }

    .closemodal-cart svg {
        width: 1.1111vw;
        height: 1.1111vw;
    }

    .cart-title {
        align-self: flex-start;
    }

    .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2.0833vw;
    }

    #promocode-cart, 
    .modal-cart-block,
    #payment-cart,
    #modal-cart-info {
        width: 100%;
    }

    #modal-cart-info {
        margin-bottom: 2.0833vw;
    }

    .modal-cart-btns {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modal-cart-btns .btn {
        font-size: 1.1111vw;
        font-style: normal;
        font-weight: 600;
        line-height: 1.5278vw;
    }


 

	.footer {
		padding: 3.4722vw 0;
		box-shadow: 0vw 0.4167vw 2.0833vw 0vw rgba(30, 30, 30, 0.15);
	}

	.footer-logo {
		width: 8.3333vw;
		margin-bottom: 1.7361vw;
	}

	.copyright {
		font-family: 'Montserrat';
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.6667vw;
		width: 13.1944vw;
		margin-bottom: 5.6944vw;
	}

	.probotiuk {
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.6667vw;
	}

	.footer-col-title {
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.5278vw;
		letter-spacing: 0.0104vw;
		margin-bottom: 1.0417vw;
	}

	.footer-link {
		font-family: 'Montserrat';
		font-size: 0.9722vw;
		font-style: normal;
		font-weight: 400;
		line-height: 1.7361vw;
		margin-bottom: 0.5556vw;
		max-width: 13.8889vw;
	}

	.footer-social {
		margin-top: 0.4861vw;
	}

	.footer-social-wrapper {
		margin-right: 1.3889vw;
	}

	.footer-social-icon {
		width: 2.3611vw;
		height: 2.3611vw;
	}

	.footer-social-icon:last-child {
		margin-right: 0;
	}


 

	.category-content-inner {
		width: 100%;
	}

	.catalog-header {
		margin-bottom: 2.7778vw;
	}

	.catalog-header .select-items {
		min-width: 13.8889vw;
	}

	.catalog-header .select-title {
		color: var(--color-main);
		border-color: var(--color-main);
	}

	.catalog-header .select-title::after {
		display: none;
	}

	.catalog-view-icon svg {
		width: 1.5278vw;
		height: 1.5278vw;
	}

	.catalog-view-icon {
		width: 2.7778vw;
		height: 2.7778vw;
		border-radius: 0.6944vw;
		border: 1px solid var(--stroke, #D5D5D5);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: 1.3889vw;
		cursor: pointer;
		transition: .3s;
	}

	.catalog-view-icon path {
		transition: .3s;
		fill: #D5D5D5;
	}

	.catalog-view-icon.active,
	.catalog-view-icon:hover {
		border-color: var(--color-main);
	}

	.catalog-view-icon.active path,
	.catalog-view-icon:hover path {
		fill: var(--color-main);
	}

	.category-content-inner .product-card {
		margin-right: 1.25vw;
	}

	.category-content-inner .product-card:nth-child(5n) {
		margin-right: 1.25vw;
	}

	.category-content-inner .product-card:nth-child(4n) {
		margin-right: 0;
	}

	.category-content.list .product-card-short-desc {
		display: block;
	}

	.category-content.list .product-card {
		margin-right: 1.3889vw;
		width: 34.5139vw;
		flex-direction: row;
		align-items: center;
		padding: 1.1111vw 0.9028vw;
	}

	.category-content.list .product-card:nth-child(2n) {
		margin-right: 0;
	}

	.category-content.list .product-card-image {
		width: 14.5833vw;
		height: 17.0139vw;
	}
	



	#filters {
		width: 17.3611vw;
		margin-right: 1.0417vw;
		position: relative;
	}

	/* FILTERS */

	.filters {
		width: 17.3611vw;
		flex-shrink: 0;
		background: #FFFFFF;
		box-shadow: 0vw 0.2778vw 1.3889vw 2px #F0F0F0;
		border-radius: 1.1111vw;
		padding: 1.3889vw 1.0417vw;
	}

	.filter-item.hide {
		display: none;
	}

	.filters.active .filter-item {
		display: block;
	}

	.filter-field-title {
		display: inline-block;
	}

	.filter-field .containercheckbox a {
		display: flex;
		align-items: center;
	}

	.filter-item {
		width: 100%;
		margin-top: 1.3889vw;
		margin-bottom: 1.7361vw;
	}

	.filter-item:last-child {
		margin-bottom: 0;
	}

	.filter-item-title {
		position: relative;
		cursor: pointer;
		user-select: none;
		display: flex;
		align-items: center;
		padding-right: 1.3889vw;
		font-size: 1.1111vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.5278vw;
	}

	.filter-item-title:after {
		content: '';
		display: block;
		width: 0.5556vw;
		height: 0.5556vw;
		border: 1px solid var(--color-grey);
		position: absolute;
		top: 50%;
		right: 0.3472vw;
		transform: translateY(-50%) rotate(45deg);
		border-left: none;
		border-top: none;
		transition: .3s;
	}

	.filter-item.active .filter-item-title::after {
		top: 50%;
		transform: translateY(-50%) rotate(225deg);
		margin-top: 0.2778vw;
	}

	.filter-item.active .filter-item-fields {
		max-height: 13.8889vw;
		margin-top: 0.6944vw;
	}

	.filters-title {
		font-size: 1.3194vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.5278vw;
	}

	/* .filter-field:first-child {
			margin-top: 0;
		} */

	.filter-field {
		margin-bottom: 0.625vw;
		order: 1;
	}

	.filter-item-fields {
		max-height: 0;
		overflow: auto;
		transition: .3s;
		display: flex;
		flex-direction: column;
	}

	.filter-field.active {
		order: 0;
	}

	.filter-field.inactive {
		order: 2;
	}

	.filter-item-fields::-webkit-scrollbar {
		width: 0.3472vw;
	}

	.filter-item-fields::-webkit-scrollbar-track {
		background: var(--color-stroke);
	}

	.filter-item-fields::-webkit-scrollbar-thumb {
		background: var(--color-main);
	}

	.filter-field.inactive .containercheckbox,
	.filter-field.inactive .containercheckbox a {
		color: var(--color-grey);
		pointer-events: none;
	}

	.filter-field-count {
		margin-left: 1.0417vw;
	}

	.btn-filters {
		position: sticky;
		bottom: 1.3889vw;
		left: 0;
		margin-top: 1.3889vw;
		font-style: normal;
		font-weight: 400;
		font-size: 0.9722vw;
		line-height: 1.5278vw;
	}

	.clear-filters {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.3889vw;
		text-decoration-line: underline;
		color: var(--color-main);
	}

	.clear-filters-svg {
		width: 1.1111vw;
		height: 1.1111vw;
		margin-left: 0.3472vw;
	}

	.show-filters {
		margin-top: 1.7361vw;
		cursor: pointer;
	}

	.show-filters-svg {
		width: 0.8333vw;
		height: 0.8333vw;
		margin-left: 0.3472vw;
	}

	.show-filters.hide {
		display: none;
	}

	.show-filters.hide .show-filters-svg {
		transform: rotate(180deg);
	}

	.filters.active .show-filters.show {
		display: none;
	}

	.filters.active .show-filters.hide {
		display: flex;
	}


 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -910 + 1.3771);
                --offset: calc(4.0875vw * ((375 - 375 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { :root {
	--column-width: calc(92vw * var(--coef-w));
	--offset: calc(4vw * var(--coef-w));
	--color-main: #5D2C6E;
	--color-main-hover: #6c4279;
	--gradient: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
	--color-black: #151515;
	--color-white: #FFFFFF;
	--color-grey: #888888;
	--color-stroke: #D5D5D5;
	--color-green: #35d87c;
    --color-red: #f8444d;
}

html {
	scroll-behavior: smooth;
}

body, input, textarea, select {
	font-family: 'Open Sans', sans-serif;
	font-size: calc(4.2667vw * var(--coef-w));
	-webkit-text-size-adjust: none;
	color: var(--color-black);
}

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

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

#transition-disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.visuallyhidden {
	position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px calc(0vw * var(--coef-w)) 99.9% 99.9%);
    clip-path: inset(0px calc(0vw * var(--coef-w)) 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-mob {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-mob-none {
	padding: 0;
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-main);
}

/* CSS KIT */

.desktop {
    display: none !important;
}

.d-flex {
    display: flex;
}

.a-center {
    align-items: center;
}

.a-start {
    align-items: flex-start;
}

.j-center {
    justify-content: center;
}

.j-sb {
    justify-content: space-between;
}

.fd-column {
    flex-direction: column;
}

.fd-column-mob {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

a {
    text-decoration: none;
	color: var(--color-black);
}

.body-wrapper {
    display: flex;
    flex-direction: column;
}

.mb {
    margin-bottom: calc(13.3333vw * var(--coef-w));
}

/* COLORS */

.color-main {
	color: var(--color-main);
}

.color-black {
	color: var(--color-black);
}

.color-white {
	color: var(--color-white);
}

.color-grey {
	color: var(--color-grey);
}

.color-stroke {
	color: var(--color-wtroke);
}

.gradient {
	background: var(--gradient);
}

.color-red {
    color: var(--color-red);
}

.color-green {
    color: var(--color-green);
}

/* TEXT */

.h1 {
	font-size: calc(7.4667vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(9.0667vw * var(--coef-w));
}

.h2 {
	font-size: calc(5.3333vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(6.4vw * var(--coef-w));
}

.h3 {
	font-size: calc(4.2667vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
}

.h5 {
	font-size: calc(3.4667vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
}

.main-text {
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w)); 
}

/* 404 */

.error-404 {
	height: calc(114.6667vw * var(--coef-w));
	position: relative;
	background: var(--blue-gradient, linear-gradient(95deg, #D9E3F5 -5.94%, #FFF 90.52%));
}

.error-404 .breadcrumbs {
	position: absolute;
	left: var(--offset);
	z-index: 1;
}

.error-404-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 0;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-404-inner {
	position: relative;
	z-index: 2;
	padding-top: calc(65.0667vw * var(--coef-w));
}

.error-404-title {
	font-size: calc(5.3333vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(6.4vw * var(--coef-w));
	margin-bottom: calc(4vw * var(--coef-w));
	text-align: center;
}

.error-404-desc {
	margin-bottom: calc(5.3333vw * var(--coef-w));
	text-align: center;
}

.error-404-content .btn {
	width: calc(36.5333vw * var(--coef-w));
	height: calc(9.0667vw * var(--coef-w));
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-radius: calc(8vw * var(--coef-w));
}

.error-404-content .btn-right {
	padding-right: calc(3.7333vw * var(--coef-w));
	padding-left: calc(5.0667vw * var(--coef-w));
	margin-right: calc(2.6667vw * var(--coef-w));
}

.error-404-content .btn svg {
	margin-left: calc(8vw * var(--coef-w));
}

/* CONTENT */

.content h2 {
	font-size: calc(4.2667vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
	margin: calc(4vw * var(--coef-w)) 0;
	margin-top: calc(5.3333vw * var(--coef-w));
}

.content h2:first-child {
	margin-top: 0;
}

.content h3 {
	font-size: calc(3.7333vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(5.3333vw * var(--coef-w));
	margin: calc(4vw * var(--coef-w)) 0;
	margin-top: calc(5.3333vw * var(--coef-w));
}

.content p, 
.content li {
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
	margin: calc(4vw * var(--coef-w)) 0;
}

.content ol li {
	margin-left: calc(4vw * var(--coef-w));
	padding-left: calc(1.6vw * var(--coef-w));
}

.content ol li::marker {
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
	color: var(--color-main);
} 

.content ul li {
	align-items: flex-start;
	list-style: none;
}

.content p span,
.content li span {
	display: inline-block;
}

.content li p {
	flex: 1;
}

.content ul li::marker {
	display: none;
	content: "";
	opacity: 0;
	visibility: hidden;
}

.content ul li::before {
	content: "";
	display: inline-block;
	width: calc(1.3333vw * var(--coef-w));
	height: calc(1.3333vw * var(--coef-w));
	border-radius: 50%;
	background: var(--color-main);
	flex-shrink: 0;
	margin-right: calc(2.6667vw * var(--coef-w));
	margin-top: calc(2.4vw * var(--coef-w));
}

.content ul, 
.content ol {
	margin: calc(4vw * var(--coef-w)) 0;
	display: flex;
	flex-direction: column;
}

.content a {
	display: inline;
	text-decoration: underline;
	color: var(--color-main);
}

.content li a {
	display: contents;
}

.content img {
	margin: calc(4vw * var(--coef-w)) 0;
	width: 100%;
	height: auto;
	border-radius: calc(5.3333vw * var(--coef-w));
}

.content figure {
	margin: 0;
}

.content p:first-child {
	margin-top: 0;
}

.content p:last-child {
	margin-bottom: 0;
}

.content table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px double var(--color-stroke);
}

.content table td {
	min-width: 2em;
	padding: 0.4em;
	border: 1px solid var(--color-stroke);
}

/* MODALS */

/* MODALS */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 10000;
}

.container-modal {
    border-radius: calc(2.1333vw * var(--coef-w));
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(8vw * var(--coef-w));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.closemodal {
    cursor: pointer;
    position: absolute;
    top: calc(4vw * var(--coef-w));
    right: calc(4vw * var(--coef-w));
}

.closemodal svg,
.closemodal img {
    width: calc(3.2vw * var(--coef-w));
    height: calc(3.2vw * var(--coef-w));
}

/* counter */

.counter-inner {
    position: relative;
    width: calc(27.2vw * var(--coef-w));
}

.counter.small .counter-inner {
    width: calc(27.2vw * var(--coef-w));
}

.counter-input {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: calc(1.6vw * var(--coef-w));
    width: calc(27.2vw * var(--coef-w));
    height: calc(8vw * var(--coef-w));
    text-align: center;
    cursor: pointer;
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
}

.counter.small .counter-input {
    width: calc(27.2vw * var(--coef-w));
}

.counter-symbol {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: .3s;
    display: flex;
    width: calc(8vw * var(--coef-w));
    height: calc(8vw * var(--coef-w));
    align-items: center;
    justify-content: center;
    user-select: none;
    border: 1px solid var(--color-stroke);
    background: var(--color-white);
    border-radius: calc(1.6vw * var(--coef-w));
	font-family: 'Montserrat';
	font-size: calc(2.9333vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(4.2667vw * var(--coef-w));
	color: var(--color-main);
}

.counter-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter-plus {
    left: auto;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.counter-symbol:hover {
    color: var(--color-main);
}

.counter.small .counter-symbol {
    width: calc(8vw * var(--coef-w));
} 

    .breadcrumbs {
        margin-bottom: calc(4vw * var(--coef-w));
        padding-top: calc(4vw * var(--coef-w));
    }

    .breadcrumbs-inner {
        display: inline;
        list-style: none;
    }

    .breadcrumbs-item {
        display: inline;
    }

    .breadcrumbs-link {
        font-style: normal;
        font-weight: normal;
        font-size: calc(3.2vw * var(--coef-w));
        line-height: calc(4.2667vw * var(--coef-w));
        color: var(--color-black);
        display: inline;
    }

    .breadcrumbs-link::after{
        content: "";
        display: inline-block;
        width: calc(1.0667vw * var(--coef-w));
        height: calc(1.0667vw * var(--coef-w));
        border-right: 1px solid var(--color-black);
        border-bottom: 1px solid var(--color-black);
        transform: rotate(-45deg);
        margin: 0 calc(1.3333vw * var(--coef-w));
        margin-bottom: calc(0.6667vw * var(--coef-w));
    }

    .breadcrumbs-last::after{
        display: none;
    }

    .breadcrumbs-last{
        color: var(--color-grey);
    }


 

    .models {
        margin-bottom: calc(4vw * var(--coef-w));
        flex-wrap: nowrap;
        overflow: auto;
        justify-content: flex-start;
        padding-bottom: calc(2.6667vw * var(--coef-w));
    }

    .models::-webkit-scrollbar {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .model {
        width: calc(32vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
        padding: calc(1.3333vw * var(--coef-w));
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        border-radius: calc(2.6667vw * var(--coef-w));
        background: var(--white, #FFF);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
        flex-shrink: 0;
    }

    .model-image {
        width: calc(16vw * var(--coef-w));
        height: calc(18.6667vw * var(--coef-w));
        object-fit: contain;
        margin-bottom: calc(2.1333vw * var(--coef-w));
    }


 

    .input-select {
        width: 1px;
        height: 1px;
        opacity: 0;
    }

    .select-label {
        margin-bottom: calc(1.3333vw * var(--coef-w));
        display: block;
    }

    .select {
        position: relative;
        /* min-width: calc(35.4667vw * var(--coef-w)); */
        width: 100%;
        height: calc(10.1333vw * var(--coef-w));
        cursor: pointer;
    }

    .select-title, 
    .select-item {
        font-style: normal;
        font-weight: 400;
        font-size: calc(3.2vw * var(--coef-w));
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .select-title {
        display: flex;
        align-items: center;
        border: 1px solid var(--color-stroke);
        background: var(--color-white);
        border-radius: calc(2.1333vw * var(--coef-w));
        padding-left: calc(4vw * var(--coef-w));
        padding-right: calc(4vw * var(--coef-w));
        height: 100%;
        position: relative;
        user-select: none;
    }

    .select-title-icon {
        width: calc(5.3333vw * var(--coef-w));
        height: calc(5.3333vw * var(--coef-w));
        margin-right: 2px;
    }

    .select-title::after {
        position: absolute;
        right: calc(4vw * var(--coef-w));
        top: 50%;
        display: block;
        content: "";
        width: calc(1.6vw * var(--coef-w));
        height: calc(1.6vw * var(--coef-w));
        border: 1px solid var(--color-grey);
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
        border-left: none;
        border-top: none;
        margin-top: -2px;
    }

    .select.active .select-title::after {
        margin-top: 1px;
        transform: translateY(-50%) rotate(225deg);
    }

    .select-title.active {
        color: var(--color-text);
    }

    .select-items{
        position: absolute;
        top: calc(100% + calc(1.3333vw * var(--coef-w)));
        left: 0;
        width: 100%;
        z-index: 100;
        background: #FFFFFF;
        box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(8vw * var(--coef-w)) rgba(0, 0, 0, 0.07);
        padding: calc(4vw * var(--coef-w));
        padding-right: calc(5.8667vw * var(--coef-w));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s;
        border-radius: calc(2.1333vw * var(--coef-w));
    }

    .select.active .select-items {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .select-item {
        margin-bottom: calc(1.3333vw * var(--coef-w));
        transition: .3s;
    }

    .select-item:last-child{
        margin-bottom: 0;
    }

    .select-items-inner {
        max-height: calc(45.3333vw * var(--coef-w));
        overflow: auto;
    }

    .select-items-inner::-webkit-scrollbar {
		width: 2px;
	}

	.select-items-inner::-webkit-scrollbar-track {
		background-color: var(--color-light);
	}

	.select-items-inner::-webkit-scrollbar-thumb {
		background-color: var(--color-main);
	}



 

    .filter-price .filter-title::before,
    .filter-price .filter-title::after {
        display: none;
    }

    .rs-container * {
        box-sizing: border-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .rs-container {
        position: relative;
        margin-top: calc(2.6667vw * var(--coef-w));
        margin-left: calc(1.3333vw * var(--coef-w));
        padding-bottom: calc(4vw * var(--coef-w));
        width: calc(48vw * var(--coef-w));
    }

    .rs-container .rs-bg,
    .rs-container .rs-selected {
        background-color: #EFEFEF;
        height: calc(1.0667vw * var(--coef-w));
        left: 0;
        position: absolute;
        top: calc(1.3333vw * var(--coef-w));
        width: 100%;
        border-radius: 3px
    }
    

    .rs-container .rs-selected {
        background-color: var(--color-main);
        border: 1px solid var(--color-main);
        /* transition: all .2s linear; */
        width: 0;
        margin-left: calc(1.3333vw * var(--coef-w));
    }

    .rs-container.disabled .rs-selected {
        background-color: var(--color-stroke);
    }

    .rs-container .rs-pointer {
        width: calc(4.2667vw * var(--coef-w));
        height: calc(4.2667vw * var(--coef-w));
        cursor: pointer;
        left: calc(-2.6667vw * var(--coef-w));
        position: absolute;
        top: 0;
        /* transition: all .2s linear; */
        background: var(--color-main);
        border-radius: 50%;
    }

    .rs-container.disabled .rs-pointer {
        cursor: default
    }

    .rs-container.sliding .rs-pointer,
    .rs-container.sliding .rs-selected {
        transition: none
    }

    .rs-container .rs-scale {
        left: 0;
        position: absolute;
        top: calc(1.6vw * var(--coef-w));
        white-space: nowrap
    }

    .rs-container .rs-scale span {
        float: left;
        position: relative
    }

    .rs-container .rs-scale span::before {
        background-color: var(--color-stroke);
        content: "";
        height: calc(2.1333vw * var(--coef-w));
        left: 0;
        position: absolute;
        top: calc(2.6667vw * var(--coef-w));
        width: 1px
    }

    .rs-container.rs-noscale span::before {
        display: none
    }

    .rs-container.rs-noscale span:first-child::before,
    .rs-container.rs-noscale span:last-child::before {
        display: block
    }

    .rs-container .rs-scale span:last-child {
        margin-left: -1px;
        width: 0
    }

    .rs-container .rs-scale span ins {
        color: var(--color-text);
        display: inline-block;
        font-size: calc(3.2vw * var(--coef-w));
        margin-top: calc(5.3333vw * var(--coef-w));
        text-decoration: none
    }

    .rs-container.disabled .rs-scale span ins {
        color: var(--color-stroke);
    }

    .priceslider-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: calc(2.1333vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
    }

    .priceslider-input-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }

    .priceslider-inner input {
        background: var(--color-white);
        width: calc(18.9333vw * var(--coef-w));
        height: calc(8vw * var(--coef-w));
        padding: calc(1.6vw * var(--coef-w)) calc(3.2vw * var(--coef-w)) calc(1.6vw * var(--coef-w)) calc(3.2vw * var(--coef-w));
        -webkit-appearance: none;
        border: 1px solid var(--color-stroke);
        display: block;
        border-radius: calc(1.6vw * var(--coef-w));
        -moz-appearance: textfield;
        font-size: calc(3.2vw * var(--coef-w));
    }

    .priceslider-input {
        display: flex;
        align-items: center;
    }

    .rs-tooltip {
        display: none;
        color: var(--color-white);
        width: auto;
        min-width: calc(16vw * var(--coef-w));
        height: calc(8vw * var(--coef-w));
        background: var(--color-main);
        border: 1px solid var(--color-main);
        border-radius: 3px;
        position: absolute;
        transform: translate(-50%, 0);
        left: 50%;
        top: calc(-10.6667vw * var(--coef-w));
        text-align: center;
        font-size: calc(3.4667vw * var(--coef-w));
        padding: calc(1.6vw * var(--coef-w)) calc(2.6667vw * var(--coef-w)) 0
    }
    /* 
    .rs-container .rs-pointer:before {
        content: '';
        display: block;
        width: calc(4vw * var(--coef-w));
        height: calc(4vw * var(--coef-w));
        background-color: var(--color-second);
        position: absolute;
        top: calc(-6.1333vw * var(--coef-w));
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        color: var(--color-white);
    } */

    .priceslider-btn {
        background: var(--color-white);
        border: 1px solid var(--color-main);
        width: calc(11.2vw * var(--coef-w));
        height: calc(9.0667vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: calc(1.3333vw * var(--coef-w));
        cursor: pointer;
        user-select: none;
    }


 

    .containercheckbox {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding-left: calc(6.4vw * var(--coef-w));
        transition: .3s;
    }   

    .containercheckbox a {
        display: inline;
    }

    .containercheckbox input {
        opacity: 0;
        cursor: pointer;
        height: 1px;
        width: 1px;
    }

    .checkmark {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: calc(4.2667vw * var(--coef-w));
        width: calc(4.2667vw * var(--coef-w));
        background-color: var(--color-white);
        border: 1px solid var(--color-stroke);
        transition: .3s;
        border-radius: 2px;
    }

    .checkbox.white .checkmark {
        background-color: var(--color-white);
        border: 1px solid var(--color-stroke);
        border-radius: calc(1.0667vw * var(--coef-w));
    }

    .checkbox.white .containercheckbox {
        color: var(--color-text-main);
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .containercheckbox input:checked~.checkmark:after {
        display: block;
        opacity: 1;
    }

    .containercheckbox input:checked~.checkmark {
        background: var(--color-main);
        border: 1px solid var(--color-main);
    }

    .containercheckbox .checkmark:after {
        left: 50%;
        top: calc(50% - 1px);
        transform: translate(-50%, -50%) rotate(45deg);
        width: 3px;
        height: calc(1.6vw * var(--coef-w));
        border: solid var(--color-white);
        border-width: 0 calc(0.56vw * var(--coef-w)) calc(0.56vw * var(--coef-w)) 0;
        transition: .3s;
        z-index: 10;
    }

 

    .btn {
        border-radius: calc(5.3333vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: .3s;
        border: none;
        text-align: center;
        height: calc(11.2vw * var(--coef-w));
        font-family: 'Open Sans';
        padding: 0 calc(2.6667vw * var(--coef-w));
        position: relative;
    }

    .btn-big-cart svg,
    .btn-product svg {
        width: calc(4.8vw * var(--coef-w));
        height: calc(4.8vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
    }

    .btn-mobile {
        display: flex;
    }

    .btn-desktop {
        display: none;
    }

    .btn-100 {
        width: 100%;
    }

    .btn-240 {
        width: calc(64vw * var(--coef-w));
    }

    .btn-290 {
        width: calc(77.3333vw * var(--coef-w));
    }

    .btn-200 {
        width: calc(53.3333vw * var(--coef-w));
    }

    .btn-340 {
        width: calc(90.6667vw * var(--coef-w));
    }

    .btn-170 {
        width: calc(45.3333vw * var(--coef-w));
    }

    .btn-cart {
        width: calc(9.6vw * var(--coef-w));
        height: calc(9.6vw * var(--coef-w));
        border-radius: calc(2.6667vw * var(--coef-w));
    }

    .btn-cart svg,
    .btn-cart img {
        width: calc(4.8vw * var(--coef-w));
        height: calc(4.8vw * var(--coef-w));
    }
    
    .btn-inactive {
        background: var(--color-grey) !important;
        pointer-events: none;
    }

    .btn-yellow {
        background: var(--color-main);
    }

    .btn-red {
        background: #FA580F;
    }

    .btn-main {
        background: var(--color-main);
    }

    .btn-empty {
        color: var(--color-text-main);
        border: 1px solid var(--color-text-main);
        background: transparent;
    }

    .btn-empty.btn-main {
        color: var(--color-main);
        border: 1px solid var(--color-main);
        background: transparent;
    }

    .btn-dark-main {
        color: var(--color-white);
        background: var(--color-text-main);
    }

    .btn-none {
        display: none;
    }

    .btn-gradient {
        background: linear-gradient(93deg, #5D2C6E 8.82%, #A17BAE 124.44%);
    }

    .btn-left {
        padding-left: calc(3.2vw * var(--coef-w));
    }

    .btn-left::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        left: calc(9.6vw * var(--coef-w));
    }

    .btn-right {
        padding-right: calc(3.2vw * var(--coef-w));
    }

    .btn-right::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        border-right: 1px dashed rgba(255, 255, 255, 0.50);
        position: absolute;
        top: 0;
        right: calc(9.6vw * var(--coef-w));
    }

    .btn svg {
        width: calc(2.6667vw * var(--coef-w));
        height: calc(2.6667vw * var(--coef-w));
    }

    .btn-left svg {
        margin-right: calc(6.6667vw * var(--coef-w));
    }

    .btn-right svg {
        margin-left: calc(6.6667vw * var(--coef-w));
    }

    .btn-white {
        background: var(--color-white);
        color: var(--color-main);
    }

    .btn-white:after {
        border-color: var(--color-main);
        transition: .3s;
    }

    .btn-white path {
        fill: var(--color-main);
        transition: .3s;
    }


 

    .product-card {
        width: calc(43.2vw * var(--coef-w));
        border-radius: calc(2.6667vw * var(--coef-w));
        background: var(--color-white);
        box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
        margin-right: calc(4vw * var(--coef-w));
    }

    .product-card-image {
        width: calc(32vw * var(--coef-w));
        height: calc(37.3333vw * var(--coef-w));
        object-fit: contain;
        margin: 0 auto;
    }

    .product-card:nth-child(2n) {
        margin-right: 0;
    }

    .product-card-content {
        padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w));
        flex: 1;
    }

    .product-card-content-info {
        flex: 1;
    }

    .product-card-title {
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.8vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
        transition: .3s;
        display: block;
    }

    .product-card-color {
        width: calc(3.2vw * var(--coef-w));
        height: calc(3.2vw * var(--coef-w));
        padding: calc(1.0667vw * var(--coef-w));
        border-radius: 50%;
        margin-right: calc(1.3333vw * var(--coef-w));
        margin-bottom: calc(1.3333vw * var(--coef-w));
        position: relative;
        cursor: pointer;
        border: 1px solid var(--color-stroke);
    }

    .product-card-color.active::after {
        content: "";
        display: block;
        width: calc(4.2667vw * var(--coef-w));
        height: calc(4.2667vw * var(--coef-w));
        border-radius: 50%;
        border: 1px solid var(--color-black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-card-color.active {
        margin: 0 calc(0vw * var(--coef-w));
        margin-right: calc(1.3333vw * var(--coef-w));
    }

    .product-card-color:first-child {
        margin-left: 0;
    }

    .product-card-footer {
        margin-top: calc(4vw * var(--coef-w));
        border-top: 1px solid var(--color-stroke);
        padding-top: calc(3.2vw * var(--coef-w));
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card-price {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .product-card-footer .btn {
        height: calc(8vw * var(--coef-w));
        padding: calc(1.8667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w));
        padding-right: calc(4vw * var(--coef-w));
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4vw * var(--coef-w));
    }

    .product-card-short-desc {
        font-family: 'Montserrat';
        font-size: calc(2.6667vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(3.7333vw * var(--coef-w));
        margin-bottom: calc(2.6667vw * var(--coef-w));
        display: none;
    }


 

    .products-title {
        text-align: center;
        margin-bottom: calc(5.3333vw * var(--coef-w));
    }

    .product-items-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .product-items-inner .product-card {
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .products-items {
        margin-bottom: calc(-2.6667vw * var(--coef-w));
    }

    .products-items.products-items-slider .product-items-inner {
        overflow: auto;
        flex-wrap: nowrap;
        padding: calc(2.6667vw * var(--coef-w)) var(--offset);
        padding-right: 0;
    }

    .products-items.products-items-slider .product-items-inner::-webkit-scrollbar {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .products-items.products-items-slider .product-card {
        width: calc(40vw * var(--coef-w));
        margin-right: calc(2.6667vw * var(--coef-w));
        flex-shrink: 0;
    }


 


    .pagination-wrapper {
        margin-top: calc(8vw * var(--coef-w));
    }

    .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .pagination-btn {
        width: calc(8vw * var(--coef-w));
        height: calc(8vw * var(--coef-w));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 500;
        line-height: calc(5.3333vw * var(--coef-w));
        color: var(--color-main);
        margin: 0 calc(1.3333vw * var(--coef-w));
        background: #FFFFFF;
        border-radius: 50%;
        cursor: pointer;
    }

    .pagination-btn.active {
        background-color: var(--color-main);
        color: var(--color-white);
    }

    .pagination-btn path {
        fill: var(--color-main);
    }

    .pagination-arrow-left,
    .pagination-arrow-right {
        width: calc(2.6667vw * var(--coef-w));
        height: calc(2.6667vw * var(--coef-w));
    }

    .pagination-btn-arrow {
        background: var(--color-white);
        box-shadow: calc(0vw * var(--coef-w)) calc(0vw * var(--coef-w)) calc(1.6vw * var(--coef-w)) rgba(0, 0, 0, 0.06);
    }



 

    .instagram {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: calc(4.5333vw * var(--coef-w)) 0;
        border-radius: calc(5.3333vw * var(--coef-w));
        overflow: hidden;
        position: relative;
        margin-bottom: calc(8vw * var(--coef-w));
    }

    .instagram-back {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }

    .instagram-icon {
        width: calc(8vw * var(--coef-w));
        height: calc(8vw * var(--coef-w));
        margin-left: calc(2.6667vw * var(--coef-w));
    }

    .instagram-text {
        width: calc(66.6667vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        text-align: center;
    }


 

    .search-items {
        padding: calc(2.6667vw * var(--coef-w)) 0;
    }

    .search-items-header {
        padding-bottom: calc(2.6667vw * var(--coef-w));
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    .search-items-header-title {
        font-family: 'Montserrat';
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(4.2667vw * var(--coef-w));
    }

    .search-items-header-count {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
        margin-left: calc(2.6667vw * var(--coef-w));
        padding: calc(1.0667vw * var(--coef-w)) calc(2.6667vw * var(--coef-w));
        background: #E7E7E7;
        border-radius: calc(2.6667vw * var(--coef-w));
    }

    .search-items-header .btn {
        font-size: calc(2.9333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        height: calc(9.0667vw * var(--coef-w));
        padding-left: calc(5.0667vw * var(--coef-w));
        padding-right: calc(3.7333vw * var(--coef-w));
        border-radius: calc(8vw * var(--coef-w));
    }

    .search-items-header .btn::after {
        right: calc(10.1333vw * var(--coef-w));
    }

    .search-items-header .btn svg {
        margin-left: calc(8vw * var(--coef-w));
    }

    .search-products {
        margin-bottom: calc(-2.6667vw * var(--coef-w));
    }

    .search-product {
        padding: calc(1.3333vw * var(--coef-w)) 0;
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-product:nth-child(n + 6) {
        display: none;
    }

    .search-product-image {
        width: calc(21.3333vw * var(--coef-w));
        height: calc(24.8vw * var(--coef-w));
        object-fit: cover;
        margin-right: calc(5.3333vw * var(--coef-w));
    }

    .search-product-title {
        margin-bottom: calc(2.6667vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        width: calc(58.6667vw * var(--coef-w));
    }

    .search-product-price {
        font-size: calc(3.7333vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .search-items-error {
        padding: calc(2.6667vw * var(--coef-w)) 0;
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
    }


 

    .search {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-white);
        width: 100%;
    }

    .search-form {
        padding: 0 var(--offset);
        border-bottom: 1px solid var(--color-stroke);
    }

    .search-icon {
        width: calc(5.3333vw * var(--coef-w));
        height: calc(5.3333vw * var(--coef-w));
    }

    .search-icon-close {
        cursor: pointer;
    }

    .search-input {
        padding: calc(4.8vw * var(--coef-w)) 0;
        margin: 0 calc(2.6667vw * var(--coef-w));
        flex: 1;
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
        border: none;
    }


 

	.logo-wrapper {
		margin-left: calc(10.6667vw * var(--coef-w));
	}
	
	.logo {
		width: calc(22.6667vw * var(--coef-w));
		height: calc(9.0667vw * var(--coef-w));
		object-fit: contain;
	}

	.header {
		padding: calc(3.2vw * var(--coef-w)) 0;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.6vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(30, 30, 30, 0.10);
		position: sticky;
		top: 0;
		z-index: 10000;
		background: var(--color-white);
	}

	.header-inner {
		width: 100%;
	}

	.header.box-shadow-none {
		box-shadow: none;
	}

	.header-icon,
	.header-icon.svg {
		width: calc(6.6667vw * var(--coef-w));
		height: calc(6.6667vw * var(--coef-w));
		cursor: pointer;
		margin-left: calc(4vw * var(--coef-w));
		position: relative;
	}

	.header-icon-cart svg {
		width: calc(6.6667vw * var(--coef-w));
		height: calc(6.6667vw * var(--coef-w));
	}

	.header-icon-cart-counter {
		color: var(--color-white);
		text-align: center;
		font-family: 'Montserrat';
		font-size: calc(2.1333vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		width: calc(3.7333vw * var(--coef-w));
		height: calc(3.7333vw * var(--coef-w));
		border-radius: 50%;
		background: var(--color-main);
		border: calc(0.4vw * var(--coef-w)) solid var(--color-white);
		position: absolute;
		bottom: -2px;
		right: -2px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.toggle-item {
		width: calc(7.4667vw * var(--coef-w));
		height: 1px;
		background: var(--color-main);
		border-radius: 2px;
		margin: calc(1.8667vw * var(--coef-w)) 0;
		transition: .3s;
	}

	.toggle-item:nth-child(1) {
		margin-top: 0;
	}

	.toggle-item:nth-child(2) {
		width: calc(5.3333vw * var(--coef-w));
	}

	.toggle-item:nth-child(3) {
		margin-bottom: 0;
	}

	header.active .toggle-item:nth-child(2) {
		opacity: 0;
		visibility: hidden;
		margin: 0;
		height: 0;
	}

	header.active .toggle-item {
		margin: 0;
	}

	header.active .toggle-item:nth-child(1) {
		transform: rotate(45deg);
		margin-bottom: -2px;
	}

	header.active .toggle-item:nth-child(3) {
		transform: rotate(-45deg);
		margin-top: -2px;
	}




	.menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: calc(5.3333vw * var(--coef-w)) var(--offset);
		background: var(--color-white);
		border-top: 1px solid var(--color-stroke);
		box-shadow: calc(0vw * var(--coef-w)) calc(2.6667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(30, 30, 30, 0.10);
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: .3s;
	}

	header.active .menu {
		opacity: 1;
		pointer-events: all;
		visibility: visible;
	}

	.menu-items {
		border-bottom: 1px solid var(--color-stroke);
		padding: calc(2.6667vw * var(--coef-w)) 0;
	}

	.menu-items:first-child {
		padding-top: 0;
	}

	.categories-menu-item-wrapper {
		margin-bottom: calc(4vw * var(--coef-w));
		width: 100%;
	}

	.categories-menu-item {
		width: 100%;
		font-family: 'Montserrat';
		font-size: calc(3.7333vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5.3333vw * var(--coef-w));
	}

	.categories-menu-item-wrapper:last-child {
		margin-bottom: 0;
	}

	.first-header-menu-item {
		font-size: calc(3.2vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.8vw * var(--coef-w));
		margin-bottom: calc(4vw * var(--coef-w));
	}

	.first-header-menu-item:last-child {
		margin-bottom: 0;
	}

	.first-header-phone {
		font-size: calc(3.2vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(4.8vw * var(--coef-w));
		margin-bottom: calc(2.6667vw * var(--coef-w));
		margin-top: calc(4vw * var(--coef-w));
	}

	.first-header-worktime {
		font-size: calc(3.2vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(6.9333vw * var(--coef-w));
		margin-bottom: calc(2.6667vw * var(--coef-w));
	}

	.currency {
		font-size: calc(3.7333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(6.9333vw * var(--coef-w));
		cursor: pointer;
	}

	.currency:after {
		content: "";
		display: block;
		height: calc(4vw * var(--coef-w));
		width: 1px;
		background: var(--color-grey);
		margin: 0 calc(2.1333vw * var(--coef-w));
	}

	.currency:last-child::after {
		display: none;
	}

	.categories-submenu-link {
		margin-top: calc(2.6667vw * var(--coef-w));
	}

	.categories-submenu-items-col-models {
		margin-bottom: calc(4vw * var(--coef-w));
	}

	.categories-menu-item-submenu {
		display: none;
	}

	header.menu-active .menu-items-main,
	header.menu-active .menu-items-info,
	header.menu-active .categories-menu-item-wrapper{
		display: none;
	}

	header.menu-active .categories-menu-item-wrapper.active {
		display: block;
		margin-bottom: 0;
	}

	header.menu-active .menu-items {
		border: none;
	}

	.categories-menu-item-wrapper.active .categories-menu-item-submenu {
		display: flex;
		margin-top: calc(4vw * var(--coef-w));
	}

	.categories-menu-item-wrapper.active .categories-menu-item {
		flex-direction: row-reverse;
		justify-content: flex-end;
	}

	.categories-menu-item-wrapper.active .categories-menu-item svg {
		transform: rotate(180deg);
		margin-right: calc(2.6667vw * var(--coef-w));
	}


 

    .cart {
        margin-top: calc(4vw * var(--coef-w));
        border-bottom: 1px solid var(--color-stroke);
    }

    .cart-checkout {
        padding-bottom: 0;
        margin-top: 0;
    }

    .cart-checkout .cart-product {
        width: 100%;
    }

    .cart-checkout .cart-product:last-child {
        border-bottom: none;
    }

    .cart-product {
        margin-top: calc(5.3333vw * var(--coef-w));
        width: 100%;
        display: flex;
        position: relative;
    }

    .cart-product:first-child {
        margin-top: 0;
    }

    .cart-checkout .cart-product {
        align-items: flex-start;
    }

    .cart-products {
        max-height: calc(66.6667vw * var(--coef-w));
        overflow: auto;
        padding-right: calc(1.0667vw * var(--coef-w));
        margin-bottom: calc(4vw * var(--coef-w));
    }

    .cart-checkout .cart-products {
        max-height: calc(66.6667vw * var(--coef-w));
    }

    .cart-products::-webkit-scrollbar {
        width: 2px;
    }

    .cart-products::-webkit-scrollbar-track {
        background: var(--color-stroke);
    }

    .cart-products::-webkit-scrollbar-thumb {
        background: var(--color-main);
    }

    .cart-product-info-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }

    .cart-checkout .cart-product-info-block {
        align-items: flex-start;
    }

    .cart-product-title {
        display: block;
        width: calc(44.5333vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4.2667vw * var(--coef-w));
    }

    .cart-product-desc {
        font-family: 'Montserrat';
        font-size: calc(2.6667vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(3.7333vw * var(--coef-w));
        margin-top: calc(1.0667vw * var(--coef-w));
    }

    .cart-product-image-wrapper {
        flex-shrink: 0;
    }

    .cart-product-image {
        width: calc(21.3333vw * var(--coef-w));
        height: calc(21.3333vw * var(--coef-w));
        border-radius: calc(1.6vw * var(--coef-w));
        object-fit: contain;
    }

    .cart-product-price-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .cart-checkout .cart-product-price-wrapper {
        align-items: flex-start;
        margin: 0;
        margin-top: calc(1.6vw * var(--coef-w));
    }

    .cart-product-price {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .cart-product-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: calc(5.3333vw * var(--coef-w));
    }

    .cart-delete-product-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        position: absolute;
        top: 0;
        right: 0;
    }

    .cart-product:first-child .cart-delete-product-wrapper {
        top: 0;
    }

    .cart-delete-product {
        cursor: pointer;
    }

    .cart-delete-product-svg {
        width: calc(6.4vw * var(--coef-w));
        height: calc(6.4vw * var(--coef-w));
    }

    .cart-product:first-child .cart-delete-product-wrapper {
        top: 0;
    }

    .cart-checkout .cart-product-info {
        margin-right: 0;
    }

    .cart-checkout .cart-product-info-block {
        flex: 1;
    }

    .cart-checkout .cart-product-counter {
        width: 100%;
        margin-top: calc(1.3333vw * var(--coef-w));
    }


 

    .cart-info-items {
        padding: calc(4vw * var(--coef-w)) 0;
        border-bottom: 1px solid var(--color-stroke);
        margin-bottom: calc(4vw * var(--coef-w));
    }

    .cart-info-item {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: calc(1.6vw * var(--coef-w));
    }

    .cart-info-item-title,
    .cart-info-item-value {
        font-size: calc(3.4667vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(5.3333vw * var(--coef-w));
    }

    .cart-info-item:last-child {
        margin-bottom: 0;
    }


 

    .container-modal-cart {
        width: var(--column-width);
        border-radius: calc(5.3333vw * var(--coef-w));
        background: var(--color-white);
        padding: calc(5.3333vw * var(--coef-w)) calc(4vw * var(--coef-w));
    }

    .closemodal-cart {
        cursor: pointer;
        position: absolute;
        top: calc(4vw * var(--coef-w));
        right: calc(4vw * var(--coef-w));
    }

    .closemodal-cart svg {
        width: calc(3.2vw * var(--coef-w));
        height: calc(3.2vw * var(--coef-w));
    }

    .cart-title {
        align-self: flex-start;
    }

    .modal-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #promocode-cart, 
    .modal-cart-block,
    #payment-cart,
    #modal-cart-info {
        width: 100%;
    }

    #modal-cart-info {
        margin-bottom: calc(2.6667vw * var(--coef-w));
    }

    #mini-cart {
        margin-bottom: calc(4vw * var(--coef-w));
    }

    .modal-cart-btns {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .modal-cart-btns .btn {
        width: 100%;
        margin-bottom: calc(2.6667vw * var(--coef-w));
        height: calc(9.0667vw * var(--coef-w));
        font-size: calc(3.2vw * var(--coef-w));
        font-style: normal;
        font-weight: 600;
        line-height: calc(4vw * var(--coef-w));
    }

    .modal-cart-btns .btn:last-child {
        margin-bottom: 0;
    }


 

	.footer {
		padding: calc(8vw * var(--coef-w)) 0;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.6vw * var(--coef-w)) calc(8vw * var(--coef-w)) calc(0vw * var(--coef-w)) rgba(30, 30, 30, 0.15);
	}

	.footer-logo {
		width: calc(32vw * var(--coef-w));
		margin-bottom: calc(8vw * var(--coef-w));
	}

	.copyright {
		font-family: 'Montserrat';
		font-size: calc(2.9333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.2667vw * var(--coef-w));
		margin-bottom: calc(4vw * var(--coef-w));
		margin-top: calc(8vw * var(--coef-w));
	}

	.probotiuk {
		font-size: calc(3.7333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(6.4vw * var(--coef-w));
	}

	.footer-col-title {
		font-size: calc(3.4667vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(4.8vw * var(--coef-w));
		letter-spacing: calc(0.0347vw * var(--coef-w));
		padding: calc(2.6667vw * var(--coef-w)) 0;
		width: 100%;
	}

	.footer-col-title svg {
		width: calc(2.4vw * var(--coef-w));
		height: calc(2.4vw * var(--coef-w));
		transition: .3s;
	}

	.footer-col.active .footer-col-title svg {
		transform: rotate(180deg);
	}

	.footer-col-links {
		border-top: 1px solid #EDEDED;
	}

	.footer-links {
		display: none;
	}

	.footer-col.active .footer-links {
		display: flex;
	}

	.footer-link {
		font-family: 'Montserrat';
		font-size: calc(2.9333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.2667vw * var(--coef-w)); 
		margin-bottom: calc(2.1333vw * var(--coef-w));
	}

	.footer-social {
		margin-top: calc(1.8667vw * var(--coef-w));
	}

	.footer-social-wrapper {
		margin-right: calc(4vw * var(--coef-w));
	}

	.footer-social-icon {
		width: calc(6.9333vw * var(--coef-w));
		height: calc(6.9333vw * var(--coef-w));
	}

	.footer-social-icon:last-child {
		margin-right: 0;
	}


 

	.catalog-view-icon svg {
		width: calc(4.2667vw * var(--coef-w));
		height: calc(4.2667vw * var(--coef-w));
	}

	.catalog-view-icon {
		width: calc(8.8vw * var(--coef-w));
		height: calc(8.8vw * var(--coef-w));
		border-radius: calc(2.1333vw * var(--coef-w));
		border: 1px solid var(--stroke, #D5D5D5);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: calc(3.2vw * var(--coef-w));
		cursor: pointer;
		transition: .3s;
	}

	.catalog-view-icon path {
		transition: .3s;
		fill: #D5D5D5;
	}

	.catalog-view-icon.active {
		border-color: var(--color-main);
	}

	.catalog-view-icon.active path {
		fill: var(--color-main);
	}

	.catalog-header {
		margin-bottom: calc(4.2667vw * var(--coef-w));
	}

	.filter-mobile-title-text:not(.none) {
		display: flex;
		align-items: center;
	}

	.filter-mobile-title-text {
		font-size: calc(4.2667vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5.3333vw * var(--coef-w));
	}

	.filters-btns {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: sticky;
		bottom: 0;
	}

	.btn-filters.btn-empty {
		background: var(--color-white);
	}

	.filters-btns .btn-filters {
		width: 100%;
		height: calc(10.1333vw * var(--coef-w));
		transition: width 0s;
	}

	.filters .btn-filters {
		width: calc(28vw * var(--coef-w));
	}

	.filters-btns {
		width: 100%;
		margin-bottom: calc(4.2667vw * var(--coef-w));
		align-items: flex-start;
	}

	.filters-mobile-title {
		justify-content: space-between;
	}

	.clear-filters-mobile {
		background: rgb(255, 103, 103);
		padding: 2px calc(1.8667vw * var(--coef-w));
		color: var(--color-white);
		border-radius: calc(1.3333vw * var(--coef-w));
		font-size: calc(3.2vw * var(--coef-w));
		font-weight: 400;
	}

	.filter-field-title,
	.filter-field-count {
		font-size: calc(3.2vw * var(--coef-w));
		font-weight: 400;	
	}

	/* .btn-filters.btn-show {
		display: none;
	} */

	.filters-btn {
		width: calc(42.6667vw * var(--coef-w));
		flex-shrink: 0;
		margin-right: calc(3.4667vw * var(--coef-w));
		background: var(--color-main);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: calc(2.1333vw * var(--coef-w)) 0;
		border-radius: calc(2.6667vw * var(--coef-w));
		font-size: calc(2.9333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		line-height: calc(4.2667vw * var(--coef-w));
	}

	.filters-btn svg {
		width: calc(4.2667vw * var(--coef-w));
		height: calc(4.2667vw * var(--coef-w));
		margin-right: calc(1.3333vw * var(--coef-w));
	}

	/* FILTERS */

	#filters {
		position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);;
        align-items: center;
        justify-content: center;
        display: flex;
        z-index: 10000;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: .3s;
	}

	.filter-inner {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	#filters.active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.filters {
		width: calc(66.6667vw * var(--coef-w));
		height: 100%;
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		flex-shrink: 0;
		background: #FFFFFF;
		padding: calc(4vw * var(--coef-w));
		display: flex;
		flex-direction: column;
	}

	.filters.show .filter-item:not(.show) {
		display: none;
	}

	.filters::-webkit-scrollbar {
		width: 3px;
	}

	.filters::-webkit-scrollbar-track {
		background-color: var(--color-light);
	}

	.filters::-webkit-scrollbar-thumb {
		background-color: var(--color-main);
	}

	.filter-item {
		width: 100%;
		margin-top: calc(1.3333vw * var(--coef-w));
		border-radius: calc(2.6667vw * var(--coef-w));
	}

	.filter-item.show .filter-item-fields {
		max-height: 100%;
		overflow: initial;
	}

	.filter-item.show .filter-item-title {
		display: none;
	}

	.filter-field .containercheckbox {
		justify-content: flex-start;
		padding-left: 0;
	}

	.filter-field .checkmark {
		left: auto;
		right: 0;
	}

	.filter-item-title {
		position: relative;
		cursor: pointer;
		user-select: none;
		display: flex;
		align-items: center;
		padding: calc(2.6667vw * var(--coef-w)) calc(4vw * var(--coef-w));
		background: #FFFFFF;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
		border-radius: calc(2.6667vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		font-size: calc(3.2vw * var(--coef-w));
		line-height: calc(4.8vw * var(--coef-w));
	}

	.filter-item-title:after {
		content: '';
		display: block;
		width: calc(1.6vw * var(--coef-w));
		height: calc(1.6vw * var(--coef-w));
		border: 1px solid var(--color-grey);
		position: absolute;
		top: 50%;
		right: calc(4vw * var(--coef-w));
		transform: translateY(-50%) rotate(-45deg);
		border-left: none;
		border-top: none;
		transition: .3s;
	}

	.filters-title {
		display: none;
	}

	.filters-mobile-title {
		display: flex;
		align-items: center;
		margin-bottom: calc(4vw * var(--coef-w));
	}

	.filters-mobile-title-svg {
		width: calc(2.6667vw * var(--coef-w));
		height: calc(2.6667vw * var(--coef-w));
		margin-right: calc(2.6667vw * var(--coef-w));
	}

	.filter-field {
		margin-bottom: calc(1.3333vw * var(--coef-w));
		order: 1;
		padding: calc(2.6667vw * var(--coef-w));
		background: #FFFFFF;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
		border-radius: calc(2.6667vw * var(--coef-w));
	}

	.filter-item-fields {
		max-height: 0;
		overflow: auto;
		display: flex;
		flex-direction: column;
	}

	.filter-field.active {
		order: 0;
	}

	.filter-field.inactive {
		order: 2;
	}

	.filter-item-fields::-webkit-scrollbar {
		width: 2px;
	}

	.filter-item-fields::-webkit-scrollbar-track {
		background: var(--color-stroke);
	}

	.filter-item-fields::-webkit-scrollbar-thumb {
		background: var(--color-main);
	}

	.filter-field.inactive .containercheckbox,
	.filter-field.inactive .containercheckbox a {
		color: var(--color-grey);
		pointer-events: none;
	}

	.filter-field .containercheckbox a {
		width: 100%;
	}

	.filter-field-count {
		margin-left: calc(1.3333vw * var(--coef-w));
	}

	.btn-filters {
		/* position: sticky;
		bottom: calc(5.3333vw * var(--coef-w));
		left: 0; */
		margin-top: calc(5.3333vw * var(--coef-w));
		font-style: normal;
		font-weight: 400;
		font-size: calc(3.7333vw * var(--coef-w));
		line-height: calc(5.8667vw * var(--coef-w));
		margin-bottom: calc(2.6667vw * var(--coef-w));
	}

	.filter-price {
		padding: calc(4vw * var(--coef-w));
		background: #FFFFFF;
		box-shadow: calc(0vw * var(--coef-w)) calc(1.0667vw * var(--coef-w)) calc(5.3333vw * var(--coef-w)) 2px #F0F0F0;
		border-radius: calc(2.6667vw * var(--coef-w));
	}

	.filters.show .btn-filters.btn-show {
		display: flex;
	}

	.clear-filters {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.clear-filters-svg {
		width: calc(4.2667vw * var(--coef-w));
		height: calc(4.2667vw * var(--coef-w));
		margin-left: calc(1.3333vw * var(--coef-w));
	}

	.filters-btns .select-items {
		min-width: calc(45.3333vw * var(--coef-w));
		left: auto;
		right: 0;
	}

	.filters-btns .select-title {
		color: var(--color-main);
		border-color: var(--color-main);
		padding: 0;
		height: calc(9.0667vw * var(--coef-w));
		justify-content: center;
	}

	.filters-btns .select-title span {
		width: auto;
		height: calc(4.8vw * var(--coef-w));
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.filters-btns .select-title::after {
		display: none;
	}

	.filters-btns .select-wrapper {
		width: calc(44vw * var(--coef-w));
	}

	.category-content.list .product-card-short-desc {
		display: block;
	}

	.category-content.list .product-card {
		margin-right: calc(5.3333vw * var(--coef-w));
		width: 100%;
		flex-direction: row;
		align-items: center;
		padding: calc(2.6667vw * var(--coef-w)) calc(2.1333vw * var(--coef-w));
		margin-right: 0;
	}

	.category-content.list .product-card-image {
		width: calc(29.3333vw * var(--coef-w));
		height: calc(34.1333vw * var(--coef-w));
	}

	.category-content.list .product-card-footer {
		flex-direction: row;
		align-items: center;
	}

	.category-content.list .product-card-price {
		margin-bottom: 0;
	}


 }