
/* VERTICAL NAV */
.vertical-nav-container {
  width: 40px;
  height: 100vh;
  right: 14px;
  top: 0;
  position: fixed;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.vertical-nav-container .vertical-nav-extra-container {
  width: 4px;
  height: 260px;
  position: relative;
  display: flex;
  background-color: rgba(243, 244, 244, 0.26);
  border: 1px solid rgba(41, 41, 41, 0.14);
  border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px;
}


.vertical-nav-bar-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.vertical-nav-container .vertical-nav-bar{
  width: 100%;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #4E7FFF 0%, #A62FB9 100%);
  box-shadow: 0 0 10px rgba(78, 127, 255, 0.35);
  border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px;
}

@media (max-width: 980px) {
  .vertical-nav-container {
    width: 10px;
    height: 100vh;
    left: auto;
    right: calc((100vw - 100%) + 2px);
    top: 0;
    justify-content: flex-start;
    align-items: center;
    z-index: 30;
  }

  .vertical-nav-container .vertical-nav-extra-container {
    width: 4px;
    height: 260px;
    border: 1px solid rgba(41, 41, 41, 0.14);
    border-radius: 10px;
    background-color: rgba(243, 244, 244, 0.26);
  }

  .vertical-nav-container .vertical-nav-bar {
    width: 100%;
    height: 56px;
    top: 0;
    left: 0;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(78, 127, 255, 0.35);
    transform-origin: 50% 50%;
    transform: none;
  }

}
