
:root {
    --green-dark: #07c38d;
    --black-dark: #111111;
}

/*
Cookie
*/

.cookie {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 40px;
    overflow: hidden;
    background-color: #eeeeee;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.cookie__message {
    font-size: 1em;
    font-weight: normal;
    color: #77777a;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie__link {
    color: inherit;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.cookie__button {
    display: block;
    width: 200px;
    font-size: 0.8em;
    font-weight: 600;
    color: #eeeeee;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 15px 0;
    background-color: var(--black-dark);
    border: none;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: ackground-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    outline: none;
    cursor: pointer;
}

.cookie__button:hover {
    background-color: var(--color-background-two);
}

/* 992px */
@media (min-width: 62em) {
    .cookie__flex {
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }

    .cookie__message {
        flex-basis: calc(100% - 250px);
        margin-bottom: 0;
    }
}
