body {
  margin: 0;
}

html {
  overflow: hidden 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 {
  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);
  }
}

.cls-1 {
  fill: #9a999d;
}

.cls-2,
.cls-3,
.cls-4,
.cls-5,
.cls-7 {
  fill: none;
}

.cls-2,
.cls-3,
.cls-7 {
  stroke: #711610;
}

.cls-2,
.cls-3,
.cls-4,
.cls-9 {
  stroke-miterlimit: 10;
}

.cls-3,
.cls-4 {
  stroke-width: 6px;
}

.cls-4 {
  stroke: #e6d9aa;
}

.cls-6 {
  fill: #e6d9aa;
}

.cls-7 {
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 14px;
}

.cls-8 {
  fill: #711610;
}

.cls-11,
.cls-9 {
  fill: #fff;
}

.cls-9 {
  stroke: #84110a;
  stroke-width: 2px;
}

.cls-10,
.cls-13 {
  fill: #84110a;
}

.cls-12 {
  fill: #991d36;
}

.cls-12,
.cls-13 {
  fill-rule: evenodd;
}

.loading-logo {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  block-size: 100px;
  inline-size: 100px;
}

.loading-logo svg {
  block-size: 100%;
  inline-size: 100%;
  object-fit: contain;
}
