#title-search {
	position: relative;
	width: 100%;
}

#bx_incl_area_2 {
	width: 100%;
}

#title-search-input {
	width: 100%;
	height: 106px;
	outline: none;
	font-weight: 500;
	font-size: 30px;
	border: 0;
	background: transparent;
	padding-right: 145px;
}

#title-search-input::placeholder {
	color: #828AA5;
}

.search-btn {
	width: 35px;
	height: 35px;
	background: url('img/search-ico-head.svg') no-repeat;
	background-size: cover !important;
	position: absolute;
	right: 80px;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 0;
	outline: none;
}

.close-search-box {
	width: 31px;
	height: 31px;
	background: url('img/close-search.svg') no-repeat;
	background-size: cover !important;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 0.3;
	cursor: pointer;
	transition: 0.3s ease;
}

.close-search-box:hover {
	opacity: 0.7;
}


@media (max-width: 768px) {
	#title-search-input {
		font-size: 19px;
		padding-right: 45px;
	}

	.search-btn {
		width: 21px;
		height: 21px;
		background-size: 21px !important;
		right: 0px;
	}

	.close-search-box {
		width: 19px;
		height: 19px;
		background-size: 13px !important;
		background-position: center !important;
		position: absolute;
		right: -9px;
		bottom: initial;
		margin: auto;
		opacity: 0.7;
		cursor: pointer;
		transition: 0.3s ease;
		background-color: #fff;
		padding: 21px;
	}

	.search-show .close-search-box {
		top: -106px;
	}

	.search-show.active .close-search-box {
		top: 106px;
	}
}