.ceh-header {
	--ceh-logo-w: 22%;
	--ceh-nav-w: 56%;
	--ceh-actions-w: 22%;
	--ceh-submenu-min-width: 220px;
	--ceh-submenu-offset: 8px;
	--ceh-submenu-bridge: 36px;
	--ceh-panel-width: 320px;
	--ceh-burger-size: 24px;
	--ceh-transition: 0.22s ease;
	--ceh-active-color: #0b5fff;
	--ceh-active-bg: #0b5fff;
	--ceh-active-border: transparent;
	--ceh-active-radius: 6px;
	position: relative;
	width: 100%;
	z-index: 100;
}

.ceh-header,
.ceh-header * {
	box-sizing: border-box;
}

.ceh-header__bar {
	position: relative;
	width: 100%;
	background: #fff;
	z-index: 2;
}

.ceh-header--sticky .ceh-header__bar {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.admin-bar .ceh-header--sticky .ceh-header__bar {
	top: 32px;
}

.ceh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin-inline: auto;
}

.ceh-header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	z-index: 3;
}

.elementor-widget-ceh_header,
.elementor-widget-ceh_header > .elementor-widget-container {
	overflow: visible;
}

.ceh-header__logo a {
	text-decoration: none;
}

.ceh-header__logo .custom-logo-link,
.ceh-header__logo .ceh-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
	flex-shrink: 0;
}

.ceh-header__logo img,
.ceh-header__logo .custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 160px;
	max-height: 48px;
	object-fit: contain;
}

.ceh-site-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ceh-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-inline-start: auto;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
	z-index: 1003;
	position: relative;
	flex-shrink: 0;
	appearance: none;
	-webkit-appearance: none;
}

.ceh-hamburger {
	position: relative;
	display: block;
	width: var(--ceh-burger-size);
	height: calc(var(--ceh-burger-size) * 0.72);
}

.ceh-hamburger span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background: #1a1a1a;
	border-radius: 2px;
	transition: transform var(--ceh-transition), opacity var(--ceh-transition), top var(--ceh-transition);
}

.ceh-hamburger span:nth-child(1) {
	top: 0;
}

.ceh-hamburger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.ceh-hamburger span:nth-child(3) {
	bottom: 0;
	top: auto;
}

.ceh-header.is-open .ceh-hamburger span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.ceh-header.is-open .ceh-hamburger span:nth-child(2) {
	opacity: 0;
}

.ceh-header.is-open .ceh-hamburger span:nth-child(3) {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%) rotate(-45deg);
}

.ceh-header__overlay,
.ceh-header__overlay.is-open {
	display: block;
}

.ceh-header__overlay {
	position: fixed;
	inset: 0;
	z-index: 100001;
	background: rgba(15, 23, 42, 0.45);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--ceh-transition), visibility var(--ceh-transition);
}

.ceh-header.is-open .ceh-header__overlay,
.ceh-header__overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.ceh-header__panel {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	z-index: 100002;
	width: min(var(--ceh-panel-width), 92vw);
	margin: 0;
	padding: 20px 24px 32px;
	background: #fff;
	box-shadow: -16px 0 40px rgba(15, 23, 42, 0.12);
	overflow: auto;
	transform: translateX(110%);
	transition: transform var(--ceh-transition);
	pointer-events: auto;
}

.ceh-header.is-open .ceh-header__panel,
.ceh-header__panel.is-open {
	transform: none;
}

.ceh-header.ceh-from-side-left .ceh-header__panel,
.ceh-header__panel.ceh-panel--side-left {
	right: auto;
	left: 0;
	transform: translateX(-110%);
	box-shadow: 16px 0 40px rgba(15, 23, 42, 0.12);
}

.ceh-header.ceh-from-side-left.is-open .ceh-header__panel,
.ceh-header__panel.ceh-panel--side-left.is-open {
	transform: none;
}

.ceh-header.ceh-from-top .ceh-header__panel,
.ceh-header__panel.ceh-panel--top {
	top: 0;
	right: 0;
	left: 0;
	bottom: auto;
	width: 100%;
	max-height: min(92vh, 100%);
	transform: translateY(-110%);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.ceh-header.ceh-from-top.is-open .ceh-header__panel,
.ceh-header__panel.ceh-panel--top.is-open {
	transform: none;
}

.ceh-header__panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 44px;
}

