/* 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 {
	opacity: 1;
	bottom: 5px;
	left: 0;
	text-align: center;
	width: 100%;
	
}
.swiper-pagination-bullet {
    width: 70px;
    height: 5px;
    display: inline-block;
	margin: 0 4px;
    background: #ffffff;
	opacity: 1;
    border-radius: 0;
    cursor: pointer;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    text-indent: -9999px;
    -webkit-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    -moz-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    -o-transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
    transition: transform 0.3s cubic-bezier(0.7, -0.2, 0.3, 2.5), color 0.15s ease-out;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
	background:#002a56;
    /*transform: scale(1.35);*/
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width:991px){
    .swiper-pagination{
        opacity: 1;
    }
    .swiper-pagination-bullet {
        width: 50px;
    }
}