.cookie-consent {
    background-color: #000 !important;
    padding: 10px 40px !important;
    color: #fff !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999
}

.cookie-consent .cookie-consent-body {
    max-width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
}
.cookie-consent .cookie-consent__title{
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.cookie-consent .cookie-consent__message {
    height: auto;
    line-height: 23px;
    max-width: 980px;
    text-align: center;
    margin-bottom: 15px;
    font-family: "Helveticaneue", sans-serif;
    font-weight: normal;
}
.cookie-consent .cookie-consent__message a{
    color: red;
}

.cookie-consent .cookie-consent__agree {
    padding: 7px 25px !important;
    border-radius: 0 !important;
    outline: none !important;
    background: red !important;
    color: #fff !important;
    border: 1px solid red !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.cookie-consent .cookie-consent__agree:hover {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid white !important;
}

@media screen and (max-width:767px) {
    .cookie-consent .cookie-consent-body {
        text-align: center
    }

    .cookie-consent .cookie-consent-body .cookie-consent__message {
        line-height: 25px !important
    }

    .cookie-consent .cookie-consent-body .cookie-consent__agree {
        float: none;
        margin-top: 5px
    }
}