.popup_cookies_tracking {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999999;
}
.popup_cookies_tracking_content {
    width: 600px;
    max-width: 90%;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    background: #f5efe8;
}
.tracking_refused {
    border: 1px solid #000;
    width: 120px;
    text-align: center;
    padding: 10px 10px 7px 10px;
    margin: 0px auto;
    cursor: pointer;
    text-transform: uppercase;
}
.tracking_refused:hover {
    background: #000;
    color: #fff;
}
.tracking_ok {
    border: 1px solid #000;
    background: #000;
    color: #fff;
    width: 120px;
    text-align: center;
    padding: 10px 10px 7px 10px;
    margin: 0px auto;
    cursor: pointer;
    text-transform: uppercase;
}
.tracking_ok:hover {
    background: #f5efe8;
    color: #000;
}
.popup_cookies_tracking_content_text {
    margin-bottom: 20px;
}
.popup_cookies_tracking_content_w {
    width: 800px;
    margin: auto;
    max-width: 100%;
}
@media screen and (max-width: 900px) {
    .popup_cookies_tracking_content {
        width: 600px;
        max-width: 90%;
        margin: auto;
        padding: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        bottom: auto;
        background: #fff;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}