
footer{
    position: relative;
}

.cookie_accept_buttons{
    display: flex;
}

#cookie_accept_popup .cookie_accept_buttons button{
    display: block;
    font-size: 20px;
    min-width: 150px;
    padding: 10px 15px;
    color: #621f2d;
    margin: 15px auto 0 auto;
    border: 0;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.28);
}

#cookie_accept_popup .cookie_accept_buttons button:hover{
    opacity: 0.9;
}

#cookie_accept_popup{
    position: fixed;
    bottom: 12px;
    right: 90px;
    z-index: 10000;
    color: #fff;
    padding: 32px;
    isolation: isolate;
    width: 379px;
    background: #3f53fe;
    border-radius: 12px;
}

#cookie_accept_popup p,
#cookie_accept_popup a{
    color: #fff;
    font: normal 14px/140% Arial, sans-serif;
}

#cookie_accept_popup a{
    text-decoration: underline;
}

#cookie_accept_popup_button{
    position: absolute;
    right: 7px;
    top: 10px;
    font-size: 25px;
    border: none;
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    #cookie_accept_popup{
        position: fixed;
        bottom: 86px;
        right: 0;
        z-index: 10000;
        color: #fff;
        padding: 32px;
        isolation: isolate;
        width: 100%;
        background: #3f53fe;
        border-radius: 12px;
    }
}