.theunit-item-count-loader {
    border: 2px solid #aaa; /* Light grey */
    border-top: 2px solid #6c98e1; /* Blue */
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    width: 16px;
    height: 16px;
    animation: spin 0.5s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

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