:root {
  --primary-color: #203569;
  --accent-sunflower: #FABB19;
  --accent-cherry: #6A1A19;
  --accent-blue: #4FA7FF;
  --accent-mint: #2BB673;
  --neutral-light: #F2F2F2;
  --neutral-text: #666666;
}

/* CSS Document */
.swiper-viewport {
	margin: 0px;
	z-index: 1;
	width: 100%;
	position: relative;
	overflow: hidden;
}
/* OpenCart Code */
.main-slider .swiper-wrapper, .swiper-container {
	direction: ltr !important;
}
.swiper-pagination {
    bottom: 15px;
    left: 0;
    text-align: center;
    width: 100%;
}
.swiper-pagination-bullet {
	display: inline-block;
    margin: 0 3px;
    opacity: 1;
    cursor: pointer;
    width: 12px;
    height: 12px;
    text-indent: -9999px;
    background-color: #000;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 0px;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
	background:var(--accent-blue);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}