.swiper-pagination-bullet-active {
  background-color: #2768F5;
  width: 32px !important;
  border-radius: 5px !important;
}

.swiper-pagination {
  bottom: -0.25rem !important;
}

.swiper-pagination-bullet {
  margin-left: 0 !important;
  transition: all 0.3s ease;
}

.swiper-slide {
  min-height: 20rem !important;
}

.trustheader_item.swiper-slide {
  background-color: transparent;
  min-height: 15rem !important;
  padding: 0 !important;
}

.swiper-pagination.trust-pagination {
  padding-left: 1.5rem !important;
  display: flex;
  justify-content: center;
  top: 24rem !important;

}

.features-tablet_component .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  margin-top: 24px;
  top: -5rem !important;
}

.trust-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  margin-top: 24px;

}

.trustheader_list.swiper {
  padding-bottom: 5rem;
}

/* Inactive bullets */
.features-tablet_component .swiper-pagination-bullet,
.trust-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c0c0c0;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Active bullet - the "track" */
.features-tablet_component .swiper-pagination-bullet-active,
.trust-pagination .swiper-pagination-bullet-active {
  width: 40px;
  height: 10px;
  border-radius: 3px;
  background: #007BFF;
  /* light blue track */
}

/* The loading fill */
.features-tablet_component .swiper-pagination-bullet-active::after,
.trust-pagination .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #145397;
  /* dark blue fill */
  border-radius: 3px;
  animation: bulletLoading 5000ms linear forwards;
}

/* Override grid when swiper is active */
.trustheader_list.swiper {
  display: block;
}

@keyframes bulletLoading {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}