@keyframes slide-up {
    from {
        bottom: -100px;
    }

    to {
        bottom: 0px;
    }
}

.js-cookie-consent.cookie-consent {
    align-items: center;
    animation-duration: 1s;
    animation-name: slide-up;
    background-color: #fff;
    border-top: 1px solid #ddd;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 9px;
    position: fixed;
    width: 100%;
    z-index: 2000;
}

.cookie-consent__message {
    color: rgb(12, 24, 44);
    display: inline-block;
    font: normal normal normal 16px/26px Helvetica Neue;
    letter-spacing: 0px;
    color: #292929;
    text-align: center;
    width: 40%;
}

button.js-cookie-consent-agree.cookie-consent__agree {
    align-items: center;
    color: #fff;
    background: #292929 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    /* padding: 1.5rem 2rem; */
    width: 166px;
    height: 46px;
    white-space: nowrap;
}

@media (max-width: 625px) {
    button.js-cookie-consent-agree.cookie-consent__agree {
        font-size: 16px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 1200px) {
    .cookie-consent__message {
        font-size: 12px;
    }
}


@media (max-width: 1401px) {
    .cookie-consent__message {
        width: 50%;
    }
}

@media (max-width: 625px) {
    .js-cookie-consent.cookie-consent {
        flex-direction: column;
    }

    .cookie-consent__message {
        margin: 0px 0px 5px 0px;
        text-align: center;
        width: 100%;
    }
}