section.cookie_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
}

section.cookie_banner .container{
    max-width: 980px;
    width: 76.5625%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 32px;
}

section.cookie_banner button.cookie_btn {
    padding: 10px;
    width: 130px;
    border-radius: 35px;
    transition: all 0.4s;
    border: 1px solid var(--blue);
}

section.cookie_banner button.cookie_btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue);
}

/* =========================================================================================== */
/* responsive */
/* =========================================================================================== */
@media screen and (max-width: 768px) {
    section.cookie_banner .container {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    section.cookie_banner .container {
        flex-direction: column;
        padding: 15px 0;
        width: 95%;
    }

    section.cookie_banner button.cookie_btn {
        margin-top: 15px;
        padding: 6px;
        width: 100px;
        margin-left: auto;
    }
}