/* CSS Document */
.swiper-viewport {
	z-index: 1;
	width: 100%;
	position: relative;
	overflow: visible;
	padding: 24px 0 0;
}
/* OpenCart Code */
.swiper-container {
	direction: ltr !important;
}
@media (max-width: 767px){
	.swiper-container {
		margin: 0 51px;
	}
}
@media (max-width: 372px){
	.swiper-container {
		margin: 0 20px;
	}
}
.swiper-pager {
	width: 100%;
	position: absolute;
	top: 50%;
	line-height: 45px;
}
.swiper-button-prev, .swiper-button-next {
	color: #fff;
	transition: all .3s ease;
	z-index: 2;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	text-align: center;
	background: url(swiper-button-arrow.png) 48% center no-repeat #e32020;
	margin-top: -18px;
}
.swiper-button-next {
	transform: rotate(180deg);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
	box-shadow: 0px 0px 5px #E32020;
}
.swiper-viewport .swiper-button-prev {
	left: -5px;
}
.swiper-viewport .swiper-button-next {
	right: -5px;
}
/* Desktop */
@media (min-width: 768px){
	.swiper-viewport .swiper-button-prev {
		left: -66px;
	}
	.swiper-viewport .swiper-button-next {
		right: -66px;
	}
}
@media (min-width: 1200px) and (max-width: 1311px),
(min-width: 992px) and (max-width: 1091px),
(min-width: 768px) and (max-width: 871px), {
	.swiper-viewport .swiper-button-prev {
		left: -10px;
	}
	.swiper-viewport .swiper-button-next {
		right: -10px;
	}
}
.swiper-pagination {
	bottom: -40px;
	left: 0;
	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;
}
.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;
}