@font-face {
	font-family: Montserrat-Regular;
	src: url(/fonts/Montserrat-Regular.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Semibold;
	src: url(/fonts/Montserrat-Semibold.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Bold;
	src: url(/fonts/Montserrat-Bold.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Medium;
	src: url(/fonts/Montserrat-Medium.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Black;
	src: url(/fonts/Montserrat-Black.woff);
	font-display: swap;
}

@font-face {
	font-family: Montserrat-Light;
	src: url(/fonts/Montserrat-Light.woff);
	font-display: swap;
}

:root {
	--main-color: #2A6438;
	--main-color-hover: #356a41;
	--main-color-light: #f7f6fc;

	--font-regular: "Montserrat-Regular", sans-serif;
	--font-bold: "Montserrat-Bold", sans-serif;
	--font-medium: "Montserrat-Medium", sans-serif;
	--font-semibold: "Montserrat-Semibold", sans-serif;
	--font-black: "Montserrat-Black", sans-serif;
	--font-light: "Montserrat-Light", sans-serif;
}

html {
	scroll-behavior: smooth;
}

img {
	height: auto;
	object-fit: cover;
}
body {
	font-family: var(--font-regular);
	font-weight: 400;
	color: #121212;
	font-size: 15px;
	line-height: 20px;
	width: 100%;
	background-color: #EEEEED;
	min-height: 100vh;
	height: 100%;
	display: flex;
	flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--main-color-dark);
	font-family: var(--font-bold);
}


h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 2.5rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: 1rem;
}

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

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

legend {
	font-size: 1rem;
	padding: 7px 0px
}

label {
	font-size: 1.5rem;
	font-weight: normal;
	color: #121212;
}

.btn-primary {
	background-color: var(--main-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
}
.btn-primary:hover {
	background-color: var(--main-color-hover);
	border-color: var(--main-color-hover);
}
.btn-primary:active, .btn-primary:focus {
	background-color: var(--main-color-hover) !important;
	border-color: var(--main-color-hover) !important;
	outline: none !important;
}
@media (min-width: 870px) {
	.container {
		width: 850px;
	}
}

@media (min-width: 970px) {
	.container {
		width: 950px;
	}
}

@media (min-width: 1050px) {
	.container {
		width: 1030px;
	}
}

@media (min-width: 1120px) {
	.container {
		width: 1100px;
	}
}

@media (min-width: 1185px) {
	.container {
		width: 1170px;
	}
}

@media (min-width: 1215px) {
	.container {
		width: 1200px;
	}
}

@media (min-width: 1315px) {
	.container {
		width: 1300px;
	}
}

@media (min-width: 1415px) {
	.container {
		width: 1400px;
	}
}

@media (min-width: 1515px) {
	.container {
		width: 1470px;
	}
}

select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control {
	font-size: 16px;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
	font-size: 14px;
}

.input-group .input-group-addon {
	font-size: 14px;
	height: 30px;
}

/* Fix some bootstrap issues */
span.hidden-xs, 
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}


.close {
	color: #fff;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1 !important;
	font-size: 0;
	z-index: 100;
}

.close::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(315deg);
	-ms-transform: translate(-50%, -50%) rotate(315deg);
	transform: translate(-50%, -50%) rotate(315deg);
	height: 1px;
	width: 55%;
	background: #121212;
}

.close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	height: 1px;
	width: 55%;
	background: #121212;
}

.close:hover {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: -webkit-transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
	opacity: 1;
}
.breadcrumb {
	border: none;
	background: transparent;
	display: flex;
	white-space: nowrap;
	padding: 0;
	margin: 0 0 30px 0;
	overflow-x: auto;
	font-size: 13px;
}


.breadcrumb::-webkit-scrollbar {
	width: 0px !important;
	display: none !important;
	background: transparent !important;
}

.breadcrumb>li {
	padding: 0 15px;
	position: relative;
	color: #999;
	white-space: nowrap;
}

.breadcrumb>li+li:before {
	content: "";
	padding: 0;
}

.breadcrumb>li:after {
	content: '/';
	display: block;
	position: absolute;
	top: 0;
	right: -4px;
	width: 6px;
	height: 20px;

}

.breadcrumb>li:first-child {
	padding-left: 0;
}

.breadcrumb>li:last-child::after {
	display: none;
}

.breadcrumb>li:last-child {
	padding-right: 0;
}

.breadcrumb a {
	color: #121212;
}

.pagination {
	margin: 0;
}


.pagination>li>a,
.pagination>li>span {
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	width: 45px;
	height: 45px;
	color: #121212;
	font-size: 16px;
	margin-right: 15px;
	gap: 10px;
	background: transparent;
	border: none;
	border-bottom: 1px solid transparent;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-radius: 0;
}

.pagination {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
	margin: 40px 0;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	color: #fff;
	border-color: var(--main-color);
	background: var(--main-color);
	border-radius: 0;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	background: transparent;
	color: #999;
	border-color: transparent;
}




.pagination-text-justify form {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 0;
}

.pagination>li.pagination-right>a {
	width: 100%;
}

.pagination>li svg {
	height: 15px;
}

.pagination>li.pagination-left>a {
	width: 100%;
}

.pagination>li.pagination-left {
	margin-right: 20px;
}

.pagination>li.pagination-right {
	margin-left: 10px;
}

::-webkit-scrollbar-button {
	background-image: url('');
	background-repeat: no-repeat;
	width: 5px;
	height: 0px
}

::-webkit-scrollbar-track {
	background-color: #fff
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 0px;
	border-radius: 0px;
	background-color: #fff;
}

::-webkit-scrollbar-thumb:hover {
	background-color: black;
}

::-webkit-resizer {
	background-image: url('');
	background-repeat: no-repeat;
	width: 4px;
	height: 0px;

}

::-webkit-scrollbar {
	width: 4px;

}

::-webkit-scrollbar {
	width: 6px !important;
}

::-webkit-scrollbar-button {
	background-image: url('');
	background-repeat: no-repeat;
	width: 10px;
	height: 0px
}

::-webkit-scrollbar-track {
	background-color: #fff;

}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 0px;
	border-radius: 0px;
	background-color: #ddd;
	width: 10px
}

::-webkit-scrollbar-thumb:hover {
	background-color: #888;
}

::-webkit-resizer {
	background-image: url('');
	background-repeat: no-repeat;
	width: 10px;
	height: 0px
}


.button {
	color: #ffffff;
	background-color: var(--main-color);
	border-color: var(--main-color);
	height: 60px;
	padding: 10px 40px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	max-width: max-content;
	border-radius: 0;
	line-height: 1;
}

.button:hover,
.button:active,
.button:focus,
.button.disabled,
.button[disabled] {
	background-color: var(--main-color-hover) !important;
	border-color: var(--main-color-hover) !important;
	outline: none !important;
	box-shadow: none !important;
	color: #fff;
	text-decoration: none;
}

input.form-control {
	border: none;
	border: 1px solid #EEEEED;
	padding: 0 15px;
	height: 50px;
	box-shadow: none;
	border-radius: 0;
	background-color: #EEEEED;
}

textarea.form-control {
	border: none;
	border: 1px solid #EEEEED;
	padding: 0 15px;
	height: 80px;
	box-shadow: none;
	border-radius: 0;
	background-color: #EEEEED;
	resize: none;
}
input.form-control:active,
input.form-control:focus {
	box-shadow: none;
	border-color: #ddd;
	outline: none !important;
}

textarea.form-control:active,
textarea.form-control:focus {
	box-shadow: none;
	border-color: #ddd;
	outline: none !important;
}


.review-table {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px
}

#review {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #121212
}

.review-table__header {
    margin-bottom: 10px
}

