.header {
	/* position: fixed; */
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}

body.admin-bar header.header {
	top: 32px;
}

@media screen and (max-width: 1024px) {
	header {
		position: static !important;
	}
}

.header-notice {
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	background: var(--primary-color);
	padding: 5px;
	font-weight: 400;
}

.header-main {
	background: var(--secondary-color);
	height: 80px;
	padding: 0 0 0 25px;
	display: flex;
	justify-content: space-between;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
	.header-main {
		height: 50px;
		padding: 0 10px 0 10px;
	}
}

.header-left {
	display: flex;
	height: 100%;
}

.header-logo-link {
	height: 100%;
	display: flex;
	align-items: center;
}

img.header-logo {
	height: 21px;
}

@media (max-width: 1024px) {
	.header-logo {
		height: 20px;
	}
}

@media (max-width: 1024px) {
	.header-nav {
		display: none;
	}
}

.header-nav {
	position: relative;
}

.header-nav-ul {
	list-style: none;
	display: flex;
	align-items: center;
	height: 100%;
	padding-left: 40px;
}

.header-nav-link {
	height: 100%;
	min-height: 100% !important;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	transition: all 0.2s ease;
	padding-left: 16px;
	padding-right: 16px;
}

/* Header all products dropdown */
.header-all-products {
	background: white;
	padding: 30px;
	border-radius: 5px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	position: absolute;
	top: 85px;
	left: 40px;
	display: flex;
	display: none;
}

.header-all-products-cat-heading {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 25px;
}

.header-all-products-cat {
	padding: 25px;
	min-width: 180px;
}

.header-all-products-ul {
	list-style: none;
}

.header-all-products-li {
	padding: 4px 0 4px 0;
}

.header-all-products-link {
	text-decoration: none;
	font-size: 14px;
	color: #555555;
	transition: all 0.2s ease;
}

.header-all-products-link:hover {
	color: black;
}

/* Header all products dropdown end */

.header-nav-link-notification {
	width: 16px;
	height: 16px;
	border-radius: 100%;
	font-size: 10px;
	display: block;
	color: white;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-color);
	margin-left: -10px;
}

.header-nav-link:hover {
	color: #ffffff;
}

.header-nav-li {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}

.header-nav .current_page_parent a,
.header-nav .current-menu-item a {
	color: #ffffff;
}

.header-nav .current_page_parent a:after,
.header-nav .current-menu-item a:after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--primary-color);
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
.header-nav .menu-item-has-children .sub-menu li.menu-item a:after {
	display: none;
}

/* Search */
.header-right {
	height: 100%;
	display: flex;
	gap: 10px;
}

.header-search-container {
	display: flex;
	align-items: center;
}

@media (max-width: 1024px) {
	.header-main .header-search-container {
		display: none;
	}
}

.header-search {
	display: flex;
	background: var(--tertiary-color);
	border-radius: 5px;
	min-height: 40px !important;
}

.header-search-input {
	max-width: 189px;
	font-weight: 300;
	background: var(--tertiary-color);
	color: #ffffff;
	border: none;
	padding: 8px 0 8px 15px;
	border-radius: 5px;
	outline: none;
	font-size: 16px;
}

.header-search-input::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #aaaaaa;
	opacity: 1;
	/* Firefox */
}

.header-search-input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #aaaaaa;
}

.header-search-input::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #aaaaaa;
}

.header-search-icon-container {
	display: flex;
	align-items: center;
	padding-right: 15px;
	padding-left: 15px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	cursor: pointer;
	position: relative;
}

.header-search-submit {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	opacity: 0;
	cursor: pointer;
}

/* Search end */

/* Header all products Wordpress dropdown */

.header-nav-ul > .header-nav-li > .sub-menu {
	display: flex;
	display: none;
	position: absolute;
	left: 0;
	top: 80px;
	background: white;
	z-index: 100 !important;
	padding: 40px;
	border-radius: 5px;
}

.header-nav-li:hover .sub-menu {
	display: flex;
}
.header-nav-ul > .header-nav-li > .sub-menu a {
	width: 100%;
	margin-bottom: 20px;
}

.header-left > .sub-menu {
	background: white;
	padding: 30px;
	border: 1px solid blue;
	border-radius: 5px;
}

.header-left .sub-menu li.menu-item-has-children > a {
	color: #222222;
	font-size: 16px;
	font-weight: 600;
}

.header-left .sub-menu li {
	display: flex;
	flex-direction: column;
}

