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


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

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


:root {
	--main-color: #1e2427;
	--main-color-hover: #2b3236;
	--main-color-light: #f7f6fc;

	--font-regular: "Inter-Regular", sans-serif;
	--font-bold: "Inter-Bold", sans-serif;
	--font-medium: "Inter-Medium", sans-serif;

}

*:active, *:focus {
	outline: none !important;
}

body {
	font-family: var(--font-regular);
	font-weight: 400;
	color: #000;
	font-size: 15px;
	line-height: 20px;
	width: 100%;
	background-color: #fff;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--main-color-dark);
	text-transform: uppercase;
	font-family: var(--font-regular);
	line-height: 1.5;
}


h1 {
	font-size: 4rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 2rem;
}

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: 13px;
	padding: 7px 0px
}

label {
	font-size: 13px;
	font-weight: normal;
}



.container {
	width: 100%;
	padding: 0 40px;
	margin: 0;
}

.container::after, .container::before {
	display: none;
}


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: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1 !important;
	font-size: 0;
	z-index: 100;
}

.close:hover {
	opacity: .7 !important;
}

.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;
}


.breadcrumb {
	border: none;
	background: transparent;
	display: flex;
	white-space: nowrap;
	padding: 0;
	margin: 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: 40px;
	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: var(--main-color);
	border-color: var(--main-color);
	background: transparent;
	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;
}


#cart-total {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 15px;
	width: 15px;
	background-color: #000;
	color: #fff;
	position: absolute;
	bottom: 4px;
	right: 4px;
	border-radius: 50%;
	font-size: 10px;
	font-family: var(--font-medium);
}


::-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);
	text-transform: uppercase;
	height: 60px;
	font-size: 13px;
	padding: 10px 40px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	max-width: max-content;
	border-radius: 0;
}

.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;
}

input.form-control {
	border: none;
	padding: 0 15px;
	height: 40px;
	box-shadow: none;
	border-radius: 0;
	background-color: #F9FAFB;
}

textarea.form-control {
	border: none;
	padding: 0 15px;
	height: 70px;
	box-shadow: none;
	border-radius: 0;
	background-color: #F9FAFB;
	resize: none;
}

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

textarea.form-control:active,
textarea.form-control:focus {
	box-shadow: none;
	border-color: #F9FAFB;
	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: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99000;
	padding: 10px;
}

.cart-body {
	background-color: #fff;
	padding: 30px;
	position: relative;
	border-radius: 10px;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
	max-width: 700px;
	width: 100%;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	overflow-x: hidden;
}


.cart-body .title {
	text-align: center;
	font-family: var(--font-bold);
	font-size: 23px;
	margin-bottom: 25px;
}

.cart-products {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 25px;
	align-items: center;
}

.cart-products__image img {
	width: 100%;
	border-radius: 5px;
}

.cart-products__quant svg {
	height: 25px;
}

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

}

.cart-quantity__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	border-radius: 5px;
	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: #000;
	border-color: #999;
}

.cart-quantity__input {
	border: 1px solid transparent;
	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;
}

.cart-remove svg {
	fill: #000;
	margin-left: 7px;
}

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

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

.cart-totals {
	justify-content: space-between;
	font-family: var(--font-bold);
	display: flex;
	padding: 10px 0;
	color: #121212;
	font-size: 22px;
}

.cart-totals__title {
	font-size: 15px;
	margin-bottom: 5px;
}

.cart-close-btn {
	padding: 10px 10px 0 10px;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
}

.cart-close-btn:hover {
	color: var(--main-color);
}
.btn-primary {
	display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    box-shadow: none;
    background-color: transparent;
    font-family: var(--font-bold);
    font-size: 12px;
    text-transform: uppercase;
	border-radius: 0;
	color: #000;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
	text-transform: uppercase !important;
	outline-color: none !important;
	box-shadow: none !important;
	color: #fff !important;
	background-color: #000 !important;
}
.cart-buttons .btn-primary:hover {
	box-shadow: inset 20em 0 0 0 var(--main-color-light);
}


.overflow-none {
	overflow: hidden;
}

.visible-popup {
	display: flex;
}



#search {
	transform: translateY(-101%);
	transition: all .4s ease-in-out;
	position: fixed;
	z-index: 600;
	top: 0;
	left: 0;
	background: rgb(0 0 0 / 70%);
	padding: 45px;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
}

#search.visible-search {
	transform: translateY(0);
}


#search .input-lg {
	height: 60px;
	background-color: #fff;
	color: #121212;
	box-shadow: none;
	padding: 0;
	border: none;
	border-bottom: 1px solid #000;
	height: 60px;
	width: calc(100% - 120px);
}

#search .btn-lg {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: #fff;
	border: none;
	border-bottom: 1px solid #000;
	box-shadow: none;
	border-radius: 0;
}

#search .btn-lg svg {
	height: 20px;
}

#search .close::before {
	width: 20px;
}
#search .close::after {
	width: 20px;
}
#search .close {
	display: flex;
	position: relative;
	width: 60px;
	height: 60px;
	border: none;
	border-bottom: 1px solid #000;
	right: inherit;
	top: inherit;
}


#search .container {
	position: relative;
	height: 100%;
	background-color: #fff;
	padding: 40px;
	overflow: auto;
}


.search__group {
	display: flex;
	position: relative;
	background: #fff;
	flex-wrap: wrap
}

 
#search  .dropdown-menu {
	position: static;
	order: 10;
}
#search .dropdown-menu.pull-right {
	right: 0;
	left: auto;
}
#search .dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

#search .dropdown-menu  li.more a {
	padding: 0;
}
#search .dropdown-menu > li > a:hover,
#search .dropdown-menu > li > a:focus {
	color: #262626;
	text-decoration: none;
	background-color: #f5f5f5;
	background-image: none;
}
#search .dropdown-menu > .active > a,
#search .dropdown-menu > .active > a:hover,
#search .dropdown-menu > .active > a:focus {
	color: #fff;
	text-decoration: none;
	background-image: none;
	outline: 0;
}
#search .dropdown-menu > .disabled > a,
#search .dropdown-menu > .disabled > a:hover,
#search .dropdown-menu > .disabled > a:focus {
	color: #777;
}
#search .dropdown-menu > .disabled > a:hover,
#search .dropdown-menu > .disabled > a:focus {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

