/*========================================================*/
.mod-content #vnt-sidebar .toggle {
  background: #e7b100;
  font-weight: bold;
  position: absolute;
  z-index: 1;
  color: #ffffff;
  padding: 9px 50px 9px 25px;
  right: -65px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  cursor: pointer;
  display: none;
}
.menuProduct .title {
  background: #eeeeee;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 20px;
  text-transform: uppercase;
}
.menuProduct ul>li{
  border-bottom: solid 1px #e5e5e5;
}
.menuProduct ul>li>a {
  display: block;
  padding: 9px 10px 8px;
  padding-left: 50px;
  position: relative;
  border-left: solid 5px transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menuProduct ul>li>a>span{
  color:#e7b100;
}
.menuProduct ul>li>a:hover{
  border-left-color: #e7b100;
  border-bottom-color: #e7b100;
}
.menuProduct ul>li.current>a{
  border-left-color: #e7b100;
  border-bottom-color: #e7b100;
}
.menuProduct ul>li>a>img{
  max-width: 25px;
  max-height: 30px;
  position: absolute;
  left:15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menuProduct ul>li>a:before{
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  font-size: 15px;
  line-height: 23px;
  color:#666666;
  position: absolute;
  right:15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menuProduct ul>li>ul>li{
  border-bottom: none;
}
.menuProduct ul>li>ul>li>a {
  border-left: none;
  padding: 3px 10px;
  padding-left: 70px;
  font-size: 13px;
  line-height: 21px;
}
.menuProduct ul>li>ul>li>a:before{
  content: "";
}
.menuProduct ul>li>ul>li>ul>li>a {
  border-left: none;
  padding: 3px 10px;
  padding-left: 90px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
}


@media all and (max-width: 991px){
  .bgBlack{
    position: fixed;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 9;
  }
  .bgBlack.active{
    opacity: 1;
    visibility: initial;
  }
  .mod-content #vnt-sidebar {
    max-width: 275px;
    position: fixed;
    height: 100%;
    background: #ffffff;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    z-index: 10;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    border-right: solid 5px #e7b100;
  }
  .mod-content #vnt-sidebar.active{
    -webkit-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    transform: initial;
  }
  .mod-content #vnt-sidebar .wrap{
    height:100%;
    overflow: auto;
  }
  .mod-content #vnt-sidebar .toggle {
    display: block;
  }
  .mod-content #vnt-sidebar.active .toggle{
    right:-70px;
  }
  .mod-content #vnt-sidebar .toggle:before{
    content: "\f100";
    font-family: FontAwesome;
    position: absolute;
    right:20px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    font-size: 20px;
    line-height: 30px;
  }
  .mod-content #vnt-sidebar.active .toggle:before{
    content: "\f101";
  }
}