.review-table__header p {
    font-family: var(--font-bold);
    font-size: 15px;
    margin-bottom: 5px
}

.review-table__date {
    text-align: right;
    color: #666
}

.review-table__row {
    display: flex;
    justify-content: space-between
}

.review-table__text p {
    margin-bottom: 0
}

.review-form-box {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 30px rgb(0 0 0 / 5%);
    width: 400px;
    margin-bottom: 30px
}

.review-form__title {
    text-align: center;
    margin-bottom: 15px
}

.star-form {
    fill: #d4d7db;
    cursor: pointer
}

.star-form.selected {
    fill: #ffb300
}

.rating-form-stars label input {
    display: none
}

.rating-form-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 0 0 10px 0
}

.review-form-box .buttons {
    display: flex;
    margin: 0
}

.review-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 10px
}

.popup-bg {
	display: flex;
	justify-content: flex-end;
	max-width: 500px;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99000;
	transform: translateX(101%);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.visible-popup {
	transform: translateX(0);
    opacity: 1;
}

.cart-body {
	background-color: #fff;
	padding: 0;
	position: relative;
	border-left: 1px solid #f1f1f1;
	max-width: 500px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 70px 20px 0 20px;
}

.cart-data {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	

}
.cart-body .title {
	font-family: var(--font-bold);
	font-size: 23px;
	margin-bottom: 25px;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
}
@media (min-width: 768px) {
	#product select {
		height: 50px;
		border-radius: 0;
		box-shadow: none;
		width: 70%;
		border-color: #ddd !important;
		outline: none;
	}
}

.cart-products__name a {
	display: flex;
	margin-bottom: 15px;
	font-family: var(--font-medium);
	color: #000;
}
.cart-products {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 25px;
	align-items: center;
	border-bottom: 1px solid #f1f1f1;
	padding: 20px 0;
}
.cart-products:first-child {
	border-top: 1px solid #f1f1f1;
}
.cart-products__image img {
	width: 100%;
	border-radius: 5px;
}


.cart-products__quant {
	display: flex;
	margin-top: 15px;

}

.cart-quantity__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	border-radius: 0;
	flex: 0 0 30px;
	cursor: pointer;
	border: 1px solid #e3e3e3;
	background-color: transparent;
}

.cart-quantity__btn:hover,
.cart-quantity__btn:active,
.cart-quantity__btn:focus {
	color: var(--main-color);
}
.cart-quantity-minus {
	border-right: none;
}
.cart-quantity-plus {
	border-left: none;
}
.cart-quantity__input {
	border: 1px solid transparent;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
	text-align: center;
	height: 30px;
	width: 30px;
	box-shadow: none;
	outline: none;
	background: transparent;
}

.cart-remove {
	background-color: transparent;
	border: 1px solid transparent;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
}

.cart-remove:hover {
	color: red;
}
.cart-products__total {
	font-size: 16px;
	font-family: var(--font-bold);
	color: #121212;
}

.cart-data div.table-striped {
	display: flex;
	flex-direction: column;
}

.cart-totals {
	justify-content: space-between;
	font-family: var(--font-bold);
	display: flex;
	padding: 5px 0;
	color: #121212;
}
.cart-totals__price {
	white-space: nowrap;
}
.cart-totals__title {
	font-size: 15px;
	margin-bottom: 5px;
}


.cart-close-btn:hover {
	color: var(--main-color);
}
.cart-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	padding-bottom: 20px;
}
.cart-buttons .btn-primary {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
}


.cart-buttons .cart-close-btn{
	height: 50px;
	outline: none;
    box-shadow: none;
	background-color: transparent;
	border: 1px solid var(--main-color);
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
}
.cart-buttons .cart-close-btn:hover {
	cursor: pointer;
	border-color: #000;
	color: #000;
}

.overflow-none {
	overflow: hidden;
}


#mobile-menu {
	display: none;
}

.menu-inner {
	display: flex;
	opacity: 0;
	width: 33%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 8888;
	backdrop-filter: blur(4px);
	border-right: 1px solid #f1f1f1;
	transform: translateX(-101%);
	transition: all .3s ease-in-out;
}

.menu-inner.visible-menu {
	transform: translateX(0);
	opacity: 1;
}

.menu-inner #menu-close.close {
	width: 50px;
	height: 50px;
}

#account-close.close {
	width: 50px;
	height: 50px;
}

.cart-body__close.close {
	width: 50px;
	height: 50px;
}

#menu {
	margin-bottom: 10rem;
}



.container {
    margin: 0 auto;
    padding: 0 2rem
}

@media (min-width: 1315px) {
    .container {
        width:100%
    }
}

@media (min-width: 1415px) {
    .container {
        width:1400px
    }
}

@media (min-width: 1515px) {
    .container {
        width:1470px
    }
}

@media (min-width: 1615px) {
    .container {
        width:1600px
    }
}

@media (min-width: 1815px) {
    .container {
        width:1800px
    }
}






.container::after, .container::before {
	display: none;
}
.header {
	position: relative;
	z-index: 888;
	padding: 15px 0;
	background-color: #EEEEED;
}
.common-home .header {
	background-color: transparent;
}
.header>.container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	height: 70px;
	align-items: center;
}
.header-left {
	display: flex;
	align-items: center;
}
.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 25px;
}
.header__logo img{
	width: 100%;
}

#main-menu {
	display: flex;
	width: 50px;
	height: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.common-home #main-menu div {
	width: 100%;
	height: 2px;
	background-color: #00c7a1;
}
#main-menu div {
	width: 100%;
	height: 2px;
	background-color: #1D1D1B;
}
.common-home .slideshow  {
	position: relative;
	top: -70px;
	z-index: 1;
	height: 100vh;
	width: 100%;
}
.common-home .slideshow img {
	object-fit: cover;
    width: 100%;
	height: 100%;
	
}
.common-home .swiper-container {
	height: 100%;
}

.common-home .banner  {
	position: relative;
	top: -100px;
	z-index: 1;
	height: 100vh;
	width: 100%;
}
.common-home .banner img {
	object-fit: cover;
    width: 100%;
	height: 100%;
	
}



.header__logo  {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.header__cart {
	position: relative;
}
#cart>button {
	height: 39px;
	width: 39px;
	background-color: transparent;
	background-image: url(/image/dark-cart.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 80%;
	display: flex;
	box-shadow: none;
	margin: 0;
	padding: 0;
	border: none;
}
.common-home #cart>button {
	background-image: url(/image/cart.svg);
	background-size: 100%;
}
#cart-total {
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 18px;
    width: 18px;
    background-color: #fff;
    position: absolute;
    top: -2px;
    line-height: 1;
    right: -4px;
    border-radius: 50%;
    font-size: 12px;
    color: #000;
	font-family: var(--font-medium);
}

.header__account {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 39px;
	width: 39px;
	background-color: transparent;
	background-image: url(/image/dark-user.svg);
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
	line-height: 1;
	position: relative;
	cursor: pointer;
}

.common-home .header__account {
	background-image: url(/image/account.svg);
	background-size: 60%;
}
.search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 39px;
	width: 39px;
	background-color: transparent;
	background-image: url(/image/dark-serach.svg);
	background-repeat: no-repeat;
	background-size: 75%;
	background-position: center;
	line-height: 1;
	position: relative;
	cursor: pointer;
}
.common-home .search-btn {
	background-image: url(/image/search.svg);
	background-size: 85%;
}
#search {
	transform: translateY(-101%);
	transition: all .3s ease-in-out;
	position: fixed;
	z-index: 600;
	top: 0;
	left: 0;
	padding: 30px 0;
	width: 100%;
	opacity: 0;
}

