.cookie-notice {
    position: fixed;
    bottom: -100%;
    display: block;
    width: 100%;
    padding: 1em 0;
    text-align: left;
    font-size: 12px;
    transition: bottom 700ms;
    background-color: #283E45;
    color: #fff;
}

.cookie-notice.active {
    bottom: 0;
}

.cookie-notice--inner {
    max-width: 942px;
    margin: 0 auto;
    padding: 0 40px !important;
}

.cookie-notice button {
    display: block;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    padding: 1em;
    font-size: 12px;
    transition: color 300ms, background-color 300ms;
    margin: 1em auto 0;
    background-color: transparent;
}

.cookie-notice button:hover {
    cursor: pointer;
    color: #fff;
    background-color: #ec7404;
}

.cookie-notice a {
    color: #ec7404;
    text-decoration: underline;
}

.cookie-notice .col.left-col,
.cookie-notice .col.right-col {
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 640px) {
    .cookie-notice .col.left-col {
        width: 100%;
    }

    .cookie-notice .col.right-col {
        width: 100%;
    }

    .cookie-notice button {
        text-align: center;
        float: none;
    }

    .cookie-notice--inner.two-col {
        margin-bottom: 0;
    }
}