body {
  font-family: 'Inter', sans-serif;
  margin: 0;
}

#loader {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #FFEE64 0%, #FF8000 79.56%);

  overflow: hidden;
  position: relative;

  @media screen and (max-width: 744px) {
    &::before {
      top: auto;
      left: -33px;
      transform: rotate(18deg);
    }
  }
}

@supports (height: 100dvh) {
  #loader {
    height: 100dvh;
  }
}

#image_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 53px;

  position: relative;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 511px;
}

#main-image {
  position: relative;
  width: 600px;
  height: auto;
  margin-right: 30px;
}

.loader-content__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);

  @media screen and (max-width: 744px) {
    bottom: 32px;
  }
}

#logo {
  text-align: center;
  margin-bottom: 20px;
  img {
    height: 28px;
    width: auto;
  }
}

#progress {
  width: 340px;
  height: 7px;
  border-radius: 10px;
  box-sizing: border-box;

  padding: 2px;
  position: relative;
  background-color: #ffffff;

  @media screen and (max-width: 744px) {
    width: 246px;
    height: 8px;
  }
}

#bar {
  position: absolute;
  border-radius: 10px;
  width: 98%;
  right: 2px;
  height: 3px;
  background-color: #FF8000;
  @media screen and (max-width: 744px) {
    height: 4px;
  }
}

#percent {
  margin-top: 13px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: #fff;
}

@media screen and (min-width: 430px) {
  @media screen and (max-height: 735px) {
    #main-image {
      width: 415px;
      height: auto;
    }
  }
}

@media screen and (max-width: 744px) {
  #image_wrapper {
    transform: translate(-50%, -70%);
    gap: 37px;
  }

  #main-image {
    width: 415px;
    height: auto;
  }

  #logo {
    margin-bottom: 16px;
    img {
      height: 22px;
      width: auto;
    }
  }

  #percent {
    margin-top: 9px;
    line-height: 20px;
    font-size: 14px;
  }
}