.header-left .sub-menu li {
	display: flex;
	flex-direction: column;
	min-width: 168px;
}

.header-left .sub-menu .sub-menu {
	position: static;
	/* background: green!important; */
	display: flex;
	flex-direction: column;
	color: #555555;
	font-size: 24px;
	justify-content: flex-start;
}

.header-left .sub-menu .sub-menu .header-nav-link,
.header-left .sub-menu .sub-menu li {
	/* background: red;
    border: 1px solid blue; */
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
}

.header-left .sub-menu .sub-menu .header-nav-link {
	font-size: 14px;
	color: #555555;
	font-weight: 300;
}

.header-left .sub-menu .sub-menu .header-nav-link,
.header-left .sub-menu .sub-menu li .header-nav-link {
	width: 100%;
}

.header-left .sub-menu li.menu-item-has-children > a {
	color: #222222;
	font-size: 16px;
	font-weight: 600;
	padding: 0;
}

.header-left .sub-menu .sub-menu .header-nav-link,
.header-left .sub-menu .sub-menu li {
	/* padding-top: 10px!important; */
	padding-bottom: 3px !important;
	padding-top: 3px !important;
	display: flex;
	justify-content: flex-start;
}

/* Header all products Wordpress dropdown end */

/* Cart */

.header-cart-container {
	height: 100%;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.header-main .header-cart-container {
		display: none;
	}
}

.header-cart {
	padding: 8px 12px 8px 12px;
	border-radius: 5px;
	background: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.header-cart:hover {
	background: var(--primary-color);
}

.header-cart-icon {
	height: 17px !important;
}

.header-cart-item-count {
	z-index: 1;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -8px;
	right: -8px;
	box-shadow: 0px 2px 8px rgb(0 0 0 / 25%);
	text-decoration: none;
}

.header-cart-item-count:empty {
	display: none;
}

/* Cart end */

/* Header account */
.header-account {
	max-width: 325px;
	flex: 1;
	position: relative;
}

.header-account-fixed {
	background: var(--tertiary-color);
	height: 100%;
	display: flex;
	gap: 10px;
	align-items: center;
	padding-right: 25px;
	padding-left: 18px;
	cursor: pointer;
}

.header-account-dropdown-icon {
	height: 8px !important;
	flex-shrink: 0;
}

@media (max-width: 1220px) {
	.header-account-fixed {
		background: none;
		justify-content: flex-end;
	}
}

@media (max-width: 1024px) {
	.header-account-fixed {
		padding: 0;
	}
}

.header-account-entity-logo {
	flex-shrink: 0;
	max-width: 100px !important;
	max-height: 40px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.header-account-entity-logo {
		max-height: 30px;
	}
}

.header-account-info {
	flex-grow: 1;
	margin-right: 15px;
}

@media (max-width: 1220px) {
	.header-account-info {
		display: none;
	}
}

.header-account-entity-name {
	font-size: 14px;
	font-weight: 300;
	color: #ffffff;
}

.header-account-branch-name {
	font-size: 12px;
	font-weight: 400;
	color: #aaaaaa;
}

.header-account-dropdown {
	position: absolute;
	top: 85px;
	background: var(--secondary-color);
	color: white;
	right: 5px;
	min-width: 300px;
	border-radius: 5px;
	display: none;
	z-index: 6;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width: 1024px) {
	.header-account-dropdown {
		top: 60px;
		right: 0;
		min-width: 290px;
	}
}

.header-account-dropdown-entities {
	padding: 12px;
	max-height: 360px;
	overflow-y: auto;
}

.header-account-dropdown-entities::-webkit-scrollbar-track {
	background-color: #555;
}

.header-account-dropdown-entities::-webkit-scrollbar {
	width: 8px;
	background-color: #555;
}

.header-account-dropdown-entities::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: var(--secondary-color);
}

.header-account-dropdown-entity {
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.15);
	padding: 10px 15px 10px 15px;
	border-radius: 5px;
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease;
	min-height: 68px;
	text-decoration: none;
}

.header-account-dropdown-entity:hover {
	background: rgba(0, 0, 0, 0.3);
}

.header-account-dropdown-entity-active::after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: var(--primary-color);
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.header-account-dropdown-entity:last-child {
	margin-bottom: 0;
}

.header-account-dropdown-entity img {
	width: 46px;
}

.header-account-dropdown-entity-info {
	margin-left: 25px;
}

