.header {
	position: sticky;
	top: 0;
	background: var(--mirage-50);
	padding: 6px 0;
	border-top: 6px solid var(--pastel-green-500);
	z-index: 1001;
	transition: top ease .1s, box-shadow ease .1s;
}

.header.scroll {
	box-shadow: 0 0 7px var(--mirage-200);
}

.header.toggle {
	background: var(--white);
}

.pkh-wrap-header {
	position: relative;
	display: grid;
	align-items: center;
	grid-template-columns: 61px auto 40px;
	grid-gap: 16px;
	padding: 0 16px;
}

.header-logo {
	line-height: 0;
}

.header-logo__img {
	height: 52px;
	transition: height ease .1s;
}

.header.active .header-logo__img {
	height: 52px;
}

.header-nav {
	display: none;
	flex-direction: column;
	gap: 16px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: calc(100vh - 76px);
	padding: 0 16px 24px;
	background: var(--white);
	overflow: auto;
}

.head-notice ~ .header .header-nav {
	height: calc(100vh - 146px);
}

.head-notice.show ~ .header .header-nav {
	height: calc(100vh - 124px);
}

.header.toggle .header-nav {
	display: flex;
	z-index: 2;
}

.header-menu li {
	position: relative;
	margin-bottom: 4px;
}

.header-menu li.menu-item-has-children {
	display: grid;
	align-items: center;
	grid-template-columns: auto 40px;
	grid-column-gap: 8px;
}

button.menu-toggle-btn {
	height: 40px;
	background: var(--mirage-50);
	line-height: 0;
	transition: color ease .15s;
}

button.menu-toggle-btn .icon {
	font-size: 25px;
}

button.menu-toggle-btn.active .icon {
	transform: rotate(180deg);
}

.header-menu a {
	display: flex;
	align-items: center;
	height: 40px;
	font-size: 15px;
	color: var(--mirage-900);
	font-weight: 600;
	text-transform: uppercase;
}

.header-menu li:hover > a,
.header-menu li:hover > button.menu-toggle-btn,
.header-menu li.current-menu-item > a,
.header-menu li.current-menu-parent > a,
.header-menu li.current-menu-ancestor > a {
	color: var(--thunderbird-700);
}

.header-menu li.green > a {
	color: var(--pastel-green-600);
}

.header-menu li.green > a:hover {
	color: var(--pastel-green-700);
}


.header-menu .sub-menu {
	display: none;
	padding: 12px 0 0 12px;
	grid-column: 1 / 3;
}

.header-menu .sub-menu li:not(:last-child) {
	margin-bottom: 12px;
}

.header-menu .sub-menu.show {
	display: block;
}

.header-menu .sub-menu .sub-menu {
	top: 0;
	left: calc(100% + 36px);
}

.header-search__form {
	display: grid;
	grid-template-columns: 1fr 24px;
	grid-gap: 12px;
}

.header-search__form-wrap {
	position: relative;
}

.header-search__form-wrap input.pkh-input--text {
	color: var(--mirage-950);
	background: var(--mirage-50);
}

.header-search__form-wrap input.pkh-input--text::placeholder {
	color: var(--mirage-500);
}

.header-search__form-button {
	position: relative;
}

.header-search__form-button .icon {
	font-size: 24px;
	color: var(--mirage-500);
}

.header-search__form-button:hover .icon {
	color: var(--mirage-950);
}

.header-search__result {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	padding: 24px;
	width: 100%;
	background: var(--white);
	box-shadow: 0 3px 3px var(--mirage-200);
	border-radius: 12px;
	line-height: 20px;
}

.header-search__result:empty {
	display: none;
}

.header-search__result a:not(.button) {
	display: block;
	margin-bottom: 6px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--mirage-100);
}

.header-notification__button {
	position: relative;
	display: block;
	color: var(--mirage-500);
	margin-left: auto;
	line-height: 1;
	transition: color ease .1s;
}

.header-notification__button:hover {
	color: var(--mirage-950);
}

