/* nb feature tab by tina */
/* 2019/05/06 v1 */
.feature-tabbox {
  position: relative;
}

.feature-tabbox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  z-index: 0;
}

.feature-tabbox ul li {
  position: relative;
  border-bottom: #3a1212 2px solid;
  padding: 10px 15px;
  list-style: none;
  margin: 0;
}

.feature-tabbox ul li img {
  width: 80px;
}

.feature-tabbox ul li.active:after, .feature-tabbox ul li:hover:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 2px);
  height: 5px;
  left: 1px;
  bottom: -3px;
  background: #f00;
}

.feature-tabbox button {
  width: 100px;
  height: 98px;
  border: none;
  position: absolute;
  top: 0;
  outline: none;
  background: none;
  display: none;
  z-index: 2;
}

.feature-tabbox button:after {
  display: block;
  font-family: FontAwesome !important;
  position: absolute;
  z-index: 2;
  font-size: 30px;
  color: #fff;
  width: 30px;
}

.feature-tabbox button:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.feature-tabbox button.prev.on {
  left: 0;
  display: block;
}

.feature-tabbox button.prev.on:before {
  background: url(https://storage-asset.msi.com/global/picture/images/nb//feature-tab-prev.png) top left no-repeat ;
  background-size: cover;
}

.feature-tabbox button.prev.on:after {
  content: "\f104";
  left: 0;
}

.feature-tabbox button.next.on {
  right: 0;
  display: block;
}

.feature-tabbox button.next.on:before {
  background: url(https://storage-asset.msi.com/global/picture/images/nb//feature-tab-next.png) top right no-repeat ;
  background-size: cover;
  text-align: right;
}

.feature-tabbox button.next.on:after {
  content: "\f105";
  right: 0;
}

@media screen and (max-width: 960px) {
  .feature-tabbox {
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
    overflow: hidden;
  }
  .feature-tabbox ul {
    overflow: hidden;
    display: block;
    width: 300px;
  }
  .feature-tabbox ul li {
    padding: 10px;
    width: 100px;
    float: left;
  }
  .feature-tabbox ul:after {
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    content: "";
  }
}
