.hidden {
  display: none;
}

.datekita-page-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.datekita-page-loader--hidden {
  opacity: 0;
}

.datekita-donut-loader {
  width: 42px;
  height: 42px;
  border: 5px solid rgba(160, 160, 160, 0.35);
  border-top-color: #8f8f8f;
  border-radius: 50%;
  animation: datekita-donut-spin 700ms linear infinite;
}

.datekita-loader-text {
  margin-top: 14px;
  color: #4b4b4b;
  font-size: 15px;
  font-weight: 500;
}

@keyframes datekita-donut-spin {
  to {
    transform: rotate(360deg);
  }
}
