/* Cookie consent bar — shared by landingpage / ContentBox (no Vite required) */

.popup_cookies_message {
    width: calc(100% - 160px);
    display: inline-block;
    text-align: left;
    float: left;
    font-size: 14px;
    line-height: 18px;
    font-family: "Work Sans", "Encode Sans Condensed", Arial, sans-serif;
}

.popup_cookies_btn {
    width: 160px;
    display: inline-block;
    text-align: right;
    float: right;
}

#popup_cookies {
    position: fixed;
    width: 100%;
    height: auto;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 15px;
    color: #000000;
    background-color: #edeff5;
    box-sizing: border-box;
    overflow: hidden;
}

#popup_cookies a {
    color: #37246b;
    text-decoration: underline;
}

.btn_accept_all_cookies {
    display: inline-block;
    float: right;
    margin-top: 10px;
    padding: 10px 16px;
    background-color: #37246b;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    font-family: "Work Sans", "Encode Sans Condensed", Arial, sans-serif;
}

.btn_accept_all_cookies:hover {
    color: #fff !important;
    background-color: #00b2e3;
}

@media (max-width: 767px) {
    .popup_cookies_message {
        width: 100%;
        float: none;
        text-align: justify;
    }

    .popup_cookies_btn {
        width: 100%;
        float: none;
        text-align: center;
    }

    .btn_accept_all_cookies {
        float: none;
        margin-top: 12px;
    }
}
