.headerbox-search-form {
	display: flex;
}

.headerbox-search-form input[type="search"],
.headerbox-search-form input[type="search"]:focus {
	width: 100%;
    height: 100%;
    margin: 0;
    font-size: 19px;
    text-indent: 0;
    background: transparent;
    border: none;
	box-shadow: none;
	color: #fff;
	font-family: 'degular-display', sans-serif;
	letter-spacing: 1px;
	padding: 0;
}

.headerbox-search-form input[type="search"]::placeholder {
	font-size: 19px;
	color: #fff;
	text-transform: uppercase;
}

.headerbox-search-form button {
	width: 40px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 5px;
}

.headerbox-search-form button:focus,
.headerbox-search-form button:active,
.headerbox-search-form button:hover {
	background-color: transparent;
}

.headerbox-search-form button i {
	color: #1D2F49;
	font-size: 15px;
}

.search-cont .search-button {
	display: none;
}

.search-cont .desktop {
	display: none;
}
@media screen and (min-width: 64em) {
	.search-cont {
		position: relative;
	}

	.search-cont.active {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 80px;
	}

	.search-cont::after {
		content: '';
		display: block;
		width: 0;
		height: 100vh;
		background: #205BC6;
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		transition: width ease .4s .4s, opacity ease .4s .4s;
	}
	.scrolled .search-cont::after {
		left: 80px;
	}
	.search-cont.active::after {
		width: 100vw;
		opacity: 1;
		transition: width ease .4s, opacity ease .4s;
		z-index: -1;
	}

	.search-cont .search-button {
		width: 38px;
		height: 38px;
		padding: 0;
		margin: 0;
		background: #fff;
		color: #1D2F49 !important;
		border-radius: 20px;
		margin-bottom: 18px;
	}

	.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: fixed;
		right: 50%;
		top: 50%;
		transform: translate(50%, -50%);
		width: 665px;
		height: 250px;
		z-index: 25;
		transition: opacity ease .4s;
		/* display: flex; */
		/* flex-direction: column; */
	}

	.search-cont.active .headerbox-search-form {
		opacity: 1;
		pointer-events: all;
		transition: opacity ease .4s .4s;
	}

	.headerbox-search-form button {
		width: 40px;
		height: 100%;
		padding: 0;
		margin: 0;
	}

	.search-cont .search-button {
		display: block;
	}
	.panel-header.search-active .search-cont .search-button {
		position: fixed;
		top:30px;
		left: 20px;
	}

	.panel-header.search-active.scrolled .search-cont .search-button {
		top: 95px;
	}

	.panel-header.search-active.scrolled .fixed-header {
		position: relative;
		z-index: 1;
	}
	.panel-header.search-active.scrolled .fixed-header::before {
		opacity: 0;
		pointer-events: none;
	}
	.panel-header.search-active .search-cont .desktop {
		display: block;
		position: absolute;
		top: 0;
		left: calc(50% - 5px);
		transform: translateX(-50%);
		width: 575px;
		text-align: right;
		font-size: 40px;
		text-transform: uppercase;
		font-family: 'Alternate Gothic W05 No_2';
		line-height: 0em;
		letter-spacing: 1px;
	}
	.panel-header.search-active .search-cont .desktop::before {
		content: '';
		display: block;
		border-top: 4px solid #FFC337;
		border-left: 4px solid #FFC337;
		width: 45px;
		height: 45px;
		position: absolute;
		left: 5px;
		top: -70px;
	}
	.headerbox-search-form input[type="search"], .headerbox-search-form input[type="search"]:focus {
		font-size: 38px;
		color: #9aabbd;
	}
	.headerbox-search-form input[type="search"]::placeholder {
		font-size: 38px;
		color: #9aabbd;
	}
	.headerbox-search-form::after {
		content: '';
		display: block;
		height: 1px;
		width: 100%;
		background-color: #fff;
		position: absolute;
		bottom: 90px;
		left: 0;

	}
	.headerbox-search-form button i {
		font-size: 23px;
	}
}