.ceh-header__panel-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.ceh-header__panel-brand img,
.ceh-header__panel-brand .custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 140px;
	max-height: 40px;
	object-fit: contain;
}

.ceh-header__panel-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-inline-start: auto;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #1a1a1a;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}

.ceh-header__panel-close:hover {
	background: rgba(15, 23, 42, 0.06);
}

.ceh-header__nav,
.ceh-header__actions {
	width: 100%;
}

.ceh-header__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: stretch;
	flex-wrap: wrap;
	gap: 10px;
}

.ceh-menu {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ceh-menu-item {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ceh-menu-item-inner {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 2px;
}

.ceh-menu-link {
	display: inline-flex;
	align-items: center;
	width: 100%;
	color: #1a1a1a;
	text-decoration: none;
	line-height: 1.3;
	white-space: normal;
	transition: color var(--ceh-transition), background-color var(--ceh-transition), border-color var(--ceh-transition);
}

.ceh-menu-style-button .ceh-menu > .ceh-menu-item > .ceh-menu-item-inner .ceh-menu-link {
	background: #f4f6f8;
}

.ceh-menu-item.current-menu-item > .ceh-menu-item-inner .ceh-menu-link,
.ceh-menu-item.current_page_item > .ceh-menu-item-inner .ceh-menu-link {
	color: var(--ceh-active-color, #0b5fff);
}

.ceh-active-mark-parent .ceh-menu-item.current-menu-ancestor > .ceh-menu-item-inner .ceh-menu-link,
.ceh-active-mark-parent .ceh-menu-item.current-menu-parent > .ceh-menu-item-inner .ceh-menu-link {
	color: var(--ceh-active-color, #0b5fff);
}

.ceh-active-as-button .ceh-menu-item.current-menu-item > .ceh-menu-item-inner .ceh-menu-link,
.ceh-active-as-button .ceh-menu-item.current_page_item > .ceh-menu-item-inner .ceh-menu-link {
	color: var(--ceh-active-color, #ffffff);
	background-color: var(--ceh-active-bg, #0b5fff);
	border-color: var(--ceh-active-border, var(--ceh-active-bg, #0b5fff));
	border-radius: var(--ceh-active-radius, 6px);
}

.ceh-active-as-button.ceh-active-mark-parent .ceh-menu-item.current-menu-ancestor > .ceh-menu-item-inner .ceh-menu-link,
.ceh-active-as-button.ceh-active-mark-parent .ceh-menu-item.current-menu-parent > .ceh-menu-item-inner .ceh-menu-link {
	color: var(--ceh-active-color, #ffffff);
	background-color: var(--ceh-active-bg, #0b5fff);
	border-color: var(--ceh-active-border, var(--ceh-active-bg, #0b5fff));
	border-radius: var(--ceh-active-radius, 6px);
}

.ceh-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-inline-start: auto;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: inherit;
}

.ceh-chevron {
	display: block;
	width: 7px;
	height: 7px;
	margin-top: -3px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--ceh-transition);
}

.ceh-menu-item.is-submenu-open > .ceh-menu-item-inner .ceh-chevron {
	transform: rotate(225deg);
	margin-top: 2px;
}

.ceh-sub-menu {
	display: none;
	flex-direction: column;
	position: static;
	z-index: 20;
	width: 100%;
	min-width: 0;
	margin: 4px 0 0;
	padding: 0 0 0 12px;
	list-style: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.ceh-menu-item.is-submenu-open > .ceh-sub-menu {
	display: flex;
}

.ceh-sub-menu .ceh-menu-item-inner {
	width: 100%;
	border-radius: 6px;
}

.ceh-sub-menu .ceh-menu-link {
	flex: 1;
	width: 100%;
	padding: 10px 12px;
	white-space: normal;
}

.ceh-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	transition: color var(--ceh-transition), background-color var(--ceh-transition), border-color var(--ceh-transition);
}

.ceh-cta--primary {
	color: #fff;
	background: #0b5fff;
	border-color: #0b5fff;
}

.ceh-cta--primary:hover {
	color: #fff;
	background: #0849c6;
	border-color: #0849c6;
}

.ceh-cta--secondary {
	color: #1a1a1a;
	background: #f1f5f9;
	border-color: #f1f5f9;
}

.ceh-cta--secondary:hover {
	background: #e2e8f0;
	border-color: #e2e8f0;
}

.ceh-cta--outline {
	color: #0b5fff;
	background: transparent;
	border-color: #0b5fff;
}

.ceh-cta--outline:hover {
	color: #fff;
	background: #0b5fff;
}

.ceh-placeholder {
	margin: 0;
	padding: 8px 12px;
	color: #64748b;
	font-size: 13px;
}

.ceh-menu-link:focus-visible,
.ceh-submenu-toggle:focus-visible,
.ceh-header__toggle:focus-visible,
.ceh-cta:focus-visible,
.ceh-logo-link:focus-visible,
.ceh-site-title:focus-visible,
.custom-logo-link:focus-visible {
	outline: 2px solid #0b5fff;
	outline-offset: 2px;
}

body.ceh-menu-open {
	overflow: hidden;
}

.ceh-header.is-open .ceh-header__toggle {
	z-index: 100003;
}

/* Desktop layout: restore horizontal header + hover dropdowns */
@media (min-width: 768px) {
	.ceh-bp-767.ceh-header .ceh-header__inner {
		display: grid;
		grid-template-columns: var(--ceh-logo-w) minmax(0, var(--ceh-nav-w)) var(--ceh-actions-w);
		align-items: center;
		column-gap: 16px;
		justify-content: initial;
	}

	.ceh-bp-767.ceh-header:not(.ceh-has-actions) .ceh-header__inner {
		grid-template-columns: var(--ceh-logo-w) minmax(0, 1fr);
	}

	.ceh-bp-767.ceh-header .ceh-header__toggle,
	.ceh-bp-767.ceh-header .ceh-header__overlay,
	.ceh-bp-767.ceh-header .ceh-header__panel-head {
		display: none;
	}

	.ceh-bp-767.ceh-header .ceh-header__panel {
		display: contents;
		position: static;
		width: auto;
		padding: 0;
		overflow: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
	}

	.ceh-bp-767.ceh-header .ceh-header__nav,
	.ceh-bp-767.ceh-header .ceh-header__actions {
		width: auto;
	}

	.ceh-bp-767.ceh-header .ceh-header__actions {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
	}

	.ceh-bp-767.ceh-header .ceh-menu {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px;
	}

	.ceh-bp-767.ceh-header .ceh-menu-item-inner,
	.ceh-bp-767.ceh-header .ceh-menu-link,
	.ceh-bp-767.ceh-header .ceh-cta {
		width: auto;
	}

	.ceh-bp-767.ceh-header .ceh-menu-link {
		white-space: nowrap;
	}

	.ceh-bp-767.ceh-header .ceh-submenu-toggle {
		margin-inline-start: 0;
		pointer-events: none;
	}

	.ceh-bp-767.ceh-header .ceh-menu > .ceh-has-children:hover::after,
	.ceh-bp-767.ceh-header .ceh-menu > .ceh-has-children:focus-within::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		height: calc(var(--ceh-submenu-offset) + var(--ceh-submenu-bridge));
		z-index: 19;
	}

	.ceh-bp-767.ceh-header .ceh-sub-menu > .ceh-has-children:hover::after,
	.ceh-bp-767.ceh-header .ceh-sub-menu > .ceh-has-children:focus-within::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: calc(8px + var(--ceh-submenu-bridge));
		z-index: 19;
	}

	.ceh-bp-767.ceh-header .ceh-sub-menu {
		position: absolute;
		top: calc(100% + var(--ceh-submenu-offset));
		left: 0;
		display: flex;
		width: auto;
		min-width: var(--ceh-submenu-min-width);
		margin: 0;
		padding: 8px;
		background: #fff;
		border-radius: 10px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(4px);
		transition: opacity var(--ceh-transition), transform var(--ceh-transition), visibility var(--ceh-transition);
		transition-delay: 0.16s;
	}

	.ceh-bp-767.ceh-header .ceh-sub-menu .ceh-sub-menu {
		top: 0;
		left: calc(100% + 8px);
		transition-delay: 0.16s;
	}

	.ceh-bp-767.ceh-header .ceh-menu-item:hover > .ceh-sub-menu,
	.ceh-bp-767.ceh-header .ceh-menu-item:focus-within > .ceh-sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.ceh-bp-767.ceh-header .ceh-menu-item:hover > .ceh-menu-item-inner .ceh-chevron,
	.ceh-bp-767.ceh-header .ceh-menu-item:focus-within > .ceh-menu-item-inner .ceh-chevron {
		transform: rotate(225deg);
		margin-top: 2px;
	}

	.ceh-bp-767.ceh-header.is-open .ceh-header__panel {
		transform: none;
	}
}

@media (min-width: 1025px) {
	.ceh-bp-1024.ceh-header .ceh-header__inner {
		display: grid;
		grid-template-columns: var(--ceh-logo-w) minmax(0, var(--ceh-nav-w)) var(--ceh-actions-w);
		align-items: center;
		column-gap: 16px;
		justify-content: initial;
	}

	.ceh-bp-1024.ceh-header:not(.ceh-has-actions) .ceh-header__inner {
		grid-template-columns: var(--ceh-logo-w) minmax(0, 1fr);
	}

	.ceh-bp-1024.ceh-header .ceh-header__toggle,
	.ceh-bp-1024.ceh-header .ceh-header__overlay,
	.ceh-bp-1024.ceh-header .ceh-header__panel-head {
		display: none;
	}

	.ceh-bp-1024.ceh-header .ceh-header__panel {
		display: contents;
		position: static;
		width: auto;
		padding: 0;
		overflow: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
	}

	.ceh-bp-1024.ceh-header .ceh-header__nav,
	.ceh-bp-1024.ceh-header .ceh-header__actions {
		width: auto;
	}

	.ceh-bp-1024.ceh-header .ceh-header__actions {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
	}

	.ceh-bp-1024.ceh-header .ceh-menu {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px;
	}

	.ceh-bp-1024.ceh-header .ceh-menu-item-inner,
	.ceh-bp-1024.ceh-header .ceh-menu-link,
	.ceh-bp-1024.ceh-header .ceh-cta {
		width: auto;
	}

	.ceh-bp-1024.ceh-header .ceh-menu-link {
		white-space: nowrap;
	}

	.ceh-bp-1024.ceh-header .ceh-submenu-toggle {
		margin-inline-start: 0;
		pointer-events: none;
	}

	.ceh-bp-1024.ceh-header .ceh-menu > .ceh-has-children:hover::after,
	.ceh-bp-1024.ceh-header .ceh-menu > .ceh-has-children:focus-within::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		height: calc(var(--ceh-submenu-offset) + var(--ceh-submenu-bridge));
		z-index: 19;
	}

	.ceh-bp-1024.ceh-header .ceh-sub-menu > .ceh-has-children:hover::after,
	.ceh-bp-1024.ceh-header .ceh-sub-menu > .ceh-has-children:focus-within::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: calc(8px + var(--ceh-submenu-bridge));
		z-index: 19;
	}

	.ceh-bp-1024.ceh-header .ceh-sub-menu {
		position: absolute;
		top: calc(100% + var(--ceh-submenu-offset));
		left: 0;
		display: flex;
		width: auto;
		min-width: var(--ceh-submenu-min-width);
		margin: 0;
		padding: 8px;
		background: #fff;
		border-radius: 10px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(4px);
		transition: opacity var(--ceh-transition), transform var(--ceh-transition), visibility var(--ceh-transition);
		transition-delay: 0.16s;
	}

	.ceh-bp-1024.ceh-header .ceh-sub-menu .ceh-sub-menu {
		top: 0;
		left: calc(100% + 8px);
		transition-delay: 0.16s;
	}

	.ceh-bp-1024.ceh-header .ceh-menu-item:hover > .ceh-sub-menu,
	.ceh-bp-1024.ceh-header .ceh-menu-item:focus-within > .ceh-sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.ceh-bp-1024.ceh-header .ceh-menu-item:hover > .ceh-menu-item-inner .ceh-chevron,
	.ceh-bp-1024.ceh-header .ceh-menu-item:focus-within > .ceh-menu-item-inner .ceh-chevron {
		transform: rotate(225deg);
		margin-top: 2px;
	}

	.ceh-bp-1024.ceh-header.is-open .ceh-header__panel {
		transform: none;
	}
}

@media (min-width: 1201px) {
	.ceh-bp-1200.ceh-header .ceh-header__inner {
		display: grid;
		grid-template-columns: var(--ceh-logo-w) minmax(0, var(--ceh-nav-w)) var(--ceh-actions-w);
		align-items: center;
		column-gap: 16px;
		justify-content: initial;
	}

	.ceh-bp-1200.ceh-header:not(.ceh-has-actions) .ceh-header__inner {
		grid-template-columns: var(--ceh-logo-w) minmax(0, 1fr);
	}

	.ceh-bp-1200.ceh-header .ceh-header__toggle,
	.ceh-bp-1200.ceh-header .ceh-header__overlay,
	.ceh-bp-1200.ceh-header .ceh-header__panel-head {
		display: none;
	}

	.ceh-bp-1200.ceh-header .ceh-header__panel {
		display: contents;
		position: static;
		width: auto;
		padding: 0;
		overflow: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
	}

	.ceh-bp-1200.ceh-header .ceh-header__nav,
	.ceh-bp-1200.ceh-header .ceh-header__actions {
		width: auto;
	}

	.ceh-bp-1200.ceh-header .ceh-header__actions {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
	}

	.ceh-bp-1200.ceh-header .ceh-menu {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px;
	}

	.ceh-bp-1200.ceh-header .ceh-menu-item-inner,
	.ceh-bp-1200.ceh-header .ceh-menu-link,
	.ceh-bp-1200.ceh-header .ceh-cta {
		width: auto;
	}

	.ceh-bp-1200.ceh-header .ceh-menu-link {
		white-space: nowrap;
	}

	.ceh-bp-1200.ceh-header .ceh-submenu-toggle {
		margin-inline-start: 0;
		pointer-events: none;
	}

	.ceh-bp-1200.ceh-header .ceh-menu > .ceh-has-children:hover::after,
	.ceh-bp-1200.ceh-header .ceh-menu > .ceh-has-children:focus-within::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		height: calc(var(--ceh-submenu-offset) + var(--ceh-submenu-bridge));
		z-index: 19;
	}

	.ceh-bp-1200.ceh-header .ceh-sub-menu > .ceh-has-children:hover::after,
	.ceh-bp-1200.ceh-header .ceh-sub-menu > .ceh-has-children:focus-within::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: calc(8px + var(--ceh-submenu-bridge));
		z-index: 19;
	}

	.ceh-bp-1200.ceh-header .ceh-sub-menu {
		position: absolute;
		top: calc(100% + var(--ceh-submenu-offset));
		left: 0;
		display: flex;
		width: auto;
		min-width: var(--ceh-submenu-min-width);
		margin: 0;
		padding: 8px;
		background: #fff;
		border-radius: 10px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(4px);
		transition: opacity var(--ceh-transition), transform var(--ceh-transition), visibility var(--ceh-transition);
		transition-delay: 0.16s;
	}

	.ceh-bp-1200.ceh-header .ceh-sub-menu .ceh-sub-menu {
		top: 0;
		left: calc(100% + 8px);
		transition-delay: 0.16s;
	}

	.ceh-bp-1200.ceh-header .ceh-menu-item:hover > .ceh-sub-menu,
	.ceh-bp-1200.ceh-header .ceh-menu-item:focus-within > .ceh-sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.ceh-bp-1200.ceh-header .ceh-menu-item:hover > .ceh-menu-item-inner .ceh-chevron,
	.ceh-bp-1200.ceh-header .ceh-menu-item:focus-within > .ceh-menu-item-inner .ceh-chevron {
		transform: rotate(225deg);
		margin-top: 2px;
	}

	.ceh-bp-1200.ceh-header.is-open .ceh-header__panel {
		transform: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .ceh-header--sticky .ceh-header__bar {
		top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ceh-header,
	.ceh-header * {
		transition: none !important;
	}
}

/* Isolate from Hello Elementor header-footer.css */
body .ceh-header .ceh-menu,
body .ceh-header .ceh-sub-menu {
	list-style: none !important;
	margin: 0;
	padding: 0;
	float: none !important;
}

body .ceh-header .ceh-menu-item,
body .ceh-header .menu-item {
	float: none !important;
	list-style: none !important;
}

body .ceh-header .ceh-menu-link,
body .ceh-header .menu-item a.ceh-menu-link {
	background-image: none;
}

body .ceh-header .menu-item-has-children > a::after,
body .ceh-header .ceh-has-children > .ceh-menu-item-inner > .ceh-menu-link::after {
	content: none !important;
	border: 0 !important;
	display: none !important;
}
