.cookies-alert {
    background-color: #fff;
    height: 70px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 40px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform .2s ease;
}
.cookies-alert.is-show {
    transform: translateY(0);
    transition: transform .2s ease;
}

.cookies-alert__content {
    width: 1280px;
    margin: 0 auto;
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookies-alert__content button {
    background-color: #1785e5;
    width: 80px;
    height: 40px;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.cookies-alert__content-info p {
    margin-bottom: 4px;
    margin-left: 0px;
    color: black;
}
.cookies-alert__content-info a {
    text-decoration: none;
    color: #3c9df2;
    font-family: Montserrat;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .cookies-alert__content {
        width: 100%;
        gap: 30px;
    }
}
@media (max-width: 1100px) {
    .cookies-alert {
        height: 80px;
    }
}
@media (max-width: 768px) {
    .cookies-alert {
        height: 80px;
    }
    .cookies-alert__content-info p, .cookies-alert__content-info a {
        font-size: 12px;
    }
    .cookies-alert__content {
        width: 100%;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .cookies-alert__content-info p, .cookies-alert__content-info a {
        font-size: 10px;
    }
}