.pageBg {
  z-index: 1;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 50%
    ),
    none !important;
}

.leftSide {
  display: flex;
  flex-direction: column;
  align-items: start !important;
  text-align: left !important;
  height: auto;
  padding: 0;
  padding: 0 2% 1rem 4%;
}

.leftSide hr {
  display: none;
}

.leftSide ul {
  display: none;
}

main {
  /* padding: 0.5rem 0 0 0; */
  align-items: start;
}

#imageData {
  opacity: 0;
  gap: 0.75rem;
  position: fixed;
  left: 0;
  bottom: 3rem;
  font-size: 12px;
  padding: 0.5rem 1rem;
  color: white;
  width: fit-content;
  border-radius: 0 8px 8px 0;
  z-index: 100;
  text-shadow: 0 0 3px BLACK;
  transition: opacity 0.1s ease;
}
h1,
.h1 {
  font-size: x-large;
  color: white !important;
}

/* -------------Buttons-------------   */

.panoSwitcherWrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  bottom: calc(var(--footerHeight) + 5px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.switcherTitle {
  font-size: 1rem;
  font-weight: 200;
  color: white;
  font-family: var(--fontRegular);
  text-align: center;
  font-size: clamp(12px, 3vw, 0.8rem);
  text-shadow: 0 0 6px #474747;
  letter-spacing: 2px;
  user-select: none;
}

.panoSwitcherContainer {
  display: flex;
  flex-direction: column;
  user-select: none;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  gap: 10px;
  flex-wrap: nowrap;
  border-radius: 1.5rem;
  padding: 0.5rem;
  border: solid 1.5px var(--colorBrandPrimary20);
  box-shadow: 0 0 20px rgb(103 103 103 / 25%);
  transition: box-shadow 0.3s ease;
}

.panoSwitcherContainer {
  box-shadow: 0 0 20px rgb(103 103 103 / 50%);
}

.panoSwitcherContainer > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4px;
  border: solid 1px rgb(255 255 255 / 10%);
  background-color: var(--colorBrandSecondary90);
  padding: 3px 4px;
  border-radius: 32px;
}

.panoSwitcherContainer > div > button:hover {
  cursor: pointer;
}

.panoSwitcherContainer button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.3rem, 5px) max(0.6rem, 10px); /* padding: 6px 10px; */
  background-color: transparent;
  color: var(--colorBrandLight);
  border: none;
  border-radius: 2em;
  cursor: pointer;
  font-family: var(--fontRegular);
  font-size: max(0.7rem, 13px);
  font-weight: 100;
  user-select: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.panoSwitcherContainer button:hover {
  background-color: var(--colorBrandPrimary20);
  color: var(--colorBrandLight);
}

.unit-button.active {
  background-color: var(--colorBrandPrimary);
  color: var(--colorBrandSecondary);
  pointer-events: none;
  font-weight: 500;
  cursor: default;
}

/*-------------Responsive-------------*/
@media screen and (min-width: 1024px) {
  .leftSide ul {
    display: block !important;
  }
  .leftSide ul {
    background-color: var(--colorBrandPrimary70);
    padding: 1rem 1.5rem;
    list-style-type: none;
    margin: 1rem 0;
    border-radius: 0.5rem;
    backdrop-filter: blur(5px);
    line-height: 2.5;
  }
  .leftSide ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.3rem 0;
    margin: 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
  }
  .leftSide {
    justify-content: center;
  }
}
@media screen and (min-width: 586px) {
  .leftSide {
    width: 40%;
  }

  .leftSide ul {
    display: none;
  }
}

@media screen and (min-width: 586px) and (orientation: landscape) {
}

@media screen and (min-width: 576px) and (min-height: 768px) and (orientation: landscape) {
  main {
    /* padding: 0.5rem 0 0 0; */
    align-items: center;
  }

  .pageBg {
    z-index: 1;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0) 50%
      ),
      none !important;
  }
  .leftSide {
    padding: 0 2% 1rem calc(5% + 40px);
  }

  .renderLabel {
    opacity: 1 !important;
  }

  .leftSide .logo {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .pageBg {
    z-index: 1;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0) 50%
      ),
      none !important;
  }
}
