::-webkit-scrollbar {
  width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
  
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.sidebar{
position: fixed;
width: 250px;
height: 100%;
left: -250px;
background: rgba(43,58,67, 0.95);
transition: left 0.4s ease;
/*box-shadow: 10px 0 20px -5px rgba(115,115,115,0.75);*/
}
.sidebar.show{
left: 0px;
}
.sidebar .text{
color: white;
font-size: 22px;
font-weight: 600;
line-height: 85px;
text-align: center;
background: rgba(43,58,67, 0.95);
letter-spacing: 1px;
}
#navsidebar ul{
background: #2b3a43;
height: 100%;
width: 100%;
list-style: none;
padding-left: 10px;
}
#navsidebar ul li{
line-height: 40px;
border-top: 1px solid rgba(255,255,255,0.1);
}
#navsidebar ul li:last-child{
border-bottom: 1px solid rgba(255,255,255,0.05);
}
#navsidebar ul li a{
position: relative;
color: white;
text-decoration: none;
font-size: 16px;
padding-left: 14px;
font-weight: 500;
display: block;
width: 100%;
border-left: 3px solid transparent;
}
#navsidebar ul li.active a{
color: #ccb56b;
background: rgba(43,58,67, 0.95);
border-left-color: #ccb56b;
}
#navsidebar ul li a:hover{
background: rgba(43,58,67, 0.95);
}

.feat-show{
transition: all 0.5s;
}

#navsidebar ul li.active ul{
transition: all 0.5s;
}
#navsidebar ul ul{
position: static;
display: none; 
}

#navsidebar ul.show{
display: block;
transition: all 0.5s;
}

#navsidebar ul ul li{
line-height: 36px;
border-top: none;
}
#navsidebar ul ul li a{
font-size: 16px;
color: #e6e6e6;

}
#navsidebar ul li.active ul li a{
color: #e6e6e6;
background: rgba(43,58,67, 0.95);
border-left-color: transparent;
}

a:hover{
color: #ccb56b !important;
}
#navsidebar ul ul li a:hover{
color: #ccb56b !important;
/*background: black !important;*/
}
#navsidebar ul li a span{
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
font-size: 15px;
transition: transform 0.4s;
}
#navsidebar ul li a span.rotate{
transform: translateY(-50%) rotate(-180deg);
}