#d6_first-page_banners {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
#d6_first-page_banners .first-page-slider {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
#d6_first-page_banners .first-page-slider:hover .swiper-button-lock {
  display: none;
}
#d6_first-page_banners .first-page-slider:hover .slider-banners-button-prev,
#d6_first-page_banners .first-page-slider:hover .slider-banners-button-next {
  opacity: 1;
  pointer-events: all;
}
#d6_first-page_banners .slider-banners {
  border-radius: 4px;
}
#d6_first-page_banners .slider-banners img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
#d6_first-page_banners .swiper-horizontal {
  touch-action: pan-y;
}
#d6_first-page_banners .slider-banners-button-prev,
#d6_first-page_banners .slider-banners-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 36px);
  position: absolute;
  top: 16px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
#d6_first-page_banners .slider-banners-button-prev::before,
#d6_first-page_banners .slider-banners-button-next::before {
  content: "";
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
#d6_first-page_banners .slider-banners-button-prev:hover .slider-banners-button::after,
#d6_first-page_banners .slider-banners-button-next:hover .slider-banners-button::after {
  transition: all 0.2s linear;
  color: var(--v3-color--icon-red);
}
#d6_first-page_banners .swiper-button-lock {
  display: none;
}
#d6_first-page_banners .slider-banners-button-prev {
  padding: 0 80px 0 0;
  left: -20px;
}
#d6_first-page_banners .slider-banners-button-prev::before {
  left: 20px;
  background-image: linear-gradient(90deg, rgba(250, 250, 250, 0.8) 3.54%, rgba(250, 250, 250, 0) 96.57%);
  border-radius: 4px 0px 0px 4px;
}
#d6_first-page_banners .slider-banners-button-prev .slider-banners-button::after {
  content: "prev";
}
#d6_first-page_banners .slider-banners-button-next {
  padding: 0 0 0 80px;
  right: -20px;
}
#d6_first-page_banners .slider-banners-button-next::before {
  right: 20px;
  background-image: linear-gradient(270deg, rgba(250, 250, 250, 0.8) 3.46%, rgba(250, 250, 250, 0) 96.48%);
  border-radius: 0px 4px 4px 0px;
}
#d6_first-page_banners .slider-banners-button-next .slider-banners-button::after {
  content: "next";
}
#d6_first-page_banners .slider-banners-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--v3-color--background-white);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  position: relative;
  transition: all 0.2s linear;
}
#d6_first-page_banners .slider-banners-button::after {
  font-family: swiper-icons;
  color: var(--v3-color--text-secondary-title);
  font-size: 13px;
  font-weight: bolder;
}
#d6_first-page_banners .swiper-pagination {
  bottom: 0;
}
#d6_first-page_banners .swiper-pagination-bullet {
  width: 44px;
  height: 4px;
  background-color: var(--color--hr);
  border-radius: 4px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s linear;
}
#d6_first-page_banners .swiper-pagination-bullet:hover {
  background-color: var(--v3-color--icon-red);
}
#d6_first-page_banners .swiper-pagination-bullet-active,
#d6_first-page_banners .swiper-pagination-bullet-active:hover {
  opacity: 1;
  background-color: var(--v3-color--background-grey1);
}

html[data-dir=rtl] #d6_first-page_banners .slider-banners-button-prev .slider-banners-button::after {
  content: "next";
}
html[data-dir=rtl] #d6_first-page_banners .slider-banners-button-next .slider-banners-button::after {
  content: "prev";
}

@media screen and (max-width: 1200px) {
  #d6_first-page_banners .first-page-slider {
    padding-bottom: 24px;
  }
  #d6_first-page_banners .slider-banners-button-prev,
  #d6_first-page_banners .slider-banners-button-next {
    display: none;
  }
  #d6_first-page_banners .swiper-pagination-bullet:hover {
    background-color: var(--color--button_primary-default);
  }
}