.CookieBanner {
    background-color:#f5f3eb;
    color: #333;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate3d(0, 0, 0);
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1100
}

.CookieBanner--is-hidden {
    transform: translate3d(0, 100%, 0);
}

.CookieBanner__inner {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.CookieBanner__content {
    margin-right: 1rem;
}

.CookieBanner__content a {
    color: inherit;
    display: inline-block;
    text-decoration: underline;
}

.CookieBanner__content p {
    font-size: 1em;
    line-height: 1.618;
    margin-bottom: 0.5em;
}

.CookieBanner__content p:last-child {
    margin-bottom: 0;
}

.CookieBanner__content .CookieBanner__heading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.CookieBanner__button {
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid;
    font-size: 1em;
    padding: 0.25em 0.5em;
    display: block;
    width: 100%;
    font-weight: 400;
    max-width: 130px;
    background-color: #333;
    color: #fff;
}

.CookieBanner__button:hover {
    background-color: #5c5b5b;
}


@media (min-width: 768px) {
    .CookieBanner__inner {
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .CookieBanner__content {
        margin-bottom: 0;
    }

    .CookieBanner__heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}
