.cookie_container {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #2f3640;
    color: #f5f6fa;
    padding: 12px 32px;
    transition: 400ms;
    box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.503);
    display: flex;
    z-index: 100;
    opacity: 85%; /*hack for the z-index*/
}

.cookie_container.active {
    bottom: 0;
}

.cookie_container a {
    color: #f5f6fa;
}

.cookie_button {
    background: green;
    color: #f5f6fa;
    border: 0;
    padding: 12px 48px;
    font-size: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
    cursor: pointer;
}