:root {
    --ss-theme-color: var(--swiper-theme-color, #000);
}

.ss-slide {
    position: relative;
    width: 100%;
    display: flex;
    background-color: white;
}

.ss-slide.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.ss-slide.swiper-slide img.item-slide {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-slide.swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.ss-slide .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--ss-theme-color);
}

.ss-slide .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 999;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--ss-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.ss-slide .ss-slide-arrows {
    color: var(--ss-theme-color);
    background-image: none;
}

.ss-slide .swiper-pagination-bullet {
    background-color: var(--ss-theme-color);
}

@media screen and (max-width: 767px) {
    .ss-slide-hidden-sm {
        display: none !important;
    }
}