@charset "utf-8";

/* TODO */

.amtsblatt__btn {
    text-align: center;
    margin-top: 15px;
    padding-left: 15px;
}

.amtsblatt__btn a.amtsblatt__btn-a {
    background-color: #FFAA28;
    color: #fff;
    width: 100%;
}

.xxx---full-width,
.xxx---w-100 {
    width: 100% !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.lauftext .knt__text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lauftext .teasertext * {
    margin: 0;
}

.lauftext-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
    padding: 6px 0;
}

.lauftext-wrap:before,
.lauftext-wrap:after {
    content: "";
    height: 100%;
    top: 0;
    width: 10%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.lauftext-wrap:before {
    left: 0;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%
    );
}
.lauftext-wrap:after {
    right: 0;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%
    );
}

.lauftext-items {
    flex-shrink: 0;
    display: flex;
    /*gap: 20px;*/
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
}

.lauftext-item {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.lauftext-item::after {
    content: "|";
    color: #09A3E3;
    margin-left: 10px;
}

.marquee {
    animation: scroll 60s linear infinite;
}

.lauftext-wrap:hover .marquee {
    animation-play-state: paused;
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


@media (min-width: 992px) {
    .modul12-3,
    .modul12-4,
    .modul12-5,
    .modul12-6,
    .modul12-7,
    .modul12-8,
    .modul12-10,
    .modul12-11 {
        min-height: 280px !important;
        height: auto;
    }


}