/* Dont display the checkbox for sumoselect list disabled items*/
div.SumoSelect > div > ul > li.disabled > span {
	display:none !important;
}
.optWrapper > ul.options > .disabled > span{
	display:none !important;
}

div.sorting ul.sortby li a.active {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 10vw;
    height: 10vw;
    animation: spin 2s linear infinite;
    margin:50px auto 150px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
