.livesearch{
	display: none;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e62a32;
	display: grid;
	grid-column-gap: 10px;
	grid-template-columns: 30px 1fr 100px;
	font-size: var(--a-font-size-normal);
}
.livesearch_open:hover svg g{
	stroke: #f29498;
}
.live_search_wrap{
	background: #fff none repeat scroll 0 0;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	height: 230px;
	left: 0;
	overflow: hidden;
	padding: 2em;
	position: absolute;
	top: -250px;
	transition: top 600ms cubic-bezier(0.17, 0.04, 0.03, 0.94) 0s;
	width: 100%;
	z-index: 1002;
}
.triple-spinner{
	display: block;
	position: relative;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: 1px solid transparent;
	border-top: 1px solid #e62a32;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
.triple-spinner::before,
.triple-spinner::after{
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 1px solid transparent;
}
.triple-spinner::before{
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-top-color: #000;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3.5s linear infinite;
}
.triple-spinner::after{
	top: 11px;
	left: 11px;
	right: 11px;
	bottom: 11px;
	border-top-color: #bc955a;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.75s linear infinite;
}
@-webkit-keyframes spin{
	from{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin{
	from{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.live_search_wrap.active{
	top: 0px !important;
	height: auto;
}
.live_search_wrap:active ~ .live_search_wrap{
	margin-top: 250px;
}
.livesearch_results a{
	font-weight: bold;
}
.livesearch_start{
	color: #e62a32;
	cursor: pointer;
	font-weight: bold;
}
.livesearch_start:hover{
	color: #f64a52;
}
input.livesearch_data, input.livesearch_data:focus{
	width: 100%;
	border: 0px solid white;
	color: #000;
	outline: none;
}
input.livesearch_data::placeholder{
	color: #000;
}
.livesearch_close{ cursor: pointer; }
.livesearch_close .line{ display: block; width: 1px; height: 20px; background: #e62a32; margin-left: 10px; }
.livesearch_close:hover .line { display: block; width: 1px; height: 20px; background: #f64a52; margin-left: 10px; }
.livesearch_close .line:nth-child(1){ 
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg); 
}  
.livesearch_close .line:nth-child(2){ 
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -20px;
}