#search.visible-search {
	transform: translateY(0);
	opacity: 1;
	top: 85px;
}

#search .input-lg {
	height: 60px;
	border-radius: 0;
	background-color: #fff;
	border: 1px solid #fff;
	color: #121212;
	box-shadow: none;
	padding: 0 20px;
}

#search .btn-lg {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 0;
	box-shadow: none;
}
#search>.container {
	display: flex;
	justify-content: center;
}
.search__group {
	display: flex;
	width: 80%;
	border: 1px solid #ddd;
	
}
.category-list {
	display: flex;
	gap: 30px 100px;
	flex-wrap: wrap;
	padding-bottom: 70px;
}

.category-block {
	width: calc(65% - 50px);
}
.category-block:nth-child(2) {
	width: calc(35% - 50px);
}
.category-block:nth-child(3) {
	width: calc(35% - 50px);
}

.category-block:nth-child(6) {
	width: calc(30% - 20px);
}
.category-block:last-child {
	width: calc(30% - 20px);
}
.category-block img {
	width: 100%;
}
.category-block a{
	display: flex;
	height: 450px;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
@media (min-width: 1050px) {
	.category-block a:hover {
		background-size: 110%;
		animation: zoom-in 0.9s forwards;
	}
	
	.category-block a:not(:hover) {
		animation: zoom-out 0.5s forwards;
	}
	.category-block-caption:hover .category-block-caption-title{
		color: var(--main-color-hover);
	}
}


@keyframes zoom-in {
    from {
        background-size: 100%;
    }
    to {
        background-size: 105%;
    }
}

@keyframes zoom-out {
    from {
        background-size: 105%;
    }
    to {
        background-size: 100%;
    }
}
.category-block-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 25px 30px;
	background-color: rgb(212 212 211 / 83%)
}

.category-block-caption-title {
	font-family: var(--font-medium);
	font-size: 25px;
	color: #000;
	text-transform: uppercase;
} 

.common-home #content .title {
	font-family: var(--font-bold);
	color: var(--main-color-hover);
	font-size: 27px;
	text-transform: uppercase;
	border-bottom: 3px solid var(--main-color-hover);
	margin-bottom: 30px;
	padding-bottom: 20px;
}
#product-product .related-product .title {
	font-family: var(--font-bold);
	color: var(--main-color-hover);
	font-size: 27px;
	text-transform: uppercase;
	border-bottom: 3px solid var(--main-color-hover);
	margin-bottom: 30px;
	padding-bottom: 20px;
}
.related-product {
	padding: 50px 0;
    background-color: #EEEEED;
}
#content img {
	max-width: 100%;
}
#content iframe {
	max-width: 100%;
}
.product-home-module {
	padding-top: 40px;
	background-color: #fff;
}

.product-cards-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
}

.product-card {
	padding: 50px;
	background-color: #fff;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	
}

.product-card:hover {
	box-shadow: 5px 5px 25px 0 rgb(0 0 0 / 5%);
}
.product-card img{
	width: 100%;
}
.product-card__title {
	margin-top: 15px;
}
.cod {
	margin-top: 10px;
	color: #121212;
}
.product-card__title a {
	color: #121212;
	font-size: 18px;
}
.product-card__title a:hover {
	color: var(--main-color-hover);
}
.product-card__cod {
	color: #333;
	font-size: 15px;
	margin: 10px 0;
}
.product-card__price {
	font-family: var(--font-medium);
	font-size: 19px;
	color: #121212;
	margin: 15px 0 20px 0;
	display: flex;
	gap: 3px 15px;
	flex-wrap: wrap;
}
.product-card__price span {
	white-space: nowrap;
}
.price-old {
    color: #444;
    text-decoration-line: line-through;
    text-decoration-style: solid;
    text-decoration-color: red;
    text-decoration: line-through solid red;
  
}

.product-card__bottom {
	display: flex;
	justify-content: space-between;
}
.product-card__bottom .button-main{
	background-color: var(--main-color);
	color: #fff;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-size: 17px;
	height: 50px;
	width: 60%;
	border: 1px solid transparent;

}
.product-card__bottom .button-main:hover {
    background-color: var(--main-color-hover);
    border-color: var(--main-color-hover);
}

/* .product-card__button button {
	height: 50px;
    width: 50px;
    background-color: transparent;
    background-image: url(/image/cart-gray.svg);
    background-repeat: no-repeat;
	background-position: center;
    background-size: 100%;
    display: flex;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border: none;
	transition: background-size .2s ease-in-out;
} */


#language {
	display: flex;
	gap: 5px;
	margin-top: 30px;
}

#language a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	width: 35px;
	cursor: pointer;
	font-size: 12px;
	border: 1px solid transparent;
	text-transform: uppercase;
	color: #ddd;
}

 #language a.selected-language {
	border-color: #666;
	color: #fff;
	cursor: default;
}

@media (min-width: 1000px) {
	.product-card__button button:hover {
		background-size: 107%;
	}
}
.product-card__button {
	display: flex;
	justify-content: flex-end;
}
.product-home-module {
	padding-bottom: 50px;
}
.product-home-module-btn {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}
.product-home-module-btn a{
	display: flex;
	flex-direction: column;
	gap: 5px;
	background-color: var(--main-color);
	padding: 15px;
}
.product-home-module-btn a:hover {
	background-color: var(--main-color-hover);
}
.product-home-module-btn a:hover div {
	color: #fff;
}
.product-home-module-btn a span {
	font-family: var(--font-bold);
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
}

.product-home-module-btn a div {
	color: #ddd;
}
.logo-brands {
	background-color: #fff;
	padding-bottom: 50px;
}

.footer {
	background-color: #333;
	padding-top: 50px;
	margin-top: auto;
	color: #ccc;
}
.powered-footer {
	padding: 20px 0 20px 0;
	border-top: 1px solid #454545;
	margin-top: 30px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.footer a {
	 color: #ccc;
}
.footer a:hover {
	color: #fff;
}
.footer-phone {
	margin-bottom: 10px;
}
.footer-phone a {
	font-size: 19px;
}
.footer-col-information ul{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}
.footer>.container::after, .footer>.container::before {
	display: none;
}

.footer>.container-cols {
	display: grid;
	grid-template-columns: 1.7fr .7fr 1fr;
	gap: 40px;
}
.footer-title {
	text-transform: uppercase;
	color: #AB9D8B;
	font-size: 18px;
	margin-bottom: 20px;
}
.socials {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background-color: #434343;
}
.socials a:hover {
	background-color: var(--main-color);
}
.socials svg {
	height: 20px;
	color: #fff;
	fill: #fff;
}
.contact-info_bottom .socials a {
	border-radius: 0;
	background-color: var(--main-color-hover);
	height: 50px;
	width: 50px;
	
}
.categories-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 50px 0;
}
.product-category-66 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}
.product-category-66 .categories-list img {
	height: 50px; 
}
.product-category-66_112 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_112 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}


body:not(.product-category-66) .categories-list img {
	width: 100%; 
	transform: scale(1.1);
	transition: all .4s ease-in-out;
}
body:not(.product-category-66) .categories-list a:hover img {
	transform: scale(1.15);
}
.product-category-66 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_112 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
body:not(.product-category-66) .categories-list a {
	align-items: center;
	text-align: left;
	color: #000;
	font-size: 18px;
	position: relative;
	text-transform: uppercase;
	font-family: var(--font-medium);
	overflow: hidden;
	padding-bottom: 50px;
}
.product-category-66 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}
.product-category-66_112 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

body:not(.product-category-66) .categories-list__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background-color: #d8d8d8;
}

html body.product-category-66_112 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}
html body.product-category-66_65 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_65 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_65 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_65 .categories-list img {
	height: 70px;
	width: auto !important;
}
.product-category-66_65 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}