#search .dropdown-menu { 
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr 5fr;
	box-shadow: none;
	border: none;
	padding-top: 60px;

}

#search .dropdown-menu li {
	list-style-image:  none !important;
}
#search .dropdown-menu li.active a{
	text-decoration: underline;
    color: #000;
}

#search .dropdown-menu li.disabled .title {
	display: none;
}
.search-col:first-child {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.search-col:first-child li a {
	font-family: var(--font-medium);
    font-size: 12px;
    text-transform: uppercase;
    color: #828282;
}
.search-suggestion.category_filter .name {
	font-weight: normal !important;
}
.search-col:last-child {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.search-suggestion {
	overflow: hidden;
	width: 100%;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.search-suggestion img {
	width: 100%;
}
.search-suggestion .left{
	width: 100%;
	min-width: 100%;
}
.search-suggestion .center {
	flex-grow: 1;
	min-width: 0;
	max-width: 60%;
}
li:not(.inline, .more) .search-suggestion .center > div {
	margin-bottom: 3px;
}
.search-suggestion .left, .search-suggestion .right  {
	text-align: right;
}
.search-suggestion .name  {
	text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-medium);
}
.search-suggestion .price  {
	display: flex;
	gap: 10px;
	text-align: right;
    font-size: 12px;
    min-width: 80px;
    justify-content: flex-end;
    font-family: var(--font-bold);
    color: #303030;

}
.search-suggestion .label {
	font-weight: normal;
	color: darkgray;
	padding-left: 0;
	padding-right: 5px;
}

.search-suggestion  .price-old {
	text-decoration: line-through;
}

.search-suggestion  .price-new {
	color: #BF4949;
}
.search-suggestion  .price-base {
	color: black;
}
.search-suggestion .more {
	position: absolute;
	top: 85px;
	background: transparent !important;
	padding: 0;
	margin: 0;
	color: #000;
	right: 0;
}

.header {
	padding: 20px 30px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
	position: relative;
	z-index: 50;
}

@media (min-width: 1800px) {
	.header {
		padding: 30px 40px;
	}
}

.header-left {
	display: flex;
	align-items: center;
	gap: 50px;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
}

.header__menu a{
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--font-medium);
}

.search-btn {
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--font-medium);
	cursor: pointer;
}

.header__account {
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--font-medium);
	cursor: pointer;
}
.menu-item {
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--font-medium);
	cursor: pointer;
}
#cart>button {
    height: 40px;
    width: 40px;
    background-color: transparent;
    background-image: url(/image/cart.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    display: flex;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border: none;
	position: relative;
}

.header__wishlist a {
	height: 40px;
    width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.main-menu {
	display: flex;
	gap: 35px;
	margin-bottom: 35px;
    white-space: nowrap;
    overflow-x: auto;
	overflow-y: hidden;
}

.main-menu {
	position: relative;
  }
  
  .main-menu-item {
	position: relative;
	display: inline-block;
  }
  
  .main-menu-item .dropdown {
	background-color: #fff;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 20px;
    padding-top: 25px;
  }
  
  .main-menu-item .dropdown-item {
	color: #333;
	color: #828282;
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--font-medium);
	line-height: 1;
  }
  
  .main-menu-item .dropdown-item:hover {
	color: #000;
  }
  
  .main-menu-item .active {
	font-weight: bold;
  }
  

.main-menu-item span{
	border-bottom: 1px solid transparent;
	color: #828282;
	text-transform: uppercase;
    font-size: 12px;
	padding: 4px 0;
    font-family: var(--font-medium);
	line-height: 1;

}
.main-menu-item {
	white-space: nowrap;
}

.main-menu-item h1 {
	color: #000;
	padding: 4px 0;
	text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-medium);
	margin: 0;
	line-height: 1;
	position: relative;
	top: 1px;
}	
.main-menu-item summary {
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
	text-align: left;
}
.category-page {
	padding: 80px 60px 0 60px;
}

.product-bestseller.category-page {
	padding-bottom: 80px;
}
summary::-webkit-details-marker {
	display: none;
}

summary {
	text-align: left;
	cursor: pointer;
}
@media (min-width: 1800px) {
	.category-page {
		padding: 180px 120px 0 120px;
	}
	.product-bestseller.category-page {
	padding-bottom: 120px;
}
}
.like {
	position: absolute;
	top: 7px;
    right: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: transparent;
    height: 35px;
    width: 35px;
    border: none;
    box-shadow: none;
    transition: all .3s ease-in-out;
}
.product-item {
	position: relative;
	overflow: hidden;
}

.product-item .close::before {
	background-color: #fff;
}

.product-item .close::after {
	background-color: #fff;
}
.product-item-image {
	position: relative;
}
.product-item-image img {
	width: 100%;
	height: auto;
}

.product-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 80px 50px;
	
}

.product-item-caption {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 15px;
	padding-top: 5px;
	overflow: hidden;
}

.product-item-caption a{
	display: flex;
	gap: 10px;
	text-transform: uppercase;
    font-size: 11px;
	width: max-content;
	max-width: calc(80% - 15px);
    font-family: var(--font-medium);
}

.product-item-caption a>span {
	white-space: nowrap;   
    overflow: hidden;         
    text-overflow: ellipsis;                
}

.option-images {
	color: #828282;
	font-size: 10px;
	display: flex;
	align-items: center;
	gap: 3px;
	height: max-content;
}

.product-item {
	width: calc(25% - 38px);
}

.product-item-price {
	text-align: right;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	font-family: var(--font-bold);
	color: #303030;
	width: max-content;
    max-width: 20%;
}


.product-item.one_vertical_first {
	width: 50%;
	margin-left: 25%;
}
.one_vertical_first .product-item-caption {
	padding-top: 20px;
	
}
.product-item.one_horisontal {
	width: calc(100% + 120px);
	margin-left: -60px;
	margin-right: -60px;
}

