/* Arrows */
.swiper-default-template .swiper-button-prev,
.swiper-default-template .swiper-button-next {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 64px;
    width: 64px;
    margin: auto;
    background-color: rgba(231,121,45,.6);
    background-color: rgba( var(--main-event-color), .6);
    z-index: 2;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.swiper-default-template .swiper-button-prev:hover,
.swiper-default-template .swiper-button-next:hover {
    background-color: rgba(231,121,45,.8);
    background-color: rgba( var(--main-event-color), .8);
}
.swiper-default-template  .swiper-button-prev{ 
    left: 0;
    opacity: 0;
}
.swiper-default-template  .swiper-button-next{ 
    right: 0;
    opacity: 0;
}

/* Pagination */
.swiper-default-template  .swiper-pagination{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    position: relative;
    top: 15px;
    margin-bottom: 30px;
}
.swiper-default-template  .swiper-pagination .swiper-pagination-bullet,
.swiper-default-template  .swiper-pagination-item{
    display: inline-block;
    background: #FFF;
    background-color: var(--white-color);
    height: 16px;
    width: 16px;
    border-radius: 100px;
    margin: 0 5px;
    background-color: #D8D8D8;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 1;
}
.swiper-default-template  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-default-template  .swiper-pagination-item:hover,
.swiper-default-template  .swiper-pagination-item.active{
    background-color: #E7792D;
    background-color: var(--main-event-color);
}

/* White pagination */
.whitePagination .swiper-pagination .swiper-pagination-bullet {
    background-color: #D8D8D8;
    opacity: 1;
}

.whitePagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.whitePagination .swiper-pagination .swiper-pagination-item:hover,
.whitePagination .swiper-pagination .swiper-pagination-item.active {
    background-color: #00508B;
    opacity: 1;
}