/* Mobile header search toggle */

.header-mobile__search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 12px;
	background: #eef3ff;
	color: #4081fd;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0 !important;
	transition: background .2s ease, transform .2s ease, color .2s ease;
}

.header-mobile__search-toggle svg {
	display: block;
	width: 18px;
	height: 18px;
}

.header-mobile__search-toggle:hover,
.header-mobile__search-toggle.is-active {
	background: #dce8ff;
	color: #2f6ae8;
	transform: translateY(-1px);
}

.header-search--mobile {
	display: none;
	overflow: hidden;
	max-height: 0;
	margin: 0;
	opacity: 0;
	transform: translateY(-6px);
	transition:
		opacity .25s ease,
		transform .25s ease,
		max-height .25s ease,
		margin .25s ease;
}

.header-search--mobile.is-open,
.header-search--mobile:not([hidden]) {
	display: flex;
	max-height: 56px;
	margin: 10px 0 0;
	opacity: 1;
	transform: translateY(0);
}

.header-search--mobile[hidden] {
	display: none !important;
}

@media (min-width: 992px) {
	.header-mobile__search-toggle {
		display: none;
	}
}

@media (max-width: 575px) {
	:root {
		--site-header-offset: 68px;
	}

	.header-mobile__search-toggle {
		width: 36px;
		height: 36px;
		border-radius: 10px;
	}

	.header-mobile__search-toggle svg {
		width: 16px;
		height: 16px;
	}
}
