/* CSS Document */
.swiper-viewport {
  margin: 0;
  background: #fff;
  z-index: 1;
  width: 100%;
  position: relative;
  overflow: visible;
}
/* OpenCart Code */
.swiper-container {
  direction: ltr !important;
}
.swiper-pager {
  width: 100%;
  position: absolute;
  top: 50%;
  line-height: 45px;
}
.swiper-button-prev,
.swiper-button-next {
  width: 45px;
  font-size: 45px;
  color: #e74a27;
  transition: all 0.3s ease;
  z-index: 2;
  background-image: none;
}
.swiper-viewport .swiper-button-prev {
  left: 10px;
}
.swiper-viewport .swiper-button-next {
  right: 10px;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: block;
  width: 45px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}
.swiper-pagination {
  bottom: 0px;
  left: 0;
  text-align: center;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  margin: 0 8px;
  opacity: 1;
}
.swiper-pagination-bullet:hover {
  background: rgba(0, 0, 0, 0.7);
}
.swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.9);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
}
