.animation-container {
  background-color: #fff;
}

.logo-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.logo-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.animation-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webp-loader {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .animation-container {
    background-color: #fff !important;
  }
  .logo-loader {
    width: 100%;
    background-color: #fff !important;
  }

  .bar {
    width: 50px;
    height: 200px;
    border-radius: 50px;
    opacity: 0;
    transform: rotate(30deg);
  }

  .olisto-text {
    font-size: 4em;
  }

  .bar:nth-child(1) {
    background-color: #caff75;
    animation: enter 0.8s ease-out forwards, exitLeft 0.6s ease-in 1.9s forwards;
  }

  .bar:nth-child(2) {
    background-color: #85e7ed;
    animation: enter 0.8s ease-out 0.2s forwards,
      exitRight 0.6s ease-in 1.9s forwards;
    position: relative;
    top: -5px;
    left: 5px;
  }

  .bar:nth-child(3) {
    background-color: #f8f68e;
    animation: enter 0.8s ease-out 0.4s forwards,
      exitLeft 0.6s ease-in 1.9s forwards;
    position: relative;
    left: -35px;
    top: 50px;
  }

  .bar:nth-child(4) {
    background-color: #f597d4;
    animation: enter 0.8s ease-out 0.6s forwards,
      exitRight 0.6s ease-in 1.9s forwards;
    position: relative;
    top: 20px;
    left: -15px;
  }
}
