/* CSS Document */

.swiper-pager div {
    width: 100%;
}
.swiper-viewport .swiper-pager {
    width: 100%;
    position: absolute;
    top: 50%;
}
.swiper-pager div {
    position: absolute;
    text-align: center;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #000000;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 20px;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
/* prev button start */

.swiper-pager .swiper-button-prev {
    right: auto;
    left: 80px;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    background-image: url("../img/slider-prev.svg");
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.swiper-viewport:hover .swiper-pager .swiper-button-prev {
    left: 20px;
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.swiper-pager .swiper-button-prev:hover {
    background-color: #bf4304;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
/* prev button end */

/* next button start */

.swiper-pager .swiper-button-next {
    right: 80px;
    left: auto;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    background-image: url("../img/slider-next.svg");
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.swiper-viewport:hover .swiper-pager .swiper-button-next {
    right: 20px;
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.swiper-pager .swiper-button-next:hover {
    background-color: #bf4304;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
/* next button end */

.swiper-viewport {
    margin: 0 0 60px;
    background: #fff;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    width: 100%;
    position: relative;
    overflow: visible;
}
/* OpenCart Code */

.swiper-container {
    direction: ltr !important;
}
/* Desktop */

/*.swiper-button-prev:before {
    width: 40px;
    height: 40px;
    font-family: FontAwesome;
    content: "\f104";
    color: #ffffff;
    font-size: 90px;
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
    color: #bc8246;
}
.swiper-button-next:before {
    width: 40px;
    height: 40px;
    font-family: FontAwesome;
    content: "\f105";
    color: #ffffff;
    font-size: 90px;
}*/

.swiper-pagination {
    bottom: -40px;
    left: 0;
    text-align: center;
    width: 100%;
}
.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #dddddd;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
}
.swiper-pagination-bullet:hover {
    background: #0083C1;
}
.swiper-pagination-bullet-active {
    background: #0083C1;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: pointer;
    pointer-events: auto;
}
 
@media (max-width: 979px) {
    .main-slider .swiper-pager div {
        display: none;
    }
    .main-slider .swiper-pagination {
        display: block;
    }
}