.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 ul {
  display: none;
}

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

h1,
.h1 {
  font-size: x-large;
  color: white !important;
}
#radarPath {
  transform: scale(0.3);
  transform-origin: center center;
  fill: var(--colorBrandSecondary) !important;
  fill-opacity: 0.3 !important;
  stroke-opacity: 0.9 !important;
}
#hotspots img:is([src*="eye"]) {
  border-radius: 50%;
  border: none !important;
  outline: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  /* outline-color: rgba(255, 255, 255, 0.2) ; */
  animation: pulseOutline 2s infinite ease-out;
}
#hotspots img:is([src*="eye"]):hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* ------------SWITCHER--------------------- */

.switcherContainer {
  padding: 4px;
}

.switcherContainer button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  background-color: rgba(255, 255, 255, 0) !important;
  color: white;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-family: var(--fontRegular);
  font-size: max(0.9rem, 12px);
  font-weight: 400;
  user-select: none;
  transition: all 0.3s ease !important;
  white-space: nowrap;
}

.unit-button.active {
  background: var(--colorBrandGreen) !important;
  color: var(--colorBrandSecondary);
  box-shadow: var(--buttonOverOutline);
  pointer-events: none !important;
  font-family: var(--fontBig);
}

.switcherContainer button:hover {
  background: var(--colorBrandPrimary70) !important;
  color: white;
}
/*-------------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;
  }
}