.one_horisontal .product-item-caption {
	padding: 25px 40px 0 40px;
	
}

.product-item.one_vertical_second {
	width: 40%;
	margin-left: 30%;
	margin-right: 20%;
}

.one_vertical_second .product-item-caption {
	padding-top: 20px;
}

.product-item.two_big_l {
	width: 40%;
	margin-left: calc(10% - 25px);
}
.two_big_l .product-item-caption {
	padding-top: 20px;
}

.product-item.two_big_r {
	width: 40%;
}
.two_big_r .product-item-caption {
	padding-top: 20px;
}
.one_square  {
	width: 60%;
	margin-left: 20%;
}
.one_square .product-item-caption {
	padding-top: 20px;
}

.alert {
	padding: 45px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	margin: 0;
	border: 1px solid #ddd;
	z-index: 500;
	color: #121212;
	border-radius: 0;
	background: #fff;
}

.alert i {
	display: none;
}

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


.product-page {
	display: grid;
	grid-template-columns: 50% 50%;
}

.product-page-left img {
	width: 100%;
	height: auto;
	
	cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.5'%3E%3Ccircle cx='13' cy='13' r='9'/%3E%3Cpath d='M20 20l7 7'/%3E%3C/g%3E%3C/svg%3E") 13 13, auto;
}


.product-page-left.active-popup img {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.product-page-left {
	height: max-content;
	background-color: #fff;
	position: relative;
}
.product-page .product-item-caption a {
	width: 100%;
    max-width: 100%;
}
#thumbnail-slider .splide__list>.splide__slide {
	border: none;
}

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

#thumbnail-slider {
	position: absolute;
	left: 0;
	height: 100%;
	top: 100px;
}

#product-product {
	margin-top: -80px;
	position: relative;
}

@media (min-width: 1800px) {
	#product-product {
		margin-top: -100px;
	}
}

#thumbnail-slider .splide__list {
    display: flex;
    flex-direction: column;
}

.product-page-right {
	padding: 250px 0 0 100px;
}

.product-page-right h1{
	font-family: var(--font-bold);
	font-size: 20px;
	margin-bottom: 10px;
}

.product-price {
	display: flex;
	gap: 12px;
	font-size: 14px;
	color: #000;
	margin-bottom: 30px;
}

.product-price__cross-price {
	text-decoration: line-through;
}

.product-price__price-red {
	color: #BF4949;
}

.product-page-right-text {
	width: 60%;
}

#product .img-thumbnail {
	padding: 0;
	border-radius: 0;
	margin: 0;
	border: none;
}

.color-options {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding-top: 35px;
	margin-bottom: 40px;
}

.selected-color {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	gap: 25px;
	align-items: center;

}

.selected-color span {
	text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-bold);
}

.selected-color div {
	color: #303030;
	font-size: 12px;
}

.color-item {
	margin: 0;
	display: flex;
	padding: 0;
}

.color-item p {
	margin: 0;
	display: flex;
}

.color-item a {
	display: flex;
}

.selected-color-link {
	border: 1px solid #000; 
}


.size-option__wrapper .radio {
	margin: 0;
}

.size-option__wrapper input {
	display: none;
}

.size-option__wrapper label:hover {
	border-color: #000;
}

.size-option__wrapper label {
	padding: 0;
	color: #D0D0D0;
	font-size: 12px;
	text-transform: uppercase;
	margin: 0;
	font-family: var(--font-medium);
}

.size-option__wrapper .active-option label {
	color: #000;
}

.size-option__wrapper .active-option label:hover {
	color: #000;
}

.size-option__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.radio-option {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 20px;
}

.radio-option-size {
	grid-template-columns: 70px 1fr auto;
}

.radio-option label.control-label {
	margin: 0;
	font-size: 12px;
	text-transform: uppercase;
	color: #000;
	font-family: var(--font-bold);

}
.plus-minus {
	display: flex;
	font-family: var(--font-medium);
}
.taliya-input {
	display: flex;
	width: 30px;
}

.taliya-input input {
	width: max-content;
	text-align: center;
	width: 30px;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
	outline: none;
	background-color: transparent;
}

#plus-quant {
	margin-left: 3px;
}

#plus-quant:hover, #minus-quant:hover {
	opacity: 0.7;
	cursor: pointer;
}

.product-btns {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	margin-top: 40px;
}

.product-like {
	display: flex;
	width: 35px;
	height: 35px;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	box-shadow: none;
	background-color: transparent;
}
.product-like:hover {
	background-color: #000;
	color: #fff;
}
.product-like:hover svg path {
	stroke: #fff;
}
#button-cart {
	display: flex;
	width: 100%;
	height: 35px;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	box-shadow: none;
	background-color: transparent;
	font-family: var(--font-bold);
	font-size: 12px;
	text-transform: uppercase;
}
#button-cart:hover {
	background-color: #000;
	color: #fff;
}
#product .text-danger {
	width: max-content;
}

.product-page-description {
	margin: 35px 0 0 0;
}


#product-popup {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 70%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99000;
	padding: 10px;
}

.product-popup-inner {
	background-color: #fff;
	padding: 90px;
	position: relative;
	border: 1px solid #999;
	max-width: 900px;
	width: 100%;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	overflow-x: hidden;
}

#product-popup.visible-popup {
    display: flex;
}

#doglyad-btn {
	text-decoration: underline;
	cursor: pointer;
}
#doglyad-btn:hover {
	opacity: 0.7;
}
.title {
	font-size: 20px;
	font-family: var(--font-bold);
	margin-bottom: 35px;
	text-transform: uppercase;
}
.product-related, .product-vieved{
	margin: 50px 0;
}
.small-title {
	font-size: 16px;
	text-transform: uppercase;
}

.product-related .product-wrapper, .product-vieved .product-wrapper {
	display: block;
}

