.wdm-ajax-search {
	flex: 1;
	position: relative;
}

.wdm-ajax-search .wdm-search-input, 
.wdm-ajax-search .wdm-search-input:focus {
	width: 100%;
	border: 1px solid #000;
	border-radius: 8px;
	height: 55px;
	padding: 0 10px 0 10px;
}

.wdm-search-results.visible {
	display: block;
}

.wdm-search-results {
	max-height: 350px;
	overflow-y: auto;
	position: absolute;
	width: 100%;
	z-index: 999;
	background-color: #fff;
	/* 0px 4px 6px rgba(0, 0, 0, 0.25); */
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 0 0 8px 8px;
}

.wdm-search-item {
	display: flex;
	gap: 10px;
	padding: 10px 10px 0 10px;
}

.wdm-search-item img {
	height: 65px;
    width: 65px;
    object-fit: contain;
}

.wdm-search-item .title {
	transition: all 0.3s ease-in-out;
}

.wdm-search-item:hover .title {
	opacity: 0.8;
}

.wdm-all-results {
	position: sticky;
	bottom: 0;
	z-index: 9999;
	padding: 10px;
	background-color: #fff;
	width: 100%;
	display: block;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.no-results {
    padding: 10px;
}

.wdm-search-icon {
	position: absolute;
	right: 4px;
	top: 4px;
	height: 48px;
	width: 48px;
	background-color: #F5F5F7;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

@keyframes pulsate {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.wdm-search-icon.loading svg {
    animation: pulsate 1s ease-in-out infinite;
}

.handheld-navigation .site-search {
    padding: 0 !important;
}

.handheld-navigation .wdm-search-results {
    position: unset;
}

.handheld-navigation .wdm-search-item img {
	height: 55px;
    width: 55px;
}