.cookies-alert {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 40px;
    right: 40px;
    max-width: none;
    margin: 0 auto;
    z-index: 1000;

    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    padding: 16px 20px;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.cookies-alert.is-show {
    display: block;
}

.cookies-alert__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cookies-alert__content-info {
    flex: 1;
    color: #333;
}

.cookies-alert__content-info p {
    margin: 0;
}

.cookies-alert button {
    white-space: nowrap;
    background-color: #565CEF;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: bold;
}

.cookies-alert button:hover {
    background-color: #45a049;
}

@media (max-width: 480px) {
    .cookies-alert {
        left: 5px;
        right: 5px;
    }

    .cookies-alert p {
        font-size: 10px;
    }
}