.loader {
  background: linear-gradient(
    180deg,
    #fad69a 0%,
    #2b3d51 6.67%,
    #60c5c1 26.67%,
    #bd6a48 67.67%,
    #252235 100%
  );
}
.loader__logo {
  max-width: 335px !important;
  margin-bottom: 24px !important;
  margin-left: 10px;
}
.loader__progress {
  background: linear-gradient(to right, #000000, #ff7a00);
}
.loader__progress-line {
  background: linear-gradient(to right, #ff5c00, #ffff04);
}
.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;
  }
}
@media screen and (max-width: 576px) {
  .loader__logo {
    max-width: 250px !important;
    margin-left: 43px;
  }
}
