/* 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 {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(0, 0, 0, 0.8);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #fff;
	border: 5px solid #D9D9D9;
	transition: all .3s ease;
	z-index: 2;
	opacity: 0.8;
	margin-top: 5%;
}
.swiper-viewport .swiper-button-prev {
	left: -25px;
}
.swiper-viewport .swiper-button-next {
	right: -25px;	
}

.swiper-button-prev:hover, .swiper-button-next:hover {
	opacity: 1;
}

.swiper-button-prev:before {
	font-family: FontAwesome;
	content: "\f053"; 
	color: rgba(0,0,0,0.8);
	font-size: 20px;
	margin-left: -2px;
	margin-top: 1px;
}
.swiper-button-next:before {
	font-family: FontAwesome;
	content: "\f054"; 
	color: rgba(0,0,0,0.8);
	font-size: 20px;
	margin-right: -2px;
	margin-top: 1px;
}
.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}
.swiper-pagination {
	margin-top: 30px;
	position: unset;
	text-align: center;
	width: 100%;
}
.swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 20px;
	box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
	margin: 0 5px;
	opacity: 1;
	transition: all 0.2s easy;
}
.swiper-pagination-bullet:hover {
	background: rgba(0, 0, 0, 0.7);
}
.swiper-pagination-bullet-active {
	transform: scale(1.3);
	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;
}

@media screen and (min-width: 768px) {
	.swiper-viewport .swiper-pagination {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.swiper-viewport .swiper-pager {
		display: none;
	}
}