.product-related .product-item-caption, .product-vieved .product-item-caption {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
}
.product-related .product-item-price, .product-vieved .product-item-price {
	min-width: 100%;
	width: 100%;
	text-align: left;
	justify-content: flex-start;
}
.splide__arrow svg {
	fill: transparent !important;
}
.product-carousele-top .splide__arrows {
	display: flex;
	gap: 20px;
}
.product-carousele-top .splide__arrow:hover {
	opacity: 0.7;
}
.count-of-products {
	color: #828282;
	font-size: 12px;
	text-transform: uppercase;
	white-space: nowrap;
}
.product-carousele-top {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding-right: 80px;
	margin-bottom: 30px;
}

.product-bestseller .product-carousele-top {
	width: 100%;
	padding-right: 0;
}

.product-bestseller .product-wrapper {
	gap: 0;
}
.product-carousele-top .splide__arrow {
    position: static;
    background-color: transparent;
    box-shadow: none;
    opacity: 1;
    height: 12px;
    transform: none;
	margin-top: 4px;
}
.product-carousele-top .splide__arrow svg {
	height: 12px;
}
#size-popup {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 70%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99000;
	padding: 10px;
}
.size-popup-inner {
	background-color: #fff;
	position: relative;
	max-width: 1200px;
	width: 100%;
	max-height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}
.size-popup-inner img {
	width: 100%;
}
#size-popup.visible-popup {
    display: flex;
}

#size-table {
	text-decoration: underline;
	cursor: pointer;
	font-size: 12px;
	text-transform: uppercase;
}
#size-table:hover {
	opacity: 0.7;
}

#main-slider .splide__arrow  {
	background-color: transparent;
	box-shadow: none;
}

.splide__arrow:disabled {
	display: none !important;
}

.product-item-price .price-old {
	order: -1;
	text-decoration: line-through;
}

.product-item-price .price-new {
    color: #BF4949;
}
.information-page {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 100px;
	width: 60%;
	color: #303030;
	padding: 80px 0 80px 50px;
	
}

#information-information #content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.information-page .main-title {
	font-family: var(--font-bold);
	font-size: 16px;
	text-transform: uppercase;
	margin: 0 0 40px 0;
	color: #000;
}

.information-page h2, .information-page h3, .information-page h4, .information-page h5 {
	font-family: var(--font-bold);
	font-size: 16px;
	text-transform: uppercase;
}

.next-article {
	margin-top: 80px;
	opacity: 0.1;
	pointer-events: none;
}
.information-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.information-menu div a {
	font-family: var(--font-medium);
	font-size: 12px;
	text-transform: uppercase;
	color: #828282;
}

.information-menu div.active-info a {
	text-decoration: underline;
	color: #000;
}

.information-menu div a:hover {
	color: #121212;
}

.account-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.account-menu a {
	font-family: var(--font-medium);
	font-size: 12px;
	text-transform: uppercase;
	color: #828282;
}
.account-menu a.active-info {
	text-decoration: underline;
	color: #000;
}

.account-menu a:hover {
	color: #121212;
}
.information-information-11 .information-menu, .information-information-11 .next-article{
	display: none;
}


.information-information-11 #information-information{
	background-image: url(/image/pro-nas.jpg);
	background-position-y: top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
	margin-top: -80px;
}

.information-information-11 #information-information::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.6;
}

.information-information-11 .header__logo img {
	filter: invert(1);
}

.information-information-11 .search-btn, .information-information-11 .header__account, .information-information-11 .header__menu a, .information-information-11 .current-selection {
	color: #fff;
}

.information-information-11 .current-selection::after {
	filter: invert(1);
}

.information-information-11 #cart>button {
	filter: invert(1);
}

.information-information-11 .header__wishlist svg g path {
	stroke: #fff;
}

.information-information-11 .information-text{
	color: #fff;
}

.information-information-11 #information-information #content {
	align-items: flex-end;
	justify-content: center;
	min-height: 100vh;
	height: 100%;
}