html body.product-category-66_112 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}
html body.product-category-66_75 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_75 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_75 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_75 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_75 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}
html body.product-category-66_68 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_68 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_68 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_68 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_68 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}


html body.product-category-66_67 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_67 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_67 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_67 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_67 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}

html body.product-category-66_72 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_72 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_72 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_72 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_72 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}



html body.product-category-66_76 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_76 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_76 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_76 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_76 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}


html body.product-category-66_70 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_70 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_70 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_70 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_70 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}


html body.product-category-66_71 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

#mono_checkout_product_page span {
	white-space: nowrap;
}

.mono_checkout__button#mono_checkout_product_page {
	border-radius: 0;
	width: 100% !important;
}

@media (min-width: 1200px) {
	.mono_checkout__button#mono_checkout_product_page {
	    max-width: 698px;
}
.social-media-btns,.option-radio-inner,.product-btns {
	  max-width: 698px;
}
}

.product-category-66_71 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_71 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_71 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_71 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}




html body.product-category-66_73 .categories-list__title {
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
	font-family: var(--font-regular);
}

.product-category-66_73 .categories-list a:hover {
	box-shadow: 0 0 25px 0 rgb(0 0 0 / 5%);
	color: var(--main-color-hover);
}

.product-category-66_73 .categories-list a {
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding: 15px;
	text-align: center;
	color: #121212;
	overflow: hidden;
	
}
.product-category-66_73 .categories-list img {
    height: 70px;
	width: auto !important;
}
.product-category-66_73 .categories-list{
	grid-template-columns: repeat(7, 1fr);
}
 .catalog-title {
    font-family: var(--font-bold);
    color: var(--main-color-hover);
    font-size: 30px;
    text-transform: uppercase;
    border-bottom: 5px solid var(--main-color-hover);
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.inner-sort {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	position: relative;
}
#input-sort {
	display: flex;
	align-items: center;
	gap: 25px;
	overflow-x: auto;
	overflow-y: hidden;
}
#input-sort a {
	color: #121212;
	font-size: 17px;
	white-space: nowrap;
}
#input-sort a:hover {
	color: var(--main-color-hover);
}
#input-sort-mobile-btn {
	display: none;
}
.inner-sort-filter {
	font-size: 17px;
}

#product-product {
	background-color: #fff;
	padding-top: 20px;
}
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-top: 10px;
}

.product-page-left img {
	width: 100%;
	cursor: pointer;
	padding-bottom: 50px;
}

.product-page-left {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	position: sticky;
	top: 20px;
	height: max-content;
}



#thumbnail-slider .splide__track--nav>.splide__list>.splide__slide {
	border: none;
	opacity: 0.7;
}

#thumbnail-slider .splide__track--nav>.splide__list>.splide__slide.is-active {
	opacity: 1;
}

.information-contact {
	background-color: #fff;
}

#information-contact {
	padding-top: 20px;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 70px;
}
.contact-map iframe {
	height: 450px;
	width: 100%;
}
.contact-title{ 
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: var(--font-medium);
	letter-spacing: 2px;
	color: #000;
}
.contact-address {
	color: #777;
	margin-bottom: 40px;
}
.contact-phone a {
	color: #777;
}
.contact-email {
	color: #777;
}
.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.product-page-left.active-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
}

.product-page-left.active-popup #main-slider {
	height: 100%;
	width: 100%;
}

.product-page-left.active-popup #main-slider img {
	height: 100%;
	width: auto;
	padding-bottom: 0;
}
.product-page-left.active-popup .xdstickers_wrapper {
	display: none !important
}
.product-page-left.active-popup #thumbnail-slider {
	display: none;
}

.product-page-left.active-popup #main-slider-track {
	height: 100%;
}

.product-page-left.active-popup .splide__slide {
	display: flex;
	justify-content: center;
}

.product-page-left .splide__arrow {
	height: 40px;
	width: 40px;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	display: flex;
}
.product-page-left .splide__arrow svg {
	height: 12px;
	width: 12px;
}

.product-page-left.active-popup .splide__arrow {
	display: flex;
	height: 60px;
	width: 60px;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 0;
}

#thumbnail-slider .splide__track--ttb>.splide__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-text {
	background-color: #fff;
	padding: 30px;
}

.blog-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-item {
	background-color: #fff;
}
.blog-item img {
	width: 100%;
}
.blog-item:hover {
	box-shadow: 5px 5px 25px 0 rgb(0 0 0 / 5%);
}
.blog-item-title {
	padding: 20px;
	font-family: var(--font-medium);
	font-size: 17px;
	color: #121212;
}
.product-price {
	font-size: 22px;
    color: #000;
	display: flex;
	gap: 20px;
	margin: 25px 0;
	font-family: var(--font-bold);
}
.select-fabric {
	text-decoration: underline;
	color: #2d7c40;
}
.product-price__cross-price {
	color: #444;
    text-decoration-line: line-through;
    text-decoration-style: solid;
    text-decoration-color: red;
    text-decoration: line-through solid red;
}

.model span {
	font-family: var(--font-medium);
	color: #000;
}
.option-radio .radio {
	margin: 0;
}

.option-radio .radio label{
    margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	
}
.option-radio .radio img {
	width: 110px;
	margin-top: 10px;
}
.option-radio .radio .option-description {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: max-content;
	min-width: 250px;
	max-width: 250px;
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 20px;
	z-index: 5;

}
.option-radio .radio:hover .option-description {
	display: block;
}
.option-radio-inner{
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 10px;
	margin-bottom: 25px;
	
}
.option-radio .radio label {
	padding: 0;
}
.option-radio:not(.option-constructor) .radio label span{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
    height: 45px;
    color: #222;
    border-bottom: 4px solid #B8B8B8;
    padding: 0 10px;
	font-size: 14px;
	min-width: 100%;
}


.option-radio:not(.option-constructor) .active-option label span:hover {
    border-color: #000;
    color: #000;
}

.option-radio:not(.option-constructor) .active-option label span{
    border-color: #000;
    color: #000;
}

.option-radio input {
    display: none;
}

.option-radio.option-constructor .radio label {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: center;
}
.option-radio.option-constructor .active-option.radio label {
	border-color: var(--main-color);
}
.option-radio.option-constructor .radio label:hover {
	border-color: #999;
}
.option-radio.option-constructor .radio label .option-image {
	margin: 0;
}
.option-radio.option-constructor .control-label {
	margin-bottom: 15px;
}
.option-create-image {
	 margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
	border: 1px solid #ddd;
	padding: 10px;
	text-align: center;
	justify-content: center;
	cursor: pointer;
}
.option-create-image.active-option {
	border-color: var(--main-color);
}
.option-create-image label {
	margin: 0;
}
.option-create-image-plus {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 30px;
	background-color: var(--main-color);
	color: #fff;
}
.option-create-image:hover {
	border-color: var(--main-color);
}
.option-radio .radio label {
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.option-product-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
	    width: 100%;
}
.option-product-card {
	display: grid;
	grid-template-columns: auto 1fr 90px 100px;
	gap: 20px;
	align-items: center;
	border: 1px solid #ddd;
    padding: 10px;
	width: 100%;
}

.option-product-card__qu-selector {
	display: flex;
	border: 1px solid #ddd;
	width: 90px;
}

.option-product-card__qu-selector * {
	display: flex;
	height: 30px;
	width: 30px;
	text-align: center;
	align-items: center;
	justify-content: center;
	border: none;
	box-shadow: none;
	cursor: pointer;
}
.option-product-card__price {
	font-family: var(--font-bold);
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.option-product-card__cod {
	font-size: 12px;
	color: #666;
	margin-top: 5px;
}
#product {
	margin-top: 50px;
}

