.js_accept_cookie {
    background: #f0f0f0;
    padding: 10px 10rem;
    display: none;
    flex-direction: row;
}

.js_accept_cookie .message {
    text-align: center;
    font-size: 12px;
	display: block
}

.js_accept_cookie .message a {
    color: #000000;
    text-decoration: underline;
}

.js_accept_cookie .actions {
    width: 575px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.js_accept_cookie .actions a {
    display: flex;
    width: 50%;
    margin: auto 5px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: .8;
    height: 32px;
    padding-top: 3px;
}

.js_accept_cookie .actions a:hover {
    text-decoration: none;
    opacity: 1;
}

.js_accept_cookie .actions a.accept {
    background: #000000;
}

.js_accept_cookie .actions a.refuse {
    background: #909090;
}

.div_aff_cookies {
    text-align : center;
}



@media only screen and (max-width: 1024px) {
    .js_accept_cookie {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .js_accept_cookie .actions {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 599px) {
    .js_accept_cookie .actions {
        flex-direction: column;
        align-items: center;
    }

    .js_accept_cookie .actions a {
        margin:  5px 0;
    }
}