.cookie_consent {
    position: fixed;
    padding: 50px;
    background-color: #544741;
    color: white;
    top: 50%;
    left: 50%;
    width: 50vw;
    z-index: 99999999;
    transition: ease all .3s;
    font-size: 14px;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.cc_message a {
    color: #35A684;
}

.cookie_consent:after {
    content: '';
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    right: -15px;
    bottom: -15px;
    opacity: .05;
    background-image: url('/media/assets/cookies.png');
    background-repeat: no-repeat;
    background-size: cover;
}

@media all and (max-width: 767px){
    .cookie_consent {
        width: 90vw;
        max-width: 90vw;
        padding: 25px;
    }
}

.cookie_consent .cc_body {
    padding-right: 0;
    padding-left: 0;
}

.cookie_consent .buttons {
    display: flex;
    align-items: center;
}

.cookie_consent .cc_href {
    color: white;
    text-decoration: underline;
}

.cookie_consent .cc_button {
    color: white;
    appearance: none;
    border: 1px solid #35A684;
    background-color: white;
    padding: 8px 13px;
    border-radius: 20px;
    display: block;
    width: auto;
    font-weight: 500;
}

.cookie_consent .cc_button.cc_button_refuse {
    border: 0;
    padding: 0;
    font-weight: 300;
    color: #999999 !important;
    background-color: white !important;
}

.cookie_consent .cc_button.cc_button_settings {
    border: 1px solid #999999;
    color: #999999 !important;
    background-color: white !important;
    margin-left: 5px;
}