.product-btns {
	display: flex;
	gap: 20px;

}

.product-btns #button-cart{
	width: max-content;
	height: 60px;
	padding: 0 70px;
	font-family: var(--font-medium);
}

.product-like {
	box-shadow: none;
	border: none;
	border-radius: 0;
	background-color: var(--main-color);
	height: 60px;
	width: 60px;
	min-width: 60px;
	background-image: url(/image/like.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 35%;
}
.like {
	box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: #000;
    height: 50px;
    width: 50px;
    background-image: url(/image/like.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 55%;
    filter: invert(1);
    opacity: 0.6;
}
.like:hover {
	opacity: 1;
}
.product-like:hover {
	background-color: var(--main-color-hover);
	box-shadow: none;
}
.product-attributes {
	margin: 40px 0;
}

.product-attributes-title {
	font-size: 23px;
	color: #000;
	margin-bottom: 30px;
	font-family: var(--font-bold);
}

.product-attributes__row {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 20px;
	border-bottom: 1px solid #ddd;
}
.product-attributes__col {
	padding: 10px 0;
}
.product-attributes__col a {
	text-decoration: underline;
	color: #2d7c40;
}
.product-attributes__col a:hover {
	text-decoration: none;
	color: #000;
}
.product-attributes__col_bold {
	color: #000;
	font-family: var(--font-bold);
}
.product-page-description {
	margin: 40px 0;
}
.product-page-description-title {
	font-size: 23px;
	color: #000;
	margin-bottom: 30px;
	font-family: var(--font-bold);
}
.menu-inner-box {
	width: 100%;
	padding: 45px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.menu-inner-title {
	font-family: var(--font-bold);
	font-size: 20px;
	margin-bottom: 30px;
	padding: 0 5px;
}

.menu-inner__categories a {
	font-size: 18px;
	padding: 5px;
	
}
.menu-inner__categories summary {
	font-size: 18px;
	padding: 0 5px 3px 5px;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}
.menu-inner__categories summary svg {
	height: 12px;
}

.menu-rooms {
	padding: 25px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

summary::-webkit-details-marker {
	display: none;
}

summary {
	text-align: left;
	cursor: pointer;
}
.menu-inner a {
	color: #121212;
}
.menu-inner__categories a:hover {
	background-color: var(--main-color);
	color: #fff;
}
.menu-inner__categories ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.menu-bottom a {
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 20px;
	
}
.menu-bottom a span{
	width: 40px;
	height: 40px;
	display: flex;
	background-color: var(--main-color);
    background-image: url(/image/instagram.svg);
    background-repeat: no-repeat;
    background-position: center;
	align-items: center;
	justify-content: center;
    background-size: 60%;
}
.menu-bottom a.telegram span {
	background-image: none;
	background-color: #2481CC;
}
.menu-bottom a.telegram {
	margin-bottom: 10px;
	
}
.menu-bottom a.telegram span svg {
	height: 20px;
}

.menu-bottom a:hover {
	color: var(--main-color);
}
.menu-bottom a:hover span{
	background-color: var(--main-color-hover);
}
.menu-bottom {
	padding: 0 5px 30px 5px;
}

.menu-bottom-telephone a {
	font-size: 22px;
	font-family: var(--font-bold);
}

.menu-bottom-schedule {
	margin: 15px 0;
}

.options-cart {
	margin-bottom: 15px;
}
.account-forgotten #content p {
	margin-bottom: 30px;
}
.account-forgotten #content form {
	max-width: 500px;
	width: 100%;
}
.alert {
    padding: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
    border: 1px solid #f1f1f1;
    z-index: 500;
    color: #121212;
    border-radius: 0;
}

.alert-dismissable .close, .alert-dismissible .close {
    top: 0;
    right: 0;
    position: absolute;
}

@media (max-width: 500px) {
    .alert {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 10px;
        padding: 35px;
    }
}

.description-category {
	margin-top: 40px;
	background-color: #fff;
	padding: 40px;
}

.emty-products {
	margin-bottom: 20px;
	font-size: 20px;
}

.header-account-dropdown {
	display: flex;
	flex-direction: column;
    width: 25%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8888;
    backdrop-filter: blur(4px);
    border-left: 1px solid #f1f1f1;
	padding: 45px 40px;
	transform: translateX(101%);
	opacity: 0;
	transition: all .3s ease-in-out;
	
}
.header-account-dropdown.visible-account {
	opacity: 1;
	transform: translateX(0);
}
.header-account-dropdown-top {
	border-bottom: 1px solid #eeeeed;
	padding: 0 0 15px 0;
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 20px;
}

.header-account-dropdown-top span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	width: 45px;
	font-size: 18px;
	border-radius: 50%;
	background-color: #eeeeed;
	font-family: var(--font-bold);
	color: var(--main-color);
	text-transform: uppercase;
}

#content .account-logout {
	border-top: 1px solid #eeeeed;
	margin-top: 20px;
	padding-top: 15px;
}

[class^="account-"].account-wishlist {
	background-color: #eeeeed;
}

.checkout-success {
	background-color: #fff;
}
.header-account-dropdown a {
	font-size: 18px;
    padding: 8px 5px;
	display: flex;
	gap: 15px;
	align-items: center;
}

.header-account-dropdown a svg {
	height: 20px;
}

[class^="account-"] {
   background-color: #fff;
}

[class^="account-"] .breadcrumb{
	margin: 20px 0;
 }

.login-page-inner {
	display: flex;
	justify-content: center;
	padding: 50px 0 100px 0;
}

.login-page-form {
	width: 100%;
	max-width: 500px;
	padding: 50px;
	background-color:  #fff;
}

.account-login {
	background-color: #EEEEED;
}

.login-page-form h1 {
	font-size: 2.5rem;
	margin: 0 0 30px 0;
}

.fogot-btn {
	display: flex;
	margin: 10px 0;
}

.success-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 100px 0;
	text-align: center;
}

.success-box .buttons {
	margin-top: 30px;
} 

.success-box h1 {
	font-size: 33px;
	margin-bottom: 30px;
}

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
}

.account-menu-item {
    background-color: #fff;
    border-radius: 0;
    display: flex;
    height: 50px;
    align-items: center;
    padding: 0 15px;
    border-left: 3px solid transparent;
	gap: 15px;
	border:  1px solid #ddd;
	color: #000;
}

.account-menu-item:hover {
	border-color: var(--main-color);
}

.account-menu-item svg {
	height: 20px;
}

.account-menu-item.active-link {
	background-color: var(--main-color-hover);
	color: #fff;
}

.account-menu-item.active-link svg{
	filter: invert(1);
}

#account-account #content h2 {
	font-size: 30px;
	margin: 0 0 20px 0;
}

#account-account #content .list-unstyled {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #EEEEED;

}

[class^="account-"] .catalog-title {
	margin-top: 0;
}

.hello-acc {
	font-size: 22px;
}

.account-simpleedit #content h1, .account-simpleaddress-insert #content h1, .account-simpleaddress-update #content h1{
	font-family: var(--font-bold);
    color: var(--main-color-hover);
    font-size: 30px;
    text-transform: uppercase;
    border-bottom: 5px solid var(--main-color-hover);
    margin-bottom: 40px;
    padding-bottom: 20px;
	margin-top: 0;
} 

.account-simpleedit .form-horizontal, .account-simpleaddress-insert .form-horizontal, .account-simpleaddress-update .form-horizontal{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 15px;
}

[class^="account-"] .simpleregister-button-block.buttons, [class^="account-"] .buttons  {
	display: flex;
	justify-content: flex-start;
	padding: 0;
	margin: 15px 0 30px 0;
}

