.download-center-template .tabs {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .download-center-template .tab-btn {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #464646;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .download-center-template .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.25s;
  }

  .download-center-template .tab-btn:hover {
    color: #464646;
  }

  .download-center-template .tab-btn.active {
    color: #464646;
    font-weight: 600;
  }

  .download-center-template .tab-btn.active::after {
    background: rgb(246, 142, 30);
  }

  .download-center-template .tab-count {
    font-size: 14px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
    line-height: 1.5;
  }

  .download-center-template .tab-btn.active .tab-count {
    background: rgba(246, 142, 30, 0.08);
    color: #f68e1e;
  }

  .download-center-template .tab-btn:not(.active) .tab-count {
    background: #EBEDEF;
    color: #7A7F86;
  }

  .download-center-template .documents-item {
    width: 100%;
    cursor: pointer;
  }

  .download-center-template .documents-item__title {
    cursor: pointer;
    margin-bottom: 0;
  }

  .download-center-template .content {
    padding-top: 0;
  }

  .download-center-template .documents-empty {
    padding: 20px 0;
    color: #7A7F86;
  }

  @media (min-width: 768px) {
    .download-center-template .documents-item {
      grid-template-columns: 1fr 160px auto;
    }
  }
  @media (min-width: 768px) {
    .documents-item {
      padding: 25px 20px;
      grid-template-areas: "title info actions";
    }

.documents-item__actions {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  gap: 30px;
}

.documents-item {
  min-height: unset;
}

.documents-item__title {
  font-size: 16px;
}
.documents-item__info {
  font-size: 16px;
}
.mb-xl-0 {
  margin-bottom: 0 !important;
}
.documents-list {
  grid-template-columns: 1fr;
  gap: 5px !important;
}
}