* {
  box-sizing: border-box;
}

.simple-tabs {
  line-height: 24px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.simple-tabs .headings {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  background: green;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.simple-tabs .headings ul {
  padding: 0 0 3px;
  margin: 0;
  font-size: 0;
}

.simple-tabs .headings li {
  font-size: 16px;
  display: inline-block;
  text-align: center;
  padding: 8px;
  text-decoration: none;
  list-style: none;
  color: white;
  border-bottom: 2px solid transparent;
  opacity: 0.9;
  cursor: pointer;
}

.simple-tabs .headings li.active {
  opacity: 1;
}

.simple-tabs .headings li:hover {
  opacity: 1;
  box-shadow: 0 3px 0 rgba(255, 255, 255, 0.8);
}

.simple-tabs .headings .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: white;
}

.simple-tabs .arrow {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 40px;
}

.simple-tabs .arrow > * {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
}

.simple-tabs .arrow img {
  filter: drop-shadow(-1px -1px 3px #000);
}

.simple-tabs .arrow.l {
  left: 0;
}

.simple-tabs .arrow.l img {
  left: 0;
  transform: translateY(-50%) rotate(90deg);
}

.simple-tabs .arrow.r {
  right: 0;
}

.simple-tabs .arrow.r img {
  right: 0;
  transform: translateY(-50%) rotate(-90deg);
}

.simple-tabs .content {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0;
  padding-bottom: 8px;
  line-height: normal;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.simple-tabs .content .tabs {
  min-height: 1px;
}

.simple-tabs .content .tab {
  float: left;
  height: inherit;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  vertical-align: top;
  padding: 8px;
}

/*# sourceMappingURL=st.css.map */