/* Schieber5 — Kein Schatten, kein Label, Dots innerhalb der Grafik */

.s1-wrapper {
    background-color: #e8e8e8;
    padding: 50px 30px;
    box-sizing: border-box;
    width: 100%;
}

.s1-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.s1-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Icon Box ───────────────────────────────────────────── */
.s1-icon-box {
    width: 140px;
    height: 140px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: block;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none !important;
    cursor: default;
    position: relative;
    overflow: hidden;
}

a.s1-icon-box {
    cursor: pointer;
}

.s1-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Label ausblenden — ist im Bild enthalten */
.s1-icon-label {
    display: none !important;
}

/* ── Center (größer) ────────────────────────────────────── */
.s1-center .s1-icon-box {
    width: 190px !important;
    height: 190px !important;
}

/* ── Dots INNERHALB der Grafik (unten zentriert) ─────────── */
.s1-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.s1-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.45);
    transition: background-color 0.3s ease;
    display: inline-block;
}

.s1-dot.s1-dot-active {
    background-color: #A91B1B;
}

/* ── Rotation wrap ──────────────────────────────────────── */
.s1-icon-wrap {
    position: relative;
    width: 190px;
    height: 190px;
    overflow: hidden;
}

.s1-icon-wrap .s1-icon-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.s1-icon-wrap .s1-icon-box.s1-active {
    transform: translateX(0%);
    pointer-events: auto;
}

.s1-icon-wrap .s1-icon-box.s1-leaving {
    transform: translateX(-100%);
}
