.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: transparent;
	--seach-input-icon-bg-hover: transparent;

	display: flex;
	border-bottom: 1px solid #82bcd2;
	width: 190px;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 100%;
	margin: 3px 0 0;
	color: var(--light-teal);
	font-size: 13.17px;
	letter-spacing: 0.04em;
	text-indent: var(--space-1);
	font-family: var(--font-body-medium-italic);
}

.headerbox-search-form input[type="search"]::placeholder {
	color: var(--light-teal);
	font-size: var(--text-base);
	text-indent: 62px;
	font-size: 13.17px;
}

.headerbox-search-form button {
	color: var(--light-teal);
	width: 22px;
	height: 25px;
	font-size: 13px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: var(--seach-input-icon-bg);
}

.headerbox-search-form input[type="search"]:focus,
.headerbox-search-form button::focus {
	outline: 1px dashed var(--light-teal);
}

.headerbox-search-form button:hover {
	background-color: var(--seach-input-icon-bg-hover);
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}
	.search-cont.active {
	    right: 4px;
	}

	.search-cont .search-button {
		width: 35px;
		height: 31px;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button .close {
		display: none;
	}

	.search-cont.active .search-button .open {
		display: none;
	}

	.search-cont.active .search-button .close {
		display: block;
	}

	.search-cont .headerbox-search-form {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		right: 100%;
		top: 0;
		width: 169px;
		height: 100%;
		z-index: 25;
		transition: opacity 200ms ease-in-out;
		border-bottom: none;
	}
	.search-cont .headerbox-search-form input[type="search"] {
		font-family: var(--font-display);
		color: var(--teal);
		font-size: 14px;
		letter-spacing: 0.02em;
		margin-top: 0;
	}

	.search-cont .headerbox-search-form input[type="search"]::placeholder {
		font-family: var(--font-display);
		color: var(--teal);
		font-size: 14px;
		text-indent: 67px;
	}
	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		display: none;
	}

	.search-cont .search-button {
		display: block;
		color: white;
	}
	.search-cont .search-button:focus {
		outline: 1px dashed rgba(255,255,255,0.5);
	}
	.search-cont .search-button.active {
		background-color: white;
		color: var(--teal);
	}

	/*Desktop Menu Search*/
	.menu .search-cont .search-button {
		display: none;
	}

	.menu .search-cont .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		position: relative;
		right: initial;
	}

	.menu .search-cont .headerbox-search-form {
		border-bottom: 1px solid #FFF;
	    margin: 0 18px 46px auto;
	    width: 289px;
	}

	.menu .search-cont .headerbox-search-form button{
		font-size: 22px;
		background: transparent;
		height: 35px;
		display: block;
    	color: white;
	}

	.menu .search-cont .headerbox-search-form button:hover {
		background: transparent;
	}

	.menu .search-cont .headerbox-search-form input[type="search"] {
		background-color: transparent;
		color: white;
		font-size: 20px;
		font-family: var(--font-body-medium-italic);
		letter-spacing: 0.04em;
		margin-top: 1px;
	}
	.menu .search-cont .headerbox-search-form button:focus,
	.menu .search-cont .headerbox-search-form input[type="search"]:focus {
		outline: 1px dashed rgba(255,255,255, 0.5);
	}

	.menu .search-cont .headerbox-search-form input[type="search"]::placeholder {
		color: white;
		font-size: 20px;
		font-family: var(--font-body-medium-italic);
		letter-spacing: 0.04em;
		text-indent: 95px;
	}

}