.category .categoryList {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.category .categoryList .brand-name h2 {
  margin-bottom: 5px;
  margin-left: 30px;
  font-size: 1rem;
  font-weight: 700;
}
.category .categoryList .brand-name.d-lg-none{
    margin-right:30px;
}
.category .categoryList .list-category #custom-pagination {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
  overflow-x: scroll;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.category .categoryList .list-category #custom-pagination::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.category .categoryList .list-category #custom-pagination {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.category .custom-tab {
  border: 0;
  border-radius: 0;
  border-color:none;
  color: #636060;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 1rem;
  position:relative;
}
.category .custom-tab::after{
    content:"";
    position:absolute;
    width:100%;
    height:4px;
    border-top-right-radius:3px;
    border-top-left-radius:3px;
    bottom:0;
    right:0;
    left:0;
    background-color:transparent;
}
.category #custom-pagination{
    border-bottom: 2px solid #ebebeb;
}
.category .custom-tab.active{
    color:#2277f6;
}
.category .custom-tab.active::after {
  background-color:#2277f6;
}
@media (min-width: 992px) {
  .category .categoryList .brand-name h2 {
    font-size: 1.1rem;
  }
  .category .custom-tab {
    font-size: 1rem;
  }
}