/*
 https://css-loaders.com
 HTML: <div class="wppd-loader"></div>
  */

.wppd-loader-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffffa6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.wppd-loader {
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 3px;
  background: radial-gradient(farthest-side, #424242 95%, #0000) 50% 0/8px 8px no-repeat,
  radial-gradient(farthest-side, #0000 calc(100% - 2px), #424242 calc(100% - 2px)) content-box;
  animation: wppd-loader-animation 2s infinite;
}

@keyframes wppd-loader-animation {
  to {
    transform: rotate(1turn)
  }
}
