.sidenavbar 
{
	position :relative ;
	top:0;
	/* width:100%; */
	z-index :100;
}
.navbar
{
	position:fixed ;
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background:linear-gradient(to right, #B61A2E, black) ;
	z-index:100;
	height:60px;
} 
.navbar a
{
	text-decoration :none ;
	color :#fff;
	font-size :10px;
}
.navbar a, .navbar button
{
	cursor: pointer;
} 
.navbar button
{
	border-radius:5px ;
	border :none ;
    background-color: transparent ;
    background-size: 10px 10px ;
    margin:25px ;
    height:36px;
    width:auto;
    color:  #fff;
    font-size: 11px;
    padding: 10px 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top :15px ;
} 
.navbar .menuBar 
{
	position :relative ;
	top:-5px;
	padding :0 30px;
	font-size :20px ;
}

.bgFade
{
	display: none; 
	position: fixed; 
	padding-top: 100px; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgba(0,0,0,0.4); 
}
.sidebar 
{
	position :fixed ;
	height: 100%;
	background:linear-gradient(to top, #313131, #AD2B2B) ;
	width:0;
	top: 50px;
	left: 0px;
	overflow-y: auto;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 15px;
	padding-bottom:0;
	outline:none ;
	z-index: 100;
}
.sidebar::-webkit-scrollbar
{
    display:none ;
}

.icon-bar 
{
  width:auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom :150px; 
}

.icon-bar a 
{
  
  display: block;
  text-align: left;
  text-decoration:none;
  padding: 25px;
  transition: all 0.3s ease;
  color: #fff ;
  font-size: 13px;
}

.icon-bar label 
{
  font-familyb: 'Balsamiq Sans', cursive;
}
.Inc 
{
	margin-left:10px ; 
} 
#pop
{
	opacity: 1; 
	position :relative ;
	transition: 0.5s;
	background:#fff ;
	border-radius :5px;
	margin :5px ;
	padding :3px ;
	box-shadow:0 0 5px #676767 ;
	
}
#pop b
{
	color:#444444;
	transition: 0.5s;
	font-family: 'Balsamiq Sans', cursive;
	font-size :13px;
} 
#pop b::after
{
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color:transparent transparent white transparent ;
}
@media (max-width: 600px) {
	.navbar .menuBar 
	{
		top:0;
	} 
}