.information-information-11 .information-page {
	width: 50%;
	padding: 310px 0 200px 0;
	position: relative;
	z-index: 2;
}
.account-simpleedit .simple-container, .account-password .simple-container, .account-order .simple-container{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.account-simpleedit .simple-row, .account-password .simple-row, .account-order .simple-row{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
    width: 70%;
    color: #303030;
    padding: 80px 0 80px 50px;
}

.buttons {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
	margin-bottom: 40px;
}
.buttons .btn-primary {
	padding-right: 40px;
	padding-left: 40px;
	width: max-content;
}

.buttons .btn-primary{
	background-color: #000;
	color: #fff;
}

.buttons .btn-primary:hover{
	background-color: #222 !important;
	color: #fff;
}

.information-text {
	line-height: 2;
	font-size: 14px;
}

.information-information-11 .information-page .information-text {
	width: 60%;
}
.information-information-11 .information-page .main-title {
	color: #fff;
	position: relative;
}

.information-information-11 .information-page .main-title::after {
	content: '';
	position: absolute;
	top: -110px;
	left: 0;
	background-image: url(/image/pronas.svg);
	background-repeat: no-repeat;
	height: 61px;
	width: 53px;
	background-size: 100%;
}

.header__language {
	position: relative;
	font-size: 12px;
	text-transform: uppercase;
	font-family: var(--font-medium);
	margin-right: 30px;
}

.language-currency-selector {
	cursor: pointer;
	
}
.current-selection {
	position: relative;
}
.current-selection::after {
	content: '';
    position: absolute;
    top: 44%;
    right: -13px;
    width: 6px;
    height: 4px;
    background-image: url(/image/arrow_drop.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.dropdown-curlan {
	position: absolute;
	top: 100%;
	left: calc(-50% - 25px);
	border: 1px solid #000;
	min-width: 120px;
	margin-top: 15px;
	background-color: #fff;
	z-index: 50;
}

.dropdown-curlan::after {
	content: '';
	position: absolute;
	top: -7px;
	left: calc(50% - 6px);
	width: 12px;
	height: 7px;
	background-image: url(/image/arrow_drop_down.svg);
	background-repeat: no-repeat;
	background-size: 100%;
}

.dropdown-curlan ul {
	margin: 0;
	padding: 10px 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;

}

.dropdown-curlan li {
	margin: 0;
	padding: 0;
	text-align: center;
	cursor: pointer;
	color: #303030;
}
.dropdown-curlan li:hover {
	color: #000;
}

.d-none {
	display: none;
}
.login-popup {
	transform: translateY(-101%);
    transition: all .3s ease-in-out;
    position: fixed;
    z-index: 600;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 70%);
    padding: 45px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-popup-inner {
    background-color: #fff;
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.login-popup.visible-login {
	transform: translateY(0);
	opacity: 1;
}

.login-popup-inner {
	display: grid;
	grid-template-columns: 2fr 1.2fr;
}

.login-popup-inner img {
	width: 100%;
}

.login-popup-inner-text {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	position: relative;
}

.fogotten {
	display: flex;
	width: 100%;
	text-align: right;
	justify-content: flex-end;
	color: #000;
	font-size: 13px;
	margin-bottom: 30px;
}

.product-stock {
	margin-bottom: 20px;
	font-size: 10px;
	text-transform: uppercase;
}

.su-text {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.registration {
	display: flex;
	justify-content: center;
	gap: 5px;
	font-size: 13px;
}

.registration a { 
	text-decoration: underline;
}

#login-message {
	margin: 15px 0;
	color: #BF4949;
}

.form-horizontal .control-label {
	text-align: left;
	margin-bottom: 5px;
	padding-top: 0;
}

#common-success #content {
	text-align: center;
	padding: 100px 0;
	font-size: 14px;
}

#common-success #content h1 {
	font-size: 16px;
	font-family: var(--font-bold);
	margin-bottom: 30px;
	filter: grayscale(1);
}
.form-horizontal .form-group {
	margin-bottom: 25px;
}

.account-simpleedit .btn-primary{
	background-color: #000;
	color: #fff;
}

.account-simpleedit .btn-primary:hover{
	background-color: #222 !important;
	color: #fff;
}

.order-col summary {
	display: grid;
	grid-template-columns: 1fr 100px 100px 40px;
	gap: 15px;
	border-bottom: 1px solid #000;
	padding-bottom: 10px;
	cursor: pointer;
}

.order-col .options {
	font-size: 13px;
}

.last-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
}

.order-col summary span {
	font-size: 12px;
	color: #303030;
}

.center-summary, .right-summary {
	text-align: right;
}

.center-summary span, .right-summary span {
	text-transform: uppercase;
}
.order-col summary div {
	margin-top: 3px;
}

.order-col .cart__row {
    display: grid;
    grid-template-columns: 100px 1fr auto 80px;
    gap: 20px;
    align-items: center;
}

.order-col .cart__row .total{
	text-align: right;
}

.order-col .cart__row img {
	width: 100%;
}

.order-row-details {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding: 30px 0;
}

.order-col .name-inner p {
	font-size: 14px;
    text-transform: uppercase;
    font-family: var(--font-bold);
    margin-bottom: 15px;
    display: block;
    color: #000;
}

.table-order {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.order-page-totals {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.order-page-totals-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}

.order-page-totals-item-title {
	font-size: 12px;
	text-transform: uppercase;
}
.order-page-totals-item-price {
	font-size: 13px;
}

#account-forgotten #content .col-sm-10, #account-reset #content .col-sm-10 {
	width: 100%;
	max-width: 500px;
	margin-top: 20px;
}
#account-forgotten h1, #error-not-found h1 {
	margin-top: 80px;
	font-size: 15px;
}
#account-reset h1, #error-not-found h1 {
	margin-top: 80px;
	font-size: 15px;
}
#account-forgotten .buttons, #account-reset .buttons {
    justify-content: flex-start;
    margin: 10px 0 80px 0;

}

.small-title {
	font-size: 13px;
	text-transform: uppercase;
	font-family: var(--font-medium);
	margin-bottom: 25px;
}

.account-simpleregister #column-left {
	display: none;
}

.account-simpleregister .simple-content > div {
	width: 100%;
	display: flex;
	justify-content: center;
	max-width: 100%;
}

#simplepage_form {
	width: 50%;
}
.account-simpleedit #simplepage_form {
	width: 100%;
}
.common-home .header__logo img, .common-home #cart>button, .common-home .current-selection::after {
	filter: invert(1);
}

.common-home .search-btn, .common-home .header__account, .common-home .header__menu a, .common-home .current-selection {
	color: #fff;
}

.common-home .header__wishlist svg g path {
	stroke: #fff;
}

.common-home .header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
}
.home-big-banner, .home-small-banner, .video-banner{
	position: relative;
	height: 100%;
	max-height: 100vh;
	overflow: hidden;
  }

  .home-big-banner img,  .home-small-banner img, .video-banner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

  .home-big-banner a, .home-small-banner a, .video-banner a{
	position: absolute;
	bottom: 25px;
	left: 30px;
	color: #fff;
	font-size: 20px;
	font-family: var(--font-bold);
	text-transform: uppercase;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 10px;
  }
  .home-big-banner a svg, .home-small-banner a svg, .video-banner a svg {
	height: 15px;
	transition: all .3s ease-in-out;
  }
  .home-big-banner a:hover svg, .home-small-banner a:hover svg, .video-banner a:hover svg {
	transform: translateX(15px);
  }
  
  .home-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
  }

  .summary-address-text {
	font-size: 13px;
  }

  footer {
	background-color: #FAF9F7;
	margin-top: auto;
	padding: 30px 0;
}

footer .container {
	display: grid;
	grid-template-columns: 3fr 1fr;
}

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

footer a {
	text-transform: uppercase;
	font-size: 12px;
}

.footer-socials ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.powered {
	color: #828282;
	text-transform: uppercase;
	font-size: 12px;
	text-align: right;
	margin-top: 100px;
	padding: 0 40px;
}
.powered a {
	color: #828282 !important;
}
.common-home footer, .information-information-11 footer {
	background-color: #000;
}

