.headerbox-search-form {
	position: relative;
	margin-bottom: 20px;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: 'kepler-std', serif;
	font-size: 16px;
	font-style: italic;
	color: #68717a;
	text-indent: 5px;
	box-shadow: none;
	border: 2px solid #ccc;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 16px;
}

.headerbox-search-form button {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 50px;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

.headerbox-search-form button:hover,
.headerbox-search-form button:focus {
	background-color: transparent;
}

.headerbox-search-form button .desktop-icon {
	display: none;
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 1025px) {
	.search-cont {
		position: relative;
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: block;
		width: 20px;
		height: 20px;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 40px;
		top: -15px;
		bottom: -15px;
		width: 340px;
		z-index: 25;
		transition: opacity 0.3s ease;
		margin: 0;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form input[type="search"] {
		width: 100%;
		height: 100%;
		margin: 0;
		font-family: 'kepler-std', serif;
		font-size: 18px;
		font-style: italic;
		color: #68717a;
		text-indent: 5px;
		box-shadow: none;
		border: none;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 18px;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.headerbox-search-form button .desktop-icon {
		display: block;
	}

	.headerbox-search-form button .mobile-icon {
		display: none;
	}

	.search-cont .search-button {
		display: block;
		background-color: transparent;
		padding: 0;
		margin: 14px 0;
	}
}