.cookie-fw-container {
    background-color: rgba(0, 0, 0, 0.7);
    color: rgb(255, 255, 255);
    min-height: 69px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 10000;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.cookie-fw-inhoud {
    font-size: 13px;
    line-height: 19px;
    display: inline-block;
    position: relative;
    padding: 15px 20px;
    width: 100%;
}

.cookie-fw-tekst {
    max-width: 80%;
    flex: 0 0 80%;
    display: inline-block;
}

.cookie-fw-opties {
    max-width: 20%;
    flex: 0 0 20%;
    position: relative;
    float: right;
    right: 50px;
}

.cookie-fw-verder-button {
    background-color: rgb(116, 159, 44);
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 4px 7px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 5px;
}

.cookie-fw-verder-button:hover {
    background-color: rgb(137, 198, 35, 1);
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.cookie-fw-liever_niet-button {
    background-color: rgb(191, 0, 0);
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 4px 7px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 5px;
}

.cookie-fw-liever_niet-button:hover {
    background-color: rgb(226, 0, 0, 1);
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

@media (max-width:992px) {
    .cookie-fw-inhoud {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .cookie-fw-inhoud > div {
        display: block;
        width: 100%;
        max-width: 100%;
        position: initial;
        right: 0;
    }
    .cookie-fw-opties {
        margin-bottom: 20px;
    }
}