@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

[aria-busy="true"]::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  cursor: wait;
  z-index: 98;
}

[aria-busy="true"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--loading-size);
  height: var(--loading-size);
  margin-top: calc(var(--loading-size) / 2 * -1);
  margin-left: calc(var(--loading-size) / 2 * -1);
  border: var(--loading-stroke) solid rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.45);
  animation: rotate calc(var(--loading-duration)) linear infinite;
  z-index: 99;
}

[aria-busy="true"] {
  --loading-size: 30px;
  --loading-stroke: 3px;
  --loading-duration: 1s;

  position: relative;
}
