.start-content.heroslider {
    background-color: #fff;
    /*height: 512px;*/
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 0;
    border-top: 1px solid rgb(206, 220, 228);
    border-bottom: 1px solid rgb(206, 220, 228);
    position: relative;
}

.heroslider img.full {
    display: none;
}

.heroslider ul {
    float: left;
    margin-right: -9999em;
}

.heroslider li {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 0;
    border-left: 1px solid rgb(206, 220, 228);
    max-width: 75vw;
}

.heroslider .item-big,
.heroslider .item-thin > div {
    padding: 16px 16px 0 16px;
}

.heroslider .item-thin > div:first-child {
    border-bottom: 1px solid rgb(206, 220, 228);
}

.heroslider h3 {
    margin: 0px;
    font-size: 16px;
    line-height: 20px;
    height: 36px;
    padding: 4px 0px;
    color: rgb(40, 123, 168);
}

.heroslider .whiteout {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(50% - 37.5vw);
    background-color: rgba(255, 255, 255, 0.5);
}

.heroslider .whiteout:first-of-type {
    left: 0;
}
.heroslider .whiteout:last-of-type {
    right: 0;
}

.heroslider[data-enabled] {
    overflow-x: hidden;
}
.heroslider[data-enabled] .whiteout {
    display: block;
}
.heroslider[data-enabled] ul {
    margin-left: calc(50% - 37.5vw);
}

.heroslider .next,
.heroslider .previous {
    position: absolute;
    top: 45%;
    top: calc(50% - 24px);
    height: 48px;
    width: 38px;
    /*opacity: 0.8;*/
    cursor: pointer;
    padding: 9px;
    background-color: rgb(32, 63, 90);
    background-color: rgba(32, 63, 90, 0.8);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center center;
    z-index: 100;
}
.heroslider .next:hover,
.heroslider .next:focus,
.heroslider .previous:hover,
.heroslider .previous:focus {
    background-color: rgba(253, 238, 179, 0.2);
    outline: 1px dotted rgba(32, 63, 90, 0.8);
}
.heroslider .next {
    background-image: url('https://www.mvtag-2025.de/fileadmin/layout/img/small_gt_yellow.svg');
    left: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.heroslider .previous {
    background-image: url('https://www.mvtag-2025.de/fileadmin/layout/img/small_lt_yellow.svg');
    right: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.heroslider-radios {
    text-align: center;
    position: relative;
}

.heroslider-radios label {
    position: relative;
    margin-right: 1em;
}

.heroslider-radios label:after {
    content: '';
    display: block;
    box-sizing: border-box;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 1px solid rgb(40, 123, 168);
    position: absolute;
    left: -13px;
    top: 3px;
    cursor: pointer;
}

.heroslider-radios input[type="radio"]:checked + label:after {
    background-color: rgb(40, 123, 168);
    border-color: transparent;
}

.heroslider-radios input[type="radio"] {
    opacity: 0;
}

.heroslider-radios .autoslide {
    position: absolute;
    right: calc(50% - 9em);
    top: calc(50% - 12px);
    border: 0;
    border-radius: 3px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    background-color: rgb(32, 63, 90);
    background-color: rgba(32, 63, 90, 0.8);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
}
.heroslider-radios .autoslide:focus,
.heroslider-radios .autoslide:hover {
    background-color: rgba(253, 238, 179, 0.2);
    outline: 1px dotted rgba(32, 63, 90, 0.8);
}
.heroslider-radios .autoslide.active {
    background-image: url('https://www.mvtag-2025.de/fileadmin/layout/img/pause_yellow.svg');
}
.heroslider-radios .autoslide.inactive {
    background-image: url('https://www.mvtag-2025.de/fileadmin/layout/img/play_yellow.svg');
}

@media (min-width: 400px) {
    .heroslider h3 {
        margin: 0px;
        font-size: 32px;
        line-height: 20px;
        height: 65px;
        padding: 16px 0px;
    }
    .heroslider li {
        max-width: 100%;
    }
    .heroslider .whiteout {
        width: calc(50% - 158px);
    }
    .heroslider[data-enabled] ul {
        margin-left: calc(50% - 158px);
    }
}

@media all and (min-width: 48em) {
    .heroslider img.half {
        display: none;
    }
    .heroslider img.full {
        display: block;
    }
    .heroslider .whiteout {
        width: calc(50% - 324px);
    }
    .heroslider[data-enabled] ul {
        margin-left: calc(50% - 324px);
    }
}

@media all and (min-width: 64em) {
    .heroslider .whiteout {
        width: calc(50% - 481px);
    }
    .heroslider .whiteout:last-of-type {
        width: calc(50% - 482px);
    }
    .heroslider[data-enabled] ul {
        margin-left: calc(50% - 481px);
    }
}