.vah-hinweis-balken {
    --vah-hb-background: #1d2327;
    --vah-hb-color: #ffffff;
    --vah-hb-font-size: 20px;
    --vah-hb-text-align: left;
    position: fixed;
    z-index: 2147483000;
    top: 50%;
    left: 50%;
    width: min(820px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    box-sizing: border-box;
    padding: 42px 48px 30px;
    overflow: auto;
    color: var(--vah-hb-color);
    background: var(--vah-hb-background);
    border-radius: 10px;
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
    font-size: var(--vah-hb-font-size);
    line-height: 1.45;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 180ms ease, box-shadow 180ms ease;
}

.vah-hinweis-balken.is-visible {
    opacity: 1;
}

.vah-hinweis-balken.is-closing {
    opacity: 0;
}

.vah-hinweis-balken.is-dragging {
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
    user-select: none;
}

.vah-hb-content > :first-child {
    margin-top: 0;
}

.vah-hb-content > :last-child {
    margin-bottom: 0;
}

.vah-hb-content p {
    display: block !important;
    margin-top: 0 !important;
    margin-bottom: 0.75em !important;
}

.vah-hb-content p:last-child {
    margin-bottom: 0 !important;
}

.vah-hb-content br {
    display: initial !important;
}

.vah-hb-content,
.vah-hb-content * {
    text-align: var(--vah-hb-text-align) !important;
}

.vah-hb-content a {
    color: inherit;
    text-decoration: underline;
}

.vah-hb-content a:hover,
.vah-hb-content a:focus {
    text-decoration-thickness: 2px;
}

.vah-hb-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font: inherit;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    opacity: 0.8;
}

.vah-hb-close:hover,
.vah-hb-close:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    opacity: 1;
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.vah-hb-drag-handle {
    position: absolute;
    top: 12px;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(3, 4px);
    gap: 3px;
    padding: 6px 14px;
    border-radius: 12px;
    cursor: grab;
    touch-action: none;
    transform: translateX(-50%);
    opacity: 0.62;
}

.vah-hb-drag-handle:hover {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.vah-hb-drag-handle:active {
    cursor: grabbing;
}

.vah-hb-drag-handle span {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .vah-hinweis-balken {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        padding: 42px 24px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vah-hinweis-balken {
        transition: none;
    }
}
