/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2026 | 03:18:14 */
.cookie-popup {
    position: fixed;
    left: 46px;
    bottom: 40px;
    z-index: 999999;
    display: none;
    width: 440px;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    padding: 22px 28px 20px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    color: #333333;
    font-family: inherit;
}

.cookie-popup h3 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #2b2b2b;
}

.cookie-popup p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
}

.cookie-popup a {
    color: #5a9f00;
    text-decoration: none;
}

.cookie-popup a:hover {
    text-decoration: underline;
}

.cookie-popup button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 2px;
    background: #2563db;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-popup button:hover {
    background: #1d4ed8;
}

@media (max-width: 520px) {
    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 20px;
    }
}