.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 32px 0;
    background: #fff;
    display: none;
}

.cookie.show {
    display: block;
}

.cookie.cookie-fadeOut {
    animation: cookie-fadeOut .5s forwards
}

.cookie__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cookie__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.45;
    color: #111;
    max-width: 1060px;
}

.cookie__text a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.cookie__btn {
    margin-left: 80px;
    border-radius: 5px;
    padding: 0 15px;
    min-height: 40px;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 768px) {
    .cookie {
        padding: 20px 0;
    }

    .cookie__row {
        display: block;
    }

    .cookie__text {
        font-size: 14px;
    }

    .cookie__btn {
        margin: 16px 0 0;
    }
}

@keyframes cookie-fadeOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}