body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  gap: 1rem 0;
  inline-size: 100%;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo img {
  animation: loading-logo-zoom 1.6s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes loading-logo-zoom {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(2);
  }
}

.loading {
  position: relative;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 55px;
  inline-size: 55px;
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 100%;
  border-inline-start: 3px solid var(--initial-loader-color, #eee);
  inline-size: 100%;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotate-opacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  animation: rotate-opacity 1s ease infinite 0.2s;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate-opacity {
  0% {
    opacity: 0.1;
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: rotate(1turn);
  }
}



/* Cursor CSS */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate3d(-50%,-50%,0);
  transition: opacity 200ms linear, transform 150ms ease-out;
  z-index: 999999;
  will-change: transform;
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:rgba(9, 141, 156, 0.52);
  box-shadow: 0 2px 6px rgba(15,23,42,0.25);
  opacity: 1;
  transition: background 160ms ease, width 160ms ease, height 160ms ease;
}
.cursor-ring {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid rgb(5, 120, 132);
  background: transparent;
  transform-origin: center;
  opacity: 0.95;
  transition: border-color 160ms ease, transform 160ms ease, opacity 200ms ease;
  backdrop-filter: blur(0px);
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}