.live-search {
	position: relative;
	z-index: 10050;
}

.live-search ul {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100%;
	z-index: 10051;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.live-search.is-loading ul::before {
	content: "";
	display: block;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(41, 142, 234, 0.9), transparent);
	animation: moviewp-live-search-pulse 0.8s ease-in-out infinite;
}

@keyframes moviewp-live-search-pulse {
	0% {
		opacity: 0.35;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.35;
	}
}

#main #header-secondary .filters ul li.search {
	position: relative;
	overflow: visible;
}

@media (max-width: 600px) {
	#main #header-secondary .filters ul li.search .live-search,
	#main #header-secondary .filters ul li.search .live-search ul {
		display: block;
	}

	#main #header-secondary .filters ul li.search .live-search ul {
		position: absolute;
		left: 0;
		right: 0;
		width: 100% !important;
		max-height: min(70vh, 420px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.live-search ul li {
		min-height: 48px;
	}

	.live-search ul li a {
		min-height: 44px;
	}
}
