/* base.css */

/* Ustawienie domyślnej czcionki */
html, body {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #2a4e7c;
    background-color: #edf5ff;
    padding-bottom: 200px;
}

article {
    font-family: "Poppins", serif;
    color: #1e1e1e;
    padding-right: 10px !important;
    padding-left: 10px !important;
    margin: 0 0 10px;
    line-height: 160%;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
}

article b, article strong {
  font-weight: 600 !important;
}

article h2 {
    font-family: "Poppins", serif !important;
    color: #30a3e9 !important;
    font-weight: 600;
    letter-spacing: -.3px;
    font-size: 19px;
    margin: 20px 0 14px;
}
article h3 {
    font-family: "Poppins", serif !important;
    color: #30a3e9 !important;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 15px;
    margin-top: 26px;
    font-size: 16px;
}
article p {
    font-family: "Poppins", serif !important;
    margin: 0 0 10px;
    line-height: 160%;
    color: #353535;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
}

article .cities {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #F2F9FD;
    border-radius: 8px;
    margin: 25px 0;
    display: table;
    width: 100%;
}

article .cities .title {
    color: #023F8F;
    text-align: center;
    margin: 0 auto 10px 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -1px;
}

article .cities .desc {
    text-align: left;
    color: #023F8F;
}

article .cities ul {
    color: #2293d8;
    width: 100%;
    margin: 15px 0 0;
    padding-left: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style-type: none;
}

article .cities li {
    width: calc(25% - 10px);
    box-sizing: border-box;
}

article .note {
  margin: 23px 0;
  padding: 28px 28px 28px 82px;
  background-color: #f4f4f5;
  background-position-x: 0;
  background-position-y: 0;
  border-radius: .57143rem;
  color: #383838;
  border: 0;
  background-image: url(/static/img/info-icon.png);
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 45px 45px;
  text-align: left;
}

article a {
   color: #30a3e9 !important;
}


article .cities li a {
   color: #30a3e9;
}

/* Styl dla przydymienia */
textarea.loading-overlay {
    position: relative;
    background-color: rgba(0, 0, 0, 0.1); /* Przydymienie */
    color: #c9def2; /* Kolor tekstu podczas ładowania */
    pointer-events: none; /* Uniemożliwia interakcję z textarea */
}

/* Styl dla spinnera */
.spinner {
    display: inline-block;
    width: 15px; /* Szerokość spinnera */
    height: 15px; /* Wysokość spinnera */
    border: 2px solid #2a4e7c;; /* Kolor obramowania spinnera */
    border-radius: 50%;
    border-top-color: transparent; /* Przezroczysta góra dla efektu obrotu */
    animation: spin 0.6s linear infinite; /* Obracanie spinnera */
    margin-left: 5px; /* Odstęp między tekstem a spinnerem */
}

/* Animacja spinnera */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container-fluid {
     background-color: inherit;
}

.bg-light {
    background-color: white !important;
}

.shadow-sm {
  box-shadow: 0 .125rem 1.25rem #e3effe !important;
}

.loading-overlay {
    position: relative;
    opacity: 0.5; /* Efekt wyszarzenia */
    pointer-events: none; /* Wyłącz interakcje */
}


/* Animacja obrotu */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.form-control {
    font-size: 14px !important;
    color: #202121 !important;
    background-color: #f5f9fe !important;
    border-color: #c9def2 !important;
}

.form-control.small {
    font-size: 12px !important;
}


/* Nagłówki */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

/* Linki */
a {
    color: #30a3e9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Przyciski */
.btn {
    font-family: inherit;
    font-weight: 500;
}

/* Formularze */
input, textarea, select, button {
    font-family: inherit;
}