
.search-cont {
	border: 1px solid #8b7968;
	border-radius: 5px;
}

.headerbox-search-form {
	--font-family-body: var(--font-body);
	--search-icon: var(--gray-100);
	--seach-input-icon-bg: var(--primary-color-800);
	--seach-input-icon-bg-hover: var(--primary-color-600);

	display: flex;

}

.panel-header .mobile-nav.active .mobile-dd .search-cont{
	width:100%;
}

.headerbox-search-form input[type="search"] {
	width: 100%;
	height: 45px;
	margin: 0;
	background-color: transparent;
	font-size: 18px;
	text-indent: 14px;
	font-family: var(--font-family-body);
	color: #77624d;
}

.headerbox-search-form	input[type="search"]::-webkit-search-decoration,
.headerbox-search-form	input[type="search"]::-webkit-search-cancel-button,
.headerbox-search-form	input[type="search"]::-webkit-search-results-button,
.headerbox-search-form	input[type="search"]::-webkit-search-results-decoration { display: none; }

.headerbox-search-form input[type="search"]:focus {
	outline: 1px dashed #FFF;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 18px;
	color: #77624d;
}

.headerbox-search-form button {
	width: 49px;
    background-color: transparent;
    color: #77624d;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    font-size: 18px;
}

.headerbox-search-form button:focus {
	outline: 1px dashed #77624d;
}

.headerbox-search-form button:hover {
	background-color: transparent;
}

.search-cont .search-button {
	display: none;
	background: transparent;
	color: var(--search-icon);
}

@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
		border: none;
		border-radius: 0;
		border-left: 1px solid #FFF;
	}

	.search-cont .search-button {
		width: 38px;
		height: 38px;
		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: 0;
    	top: calc(100% + 4px);
		width: 275px;
		height: 47px;
		z-index: 2;
		transition: opacity 200ms ease-in-out;
		background-color: #FFF;
	    border-bottom-right-radius: 5px;
	    border-bottom-left-radius: 5px;
	}

	body.fixed-menu .search-cont .headerbox-search-form {
		top: calc(100% + 24px);
	}
	.search-cont .headerbox-search-form input[type="search"]{
		text-indent: 15px;
		color: #573f25;
		font-size: 18px;
	}

	.search-cont .headerbox-search-form input[type="search"]:focus{
		outline: none;
	}

	.search-cont .headerbox-search-form input[type="search"]::placeholder {
		color: #573f25;
		font-size: 18px;
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
	}

	.headerbox-search-form button {
		width: 51px;
	    color: #573f25;
	    height: 100%;
	    padding: 0;
	    margin: 0;
	    font-size: 18px;
	}

	.headerbox-search-form button:focus {
		outline: 1px dashed #FFF;
	}

	.headerbox-search-form button:hover {
		background-color: transparent;
		color: #573f25;
	}

	.search-cont .search-button {
		display: block;
	    font-size: 18px;
	    margin: 2px 7.5px;
	}

	.search-cont .search-button:focus {
		outline: 1px dashed var(--orange);
	}
}