.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #43b484;
  user-select: none;
}

.loader-logo {
  position: absolute;
  aspect-ratio: 99/34;
  color: white;
  width: 121px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);

  svg {
    width: 100%;
    height: 100%;
  }
}

.loader-content {
  img {
    position: absolute;
    right: 20px;
    bottom: calc(50% + 22px + 28px);
    width: 191px;
    aspect-ratio: 191/144;
  }

  span {
    position: absolute;
    right: 20px;
    top: calc(50% + 22px);
    transform: translateY(-100%);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: white;
  }
}

@media (min-width: 945px) {
  .loader-logo {
    transform: none;
    width: 372px;
    left: 60px;
    top: 43.89%;
  }

  .loader-content {
    position: absolute;
    right: 84px;
    top: 44.8%;
    display: flex;
    column-gap: 38px;
    align-items: end;

    img {
      position: static;
    }

    span {
      font-size: 16px;
      padding-bottom: 32px;
      transform: none;
      position: static;
    }
  }
}
