.swiper {
    --swiper-theme-color: rgba(0,0,0, 1);
    --swiper-navigation-size: 36px;
    --swiper-navigation-color: rgba(255, 255, 255, 1);
    --swiper-pagination-bullet-size: 4px;
    --swiper-pagination-bullet-width: 40px;
    --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size);
    --swiper-pagination-bullet-inactive-color: rgba(0,0,0, 1);
    --swiper-pagination-bullet-inactive-opacity: .2;
    --swiper-pagination-color: var(--swiper-theme-color);
    --swiper-pagination-bullet-vertical-gap: 6px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-preloader-color: rgba(0, 0, 0, 1);
}

.swiper-wrapper {
    padding-bottom: 50px;
}

/* navigation */
.swiper-button-prev,
.swiper-button-next,
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    transition: opacity 0.3s ease;
    height: 100%;
    width: 80px;
    bottom: 0;
    top: auto;
    padding-bottom: 50px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev {
    left: 0px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}

.swiper-button-next {
    right: 0px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
}

/* .swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
} */

/* .swiper:hover .swiper-button-next.swiper-button-disabled,
.swiper:hover .swiper-button-prev.swiper-button-disabled {
    opacity: 0.25;
} */

.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: var(--theme--font-family--font-awesome);
    font-weight: 300;
    color: rgba(255,255,255, 1);
    font-size: var(--theme--font-size--normal);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0, 1);
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    line-height: 40px;
}

.swiper-button-prev::after {
    content: '\f053';
    left: 0;
}

.swiper-button-next::after {
    content: '\f054';
    right: 0;
}

/* pagination */
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    border-radius: 2px;
}

.swiper-pagination-bullet-active {
    border-radius: 2px;
}
