/*Glass behind navbar*/
body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    /* background-image:url(http://lenghart.sk/img/promo.jpg); */
    background-color: #262626; /* dark gray */
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica;
    letter-spacing: 0.02em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased; 
     overflow:hidden;
   }
 
   /*side navbar css*/
   /*Flex styling*/
  .sideNavContainer {
    z-index:3;  /*This places the sidenav behind the main menu*/
    display: flex;
    align-items: center;
    padding: 0;
    left: 0;
    background-color:rgba(0, 0, 0, 0.8); /*#292929 - grey */
    /* display: block; */
    height: 100vh;
    width:85px; /*width of the full container which is the unordered list with the class '.nav'*/
    position: fixed;/*absolute*/
  }
  
  .sideNavContainer > #sidenavLogo{
    position:absolute;
    top:0;
    left:0;
  }

  .sideNavContainer > #inner_Container {
   width:85px;
   position:relative;
 }

  .sideNavContainer > #inner_Container > div{
    /* display: flex; */
    cursor: pointer;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px; 
     width: 100%;
    height: 70px; /*60px*/
    line-height: 60px;
    font-size: 18px;
    font-family: "Roboto Slab", serif;
    color: #ffffff; /*font-color = 'white'*/
    background-color:transparent; /*rgb(17, 211, 221) - lightblue*/
  }
  
  .sideNavContainer > #inner_Container > div >  li {
    cursor: pointer;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    font-family: "Roboto Slab", serif;
    color: #ffffff; /*font-color = 'white'*/
    background-color:transparent; /*rgb(17, 211, 221) - lightblue*/
  }
  
  .slideLeft {
    position:absolute;
    z-index:3; /*puts the tootips on top of the card*/
    left:3px;
    width:200px;
    height:50px;
    display: none;
    margin-left:100%;
    text-align:center;
    padding-bottom:3px;
    background:#b99458; /*coffee*/;
  }

  /*i replaced the 'p' tag with a div tag so this wont be necessary until I revert to using a 'p' tag*/
  /* .slideLeft > p{
   font-family: 'Nunito Sans', sans-serif;
   font-style: italic;
   font-size: 14px;
  } */
 
  .sideTab:hover .slideLeft, li { 
      display: block;
  }
 
  .sidebarIcon{
     background-color:transparent; /*rgb(17, 211, 221) - lightblue*/
     float:left; 
     margin-left:10px; /*distance of the icon from the left is crucial as it avoids any movement when the user hovers over the icon*/
     padding: 20px 25px 20px 25px; /*top, right, bottom, left*/
  }
  
  .sidebarIcon:hover{
    color:#b99458 ;
    transition:0.3s;
  }

  /*side navbar links*/
  .sideTab > a {
   color:#fff;
 }
  .sideTab > a:link {
   background-color:none;
   color:#fff;
 }
 
 .sideTab > a:visited {
   background-color: none;
 }
 
 .sideTab > a:hover {
   background-color:none;
 }
 
 .sideTab > a:active {
   background-color: none;
 } 