.shop-tabs-container-left {
  position: relative;
  border-top: 1px solid @gray-light;
  overflow: hidden;
  margin-bottom:10px;

  &:after {
    content: '';
    display: block;
    width: 90px;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
  }

  .shop-tabs-wrapper {
    background: rgba(245, 245, 245, 1);
    position: static;
    top: 0;
    left: 0;
    width: 90px;
    height: auto;
    float: left;

  }

  .shop-product-panel {
    padding: 0;
  }

  .shop-tabs-content {
    padding: 0 5px 25px;
    float: right;
    width: calc(100% - 90px);
    background: #ffffff;
  }

  .shop-tabs-absolute {
    height: auto;
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 10;
  }


}

.shop-tabs.shop-tabs-left {
  display: block;
  padding-top: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100vh;
  box-sizing: border-box;
  width: 90px;
  position: relative;
  z-index: 10;
  background: #f5f5f5;
  text-align: left;

  .shop-tab {
    display: block;
    font-size: 0;
    text-align: left;

    > span {
      padding: 17px 3px 16px 15px;
      font-size: 14px;
      line-height: 1;
    }
  }

  .shop-tab-active {
    background: #ffffff;
    position: relative;
    font-weight: bold;

    &:after {
      content: '';
      display: block;
      width: 4px;
      height: 20px;
      background: rgba(252, 86, 94, 1);
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -10px;
    }
  }

  @shop-tabs-radius: 6px;

  .shop-tabs-radius-top {
    width: @shop-tabs-radius;
    height: @shop-tabs-radius;
    background: #ffffff;
    position: absolute;
    top: -@shop-tabs-radius;
    right: 0;
    z-index: 1;
    display: block;

    &:after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(245, 245, 245, 1);
      position: absolute;
      right: 0;
      z-index: 10;
      bottom: 0;
      border-bottom-right-radius: @shop-tabs-radius;
    }
  }

  .shop-tabs-radius-bottom {
    width: @shop-tabs-radius;
    height: @shop-tabs-radius;
    background: #ffffff;
    position: absolute;
    bottom: -@shop-tabs-radius;
    right: 0;
    z-index: 1;
    display: block;

    &:after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background: rgba(245, 245, 245, 1);
      position: absolute;
      right: 0;
      z-index: 10;
      bottom: 0;
      border-top-right-radius: @shop-tabs-radius;
    }
  }
}

.shop-tabs-content-left {
  .shop-tabs-title {
    font-size: 15px;

    line-height: 21px;
    margin-bottom: 10px;
    padding-top: 15px;
  }

  .shop-product-container {
    padding: 0;
  }
}

.emptyGroup {
  text-align: center;
  font-size: 14px;
  color: @gray;
  line-height: 100px;
}