.xdstickers  {
	text-transform: none !important;
	font-family: var(--font-regular);
	font-weight: normal !important;
	margin-bottom: 0 !important;
	text-align: center;
	padding: 5px 10px !important;
}
.xdstickers_wrapper {
    position: absolute;
    z-index: 3;
    line-height: 1 !important;
	display: flex;
	flex-direction: column;
	gap: 5px;
	top: 15px !important;
	z-index: 2 !important;
}
.product-page-left .xdstickers_wrapper {
	left: initial !important;
	right: 15px !important;
}
.btn-light {
	background-color: #d4e5d8;
    color: var(--main-color);
    height: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    max-width: max-content;
    border-radius: 0;
	min-width: 145px;
}

.btn-light2 {
	color: #ffffff;
    background-color: var(--main-color);
    border-color: var(--main-color);
    height: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    max-width: max-content;
    border-radius: 0;
	min-width: 145px;
}

.address-right {
	display: flex;
	gap: 15px;
	padding: 15px 0;
}
.address-line {
	margin-bottom: 15px;
}


.order-row-header {
	display: grid;
	grid-template-columns: 100px 1fr 1fr 170px;
}

.order-row {
	display: grid;
	grid-template-columns: 100px 1fr 1fr 170px;
	border-top: 1px solid #e9e9e9;
	color: #121212;
}

.order-row-a:hover .order-row {
	color: var(--color);
	background-color: #f6fafa;
}

.order-col {
	padding: 15px;
	text-align: center;
}

@media (max-width: 768px) {
	.order-col {
		font-size: 14px;
	}
	.order-row-header {
		grid-template-columns: 40px 1fr 1fr 110px;
	}
	.order-row {
		grid-template-columns: 40px 1fr 1fr 110px;
	}
}

#content {
	margin-bottom: 40px;
}

.common-home #content {
	margin-bottom: 0;
}

.inner-sort .ocf-mobile .button-filter {
	box-shadow: none;
	border: none;
	outline: none;
	margin: 0;
	color: #121212;
	background: transparent;
	font-size: 17px;
    background-image: url(/image/filter.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    padding: 0 0 0 30px;
}

.inner-sort .ocf-btn-mobile-static {
	margin: 0;
	padding: 0;
}



#column-left .close {
	display: none;
}
.category-inner aside#column-left .ocf-container {
	border-right: 1px solid #f1f1f1;
	background-color: #fff;
	overflow-y: auto;
	padding: 30px 30px 20px 30px;
	width: 50%;
	height: 100%;
}

.inner-sort-filter {
	cursor: pointer;
    background-image: url(/image/filter.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
	padding: 0 0 0 30px;
}

.filter-btn-close {
	display: none;
}

.category-inner aside#column-left {
	display: flex;
	flex-direction: column;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 50%;
	padding: 0;
	z-index: 5000;    
	transform: translateX(-101%);
    transition: all .3s ease-in-out;
	opacity: 0;
	
}
@media (min-width: 1050px) {
	.category-inner aside#column-left .close {
		right: 50%;
		display: flex;
	}
	
}

.information-information {
	background-color: #fff;
	
}
.information-information .info-white {
	padding-top: 20px;
}
.category-inner aside#column-left .filter-btn-close {
	display: flex;
}

.category-inner aside#column-left.visible-filter {
	transform: translateX(0);
    opacity: 1;
}

.live-search {
	width: 100%;
	position: absolute;
	z-index: 1000;
	padding: 0 20px 20px 20px;
	
	left: 0;
	top: 100%;
	display: none;

	overflow-y: auto;
	overflow-x: hidden;
}

.live-search .loading {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.live-search ul {
	display: flex;
	background-color: #FFF;
	flex-direction: column;
	gap: 15px;
	list-style-type: none;
	margin: 0px;
	padding: 20px;
}

.live-search ul li {
	cursor: pointer;
	background-color: #FFF;
}

.live-search ul li a {
	text-decoration: none;
	display: grid;
	gap: 30px;
	grid-template-columns: auto 1fr 150px;
	align-items: center;
	color: #121212;
	font-size: 16px;
}

.live-search ul li .product-name p {
	display: none;
}

.live-search ul li .product-add-cart {
	display: none;
}

.live-search ul li .product-price {
	font-size: 16px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	text-align: right;
	gap: 5px;
	border: none;
	padding: 0;
	font-family: var(--font-medium);
	margin: 0;
}

.live-search ul li .product-price .price {
	color: #333333;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: right;
}

.live-search ul li .product-price .special {
	color: #444;
	text-decoration-line: line-through;
	text-decoration-style: solid;
	text-decoration-color: red;
	text-decoration: line-through solid red;
}

.live-search .result-text {
	text-align: center;
	font-size: 16px;
	color: #121212;
	background-color: #fff;
	width: 100%;
	padding: 15px 0;
}
#search-close {
	background-color: #fff;
	height: 60px;
	width: 60px;
	position: relative;
	border-left: 1px solid #ddd;
}

#search-close:hover {
	-webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
}
.live-search .view-all-results {
	color: #121212;
}

.live-search .product-image {
	width: auto;
}

.live-search .product-image img {
	width: auto;
}

.information-information .product-home-module {
	background-color: #eeeeed;
}
.information-information .bestsellers .title {
    font-family: var(--font-bold);
    color: var(--main-color-hover);
    font-size: 27px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--main-color-hover);
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.pronas {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 40px;
}
.pronas img {
	width: 100%;
	
}

.product-card-sm-wrap {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.image_class{
	width: 100%!important;
	height: auto!important;
	margin-bottom: 10px;
}
.image_class img{
	width: 100%!important;
	opacity: 1 !important;
}
.product-card-sm {
	text-align: center;
}


.tkani-wrapper {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
}

.tkani-wrapper img {
	width: 100%;
}

.tkani-wrapper p {
	text-align: center;
	margin: 15px 0;
}

.tkani-wrapper-small.tkani-wrapper {
	grid-template-columns: repeat(10, 1fr);
}
.visa-master {
	display: flex;
	gap: 15px;
}
.visa-master img {
	height: 16px;
	width: auto;

}
#button-ukrcredits.btn-primary {
	background-color: #fff;
	border: 2px solid var(--main-color);
	color: #000;
	width: max-content;
    height: 60px;
    padding: 0 53px;
    font-family: var(--font-medium);
	margin-top: 0;
}

#button-ukrcredits.btn-primary:hover {
	background-color:  var(--main-color);
	color: #fff;
	width: 100%;
}

.tkani-menu {
	display: flex;
	gap: 5px 40px;
	flex-wrap: wrap;
	position: sticky;
	justify-content: space-between;
	top: 0;
	background-color: #EEEEED;
	border-bottom: 1px solid #ddd;
	margin: -20px 0 40px 0;
}

.tkani-menu a {
    display: flex;
    height: 40px;
    justify-content: flex-start;
    align-items: center;
    font-size: 13px;
    color: #121212;
    border-bottom: 1px solid transparent;
}

.tkani-menu a:hover {
	color: var(--main-color);
	border-color: var(--main-color);
}

.tkani-text {
	margin-bottom: 40px;
}

.tkani-text h2 {
	font-family: var(--font-bold);
    color: var(--main-color-hover);
    font-size: 25px;
    text-transform: uppercase;
	margin-bottom: 40px;
	padding-top: 55px;
}

.social-media-btns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	margin-top: 20px;
}

.social-media-btns a {
	display: flex;
	width: 100%;
	height: 50px;
	align-items: center;
	gap: 15px;
	padding: 5px;
	color: #000;
}

