/*****************styling for search plugin***************/
.site-header-primary-section-center.hide-sb-logo, 
	.site-header-primary-section-center.site-header-section.ast-flex.ast-grid-section-center.hide-sb-logo{
	opacity: 0;
	transition: opacity	250ms ease;
}

.ast-desktop input.search-field#search-field{
	width: 70vw !important;
	transition: all 250ms ease;
}

.ast-header-break-point input.search-field#search-field{
	width: 60vw !important;
	transition: all 250ms ease;
}

/* styling result search div*/

.live-search-elements-wrapper{
	position: absolute;
	z-index: 999;
	overflow-y: auto;
	top: 100%;
	max-height: 700%;
	width: 90%;
	margin-inline: 5%;
	left: 0;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0px 4px 8px #52accc;
}

.ast-desktop .search-item{
	display: flex;
	font-size: 1rem;
	text-align: center;
	align-items: center;
	margin: 10px;
	gap: 10px;
	border-bottom: 1px solid gray;
}

.ast-header-break-point .search-item{
	display: flex;
	justify-content: space-evenly;
	font-size: 0.8rem;
	text-align: center;
	align-items: center;
	margin: 2px;
	gap: 3px;
	border-bottom: 1px solid #f7dc6f;
}

.ast-header-break-point .search-item a{
	max-width: 50%;
}

.search-item span{
	color:#e30022;
	font-weight: bolder;
}

.search-item img{
	width: 30px;
	height: 30px;
}

/*************style scroll bar******* */

/* Chrome, Safari, Edge */
.live-search-elements-wrapper::-webkit-scrollbar {
	width: 3px; /* thin scrollbar */
}

.live-search-elements-wrapper::-webkit-scrollbar-track {
	background: #f1f1f1; /* light track */
	border-radius: 3px;
}

.live-search-elements-wrapper::-webkit-scrollbar-thumb {
	background-color: #52accc; /* your blue accent */
	border-radius: 3px;
}

/* Firefox */
.live-search-elements-wrapper {
	scrollbar-width: thin;          /* makes it thinner */
	scrollbar-color: #52accc #f1f1f1; /* thumb color + track color */
}

/*-------style see more btn----------*/

.live-search-elements-wrapper .see-more-btn{
	background: transparent;
	color: #52accc;
}
