/* =========================================================
   KEN'S DISTRIBUTING
   LIGHTWEIGHT CUSTOM HEADER
   ========================================================= */


/* =========================================================
   VARIABLES / SITE HEADER
   ========================================================= */

.kendisco-site-header {
	--kendisco-header-width: 1440px;
	--kendisco-header-navy: #0F172A;
	--kendisco-header-orange: #FF5F14;

	position: relative;

	z-index: 9999;

	width: 100%;

	/*
	 * Exact space occupied by fixed desktop navy header.
	 * Prevents content/search from moving when header CSS loads.
	 */
	padding-top: 66px;

	margin: 0;

	background: #FFFFFF;
}


.kendisco-site-header *,
.kendisco-site-header *::before,
.kendisco-site-header *::after {
	box-sizing: border-box;
}


/* =========================================================
   FIXED NAVY HEADER
   ========================================================= */

.kendisco-header-main {
	position: fixed;

	top: 0;
	left: 0;
	right: 0;

	z-index: 99999;

	width: 100%;

	height: 66px;
	min-height: 66px;

	margin: 0;

	padding: 0;

	background:
		var(--kendisco-header-navy);

	border-bottom:
		1px solid
		rgba(255,255,255,0.08);
}


/* =========================================================
   HEADER INNER
   ========================================================= */

.kendisco-header-inner {
	width: 100%;

	max-width:
		var(--kendisco-header-width);

	height: 66px;
	min-height: 66px;

	margin: 0 auto;

	padding: 7px 20px;

	display: flex;

	align-items: center;

	flex-wrap: nowrap;

	gap: 18px;

	overflow: visible;
}


/* =========================================================
   LOGO
   CLS-SAFE RESERVED SPACE
   ========================================================= */

.kendisco-header-logo {
	display: flex;

	flex:
		0 0 62px;

	width: 62px;
	min-width: 62px;

	height: 52px;
	min-height: 52px;

	align-items: center;

	justify-content: center;

	margin: 0;

	padding: 0;
}


.kendisco-header-logo-link {
	display: flex;

	flex:
		0 0 62px;

	width: 62px;

	height: 52px;

	align-items: center;

	justify-content: center;

	margin: 0;

	padding: 0;

	text-decoration: none;
}


.kendisco-header-logo-image {
	display: block;

	width: 62px !important;

	height: 52px !important;

	max-width: 62px !important;

	max-height: 52px !important;

	margin: 0 !important;

	padding: 0 !important;

	border: 0;

	object-fit: contain;

	object-position: center;
}


