.searche-title {}

.top_search-close,
.search-title-button {
	background-image: url(images/icon-search.svg);
	background-repeat: no-repeat;
	background-position: center;
	min-width: 48px;
	background-color: var(--red);
	border: none;
	height: 48px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s all;
}

.top_search-close:hover,
.search-title-button:hover {
	background-color: #333;
}

.top_search-close {
	background-image: none;
	background-color: var(--purple_light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.title-search-result {
	border: 1px solid #ced4da;
	display: none;
	overflow: hidden;
	z-index: 1010;
	background-color: #fff;
	padding: 10px;
	border-radius: 3px;
}

.search-title-result-item {
	border-bottom: 1px solid #ddd;
}

.search-title .search-title-result-item:last-child {
	border-bottom:  none;
}

.search-title-result-item-link {
	font-size: 16px;
	transition: 170ms linear all;
}

.search-title-result-item-price {
	font-size: 16px;
}

.search-title-result-item-current-price {
	font-weight: bold;
}

.search-title-result-item-old-price {
	font-size: 80%;
	text-decoration: line-through;
}

.top_search-wrapper {
	position: fixed;
	width: 100%;
	background: #fff;
	z-index: 1010;
	left: 0;
	top: 0;
	padding: 30px 0;
	transition: 0.4s all;
	border-bottom: 1px solid #cecece;
	transform: translateY(-100%);
}

.top_search-main {
	max-width: 800px;
	margin: 0 auto;
}

#title-search-input {
	border-radius: 10px;
	height: 50px;
	border: 1px solid #cecece;
}

.top_search-wrapper form .input-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

._top-search-active {
	transform: translateY(0%);
}

.top_search-wrapper .input-group-append {
	display: flex;
	align-items: center;
	gap: 5px;
}

.search_fade {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: #00000070;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s all;
}

._search-fade-active {
	opacity: 1;
	pointer-events: all;
}

