.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg-hover: var(--primary-color-600);

	display: flex;
	padding-bottom: 19px;
}

.headerbox-search-form label{
	font-size: 20px;
	font-weight: 800;
	font-style: italic;
	font-family: var(--font-display);
	margin-right: 8px;
	margin-bottom: 2px;
	align-self: center;
}
.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 44px;
	margin: 0;
	text-indent: 10px;
	font-size: 17.24px;
	line-height: 35.69px;
	color: white;
	font-family: var(--font-family-body);
	background-color: #196f7a;
	border-bottom: 2px solid #0bc3c4;
}

.headerbox-search-form input[type="search"]:focus {
	outline: 1px dashed #c7cdd6;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 17.24px;
	line-height: 35.69px;
	color: white;
}

.headerbox-search-form button {
	width: 41px;
	padding: 0;
	margin: 0;
	flex-shrink: 0;
	background-color: transparent;
	font-size: 17px;
	background-color: #307e88;
	border-bottom: 2px solid #0bc3c4;
}

.headerbox-search-form button:hover {
	background-color: #307e88;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

.search-holder {
	display: none;
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		opacity: 0;
		-webkit-transition: opacity 450ms ease-in;
	    -moz-transition: opacity 450ms ease-in;
	    -o-transition: opacity 450ms ease-in;
	    transition: opacity 450ms ease-in;
	    transition-delay: 500ms;
	}

	.search-holder.active .search-cont {
		opacity: 1;
	}

	.desktop-search .search-button {
		width: 40px;
		height: 40px;
		color: var(--teal);
		background-color: transparent;
		border-radius: var(--rounded-circle);
		-webkit-transition: background-color 320ms ease;
		transition: background-color 320ms ease;
		font-size: 18px;
	}

	.desktop-search .search-button:hover {
		background-color: rgba(0, 0, 0, 0.1);
	}

	.search-button-container .search-button:focus {
		outline: 1px dashed #c5d2e1;
	}

	.search-button-container .search-button img {
		width: 24px;
	}

	.search-button-container .search-button .close,
	.search-button-container.active .search-button .open {
		display: none;
	}

	.search-button-container.active .search-button .close {
		display: block;
	}
	
	.search-cont .headerbox-search-form label{
		color: white;
		font-size: 50px;
		font-weight: 900;
		line-height: 49px;
		margin-bottom: 0;
	}

	.search-cont .headerbox-search-form input[type="search"] {
		font-size: 20px;
		line-height: 1em;
		color: white;
		height: auto;
		text-indent: 8px;
		flex: 1 1 auto;
		width: 342px;
	}

	.search-cont .headerbox-search-form input[type="search"]:focus {
		outline: 1px dashed rgba(255,255,255, 0.1);
	}

	.search-cont .headerbox-search-form input[type="search"]::placeholder {
		font-size: 20px;
		line-height: 1em;
		color: white
	}

	.headerbox-search-form button {
		width: 48px;
		font-size: 20px;
		flex: 1 0 auto;
		padding: 0;
		margin: 0;
	}
	.headerbox-search-form button:hover {
		background-color: #307e88;
	}
	.search-cont .search-button {
		display: block;
	}

	/*Search Holder*/
	.search-holder {
		display: flex;
	    position: fixed;
	    top: 0;
	    z-index: 200;
	    overflow: hidden;
	    padding-top: 15px;
	    width: 100%;
	    height: 100vh;
	    -webkit-box-pack: center;
	    -webkit-justify-content: center;
	    -ms-flex-pack: center;
	    justify-content: center;
	    -webkit-box-align: center;
	    -webkit-align-items: center;
	    -ms-flex-align: center;
	    align-items: center;
	    background-color: rgba(2, 33, 66, 0.97);
	    opacity: 0;

	    transform: translateX(-100%);
	    -webkit-transition: all 300ms ease-in;
	    -moz-transition: all 300ms ease-in;
	    -o-transition: all 300ms ease-in;
	    transition: all 300ms ease-in;
	}

	.search-holder.active {
	    display: flex;
	    opacity: 1;
	    transform: translateX(0%);
	}

	.search-holder .close-button {
		width: 70px;
		position: absolute;
		right: 48px;
		top: 32px;
		z-index: 1;
		background-color: transparent;
		opacity: 0;
		-webkit-transition: opacity 350ms ease-in;
	    -moz-transition: opacity 350ms ease-in;
	    -o-transition: opacity 350ms ease-in;
	    transition: opacity 350ms ease-in;
	    transition-delay: 800ms;
	}

	.search-holder .triangle {
		position: absolute;
	    left: auto;
	    top: auto;
	    right: auto;
	    bottom: auto;
	    width: 2170px;
	    height: auto;
	    max-width: none;
	    opacity: 0.1;
	}

	.search-holder.active .close-button {
		opacity: 1;
	}

	.search-holder .close-button img {
		width: 100%;
	}
	/*End of Search Holder*/
}