#cookie_consent_notification {
    position: fixed;
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    margin: 0;
    padding: 8px 0px;
    color: white;
    background: #2b2b2b;
    z-index: 999999;
    width: 100%;
    text-align: center;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -ms-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-backface-visibility: hidden;
    /* Chrome, Safari, Opera */
    backface-visibility: hidden;
}

#cookie_consent_notification button {
    color: #fff;
    font-size: 12px;
    border-radius: 50px;
}

#cookie_consent_notification.active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#cookie_consent_notification .disable_cookie_consent_notification {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: #229ac8;
    border-radius: 50px;
}

.cookiespopup_text {
    text-align: left;
    padding-right: 10px;
}

.cookies_content {
    display: flex;
    font-size: 12px;
    line-height: 145%;
}

.cookiespopup_text a {
    text-decoration: underline;
    color: #fff;
}

.cookiespopup_text a:hover,
.cookiespopup_text a:focus {
    text-decoration: none;
}

.cookies_content {
    display: flex;
    font-size: 12px;
    line-height: 145%;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 575px) {
    .cookies_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cookiespopup_text {
        margin-bottom: 6px;
    }
}