.loader {
  background: linear-gradient(180deg, #161824 0%, #2D324C 49%, #3E4464 91%);
}

.loader__logo {
  max-width: 350px !important;

  @media (max-width: 767px) {
    margin-top: -25% !important;
    max-width: 290px !important;
  }
}

.loader__progress-line {
  background: linear-gradient(to right, #29C839, #6CFC69);
}

.loader__progress {
  background: linear-gradient(to right, #F0B900, #FFF599);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  width: 100%;
  height: 100vh;
  padding: 15px;
  display: flex;
}

.loader.is--loaded {
  display: none;
}

.loader__logo {
  margin-bottom: 35px;
  width: 100%;
  max-width: 400px;
}

.loader__progress {
  width: 100%;
  height: 28px;
  max-width: 340px;
  padding: 4px;
  border-radius: 100px;
  position: relative;
}

.loader__progress::before {
  position: absolute;
  content: '';
  left: 4px;
  top: 4px;
  border-radius: 100px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #fff;
}

.loader__progress-line {
  position: relative;
  z-index: 2;
  width: 0;
  height: 100%;
  border-radius: 100px;
  transition: width 0.5s ease;
}

@media (max-width: 767px) {
  .loader__progress {
    max-width: 220px;
  }
}