.cookie-popup {
    bottom: -100%;
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    left: 0;
    width: 100%;
    transition: all .7s;
    z-index: 9;
}
.cookie-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cookie-text {
    font: 16px/24px "light", Arial, sans-serif;
}
.cookie-button {
    padding: 0 10px;
}
.cookie-popup.active {
    bottom: 0;
    transition: all .7s;
}
.cookie-text a {
    font: 16px/24px "light", Arial, sans-serif;
    text-decoration: underline;
    color: #d71921;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}
.cookie-button .js-close-cookie {
    cursor: pointer;
    pointer-events: auto;
    background: #d71921;
    color: #fff;
    display: block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    font: 20px "light", Arial, sans-serif;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    border: 1px solid #d71921;
    width: 165px;
    height: 45px;
    font-size: 16px;
    padding-top: 13px;
}
@media screen and (max-width: 768px) {
    .cookie-wrapper {
        display: block;
    }
    .cookie-text {
        font: 14px/21px "light", Arial, sans-serif;
        margin-bottom: 10px;
        text-align: center;
    }

    .cookie-text a {
        font: 14px/21px "light", Arial, sans-serif;
    }

    .cookie-button .js-close-cookie {
        margin: 0 auto;
        width: 146px;
        height: 38px;
        font-size: 14px;
        padding-top: 9px;
    }
}