.a-product-tabs {
    margin-bottom: 6rem;
}
.tabs-category__top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.a-product-tabs__title {
    display: block;
    margin: 0 0 2rem;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 500;
}

.product-tabs__links {
    margin: 0 -2.5rem 1.5rem;
    padding: 0 2.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: auto;
}
.a-tabs__link.default-btn {
    background: var(--main-background-color);
    color: var(--main-text-color);
    margin: 0 0.5rem 0 0;
}
.a-tabs__link.default-btn:hover {
    background: var(--main-background-color);
    color: var(--accent-color);
}
.a-tabs__link.default-btn.active {
    color: var(--accent-color);
    pointer-events: none;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: flex;
    flex-wrap: wrap;
}

.tab-panel__inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.tab-pane .resently-item,
.tab-pane__item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 1rem 2rem;
}
.tab-pane .resently-item:nth-of-type(n + 5),
.tab-pane__item:nth-of-type(n + 5) {
    display: none;
}

.product-tabs__show-more-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 1200px) {
    .tab-pane .resently-item,
    .tab-pane__item {
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media (max-width: 991px) {
    .tab-pane .resently-item,
    .tab-pane__item {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
}
@media (max-width: 767px) {
    .tab-pane .resently-item,
    .tab-pane__item {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  }