button.more_option {
  cursor: pointer;
  border: 0;
  padding: 0;
}

.tabs {
  position: relative;
}
.tabs:not(.--jsfied) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs .--hidden {
  display: none;
}
.tabs a span,
.tabs a,
.tabs button {
  width: 100%;
  display: block;
  font-size: 1em;
  line-height: normal;
  text-align: center;
  color: #FAF3DD;
  background-color: transparent;
}
.tabs a,
.tabs button {
  height: 100%;
}
.tabs a {
  position: relative;
}
.tabs .-primary {
  display: -webkit-box;
  display: flex;
  background-image: -webkit-linear-gradient(0deg, rgb(142, 45, 226) 0%, rgb(74, 0, 224) 100%);
}
.tabs .-primary > li {
  -webkit-box-flex: 1;
   margin-top: -10px;
}

.nav.-primary {
  flex-wrap: inherit;
}

.tabs .-primary > li > button {
  white-space: nowrap;
  padding: 1em 0.6em;
  right: 0;
}

.tabs .-primary > li img {
 max-width: 40px;
 display: block;
 margin:10px auto 0 auto;
}

.tabs .-secondary {
  max-width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-animation: nav-secondary 0.2s;
          animation: nav-secondary 0.2s;
}
.tabs .-secondary li {
  border-top: 1px solid rgb(142, 45, 226);
  background-image: -webkit-linear-gradient(0deg, rgb(142, 45, 226) 0%, rgb(74, 0, 224) 100%);
  position: relative;
  z-index: 1;
}

.tabs.--show-secondary .-secondary {
  display: block;
}

@-webkit-keyframes nav-secondary {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes nav-secondary {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.-primary .nav-link.active {
  background: #ee478e;
}

.tab-icon {
  width: 50px !important;
  margin: 0 auto 10px;
}

.tab-icon img {
  max-height: 50px;
}

.tab-icon.ht-35 {
  height: 35px;
}

ul.-primary li a.nav-link.header-link.active:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #b71c48;
  position: absolute;
  top: 0px;
  left: -10px;
  z-index: -1;
}

ul.-primary li a.nav-link.header-link.active:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ee478e;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
}

ul.-primary li:first-child a.nav-link.header-link.active:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #b71c48;
  position: absolute;
  top: 0px;
  right: -10px;
  left: auto;
  z-index: -1;
}

.-more ul.-secondary li a:after, .-more ul.-secondary li a:before{
  display: none;
} 