.cookie-bar {
    transition: bottom .4s;
    padding: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    color: black;
    z-index: 9999999999;
    font-size: 16px;
    font-weight: normal;
    font-family: "Fira Sans", sans-serif;
}

.cookie-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-message {
    margin-right: 40px;
}

.cookie-asset {
    color: black;
    text-decoration: none;
}

.cookie-button {
    text-decoration: none;
    text-transform: none;
    font-size: 1em;
    min-width: 180px;
    background-color: #D22730;
    border: 0;
    border-radius: 4px;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
}

@media only screen and (max-width: 640px) {
    .cookie-bar {
        font-size: 10px;
    }

    .cookie-wrapper {
        flex-flow: row wrap;
    }

    .cookie-message {
        margin-bottom: 10px;
        margin-right: 0;
        text-align: center
    }

    .cookie-button {
        font-size: 14px;
    }
}
