<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ********************* Tab  ********************* */
.g-tab-toggle-content {
    position: relative;
    margin-bottom: 32px;
  }
  
  .g-tab-toggle-inner {
    padding-right: 32px;
  }

  .g-tab-toggle {
    position: relative;
  }
  
  .g-tab-toggle::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -20px;
    right: -52px;
    border-bottom: 1px solid #dbdbdb;
  }
  
  .g-tab-toggle .simplebar-track.simplebar-horizontal {
    display: none;
  }
  
  .g-tab-wrapper {
    display: flex;
    flex-flow: row;
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  
  .g-tab-list {
    white-space: nowrap;
    margin-right: 16px;
    line-height: 32px;
    color: #999;
    cursor: pointer;
    font-size: 18px;
  }
  
  .g-tab-list.active {
    font-weight: 600;
    color: #333;
    border-bottom: 3px solid #00a94f;
  }
  
  .g-tab-button {
    width: 16px;
    height: 24px;
    position: absolute;
    top: 5px;
    right: -2px;
    border-left: 1px solid #cbcbcb;
  }
  
  .g-tab-arrow {
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #00a94f;
    border-right: 1px solid #00a94f;
    display: block;
    margin-top: -2px;
    margin-left: 7px;
    transform: rotate(45deg);
  }
  
  .g-float {
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    padding: 0 20px;
    background: #fff;
    display: none;
  }
  
  .g-float.active {
    display: block;
    z-index: 9;
  }
  
  .g-float-head {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
  }
  
  .g-float-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    border-bottom: 1px solid #dbdbdb;
  }
  
  .g-float-label {
    color: #333;
    font-weight: 600;
    line-height: 35px;
  }
  
  .g-float-wrapper {
    list-style-type: none;
    padding: 20px 0;
  }
  
  .float-tab-link {
    list-style-type: none;
    border-radius: 25px;
    color: #999999;
    padding: 0 15px;
    line-height: 32px;
    background: #f5f5f5;
    border: solid 2px #f5f5f5;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 5px;
  }
  
  .float-tab-link.active {
    color: #00a94f;
    background: white;
    border-color: #00a94f;
  }
  
  .g-float-button {
    height: 24px;
    border-left: 1px solid #cbcbcb;
  }
  
  .g-float-button .g-tab-arrow {
    transform: rotate(225deg);
  }
  
  .g-content {
    padding-top: 16px;
    display: none;
  }
  
  .g-content.active {
    display: block;
  }
  
  @media screen and (min-width: 1024px) {
    .g-tab-button {
      display: none;
    }
  }
  /* ********************* End of tab ********************* */
  </pre></body></html>