﻿.sf-menu .layout-list-widget>li.menu-item>a::before {
	content: none;
}

/* header */
.has-sticky.header-up, .has-sticky.header-down {
	background: var(--global-body-lightbg);
}

.knost--light-mode .has-sticky.header-up, .has-sticky.header-down {
	background: var(--color-theme-white);
	box-shadow: 0 0 30px 0 rgb(0 0 0/ 10%);
}

header.header-default.header-up, header.header-default.header-down {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: var(--global-body-lightbg);
	box-shadow: var(--global-box-shadow);
	z-index: 99;
	transition: all 0.45s ease 0s;
	-webkit-transition: all 0.45s ease 0s;
	-moz-transition: all 0.45s ease 0s;
	-o-transition: all 0.45s ease 0s;
}

/* menu */
header .navbar-brand {
	margin-right: 0;
	padding: 15px 0;
}

header .navbar-collapse {
	margin-left: 20px;
}

.sf-menu>li>ul ul.open-submenu-left {
	margin: 0 4px 0 0;
}

/*  Mega menu center Position*/
.column-has-position-static .sf-menu>.menu-item>.iqonic-megamenu-container {
	position: absolute;
	transform: translateX(-50%);
	left: 50% !important;
}

.column-has-position-static ul.sf-menu>li.megamenu-layout,
.column-has-position-static .navbar,
.column-has-position-static .layouts-section-position-static .elementor-widget,
.column-has-position-static .layouts-section-position-static .elementor-widget-wrap,
.column-has-position-static .layouts-section-position-static.elementor-column,
.column-has-position-static .layouts-section-position-static .elementor-column-wrap,
.column-has-position-static.elementor-section .elementor-container {
	position: static !important;
}

/*  Mega menu center Position End*/

.widget-list-nav-menu.list-nav-style-one {
	display: flex;
	align-content: center;
	justify-content: center;
}

/*** ESSENTIAL STYLES ***/

.sc_layouts_menu_nav li li.menu-item-has-children>a {
	padding-right: 35px;
}





/* *************************************************************************************************** */

/* Menu Dark (menu-dark) */

.menu-dark .sf-menu>li>a {
	color: var(--color-theme-white);
}

.menu-dark .sf-menu>li:hover>a {
	color: var(--color-theme-secondary);
}

/* Menu Hover Background (menu-hover-background) */

.menu-hover-background .sf-menu>li:hover>a,
.menu-hover-background .sf-menu li.current-menu-item>a,
.menu-hover-background .sf-menu li.current-menu-ancestor>a {
	color: var(--color-theme-white) !important;
	background: var(--color-theme-secondary) !important;
}

/* Menu Hover Top Border (menu-hover-top-border) */

.menu-hover-top-border .sf-menu>li>a::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--color-theme-secondary);
	transition: all 0.3s ease 0s;
}

.menu-hover-top-border .sf-menu>li:hover>a::before {
	width: 100%;
}

/* header over */
.header-over header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 99;
	background: transparent;
}


.header-over .knost-breadcrumb-one {
	padding: 180px 15px 130px;
}

@media (max-width: 991px) {

	.header-over .knost-breadcrumb-one {
		padding: 100px 16px 60px;
	}

}

@media (max-width: 600px) {

	.header-over .knost-breadcrumb-one {
		padding: 100px 16px 60px;
	}

}

/* Animation */
@-webkit-keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOutAnimation {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOutAnimation {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes fadeInAnimationScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.2) rotate(0);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1) rotate(180deg);
	}
}

@keyframes fadeInAnimationScale {
	0% {
		opacity: 0;
		transform: scale(0.2) rotate(0);
	}

	100% {
		opacity: 1;
		transform: scale(1) rotate(180deg);
	}
}

@-webkit-keyframes fadeOutAnimationScale {
	0% {
		opacity: 1;
		-webkit-transform: scale(1) rotate(180deg);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(0.2) rotate(0);
	}
}

@keyframes fadeOutAnimationScale {
	0% {
		opacity: 1;
		transform: scale(1) rotate(180deg);
	}

	100% {
		opacity: 0;
		transform: scale(0.2) rotate(0);
	}
}

