.header-bottom-line #title-search {
	margin-left: 50px;
	margin-bottom: 12px;
}
.title-search-wrapper {
	padding: 0 16px;
	width: 290px;
	display: flex;
	align-items: center;
	background: var(--secondary_color);
	transition: .3s ease;
}
.title-search-wrapper input {
	padding: 0 15px 0 0;
	font-weight: 400;
	width: 100%;
	height: 42px;
}
.title-search-result {
	overflow: auto;
	z-index: 2050;
	background-color: #fff;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
	max-height: 264px;
	scrollbar-color: var(--main_color) var(--secondary_color);
	scrollbar-width: thin;
	display: none;
	animation: fadeIn .3s ease forwards;
}
.title-search-result::-webkit-scrollbar {
	width: 3px;
	background: var(--secondary_color);
}
.title-search-result::-webkit-scrollbar-thumb {
	background-color: var(--main_color);
}
.title-search-result .bx_item_block{
	padding: 10px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
}
.title-search-result .bx_item_block:first-child {
	border: none;
}
.title-search-result .others_result, .title-search-result .all_result {
	width: 100%;
}

.title-search-result .bx_img_element, .title-search-result .bx_image {
	width: 45px;
	height: 45px;
}
.title-search-result .bx_image {
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat;
}
.title-search-result .bx_item_element a{
	text-overflow: ellipsis;
	max-width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	padding: 0;
	overflow: hidden;
	height: 32px;
	line-height: 16px;
	margin-bottom: 2px;
}
.title-search-result .bx_item_element a b {
	font-weight: 900;
}
.title-search-result .bx_item_element a:hover{
	color: var(--main_color);
}
.title-search-result .bx_item_price {
	font-weight: bold;
	font-size: 13px;
}
.title-search-result .bx_item_price span.bx_measure{
	font-weight: 400;
	color: var(--secondary-txt);
	font-size: 12px;
}
.title-search-result .bx_item_price .old {
	font-weight: normal;
	position: relative;
	display: inline-block;
	font-size: 11px;
	margin-left: 5px;
}
.title-search-result .bx_item_price .bx_price{
	display: inline-block;
	font-weight: 500;
	font-size: 12px;
}
.title-search-result .all_result {
	border: none;
	padding: 0;
}
.top-search .search-title-button-sm svg:last-child {
	display: none;
}
.all_result .all_result_title {
	width: 100%;
}
.title-search-hide-wrap {
	position: relative;
	transition: .3s ease;
}
#show-title-search {
	position: absolute;
	right: 0;
	top: 0;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
	z-index: 12;
	transition: .3s ease;
}
#hide-title-search {
	position: absolute;
	right: 0;
	top: 0;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
	z-index: 12;
	transition: .3s ease;
}
#hide-title-search svg {
	width: 25px;
	height: 25px;
}
@media (max-width: 1350px) {
	.title-search-hide-wrap {
		width: 42px;
		height: 42px;
		margin-bottom: 12px;
		margin-left: 30px;
	}
	.title-search-hide-wrap:hover {
		background: var(--secondary_color);
	}
	.title-search-wrapper {
		width: 42px;
		position: absolute;
		top: 0;
		right: 0;
		opacity: 0;
	}
	.header-title-search {
		pointer-events: none;
		position: absolute !important;
		top: 0;
		right: 0;
		width: 290px;
		height: 42px;
		z-index: 10;
	}
	.title-search-wrapper input {
		padding-right: 22px;
	}
	.title-search-hide-wrap .search-title-button {
		display: none;
	}
	#show-title-search {
		opacity: 1;
		pointer-events: auto;
	}
	.title-search-hide-wrap.active .header-title-search {
		pointer-events: auto;
	}
	.title-search-hide-wrap.active .title-search-wrapper {
		opacity: 1;
		width: 290px;
	}
	.title-search-hide-wrap.active #show-title-search {
		opacity: 0;
		pointer-events: none;
	}
	.title-search-hide-wrap.active #hide-title-search {
		opacity: 1;
		pointer-events: auto;
	}
}
@media (max-width: 992px) {
	.title-search-hide-wrap {
		margin-bottom: 0;
		margin-left: 10px;
		width: 40px;
		height: 40px;
	}
	#show-title-search, #hide-title-search {
		width: 40px;
		height: 40px;
	}
	.title-search-wrapper input, .title-search-wrapper {
		height: 40px;
	}
}
@media (max-width: 450px) {
	.header-title-search {
		width: calc(100vw - 20px);
		margin: 0 !important;
	}
	.title-search-hide-wrap.active .title-search-wrapper {
		width: calc(100vw - 20px);
	}
}