.social-media-btns a span{
	display: flex;
	height: 40px;
	width: 40px;
	align-items: center;
	justify-content: center;
}
.social-media-btns a span svg {
	height: 20px;
}
.social-media-btns a.telegram {
	background-color: #d7e6f3;
}
.social-media-btns a.telegram span{
	background-color: #2481CC;
}
.social-media-btns a.telegram:hover {
	background-color: #56a1dd;
	color: #fff;
}
.social-media-btns a.viber {
	background-color: #e0ddef;
}
.social-media-btns a.viber span{
	background-color: #62569D;
}
.social-media-btns a.viber:hover {
	background-color: #9689d6;
	color: #fff;
}
.social-media-btns a.instagram {
	background-color: #f6f0df;
}
.social-media-btns a.instagram span{
	background-color: #FE017B;
}
.social-media-btns a.instagram:hover {
	background-color: #ff6eb4;
	color: #fff;
}

.video-home {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px 0;
}
.video-home-title {
	margin-bottom: 20px;
	font-family: var(--font-bold);
    color: #000;
    font-size: 27px;
    text-transform: uppercase;
}
.video-home iframe {
	width: 100%;
	max-width: 800px !important;
	height: 400px;
	box-shadow: 5px 5px 25px 0 rgb(0 0 0 / 15%);
	border: 1px solid var(--main-color);
}

