#cookie{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    color: white;
    padding: 10px 0 15px 0;
}

#cookie > *{
    font-family: sans-serif;
}

#cookie-panel{
    margin: auto;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#cookie-text-column{
    display: inline-block;
    width: auto;
    max-width: 70%;
    text-align: justify;
}

#cookie-button-column{
    width: auto;
    max-width: 30%;
    display: inline-block;
}

#cookie button{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: large;
    border-radius: 3px;
    height: 35px;
    width: 100px;
    transition-property: background;
    transition-duration: .3s;
}

#cookie button#agree{
    background: green;
    color: white;
}

#cookie button#agree:hover{
    background: forestgreen;
}

#cookie button#agree:active{
    background: limegreen;
}

#cookie button#disagree{
    background: firebrick;
    color: white;
}

#cookie button#disagree:hover{
    background: indianred;
}

#cookie button#disagree:active{
    background: red;
}

@media screen and (max-width: 900px){

    #cookie-panel{
        margin: auto;
        width: 100%;
        display: inline;
    }

    #cookie-text-column{
        display: inline;
        width: 100%;
        text-align: justify;
    }

    #cookie-button-column{
        width: 100%;
        display: block;
        margin: auto;
    }

    #cookie button{
        width: 90px;
    }
}