body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  gap: 3rem ;
  inline-size: 100%;
}
@media screen and (max-width: 600px) {
  #loading-bg {
    
    flex-direction: column;
  }
}
.loader {
  height: 4px;
  --c:no-repeat linear-gradient(#0d9394 0 0);
  background: var(--c),var(--c),#ecf1f5;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}