.video-home p {
	text-align: center;
	margin-bottom: 40px;
	font-size: 16px;
}
@media (max-width: 1350px) {
	.category-block-caption {
		padding: 25px;
	}
	.category-block-caption-title {
		font-size: 19px;
	}
	.product-card {
		padding: 30px;
	}
	.product-card__title a {
		font-size: 17px;
	}
}
@media (max-width: 1200px) {
	.product-cards-wrapper {
		gap: 30px 20px;
	}
	.product-card {
		padding: 20px;
	}
	.product-card__stock {
		font-size: 15px;
	}
	.product-card__bottom {
		gap: 0;
	}
	.menu-inner {
		width: 45%;
	}
	.header-account-dropdown {
		width: 45%;
	}
	.categories-list {
		grid-template-columns: repeat(2, 1fr);
	}
} 
@media (max-width: 1050px) {
	.common-home .banner img {
		height: auto;
	}
	.blog-wrapper {
		grid-template-columns: 1fr 1fr;
	}
	#thumbnail-slider {
        order: 2;
    }
	.product-page {
		gap: 20px;
	}
	.product-page-left {
		display: flex;
		flex-direction: column;
		position: static;
	}
	.product-page-left img {
		padding-bottom: 0;
	}
	.product-card__stock {
		font-size: 14px;
		padding: 0 10px;
	}
	.product-card__bottom {
		grid-template-columns: 1fr 100px;
	}
	.common-home .banner {
		height: auto;
	}
	.cat-wall-container {
		margin-top: -30px;
	}
	.category-list {
		gap: 30px;
	}
	.category-block {
		width: calc(50% - 15px) !important;
	}
	.category-block a {
		height: 390px;
	}
	.category-block-caption {
		padding: 20px;
	}
	.inner-sort-filter {
		display: none;
	}
	.product-page-right h1{
		font-size: 25px;
	}
	.option-radio .radio label {
		font-size: 14px;
	}
	#product {
		margin-top: 30px;
	}
	.product-attributes-title {
		font-size: 20px;
	}
	.product-page-description-title {
		font-size: 20px;
	}
	.product-attributes__row {
		font-size: 14px;
	}
	#thumbnail-slider .splide__track--nav>.splide__list>.splide__slide {
		border: none;
		width: 20% !important;
		height: 70px !important;
		opacity: 0.6;
		object-fit: cover;
	}
	.category-inner aside#column-left .ocf-container {
		padding: 0;
	}
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.contact-map {
		order: 2;
	}

}
@media (max-width: 970px) {
	.product-cards-wrapper {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.description-category {
		padding: 20px;
	}
	.product-home-module-btn {
		justify-content: center;
	}
	.menu-inner {
		width: 55%;
	}
	.header-account-dropdown {
		width: 55%;
	}
	.catalog-title {
		font-size: 20px;
		text-transform: uppercase;
		border-bottom: 3px solid var(--main-color-hover);
		margin-bottom: 30px;
		padding-bottom: 10px;
	}
	#input-sort a {
		font-size: 15px;
	}
	.inner-sort .ocf-mobile .button-filter {
		font-size: 15px;
	}
	.inner-sort {
		margin-bottom: 30px;
	}
	.product-page {
		grid-template-columns: 1fr;
		padding-top: 0;
	}
	.account-simpleedit #content h1, .account-simpleaddress-insert #content h1, .account-simpleaddress-update #content h1 {
		font-size: 20px;
        text-transform: uppercase;
        border-bottom: 3px solid var(--main-color-hover);
        margin-bottom: 30px;
        padding-bottom: 10px;
	}
	.category-inner aside#column-left .ocf-container {
			width: 70%;
	}
	
	.tkani-wrapper {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
	}

	.tkani-wrapper-small.tkani-wrapper {
		grid-template-columns: repeat(6, 1fr);
	}
}
@media (max-width: 768px) {
	#main-menu {
		width: 30px;
		height: 22px;
	}

	.option-product-card {
		grid-template-columns: auto 1fr;
		gap: 0 15px;
	}
	.option-product-card__qu {
		grid-column: 2/3;
	}
	.option-product-card__price {
		grid-column: 2/3;
		justify-content: flex-start;
		margin-top: 10px;
	}
	.option-radio-inner {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	.video-home-title {
		font-size: 20px;
	}
	.video-home p {
		font-size: 14px;
	}

	.video-home iframe {
		height: 300px;
	}
	.menu-inner {
		width: 100%;
	}
	.header-account-dropdown {
		width: 100%;
	}
	.header__logo img {
		width: 135px;
	}
	.header__cart {
		order: 2;
	}
	#cart>button {
		height: 35px;
		width: 35px;
	}
	.header__search {
		position: absolute;
		left: 80px;
	}
	.search-btn {
		height: 35px;
		width: 35px;
	}
	.header__account {
		height: 35px;
		width: 35px;
	}
	.header-right {
		gap: 15px;
	}
	.header {
		padding: 0;
	}

	.common-home #content .title {
		font-size: 17px;
		margin-bottom: 20px;
		padding-bottom: 10px;
	}
	#product-product .related-product .title {
		font-size: 17px;
		margin-bottom: 20px;
		padding-bottom: 10px;
	}
	.category-block a {
        height: 220px;
    }
	.category-block-caption {
        padding: 10px;
    }
	.category-block-caption-title {
        font-size: 14px;
    }
	.category-list {
        gap: 10px;
    }
	.category-block {
        width: calc(50% - 5px) !important;
    }
	.product-card__bottom {
        grid-template-columns: 1fr 55px;
    }
	.product-card__stock {
		height: 40px;
		line-height: 1;
		font-size: 13px;
	}
	.product-card__title a {
        font-size: 15px;
    }
	.product-card {
		padding: 10px;
	}
	.product-card__price {
		font-size: 16px;
		margin: 10px 0;
	}
	.product-card__cod {
		margin: 5px 0;
	}
	.product-card__button button {
		height: 40px;
		width: 40px;
	}
	#search .input-lg {
		height: 45px;
	}
	#search .btn-lg {
		width: 45px;
		height: 45px;
		padding: 10px;
	}
	
	.inner-sort {
		gap: 20px;
	}
	#input-sort-mobile-btn {
		display: flex;
	}
	#input-sort {
		display: none;
	}
	#input-sort.visible-sort{
		display: flex;
		flex-direction: column;
		gap: 10px;
		position: absolute;
		top: 100%;
		margin-top: 15px;
		right: 0;
		background-color: #fff;
		padding: 20px;
		z-index: 50;
		background-color: var(--main-color);
	}
	.pronas {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	#input-sort.visible-sort a {
		color: #fff;
	}

	.information-information .bestsellers .title {
        font-size: 17px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

	.inner-sort {
		margin-bottom: 20px;
	}
	.catalog-title {
		margin-bottom: 20px;
	}
	
	h1 {
		font-size: 2.8rem;
	}

	h2 {
		font-size: 2.3rem;
	}

	h3 {
		font-size: 1.8rem;
	}

	h4 {
		font-size: 1rem;
	}

	h5 {
		font-size: 1rem;
	}

	h6 {
		font-size: .9rem;
	}
	.live-search {
		padding: 10px 0;
	}
	.live-search ul li a {
		gap: 10px;
		grid-template-columns: auto 1fr 115px;
	}
	.live-search ul li .product-price {
		font-size: 14px;
	}

	.live-search ul li a {
		font-size: 14px;
	}
	.live-search .view-all-results {
		font-size: 14px;
	}
	.live-search .product-image img {
		height: 40px;
	}
	.live-search ul li a {
        grid-template-columns: auto 1fr 95px;
    }
	.footer>.container-cols {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.container {
		width: 100%;
	}
	.login-page-inner {
		padding: 15px;
	}
	.success-box {
		padding: 30px 15px 0 15px;
	}
	.success-box h1 {
		font-size: 27px;
		margin-bottom: 20px;
	}
	[class^="account-"] #column-left.hidden-xs {
        display: block !important;
        padding: 0 15px;
    }
	#search.visible-search {
		top: 25px;
	}
	#search-close {
		height: 45px;
		width: 45px;
	}
	#account-menu {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5px;
		margin-bottom: 25px;
	}
	.account-menu-item {
		font-size: 13px;
		padding: 5px 10px;
		text-align: center;
		justify-content: center;
	}
	.account-menu-item svg {
		display: none;
	}
	.account-simpleedit .form-horizontal, .account-simpleaddress-insert .form-horizontal, .account-simpleaddress-update .form-horizontal {
		grid-template-columns: 1fr;
	}
    .categories-list {
        grid-template-columns:  1fr;
    }
	.product-category-66 .categories-list, .product-category-66_112 .categories-list, .product-category-66_75 .categories-list, .product-category-66_65 .categories-list, .product-category-66_68 .categories-list, .product-category-66_67 .categories-list, .product-category-66_72 .categories-list, .product-category-66_76 .categories-list, .product-category-66_71 .categories-list, .product-category-66_70 .categories-list, .product-category-66_73 .categories-list {
		grid-template-columns: repeat(3, 1fr);
	}


	.tkani-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.tkani-wrapper-small.tkani-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
	.tkani-menu {
		gap: 5px 15px;
		position: static;
		font-size: 12px;
	}
	.tkani-menu a {
		font-size: 11px;
		height: 34px;
	}
	.tkani-text h2 {
		font-size: 22px;
		padding-top: 0;
	}
	.product-btns {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#button-ukrcredits.btn-primary {
		order: 10;
		width: 100%;
	}
}
@media (max-width: 665px) {
	.social-media-btns {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}
@media (max-width: 500px) {
	.container {
		padding: 0 15px;
	}
	.footer-col-information ul {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.option-radio-inner {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.footer-title {
		margin-bottom: 15px;
	}
	#main-menu {
		width: 25px;
		height: 18px;
	}
	#cart>button {
		height: 28px;
		width: 28px;
		background-size: 75%;
		background-position: center 3px;
	}
	.header__search {
		position: absolute;
		left: 60px;
		background-size: 80%;
	}
	.search-btn {
		height: 28px;
		background-position: center 3px;
		width: 28px;
	}
	.header__account {
		height: 28px;
		width: 28px;
		background-size: 82%;
	}
	.header__logo img {
        width: 115px;
    }
	#cart-total {
		height: 16px;
		width: 16px;
		top: -4px;
		right: -6px;
		
	}
	.header>.container {
		height: 60px;
	}
	.common-home .banner {
		top: -65px;
	}
	.common-home #cart>button {
		background-size: 87%;
	}

	.category-block {
        width: 100% !important;
    }
	.category-list {
		padding-bottom: 35px;
	}

    .product-cards-wrapper {
        grid-template-columns: 1fr;
		gap: 15px;
    }
	.product-card__bottom {
        grid-template-columns: 1fr 135px;
    }
	.product-card {
		padding: 15px;
	}
	.menu-inner-box {
		padding: 35px 30px;
	}
	.header-account-dropdown {
		padding: 35px 30px;
	}
	.menu-inner-title {
		font-size: 18px;
	}
	.menu-bottom a {
		font-size: 16px;
		gap: 15px;
	}
	.menu-bottom a span {
		width: 30px;
		height: 30px;
	}
	.product-card__button {
		justify-content: flex-end;
	}
	.description-category {
		padding: 15px;
		margin-top: 20px;
	}
	.product-btns #button-cart {
		padding: 0;
		width: calc(100% - 70px);
		height: 50px;
	}
	.product-like {
		height: 50px;
		width: 50px;
		min-width: 50px;
		flex: 1 1 50px;
	}
	.product-page-right h1 {
        font-size: 23px;
    }
	.product-price {
		font-size: 19px;
	}
	.product-attributes__row {
		grid-template-columns: 200px 1fr;
	}
	.btn-group-lg>.btn, .btn-lg {
		font-size: 16px;
		line-height: 1;
	}
	.product-attributes-title {
        font-size: 18px;
		margin-bottom: 20px;
    }
	.product-page-description-title {
        font-size: 18px;
		margin-bottom: 20px;
    }
	.cart-body {
		padding: 55px 15px 0 15px;
	}
	.cart-body .title {
		font-size: 19px;
		padding: 15px;
	}
	.cart-products {
		grid-template-columns: 65px 1fr auto;
		gap: 20px;
		padding: 15px 0;
	}
	.options-cart {
		margin-bottom: 10px;
		font-size: 13px;
	}
	.cart-products__name a {
		margin-bottom: 10px;
	}
	.cart-products__total {
		font-size: 15px;
	}
	.cart-remove {
		font-size: 14px;
	}
	.login-page-form {
		padding: 20px;
	}
	.login-page-form h1 {
		font-size: 20px;
		text-align: center;
		margin-bottom: 20px;
	}
	.button {
		height: 50px;
	}
	.hello-acc {
		font-size: 18px;
	}
	.order-col {
        font-size: 13px;
		padding: 5px;
    }
	.header-account-dropdown a {
		font-size: 16px;
	}
	.category-inner aside#column-left .ocf-container {
		width: 100%;
	}
	#input-sort.visible-sort {
		width: 100%;
	}
	.blog-wrapper {
		gap: 10px;
	}
	.blog-item-title {
		padding: 10px;
		font-size: 13px;
	}
	.blog-text {
		padding: 15px;
	}
	.contact-title {
		font-size: 18px;
		letter-spacing: initial;
	}
	.contact-address {
		margin-bottom: 20px;
	}
	.product-category-66 .categories-list, .product-category-66_112 .categories-list, .product-category-66_75 .categories-list, .product-category-66_65 .categories-list, .product-category-66_68 .categories-list, .product-category-66_67 .categories-list, .product-category-66_72 .categories-list, .product-category-66_76 .categories-list, .product-category-66_71 .categories-list, .product-category-66_70 .categories-list, .product-category-66_73 .categories-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.tkani-wrapper {
		gap: 10px;
	}
	.video-home iframe {
		height: 250px;
	}
}

