.navigator-widget {
  --dot-size: 28px;
  position: fixed;
  top: 50%;
  left: 2em;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1em;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .navigator-widget {
    --dot-size: 20px;
    top: 45%;
    left: 1.1em;
  }
}
.navigator-widget a {
  width: var(--dot-size);
  height: var(--dot-size);
  background-color: #006152;
  border-radius: 50%;
  transition: 150ms;
}
.navigator-widget a.active {
  width: calc(var(--dot-size) * 1.15);
  height: calc(var(--dot-size) * 1.15);
  background-color: #ff6f00;
}
