.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: 1000;
    bottom: 0;
    border-top: 1px solid #d2d2d2;
    background-color: rgba(251, 251, 251, 0.9);
}

#cookies_note > * {
    font-family: Arial, Helvetica, sans-serif;
}
#cookies_note a {
    color: #006bd8;
    text-decoration: underline;
}
#cookies_note a:hover {
    color: #ff0000;
    text-decoration: none;
}
.cookies-note__inner {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 5px;
    line-height: 1.4;
    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__inner.cookies-note__inner_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.cookies-note__content {
    margin-right: 20px;
    position: relative;
    text-align: left;
    padding-right: 10px;
}
.cookies-note__title {
    margin-bottom: 5px;
    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: #16a9b3;
    color: #fff;
    font-size: 13px;
    border: 1px solid;
    border-radius: 3px;
    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;
}
#cookies_note button.cookies-note__continue:hover {
    background-color: #158f98;
}
#cookies_note button.cookies-note__continue:empty {
    display: none;
}
.cookies-note__close {
    position: absolute;
    top: -2px;
    right: -20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.cookies-note__close:before,
.cookies-note__close:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 3px;
    width: 12px;
    height: 2px;
    background: #333;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.cookies-note__close:hover:before,
.cookies-note__close:hover:after {
    opacity: 1;
    transition: opacity 0.2s;
}
.cookies-note__close:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.cookies-note__close:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

@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;
    }
}