.x-tabs {
  position: relative;
  height: 48px;
  line-height: 48px;
  overflow: hidden;
}
.x-tabs.fixed .x-tabs-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.x-tabs.fixed .x-tabs-content .x-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.x-tabs-wrapper {
  height: 100%;
  overflow: hidden;
}
.x-tabs-content {
  position: relative;
  display: inline-block;
  height: 100%;
  white-space: nowrap;
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
.x-tabs .x-tabs-next, .x-tabs .x-tabs-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  background-color: inherit;
  cursor: pointer;
  z-index: 1;
}
.x-tabs .x-tabs-next .x-icon, .x-tabs .x-tabs-prev .x-icon {
  font-size: 24px;
}
.x-tabs-prev {
  left: 0;
}
.x-tabs-next {
  right: 0;
}
.x-tabs-ink {
  position: absolute;
  bottom: 0px;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}