.search-cont {
	width: 100%;
}

.headerbox-search-form {
	display: flex;
	height: 46px;
	width: 100%;
}

.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]:focus {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 15px;
	text-indent: 5px;
	color: #000;
	background-color: #F5F8F3;
	font-family: 'Post Grotesk';
	font-weight: 700;
	font-style: normal;
	font-size: 17px;
	line-height: 20px;
	border: none;
	box-shadow: none;
}

::placeholder {
	font-size: 17px;
	line-height: 20px;
	color: var(--Cabernet);
	font-family: 'Post Grotesk';
	font-weight: 400;
}

.headerbox-search-form button {
	width: 60px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	color: var(--Vine);
	background-color: #F5F8F3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search-cont .search-button {
	display: none;
}

.desktop-search-dropdown-cont {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	top: 130px;
	background-color: var(--Vine);
}

@media (min-width: 70.063em) {
	.desktop-search-dropdown-cont.active {
		display: block
	}

	.search-button {
		display: block;
		width: 42px;
		height: 38px;
		padding: 0;
		margin: 0;
		background-color: transparent;
	}

	.search-button img {
		width: 23px;
	}

	.search-button:focus,
	.search-button:hover {
		background-color: transparent;
	}

	.search-button .dark {
		display: none;
	}

	.header-container.header-dark .search-button .dark,
	.header-container.no-slideshow .search-button .dark,
	.header-container .panel-header.search-active .search-button .dark {
		display: inline;
	}

	.header-container.header-dark .search-button .white,
	.header-container.no-slideshow .search-button .white,
	.header-container .panel-header.search-active .search-button .white {
		display: none;
	}

	.desktop-search-dropdown-cont .inner {
		width: 100%;
		max-width: 740px;
		margin: 100px auto;
		padding: 0 20px;
		display: flex;
		align-items: center;
	}

	.desktop-search-dropdown-cont .inner .contentRender_name_plugins_search_headerbox {
		flex: 1;
	}

	.headerbox-search-form input[type="search"],
	.headerbox-search-form input[type="search"]:focus {
		font-size: 20px;
		font-weight: 600;
	}

	.desktop-search-dropdown-cont .inner button {
		background-color: transparent;
		width: 80px;
		padding: 0;
		margin: 0;
	}

	.desktop-search-dropdown-cont .headerbox-search-form {
		position: relative;
	}

	.desktop-search-dropdown-cont .headerbox-search-form input {
		padding-right: 50px;
	}

	.desktop-search-dropdown-cont .headerbox-search-form button {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 20px ;
		width: 24px;
	}
}