/* Move down content because we have a fixed navbar that is 50px tall */

.scroll::-webkit-scrollbar-track {

    background-color: rgba(0, 0, 0, 0.05);
    width: 2px;
    height: 98%;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 0px solid gray;
  }
  .scroll::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  .scroll::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border: 0px solid rgba(0, 0, 0, 0.0);
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }

.scrollHidden::-webkit-scrollbar-track {

    background-color: rgba(0, 0, 0, 0.00);
    width: 5px;
    height: 98%;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 0px solid gray;
  }
.scrollHidden::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(0, 0, 0, 0.00);
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
.scrollHidden::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.0);
    border: 0px solid rgba(0, 0, 0, 0.0);
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }  