@-webkit-keyframes fadeInRightPanel {
	0% {
		opacity: 0;
		-webkit-transform: translateX(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@keyframes fadeInRightPanel {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeOutRightPanel {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}
}

@keyframes fadeOutRightPanel {
	0% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

@-webkit-keyframes fadeInMove {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0, 1, 1);
	}

	10% {
		opacity: 1;
		-webkit-transform: scale3d(0.1, 1, 1);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
	}
}

@keyframes fadeInMove {
	0% {
		opacity: 0;
		transform: scale3d(0, 1, 1);
	}

	10% {
		opacity: 1;
		transform: scale3d(0.1, 1, 1);
	}

	100% {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

@-webkit-keyframes fadeOutMove {
	0% {
		opacity: 0.14;
		-webkit-transform: scale3d(1, 1, 1);
	}

	100% {
		opacity: 0.14;
		-webkit-transform: scale3d(0, 1, 1);
	}
}

@keyframes fadeOutMove {
	0% {
		opacity: 0.14;
		transform: scale3d(1, 1, 1);
	}

	100% {
		opacity: 0.14;
		transform: scale3d(0, 1, 1);
	}
}

@-webkit-keyframes fadeOutMove2 {
	0% {
		opacity: 0.8;
		-webkit-transform: scale3d(1, 1, 1);
	}

	100% {
		opacity: 0.14;
		-webkit-transform: scale3d(0, 1, 1);
	}
}

@keyframes fadeOutMove2 {
	0% {
		opacity: 0.8;
		transform: scale3d(1, 1, 1);
	}

	100% {
		opacity: 0.14;
		transform: scale3d(0, 1, 1);
	}
}

@media (max-width: 1400px) {
	.knost-header-right ul li a .search-text {
		display: none;
	}
}

@media only screen and (min-width: 1199px) and (max-width: 1300px) {
	.sf-menu>li>a {
		text-transform: uppercase;
		font-size: 14px;
		padding: 18px 12px;
	}
}

@media (min-width: 1200px) {
	header#default-header .custom-toggler {
		display: none;
	}
}



/* Sticky header */
header .header-up {
	position: fixed !important;
	z-index: 99;
	transition: all 0.45s ease 0s !important;
	-webkit-transition: all 0.45s ease 0s !important;
	-moz-transition: all 0.45s ease 0s !important;
	-o-transition: all 0.45s ease 0s !important;
	top: 0;
	box-shadow: var(--global-box-shadow);
	left: 0 !important;
	right: 0;
}

header .header-down.has-sticky {
	transform: translateY(-500px);
	-webkit-transform: translateY(-500px);
	-moz-transform: translateY(-500px);
	-o-transform: translateY(-500px);
	-ms-transform: translateY(-500px);
	transition: all 0.45s ease 0s !important;
	-webkit-transition: all 0.45s ease 0s !important;
	-moz-transition: all 0.45s ease 0s !important;
	-o-transition: all 0.45s ease 0s !important;
	box-shadow: var(--global-box-shadow);
	position: fixed;
	left: 0;
	right: 0;
}


header .sf-menu>.menu-item>.iqonic-megamenu-container .navbar-collapse {
	margin-left: 0;
}

header .sf-menu>.menu-item>.iqonic-megamenu-container .footer-default-menu a {
	padding: 5px;
}

/* Vertical header*/
.vertical-header .container-fluid {
	padding: 0;
}

.menu-align-center .knost-mobile-menu .sub-menu {
	padding-left: 0;
}

.knost-mobile-menu.vertical-menu-layout .navbar-nav li .sub-menu li a {
	margin-bottom: 16px;
	display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {

	.knost-mobile-menu.menu-style-two .knost-full-menu .menu-main-menu-container ul.navbar-nav {
		padding-right: 54px;
		width: 64%;
	}

	.knost-mobile-menu.menu-style-two .knost-full-menu .menu-main-menu-container ul.navbar-nav>li>ul.sub-menu {
		right: -68%;
	}
}

@media (min-width: 1400px) {
	.knost-mobile-menu.menu-style-two .knost-full-menu .menu-main-menu-container ul.navbar-nav {
		padding-right: 54px;
		width: 54%;
	}
}

@media (min-width: 1200px) {


	/* nav-widget style two*/

	.knost-mobile-menu.menu-style-two .navbar-nav li .sub-menu li a:before {
		content: "";
		position: absolute;
		bottom: 0;
		height: 2px;
		width: 0;
		background: currentColor;
		transition: all 0.45s ease 0s;
		-webkit-transition: all 0.45s ease 0s;
		-moz-transition: all 0.45s ease 0s;
		-o-transition: all 0.45s ease 0s;
	}

	.knost-mobile-menu.menu-style-two .navbar-nav li .sub-menu li a {
		padding-bottom: 5px;
	}

	.knost-mobile-menu.menu-style-two .navbar-nav li .sub-menu li a:hover:before, .knost-mobile-menu.menu-style-two ul li .sub-menu li.current-menu-item>a:before {
		width: 100%;
	}

	.knost-mobile-menu .navbar-nav li .sub-menu li a {
		position: relative;
	}

	.knost-mobile-menu.menu-style-two .knost-full-menu .menu-main-menu-container ul.navbar-nav {
		position: relative;
	}

	.knost-mobile-menu.menu-style-two .knost-full-menu .menu-main-menu-container ul.navbar-nav>li {
		position: static;
		width: fit-content;
	}

	.knost-mobile-menu.menu-style-two .knost-full-menu .menu-main-menu-container ul.navbar-nav>li>ul.sub-menu {
		position: absolute;
		right: -68%;
		top: 0;
		width: 200px;
	}

	.knost-mobile-menu.menu-style-two ul.navbar-nav:before {
		content: "";
		position: absolute;
		width: 2px;
		height: 100%;
		background: radial-gradient(100% 100% at 0% 0%, rgba(220, 202, 135, 0) 0%, #DCCA87 51.04%, rgba(220, 202, 135, 0) 100%);
		right: 0;
	}

}

/* Light Mega Menu */
.knost--light-mode .sf-menu ul.sub-menu {
	background: var(--color-theme-white);
	box-shadow: 0px 14px 54px rgb(0 0 0 / 5%);
	;
}

.knost--light-mode .sf-menu ul.sub-menu a {
	color: var(--global-body-lightbg);
}

.knost--light-mode .iqonic-megamenu-container .elementor-widget-wrap.elementor-element-populated {
	border-color: #f1f1f1;
}

.knost--light-mode .iqonic-megamenu-container {
	background: var(--color-theme-white);
	box-shadow: 0px 14px 54px rgb(0 0 0 / 5%);
	;
}

.knost--light-mode .dropdown-menu-mini-cart .widget_shopping_cart_content {
	background: var(--color-theme-white);
}

.knost--light-mode .iqonic-megamenu-container .elementor-heading-title.elementor-size-default,
.knost--light-mode .iqonic-megamenu-container .widget-list-nav-menu.list-nav-style-one .layout-list-widget li a,
.knost--light-mode .dropdown-menu.dropdown-menu-mini-cart .woocommerce-mini-cart-item .knost-product-title,
.dropdown-menu.dropdown-menu-mini-cart .woocommerce-mini-cart-item .woocommerce-Price-amount.amount,
.knost--light-mode .cart-btn .knost-btn .btn_full_content .btn__text,
.knost--light-mode .cart-btn .knost_mini_cart_button_footer .knost-btn .btn_full_content .btn__text ,
.knost--light-mode .dropdown-menu-mini-cart .widget_shopping_cart_content .woocommerce-mini-cart__total
{
	color: var(--global-body-bgcolor);
}

.knost--light-mode .dropdown-menu-mini-cart .widget_shopping_cart_content .knost-cart-content .quantity {
	border-color: #f1f1f1;
}

.knost--light-mode .elementor-5710 .elementor-element .knost-cart .woocommerce-mini-cart__buttons svg path {
	color: var(--color-theme-white);
	fill: var(--color-theme-white);
}


/* dark Mega Menu */
.mega-bg-color .iqonic-megamenu-container {
	background: #1f1f1f;
}

.iqonic-megamenu-container .elementor-widget-wrap.elementor-element-populated {
	border-color: var(--color-theme-lightbg);
}

.iqonic-megamenu-container .elementor-heading-title.elementor-size-default {
	color: var(--color-theme-white)
}

.iqonic-megamenu-container .widget-list-nav-menu.list-nav-style-one .layout-list-widget li a {
	color: var(--color-theme-white);
}