.cookie-hint-widget {
    display: block;
    position: fixed !important;
    left: 0;
    width: 100%;
    z-index: 99999;

    background-color: #333333;
    color: white;
    opacity: .97;
}

.cookie-hint-widget--hidden {
    display: none !important;
}

.cookie-hint-widget--position-top {
    top: 0;
}
.cookie-hint-widget--position-bottom {
    bottom: 0;
}

.cookie-hint-widget--body {
    max-width: 60em;
    margin: 0 auto;
    padding: 1em;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cookie-hint-widget--body a {
    color: white !important;
}
.cookie-hint-widget--body a:hover {
    color: inherit;
}

.cookie-hint-widget--agree-btn {
    flex-shrink: 0;
    border-style: none;
    font-size: 1.1em;
    cursor:pointer;
    margin-left: 1em;

    padding: .5em 1em;
    background-color: #00AA00;
    color: #f0f0f0;
}

.cookie-hint-widget--agree-btn:hover {
    background-color: #008800;
    color: white;
}

.cookie-hint-widget--data {
    display: none;
}

@media screen and (max-width: 40em) {	/*	medium (<= 640px)	*/
    .cookie-hint-widget--body {
        flex-direction: column;
    }
    .cookie-hint-widget--agree-btn {
        margin-top: 1em;
    }
}