/* Slider Swiper my.CSS 09/2024 */
:root {
    --swiper-theme-color: rgba(197,188,188,1);
    /*
    --swiper-preloader-color: var(--swiper-theme-color);
    --swiper-wrapper-transition-timing-function: initial;
    */
  }

/* Swiper + Ratio + IMG */
.swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.swiper.by21x9 {
    aspect-ratio: 21/9;
}
.swiper.by4x3 {
    aspect-ratio: 4/3;
}
.swiper.auto {
	aspect-ratio: unset;
	background-color: rgba(0,0,0,.02);
}


.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ausgefuellt */
    object-position: center center;
    max-height: 100%;
    min-height: 100%;    
}
.swiper-slide.contain img {
	object-fit: contain;
}

.swiper span.swiper-pagination-bullet {
    --bicolor-half-silver: linear-gradient(90deg,#111 50%,#efefef 0);
    background: var(--bicolor-half-silver);
    border-radius: 50%;
}

/* Progress - Load Circle */
.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(--swiper-theme-color);
}

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