/* ---------FOOTER MENUS CSS --------- */
#mySidenav {
  display: inline;
}
ul.list_nav {
  margin: 0 auto;
  text-align: center;
  display: block;
}
.bottomMenu ul{
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.bottomMenu li{
  display: inline-block;
  position: relative;
}
.bottomMenu a{
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #212121;
  padding: 7px 15px;
}
.bottomMenu a:hover{
  color: #717900;
}
.bottomMenu a:focus{
  outline: 1px dotted #fff;
  border-bottom: 1px solid #fff;
}
.bottomMenu ul ul{
  display: none;
  position: absolute;
  background: #212121;
  min-width: 200px;
  z-index: 9999;
  top: 90%;
  border-top: 4px solid #ff5400;
  border-bottom: 4px solid #ff5400;
  line-height: 30px;
  border-radius: 5px;
}
.bottomMenu ul ul ul{
  left: 100%;
  top: 0%;
}
.bottomMenu ul ul a{
  color: #000 ;
  border: none;
  padding: 5px 10px ;
  border-bottom: 1px solid #eaeaea;
  margin-top: 5px;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
}
.bottomMenu ul.sub-menu a:hover{
  color: #717900;
  padding-left: 50px !important;
}
.bottomMenu ul.sub-menu>li>a:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  margin-top: 15px;
  left: 0;
  opacity: 0;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  background: #222;
}
.bottomMenu ul.sub-menu>li>a:hover:before {
  opacity: 1;
  left: 15px;
  width: 20px;
}
.bottomMenu ul ul a:focus{
  outline: 1px dotted #000;
  border-bottom: 1px solid #000;
}
.bottomMenu ul ul li{
  float: none;
  display: block;
  text-align: left;
  border-left: none;
  border-right: none !important;
  padding: 0;
}
.bottomMenu ul ul li:last-child{
  border-bottom: 0;
}
.bottomMenu ul li:hover > ul{
  display: block;
}
.bottomMenu .menu > ul > li.highlight{
  background-color: #006ccc;
}
.bottomMenu .menu > ul > li.highlight:hover{
  background: transparent;
}
.bottomMenu {
  padding: 10px;
}
/* ---------FOOTER MENUS CSS --------- */