/* Ogolne */

body {
  max-width: 100vw;
  overflow-x: hidden;
}
p{ line-height:1.6; }

a{color:#192138;text-decoration:none;}
a:hover{color:#E94F35;}

.basic-header {
    position: fixed !important;
	z-index:998 !important;
    top: 0;
    left: 0;
    right: 0;
}
.border-radius img { border-radius:20px !important; }
.no-margin { margin:0 !important; }
.grecaptcha-badge { visibility: hidden !important; }
@media (max-width: 767px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }
}



/* Dodatkowe klasy CSS */


.wp-block-navigation .wp-block-navigation-item__content {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}
.wp-block-navigation .wp-block-navigation-item__content::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Odległość linii od tekstu - dostosuj w razie potrzeby */
    left: 0;
    width: 100%;
    height: 3px; /* Grubość linii */
    background-color: #e94f35;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: bottom left;
}
.wp-block-navigation .wp-block-navigation-item__content:hover::after {
    transform: scaleX(1);
}





/* 1. TŁO I RAMKA BANERU */
.cky-consent-container .cky-consent-bar[data-cky-tag="notice"] {
    background-color: #FFFFFF !important; /* Tło baneru */
    border-color: #E5E5E5 !important;     /* Kolor ramki */
}

/* 2. TEKST NAGŁÓWKA I OPISU */
.cky-consent-container [data-cky-tag="title"] {
    color: #1A1A1A !important;            /* Kolor nagłówka */
}
.cky-consent-container [data-cky-tag="description"],
.cky-consent-container [data-cky-tag="description"] p {
    color: #4A4A4A !important;            /* Kolor opisu */
}

/* 3. PRZYCISK: DOSTOSUJ */
.cky-consent-container [data-cky-tag="settings-button"] {
    color: #005550 !important;            /* Tekst */
    border-color: #005550 !important;     /* Obramowanie */
    background-color: transparent !important;
}

/* 4. PRZYCISK: ODRZUĆ WSZYSTKIE */
.cky-consent-container [data-cky-tag="reject-button"] {
    color: #005550 !important;            /* Tekst */
    border-color: #005550 !important;     /* Obramowanie */
    background-color: transparent !important;
}

/* 5. PRZYCISK: AKCEPTUJ WSZYSTKO */
.cky-consent-container [data-cky-tag="accept-button"] {
    background-color: #005550 !important; /* Tło przycisku */
    border-color: #005550 !important;     /* Obramowanie */
    color: #FFFFFF !important;            /* Tekst */
}

/* 6. EFEKT PO NAJECHANIU (HOVER) */
.cky-consent-container [data-cky-tag="accept-button"]:hover {
    background-color: #003B38 !important; /* Ciemniejszy odcień zieleni */
    border-color: #003B38 !important;
}
.cky-consent-container [data-cky-tag="settings-button"]:hover,
.cky-consent-container [data-cky-tag="reject-button"]:hover {
    background-color: rgba(0, 85, 80, 0.08) !important; /* Delikatne tło po najechaniu */
}