:root {
    --global-message-height: 0px;
}

body.has-global-message .bde-header-builder {
    top: var(--global-message-height) !important;
}

.global-message-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    background: #1d281d;
    color: #ffffff;
}

.global-message-bar__inner {
    width: min(100% - 32px, 1152px);
    margin: 0 auto;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.global-message-bar p {
    margin: 0;
}

.global-message-bar a {
    color: inherit !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

@media (max-width: 767px) {
    .global-message-bar__inner {
        width: min(100% - 24px, 1152px);
        padding: 9px 0;
        font-size: 13px;
        line-height: 1.4;
    }
}