.common-home footer a, .information-information-11 footer a {
	color: #fff;
}


.product-page-left.active-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	overflow-y: auto;
	overflow-x: hidden;
}

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

#main-slider {
	cursor: pointer;
}

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

.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.active-popup .xdstickers_wrapper {
	display: none;
}
.product-page-left .splide__arrow svg path {
	stroke: #fff;
}

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

.product-page-left.active-popup .splide__arrow svg {
	height: 12px;
	width: 12px;
}
.product-page-left-gift {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gift-card {
	background-color: #D5CBC0;
    min-height: 35%;
    width: 70%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 50px;
}

.gift-card img {
	width: 50%;
}
.gift-price {
	font-size: 40px;
	margin: 70px 0;
	font-family: var(--font-bold);
}
.gift-from-box {
	font-family: var(--font-bold);
	font-size: 15px;
	display: flex;
	gap: 5px;
	margin-bottom: 15px;
}
.gift-text-box {
	font-style: italic;
	display: flex;
}
.plus-minus-gift-inner {
	margin-bottom: 15px;
}
.plus-minus-gift-price {
	height: 40px;
	background-color: #F9FAFB;
	display: flex;
	align-items: center;
	width: max-content;
}
#opt-minus, #opt-plus {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header-mobile-menu {
	display: none;
}

.size-mobile {
	display: none;
}

.mobile-menu {
	display: none;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background: rgb(0 0 0 / 70%);
	z-index: 50;
	position: fixed;
	left: 0;
	top: 0;
}
.mobile-menu-inner {
	background-color: #fff;
	width: 70%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.menu-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 40px;
}
.mobile-menu.visible-menu {
	display: flex;
}
.mobile-menu-inner-top {
	display: flex;
	gap: 15px;
	padding: 5px 10px;
	align-items: center;
}
.mobile-menu-inner-top .close {
	position: relative;
	height: 44px;
	width: 44px;
}
.mobile-menu-logo {
	display: flex;
	position: relative;
	top: 1px;
}
.menu-bottom {
	padding: 50px;
}
.hidden-desctop {
	display: none;
}
.success-img {
	display: none;
}
.su-text .btn-primary {
	background-color: #000;
	color: #fff;
	margin: 25px 0 15px 0;
	width: max-content;
	padding: 0 40px;
}
.thumb-video {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.thumb-video video {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.thumb-video svg {
	position: absolute;
	z-index: 5;
}
#main-slider video {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.sp_product_reviews_list_reviews {
	padding: 50px;
}
.mobile-menu-catalog {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-left: 10px;
	text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-medium);
}

.search-mobile-btn {
	display: none;
}

.simplecheckout-cart-total-value {
	white-space: nowrap;
}

.simplecheckout-cart-total.simplecheckout-cart-total-info .total-title{
	font-size: 11px;
	color: #a4886b;
	text-transform: none;
}
.simplecheckout-cart-total.simplecheckout-cart-total-info .simplecheckout-cart-total-value {
	font-size: 12px;
	color: #a4886b;
}
.btn-buy {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: transparent;
	box-shadow: none;
	border: none;
	z-index: 2;
}

.btn-buy img {
	height: 20px;
	width: 20px;
}

