@media only screen {
	.search-cont {
		position: relative;
		display: flex;
		align-items: center;
	}

	.search-cont .search-label {
		display: none;
	}

	.search-cont .search-button {
		display: none;
	}

	.search-cont .headerbox-search-form {
		--font-family-body: var(--font-body);
		--search-icon: var(--gray-900);
		--search-input-icon: var(--primary-dark);
		--search-input-icon-bg: var(--primary-light);
		--search-input-icon-bg-hover: var(--search-input-icon);

		display: flex;
		width: 100%;
		margin: var(--space-2) 0 0;
		border: 1px solid var(--gray-400);
	}

	.headerbox-search-form input[type="search"] {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: var(--space-4) var(--space-1) var(--space-3);
		font-size: 15px;
		font-family: var(--font-family-body);
		background-color: var(--primary-light);
		outline: none;
	}

	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 12px;
		text-transform: uppercase;
		color: var(--primary-dark);
	}

	.headerbox-search-form button {
		width: 40px;
		padding: 0;
		margin: 0;
		flex-shrink: 0;
		color: var(--search-input-icon);
		background-color: var(--search-input-icon-bg);
		border: 0 none;
	}

	.headerbox-search-form button:hover {
		color: var(--search-input-icon-bg);
		background-color: var(--search-input-icon);
	}
}

@media screen and (min-width: 1200px) {
	.search-cont {
		position: relative;
		right: 8px;
	}

	.search-cont.active {
		position: absolute;
		right: 3px;
		top: 12px;
	}

	.search-cont .search-button {
		display: flex;
		align-items: center;
		padding: 0;
		margin-left: var(--space-2);
		background: transparent;
		border: 0 none;
	}

	.search-cont .search-button.active {
		margin-right: 10px;
	}

	.search-cont .search-button .close,
	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: block;
	}

	.search-cont .search-label {
		display: flex;
		padding-right: var(--space-2);
		font-weight: normal;
		font-size: 12px;
		text-transform: uppercase;
		text-decoration: underline;
		color: var(--primary-light);
	}

	.search-cont.active .search-label {
		display: none;
	}

	.search-cont .search-button:hover .search-label {
		text-decoration: none;
	}

	.search-cont .search-button i {
		font-size: 22px;;
		color: var(--highlight);
	}

	.search-cont .headerbox-search-form {
		width: 0;
		height: 100%;
		margin: 0;
		opacity: 0;
		pointer-events: none;
		z-index: 25;
	}

	.search-cont.active .headerbox-search-form {
		width: 300px;
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form input[type="search"] {
		height: 40px;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 40px;
		padding: 0;
		margin: 0;
	}
}

@media screen and (min-width: 1800px) {
	.search-cont .search-label {
		font-size: 14px;
	}
}
