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

body.has-global-message {
    margin-top: 135px;
}

.global-message-bar {
    position: fixed;
    top: 0;
    z-index: 10001;
    width: 100%;
    background: #121212;
    color: #fff;
}

.global-message-bar__inner {
    width: 100%;
    height: 45px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-message-bar p {
    margin: 0;
    font-weight: 600;
    line-height: 120%;
    font-size: 16px;
}

.global-message-bar p a {
    text-decoration: underline;
    color: white;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

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

.global-message-bar.global-message-bar--orange {
    background-color: var(--bde-palette-color-1-d5a3e49d-cb14-4308-b767-4ddef11a4eac);
    color: white;
}

.global-message-bar.global-message-bar--blaa {
    background-color: var(--bde-brand-primary-color);
    color: white;
}

.global-message-bar.global-message-bar--hvid {
    background-color: white;
    color: var(--bde-body-text-color);
    border-bottom: solid 1px #eee;
}

.global-message-bar.global-message-bar--hvid p a {
    color: var(--bde-body-text-color);
}

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