#modal-quick-buy .modal-dialog {
        height: 100%;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
		margin: 0;
}
#modal-quick-buy .modal-header {
	border-bottom: none;
	text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-medium);
	padding-right: 50px;
}
#modal-quick-buy .modal-content {
	min-width: 380px;
	border-radius: 0;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
}
summary.mobile-menu-catalog-item {
  display: block;
  cursor: pointer;
  list-style: none;
  outline: none;
  position: relative;
}
summary.mobile-menu-catalog-item::after {
    content: '';
    position: absolute;
    top: 44%;
    right: -13px;
    width: 6px;
    height: 4px;
    background-image: url(/image/arrow_drop.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
summary.mobile-menu-catalog-item::-webkit-details-marker {
  display: none;
}

.mobile-menu-details[open] summary.mobile-menu-catalog-item {
  margin-bottom: 0;
}

.mobile-menu-children {
  padding: 10px 0 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.mobile-menu-catalog-item {
  display: block;
  text-decoration: none;
  color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-medium);
}


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

.blog-item-image img {
    width: 100%;

}

.blog-item-image img:hover {
    opacity: 0.95;
}

.blog-item__name a {
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    display: block;
}

.blog-item-caption {
    padding: 10px 0;
}

.top-title {
	font-size: 17px;
	margin: 20px 0;
}

.blog-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
    gap: 15px;
}

.blog-item__author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.blog-item__author img {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-position {
    font-size: 12px;
    color: #666;
}

.blog-module .title {
    margin-bottom: 20px;
}

.blog-comment {
    margin: 40px 0;
}

.blog-page-description-text {
    margin-bottom: 20px;
	font-size: 13px;
}

.blog-module {
    margin: 40px 0;
}

.author-box {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: center;
}

.author-container {
    margin: 20px 0 50px 0;
}

.author-header-description {
	font-size: 13px;
}

.author-photo img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.author-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding-bottom: 30px;
    margin: 30px 0;
    align-items: center;
}

.author-header-position {
    text-transform: uppercase;
    margin-bottom: 20px;
	font-size: 12px;
    color: #777
}

.author-header-image img {
    width: 100%;
}

.author-header-title {
	font-size: 18px;
}

@media (max-width: 1300px) {
	.product-page-right {
		padding: 200px 0 0 50px;
	}
	.product-page-right-text {
		width: 85%;
	}
}
@media (max-width: 1150px) {
	.header-left {
		gap: 35px;
	}
	.header-right {
		gap: 15px;
	}
	.header__logo {
		width: 150px;
	}
	footer .container {
		grid-template-columns: 1fr 1fr;
	}
	.footer-informations ul {
		grid-template-columns: 1fr;
	}
	.product-item {
		width: calc(30% - 9px);
	}
	.product-carousele-top {
		padding-right: 5px;
	}
	.product-carousele-top .splide__arrows {
		gap: 5px;
	}
	.login-popup-inner {
		grid-template-columns: 1fr 1fr;
	}
	.login-popup-inner img {
		height: 100%;
		object-fit: cover;
	}
	

}


@media (max-width: 1000px) {
	.common-home .header {
		position: static;
	}
	.search-mobile-btn {
		display: flex;
		height: 40px;
		width: 40px;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}
	.common-home .header__logo img, .common-home #cart>button, .common-home .current-selection::after {
		filter: none;
	}
	.common-home .search-btn, .common-home .header__account, .common-home .header__menu a, .common-home .current-selection {
		color: #000;
		width: max-content;
	}
	.common-home .header__wishlist svg g path {
		stroke: #000;
	}
	.header-left, .header__language, .header__account {
		display: none;
	}
	.header-mobile-menu {
		display: flex;
	}
	.header {
		grid-template-columns: auto auto 1fr;
		gap: 15px;
		padding: 5px 10px;
	}
	.header-right {
        gap: 5px;
    }
	.category-page {
		padding: 50px 16px 0 16px;
	}
	.product-bestseller.category-page {
	padding-bottom: 50px;
}
	.product-wrapper {
		gap: 40px 15px;
		justify-content: center
	}
	.product-item.one_horisontal {
		width: calc(100% + 32px);
		margin-left: -16px;
		margin-right: -16px;
	}
	.product-item {
        width: calc(50% - 8px);
		flex-grow: 1;
    }
	.product-item.one_vertical_first {
		width: 80%;
		margin: 30px 0 30px 0;
		flex-grow: initial;
	}
	.product-item.one_vertical_second {
		width: 70%;
		margin-left: 0;
		margin-right: 0;
		flex-grow: initial;
	}
	.product-item.two_big_l {
		width: 90%;
		flex-grow: initial;
		margin-left: 0;
	}
	.product-item.two_big_r {
		width: 90%;
		flex-grow: initial;
		margin-left: 0;
	}
	.one_square {
		flex-grow: initial;
		width: 100%;
		margin-left: 0;
	}
	#product-product {
		margin-top: 0;
	}
	.product-page {
		grid-template-columns: 1fr;
	}
	#thumbnail-slider {
		display: none;
	}
	.product-page-right {
		padding: 30px 0 30px 16px;
		overflow: hidden;
		width: 100%;
	}
	.product-page-right h1 {
		font-size: 15px;
		margin-top: 0;
	}
	.product-page-right-text {
		width: 100%;
		padding-right: 16px;
	}
	.radio-option-size {
		grid-template-columns: 100px 1fr;
	}
	.size-option__wrapper {
		justify-content: flex-end;
	}
	#size-table {
		grid-column: 1 / 3;
		text-align: right;
		margin: -10px 0 15px 0;
	}
	.plus-minus {
		justify-content: flex-end;
	}
	.selected-color {
		width: 100%;
		justify-content: space-between;
	}
	.size-desctop {
		display: none;
	}
	.size-mobile {
		display: block;
	}
	.product-carousele-top {
		padding-right: 10px;
		margin-bottom: 0;
	}
	.splide .product-item {
		flex-grow: initial;
	}
	#size-popup.visible-popup {
		padding: 0;
	}
	.login-popup-inner {
        grid-template-columns: 1fr;
    }
	.login-popup.visible-login {
		padding: 0;
	}
	.dropdown-curlan {
		position: static;
	}
	#search {
		background-color: transparent;
		padding: 54px 0 0 0;
	}
	#search .container {
		padding: 30px 16px;
	}
	#search .btn-lg {
		height: 40px;
        width: 40px;
        padding: 0;
        background-color: #F9FAFB;
        justify-content: center;
        border-bottom-color: #F9FAFB;
		
	}
	#search .btn-lg svg {
		height: 15px;
	}
	#search .input-lg {
		height: 40px;
		background-color: #F9FAFB;
		border-bottom-color: #F9FAFB;
		width: calc(100% - 80px);
	}
	#search .close {
		height: 40px;
		width: 40px;
		background-color: #F9FAFB;
		border-bottom-color: #F9FAFB;
	}
	#search .dropdown-menu {
		grid-template-columns: 1fr;

	}
	.search-col:first-child {
		flex-direction: row;
		gap: 24px;
		white-space: nowrap;
		overflow-x: auto;
		padding-bottom: 40px;
	}
	#search .dropdown-menu {
		padding-top: 35px;
	}
	.search-col:last-child {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.search-suggestion .more {
		top: 115px;
		right: inherit;
	}
	.search-suggestion .center {
		max-width: 100%;
		width: 100%;
	}
	.search-suggestion .left, .search-suggestion .right {
		width: 100%;
		text-align: left;
		margin-top: -10px;
	}
	.search-suggestion .price {
		justify-content: flex-start;
	}
	.product-item-caption {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.product-item-price {
		justify-content: flex-start;
		font-size: 11px;
	}
	.one_horisontal .product-item-caption {
		padding: 15px 16px 0 16px;
	}
	.one_vertical_first .product-item-caption, .one_vertical_second .product-item-caption, .two_big_l .product-item-caption, .two_big_r .product-item-caption, .one_square .product-item-caption {
		padding-top: 15px;
	}
	.information-information-11 .information-page {
		width: 100%;
	}
	.information-information-11 .information-page .information-text {
		width: 100%;
	}
	.information-information-11 #information-information {
		margin-top: 0;
		padding: 0 16px;
	}
	.information-information-11 .information-page {
		padding-top: 200px;
		padding-bottom: 200px;
	}
	.information-information-11 .header {
		background-color: #000;
	}
	.information-information-11 .header-mobile-menu svg line{
		stroke: #fff
	}	
	.information-page {
		width: 100%;
		grid-template-columns: 1fr;
		padding: 50px 0;
		gap: 40px;
	}
	.information-menu, .account-menu {
		flex-direction: row;
		white-space: nowrap;
		overflow-x: auto;
		gap: 25px;
	}
	.information-page .main-title {
		margin-bottom: 25px;
	}
	.container {
		padding: 0 16px;
	}
	
	#account-forgotten h1, #account-reset h1, #error-not-found h1 {
		margin-top: 40px;
	}
	#simplepage_form {
		width: 100%;
	}
	.account-simpleedit .simple-row, .account-password .simple-row, .account-order .simple-row {
		grid-template-columns: 1fr;
		gap: 35px;
		width: 100%;
		padding: 40px 0;
	}
	#column-left {
		overflow: hidden;
	}
	.order-col summary {
		grid-template-columns: 1fr 61px 62px 40px;
		gap: 10px;
	}
	.center-summary {
		text-align: center;
	}

	.order-row-details .quantity, .order-row-details .total {
		display: none;
	}
	.order-col .cart__row {
		grid-template-columns: 100px 1fr;
		align-items: initial;
	}
	.order-col .name-inner p {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.hidden-desctop {
		display: block;
	}
	.hidden-total {
		text-align: right;
		font-size: 15px;
	}
	.order-page-totals-item-price, .order-page-totals-item-title {
		font-size: 14px;
	}
}
@media (max-width: 700px) {
	.home-two {
		grid-template-columns: 1fr;
	}
	    .blog-wrapper {
        gap: 15px;
        grid-template-columns: 1fr 1fr;
    }
	.home-big-banner a, .home-small-banner a, .video-banner a {
		font-size: 14px;
	}
	.home-big-banner, .home-small-banner, .video-banner {
		height: auto;
	}
	footer .container {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 25px;
	}
	.powered {
		padding: 0 25px;
		text-align: left;
		margin-top: 70px;
	}
	#product-popup {
		padding: 0;
	}
	.product-popup-inner {
		max-width: 100%;
		width: 100%;
		max-height: 100%;
		height: 100%;
		padding: 50px 30px;
	}
	.login-popup-inner-text {
		padding: 30px;
	}
	.title {
		margin-bottom: 10px;
		font-size: 16px;
	}

	#simplecheckout_summary .simplecheckout-cart .quantity {
		display: none !important;
	}
	.alert {
		width: 100%;
		left: 0;
		bottom: 0;
		padding: 35px;
	}
	.success-img {
		display: flex;
		width: 100%;
	}
	.checkout-success #content{
		display: flex;
		flex-direction: column;
	}
	.checkout-success #common-success {
		padding: 0;
	}
	.checkout-success #content h1 {
		order: 2;
		font-size: 16px;
		color: #000;
		text-align: center;

	}
	.checkout-success #content img {
		order: 1;
	}
	.su-text {
		order: 3;
		padding: 16px;
		text-align: center;
	}
	.su-text .btn-primary {
		width: 100%;
	}

	.product-item-caption {
		flex-wrap: wrap;
	}

	.product-item-caption a {
		width: 100%;
		max-width: 100%;
	}
	.author-header {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
}

