.cookie {
    background: #000;
    color: #ecf0f1;
    padding: 1rem 10%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .cookie .cookie__message {
        padding: 0.2rem 0;
        margin: 0;
        display: inline-block;
    }

    .cookie .cookie__accept {
        font-weight: bold;
        color: #000;
        background: #fff;
        padding: 10px 15px;
        border: 0;
        float: right;
        transition: background 150ms ease;
        text-decoration: none;
        cursor: pointer;
        display: inline-block;
    }
