/* navigation style */

.navbar-item-icon a {
  color: #606266;
  transition: color .5s;
  text-decoration: none;
}

.navbar-item-icon a:hover {
  color: #8e0000;
  transition: color .5s;
}

.navbar-item-icon i {
  transition: font-size .5s;
}

.navbar-item-icon:hover i {
  transition: font-size .5s;
}

@media all and (min-width: 769px) {

  .navbar {
    position: relative;
    background-color: #e7e7e7;
    height: 60px;
    padding: 0 1rem;
    z-index: 100;
    /*box-shadow: 0px 2px 9px 0px #cbcbcb;*/
  }

  .navbar-item-icon {
    margin-top: 15px;
    transition: color .5s;
    font-size: 15pt;
    cursor: pointer;
    text-align: center;
  }

  .navbar-item-icon i {
    font-size: 20pt;
    transition: font-size .5s;
  }

  .navbar-item-icon:hover i {
    transition: font-size .5s;
  }

  .navbar-tooltip {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    font-size: 15pt;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
  }

  .navbar-item-icon:hover .navbar-tooltip {
    display: block;
  }

  .navbar-items {
    height: 100%;
  }

  .navbar-item-icon {
    width: 25px;
    padding: 0 1rem;
  }

  .navbar-item-icon:hover i {
    font-size: 18pt;
  }

  .navbar-tooltip {
    font-size: 13pt;
  }

  .navbar-mobile-close, .navbar-burger {
    display: none;
  }

}

@media all and (max-width: 768px) {

  .navbar {
    position: fixed;
    top: 0; left: -300px; bottom: 0;
    padding: 1rem;
    z-index: 2000;
    background-color: #e7e7e7;
    font-size: 1rem;
    font-weight: bold;
  }

  .navbar-items {
    display: flex;
    flex-direction: column;
  }

  .navbar-item-icon {
    display: flex;
    margin: .5rem 0;
  }

  .navbar-tooltip {
    padding: 0 .3rem;
  }

  .navbar-mobile-close {
    display: block;
    text-align: right;
    margin-bottom: 5px;
  }

  .navbar-mobile-close i {
    cursor: pointer;
    font-size: 1.3rem;
  }

  .navbar-burger {
    display: none;
    top: .5rem; left: .5rem;
    z-index: 3000;
  }

  .navbar-show {
    display: flex;
  }

  .navbar-shown {
    left: 0;
    width: 300px;
    max-width: 70%;
  }

}
