/* Header Top - Start */
header { 
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--white);
	width: 100%;
	height: var(--header-height);
	margin: 0;
	padding: 0;
	z-index: 1000;
}
/* Header Top - End */

/* Header Main - Start */
.header-main {
	height: calc(var(--header-height) - var(--top-bar-height));
	align-items: center;
	flex-wrap: nowrap!important;
	background: #F5F5F5;
	border-radius: 80px;
}
.logo-header {
	display: flex;
	align-items: center;
	margin-left: 30px;
}
.main-menu-wrapper {
	margin-right: auto;
}
nav.menu-main-menu-container {
	margin-left: 30px;
}
.language-call .arrow-lang {
	transition: all 0.3s ease;
}
.language-call.active .arrow-lang {
	transform: rotate(180deg);
}
.change-lang {
	display: flex;
	gap: 5px;
	align-items: center;
}
@media (max-width: 1550px) {
	nav.menu-main-menu-container {
		margin-left: 10px;
	}
}
@media (max-width: 1279px) {
	.side-menu-call {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 4px;
		width: 50px;
		height: 50px;
		padding-left: 15px;
		cursor: pointer;
		background: var(--primary);
		border-radius: 100%;
	}
	.side-menu-call > .menu-line {
		display: flex;
		width: 21px;
		height: 2px;
		background: #491D16;
		border-radius: 10px;
	}
	.side-menu-call > .menu-line:nth-child(2) {
		width: 11px;
	}
	.side-menu-call > .menu-line:nth-child(3) {
		width: 17px;
	}
	.logo-header {
		margin-left: -5px;
		margin-right: auto;
	}
	.logo-header img {
		width: 33px;
		height: 29px;
		object-fit: contain;
	}
}
.user-account-wrapper {
	margin-left: 10px;
}
.user-account-wrapper > .user-inside {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}
.user-account-wrapper .account-text {
	color: var(--black);
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
}
.user-account-wrapper .btn img {
	height: 22px;
}
.btn-circle.user-account {
	border: 1px solid var(--border);
	margin-left: 14px;
}

/* Lanuage Switcher - Start */
.language-wrapper {
	position: relative;
}
.language-wrapper .language-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(-84px - 8px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	transition: all 0.5s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.language-wrapper.active .language-box {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.language-wrapper .language-box a {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: fit-content;
	height: 38px;
	padding: 9px 11px;
	border: 1px solid var(--border);
	border-radius: 10px;
	transition: all 0.5s ease;
}
.language-wrapper .language-box a img {
	display: none;
}
.language-wrapper .language-box a:hover,
.language-wrapper .language-box a.gt-current-lang {
	background: var(--border);
}
/* Lanuage Switcher - End */

/* Shop Bar Menu - Start */
.shop-functions-group,
.shop-functions-group *{
	height: 100%;
}
#shop-bar-menu {
	list-style: none;
	display: flex;
	gap: 15px;
}
#shop-bar-menu .woofc-menu-item {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	height: 100%;
	border-radius: 80px;
}
.woofc-menu-item > a {
	padding: 0 26px 0 22px;
}
.woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal:before {
	content: "Кошик";
}
.woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal {
	display: flex;
	align-items: center;
}
.woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal * {
	display: none;
}
#shop-bar-menu li > a > span {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 10px;
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
	line-height: 18px;
}
#shop-bar-menu li i {
	margin-right: 0 !important;
}
#shop-bar-menu i.woofc-icon-cart7 {
	display: none!important;
}
/* Cart - Start */
.woofc-menu-item .woofc-menu-item-inner:after {
	content: attr(data-count);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	color: var(--primary-match);
	font-size: 16px;
	line-height: 16px;
	width: 36px;
	height: 36px;
	font-weight: 700;
	text-align: center;
	border-radius: 100%;
	position: relative;
	left: initial !important;
	right: 0px !important;
	top: 0px !important;
	padding-top: 0px !important;
}
@media (max-width: 1366px) {
	nav.menu-main-menu-container {
		margin-left: 0px;
	}
	.user-account-wrapper {
		margin-left: 0px;
	}
	.woofc-menu-item > a {
		padding: 0 26px 0 15px;
	}
}
/* Cart - End */

/* Shop Bar Menu - End */

@media (max-width: 1279px) {
	.header-main {
		height: 50px;
	}
	.woofc-menu-item .woofc-menu-item-inner:after {
		font-size: 14px;
		line-height: 14px;
		width: 33px;
		height: 33px;
	}
	.woofc-menu-item .woofc-menu-item-inner .woofc-menu-item-inner-subtotal:before {
		content: "Кошик";
		font-size: 14px;
		line-height: 14px;
	}
	.menu-header-wrapper .language-wrapper {
		margin: 0 auto;
	}
}
@media (max-width: 768px) {
	.logo-header {
		margin-right: auto;
	}
	.btn-catalog {
		padding: 6px 5px 5px 5px !important;
	}
	header .user-account,
	.chating,
	header .change-lang {
		display: none !important;
	}
}
/* Header Main - End */



