/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.woo-block-loading {
  position: relative;
  pointer-events: none;
}
.woo-block-loading::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
      background: #000;
    z-index: 1000;
    opacity: 0.5;
}
.woo-block-loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  border: 4px solid #ccc;
  border-top-color: #0073aa;
  border-radius: 50%;
  animation: woo-spin 1s linear infinite;
  z-index: 1001;
}
@keyframes woo-spin {
  to { transform: rotate(360deg); }
}