.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray52);
	--seach-input-icon-bg: var(--white);
	--seach-input-icon-bg-hover: var(--white);

	display: flex;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 42px;
	margin: 0;
	font-size: var(--text-base);
	text-indent: var(--space-1);
	font-family: var(--font-family-body);
	color: var(--gray52);
	padding-left: var(--space-3);
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: var(--text-base);
	color: var(--gray52);
}

.headerbox-search-form button {
	width: 40px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.headerbox-search-form button img {
	width: 17px;
	height: auto;
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
	font-size: 20px;
}

.panel-header.microsite .search-cont .search-button {
	color: var(--white);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button i {
		font-size: 24px;
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: block;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: -7px;
		top: 121%;
		width: 336px;
		height: 50px;
		padding-right: 7px;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		box-shadow: var(--shadow-lg);
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 50px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}

	.headerbox-search-form input[type="search"] {
		height: 50px;
	}
}