.item-spinner {
	border: 3px solid #f3f3f3;
	margin: auto;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	border-top: 3px solid #555;
	border-radius: 50%;
	width: 25px;
	height: 25px;
}

.search-spinner {
	border: 3px solid #d8b8b8;
	margin: auto;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	border-top: 3px solid #555;
	border-radius: 50%;
	width: 12px;
	height: 12px;

	position: absolute;
	top: 5px;
	right: 10px;
	display: none;
}

.uk-search.uk-loading > .uk-search-field + .search-spinner {
	display: block;
}

/* fix so that search results window doesnt overflow from offscreen menu on small devices */ 
@media (max-width: 768px)  {
  .uk-dropdown.uk-dropdown-search {
	max-width: 100%;
  }
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
                transform: rotate(360deg);
	}
}

