html {
  scroll-behavior: smooth;
  background-color: black;
  position: relative;
}

body {
  margin: 0;
  padding: 0;

  background-color: var(--lighter_2);
  min-height: 100vh;
}


.navEnable > #navigator {
  opacity: 1 !important;
  z-index: 1 !important;
}

.navEnable > #frameWrapper {
  transform: translateX(200px) scale(.9);
}

#navigator {
  position: absolute;
  left: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  top: 30%;
  bottom: 30%;

  padding: 40px;
  z-index: -1;
  transition: all .5s;
  opacity: 0;
}


#navLine {
  background: linear-gradient(0deg, transparent 0%, var(--lighter_3) 50%, transparent 100%);
  width: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  top: 0;
  bottom: 0;

  padding: 30px 0 30px 0;
}


.navItem {
  margin-top: 6vh;
  margin-bottom: 6vh;
  background-color: var(--lighter_4);
  border-radius: 100%;
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  cursor: pointer;
  position: relative;
}

.navItem:hover > span {
  padding-left: 10px;
}

.navItem > span {
  font-size: 15px;
  font-family: 'Comfortaa';
  color: white;
  text-align: left;  
  margin-left: 20px;
  white-space: nowrap;
  width: 100px;
  padding: 20px 20px 20px 0px;
  transition: all .5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.i2 span {
  font-size: 12px !important;
}

.i1 span {
  font-size: 17px !important;
}

.navB {}

#frameWrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: transform .2s;
  max-width: 100vw;
}

#pageFrames {
  border: none;
  height: 100%;
  width: 100%;
  box-shadow: var(--shadow) 0px 0px 4px;
}

#scrollBarCont {
  position: fixed;
  top: 5px;
  right: 0px;
  margin-right: 4px;
  width: 5px;
  height: calc(100vh - 10vh - 10px);
  box-sizing: border-box;
}

#scrollBar {
  height: 10vh;
  content: '';
  top: var(--scrollbar-percent);
  display: block;
  position: relative;
  width: 100%;
  background-color: var(--lighter_3);
  border-radius: 10px;
  cursor: pointer;
}

#scrollBar:hover {
  background-color: var(--lighter_4) !important;
}

@media screen and (min-width: 641px) {
  .pageFrames {
    width: calc(100% + 25px);
  }
  #pageFrames {
    width: calc(100% + 20px) !important;
  }
}

@media screen and (max-width: 640px) {
  #scrollBarCont {
     display: none !important;
  }
  #scrollBar {
     display: none !important;
  }
}





/*#inDevelopment {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
  background-color: black;
  transition: all .2s;
  border: 2px solid rgb(36, 36, 36);
  z-index: 11;
}

#redMarker {
  color: rgb(200, 200, 200);
  z-index: 10;
  position: relative;
  width: 60px;
  height: 60px;
  background-color: rgb(255, 50, 50);
  cursor: pointer;
  transition: all .5s;
  display: inline-block;
}

#redMarker:after {
  content: '!';
  display: block;
  position: absolute;
  color: black;
  width: 60px;
  height: 60px;
  font-family: 'Comfortaa';
  font-size: 15pt;
  top: 0;
  left: 0;
  line-height: 60px;
  text-align: center;
}


#infoContainer {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  width: calc(100% - 80px);
  transition: all .3s;
  max-width: 600px;

  font-family: 'Comfortaa';
  color: rgb(200, 200, 200);
  font-size: 9pt;
  max-height: 60px;
}*/

#inDevelopment {
  text-align: center;
  position: relative;
  color: red;
  font-family: "Comfortaa";
  padding-top: 10px;
}
