body
{
  background-color: #F1F1F1;
}

.nav-main
{
    position: fixed;
    top: 0px;
    right: 0.1px;
    width: 100%;
    height: 60px;
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;
    z-index: 1000;
}

.btn-toggle-nav
{
    width: 60px;
    height: 100%;
    background-color: #F98F39;
    background-image: url(drop1.jpg);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center;
    cursor: pointer;
}
.btn-toggle-nav:hover
{
    opacity: 0.5;
}

.nav-main ul
{
    display: flex;
    flex-wrap: wrap;
    padding-left: 15px;
}
.nav-main ul li
{
    list-style: none;
    line-height: 60px;
}
.nav-main ul li a
{
  display: block;  
  height: 100%;
  padding: 0px 10px;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.nav-sidebar 
{
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: calc(100vh - 60px);
    padding: 0px 5px;
    background-color: #1b1b1b;
    color: #F1F1F1;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}
.nav-sidebar ul
{
    padding-top: 15px;
    overflow: hidden;
    /*visibility: hidden;*/
} 
.nav-sidebar ul li
{
    line-height: 60px;  
    list-style: none;
}
.nav-sidebar ul li a:hover
{
   background-color: #222;
}
.nav-sidebar ul li span, .nav-sidebar ul li a
{
    display: block;
    height: 60px;
    padding: 0 10px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    white-space: nowrap;
    /*opacity: 0;*/
    transition: all 0.3s ease-in-out;
}
