/* Cookie Dialog */
#gdpr-cookie-message-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50000;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

#gdpr-cookie-message {
    font-family: var(--theme-font-univers);
    height: auto;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#gdpr-cookie-message button {
    font-family: var(--theme-font-univers-bold);
    font-weight: normal;
    position: relative;
    padding: 0.5rem 1rem;
    border-image: initial;
    overflow: hidden;
    color: #fff;
    background-color: var(--theme-color-blue-dark);
    border: 1px solid var(--theme-color-blue-dark);
    border-radius: 0;
    min-width: 150px;
    width: auto;
}

#gdpr-cookie-message button:hover {
    background-color: var(--theme-color-blue);
    border: 1px solid var(--theme-color-blue);
}

#gdpr-cookie-message ul {
    display: flex;
    list-style: none;
}

#ccbSpinner {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

#gdpr-cookie-message h4,
#gdpr-cookie-message h5 {
    font-family: var(--theme-font-univers);
    font-weight: normal;
    text-transform: initial;
}


@media (max-width: 1024px) {
    #gdpr-cookie-message {
        height: 100%;
        overflow-y: scroll;
    }

    #gdpr-cookie-message button {
        display: block;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
