#tab-container .tab-container-menu {
  background-color: #000;
  height: 50px;
  overflow: hidden;
}

#tab-container .tabs {
  list-style: none;
  overflow-x: scroll;
  position: relative;
  white-space: nowrap;
}

#tab-container .tabs li {
  display: inline-block;
}

#tab-container .tabs li a {
  display: inline-block;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-decoration:none;
}

#tab-container .tabs li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: scaleX(0);
  border-bottom: 3px solid #FFEB3B;
  transition: all .2s;
}

#tab-container .tabs li.active a:after{
   transform: scaleX(1);
}

#tab-container .tab-container-content {
  width: 100%;
}

#tab-container .tab-container-content .iframe {
  width: 100%;
  display: none;
}

#tab-container .tab-container-content div.active {
  display: block;
}

.bootstrapMenu>.dropdown-menu {
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    border: none;
    padding:0px !important;
}

.bootstrapMenu>.dropdown-menu>li>a {
  display: block;
  padding: 8px 8px 8px 14px !important;
}
