.new-logo {
  width: 75%;
  max-width: 207px;
  height: auto;
}

.new-loading-scr {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(2, 2, 3, 0.97) -9.94%,
    rgba(31, 21, 66, 0.97) 90.5%
  );
}

.new-loading-animation {
  width: 100%;
}

.new-load-bar {
  width: 85%;
  max-width: 328px;
  height: 4px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f2f2;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInBar 1s ease-in 5s forwards;
}

.new-load-bar::before {
  content: '';
  width: 125px;
  height: 4px;
  border-radius: 8px;
  position: absolute;
  left: -34px;
  background: #ff5a70;
  animation: newLoadBar 1.5s infinite ease;
}

.logo {
  width: 60px;
  height: 60px;
}

.loading-scr {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #f5f5f5;
}

.load-bar {
  width: 150px;
  height: 2px;
  position: relative;
  overflow: hidden;
  background: #cfcfcf;
  margin-top: 22px;
}

.load-bar::before {
  content: '';
  width: 75px;
  height: 2px;
  position: absolute;
  left: -34px;
  background: #ff5a70;
  animation: loadBar 1.5s infinite ease;
}

/*-- load bar animation CSS--*/
@keyframes loadBar {
  50% {
    transform: translateX(120px);
  }
}

/*-- load bar animation CSS--*/
@keyframes newLoadBar {
  50% {
    transform: translateX(250px);
  }
}

/*-- fade in animation for the bar --*/
@keyframes fadeInBar {
  from {
    opacity: 0;
    margin: 0 auto;
  }
  to {
    opacity: 1;
    margin: 24px auto;
  }
}
