/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 23 2026 | 18:43:59 */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 999999;

    display: none;

    padding: 20px;

    background: #ffffff;

    border-top: 1px solid #e5e5e5;

    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.08);
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cookie-consent__content {
    flex: 1;
}

.cookie-consent__title {
    margin-bottom: 6px;

    color: #222;

    font-size: 17px;
    font-weight: 600;
}

.cookie-consent__text {
    color: #666;

    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent__text a {
    color: #222;

    font-weight: 500;

    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.cookie-consent__button {
    min-width: 110px;

    padding: 11px 20px;

    border: 0;
    border-radius: 5px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.cookie-consent__button--accept {
    color: #ffffff;
    background: #222222;
}

.cookie-consent__button--accept:hover {
    opacity: 0.85;
}

.cookie-consent__button--reject {
    color: #333333;
    background: #eeeeee;
}

.cookie-consent__button--reject:hover {
    background: #e2e2e2;
}


/* --------------------------------
   Mobile
-------------------------------- */

@media (max-width: 767px) {

    .cookie-consent {
        padding: 16px;
    }

    .cookie-consent__inner {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }

    .cookie-consent__title {
        font-size: 16px;
    }

    .cookie-consent__text {
        font-size: 13px;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__button {
        flex: 1;

        min-width: 0;
    }
}