/* Loading spinners while fetching data */

.loading_sort {
	display: grid;
	place-content: center;
	width: 75px;
	height: 75px;
	border: 3px solid #e0e1e1;
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
	}
}

/* Dropdown Overlay for filters */

[id^="taxonomy_"]+[id] {
	position: absolute;
	z-index: 1;
}

div section#dwb_shop_layered_nav_dwb_shop_layered_nav_design_1_ div:hover:last-child {
	background-color: white !important;
}

[id^="taxonomy"]+[id]>ul>li {
	cursor: pointer;
}

[id^="taxonomy"]+[id]>ul>li.loading_cursor {
	cursor: wait;
}