.search-cont {
	width: 100%;
}

.headerbox-search-form {
	position: relative;
	margin-bottom: 15px;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 25px;
	font-size: 14px;
	text-indent: 5px;
	background: #f7efdf;
	margin: 0;
	font-family: var(--poppins);
	text-transform: uppercase;
	border: none;
	padding: 2px 30px 2px 2px;
	font-weight: 500;
	box-shadow: none;
}

.headerbox-search-form input[type="search"]:focus {
	background: #f7efdf;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 14px;
	font-family: var(--poppins);
	text-transform: uppercase;
	color: #3c3d3c;
	font-weight: 500;
}

.headerbox-search-form button {
	position: absolute;
	top: 4px;
	right: 0;
	width: 30px;
	padding: 0;
	margin: 0;
	font-size: 15px;
}

.headerbox-search-form button i {
	color: var(--muted-brown);
}

.search-cont .search-button {
	display: none;
}

@media screen and (min-width: 1220px) {
	.headerbox-search-form input[type="search"] {
		font-size: 25px;
		text-indent: 0;
		background: transparent;
		box-shadow: none;
		color: #fff;
	}
	.headerbox-search-form input[type="search"]:focus {
		background: var(--blue-gray);
		box-shadow: none;
	}
	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 25px;
		color: #fff;
		letter-spacing: 0.1em;
	}
	.headerbox-search-form button i {
		color: #fff;
		font-size: 23px;
	}
	.search-cont {
		position: relative;
		transition: transform ease 0.6s 0.3s;
	}

	.search-cont .search-button {
		display: flex;
		align-items: center;
		padding: 0;
		margin: 0;
		font-family: var(--poppins);
		letter-spacing: 2px;
		color: #fff;
		text-transform: uppercase;
		margin-left: 10px;
	}
	.search-cont .search-button .closed {
		display:none;
	}
	.search-cont.active .search-button .search {
		display: inline;
	}
	.search-cont.active .search-button {
		height: 44px;
		position: absolute;
		right: 10%;
		top: -39px;
	}
	.search-cont.active .search-button .closed {
		display:inline;
	}
	.search-cont.active .search-button .search {
		display: none;
	}

	.search-cont .search-button i {
		width: 37px;
		height: 37px;
		border: 1px solid #fff;
		border-radius: 50%;
		background-color: var(--terracotta);
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 10px;
		position: relative;
		top: 2px;
		font-size: 16px;
		padding: 0 0 2px 2px;
	}

	.search-cont .search-button .close {
		display: none;
	}
	.search-cont.active {
		z-index: 50;
		position: absolute;
		width: 100%;
		left: 0;
		top: 0;
	}
	.search-cont.active .blue-wrapper,
	.search-cont.active .blue-bar {
		transition: ease 0.6s;
	}
	.search-cont .blue-wrapper,
	.search-cont .blue-bar {
		transform: scaleY(1);
		transition: transform ease 0.6s 0.3s;
	}
	.search-cont.active .blue-bar {
		height: 38px;
		background-color: var(--blue-gray);
		width: 100%;
	}
	.search-cont.active .blue-wrapper {
		text-align: center;
		box-sizing: border-box;
		width: 100%;
		height: 280px;
		background: var(--blue-gray);
		padding: 0 0px 80px;
		transform-origin: top;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: flex;
	}
	
	.search-cont .blue-wrapper .looking {
		display: none;
	}
	.search-cont.active .blue-wrapper .looking {
		display: flex;
		color: #fff;
		font-size: 79px;
		font-family: var(--knockout-48);
		text-transform: uppercase;
		margin-bottom: 35px;
		margin-top: 34px;
	}
	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 240px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		position: static;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 52%;
		border-bottom: 1px solid #fff;
		padding-bottom: 8px;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
		position: static;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.search-cont.active .blue-wrapper .looking {
		font-family: serif;
	}
	.search-cont.active .blue-wrapper .looking {
		margin-top: 0;
	}
}