.color-item.quant-zero {
	display: none;
}


 .popup-language{
    position: fixed;
    display: none;
    z-index: 5000000001;
    left: 15px;
    padding: 20px;
    bottom: 15px;
    width: calc(100% - 30px);
    background-color: #fff;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .active-popup-language.popup-language {
    display: block;
  }
  .popup-language-close {
    width: max-content;
    margin-top: 15px;
    cursor: pointer;
	padding: 0 20px;
}

.text-c {
	font-size: 12px;
}


.messangers {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  transition: all 0.15s ease-in-out;
}

#messangers-btn {
  width: 50px;
  height: 50px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .9;
}


#messangers-inner {
  position: absolute;
  bottom: calc(100% + 15px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.messangers.active #messangers-inner {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.messangers-item a, .messangers-item span {
  display: block;
  width: 50px;
  height: 50px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #fff;
}

.messangers-item svg, #messangers-btn svg {
  width: 20px;
  height: 20px;
}
.messangers-item:hover a, .messangers-item:hover span{
  
  background: #000;
}
.messangers-item:hover  {
  filter: invert(1);
}
.footer-logos {
	display: flex;
	gap: 10px;
	opacity: 0.8;
	margin-top: 30px;
}
.with-topline.common-home .header {
	top: 25px;
}
.topline {
	background-color: #121212;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 25px;
	overflow: hidden;
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 500;
	font-size: 11px;
	opacity: 0.8;
	text-transform: uppercase;
    letter-spacing: 1px;
}
.topline a {
	color: #fff;
	font-size: 11px;
	text-align: center;
	text-transform: uppercase;
    letter-spacing: 1px;
}

.box-delivery-link {
	display: flex;
	justify-content: flex-end;
	font-size: 12px;
    text-transform: uppercase;
	text-decoration: underline;
}

.faq-block { width: 100%; font-family: Arial, sans-serif; }
.faq-block h3 { font-size: 14px; font-weight: 300; color: #2c2420; letter-spacing: -.02em; margin-bottom: 4px; }
.faq-block h3 span { color: #000;}
.faq-sub { font-size: 11px; color: #555; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; padding: 10px 20px; border-left: 3px solid #ddd; transition: border-color .25s; }
.faq-num { font-size: 11px; color: #333; letter-spacing: .1em; font-weight: 700; margin-bottom: 8px; }
.faq-item h4 { font-size: 14px; font-weight: 500; color: #2c2420; line-height: 1.4; margin-bottom: 10px; }
.faq-item p { font-size: 13px; line-height: 1.85; color: #333; margin: 0; }
  .description-category table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 13px;
}
.description-category h1, .description-category h2, .description-category h3, .home-text h1, .home-text h2, .home-text y3 {
	font-size: 17px;
}

.description-category table th {
    background-color: #fbfbfb;
    text-align: left;
    padding: 8px 10px;
    font-weight: 500;
    border: 1px solid #ddd;
    color: #121212;
}

.description-category table td {
    padding: 8px 10px;
    border: 1px solid #dddd;
    color: #444;
    vertical-align: middle;
}

.description-category table tr:nth-child(even) td {
    background-color: #fbfbfb;
}


.description-category, .home-text {
	font-size: 13px;
}
