.gkhl-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #222;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.gkhl-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gkhl-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.gkhl-loader__mark {
  position: relative;
  width: 78px;
  height: 78px;
}

.gkhl-loader__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #e5edf6;
  border-top-color: #2d78c4;
  border-radius: 50%;
  animation: gkhl-spin .9s linear infinite;
}

.gkhl-loader__mark span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2d78c4;
}

.gkhl-loader__mark span:nth-child(1) {
  top: 16px;
  left: 33px;
}

.gkhl-loader__mark span:nth-child(2) {
  right: 18px;
  bottom: 19px;
  background: #ff9600;
}

.gkhl-loader__mark span:nth-child(3) {
  left: 18px;
  bottom: 19px;
  background: #06c755;
}

.gkhl-loader p {
  margin: 0;
  color: #2d5f9a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

body.gkhl-lock {
  overflow: hidden;
}

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

@media (prefers-reduced-motion: reduce) {
  .gkhl-loader,
  .gkhl-loader__mark::before {
    transition: none;
    animation: none;
  }
}
