.selected() {
  font-weight: 500;
  color: #222222;
}

.tabContainer {
  width: 100%;
  height: 100%;

  ul {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
  }

  .tabNav {
    position: relative;
    font-size: 15px;
    font-family: 'Roboto-Medium, Roboto';
    font-weight: 500;
    color: #999999;
    line-height: 18px;

    &:after {
      content: ' ';
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #eee;
    }

    .line {
      height: 2px;
      position: absolute;
      bottom: 0;
      margin: 10px 0 0 0;
      background: #1679ff;
    }

    ul {
      margin: 0;
      list-style: none;
      display: flex;
      min-height: 58px;
      padding: 12px 0 23px;

      li {
        position: relative;
        margin: 0 40px 0 0;
        opacity: 0.4;
        transition: all 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;

        &.checked {
          .selected();
          opacity: 1;
        }

        &:active {
          opacity: 1;
        }

        &:hover {
          .selected();
          opacity: 0.7;
        }
      }
    }
  }

  .centerTabNav {
    position: relative;
    font-size: 15px;
    font-family: 'Roboto-Medium, Roboto';
    font-weight: 500;
    color: #999999;
    line-height: 18px;

    &:after {
      content: ' ';
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: #eee;
    }

    .line {
      height: 2px;
      position: absolute;
      bottom: 0;
      margin: 10px 0 0 0;
      background: #1679ff;
    }

    ul {
      width: 100%;
      margin: 0;
      list-style: none;
      //display: flex;
      display: grid;
      grid-template-columns: repeat(2, 50%);
      justify-items: center;
      align-items: center;
      min-height: 58px;
      //padding: 12px 0 23px;

      div {
        width: 100%;
        position: relative;
        opacity: 0.4;
        transition: all 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;

        &.checked {
          .selected();
          opacity: 1;
        }

        &:active {
          opacity: 1;
        }

        &:hover {
          .selected();
          opacity: 0.7;
        }
      }
    }
  }

  .tabPanelGroup {
    // padding: 24px 0;
    padding-top: 24px;
    margin-bottom: 12px;
    animation: content 0.3s ease-in-out 1;
    animation-direction: normal;
    animation-iteration-count: 1;
  }

  @keyframes content {
    from {
      opacity: 0;
      transform: translateY(5%);
    }
    to {
      opacity: 1;
      transform: translateY(0%);
    }
  }
}