.header-notification__button span {
	position: absolute;
	top: -4px;
	right: -8px;
	display: none;
	width: 18px;
	height: 18px;
	font-size: 10px;
	color: var(--white);
	font-weight: 600;
	background: var(--pastel-green-700);
	border-radius: 50%;
	line-height: 18px;
	text-align: center;
}

.header-notification__button span.active {
	display: block;
}

.header-notification__button .icon {
	font-size: 24px;
}

.header-auth {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-auth .button {
	padding: 0 24px;
	flex: 1;
}

.header-auth .button-register {
	font-weight: 400;
}

.header-hamburger__button {
	width: 40px;
	padding: 11px;
	margin-left: auto;
	flex-direction: column;
	gap: 6px;
}

.header-hamburger__button span {
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--white);
	transition: transform ease .1s, opacity ease .1s;
}

.header-hamburger__button.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.header-hamburger__button.active span:nth-child(2) {
	transform: translatex(10px);
	opacity: 0;
}

.header-hamburger__button.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.header-cta {
	position: absolute;
	top: calc(100% + 16px);
	left: 12px;
	padding: 24px;
	background: var(--white);
	width: calc(100% - 24px);
	display: none;
	transition: top ease .1s;
}

.header-cta.show {
	display: block;
}

.header.scroll .header-cta {
	top: calc(100% + 6px);
}

.header-cta__title {
	font-weight: 600;
}

.header-cta__content {
	color: rgba(29, 34, 47, .5);
	margin: 12px 0;
}

.header-cta__button {
	width: 100%;
}

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

@media (min-width: 576px) {
	.head-notice ~ .header .header-nav {
		height: calc(100vh - 166px);
	}

	.header-cta,
	.header.scroll .header-cta {
		top: 100%;
	}

	.header-cta {
		left: auto;
		right: 12px;
		max-width: 310px;
		width: 100%;
	}
}

@media (min-width: 768px) {

}

@media (min-width: 992px) {
	.header {
		padding: 12px 0 10px;
	}

	.header.toggle {
		background: var(--mirage-50);
	}

	.pkh-wrap-header {
		grid-template-columns: 87px 1fr;
		grid-gap: 32px;
	}

	.header-logo__img {
		height: 75px;
	}

	.header-nav {
		position: static;
		display: grid;
		align-items: center;
		grid-template-columns: 1fr 24px 24px auto;
		grid-gap: 16px;
		padding: 0;
		background: none;
		height: auto;
		overflow: unset;
	}

	.header.toggle .header-nav {
		display: grid;
	}

	.head-notice ~ .header .header-nav {
		height: auto;
	}

	.head-notice.show ~ .header .header-nav {
		height: auto;
	}

	.header-menu {
		margin-right: 16px;
	}

	.header-menu a {
		height: auto;
	}

	.header-menu > ul {
		display: flex;
		justify-content: center;
		gap: 32px;
	}

	.header-menu > ul > li {
		padding: 8px 0;
	}

	.header-menu li {
		margin-bottom: 0;
	}

	.header-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: -24px;
		padding: 24px;
		min-width: 250px;
		max-width: 270px;
		background: var(--white);
		box-shadow: 3px 3px 0px 1px var(--mirage-200);
		border-radius: 12px;
	}

	.header-menu li.menu-item-has-children {
		grid-template-columns: auto 20px;
		grid-column-gap: 4px;
	}

	button.menu-toggle-btn {
		height: 20px;
		background: none;
	}

	button.menu-toggle-btn .icon {
		font-size: 20px;
	}

	.header-search__form {
		position: relative;
		line-height: 0;
		display: block;
	}

	.header-search__form-wrap {
		position: absolute;
		right: -12px;
		top: 50%;
		transform: translateY(-52%);
		width: 0;
		pointer-events: none;
		opacity: 0;
		transition: all ease .1s;
	}

	.header-search__form-wrap.show {
		width: 250px;
		pointer-events: auto;
		opacity: 1;
	}

	.header-search__result {
		box-shadow: 3px 3px 0px 1px var(--mirage-200);
	}

	.header-notification--mob {
		display: none;
	}

	.header-hamburger {
		display: none;
	}
}