/* Loading screen styles */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background: #455B3E;
  background: linear-gradient(
    165deg,
    #455B3E 0%,
    #455B3E 36%,
    #323F2D 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  transition: left 0.5s ease-in-out;
}

#loading > #loading-container {
  text-align: center;
  width: 60svw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 3svi;
}

#loading > #loading-container > #loading-logo {
  width: 90%;
  filter: drop-shadow(5px 5px 7.7px black);
  position: relative;
  top: -21px;
}

@media (min-aspect-ratio: 1/1) {
  #loading > #loading-container {
    width: 40svi;
    gap: 3svi;
  }
  #loading > #loading-container > #loading-logo {
    height: 50%;
    width: unset;
  }
}

#loading > #loading-container > #loading-progress {
  width: 30svw;
  height: 30svw;
}

#loading > #logos {
  position: absolute;
  bottom: 0;
  width: 90svw;
  height: 15svh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3svi;
}

#loading > #logos > #logo-left {
  width: 25svw;
}

#loading > #logos > #logo-right {
  width: 25svw;
}

@media (min-aspect-ratio: 1/1) {
  #loading > #logos > #logo-left {
    width: unset;
    height: 5svi;
  }

  #loading > #logos > #logo-right {
    width: unset;
    height: 5svi;
  }

  #loading > #loading-container > #loading-progress {
    width: 20svh;
    height: 20svh;
  }
}
