#anvil-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

#anvil-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

#anvil-loader .loader-wrapper {
  position: relative;
  width: 100%;
  height: 100dvh;
}

.border-loader {
  position: absolute;
}

.border-loader.border__left {
  top: 0;
  left: 0;
  animation-name: leftBorderAnimation;
  animation-duration: 0.5s;
}

.border-loader.border__right {
  bottom: 0;
  right: 0;
  animation-name: rightBorderAnimation;
  animation-duration: 1s;
}

.logo-loader {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-loader-wrapper {
  display: flex;
  justify-content: center;
  margin-left: 80px;
}

.logo-loader .logo__anvil {
  width: 320px;
  height: auto;
  animation-name: anvilAnimation;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: -4;
}
.logo-loader .logo__62nd {
  width: 275px;
  height: auto;
  align-self: flex-end;
  opacity: 0;
  z-index: -5;
  transform: translateX(-80px);
  margin-bottom: 35px;
  animation-delay: 750ms;
  animation-name: logoAnimation;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes anvilAnimation {
  0% {
    opacity: 0;
    transform: translateX(70%);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoAnimation {
  0% {
    opacity: 0;
    transform: translateX(-140px);
  }
  100% {
    opacity: 1;
    /* transform: translateX(-80px);xz */
  }
}

@keyframes leftBorderAnimation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rightBorderAnimation {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
