.pb-cookie-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1em;
    row-gap: 1em;
    flex-direction: column;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    color: #333333;
    background: #ffffff;
    padding: 1em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
}

.pb-cookie-notice.is-hidden {
    display: none;
}

.pb-cookie-notice.is-dark {
    color:  #333333;
    background: #ffffff;
}

.pb-cookie-notice--button button {
    white-space: nowrap;
    cursor: pointer;
    font-size: inherit;
    min-height: 2em;
    text-decoration: none;
    border: none;
}

@media (min-width: 783px) {
    .pb-cookie-notice {
        flex-direction: row;
    }
}
