/* Swiper wrapper */
.taxonomy-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
     margin-bottom: 60px;
  background-color: #003D4C;
}

/* Existing UL becomes Swiper wrapper */
.taxonomy-swiper .dp-dfg-taxonomy-all {
   /* max-width: 1340px; */
  margin: 0;
  padding: 0;
  list-style: none;
}
#tab-slider-wrapper p.dp-dfg-dropdown-label {
    display: none;
}
#tab-slider-wrapper .et_pb_button_wrapper{
      display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0;
    width: 100%;
}
/* Slides */
.taxonomy-swiper .dp-dfg-filter {
  flex-shrink: 0;
  width: auto;
}
.dp-dfg-container.dp-dfg-layout-grid.dp-dfg-skin-none.dp-dfg-skin-top-filters{
   display: block;
}

body .dpdfg_filtergrid_0 #dropdown-all .dp-dfg-filter .dp-dfg-filter-link{
   color: #fff !important;
   font-size: 18px !important;
}
/* Your design */
.taxonomy-swiper .dp-dfg-filter-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 0 10px;
  white-space: nowrap;
  text-decoration: none;
}

/* Active orange line */
.taxonomy-swiper .dp-dfg-filter-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height:6px;
  background: #ff5a00;
}

/* Arrows */
.taxonomy-swiper .taxonomy-prev,
.taxonomy-swiper .taxonomy-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show arrows only on hover */
.taxonomy-swiper:hover .taxonomy-prev,
.taxonomy-swiper:hover .taxonomy-next {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.taxonomy-swiper .taxonomy-prev {
  left: 10px;
}

.taxonomy-swiper .taxonomy-next {
  right: 10px;
}

/* Disabled arrows */
.taxonomy-swiper .swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: default;
}

/* Mobile */
@media screen and (max-width: 767px) {

  .taxonomy-swiper .dp-dfg-filter-link.active::after {
    left: 10px;
    right: 10px;
    height: 5px;
  }
}