body {
    margin: 0;
}
.cookie-tab {
    z-index: 10000;
    display: inline;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    height: 80px;
}
.cookie-tab-content {
    background-color: rgb(28,138,217);
    animation-name:  scrollTop;
    padding: 15px 20px;
    vertical-align: baseline;
    margin: 0;
    /*position: fixed;*/
}
.cookie-tab-buttons {
    display: flex;
    float: right;
    text-align: left;
    user-select: none;

}
.cookie-tab-button {
    display: block;
    height: 40px;
    width: 180px;
    cursor: pointer;
    margin: 0 0 0 20px;
    border-radius: 4px;
    font-size: 20px;
    text-align: center;
    padding: 0 16px;
    background-color: transparent;
    border: 1px solid #ffffff;
    outline: none;
    z-index: 2;
    color: #ffffff;
}
.cookie-tab-button:hover, .cookie-tab-button:focus {
    border-color: #f3f3f3;
    background-color: #f3f3f3;
    color: #333333;
}
.cookie-tab-button:active {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #333333;
}

.cookie-tab-text {
    color: white;
    position: relative;
    line-height: 20px;
    padding-left: 34px;
    max-width: none;
    margin: 10px 0 0 0;
}
.cookie-tab-text:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("./images/hint-24x24-white.svg");
}