.tus-hinweisbanner {
    --tus-bg: #f7d74b;
    --tus-text: #231f0d;
    --tus-button-bg: #231f0d;
    --tus-button-text: #fff;
    position: relative;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    background: var(--tus-bg);
    color: var(--tus-text);
    font-size: 16px;
    line-height: 1.45;
}

.tus-hinweisbanner--red {
    --tus-bg: #b42318;
    --tus-text: #fff;
    --tus-button-bg: #fff;
    --tus-button-text: #7a1710;
}

.tus-hinweisbanner--green {
    --tus-bg: #18794e;
    --tus-text: #fff;
    --tus-button-bg: #fff;
    --tus-button-text: #0f5132;
}

.tus-hinweisbanner--blue {
    --tus-bg: #1769aa;
    --tus-text: #fff;
    --tus-button-bg: #fff;
    --tus-button-text: #0d4775;
}

.tus-hinweisbanner--contained {
    width: min(1200px, calc(100% - 32px));
    margin: 16px auto 0;
    border-radius: 10px;
    overflow: hidden;
}

.tus-hinweisbanner__inner {
    width: min(1200px, calc(100% - 32px));
    min-height: 58px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-sizing: border-box;
}

.tus-hinweisbanner--contained .tus-hinweisbanner__inner {
    width: 100%;
    padding: 12px 18px;
}

.tus-hinweisbanner__icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-weight: 800;
    line-height: 1;
}

.tus-hinweisbanner__content {
    flex: 0 1 auto;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    text-align: center;
}

.tus-hinweisbanner__title {
    font-weight: 750;
}

.tus-hinweisbanner__message {
    overflow-wrap: anywhere;
}

.tus-hinweisbanner__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 16px;
    border-radius: 6px;
    background: var(--tus-button-bg);
    color: var(--tus-button-text) !important;
    text-decoration: none !important;
    font-weight: 700;
    white-space: nowrap;
}

.tus-hinweisbanner__button:hover,
.tus-hinweisbanner__button:focus-visible {
    filter: brightness(1.08);
    text-decoration: underline !important;
}

@media (max-width: 720px) {
    .tus-hinweisbanner__inner {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
    }

    .tus-hinweisbanner__content {
        display: block;
        flex: 0 1 calc(100% - 48px);
        text-align: center;
    }

    .tus-hinweisbanner__title,
    .tus-hinweisbanner__message {
        display: block;
    }

    .tus-hinweisbanner__button {
        margin-left: 0;
    }
}