.search-cont {
	padding: 0 20px;
}

.header-container .search-cont {
	padding: 0;
}

.panel-three-column .search-cont {
	padding: 0;
}

.headerbox-search-form {
	display: flex;
	padding: 10px 10px 10px 15px;
	border-radius: 50px;
	border: 1px solid #02343B;
	align-items: center;
}

.header-container .headerbox-search-form {
	border-radius: 0;
	border: none;
	align-items: flex-start;
	background-color: #BDD6DB;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 25px;
	color: #39C5DA;
	line-height: 1.2;
	border: none;
	box-shadow: none;
	height: 50px;
	font-family: 'Josefin Sans', sans-serif;
}

.header-container .headerbox-search-form input[type="search"] {
	font-size: 16px;
	font-style: italic;
	font-weight: 600;
	background-color: #BDD6DB;
	border-bottom: 1px solid #21A0B8;
	height: 20px;
	font-family: 'Cormorant Garamond', serif;
}

.headerbox-search-form input[type="search"]::placeholder {
	text-transform: uppercase;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: lighter;
	font-style: normal;
	color: #39C5DA;
	font-size: 25px;
}

.header-container .headerbox-search-form input[type="search"]::placeholder {
	text-transform: unset;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	font-style: normal;
	color: #21A0B8;
	font-size: 16px;
}

.headerbox-search-form input[type="search"]:focus {
	box-shadow: none;
	background-color: unset;
}

.headerbox-search-form button {
	padding: 0 20px 0 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
	color: #02343B;
	font-size: 32px;
	transition: background 0.3s ease;
}

.header-container .headerbox-search-form button {
	color: #21A0B8;
	font-size: 14px;
	right: 0;
}

.headerbox-search-form button:focus {
	color: #21A0B8;
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 1025px) {
	.headerbox-search-form {
		padding: 10px 0;
	}

	.headerbox-search-form input[type="search"] {
		background-color: transparent;
		padding: 1em;
	}

	.header-container .headerbox-search-form input[type="search"] {
		padding: 0;
		background-color: unset;
	}

	.headerbox-search-form label {
		padding: 2px 0 0 10px;
	}

	.search-cont {
		position: relative;
	}

	.search-cont .search-button {
		padding: 0;
		margin: 0;
		margin-left: 15px;
		background-color: transparent;
		color: #21A0B8;
		font-size: 18px;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		height: auto;
		margin: 0 auto;
		width: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		background-color: transparent;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		max-width: 1160px;
	}

	.header-container .search-cont.active .headerbox-search-form {
		max-width: none;
	}

	.headerbox-search-form button {
		padding-right:  30px;
	}

	.header-container .headerbox-search-form button {
		padding-left: 5px;
		right: 0;
	}

	.headerbox-search-form button:hover {
		cursor: pointer;
		background-color: transparent;
		color: #21A0B8;
	}
}