.cookies-note {
    background-color: #fff;
    color: #000;
}
.cookies-note.cookies-note_top {
    background-color: #fbfbfb;
    border-bottom: 1px solid #d2d2d2;
}
.cookies-note.cookies-note_bottom {
    position: fixed;
    width: 100%;
    z-index: 99999;
    bottom: 0;
    color: white;
    border-top: 1px solid #292929;
    background-color: rgba(29, 29, 29, 0.85);
}

#cookies_note > * {
    font-family: Arial, Helvetica, sans-serif;
}
#cookies_note a {
    color: #81ca41;
    text-decoration: underline;
}
#cookies_note a:hover {
    color: #47b71e;
    text-decoration: none;
}
.cookies-note__inner {
    margin: 0 auto;
    max-width: 1100px;
    padding: 5px;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cookies-note__content {
    margin: 0px 20px;
}
.cookies-note__title {
    margin-bottom: 8px;
    font-size: 16px;
}
.cookies-note__text {
    font-size: 12px;
}
#cookies_note button.cookies-note__continue,
#cookies_note button.cookies-note__continue:hover,
#cookies_note button.cookies-note__continue:active {
    background-color: #84bd18;
    color: #fff;
    font-size: 14px;
    border: 0px solid;
    border-radius: 5px;
    padding: 8px;
    cursor: pointer;
    line-height: 1;
    outline: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    font-family: Arial, Helvetica, sans-serif;
	margin: 20px;
}
#cookies_note button.cookies-note__continue:hover {
    background-color: #6da206;
}

@media screen and (max-width: 768px) {
    .cookies-note {
        position: fixed;
        width: 100%;
        z-index: 1000;
        bottom: 0;
        border-top: 1px solid #d2d2d2;
        background-color: rgba(251, 251, 251, 0.9);        
    }
    .cookies-note__inner {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    .cookies-note__text {
        margin-bottom: 5px;
    }
}