.kendisco-header-site-name {
	display: flex;

	width: 62px;

	height: 52px;

	align-items: center;

	justify-content: center;

	margin: 0;

	padding: 0;

	color: #FFFFFF;

	font-size: 14px;

	font-weight: 600;

	line-height: 1.2;

	text-align: center;

	text-decoration: none;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.kendisco-header-navigation {
	flex:
		1 1 auto;

	min-width: 0;

	height: 52px;

	white-space: nowrap;
}


.kendisco-header-menu {
	display: flex;

	width: 100%;

	height: 52px;

	align-items: center;

	justify-content: center;

	flex-wrap: nowrap;

	margin: 0;

	padding: 0;

	list-style: none;
}


.kendisco-header-menu li {
	position: relative;

	margin: 0;

	padding: 0;

	list-style: none;
}


.kendisco-header-menu > li {
	flex:
		0 0 auto;
}


/* =========================================================
   DESKTOP TOP LEVEL LINKS
   ========================================================= */

.kendisco-header-menu > li > a,
.kendisco-header-menu > li > a:link,
.kendisco-header-menu > li > a:visited,
.kendisco-header-menu > li > a:hover,
.kendisco-header-menu > li > a:focus,
.kendisco-header-menu > li > a:active,
.kendisco-header-menu > li.current-menu-item > a,
.kendisco-header-menu > li.current-menu-parent > a,
.kendisco-header-menu > li.current-menu-ancestor > a {
	display: flex;

	height: 52px;
	min-height: 52px;

	align-items: center;

	padding:
		0 9px;

	font-family:
		inherit !important;

	font-size:
		12px !important;

	font-style:
		normal !important;

	font-weight:
		600 !important;

	line-height:
		1.2 !important;

	letter-spacing:
		0 !important;

	text-decoration:
		none !important;

	text-transform: none;

	white-space: nowrap;

	transform:
		none !important;

	transition:
		color 0.15s ease !important;
}


.kendisco-header-menu > li > a,
.kendisco-header-menu > li > a:link,
.kendisco-header-menu > li > a:visited {
	color:
		#FFFFFF !important;
}


.kendisco-header-menu > li > a:hover,
.kendisco-header-menu > li > a:focus,
.kendisco-header-menu > li.current-menu-item > a,
.kendisco-header-menu > li.current-menu-parent > a,
.kendisco-header-menu > li.current-menu-ancestor > a {
	color:
		var(--kendisco-header-orange) !important;

	font-weight:
		600 !important;
}


/* =========================================================
   DESKTOP DROPDOWN ARROWS
   ========================================================= */

.kendisco-header-menu
.menu-item-has-children
> a::after {
	content: "";

	display: block;

	flex:
		0 0 6px;

	width: 6px;

	height: 6px;

	margin-left: 6px;

	margin-top: -3px;

	border-right:
		1.5px solid
		var(--kendisco-header-orange) !important;

	border-bottom:
		1.5px solid
		var(--kendisco-header-orange) !important;

	transform:
		rotate(45deg);
}


/* =========================================================
   DESKTOP DROPDOWNS
   ========================================================= */

.kendisco-header-menu .sub-menu {
	position: absolute;

	top: 100%;

	left: 0;

	z-index: 10000;

	width: 270px;

	margin: 0;

	padding:
		7px 0;

	background:
		var(--kendisco-header-navy);

	border-top:
		2px solid
		var(--kendisco-header-orange);

	box-shadow:
		0 8px 24px
		rgba(0,0,0,0.18);

	list-style: none;

	opacity: 0;

	visibility: hidden;

	pointer-events: none;

	transform:
		translateY(5px);

	transition:
		opacity 0.15s ease,
		visibility 0.15s ease,
		transform 0.15s ease;
}


.kendisco-header-menu
li:hover
> .sub-menu,

.kendisco-header-menu
li:focus-within
> .sub-menu {
	opacity: 1;

	visibility: visible;

	pointer-events: auto;

	transform:
		translateY(0);
}


/* =========================================================
   DESKTOP SUBMENU LINKS
   ========================================================= */

.kendisco-header-menu .sub-menu a,
.kendisco-header-menu .sub-menu a:link,
.kendisco-header-menu .sub-menu a:visited,
.kendisco-header-menu .sub-menu a:hover,
.kendisco-header-menu .sub-menu a:focus,
.kendisco-header-menu .sub-menu a:active {
	display: block;

	width: 100%;

	padding:
		9px 15px;

	border-bottom:
		1px solid
		rgba(255,255,255,0.09);

	font-family:
		inherit !important;

	font-size:
		12px !important;

	font-style:
		normal !important;

	font-weight:
		400 !important;

	line-height:
		1.35 !important;

	letter-spacing:
		0 !important;

	text-decoration:
		none !important;

	white-space: normal;

	transform:
		none !important;

	transition:
		color 0.15s ease,
		background-color 0.15s ease;
}


.kendisco-header-menu .sub-menu a,
.kendisco-header-menu .sub-menu a:link,
.kendisco-header-menu .sub-menu a:visited {
	color:
		#FFFFFF !important;
}


.kendisco-header-menu .sub-menu a:hover,
.kendisco-header-menu .sub-menu a:focus {
	color:
		var(--kendisco-header-orange) !important;

	background:
		rgba(255,255,255,0.04);

	font-weight:
		400 !important;
}


/* Nested desktop dropdown */

.kendisco-header-menu
.sub-menu
.sub-menu {
	top: -7px;

	left: 100%;
}


/* =========================================================
   MOBILE SUBMENU BUTTON
   HIDDEN ON DESKTOP
   ========================================================= */

button.kendisco-submenu-toggle {
	display:
		none !important;
}


/* =========================================================
   REQUEST A QUOTE
   ========================================================= */

.kendisco-header-quote-wrap {
	flex:
		0 0 auto;
}


.kendisco-header-quote,
.kendisco-header-quote:link,
.kendisco-header-quote:visited,
.kendisco-header-quote:hover,
.kendisco-header-quote:focus,
.kendisco-header-quote:active {
	display: inline-flex;

	min-height: 38px;

	align-items: center;

	justify-content: center;

	padding:
		0 15px;

	/*
	 * Border always exists.
	 * Hover never changes element dimensions.
	 */
	border:
		1px solid
		#FFFFFF;

	font-family:
		inherit !important;

	font-size:
		11px !important;

	font-style:
		normal !important;

	font-weight:
		700 !important;

	line-height:
		1 !important;

	letter-spacing:
		0 !important;

	text-decoration:
		none !important;

	text-transform: uppercase;

	white-space: nowrap;

	transform:
		none !important;

	transition:
		color 0.15s ease,
		background-color 0.15s ease,
		border-color 0.15s ease;
}


.kendisco-header-quote,
.kendisco-header-quote:link,
.kendisco-header-quote:visited {
	background:
		#FFFFFF;

	border-color:
		#FFFFFF;

	color:
		var(--kendisco-header-navy) !important;
}


.kendisco-header-quote:hover,
.kendisco-header-quote:focus {
	background:
		var(--kendisco-header-orange);

	border-color:
		var(--kendisco-header-orange);

	color:
		#FFFFFF !important;

	font-weight:
		700 !important;
}


/* =========================================================
   MOBILE MENU BUTTON
   HIDDEN ON DESKTOP
   ========================================================= */

button.kendisco-menu-toggle {
	display:
		none !important;

	appearance:
		none !important;

	-webkit-appearance:
		none !important;

	width: 38px;

	height: 38px;

	flex:
		0 0 38px;

	margin:
		0 !important;

	padding:
		8px !important;

	background:
		#FFFFFF !important;

	border:
		0 !important;

	border-radius:
		3px !important;

	box-shadow:
		none !important;

	cursor: pointer;
}


.kendisco-menu-toggle-line {
	display: block;

	width: 100%;

	height: 2px;

	margin:
		4px 0;

	padding: 0;

	background:
		var(--kendisco-header-navy);

	border: 0;

	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}


/* =========================================================
   SEARCH ROW
   CLS-SAFE RESERVED HEIGHT
   ========================================================= */

.kendisco-header-search-row {
	position: relative;

	top: auto;

	z-index: 10;

	width: 100%;

	min-height: 57px;

	margin: 0;

	background:
		#FFFFFF;

	border-bottom:
		3px solid
		var(--kendisco-header-orange);
}


.kendisco-header-search-inner {
	width: 100%;

	max-width:
		var(--kendisco-header-width);

	min-height: 54px;

	margin: 0 auto;

	padding:
		7px 20px;
}


.kendisco-header-search {
	width: 100%;

	min-height: 40px;
}


/* =========================================================
   CUSTOM LIVE SEARCH FORM
   ========================================================= */

.kendisco-search-form {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}


.kendisco-search-control {
	display: grid;

	width: 100%;
	height: 40px;

	grid-template-columns:
		minmax(0, 1fr)
		46px;

	margin: 0;
	padding: 0;
}


.kendisco-search-input {
	display: block;

	width: 100% !important;
	height: 40px !important;

	min-width: 0;

	margin: 0 !important;
	padding: 0 13px !important;

	appearance: none;
	-webkit-appearance: none;

	background: #FFFFFF !important;

	border: 1px solid #CBD5E1 !important;
	border-right: 0 !important;

	border-radius:
		2px 0 0 2px !important;

	color: #334155 !important;

	font-family: inherit !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1 !important;

	box-shadow: none !important;
	outline: none !important;
}


.kendisco-search-input::placeholder {
	color: #64748B;
	opacity: 1;
}


.kendisco-search-input:focus {
	border-color:
		var(--kendisco-header-orange) !important;

	box-shadow:
		inset 0 0 0 1px
		var(--kendisco-header-orange) !important;
}


.kendisco-search-input::-webkit-search-cancel-button {
	display: none;
}


/* =========================================================
   SEARCH BUTTON
   ========================================================= */

.kendisco-search-submit,
.kendisco-search-submit:hover,
.kendisco-search-submit:focus,
.kendisco-search-submit:active {
	display: flex;

	width: 46px;
	height: 40px;

	min-width: 46px;
	min-height: 40px;

	align-items: center;
	justify-content: center;

	margin: 0 !important;
	padding: 0 !important;

	appearance: none !important;
	-webkit-appearance: none !important;

	background:
		var(--kendisco-header-navy) !important;

	border:
		1px solid
		var(--kendisco-header-navy) !important;

	border-radius:
		0 2px 2px 0 !important;

	color: #FFFFFF !important;

	box-shadow: none !important;

	cursor: pointer;

	transform: none !important;
}


.kendisco-search-submit:hover,
.kendisco-search-submit:focus {
	background:
		var(--kendisco-header-orange) !important;

	border-color:
		var(--kendisco-header-orange) !important;
}


.kendisco-search-submit svg {
	display: block;

	width: 18px;
	height: 18px;

	flex: 0 0 18px;
}


/* =========================================================
   LIVE DROPDOWN
   ========================================================= */

.kendisco-search-results {
	position: absolute;

	top: calc(100% + 5px);
	left: 0;
	right: 0;

	z-index: 999999;

	width: 100%;

	max-height:
		min(68vh, 650px);

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

	margin: 0;
	padding: 0;

	background: #FFFFFF;

	border: 1px solid #CBD5E1;
	border-radius: 3px;

	box-shadow:
		0 16px 34px
		rgba(15, 23, 42, 0.18);
}


.kendisco-search-results[hidden] {
	display: none !important;
}


/* =========================================================
   MISSPELLING NOTICE
   ========================================================= */

.kendisco-search-correction {
	padding: 8px 12px;

	background: #FFF7ED;

	border-bottom:
		1px solid #FED7AA;

	color: #7C2D12;

	font-size: 11px;
	line-height: 1.4;
}


.kendisco-search-correction strong {
	font-weight: 700;
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.kendisco-search-group-title {
	display: flex;

	min-height: 34px;

	align-items: center;

	padding: 7px 11px;

	background: #F8FAFC;

	border-bottom:
		1px solid #E2E8F0;

	color: #475569;

	font-size: 10px;
	font-weight: 800;
	line-height: 1;

	letter-spacing: 0.07em;
	text-transform: uppercase;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.kendisco-live-product {
	display: grid;

	width: 100%;
	min-height: 82px;

	grid-template-columns:
		64px minmax(0, 1fr);

	gap: 11px;

	align-items: center;

	padding: 8px 11px;

	background: #FFFFFF;

	border-bottom:
		1px solid #E5E7EB;

	color: #0F172A !important;

	text-decoration: none !important;

	transition:
		background-color 0.12s ease;
}


.kendisco-live-product:hover,
.kendisco-live-product:focus {
	background: #F8FAFC;
	color: #0F172A !important;
}


.kendisco-live-product-image {
	display: flex;

	width: 64px;
	height: 64px;

	align-items: center;
	justify-content: center;

	overflow: hidden;

	padding: 4px;

	background: #FFFFFF;

	border: 1px solid #EEF2F7;
	border-radius: 2px;
}


.kendisco-live-product-image img {
	display: block;

	width: auto;
	height: auto;

	max-width: 54px;
	max-height: 54px;

	object-fit: contain;
	object-position: center;
}


.kendisco-live-product-image.is-empty::before {
	content: "";

	width: 24px;
	height: 24px;

	border: 2px solid #CBD5E1;
	border-radius: 50%;
}


.kendisco-live-product-copy {
	display: block;
	min-width: 0;
}


.kendisco-live-product-title {
	display: block;

	margin: 0 0 5px;

	color: #0F172A;

	font-size: 13px;
	font-weight: 650;
	line-height: 1.32;

	overflow-wrap: anywhere;
}


.kendisco-live-product-description {
	display: -webkit-box;

	overflow: hidden;

	margin: 0;

	color: #64748B;

	font-size: 11px;
	line-height: 1.4;

	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


.kendisco-live-product-title strong,
.kendisco-live-product-description strong {
	color: #0F172A;
	font-weight: 800;
}


/* =========================================================
   CATEGORIES
   TITLE ONLY
   ========================================================= */

.kendisco-live-category {
	display: flex;

	width: 100%;
	min-height: 40px;

	align-items: center;

	padding: 9px 12px;

	background: #FFFFFF;

	border-bottom:
		1px solid #E5E7EB;

	color: #0F172A !important;

	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;

	text-decoration: none !important;
}


.kendisco-live-category:hover,
.kendisco-live-category:focus {
	background: #F8FAFC;

	color:
		var(--kendisco-header-orange) !important;
}


.kendisco-live-category strong {
	font-weight: 800;
}


/* =========================================================
   VIEW ALL RESULTS
   ========================================================= */

.kendisco-search-view-all,
.kendisco-search-view-all:link,
.kendisco-search-view-all:visited {
	display: flex;

	width: 100%;
	min-height: 48px;

	align-items: center;
	justify-content: center;

	padding: 11px 16px;

	background: #F8FAFC;

	color:
		var(--kendisco-header-orange) !important;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;

	text-decoration: none !important;
}


.kendisco-search-view-all:hover,
.kendisco-search-view-all:focus {
	background: #F1F5F9;
}


/* =========================================================
   LOADER
   ========================================================= */

.kendisco-search-loader {
	display: flex;

	min-height: 70px;

	align-items: center;
	justify-content: center;

	gap: 10px;

	padding: 14px;

	color: #64748B;

	font-size: 11px;
}


.kendisco-search-loader-spinner {
	width: 20px;
	height: 20px;

	flex: 0 0 20px;

	border: 2px solid #E2E8F0;

	border-top-color:
		var(--kendisco-header-orange);

	border-radius: 50%;

	animation:
		kendisco-search-spin
		0.7s linear infinite;
}


@keyframes kendisco-search-spin {

	to {
		transform: rotate(360deg);
	}

}


/* =========================================================
   EMPTY / ERROR
   ========================================================= */

.kendisco-search-message {
	display: flex;

	min-height: 64px;

	align-items: center;
	justify-content: center;

	padding: 13px 16px;

	color: #64748B;

	font-size: 11px;
	line-height: 1.45;

	text-align: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.kendisco-search-input {
		font-size: 16px !important;
	}


	.kendisco-search-results {
		max-height: 65vh;
	}


	.kendisco-live-product {
		min-height: 74px;

		grid-template-columns:
			54px minmax(0, 1fr);

		gap: 9px;

		padding: 7px 8px;
	}


	.kendisco-live-product-image {
		width: 54px;
		height: 54px;

		padding: 3px;
	}


	.kendisco-live-product-image img {
		max-width: 46px;
		max-height: 46px;
	}


	.kendisco-live-product-title {
		margin-bottom: 4px;

		font-size: 12px;
	}


	.kendisco-live-product-description {
		font-size: 10px;
		line-height: 1.35;
	}


	.kendisco-live-category {
		min-height: 37px;

		padding: 8px 10px;

		font-size: 11px;
	}


	.kendisco-search-view-all,
	.kendisco-search-view-all:link,
	.kendisco-search-view-all:visited {
		min-height: 44px;

		font-size: 11px;
	}

}

/* =========================================================
   WORDPRESS ADMIN BAR
   ========================================================= */

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


/* =========================================================
   WIDESCREEN
   ========================================================= */

@media (min-width: 1600px) {

	.kendisco-site-header {
		--kendisco-header-width: 1520px;
	}


	.kendisco-header-menu > li > a,
	.kendisco-header-menu > li > a:hover,
	.kendisco-header-menu > li > a:focus {
		padding-left: 11px;

		padding-right: 11px;

		font-size:
			12px !important;

		font-weight:
			600 !important;
	}

}


/* =========================================================
   MEDIUM DESKTOP
   ========================================================= */

@media
(min-width: 1025px)
and
(max-width: 1250px) {

	.kendisco-header-inner {
		gap: 10px;
	}


	.kendisco-header-menu > li > a,
	.kendisco-header-menu > li > a:hover,
	.kendisco-header-menu > li > a:focus {
		padding-left: 6px;

		padding-right: 6px;

		font-size:
			11px !important;

		font-weight:
			600 !important;
	}


	.kendisco-header-quote,
	.kendisco-header-quote:hover,
	.kendisco-header-quote:focus {
		padding-left: 10px;

		padding-right: 10px;

		font-size:
			10px !important;

		font-weight:
			700 !important;
	}

}


/* =========================================================
   TABLET + MOBILE
   ========================================================= */

@media (max-width: 1024px) {


	/* =====================================================
	   HEADER HEIGHT
	   ===================================================== */

	.kendisco-site-header {
		padding-top: 60px;
	}


	.kendisco-header-main {
		height: 60px;

		min-height: 60px;
	}


	/* =====================================================
	   TOP ROW
	   LOGO | QUOTE | MENU
	   ===================================================== */

	.kendisco-header-inner {
		height: 60px;

		min-height: 60px;

		padding:
			6px 15px;

		display: flex;

		flex-wrap: nowrap;

		align-items: center;

		gap: 10px;
	}


	/* =====================================================
	   MOBILE LOGO
	   ===================================================== */

	.kendisco-header-logo {
		order: 1;

		flex:
			0 0 56px;

		width: 56px;

		min-width: 56px;

		height: 46px;

		min-height: 46px;

		margin-right: auto;
	}


	.kendisco-header-logo-link {
		width: 56px;

		height: 46px;
	}


	.kendisco-header-logo-image {
		width:
			56px !important;

		height:
			46px !important;

		max-width:
			56px !important;

		max-height:
			46px !important;
	}


	/* =====================================================
	   QUOTE
	   ===================================================== */

	.kendisco-header-quote-wrap {
		order: 2;

		flex:
			0 0 auto;
	}


	/* =====================================================
	   MENU BUTTON
	   ===================================================== */

	button.kendisco-menu-toggle {
		display:
			block !important;

		order: 3;

		flex:
			0 0 38px;

		width: 38px;

		height: 38px;

		margin:
			0 !important;

		padding:
			8px !important;

		background:
			#FFFFFF !important;

		border:
			0 !important;

		border-radius:
			3px !important;

		box-shadow:
			none !important;
	}


	.kendisco-menu-toggle-line {
		background:
			var(--kendisco-header-navy) !important;
	}


	/* =====================================================
	   MOBILE NAVIGATION
	   ===================================================== */

	.kendisco-header-navigation {
		display: none;

		position: absolute;

		top: 60px;

		left: 0;

		right: 0;

		z-index: 99998;

		width: 100%;

		height: auto;

		min-width: 100%;

		background:
			var(--kendisco-header-navy);
	}


	.kendisco-header-navigation.is-open {
		display: block;
	}


	.kendisco-header-menu {
		display: block;

		width: 100%;

		height: auto;

		margin: 0;

		padding:
			8px 15px;
	}


	.kendisco-header-menu > li {
		position: relative;

		display: flex;

		flex-wrap: wrap;

		align-items: stretch;

		width: 100%;
	}


	/* =====================================================
	   MOBILE TOP LEVEL LINKS
	   ===================================================== */

	.kendisco-header-menu > li > a,
	.kendisco-header-menu > li > a:link,
	.kendisco-header-menu > li > a:visited,
	.kendisco-header-menu > li > a:hover,
	.kendisco-header-menu > li > a:focus {
		flex:
			1 1 0;

		width: auto;

		height: auto;

		min-width: 0;

		min-height: 42px;

		padding:
			11px 4px;

		border-bottom:
			1px solid
			rgba(255,255,255,0.10);

		font-size:
			13px !important;

		font-weight:
			600 !important;

		white-space: normal;
	}


	/* Hide desktop arrows */

	.kendisco-header-menu
	.menu-item-has-children
	> a::after {
		display:
			none !important;
	}


	/* =====================================================
	   MOBILE SUBMENU BUTTON
	   ===================================================== */

	button.kendisco-submenu-toggle {
		display:
			flex !important;

		appearance:
			none !important;

		-webkit-appearance:
			none !important;

		flex:
			0 0 42px;

		width: 42px;

		height: 42px;

		align-items: center;

		justify-content: center;

		margin:
			0 !important;

		padding:
			0 !important;

		background:
			transparent !important;

		border:
			0 !important;

		border-bottom:
			1px solid
			rgba(255,255,255,0.10) !important;

		border-radius:
			0 !important;

		box-shadow:
			none !important;

		color:
			var(--kendisco-header-orange) !important;

		cursor: pointer;
	}


	/* =====================================================
	   MOBILE ARROW
	   ===================================================== */

	.kendisco-submenu-arrow {
		display: block;

		width: 8px;

		height: 8px;

		border-right:
			2px solid
			var(--kendisco-header-orange) !important;

		border-bottom:
			2px solid
			var(--kendisco-header-orange) !important;

		transform:
			rotate(45deg)
			translate(-2px,-2px);

		transition:
			transform 0.2s ease;
	}


	.menu-item-has-children.is-submenu-open
	> .kendisco-submenu-toggle
	.kendisco-submenu-arrow {
		transform:
			rotate(225deg)
			translate(-1px,-1px);
	}


	/* =====================================================
	   MOBILE SUBMENUS
	   ===================================================== */

	.kendisco-header-menu .sub-menu {
		position:
			static !important;

		display:
			none !important;

		flex:
			0 0 100%;

		width:
			100% !important;

		margin:
			0 !important;

		padding:
			0 0 0 15px !important;

		background:
			transparent !important;

		border:
			0 !important;

		box-shadow:
			none !important;

		opacity:
			1 !important;

		visibility:
			visible !important;

		pointer-events:
			auto !important;

		transform:
			none !important;

		transition:
			none !important;
	}


	.kendisco-header-menu
	.menu-item-has-children.is-submenu-open
	> .sub-menu {
		display:
			block !important;
	}


	/* =====================================================
	   NESTED MOBILE ITEMS
	   ===================================================== */

	.kendisco-header-menu
	.sub-menu
	> li {
		position: relative;

		display: flex;

		flex-wrap: wrap;

		align-items: stretch;

		width: 100%;
	}


	.kendisco-header-menu
	.sub-menu
	> li
	> a,

	.kendisco-header-menu
	.sub-menu
	> li
	> a:hover,

	.kendisco-header-menu
	.sub-menu
	> li
	> a:focus {
		flex:
			1 1 0;

		width: auto;

		min-width: 0;

		min-height: 39px;

		padding:
			9px 5px;

		border-bottom:
			1px solid
			rgba(255,255,255,0.07);

		background:
			transparent !important;

		font-size:
			12px !important;

		font-weight:
			400 !important;
	}


	.kendisco-header-menu
	.sub-menu
	.sub-menu {
		padding-left:
			15px !important;
	}


	/* =====================================================
	   HAMBURGER → X
	   ===================================================== */

	.kendisco-menu-toggle.is-open
	.kendisco-menu-toggle-line:nth-child(1) {
		transform:
			translateY(6px)
			rotate(45deg);
	}


	.kendisco-menu-toggle.is-open
	.kendisco-menu-toggle-line:nth-child(2) {
		opacity: 0;
	}


	.kendisco-menu-toggle.is-open
	.kendisco-menu-toggle-line:nth-child(3) {
		transform:
			translateY(-6px)
			rotate(-45deg);
	}


	/* =====================================================
	   SEARCH
	   ===================================================== */

	.kendisco-header-search-inner {
		padding:
			6px 15px
			7px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

	.kendisco-header-inner {
		padding:
			6px 12px;
	}


	/* =====================================================
	   SMALL MOBILE LOGO
	   ===================================================== */

	.kendisco-header-logo {
		flex:
			0 0 48px;

		width: 48px;

		min-width: 48px;

		height: 42px;

		min-height: 42px;
	}


	.kendisco-header-logo-link {
		width: 48px;

		height: 42px;
	}


	.kendisco-header-logo-image {
		width:
			48px !important;

		height:
			42px !important;

		max-width:
			48px !important;

		max-height:
			42px !important;
	}


	/* =====================================================
	   QUOTE BUTTON
	   ===================================================== */

	.kendisco-header-quote,
	.kendisco-header-quote:hover,
	.kendisco-header-quote:focus {
		min-height: 35px;

		padding:
			0 9px;

		font-size:
			9px !important;

		font-weight:
			700 !important;
	}


	/* =====================================================
	   HAMBURGER
	   ===================================================== */

	button.kendisco-menu-toggle {
		flex-basis: 35px;

		width: 35px;

		height: 35px;

		padding:
			7px !important;
	}


	/* =====================================================
	   SEARCH
	   ===================================================== */

	.kendisco-header-search-inner {
		padding:
			6px 12px
			7px;
	}

}


/* =========================================================
   WORDPRESS ADMIN BAR MOBILE
   ========================================================= */

@media (max-width: 782px) {

	body.admin-bar
	.kendisco-header-main {
		top: 46px;
	}

}
