/* CSS Document */
.swiper-viewport {
	margin: 0 0 60px;
	background: #fff;
	z-index: 1;
	border: 4px solid #fff;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
	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: 32px;
    height: 32px;
    background-color: #231F20;
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    padding: 0;
    color: transparent;
    background-size: 6px;
    /* text-indent: -999px; */
}
.swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9L1 5L5 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    left: -30px;
}
.swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L1 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    right: -30px;

}
/* Desktop */
@media (min-width: 768px){
    .swiper-viewport .swiper-button-prev {
        opacity: 0;
        left: -20px;
    }
    .swiper-viewport .swiper-button-next {
        opacity: 0;
        right: -20px;
    }
    .swiper-viewport:hover .swiper-button-prev {
        opacity: 0.7;
        left: 10px;

    }
    .swiper-viewport:hover .swiper-button-next {
        opacity: 0.7;
        right: 10px;
    }
}
.swiper-pagination {
	bottom: -40px;
	left: 0;
	text-align: center;
	width: 100%;
}
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #231F20;
	border-radius: 50%;

	margin: 2px 10px;
	opacity: 1;
}
.swiper-pagination-bullet:hover {
	background: rgba(0, 0, 0, 0.7);
}
.swiper-pagination-bullet-active {
	background: transparent;
    width: 14px;
    height: 14px;
    border: 1px solid #231F20;
    margin-top: 0;
    margin-bottom: 0;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}