/* Vertical dots navigation */

nav.dots {
    display: flex;
    position: fixed;
    top: 300px;
    flex-direction: column;
    z-index: 2;
    margin-left: 25px;
}

nav.dots .tooltip:before {
    content: '';
    display: block;
    margin: 8px 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #e5e5e5;
    opacity: 0.8;
}

nav.dots .tooltip.active:before {
    background-color: #9b9b9b;
    opacity: 0.8;
}

@media screen and (max-width: 1000px), (-moz-touch-enabled: 1), (pointer: coarse) {
  nav.dots {
    display: none;
  }
}
