.aachc-banner-manager {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
    /* shown via JS if not closed */
    padding: 24px 18px;
    background: #b9d13f;
    color: #fff;
    font-family: inherit;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.aachc-banner-manager__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.aachc-banner-manager__message {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.aachc-banner-manager__message a {
    color: #fff;
    text-decoration: underline;
}

.aachc-banner-manager__message a:hover {
    text-decoration: none;
}

.aachc-banner-manager__close {
    all: unset;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 160ms ease;
}

.aachc-banner-manager__close:hover {
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.aachc-banner-manager__close:focus {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.aachc-banner-manager__close svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .aachc-banner-manager {
        padding: 20px 14px;
    }

    .aachc-banner-manager__inner {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 28px;
    }

    .aachc-banner-manager__message {
        font-size: 15px;
    }

    .aachc-banner-manager__close {
        top: -12px;
        right: -12px;
    }
}
