.agree-cookies {
    position: fixed;
    display: flex;
    bottom: 100px;
    right: 12px;
    width: 292px;
    padding: 8px;
    z-index: 10000;
    box-shadow: 0 11px 13px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #DFDFDF;
    gap: 10px;
}

.agree-cookies__wrap {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    color: #000000;
}

.agree-cookies_close {
    align-items: start;
}

.agree-cookies_close img:hover {
    cursor: pointer;
}

.agree-cookies_info p {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
}

.agree-cookies_info a {
    text-decoration: underline;
}

.agree-cookies_info a:hover {
    text-decoration: none;
}

.agree-cookies__btn {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 0 60px;
    position: relative;
    height: 44px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    box-sizing: border-box;
    white-space: normal;
}

@media (max-width: 520px) {
    .agree-cookies {
        left: 10px;
        width: auto;
        right: 6px;
    }
}