/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 10 2026 | 12:28:34 */
/* =========================================================
   NOTE.radio V2 — STICKY SECTION
   Uniwersalna karta / sekcja przyklejana podczas scrollowania
   ========================================================= */

.ntr-v2-section-sticky {
    position: -webkit-sticky;
    position: sticky;

    /* poniżej głównego menu NOTE.radio */
    top: 88px;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    height: fit-content;

    box-sizing: border-box;

    padding: 18px;

    background: var(--ntr-surface);
    color: var(--ntr-text-primary);

    border: 1px solid var(--ntr-border);
    border-radius: 16px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.03);

    /*
     * WAŻNE:
     * sticky nie może mieć overflow:hidden
     */
    overflow: visible;

    align-self: flex-start;

    z-index: 20;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   WORDPRESS ADMIN BAR
   Gdy jesteś zalogowany, menu zaczyna się 32px niżej
   ========================================================= */

body.admin-bar .ntr-v2-section-sticky {
    top: 120px;
}


/* =========================================================
   ELEMENTOR — zabezpieczenie szerokości
   ========================================================= */

.ntr-v2-section-sticky.e-con {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex-shrink: 1;
    box-sizing: border-box;
}

.ntr-v2-section-sticky > .e-con-inner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}


/* =========================================================
   TYPOGRAFIA
   ========================================================= */

.ntr-v2-section-sticky h1,
.ntr-v2-section-sticky h2,
.ntr-v2-section-sticky h3,
.ntr-v2-section-sticky h4,
.ntr-v2-section-sticky h5,
.ntr-v2-section-sticky h6 {
    color: var(--ntr-text-primary);
}

.ntr-v2-section-sticky p {
    color: var(--ntr-text-secondary);
}


/* =========================================================
   LINKI
   ========================================================= */

.ntr-v2-section-sticky a {
    color: inherit;
}

.ntr-v2-section-sticky a:hover {
    color: var(--ntr-accent);
}


/* =========================================================
   MEDIA
   ========================================================= */

.ntr-v2-section-sticky img,
.ntr-v2-section-sticky video {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TABLET — wyłączamy sticky
   ========================================================= */

@media (max-width: 1024px) {

    .ntr-v2-section-sticky {
        position: relative;
        top: auto;

        padding: 16px;
        border-radius: 14px;
    }

    body.admin-bar .ntr-v2-section-sticky {
        top: auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ntr-v2-section-sticky {
        padding: 14px;
        border-radius: 12px;
    }
}