.tab-list {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
  overflow: hidden; }

.content-list {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.tab {
  display: inline-block;
  cursor: pointer; }
  .tab:not(:last-child) {
    margin-right: 10px; }
  .tab * {
    text-decoration: none; }
  .tab.is-active * {
    color: #900; }

.content {
  position: absolute;
  opacity: 0;
  z-index: -1; }
  .content.is-active {
    position: relative;
    opacity: 1;
    z-index: 2; }

.pre-set-1 {
  display: flex; }
  .pre-set-1 .tab-list {
    flex: 1; }
  .pre-set-1 .content-list {
    flex: 4; }
  .pre-set-1 .tab {
    display: block; }

.simple-tabs.pre-set-purple-rain {
  background: #eae8ef;
  padding: 10px 10px 20px;
  border-radius: 20px;
  overflow: hidden; }
  .simple-tabs.pre-set-purple-rain .tab-list {
    background: #fff;
    width: 100%;
    display: table;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 50px;
    overflow: hidden; }
  .simple-tabs.pre-set-purple-rain .tab {
    display: table-cell;
    position: relative;
    padding: 10px;
    z-index: 2; }
    .simple-tabs.pre-set-purple-rain .tab a {
      font-weight: bold;
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; }
    .simple-tabs.pre-set-purple-rain .tab:not(:last-child) {
      margin-right: 0; }
    .simple-tabs.pre-set-purple-rain .tab::before {
      content: "";
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      display: block;
      position: absolute;
      background: #6200ee;
      z-index: -1;
      transform: scale(1, 0.05);
      transform-origin: bottom;
      transition: transform 0.2s ease; }
    .simple-tabs.pre-set-purple-rain .tab:hover a, .simple-tabs.pre-set-purple-rain .tab.is-active a {
      color: #fff; }
    .simple-tabs.pre-set-purple-rain .tab:hover::before, .simple-tabs.pre-set-purple-rain .tab.is-active::before {
      transform: scale(1, 1); }
  .simple-tabs.pre-set-purple-rain .content-list {
    padding: 0 10px; }
  .simple-tabs.pre-set-purple-rain .content {
    transition: opacity 0.3s ease;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; }

.simple-tabs.pre-set-green-lantern {
  display: flex;
  padding: 10px;
  font-family: 'Trebuchet MS';
  background: #f1f2f6; }
  .simple-tabs.pre-set-green-lantern .tab-list {
    flex: 1;
    margin-bottom: 0;
    border-right: 4px solid #079992; }
  .simple-tabs.pre-set-green-lantern .content-list {
    flex: 4;
    margin-left: 10px; }
  .simple-tabs.pre-set-green-lantern .tab {
    display: block;
    padding: 10px;
    position: relative;
    overflow: hidden; }
    .simple-tabs.pre-set-green-lantern .tab a {
      text-decoration: none;
      text-transform: uppercase;
      color: #606060; }
    .simple-tabs.pre-set-green-lantern .tab::after {
      content: '';
      position: absolute;
      display: block;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #079992;
      top: 50%;
      right: -10px;
      transform: translate(-10000%, -50%);
      transition: all 0.5s cubic-bezier(1, 0, 0, 1); }
    .simple-tabs.pre-set-green-lantern .tab:hover, .simple-tabs.pre-set-green-lantern .tab.is-active {
      background: #fff; }
      .simple-tabs.pre-set-green-lantern .tab:hover a, .simple-tabs.pre-set-green-lantern .tab.is-active a {
        color: #079992; }
      .simple-tabs.pre-set-green-lantern .tab:hover::after, .simple-tabs.pre-set-green-lantern .tab.is-active::after {
        transform: translate(0, -50%); }
