#cookie-notice {
    display: none;
    position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.5rem;
    line-height: 1.6em;
    font-size: 1.6rem;
    color: white;
    background-color: #1e1e1e;
    transition: 0.5s ease;
}
#cookie-notice.v-hidden {
    transform: translateY(100%);
    pointer-events: none;
}

#cookie-notice .cookie-notice-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

#cookie-notice  .cookie-notice-buttons {
    text-align: center;
}
#cookie-notice a {
    display: inline-block;
    margin: 0.25em 0.5em;
    padding: 0.25em 1em;
    background-color: #0B5A98;
    border-radius: 5px;
    color: white !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0);
    font-weight: 400;
}

#cookie-notice a:hover,
#cookie-notice a:focus,
#cookie-notice a:active {
    text-decoration-color: white;
}

a#cn-accept-cookie {
    background-color: #0B5A98;
}

a#cn-more-info {
    background-color: #424242;
}