.header-account-dropdown-entity-name {
	font-size: 14px;
	font-weight: 300;
	color: #ffffff;
}

.header-account-dropdown-branch-name {
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
}

/* Header dropdown nav */
.header-account-dropdown-nav {
	background: var(--tertiary-color);
	padding: 20px 14px 20px 14px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.header-account-dropdown-nav-ul {
	list-style: none;
}

.header-account-dropdown-nav-li {
	padding: 6px 15px 6px 15px;
}

.header-account-dropdown-nav-link {
	text-decoration: none;
	font-size: 14px;
	padding: 6px 0 6px 0;
	transition: all 0.2s ease;
}

.header-account-dropdown-nav-link:hover {
	color: var(--primary-color);
}

.header-mobile {
	background: var(--secondary-color);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 0 10px 0 10px;
	height: 61px;
}

.header-mobile-burger {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.header-mobile-burger img {
	margin-right: 0;
	padding-right: 0;
}

.header-mobile-burger-container {
	border-radius: 5px;
	background: var(--tertiary-color);
	padding: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-mobile .header-search-container {
	display: flex;
	justify-content: center;
	flex-grow: 1;
}

.header-mobile .header-search {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.header-mobile .header-search-icon-container {
	padding-left: 5px;
	padding-right: 15px;
}

.header-mobile .header-search-input {
	width: 100%;
	max-width: unset;
	flex: 1;
	font-weight: 300;
}

.header-mobile .header-search-input::placeholder,
/* Chrome, Firefox, Opera, Safari 10.1+ */
.header-mobile .header-search-input:-ms-input-placeholder,
/* Internet Explorer 10-11 */
.header-mobile .header-search-input::-ms-input-placeholder

/* Microsoft Edge */ {
	font-weight: 300;
}

.header-mobile .header-search-icon-container {
	padding: 0;
	display: flex;
	justify-content: center;
}

.header-search-icon-container {
	min-width: 40px;
}

.header-search-icon {
	min-width: 16px;
}

.header-mobile .header-mobile-burger,
.header-mobile .header-cart-container {
	flex-shrink: 0;
}

.header-mobile .header-cart-container {
	display: flex;
	justify-content: flex-end;
	margin-left: 0;
}

.header-mobile .header-cart {
	max-width: 40px;
}

@media (min-width: 1025px) {
	.header-mobile {
		display: none;
	}
}

/* Header mobile menu */
.header-mobile-menu {
	display: none;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	z-index: 6;
}

.header-mobile-menu-overlay {
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
}

.header-mobile-menu-content {
	position: fixed;
	height: 100%;
	width: 75%;
	max-width: 75%;
	background: var(--secondary-color);
	padding-top: 30px;
	padding-bottom: 30px;
}

.header-mobile-menu-nav-ul {
	list-style: none;
}

.header-mobile-menu-nav-li {
	width: 100%;
}

.header-mobile-menu-nav-link {
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	text-decoration: none;
	width: 100%;
	padding: 14px 35px 14px 35px;
	display: flex;
	align-items: center;
	position: relative;
}

.header-mobile-menu-nav-li.current-menu-item .header-mobile-menu-nav-link {
	color: #ffffff;
}

.header-mobile-menu-nav-li.current-menu-item .header-mobile-menu-nav-link::after {
	content: "";
	background: var(--primary-color);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 25px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

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

.header-mobile-menu-nav .sub-menu {
	background-color: unset;
	list-style: none;
	padding-left: 30px;
}

/* Page banner */

.header-page-banner {
	background: var(--tertiary-color);
}

.header-page-banner.green {
	background-color: var(--primary-color);
}

.header-page-banner-heading {
	color: white;
	font-weight: 500;
	font-size: 24px !important;
}

.header-page-banner-sub-heading {
	color: #f7f7f7;
	font-size: 12px;
	font-weight: 400;
	opacity: 0.8;
}

.header-page-banner-container {
	height: 150px;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 25px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.header-page-banner a {
	text-decoration: none;
}

@media (max-width: 768px) {
	.header-page-banner-container {
		align-items: center;
		height: 80px;
	}

	.header-page-banner-heading {
		font-size: 18px !important;
		font-weight: 400;
	}
}

/* SUB MENU */
ul.sub-menu {
	background: #fff;
}

/* nav badges */
.badge {
	min-width: 16px;
	height: 16px;
	margin-left: 4px;
	padding: 0 5px;
	background-color: var(--primary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
}


.hidden a {
    display: none !important;
}