@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,900|Roboto:300,400&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,600&subset=latin-ext");
body, html {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

h1 {
  font-size: 2em;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.714em;
  }
}
@media screen and (min-width: 768px) {
  h1 span {
    display: block;
  }
}

h2 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 1.71em;
}
@media screen and (min-width: 480px) {
  h2 {
    font-size: 30px;
  }
}

p {
  font-weight: 400;
  font-size: 1em;
  color: #585858;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.28em;
    line-height: 2.57em;
  }
}
p.lead {
  font-size: 1.14em;
}
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  word-break: break-word;
}
a:active, a:hover, a:focus {
  text-decoration: none;
}

.navbar {
  width: 100%;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 999;
  top: -1px;
  -webkit-box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.navbar > .wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 90px;
}
@media only screen and (min-width: 992px) {
  .navbar > .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.flex-nav {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1200px) {
  .flex-nav {
    width: 1200px;
    margin: 0 auto;
  }
}
.flex-nav a:hover {
  text-decoration: none;
}
.flex-nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 992px) {
  .flex-nav .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1;
            flex: 0 1;
  }
}
.flex-nav .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-nav .logo a img {
  max-height: 70px;
  max-width: 220px;
  width: auto;
  margin: 10px;
}
@media only screen and (min-width: 992px) {
  .flex-nav .logo a img {
    max-width: 250px;
  }
}
.flex-nav .logo a span {
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  display: none;
  word-break: initial;
}
@media screen and (min-width: 480px) {
  .flex-nav .logo a span {
    display: inline-block;
    font-size: 1.14em;
    line-height: 1.28em;
  }
}
.flex-nav .menu-trigger {
  margin-right: 10px;
}
@media screen and (min-width: 992px) {
  .flex-nav .menu-trigger {
    display: none;
  }
}
.flex-nav .menu-trigger button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  position: relative;
}
.flex-nav .menu-trigger button:hover, .flex-nav .menu-trigger button:focus {
  border: none;
}
.flex-nav .menu-trigger button .icon-bar {
  width: 30px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-nav .menu-trigger button .icon-bar:nth-child(1) {
  top: 6px;
}
.flex-nav .menu-trigger button .icon-bar:nth-child(2) {
  top: 14px;
}
.flex-nav .menu-trigger button .icon-bar:nth-child(3) {
  top: 22px;
}
.flex-nav .menu-trigger button.opened .icon-bar {
  width: 30px;
  height: 2px;
  background-color: #ccc;
  position: absolute;
  left: 0;
}
.flex-nav .menu-trigger button.opened .icon-bar:nth-child(1) {
  top: 6px;
}
.flex-nav .menu-trigger button.opened .icon-bar:nth-child(2) {
  top: 14px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.flex-nav .menu-trigger button.opened .icon-bar:nth-child(3) {
  top: 22px;
}
.flex-nav .menu {
  -webkit-transition: max-height 0.7s cubic-bezier(0.35, 0, 0.27, 1);
  transition: max-height 0.7s cubic-bezier(0.35, 0, 0.27, 1);
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-nav .menu.opened {
  visibility: visible;
  height: auto;
  max-height: 500px;
}
@media screen and (min-width: 992px) {
  .flex-nav .menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    visibility: visible;
    overflow: visible;
    max-height: inherit;
  }
}
.flex-nav .menu .dropdown-menu {
  display: none;
}
.flex-nav .menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
.flex-nav .menu ul.nav-list {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .flex-nav .menu ul.nav-list {
    text-align: right;
  }
}
.flex-nav .menu ul.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex-nav .menu ul.flex li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 100%;
  margin: 5px 0;
}
.flex-nav .menu ul.flex li a {
  text-align: center;
  padding: 5px;
}
.flex-nav .menu ul li {
  position: relative;
  display: block;
}
@media screen and (min-width: 992px) {
  .flex-nav .menu ul li {
    display: inline-block;
  }
}
.flex-nav .menu ul li a {
  display: block;
  color: #666;
  height: auto;
  text-transform: uppercase;
  position: relative;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 2px 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 1200px) {
  .flex-nav .menu ul li a {
    padding: 7px 15px;
  }
}
.flex-nav .menu ul li a:hover, .flex-nav .menu ul li a:focus {
  background: transparent;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  color: #c22a13;
}
.flex-nav .menu ul li.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
}
.flex-nav .menu ul li.open > .dropdown-menu {
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .flex-nav .menu ul li.open > .dropdown-menu {
    position: absolute;
    margin-bottom: 0;
    max-width: 100%;
  }
  .flex-nav .menu ul li.open > .dropdown-menu li {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .flex-nav .menu ul li.open > .dropdown-menu a {
    font-weight: 700;
  }
}
@media screen and (max-width: 991px) {
  .flex-nav .menu ul li.open > .dropdown-menu li {
    text-align: center;
  }
}
.flex-nav .menu ul li.open > a {
  position: relative;
  border: none;
  background: transparent;
  font-weight: 700;
}
.flex-nav .menu ul li.dropdown > a {
  position: relative;
}
.flex-nav .menu ul li.dropdown > a:before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.flex-nav .menu ul li.dropdown > a.open:before {
  content: "\f0d8";
}
.flex-nav .extra-link {
  display: none;
}
@media screen and (min-width: 992px) {
  .flex-nav .extra-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 190px;
            flex: 0 190px;
  }
}
.flex-nav .extra-link a {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 400;
  color: #666;
  margin-top: 5px;
  text-align: center;
}
.flex-nav .extra-link a:hover {
  color: #c22a13;
}
.flex-nav .extra-link a.btn-page {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  border: 1px #c22a13 solid;
  color: #c22a13;
  margin: 5px 10px 0 10px;
  font-size: 1em;
  line-height: 1.14em;
  border-radius: 3px;
  word-break: initial;
}
.flex-nav .extra-link a.btn-page i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.flex-nav .extra-link a.btn-page span {
  display: block;
}
.flex-nav .extra-link.bo, .flex-nav .extra-link.ks {
  text-align: center;
  margin: 0 auto 10px;
}
.flex-nav .extra-link.bo a, .flex-nav .extra-link.ks a {
  text-align: left !important;
}
.flex-nav .extra-link.bo a:hover {
  background-color: #c22a13;
  color: #fff;
}
.flex-nav .extra-link.ks a {
  padding: 10px 40px 10px 15px;
}
.flex-nav .extra-link.ks a:hover {
  background-color: #c22a13;
  color: #fff;
}
.flex-nav .extra-link.ks a i {
  right: 10px;
}
.flex-nav .extra-link.bo a {
  padding: 10px 12px 10px 40px;
}
.flex-nav .extra-link.bo a i {
  left: 10px;
}

.box {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 20px;
  margin: 0 15px 30px;
}
.box h3 {
  margin-top: 10px;
  margin-bottom: 15px;
}
.box h3 a {
  font-family: "Montserrat", sans-serif;
  color: #2C2D33;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .box h3 a {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.box h3 a:hover {
  color: #c22a13;
}
.box h4 {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.box p {
  font-family: "Roboto", sans-serif;
  color: #707070;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 5px;
}
.box ul, .box ol {
  padding-left: 15px;
  margin-bottom: 20px;
}
.box ul.fa-ul, .box ol.fa-ul {
  margin-bottom: 5px;
}
.box ul.fa-ul li, .box ol.fa-ul li {
  padding: 15px 0;
}
.box ul.fa-ul li a, .box ol.fa-ul li a {
  text-decoration: none;
  color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.box ul.fa-ul li a:hover, .box ol.fa-ul li a:hover {
  color: #c22a13;
}
.box ul.fa-ul li a:hover span, .box ol.fa-ul li a:hover span {
  background-color: #c22a13;
  border-color: #c22a13;
}
.box ul.fa-ul li a:hover span i, .box ol.fa-ul li a:hover span i {
  color: #fff;
}
.box ul.fa-ul li span, .box ol.fa-ul li span {
  width: 30px;
  height: 30px;
  margin: 7px 0 7px -15px;
  background-color: #fff;
  border: 1px #BDBDBD solid;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.box ul.fa-ul li span i, .box ol.fa-ul li span i {
  margin-top: 7px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.box .img-responsive {
  width: 100%;
  height: auto;
}
.box .map {
  margin-top: 20px;
  margin-bottom: 10px;
}
.box .date {
  margin: 0;
  padding: 0 0 5px;
  list-style-type: none;
  border-bottom: 1px #E4E7E8 solid;
}
.box .date li {
  display: inline-block;
  color: #c22a13;
  font-size: 15px;
  padding: 2px 0;
}
.box .date li span {
  display: none;
}
@media screen and (min-width: 768px) {
  .box .date li span {
    display: inline-block;
  }
}
.box .date li i {
  color: #BDBDBD;
}
@media screen and (min-width: 480px) {
  .box .date li.date_to {
    margin-left: 15px;
  }
}
.box .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px 5px;
  margin: 5px 0;
  border-radius: 5px;
  background-color: #f1f1f1;
}
.box .categories > i {
  margin: 5px 10px 0 0;
  color: #BDBDBD;
}
.box .categories ul {
  list-style-type: none;
  margin: 3px 0 0;
  padding: 0;
}
.box .categories ul li {
  display: inline-block;
}
.box .categories ul li.parentCategory {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.box .categories ul li.subCategory {
  font-size: 12px;
  display: block;
}
.box .btns {
  padding-top: 15px;
}

.box-border {
  position: relative;
  padding: 10px 10px 0;
  margin: 0 0 60px;
  border-radius: 5px;
  border: 1px #ccc solid;
}
.box-border .categories {
  margin: 10px 0;
  padding: 5px 0 10px;
}
.box-border .categories ul {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.box-border .categories ul li {
  display: inline-block;
  padding: 4px 8px;
  margin: 0 3px 0 0;
  border: 1px #ccc solid;
  border-radius: 3px;
  background-color: #f1f1f1;
}
.box-border .categories ul li.selected {
  background-color: #357bf0;
  border-color: #357bf0;
  color: #fff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
}

@-webkit-keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  90% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  90% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes harmonogram {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes harmonogram {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes harmonogram-move {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes harmonogram-move {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInFast {
  to {
    opacity: 1;
  }
}
@keyframes fadeInFast {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes bottom-line {
  0% {
    top: 22px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
@keyframes bottom-line {
  0% {
    top: 22px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.btn {
  padding: 7px 20px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover, .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn.btn-white {
  background-color: #fff;
  border-color: #c22a13;
  color: #c22a13;
}
.btn.btn-color {
  background-color: #c22a13;
  border-color: #c22a13;
  color: #fff;
}
.btn.btn-transparent-white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn.btn-transparent-white:hover, .btn.btn-transparent-white:focus, .btn.btn-transparent-white:active {
  background-color: #fff;
  color: #c22a13;
}
.btn i {
  margin: 0 5px;
  font-size: 20px;
}
.btn.faux-btn {
  cursor: default;
}
.btn.faux-btn:hover, .btn.faux-btn:focus, .btn.faux-btn:active {
  border-color: #fff;
  background-color: inherit;
}

@media screen and (max-width: 767px) {
  .tooltip {
    display: none !important;
  }
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #fff;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #fff;
}

.tooltip-inner {
  color: #c22a13;
  background-color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
}
.tooltip-inner em {
  display: block;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 3px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

dialog {
  border: none;
  background: transparent;
  padding: 0;
}
dialog::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  padding: 0 30px;
  border-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal-content .modal-header {
  border-bottom: none;
  padding: 10px 0 0;
}
.modal-content .modal-header .close {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 50px;
}
.modal-content .modal-header .close:hover {
  -webkit-transform: scale(1.3) rotate(180deg);
          transform: scale(1.3) rotate(180deg);
}

.modal-body {
  padding: 0 15px 15px;
}
.modal-body .project-attrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .modal-body .project-attrs {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.modal-body .project-attrs span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 5px;
  margin: 5px;
  color: #4c4c4c;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  max-width: 220px;
}
@media screen and (min-width: 560px) {
  .modal-body .project-attrs span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.modal-body .project-attrs span.numer-projektu i, .modal-body .project-attrs span.obszar-dzialania i {
  margin: 0 5px 0 0;
}
.modal-body .project-attrs span.weryfikacja-projektu {
  background-color: #dd2c00;
  color: #fff;
}
.modal-body .project-attrs span.weryfikacja-projektu i {
  margin: 0 0 0 5px;
}
.modal-body .project-attrs span i {
  display: none;
}
@media screen and (min-width: 992px) {
  .modal-body .project-attrs span i {
    display: inline-block;
  }
}
.modal-body .project-attrs span em {
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .modal-body .project-attrs span {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100px;
            flex: 1 0 100px;
  }
  .modal-body .project-attrs span.numer-projektu {
    text-align: left;
  }
  .modal-body .project-attrs span.obszar-dzialania {
    text-align: right;
  }
}
.modal-body .project-title {
  font-size: 24px;
  line-height: 30px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 15px;
}
.modal-body .date {
  margin: 0 0 15px;
  padding: 15px 0;
  list-style-type: none;
  border-bottom: 1px #e4e7e8 solid;
}
.modal-body .date li {
  display: inline-block;
  color: #c22a13;
  font-size: 15px;
  padding: 2px 0;
}
.modal-body .date li span {
  display: none;
}
@media screen and (min-width: 768px) {
  .modal-body .date li span {
    display: inline-block;
  }
}
.modal-body .date li i {
  color: #BDBDBD;
}
@media screen and (min-width: 480px) {
  .modal-body .date li.date_to {
    margin-left: 15px;
  }
}
.modal-body .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px 5px;
  margin: 5px 0 15px;
  border-radius: 5px;
  background-color: #f1f1f1;
}
.modal-body .categories > i {
  margin: 5px 10px 0 0;
  color: #BDBDBD;
}
.modal-body .categories ul {
  list-style-type: none;
  margin: 5px 0 0;
  padding: 0;
}
.modal-body .categories ul li {
  display: inline-block;
}
.modal-body .categories ul li.parentCategory {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.modal-body .categories ul li.subCategory {
  font-size: 12px;
  display: block;
}
.modal-body .project-content h3 {
  font-family: "Roboto", sans-serif;
  color: #000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.modal-body .project-content p {
  font-family: "Roboto", sans-serif;
  color: #707070;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 5px;
}
.modal-body .project-content dl dt,
.modal-body .project-content dl dd {
  font-family: "Roboto", sans-serif;
  color: #707070;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 5px;
}
.modal-body .project-content dl dt {
  font-weight: bold;
}
.modal-body .project-content dl dd {
  font-weight: normal;
  margin-bottom: 5px;
}
.modal-body .project-content .inner-content {
  border-top: 1px #E4E7E8 solid;
}
.modal-body .project-content .inner-content.mapa {
  padding-bottom: 20px;
}
.modal-body .project-content .inner-content.map .infoWindowContent {
  max-width: 300px;
  padding: 10px 10px 0;
  text-align: center;
}
.modal-body .project-content .inner-content h3 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
}
.modal-body .zalaczniki ul {
  margin-left: 1.5em;
}
.modal-body .zalaczniki ul li {
  padding: 5px 0;
}
.modal-body .zalaczniki ul li a {
  color: #000;
  text-decoration: none;
}
.modal-body .projectsAttachmentsGallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal-body .projectsAttachmentsGallery ul li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 10px;
  padding: 0;
}
.modal-body .projectsAttachmentsGallery ul li a {
  display: inline-block;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.modal-body .projectsAttachmentsGallery ul li a::before {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 45px;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -35%);
          transform: translate(-50%, -35%);
  z-index: 5;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal-body .projectsAttachmentsGallery ul li a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal-body .projectsAttachmentsGallery ul li a img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  max-width: 220px;
  max-height: 125px;
}
.modal-body .projectsAttachmentsGallery ul li a:hover, .modal-body .projectsAttachmentsGallery ul li a:focus {
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateY(-3px) scale(1.05);
          transform: translateY(-3px) scale(1.05);
}
.modal-body .projectsAttachmentsGallery ul li a:hover::before, .modal-body .projectsAttachmentsGallery ul li a:focus::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal-body .projectsAttachmentsGallery ul li a:hover::after, .modal-body .projectsAttachmentsGallery ul li a:focus::after {
  opacity: 0.3;
}
.modal-body .projectsAttachmentsGallery ul li:last-child {
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

.modal-footer .btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal-content .leaflet-container a.leaflet-popup-close-button {
  top: 5px;
  right: 5px;
}
.modal-content .leaflet-popup-content {
  padding: 10px 0;
}
.modal-content .leaflet-popup-content span.location-description {
  display: block;
}
.modal-content .leaflet-popup-content span.location-address {
  display: block;
  color: #757575;
  font-size: 13px;
  padding: 5px 10px 5px;
  margin: 10px 0 0;
  border-radius: 5px;
  background-color: #f1f1f1;
}
.modal-content .leaflet-popup-content span.location-address i {
  margin-right: 5px;
}
.modal-content .leaflet-popup-content .location-description {
  font-family: "Montserrat", sans-serif;
  color: #2c2d33;
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.2em;
  margin-bottom: 5px;
}
.modal-content .leaflet-popup-content .location-address {
  font-family: "Roboto", sans-serif;
  color: #707070;
  font-size: 14px;
  line-height: 1.2em;
  padding-bottom: 5px;
}

.marker-pin {
  position: relative;
}
.marker-pin span.edition {
  position: absolute;
  top: 6px;
  z-index: 210;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  width: 100%;
}
.marker-pin::before {
  content: "";
  width: 43px;
  height: 38px;
  background: url("../images/ico-shadow.png");
  position: absolute;
  left: 7px;
  bottom: 0;
  z-index: 0;
  opacity: 0.45;
}
.marker-pin svg {
  position: relative;
}
.marker-pin.selected svg path {
  fill: green;
}

.fbBox {
  z-index: 9999;
  position: fixed;
  right: -250px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 250px;
  height: 300px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0.65, 0.37, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0, 0.65, 0.37, 1);
  transition: transform 0.3s cubic-bezier(0, 0.65, 0.37, 1);
  transition: transform 0.3s cubic-bezier(0, 0.65, 0.37, 1), -webkit-transform 0.3s cubic-bezier(0, 0.65, 0.37, 1);
}
.fbBox.active {
  -webkit-transform: translate(-250px, -50%);
          transform: translate(-250px, -50%);
}
.fbBox .fbTrigger {
  border: none;
  background-color: transparent;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -60px;
  background-color: transparent;
}
.fbBox .fbTrigger img {
  display: block;
  width: 100%;
  height: 100%;
}

.mapaprojektow .mapaprojektow-container {
  min-height: calc(100vh - 350px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mapaprojektow .mapaprojektow-container .list {
  -webkit-box-flex: 1;
      -ms-flex: 1 40%;
          flex: 1 40%;
  position: relative;
  overflow-y: scroll;
  height: 550px;
  min-height: calc(100vh - 350px);
}
.mapaprojektow .mapaprojektow-container .list .project-list {
  list-style-type: none;
  padding: 0;
}
.mapaprojektow .mapaprojektow-container .list::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .mapaprojektow .mapaprojektow-container .list .wrapper {
    padding: 0 10px 30px;
  }
}
.mapaprojektow .mapaprojektow-container .list .header h2 {
  display: block;
  font-size: 28px;
  margin: 20px 0 40px;
  padding-bottom: 20px;
  border-bottom: 1px #ccc solid;
  text-align: center;
}
.mapaprojektow .mapaprojektow-container .list .header h2 span {
  font-weight: 400;
  font-size: 14px;
  display: block;
  color: #000;
}
.mapaprojektow .mapaprojektow-container .list .title-box {
  margin: 0 0 30px;
  padding: 20px 45px;
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
.mapaprojektow .mapaprojektow-container .list .title-box .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .mapaprojektow .mapaprojektow-container .list .title-box .title {
    height: 34px;
    line-height: 34px;
  }
}
.mapaprojektow .mapaprojektow-container .list .box {
  position: relative;
  padding: 10px 20px;
  margin-bottom: 50px;
}
.mapaprojektow .mapaprojektow-container .list .box h3 {
  font-size: 18px;
  margin: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .mapaprojektow .mapaprojektow-container .list .box h3 a {
    font-size: 1em;
    line-height: 16px;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 10px;
  background: #ffffff;
  color: #4c4c4c;
  position: absolute;
  z-index: 20;
  top: -15px;
  right: 15px;
  left: 15px;
  border-radius: 3px;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8em;
}
.mapaprojektow .mapaprojektow-container .list .box .details .item i {
  margin-right: 5px;
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  padding: 2px 0 2px 10px;
}
@media screen and (min-width: 768px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 3px 10px;
  color: #4c4c4c;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  max-width: 220px;
  font-size: 12px;
}
@media screen and (min-width: 480px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span {
    margin: 5px 0;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.numer-projektu, .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.numer-projektu, .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu, .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.obszar-dzialania {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu, .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.obszar-dzialania {
    -webkit-box-flex: 3;
        -ms-flex: 3 0;
            flex: 3 0;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span .projectNumberLabel {
  display: none;
}
@media screen and (min-width: 1200px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span .projectNumberLabel {
    display: inline;
  }
}
@media screen and (min-width: 480px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.numer-projektu {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.numer-projektu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50px;
            flex: 1 0 50px;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.numer-projektu i {
  padding-left: 10px;
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu {
  color: #dd2c00;
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu i {
  margin: 0 0 0 5px;
  color: #dd2c00 !important;
}
@media screen and (min-width: 480px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu i {
    display: none;
  }
}
@media screen and (min-width: 560px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu i {
    display: inline-block;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.numer-projektu i, .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.obszar-dzialania i {
  margin: 0 5px 0 0;
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 15%;
          flex: 1 0 15%;
}
@media screen and (min-width: 480px) {
  .mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
    text-align: right;
  }
}
.mapaprojektow .mapaprojektow-container .list .box .projectDataWrapper span em {
  font-style: normal;
}
.mapaprojektow .mapaprojektow-container .map {
  display: none;
}
@media screen and (min-width: 992px) {
  .mapaprojektow .mapaprojektow-container .map {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 60%;
            flex: 1 60%;
  }
}
.mapaprojektow .leaflet-container a.leaflet-popup-close-button {
  top: 5px;
  right: 5px;
}
.mapaprojektow .leaflet-popup-content {
  padding: 10px 0;
}
.mapaprojektow .infowindow h4 {
  margin: 5px 0 5px;
}
.mapaprojektow .infowindow h4 a {
  color: #2C2D33;
  text-decoration: none;
}
.mapaprojektow .infowindow .location {
  display: block;
  color: #757575;
  font-size: 13px;
  padding: 5px 10px 5px;
  margin: 10px 0 0;
  border-radius: 5px;
  background-color: #f1f1f1;
}
.mapaprojektow .infowindow .location i {
  margin-right: 5px;
}
.mapaprojektow .infowindow p {
  font-size: 14px;
  line-height: 22px;
}
.mapaprojektow .infowindow .btn {
  margin-top: 0;
  padding: 3px 10px;
  font-size: 12px;
}
.mapaprojektow.mapaprojektow-aktualne .second-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0 0;
}
@media screen and (min-width: 560px) {
  .mapaprojektow.mapaprojektow-aktualne .second-line {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
.mapaprojektow.mapaprojektow-aktualne .second-line legend {
  font-size: inherit;
  margin-bottom: 0;
  border-bottom: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.mapaprojektow.mapaprojektow-aktualne .second-line input {
  margin: 0 0 10px;
}
.mapaprojektow.mapaprojektow-aktualne .second-line .col-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .mapaprojektow.mapaprojektow-aktualne .second-line .col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    text-align: center;
  }
}
.mapaprojektow.mapaprojektow-aktualne .second-line .col-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .mapaprojektow.mapaprojektow-aktualne .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
@media screen and (min-width: 992px) {
  .mapaprojektow.mapaprojektow-aktualne .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
@media screen and (min-width: 1200px) {
  .mapaprojektow.mapaprojektow-aktualne .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
.mapaprojektow.mapaprojektow-aktualne .first-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.mapaprojektow.mapaprojektow-aktualne .first-line .select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .mapaprojektow.mapaprojektow-aktualne .first-line .select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    margin: 0 5px 5px;
  }
}
@media screen and (min-width: 1400px) {
  .mapaprojektow.mapaprojektow-archiwum .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mapaprojektow.mapaprojektow-archiwum .filters .first-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.mapaprojektow.mapaprojektow-archiwum .filters .first-line .select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .mapaprojektow.mapaprojektow-archiwum .filters .first-line .select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    margin: 0 5px 5px;
  }
}
.mapaprojektow.mapaprojektow-archiwum .filters .second-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.mapaprojektow.mapaprojektow-archiwum .filters .second-line .select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .mapaprojektow.mapaprojektow-archiwum .filters .second-line .select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    margin: 0 5px 5px;
  }
}
.mapaprojektow .no-results {
  text-align: center;
  padding: 0;
  text-transform: uppercase;
}
.mapaprojektow .no-results span {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.2em;
  line-height: 1.4em;
  color: #616161;
  text-shadow: #e0e0e0 1px 1px 0;
  padding: 10px;
  margin: -10px 0 40px;
}
.mapaprojektow .btnVisible {
  display: inline-block;
}
.mapaprojektow .btnHidden {
  display: none;
}
.mapaprojektow button.show-project-on-map {
  display: none;
}
@media screen and (min-width: 992px) {
  .mapaprojektow button.show-project-on-map {
    display: inline-block;
  }
}

*:focus {
  outline: 1px dashed red !important;
  outline-offset: 2px !important;
}

.wcag {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: -1;
}
.wcag .controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
}
@media screen and (min-width: 768px) {
  .wcag .controls {
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.wcag .controls .wrapper {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 3px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wcag .controls .header {
  -ms-flex-item-align: center;
      align-self: center;
}
.wcag .controls .header strong {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  display: none;
  text-transform: uppercase;
  font-weight: 900;
  margin-left: 5px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .wcag .controls .header strong {
    display: inline-block;
  }
}
.wcag .controls .header i {
  font-size: 1.6em;
  display: inline-block;
}
.wcag .controls .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .wcag .controls .actions {
    margin-left: 0;
  }
}
.wcag .controls .actions .header {
  display: none;
}
.wcag .controls .actions .header span {
  font-size: 0.7em;
  font-weight: 300;
}
.wcag .controls .actions button {
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
}
.wcag .controls .actions button span {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border: 3px solid #000;
  border-radius: 30px;
  text-indent: -9999px;
}
.wcag .controls .actions button span::before, .wcag .controls .actions button span::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 7px;
  height: 14px;
}
.wcag .controls .actions button span::before {
  right: 0;
  border-radius: 0 10px 10px 0;
}
.wcag .controls .actions button span::after {
  left: 0;
  border-radius: 10px 0 0 10px;
}
.wcag .controls .actions button.contrast_bw span {
  color: #fff;
  background: #000;
}
.wcag .controls .actions button.contrast_bw span::before {
  background: #000;
}
.wcag .controls .actions button.contrast_bw span::after {
  background: #fff;
}
.wcag .controls .actions button.contrast_wb span {
  background: #fff;
}
.wcag .controls .actions button.contrast_wb span::before {
  background: #fff;
}
.wcag .controls .actions button.contrast_wb span::after {
  background: #000;
}
.wcag .controls .actions button.contrast_by span::before {
  background: yellow;
}
.wcag .controls .actions button.contrast_by span::after {
  background: #000;
}
.wcag .controls .actions button.contrast_yb span::before {
  background: #000;
}
.wcag .controls .actions button.contrast_yb span::after {
  background: yellow;
}
.wcag .controls .fonts {
  margin-left: 10px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wcag .controls .fonts .header {
  font-weight: 300;
}
.wcag .controls .fonts button {
  border: none;
  background-color: transparent;
  font-size: 0.7em;
  width: 30px;
  text-align: center;
}
.wcag .controls .fonts button.big span {
  font-size: 1.28em;
}
.wcag .controls .fonts button.bigger span {
  font-size: 1.7em;
}
.wcag .controls .fonts button span {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.wcag .controls .link {
  margin-left: 10px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wcag .controls .link a {
  color: #333;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  display: inline-block;
  font-size: 0.8em;
  line-height: 1em;
  padding: 10px;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
a.skip-main:focus, a.skip-main:active {
  color: #000;
  background-color: red;
  left: auto;
  top: 100px;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  -webkit-box-shadow: 0 0 10px red;
          box-shadow: 0 0 10px red;
  text-align: center;
  font-size: 1.2em;
  z-index: 99999;
}

@media (prefers-reduced-motion) {
  *,
  *:focus,
  *:hover {
    -webkit-animation: none;
            animation: none;
    -webkit-transition: none;
    transition: none;
  }
}
.bgslider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.bgslider-controls .wrapper {
  margin: 0 0 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .bgslider-controls .wrapper {
    max-width: 100px;
  }
}
.bgslider-controls .wrapper span {
  padding: 1em;
}
.bgslider-controls .wrapper ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.bgslider-controls .wrapper ul button {
  text-align: center;
  border: none;
  width: 34px;
  height: 34px;
  font-size: 1em;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0 20px 0px rgba(0, 0, 0, 0.25);
  margin: 0;
  padding: 0;
}
.bgslider-controls .wrapper ul button.play i {
  margin-left: 5px;
}
.bgslider-controls .wrapper ul button i {
  display: block;
}

#liveResults {
  background-color: #f1f3f3;
}
#liveResults h2 {
  text-align: center;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  #liveResults h2 {
    font-size: 42px;
  }
}

body {
  position: relative;
  padding-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@keyframes fadeInFast {
  to {
    opacity: 1;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
}
.loading .loading_logo {
  display: block;
  width: 145px;
  height: 70px;
  background: url("../images/konsultacje-spoleczne-logo-gray.png") 0 0 no-repeat;
  opacity: 0;
  -webkit-animation-name: fadeInFast;
          animation-name: fadeInFast;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -35px 0 0 -72px;
}

#top {
  min-height: auto;
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-color: #000;
}
#top::before, #top::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#top::before {
  background-color: rgba(0, 0, 0, 0.5);
}
#top::after {
  background-color: rgba(0, 0, 0, 0.5);
}
#top .btn {
  border: none;
}
#top .header-content {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 100px 0 100px;
}
@media screen and (min-width: 992px) {
  #top .header-content {
    padding: 120px 0 125px;
  }
}
@media screen and (min-width: 1200px) {
  #top .header-content {
    padding: 90px 0 80px;
  }
}
#top .header-content.with-counter {
  padding: 80px 0 60px;
}
@media screen and (min-width: 992px) {
  #top .header-content.with-counter {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1200px) {
  #top .header-content.with-counter {
    padding: 80px 0 40px;
  }
}
@media screen and (min-width: 1600px) {
  #top .header-content.with-counter {
    padding: 100px 0;
  }
}
#top .header-content .countdown-bo {
  margin: 10px 0 30px;
}
#top .header-content .lead {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}
@media screen and (min-width: 768px) {
  #top .header-content .lead {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  #top .header-content .btn {
    margin: 10px 20px 0;
    padding: 15px 30px;
    font-size: 18px;
  }
}
#top .harmonogram ul {
  list-style-type: none;
  margin: 50px 0 0;
  padding: 0;
  text-align: center;
}
#top .harmonogram ul li {
  cursor: inherit;
  padding: 10px;
  position: relative;
}
#top .harmonogram ul li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #top .harmonogram ul li {
    display: inline-block;
    padding: 5px;
  }
}
@media screen and (min-width: 992px) {
  #top .harmonogram ul li {
    padding: 5px 15px;
  }
}
#top .harmonogram ul li span.title {
  display: block;
  font-size: 14px;
  padding: 10px 15px;
}
@media screen and (min-width: 768px) {
  #top .harmonogram ul li span.title {
    display: none;
  }
}
#top .harmonogram ul li span.title em {
  display: block;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 3px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
#top .harmonogram ul li span.icon {
  display: block;
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
  text-align: center;
  border: 1px #fff solid;
  border-radius: 200px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: -1;
}
#top .harmonogram ul li span.icon i {
  font-size: 36px;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#top .harmonogram ul li.active {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #top .harmonogram ul li.active {
    -webkit-animation: harmonogram 1s;
            animation: harmonogram 1s;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
}
#top .harmonogram ul li.active span.icon {
  background-color: #7c1b0c;
  border: none;
}
#top .harmonogram ul li:hover span.icon {
  background-color: #7c1b0c;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
#top .harmonogram ul li:hover.active span {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
}

section {
  background-repeat: no-repeat;
  position: relative;
}
section .container {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  section .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 992px) {
  section .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

#lista-projektow,
#aktualnie-trwajace-konsultacje {
  background-color: #e4e7e8;
  background-image: url("../images/bg.png");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}
#lista-projektow h2,
#aktualnie-trwajace-konsultacje h2 {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  #lista-projektow h2,
  #aktualnie-trwajace-konsultacje h2 {
    font-size: 48px;
  }
}

#lista-projektow .project-list {
  list-style-type: none;
  padding: 0;
}
#lista-projektow .project-list > ul {
  list-style-type: none;
  padding: 0;
}
#lista-projektow span.project-list-sorted-category {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #2c2d33;
  font-weight: 900;
  font-size: 25px;
  line-height: 28px;
  text-decoration: none;
  margin: 0 0 20px 0 !important;
  display: block;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #lista-projektow span.project-list-sorted-category {
    font-size: 35px;
  }
}
#lista-projektow span.project-list-sorted-category em {
  font-style: normal;
  display: block;
  font-weight: 300;
  font-size: 14px;
}
#lista-projektow h3 {
  margin: 15px 0 0;
}
#lista-projektow p {
  margin-top: 10px;
}
#lista-projektow .box {
  margin-bottom: 50px;
  word-break: break-word;
}
#lista-projektow span.numer-projektu em {
  font-style: normal;
}
#lista-projektow .projectDataWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -40px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  #lista-projektow .projectDataWrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#lista-projektow .projectDataWrapper span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 5px 10px;
  margin: 5px;
  color: #4c4c4c;
  background-color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  max-width: 220px;
}
@media screen and (min-width: 560px) {
  #lista-projektow .projectDataWrapper span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#lista-projektow .projectDataWrapper span.numer-projektu i, #lista-projektow .projectDataWrapper span.obszar-dzialania i {
  margin: 0 5px 0 0;
}
#lista-projektow .projectDataWrapper span.weryfikacja-projektu {
  background-color: #dd2c00;
  color: #fff;
}
#lista-projektow .projectDataWrapper span.weryfikacja-projektu i {
  margin: 0 0 0 5px;
  color: #fff;
}
#lista-projektow .projectDataWrapper span em {
  font-style: normal;
}
@media screen and (min-width: 768px) {
  #lista-projektow .projectDataWrapper span {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100px;
            flex: 1 0 100px;
  }
}

.no-results span {
  display: block;
  padding: 20px;
  margin: -20px 15px 50px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #d6dbdc;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

#witamy {
  background: url("../images/city-bg.jpg");
  background-color: #fff;
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  #witamy {
    text-align: center;
  }
}
#witamy .equal {
  position: relative;
}
#witamy .herb img {
  max-width: 150px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #witamy .herb img {
    /* @include vertical-align(); */
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  #witamy .greeting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#witamy .greeting img {
  max-width: 150px;
  position: relative;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}
#witamy p {
  font-size: 14px;
  line-height: 22px;
}
#witamy p.lead {
  font-size: 18px;
  line-height: 24px;
}
#witamy .btns {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  #witamy .btns .btn {
    display: block;
    padding: 10px 5px;
  }
}

#dlaczego-warto {
  background-color: #c22a13;
  color: #fff;
}
#dlaczego-warto h2 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  #dlaczego-warto h2 {
    font-size: 52px;
  }
}
#dlaczego-warto p.lead {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: inherit;
  margin-bottom: 50px;
}
#dlaczego-warto .powody-lead {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #dlaczego-warto .powody-lead {
    text-align: left;
  }
}
#dlaczego-warto .powody-lead h3 {
  text-transform: uppercase;
  font-size: 45px;
  line-height: 45px;
  color: #000;
  z-index: -1;
  margin-bottom: 20px;
}
#dlaczego-warto .powody-lead p {
  font-size: 14px;
  line-height: 22px;
  color: #000;
  z-index: -1;
}
@media screen and (min-width: 480px) {
  #dlaczego-warto .powody-lead p {
    width: 300px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 768px) {
  #dlaczego-warto .powody-lead p {
    margin: 0 0 30px;
    width: 70%;
    text-align: left;
  }
}
@media screen and (min-width: 480px) {
  #dlaczego-warto .powody-lead .btn {
    padding: 15px 30px;
  }
}
#dlaczego-warto .powody-lead .btn:hover, #dlaczego-warto .powody-lead .btn:focus {
  background-color: inherit;
}
#dlaczego-warto .powody {
  text-align: center;
}
#dlaczego-warto .powody h4 {
  text-transform: uppercase;
  font-size: 32px;
  padding-bottom: 25px;
}
@media screen and (min-width: 480px) {
  #dlaczego-warto .powody h4 {
    font-size: 42px;
  }
}
#dlaczego-warto .powody p {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  width: 70%;
  margin: 0 auto;
  color: #fff;
  border-top: 1px solid #fff;
  margin-bottom: 30px;
  padding-top: 20px;
}
#dlaczego-warto .powody .jeden,
#dlaczego-warto .powody .dwa,
#dlaczego-warto .powody .trzy {
  position: relative;
  padding-top: 200px;
}
#dlaczego-warto .powody .jeden span,
#dlaczego-warto .powody .dwa span,
#dlaczego-warto .powody .trzy span {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 100;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 14em;
  color: #000;
  z-index: -1;
}
#dlaczego-warto .powody .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#dlaczego-warto .powody .owl-nav button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#dlaczego-warto .powody .owl-nav button span {
  color: #000;
  background-color: #fff;
}
#dlaczego-warto .powody .owl-nav button:hover, #dlaczego-warto .powody .owl-nav button:focus {
  -webkit-transform: scale(1.1) translateY(-3px);
          transform: scale(1.1) translateY(-3px);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.4);
}
#dlaczego-warto .slider-dots {
  text-align: center;
}
#dlaczego-warto .slider-dots .owl-dot {
  display: inline-block;
  margin: 5px 10px;
}
#dlaczego-warto .slider-dots .owl-dot button {
  display: inline-block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  background-color: #65160a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
#dlaczego-warto .slider-dots .owl-dot.active button, #dlaczego-warto .slider-dots .owl-dot:hover button {
  -webkit-transform: scale(1.2) translateY(-3px);
          transform: scale(1.2) translateY(-3px);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  background-color: #94200e;
}
#dlaczego-warto .owl-play-pause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
#dlaczego-warto .owl-play-pause button {
  font-size: 1em;
  width: 35px;
  height: 35px;
  border: none;
  margin: 5px 10px;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#dlaczego-warto .owl-play-pause button.play i {
  margin-left: 3px;
}
#dlaczego-warto .owl-play-pause button i {
  display: block;
}
#dlaczego-warto .owl-play-pause button:hover, #dlaczego-warto .owl-play-pause button:focus {
  -webkit-transform: scale(1.1) translateY(-3px);
          transform: scale(1.1) translateY(-3px);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.4);
}

#harmonogram {
  background-color: #fff;
}
#harmonogram h2 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  #harmonogram h2 {
    font-size: 52px;
  }
}
#harmonogram p.lead {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: inherit;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #harmonogram p.lead {
    margin-bottom: 50px;
  }
}
#harmonogram .harmonogram ul {
  list-style-type: none;
  margin: 30px 0 0;
  padding: 0;
  text-align: center;
}
#harmonogram .harmonogram ul li {
  display: block;
  cursor: inherit;
  padding: 10px 10px 50px;
  position: relative;
}
#harmonogram .harmonogram ul li::after {
  content: "";
  position: absolute;
  width: 43px;
  top: 160px;
  left: 50%;
  border-left: 3px dotted #ccc;
  height: 60px;
}
@media screen and (min-width: 480px) {
  #harmonogram .harmonogram ul li::after {
    top: 80%;
  }
}
@media screen and (min-width: 768px) {
  #harmonogram .harmonogram ul li::after {
    border-left: none;
    border-bottom: 3px dotted #ccc;
    top: -15px;
    left: 90%;
    width: 25px;
  }
}
@media screen and (min-width: 992px) {
  #harmonogram .harmonogram ul li::after {
    left: 90%;
    width: 45px;
  }
}
@media screen and (min-width: 1200px) {
  #harmonogram .harmonogram ul li::after {
    left: 80%;
    width: 65px;
  }
}
#harmonogram .harmonogram ul li:last-child::after {
  display: none;
}
@media screen and (min-width: 768px) {
  #harmonogram .harmonogram ul li {
    display: inline-block;
    padding: 5px;
    width: 16%;
    vertical-align: top;
  }
}
@media screen and (min-width: 992px) {
  #harmonogram .harmonogram ul li {
    padding: 5px 15px;
  }
}
#harmonogram .harmonogram ul li span.title {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 0;
}
#harmonogram .harmonogram ul li span.title em {
  display: block;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 3px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #harmonogram .harmonogram ul li span.title em {
    min-height: 40px;
  }
}
#harmonogram .harmonogram ul li span.icon {
  color: #707070;
  display: block;
  margin: 0 auto 10px;
  width: 80px;
  height: 50px;
  text-align: center;
  border-radius: 200px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px #fff solid;
  height: 80px;
}
#harmonogram .harmonogram ul li span.icon i {
  font-size: 36px;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#harmonogram .harmonogram ul li.active span.icon {
  background-color: #c22a13;
  color: #fff;
  border: none;
}
@media screen and (min-width: 768px) {
  #harmonogram .harmonogram ul li.active span.icon {
    -webkit-animation: harmonogram-move 1s;
            animation: harmonogram-move 1s;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
}
#harmonogram .harmonogram ul li.active span.title {
  color: #000;
  font-size: 1.1em;
}
#harmonogram .harmonogram ul li.active span.title em {
  font-size: 1em;
}
#harmonogram .harmonogram ul li.active:hover span.icon {
  background-color: #c22a13;
}
#harmonogram .harmonogram ul li.active:hover span.icon i {
  color: inherit;
}
#harmonogram .harmonogram ul li:hover span.icon {
  border: 1px #c22a13 solid;
  background-color: transparent;
}
#harmonogram .harmonogram ul li:hover span.icon i {
  color: #c22a13;
}
#harmonogram .harmonogram ul li:hover span.title {
  cursor: default;
  color: #c22a13;
}

.ue {
  background-color: #fff;
}

.searchBar {
  padding: 0;
  margin: 0;
}
.searchBar .title {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  padding: 10px 0 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.searchBar .box-border {
  background-color: #ececec;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.searchBar .box-border .wrappper {
  margin-right: 0;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.searchBar .box-border .wrappper input, .searchBar .box-border .wrappper select {
  margin-bottom: 5px;
}
.searchBar .box-border .wrappper .first-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.searchBar .box-border .wrappper .first-line label {
  display: none;
}
@media screen and (min-width: 1200px) {
  .searchBar .box-border .wrappper .first-line {
    -webkit-box-flex: 2;
        -ms-flex: 2 0;
            flex: 2 0;
    margin-right: 3px;
  }
}
.searchBar .box-border .wrappper .first-line .col-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  margin-right: 3px;
}
@media screen and (min-width: 480px) {
  .searchBar .box-border .wrappper .first-line .col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}
@media screen and (min-width: 768px) {
  .searchBar .box-border .wrappper .first-line .col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}
@media screen and (min-width: 992px) {
  .searchBar .box-border .wrappper .first-line .col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}
@media screen and (min-width: 1200px) {
  .searchBar .box-border .wrappper .first-line .col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50px;
            flex: 1 0 50px;
  }
}
.searchBar .box-border .wrappper .first-line .col-3 {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4 0;
          flex: 1.4 0;
}
@media screen and (min-width: 480px) {
  .searchBar .box-border .wrappper .first-line .col-3 {
    -webkit-box-flex: 3;
        -ms-flex: 3 0;
            flex: 3 0;
  }
}
@media screen and (min-width: 768px) {
  .searchBar .box-border .wrappper .first-line .col-3 {
    -webkit-box-flex: 4;
        -ms-flex: 4 0;
            flex: 4 0;
  }
}
@media screen and (min-width: 992px) {
  .searchBar .box-border .wrappper .first-line .col-3 {
    -webkit-box-flex: 6.5;
        -ms-flex: 6.5 0;
            flex: 6.5 0;
  }
}
@media screen and (min-width: 1200px) {
  .searchBar .box-border .wrappper .first-line .col-3 {
    -webkit-box-flex: 8;
        -ms-flex: 8 0;
            flex: 8 0;
  }
}
.searchBar .box-border .wrappper .second-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .searchBar .box-border .wrappper .second-line {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5 0;
            flex: 1.5 0;
  }
}
.searchBar .box-border .wrappper .second-line label {
  display: none;
}
.searchBar .box-border .wrappper .second-line .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (min-width: 480px) {
  .searchBar .box-border .wrappper .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    margin-right: 3px;
  }
}
@media screen and (min-width: 768px) {
  .searchBar .box-border .wrappper .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  .searchBar .box-border .wrappper .second-line .col-2:last-child {
    margin-right: 0;
  }
}
.searchBar .box-border .wrappper .third-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}
@media screen and (min-width: 560px) {
  .searchBar .box-border .wrappper .third-line {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
.searchBar .box-border .wrappper .third-line .radio-header {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: inherit;
  border: none;
}
.searchBar .box-border .wrappper .third-line input {
  margin: 0 0 10px;
}
@media screen and (min-width: 992px) {
  .searchBar .box-border .wrappper .third-line {
    display: block;
  }
}
.searchBar .box-border .wrappper .third-line .col-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .searchBar .box-border .wrappper .third-line .col-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .searchBar .box-border .wrappper .third-line .col-1 {
    display: block;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    float: left;
    text-align: left;
    width: 40%;
  }
}
.searchBar .box-border .wrappper .third-line .col-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .searchBar .box-border .wrappper .third-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
@media screen and (min-width: 992px) {
  .searchBar .box-border .wrappper .third-line .col-2 {
    display: block;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    float: left;
    width: 20%;
  }
}
.searchBar .box-border .wrappper .btn {
  padding: 6px 10px 3px;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.searchBar .box-border .wrappper > [class^=col-],
.searchBar .box-border .wrappper > [class*=" col-"] {
  padding-right: 3px;
  padding-left: 3px;
}

footer {
  background-color: #333;
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  footer {
    text-align: left;
  }
}
footer ul {
  padding-left: 0;
  list-style-type: none;
}
footer p,
footer li,
footer span {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 992px) {
  footer p,
  footer li,
  footer span {
    font-size: 14px;
    line-height: 20px;
  }
}
footer p a,
footer li a,
footer span a {
  color: #fff;
  text-decoration: none;
}
footer p a:hover, footer p a:active, footer p a:focus,
footer li a:hover,
footer li a:active,
footer li a:focus,
footer span a:hover,
footer span a:active,
footer span a:focus {
  text-decoration: none;
  color: #fff;
}
footer .herb {
  display: block;
  margin: 0 auto 15px;
  max-width: 100%;
  height: auto;
  max-height: 60px;
}
footer span {
  display: block;
}
footer .logo-link {
  opacity: 1;
}
footer .logo-link:hover {
  opacity: 0.5;
}
footer .logo-link.konsultacjejst {
  display: inline-block;
  margin-top: 22px;
}
footer .more-info {
  padding-top: 5px;
  margin-top: 5px;
}
footer .logo {
  padding-top: 30px;
}
footer .logo a img {
  max-height: 40px;
}
@media screen and (min-width: 768px) {
  footer .logo {
    padding-top: 0;
  }
}
footer .links ul {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 768px) {
  footer .links ul {
    margin-top: 0;
  }
}
footer .links ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 50%;
          flex: 1 50%;
}
@media only screen and (min-width: 768px) {
  footer .links ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
footer .links ul li img {
  max-height: 50px;
  margin-top: 5px;
  margin-bottom: auto;
}
footer .partners {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  footer .partners {
    margin-top: 0;
  }
}
footer .partners ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .partners ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 72px;
          flex: 0 1 72px;
  height: 40px;
}
footer .partners ul li a {
  display: block;
  width: 100%;
  background-size: contain !important;
}
footer .partners ul li a img {
  display: block;
  max-height: 40px;
}
footer .copyrights,
footer .polityka-prywatnosci {
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .copyrights {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  footer .polityka-prywatnosci {
    text-align: right;
  }
}

.subpage #top .header-content {
  padding: 30px 0 10px;
}
@media screen and (min-width: 992px) {
  .subpage #top .header-content {
    padding: 20px 0 20px;
  }
}
.subpage #top .header-content h1 {
  font-size: 2.28em;
}
.subpage .side-menu {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .subpage .side-menu {
    margin-top: 10px;
  }
}
.subpage .side-menu li {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 20px;
}
.subpage .side-menu li.active a {
  background-color: #333;
  color: #fff;
}
.subpage .side-menu li.active a:hover {
  background-color: #333;
}
.subpage .side-menu li.active a:hover::after {
  display: none;
}
.subpage .side-menu li a {
  display: block;
  position: relative;
  color: #333;
  padding: 15px 30px 15px 10px;
  margin-bottom: 5px;
  background-color: #e7e7e7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 3px;
}
.subpage .side-menu li a i {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.subpage .side-menu li a:hover {
  background-color: #ccc;
}
.subpage .side-menu li a:hover i {
  right: 20px;
}
.subpage .files-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.subpage .files-list .stage {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .subpage .files-list .stage {
    text-align: left;
  }
}
.subpage .files-list .stage span.title {
  display: block;
  font-size: 1em;
  line-height: 1.14em;
  padding: 10px 0;
}
.subpage .files-list .stage span.title em {
  display: block;
  font-style: normal;
  font-size: 1.14em;
  line-height: 1.28em;
  margin-bottom: 3px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.subpage .files-list .stage span.title a {
  text-decoration: none;
  font-weight: bold;
  color: #c22a13;
}
.subpage .files-list .stage span.file-info {
  display: block;
  font-size: 1em;
  margin-bottom: 15px;
  color: #666;
  font-style: italic;
}
.subpage .files-list .stage a.icon {
  color: #707070;
  display: block;
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 200px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px #ccc solid;
  text-decoration: none;
  overflow: hidden;
}
.subpage .files-list .stage a.icon i {
  font-size: 2.57em;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.subpage .files-list .stage a.icon i.fa-download {
  display: none;
}
.subpage .files-list .stage a.icon:hover {
  background-color: #c22a13;
  color: #fff;
}
.subpage .files-list .stage a.icon:hover i.fa-file-alt {
  opacity: 0;
}
.subpage .files-list .stage a.icon:hover i.fa-download {
  color: #fff;
  display: block;
  -webkit-transform: translateY(-55px);
          transform: translateY(-55px);
}
.subpage .files-list .stage.hover span.icon {
  background-color: #c22a13;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .subpage .files-list .stage.hover span.icon {
    -webkit-animation: harmonogram-move 1s;
            animation: harmonogram-move 1s;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
}
.subpage .files-list .stage.hover span.title {
  color: #c22a13;
}
.subpage .files-list .stage.hover:hover span.icon i {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .subpage #content {
    min-height: calc(100vh - 376px);
  }
}
@media screen and (min-width: 992px) {
  .subpage #content .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.subpage #content h3, .subpage #content h4 {
  margin-top: 40px;
}
.subpage #content p {
  font-size: 1em;
  line-height: 1.71em;
}
.subpage #content p.lead {
  font-size: 1.28em;
  line-height: 1.71em;
  color: inherit;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .subpage #content p.lead {
    margin-bottom: 30px;
  }
}
.subpage #content ul li, .subpage #content ol li {
  font-size: 1em;
  line-height: 1.71em;
  color: #585858;
}
.subpage .harmonogram {
  margin-top: 40px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.subpage .harmonogram .stage {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .subpage .harmonogram .stage {
    text-align: left;
  }
}
.subpage .harmonogram .stage span.title {
  display: block;
  font-size: 1em;
  line-height: 1.14em;
  padding: 10px 0;
}
.subpage .harmonogram .stage span.title em {
  display: block;
  font-style: normal;
  font-size: 1.14em;
  line-height: 1.28em;
  margin-bottom: 3px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.subpage .harmonogram .stage span.icon {
  color: #707070;
  display: block;
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 200px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px #ccc solid;
}
.subpage .harmonogram .stage span.icon i {
  font-size: 2.57em;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.subpage .harmonogram .stage.active span.icon {
  background-color: #c22a13;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .subpage .harmonogram .stage.active span.icon {
    -webkit-animation: harmonogram-move 1s;
            animation: harmonogram-move 1s;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
}
.subpage .harmonogram .stage.active span.title {
  color: #c22a13;
}
.subpage .harmonogram .stage.active:hover span.icon i {
  color: #fff;
}

.wyniki {
  background: #e4e7e8 url("../images/bg.png") 0 0 no-repeat;
  background-attachment: fixed;
  background-size: contain;
}
.wyniki h2 {
  margin: 0 0 20px;
}

#content {
  min-height: calc(100vh - 415px);
}
#content .data-loading {
  width: 100%;
  height: 300px;
  min-height: calc(100vh - 600px);
  background: url("../images/data-loading.gif") center center no-repeat;
}
#content .data-content {
  display: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#content .box .section {
  margin-top: 30px;
}
#content .box .section h3 {
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
}
#content .box .section h3.category {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 992px) {
  #content .box .section h3.category {
    margin-bottom: 0;
    padding-bottom: 10px;
    font-size: 32px;
    border-bottom: 1px #ececec solid;
  }
}
#content .box .section h3.category span {
  position: absolute;
  font-size: 0.5em;
  top: -12px;
  font-weight: 400;
  color: #999;
}
#content .box .section h3.category i {
  padding: 0 10px;
}
#content .box .section:first-child {
  margin-top: 0;
}
#content .district-title {
  padding-bottom: 20px;
}
#content .table .filters-box {
  margin: 0 0 15px;
  padding: 10px 5px;
  background-color: #ececec;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#content .table .filters-box .first-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
#content .table .filters-box .first-line .select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  #content .table .filters-box .first-line .select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    margin: 0 2px 5px;
  }
}
#content .table .filters-box .second-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}
@media screen and (min-width: 560px) {
  #content .table .filters-box .second-line {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
#content .table .filters-box .second-line .col-1 {
  font-size: inherit;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0;
  border-bottom: none;
}
@media screen and (min-width: 480px) {
  #content .table .filters-box .second-line .col-1 {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  #content .table .filters-box .second-line .col-1 {
    text-align: left;
    width: 40%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    float: left;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
#content .table .filters-box .second-line .col-1 label {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  #content .table .filters-box .second-line .col-1 label {
    margin-top: 5px;
  }
}
#content .table .filters-box .second-line .col-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  #content .table .filters-box .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
@media screen and (min-width: 992px) {
  #content .table .filters-box .second-line .col-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
  }
}
#content .table .filters-box .radio-wrapper {
  display: block;
  position: relative;
  padding-left: 30px;
  margin: 5px 0;
  cursor: pointer;
  font-size: 14px;
}
#content .table .table-header {
  font-size: 12px;
  color: #666;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
#content .table .table-header > [class^=col-], #content .table .table-header > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}
#content .table .table-header button {
  display: none;
}
#content .table .table-header .sort-btn {
  display: block;
  position: relative;
  padding: 0 10px;
}
#content .table .table-header .sort-btn:hover {
  cursor: pointer;
  color: #333;
}
#content .table .table-header .sort-btn:before, #content .table .table-header .sort-btn:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#content .table .table-header .sort-btn:before {
  content: "\f0dd";
}
#content .table .table-header .sort-btn:after {
  content: "\f0de";
}
#content .table .table-header .sort-btn.asc:before {
  opacity: 0.5;
}
#content .table .table-header .sort-btn.asc:after {
  opacity: 1;
}
#content .table .table-header .sort-btn.desc:before {
  opacity: 1;
}
#content .table .table-header .sort-btn.desc:after {
  opacity: 0.5;
}
#content .table .table-header {
  display: none;
}
@media screen and (min-width: 992px) {
  #content .table .table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#content .table .table-header .td {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 768px) {
  #content .table .table-header .td.nr {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50px;
            flex: 0 1 50px;
  }
  #content .table .table-header .td.nazwa-projektu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  #content .table .table-header .td.glosow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  #content .table .table-header .td.glosow.per {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100px;
            flex: 1 0 100px;
  }
  #content .table .table-header .td.koszt {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30px;
            flex: 1 0 30px;
  }
  #content .table .table-header .td.podglad {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20px;
            flex: 1 0 20px;
  }
  #content .table .table-header .td.statystyki {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20px;
            flex: 1 0 20px;
  }
}
@media screen and (min-width: 992px) {
  #content .table .table-header .td.nazwa-projektu {
    -webkit-box-flex: 4;
        -ms-flex: 4 0;
            flex: 4 0;
  }
}
#content .table .table-content {
  overflow: hidden;
  margin: 10px 0;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#content .table .table-content .tr:hover .td {
  cursor: pointer;
}
#content .table .table-content .td {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#content .table .table-content .td span {
  display: block;
  padding: 10px 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #content .table .table-content .td.nr {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50px;
            flex: 0 1 50px;
  }
  #content .table .table-content .td.nazwa-projektu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
  #content .table .table-content .td.glosow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #content .table .table-content .td.glosow.per {
    -webkit-box-flex: 1;
        -ms-flex: 1 100px;
            flex: 1 100px;
  }
  #content .table .table-content .td.glosow.per span {
    padding: 10px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #content .table .table-content .td.glosow.per i {
    display: block !important;
  }
  #content .table .table-content .td.koszt {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30px;
            flex: 1 0 30px;
  }
  #content .table .table-content .td.podglad {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20px;
            flex: 1 0 20px;
  }
  #content .table .table-content .td.statystyki {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20px;
            flex: 1 0 20px;
  }
}
@media screen and (min-width: 992px) {
  #content .table .table-content .td.nazwa-projektu {
    -webkit-box-flex: 4;
        -ms-flex: 4 0;
            flex: 4 0;
  }
}
#content .table .table-content .nr {
  text-align: center;
  background-color: #dedcdc;
}
@media screen and (min-width: 768px) {
  #content .table .table-content .nr {
    text-align: right;
  }
}
#content .table .table-content .nazwa-projektu {
  background-color: #efefef;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #content .table .table-content .nazwa-projektu span {
    text-align: left;
  }
}
#content .table .table-content .nazwa-projektu a {
  text-decoration: none;
  color: #000;
  position: relative;
}
#content .table .table-content .nazwa-projektu a span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#content .table .table-content .nazwa-projektu a:hover span {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
#content .table .table-content .nazwa-projektu .categories {
  padding-left: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  #content .table .table-content .nazwa-projektu .categories {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: -10px;
  }
}
#content .table .table-content .nazwa-projektu .categories > i {
  margin: 5px;
  color: #BDBDBD;
}
#content .table .table-content .nazwa-projektu .categories ul {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#content .table .table-content .nazwa-projektu .categories ul li {
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 5px;
  border: 1px #ccc solid;
  border-radius: 3px;
  background-color: #f1f1f1;
  font-size: 11px;
}
#content .table .table-content .glosow {
  background-color: #efefef;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #content .table .table-content .glosow i {
    display: none;
  }
}
#content .table .table-content .koszt {
  background-color: #efefef;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #content .table .table-content .koszt i {
    display: none;
  }
}
#content .table .table-content .podglad,
#content .table .table-content .statystyki {
  background-color: #efefef;
  text-align: center;
}
#content .table .table-content .podglad button,
#content .table .table-content .statystyki button {
  border: none;
  background: transparent;
  color: #000;
}
#content .table .table-content .podglad button i,
#content .table .table-content .statystyki button i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#content .table .table-content .podglad button:hover i,
#content .table .table-content .statystyki button:hover i {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
#content .table .table-content:hover .nr {
  background-color: #d2cfcf;
}
#content .table .table-content:hover .nazwa-projektu,
#content .table .table-content:hover .glosow,
#content .table .table-content:hover .koszt,
#content .table .table-content:hover .podglad,
#content .table .table-content:hover .statystyki {
  background-color: #e2e2e2;
}
#content .table .table-content.tr-winner .nr {
  background-color: #c5e1a5;
}
#content .table .table-content.tr-winner .nazwa-projektu,
#content .table .table-content.tr-winner .glosow,
#content .table .table-content.tr-winner .koszt,
#content .table .table-content.tr-winner .podglad,
#content .table .table-content.tr-winner .statystyki {
  background-color: #8bc34a;
}
#content .table .table-content.tr-winner .categories > i {
  color: #333;
}
#content .table .table-content.tr-winner .categories ul li {
  color: #333;
  background-color: transparent;
  border-color: #333;
}
#content .table .table-content.tr-winner:hover .nr {
  background-color: #71a436;
  color: #fff;
}
#content .table .table-content.tr-winner:hover .nazwa-projektu,
#content .table .table-content.tr-winner:hover .glosow,
#content .table .table-content.tr-winner:hover .koszt,
#content .table .table-content.tr-winner:hover .podglad,
#content .table .table-content.tr-winner:hover .statystyki {
  background-color: #7eb73d;
}
#content .table .no-results {
  padding: 0;
}
#content .table .no-results span {
  background: #f1f1f1;
  border: 1px solid #ccc;
  margin: 10px;
  padding: 10px;
}
#content .infografiki .section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: bottom;
  border-bottom: 1px #ccc solid;
}
#content .infografiki .section:last-child {
  border-bottom: none;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section {
    padding-bottom: 25px;
    border-bottom: none;
  }
}
#content .infografiki .section:last-child:after {
  display: none;
}
#content .infografiki .section h3 {
  text-align: center;
  color: #8bc34a;
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
#content .infografiki .section p {
  text-align: center;
  line-height: 18px;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #content .infografiki .section.liczba-zgloszonych-projektow {
    padding-top: 0;
  }
}
#content .infografiki .section.liczba-zgloszonych-projektow .grafika {
  background-image: url(../images/wyniki/liczba-zgloszonych-projektow.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-zgloszonych-projektow .grafika {
    background-position: bottom right;
  }
}
#content .infografiki .section.liczba-zgloszonych-projektow .grafika span {
  font-size: 64px;
  width: 50%;
  text-align: right;
  margin-top: 70px;
}
#content .infografiki .section.liczba-oddanych-glosow .grafika {
  background-image: url(../images/wyniki/liczba-oddanych-glosow.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-oddanych-glosow .grafika {
    background-position: bottom left;
  }
}
#content .infografiki .section.liczba-oddanych-glosow .grafika span {
  font-size: 44px;
  width: 60%;
  top: 70px;
  right: 0;
  text-align: right;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.liczba-oddanych-glosow .grafika span {
    font-size: 64px;
    right: 0;
    width: 50%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.liczba-oddanych-glosow .grafika span {
    width: 50%;
    margin: 0 0 0 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-oddanych-glosow .grafika span {
    width: 55%;
    margin: 0;
    font-size: 55px;
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-oddanych-glosow .grafika span {
    width: 65%;
    font-size: 65px;
    top: 65px;
  }
}
#content .infografiki .section.liczba-przyznanych-punktow .grafika {
  background-image: url(../images/wyniki/liczba-przyznanych-punktow.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-przyznanych-punktow .grafika {
    background-position: bottom left;
  }
}
#content .infografiki .section.liczba-przyznanych-punktow .grafika span {
  font-size: 44px;
  width: 60%;
  top: 70px;
  right: 0;
  text-align: right;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.liczba-przyznanych-punktow .grafika span {
    font-size: 64px;
    right: 0;
    width: 50%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.liczba-przyznanych-punktow .grafika span {
    width: 50%;
    margin: 0 0 0 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-przyznanych-punktow .grafika span {
    width: 55%;
    margin: 0;
    font-size: 55px;
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-przyznanych-punktow .grafika span {
    width: 65%;
    font-size: 65px;
    top: 65px;
  }
}
#content .infografiki .section.liczba-glosow-niewaznych .grafika {
  background-image: url(../images/wyniki/glosy-niewazne.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-glosow-niewaznych .grafika {
    background-position: bottom left;
  }
}
#content .infografiki .section.liczba-glosow-niewaznych .grafika span {
  font-size: 44px;
  width: 60%;
  top: 70px;
  right: 0;
  text-align: right;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.liczba-glosow-niewaznych .grafika span {
    font-size: 64px;
    right: 0;
    width: 50%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.liczba-glosow-niewaznych .grafika span {
    width: 50%;
    margin: 0 0 0 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-glosow-niewaznych .grafika span {
    width: 55%;
    margin: 0;
    font-size: 55px;
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-glosow-niewaznych .grafika span {
    width: 65%;
    font-size: 65px;
    top: 65px;
  }
}
#content .infografiki .section.liczba-glosow-wazne-niewazne .grafika {
  background-image: url(../images/wyniki/glosy-wazne-niewazne.png);
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-glosow-wazne-niewazne .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-glosow-wazne-niewazne .grafika {
    background-size: auto;
  }
}
#content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span.wazne {
  left: 0;
  text-align: right;
}
#content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span.niewazne {
  right: 0;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 34px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 30px;
    width: 35%;
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 5px;
  }
}
#content .infografiki .section.liczba-glosow-waznych .grafika {
  background-image: url(../images/wyniki/glosy-wazne.png);
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-glosow-waznych .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-glosow-waznych .grafika {
    background-size: auto;
  }
}
#content .infografiki .section.liczba-glosow-waznych .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#content .infografiki .section.liczba-glosow-waznych .grafika span.wazne {
  left: 0;
  text-align: right;
}
#content .infografiki .section.liczba-glosow-waznych .grafika span.niewazne {
  right: 0;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 34px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 30px;
    width: 35%;
    top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 10px;
  }
}
#content .infografiki .section.papier-internet .grafika {
  background-image: url(../images/wyniki/papier-internet.png);
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.papier-internet .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.papier-internet .grafika {
    background-size: auto;
  }
}
#content .infografiki .section.papier-internet .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#content .infografiki .section.papier-internet .grafika span.papier {
  left: 0;
  text-align: right;
}
#content .infografiki .section.papier-internet .grafika span.internet {
  right: 0;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.papier-internet .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.papier-internet .grafika span {
    font-size: 34px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.papier-internet .grafika span {
    font-size: 30px;
    width: 35%;
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.papier-internet .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 5px;
  }
}
#content .infografiki .section.kobiety-mezczyzni .grafika {
  background-image: url(../images/wyniki/kobiety-mezczyzni.png);
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.kobiety-mezczyzni .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.kobiety-mezczyzni .grafika {
    background-size: auto;
  }
}
#content .infografiki .section.kobiety-mezczyzni .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#content .infografiki .section.kobiety-mezczyzni .grafika span.kobiety {
  left: 0;
  text-align: right;
}
#content .infografiki .section.kobiety-mezczyzni .grafika span.mezczyzni {
  right: 0;
}
@media screen and (min-width: 480px) {
  #content .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #content .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 34px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  #content .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 30px;
    width: 35%;
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 5px;
  }
}
#content .infografiki .section.wiek {
  padding-left: 0;
  padding-right: 0;
}
#content .infografiki .section.wiek .wykres {
  text-align: center;
  vertical-align: bottom;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 200px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 280px;
  margin: 0 auto;
}
#content .infografiki .section.wiek .wykres:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: url(../images/wyniki/wykres.png) center no-repeat;
  bottom: 26px;
  left: 0;
  z-index: 10;
}
#content .infografiki .section.wiek .wykres .kolumna {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}
#content .infografiki .section.wiek .wykres .kolumna .wynik {
  border-left: 3px #8dc04d solid;
  border-right: 3px #8dc04d solid;
  border-top: 3px #8dc04d solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  width: 95%;
  -ms-flex-item-align: center;
      align-self: center;
}
#content .infografiki .section.wiek .wykres .kolumna .wynik span {
  display: block;
  position: absolute;
  top: -32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #8dc04d;
  font-size: 12px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  #content .infografiki .section.wiek .wykres .kolumna .wynik span {
    font-size: 15px;
  }
}
#content .infografiki .section.wiek .wykres .kolumna .przedzial {
  height: 30px;
  font-size: 12px;
  padding: 10px 0 0;
}
#content .infografiki .section .grafika {
  background-repeat: no-repeat;
  min-height: 160px;
  background-position: bottom center;
  position: relative;
}
#content .infografiki .section .grafika span {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #8bc34a;
}
@media screen and (min-width: 992px) {
  #content .infografiki .section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#project-stats .modal-body {
  padding: 0;
}
#project-stats .infografiki {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#project-stats .infografiki .section {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: bottom;
  border-bottom: 1px #ccc solid;
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
}
#project-stats .infografiki .section:last-child {
  border-bottom: none;
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section {
    padding-bottom: 25px;
    border-bottom: none;
  }
}
#project-stats .infografiki .section:last-child:after {
  display: none;
}
#project-stats .infografiki .section h4 {
  text-align: center;
  color: #8bc34a;
  margin: 20px 0;
  font-size: 15px;
}
#project-stats .infografiki .section p {
  text-align: center;
  line-height: 16px;
  font-size: 12px;
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #project-stats .infografiki .section.liczba-zgloszonych-projektow {
    padding-top: 0;
  }
}
#project-stats .infografiki .section.liczba-zgloszonych-projektow .grafika {
  background-image: url(../images/wyniki/liczba-zgloszonych-projektow.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-zgloszonych-projektow .grafika {
    background-position: bottom right;
  }
}
#project-stats .infografiki .section.liczba-zgloszonych-projektow .grafika span {
  font-size: 64px;
  width: 50%;
  text-align: right;
  margin-top: 70px;
}
#project-stats .infografiki .section.liczba-oddanych-glosow .grafika {
  background-image: url(../images/wyniki/liczba-oddanych-glosow.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-oddanych-glosow .grafika {
    background-position: bottom left;
  }
}
#project-stats .infografiki .section.liczba-oddanych-glosow .grafika span {
  font-size: 44px;
  width: 60%;
  top: 70px;
  right: 0;
  text-align: right;
}
@media screen and (min-width: 480px) {
  #project-stats .infografiki .section.liczba-oddanych-glosow .grafika span {
    font-size: 64px;
    right: 0;
    width: 50%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section.liczba-oddanych-glosow .grafika span {
    width: 50%;
    margin: 0 0 0 100px;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-oddanych-glosow .grafika span {
    width: 55%;
    margin: 0;
    font-size: 55px;
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.liczba-oddanych-glosow .grafika span {
    width: 65%;
    font-size: 65px;
    top: 65px;
  }
}
#project-stats .infografiki .section.liczba-glosow-niewaznych .grafika {
  background-image: url(../images/wyniki/glosy-niewazne.png);
  background-position: bottom center;
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-glosow-niewaznych .grafika {
    background-position: bottom left;
  }
}
#project-stats .infografiki .section.liczba-glosow-niewaznych .grafika span {
  font-size: 44px;
  width: 60%;
  top: 70px;
  right: 0;
  text-align: right;
}
@media screen and (min-width: 480px) {
  #project-stats .infografiki .section.liczba-glosow-niewaznych .grafika span {
    font-size: 64px;
    right: 0;
    width: 50%;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section.liczba-glosow-niewaznych .grafika span {
    width: 50%;
    margin: 0 0 0 100px;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-glosow-niewaznych .grafika span {
    width: 55%;
    margin: 0;
    font-size: 55px;
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.liczba-glosow-niewaznych .grafika span {
    width: 65%;
    font-size: 65px;
    top: 65px;
  }
}
#project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika {
  background-image: url(../images/wyniki/glosy-wazne-niewazne.png);
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika {
    background-size: auto;
  }
}
#project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
  text-align: center;
}
#project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span.wazne {
  left: 0;
  text-align: right;
}
#project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span.niewazne {
  right: 0;
}
@media screen and (min-width: 480px) {
  #project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 34px;
    margin-top: 100px;
    width: 35%;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 30px;
    width: 35%;
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.liczba-glosow-wazne-niewazne .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 5px;
  }
}
#project-stats .infografiki .section.liczba-glosow-waznych .grafika {
  background-image: url(../images/wyniki/glosy-wazne.png);
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-glosow-waznych .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.liczba-glosow-waznych .grafika {
    background-size: auto;
  }
}
#project-stats .infografiki .section.liczba-glosow-waznych .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#project-stats .infografiki .section.liczba-glosow-waznych .grafika span.wazne {
  left: 0;
  text-align: right;
}
#project-stats .infografiki .section.liczba-glosow-waznych .grafika span.niewazne {
  right: 0;
}
@media screen and (min-width: 480px) {
  #project-stats .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section.liczba-glosow-waznych .grafika span {
    width: 35%;
    font-size: 34px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 30px;
    width: 35%;
    top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.liczba-glosow-waznych .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 10px;
  }
}
#project-stats .infografiki .section.papier-internet .grafika {
  background-image: url(../images/wyniki/papier-internet.png);
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.papier-internet .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.papier-internet .grafika {
    background-size: auto;
  }
}
#project-stats .infografiki .section.papier-internet .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#project-stats .infografiki .section.papier-internet .grafika span.papier {
  left: 0;
  text-align: right;
}
#project-stats .infografiki .section.papier-internet .grafika span.internet {
  right: 0;
}
@media screen and (min-width: 480px) {
  #project-stats .infografiki .section.papier-internet .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section.papier-internet .grafika span {
    font-size: 34px;
    margin-top: 100px;
    width: 35%;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.papier-internet .grafika span {
    font-size: 30px;
    width: 35%;
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.papier-internet .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 5px;
  }
}
#project-stats .infografiki .section.kobiety-mezczyzni .grafika {
  background-image: url(../images/wyniki/kobiety-mezczyzni.png);
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.kobiety-mezczyzni .grafika {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.kobiety-mezczyzni .grafika {
    background-size: auto;
  }
}
#project-stats .infografiki .section.kobiety-mezczyzni .grafika span {
  font-size: 28px;
  margin-top: 100px;
  width: 30%;
}
#project-stats .infografiki .section.kobiety-mezczyzni .grafika span.kobiety {
  left: 0;
  text-align: right;
}
#project-stats .infografiki .section.kobiety-mezczyzni .grafika span.mezczyzni {
  right: 0;
}
@media screen and (min-width: 480px) {
  #project-stats .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 44px;
    margin-top: 90px;
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #project-stats .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 34px;
    margin-top: 100px;
    width: 35%;
  }
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 30px;
    width: 35%;
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.kobiety-mezczyzni .grafika span {
    font-size: 40px;
    margin-top: 90px;
    top: 5px;
  }
}
#project-stats .infografiki .section.wiek {
  padding-left: 0;
  padding-right: 0;
  padding-top: 75px;
}
#project-stats .infografiki .section.wiek .wykres {
  text-align: center;
  vertical-align: bottom;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 200px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#project-stats .infografiki .section.wiek .wykres:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: url(../images/wyniki/wykres.png) center no-repeat;
  bottom: 27px;
  left: 0;
  z-index: 10;
}
#project-stats .infografiki .section.wiek .wykres .kolumna {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 3px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}
#project-stats .infografiki .section.wiek .wykres .kolumna .wynik {
  position: absolute;
  bottom: 0;
  border: 3px #8dc04d solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}
#project-stats .infografiki .section.wiek .wykres .kolumna .wynik span {
  display: block;
  position: absolute;
  top: -32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #8dc04d;
  font-size: 12px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  #project-stats .infografiki .section.wiek .wykres .kolumna .wynik span {
    font-size: 15px;
  }
}
#project-stats .infografiki .section.wiek .wykres .kolumna .przedzial {
  font-size: 12px;
  padding: 10px 0 1px;
}
#project-stats .infografiki .section .grafika {
  background-repeat: no-repeat;
  min-height: 160px;
  background-position: bottom center;
  position: relative;
}
#project-stats .infografiki .section .grafika span {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #8bc34a;
}
@media screen and (min-width: 992px) {
  #project-stats .infografiki .section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.project-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .project-nav {
    display: block;
  }
}
.project-nav .btn {
  width: 40px;
  height: 40px;
  position: fixed;
  text-align: center;
  padding: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.37, 1.84, 0.49, 1.01);
  transition: all 0.5s cubic-bezier(0.37, 1.84, 0.49, 1.01);
  top: 300px;
  z-index: 1060;
}
.project-nav .btn i {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.37, 1.84, 0.49, 1.01);
  transition: -webkit-transform 0.3s cubic-bezier(0.37, 1.84, 0.49, 1.01);
  transition: transform 0.3s cubic-bezier(0.37, 1.84, 0.49, 1.01);
  transition: transform 0.3s cubic-bezier(0.37, 1.84, 0.49, 1.01), -webkit-transform 0.3s cubic-bezier(0.37, 1.84, 0.49, 1.01);
}
.project-nav .btn.btn-prev {
  left: 30px;
  left: calc((100vw - 600px) / 2 - 60px);
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
@media screen and (min-width: 992px) {
  .project-nav .btn.btn-prev {
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .project-nav .btn.btn-prev {
    left: 30px;
    left: calc((100vw - 900px) / 3);
  }
}
.project-nav .btn.btn-prev:hover i {
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}
.project-nav .btn.btn-next {
  right: 30px;
  right: calc((100vw - 600px) / 2 - 60px);
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
@media screen and (min-width: 992px) {
  .project-nav .btn.btn-next {
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .project-nav .btn.btn-next {
    right: 30px;
    right: calc((100vw - 900px) / 3);
  }
}
.project-nav .btn.btn-next:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.project-nav .btn.invisible {
  visibility: visible;
  opacity: 0;
}
.project-nav.on {
  visibility: visible;
  z-index: 1060;
}
.project-nav.on .btn.btn-prev {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.project-nav.on .btn.btn-next {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.project-nav.off {
  visibility: hidden;
  z-index: -1;
}
.project-nav.off .btn.btn-prev {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
.project-nav.off .btn.btn-next {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

#project-details table tr th,
#project-details table tr td {
  text-align: center;
}
#project-details table tr th:first-child,
#project-details table tr td:first-child {
  text-align: left;
}
#project-details table tr th:last-child,
#project-details table tr td:last-child {
  text-align: right;
}

@-webkit-keyframes toBack {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes toBack {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
@keyframes zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
.bgSlider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: url("../images/data-loading.gif") center center no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.bgSlider.ready {
  opacity: 1;
}
.bgSlider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  scale: 1.1;
}
.bgSlider .slide.on {
  opacity: 1;
  scale: 1;
  -webkit-animation: zoom 7.5s ease-out forwards;
          animation: zoom 7.5s ease-out forwards;
}
.bgSlider .slide.no-transition {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.bgSlider .slide.first.no-transition {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.countdown-bo {
  margin: 40px 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
}
.countdown-bo.fadeOut {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.countdown-bo .description {
  display: block;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
.countdown-bo .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 320px;
  margin: 0 auto;
}
.countdown-bo div.time {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 70px;
          flex: 1 0 70px;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  opacity: 0.8;
  border-radius: 3px;
  margin: 0 1px;
  padding: 10px 0 15px;
}
.countdown-bo div.time div.time_value {
  display: block;
  margin-bottom: -5px;
  font-weight: 900;
}
.countdown-bo div.time.days .time_value {
  opacity: 1;
}
.countdown-bo div.time.hours .time_value {
  opacity: 0.8;
}
.countdown-bo div.time.minutes .time_value {
  opacity: 0.6;
}
.countdown-bo div.time.seconds .time_value {
  opacity: 0.3;
}
.countdown-bo span {
  display: block;
  text-align: center;
  font-size: 12px;
  position: relative;
}

.pagemap > ul {
  padding-left: 0;
}
.pagemap ul {
  list-style-type: none;
  margin-bottom: 10px;
  padding-left: 0;
}
.pagemap ul ul {
  margin-top: 10px;
  /* list-style-type: disc; */
}
.pagemap ul ul li {
  font-weight: normal;
}
.pagemap ul > li {
  text-transform: uppercase;
  font-weight: bold;
}
.pagemap ul li {
  padding: 5px;
}
.pagemap ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}
.pagemap ul li a:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.pagemap h2 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 24px;
  text-transform: inherit;
}

.pricelist__list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.pricelist__list ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  border: 1px solid #E7E7E7;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 15px;
  padding-bottom: 5px;
  position: relative;
}
@media screen and (min-width: 560px) {
  .pricelist__list ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 50%;
            flex: 1 50%;
    max-width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .pricelist__list ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 30%;
            flex: 1 30%;
    max-width: 200px;
  }
}
.pricelist__list ul li .pricelist-item {
  background-color: #000;
}
.pricelist__list ul li .pricelist-item__subitems {
  display: inline-block;
  padding: 5px 15px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  top: 95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pricelist__list ul li .pricelist-item__subitems i {
  color: #c22a13;
}
.pricelist__list ul li .pricelist-item__subitems .items_no {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  margin-left: 5px;
}
.pricelist__list ul li .pricelist-item__image {
  height: 110px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 5px 5px 0 0;
  margin-bottom: 40px;
  background-color: #000;
}
.pricelist__list ul li .pricelist-item__title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 0 15px;
  font-size: 1.1em;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.pricelist__list ul li .pricelist-item__btn {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}
.pricelist__list ul li .pricelist-item__btn a {
  display: block;
  padding: 10px 20px;
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pricelist__list ul li .pricelist-item__btn a:hover {
  color: #c22a13;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (min-width: 992px) {
  .pricelist__list.pricelist__details {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pricelist__list.pricelist__details .header {
  padding-top: 10px;
  padding-bottom: 15px;
}
.pricelist__list.pricelist__details .header h2 {
  text-transform: none;
  text-align: center;
  font-weight: 700;
  font-size: 2em;
}
.pricelist__list.pricelist__details .return-bar {
  background-color: #f1f1f1;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .pricelist__list.pricelist__details .return-bar {
    text-align: right;
  }
}
.pricelist__list.pricelist__details .return-bar .btn--return {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #333;
  padding: 10px;
}
.pricelist__list.pricelist__details .return-bar .btn--return span {
  display: inline-block;
  padding-left: 15px;
}
.pricelist__list.pricelist__details .return-bar .btn--return i {
  color: #c22a13;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pricelist__list.pricelist__details .return-bar .btn--return:hover i {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
@media screen and (min-width: 560px) {
  .pricelist__list.pricelist__details li {
    -webkit-box-flex: 1;
        -ms-flex: 1 45%;
            flex: 1 45%;
    max-width: 100%;
    margin: 10px;
  }
}
.pricelist__list.pricelist__details li .pricelist-item__image {
  margin-bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pricelist__list.pricelist__details li .pricelist-item__image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
}
.pricelist__list.pricelist__details li .pricelist-item__image span {
  display: block;
  text-align: center;
  padding: 0 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.3em;
  color: #fff;
  position: relative;
  z-index: 2;
}
.pricelist__list.pricelist__details li .pricelist-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  height: 60px;
  font-size: 1.1em;
  line-height: 1.3em;
}

#content .box.glosowanie-buttons h3 {
  margin: 15px 0 20px;
  text-align: center;
}

#tabela-glosowania .table .table-header {
  font-size: 12px;
  color: #666;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  text-align: center;
}
#tabela-glosowania .table .table-header > [class^=col-], #tabela-glosowania .table .table-header > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}
#tabela-glosowania .table .table-content {
  overflow: hidden;
  margin: 10px 0;
  font-size: 13px;
}
#tabela-glosowania .table .table-content > [class^=col-], #tabela-glosowania .table .table-content > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}
#tabela-glosowania .table .table-content .td span {
  display: block;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .td span {
    padding: 15px;
  }
}
#tabela-glosowania .table .table-content .checkbox-td {
  text-align: center;
  background-color: #dedcdc;
  border-right: 2px #fff solid;
}
#tabela-glosowania .table .table-content .checkbox-td label {
  margin: 0 auto;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .checkbox-td label {
    margin-top: 15px;
  }
}
#tabela-glosowania .table .table-content .checkbox-td div.checkbox {
  margin: 0;
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox label:after {
  content: "";
  display: table;
  clear: both;
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox span.cr {
  position: relative;
  display: inline-block;
  border: 1px solid #666;
  border-radius: 0.25em;
  width: 20px;
  height: 20px;
  float: left;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .checkbox-td .checkbox span.cr {
    padding: 10px;
  }
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox .cr .cr-icon {
  position: absolute;
  font-size: 16px;
  line-height: 0;
  top: 50%;
  left: 20%;
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox label input[type=checkbox] {
  display: none;
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox label input[type=checkbox] + .cr > .cr-icon {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox label input[type=checkbox]:checked + .cr > .cr-icon {
  opacity: 1;
}
#tabela-glosowania .table .table-content .checkbox-td .checkbox label input[type=checkbox]:disabled + .cr {
  opacity: 0.5;
}
#tabela-glosowania .table .table-content .nr {
  text-align: center;
  background-color: #dedcdc;
  border-right: 2px #fff solid;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .nr {
    text-align: right;
    padding-top: 15px;
  }
}
#tabela-glosowania .table .table-content .nr span {
  padding: 15px 20px 15px 10px;
}
#tabela-glosowania .table .table-content .nazwa-projektu {
  background-color: #efefef;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
#tabela-glosowania .table .table-content .nazwa-projektu span {
  display: block;
  margin: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .nazwa-projektu span {
    text-align: left;
    margin: 0;
  }
}
#tabela-glosowania .table .table-content .nazwa-projektu a {
  text-decoration: none;
  color: #000;
  position: relative;
}
#tabela-glosowania .table .table-content .nazwa-projektu a span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#tabela-glosowania .table .table-content .nazwa-projektu a:hover span {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
#tabela-glosowania .table .table-content .nazwa-projektu .categories {
  padding-left: 10px;
  text-align: center;
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .nazwa-projektu .categories {
    text-align: left;
  }
}
#tabela-glosowania .table .table-content .nazwa-projektu .categories > i {
  display: inline-block;
  margin: 0 5px;
  color: #BDBDBD;
}
#tabela-glosowania .table .table-content .nazwa-projektu .categories ul {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
#tabela-glosowania .table .table-content .nazwa-projektu .categories ul li {
  display: inline-block;
  padding: 0 5px;
  border: 1px #ccc solid;
  border-radius: 3px;
  background-color: #f1f1f1;
  font-size: 11px;
}
#tabela-glosowania .table .table-content .koszt {
  background-color: #efefef;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #tabela-glosowania .table .table-content .koszt i {
    display: none;
  }
}
#tabela-glosowania .table .table-content .koszt span {
  display: block;
  margin: 15px 0;
}
#tabela-glosowania .table .table-content:hover .nr, #tabela-glosowania .table .table-content:hover .checkbox-td {
  background-color: #d2cfcf;
}
#tabela-glosowania .table .table-content:hover .nazwa-projektu,
#tabela-glosowania .table .table-content:hover .koszt {
  background-color: #e2e2e2;
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  overflow: hidden;
}

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background: #333;
  background: rgba(0, 0, 0, 0);
}

.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content {
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  background: #fff;
  cursor: auto;
  white-space: normal;
}

.featherlight .featherlight-inner {
  display: block;
}

.featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  line-height: 25px;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 0;
  padding: 0;
}

.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  border: 0;
}

.featherlight * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
.noscroll {
  overflow-y: hidden;
}

#gdpr__modal {
  position: fixed;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99999;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #gdpr__modal {
    max-width: 600px;
  }
}
#gdpr__modal .gdpr__doc {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  overflow-y: auto;
}
#gdpr__modal .gdpr__doc h5 {
  font-size: 2.3em;
  margin: 30px 0 0;
  padding: 0;
  text-align: center;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}
#gdpr__modal .gdpr__doc p.gdpr__description {
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
}
#gdpr__modal .gdpr__doc .gdpr__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
#gdpr__modal .gdpr__doc .main__wrapper {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  height: 100%;
}
#gdpr__modal .gdpr__doc .gdpr__buttons {
  margin-top: auto;
  text-align: center;
  margin-bottom: 15px;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  #gdpr__modal .gdpr__doc .gdpr__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#gdpr__modal .gdpr__doc .gdpr__buttons .btn {
  color: #000;
  border: 1px solid #000;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  display: block;
  width: 100%;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  #gdpr__modal .gdpr__doc .gdpr__buttons .btn {
    width: auto;
    margin: 0 5px;
  }
}
#gdpr__modal .gdpr__doc .gdpr__buttons .btn:hover, #gdpr__modal .gdpr__doc .gdpr__buttons .btn:focus {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
#gdpr__modal .gdpr__doc .gdpr__buttons .btn.accept {
  background: #C0CA33;
  border: 1px solid #C0CA33;
}
#gdpr__modal .gdpr__doc fieldset {
  margin-bottom: 10px;
  border: none;
}
#gdpr__modal .gdpr__doc fieldset .checkbox__wrapper {
  padding: 5px 45px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}
@media only screen and (min-width: 768px) {
  #gdpr__modal .gdpr__doc fieldset .checkbox__wrapper {
    margin: 10px;
  }
}
#gdpr__modal .gdpr__doc fieldset .checkbox {
  padding: 10px 5px;
}
#gdpr__modal .gdpr__doc fieldset label {
  font-size: 1.1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  padding-left: 5px;
}
#gdpr__modal .gdpr__doc fieldset legend {
  border: 0;
  padding: 0;
  font-size: 1.2em;
  padding: 5px 10px;
  background: #fff;
  margin: 0 auto;
  display: none;
}
#gdpr__modal .gdpr__doc fieldset span {
  display: block;
  font-size: 1em;
  padding: 10px 5px 10px 25px;
  border-top: 1px solid #ececec;
}

#gdpr__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 90;
}

#gdpr__form {
  height: 40%;
  overflow-y: auto;
}

.archiwumprojektow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.archiwumprojektow .archiwumprojektow-container {
  overflow: hidden;
}
.archiwumprojektow .archiwumprojektow-container .list {
  position: relative;
}
.archiwumprojektow .archiwumprojektow-container .list .project-list {
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.archiwumprojektow .archiwumprojektow-container .list::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: -1;
}
.archiwumprojektow .archiwumprojektow-container .list .wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}
@media screen and (min-width: 768px) {
  .archiwumprojektow .archiwumprojektow-container .list .wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (min-width: 992px) {
  .archiwumprojektow .archiwumprojektow-container .list .wrapper {
    padding: 0 10px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .archiwumprojektow .archiwumprojektow-container .list .wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .wrapper.winner .projectDataWrapper {
  background-color: #c5e1a5;
}
.archiwumprojektow .archiwumprojektow-container .list .wrapper.winner .projectDataWrapper span,
.archiwumprojektow .archiwumprojektow-container .list .wrapper.winner .projectDataWrapper i {
  color: #333 !important;
}
.archiwumprojektow .archiwumprojektow-container .list .wrapper.winner .box {
  background-color: #8bc34a;
  position: relative;
}
.archiwumprojektow .archiwumprojektow-container .list .wrapper.winner .box p {
  color: #333 !important;
}
.archiwumprojektow .archiwumprojektow-container .list .wrapper.winner .box .btn {
  background-color: #fff;
  color: #333;
  border: none;
}
.archiwumprojektow .archiwumprojektow-container .list .header h2 {
  display: block;
  font-size: 28px;
  margin: 20px 0 40px;
  padding-bottom: 20px;
  border-bottom: 1px #ccc solid;
  text-align: center;
}
.archiwumprojektow .archiwumprojektow-container .list .header h2 span {
  font-weight: 400;
  font-size: 14px;
  display: block;
  color: #000;
}
.archiwumprojektow .archiwumprojektow-container .list .title-box {
  margin: 0 0 30px;
  padding: 20px 45px;
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
.archiwumprojektow .archiwumprojektow-container .list .title-box .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .archiwumprojektow .archiwumprojektow-container .list .title-box .title {
    height: 34px;
    line-height: 34px;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box {
  position: relative;
  padding: 10px 20px;
  margin-bottom: 50px;
}
.archiwumprojektow .archiwumprojektow-container .list .box h3 {
  font-size: 18px;
  margin: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .archiwumprojektow .archiwumprojektow-container .list .box h3 a {
    font-size: 1em;
    line-height: 16px;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 10px;
  background: #ffffff;
  color: #4c4c4c;
  position: absolute;
  z-index: 20;
  top: -15px;
  right: 15px;
  left: 15px;
  border-radius: 3px;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8em;
}
.archiwumprojektow .archiwumprojektow-container .list .box .details .item i {
  margin-right: 5px;
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
  padding: 2px 0 2px 10px;
}
@media screen and (min-width: 768px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 3px 10px;
  color: #4c4c4c;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  max-width: 220px;
  font-size: 12px;
}
@media screen and (min-width: 480px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span {
    margin: 5px 0;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.numer-projektu, .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.numer-projektu, .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu, .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.obszar-dzialania {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media screen and (min-width: 480px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu, .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.obszar-dzialania {
    -webkit-box-flex: 3;
        -ms-flex: 3 0;
            flex: 3 0;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span .projectNumberLabel {
  display: none;
}
@media screen and (min-width: 1200px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span .projectNumberLabel {
    display: inline;
  }
}
@media screen and (min-width: 480px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.numer-projektu {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.numer-projektu {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50px;
            flex: 1 0 50px;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.numer-projektu i {
  padding-left: 10px;
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu {
  color: #dd2c00;
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu i {
  margin: 0 0 0 5px;
  color: #dd2c00 !important;
}
@media screen and (min-width: 480px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu i {
    display: none;
  }
}
@media screen and (min-width: 560px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.weryfikacja-projektu i {
    display: inline-block;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.numer-projektu i, .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.obszar-dzialania i {
  margin: 0 5px 0 0;
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 15%;
          flex: 1 0 15%;
}
@media screen and (min-width: 480px) {
  .archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span.edycja-projektu {
    text-align: right;
  }
}
.archiwumprojektow .archiwumprojektow-container .list .box .projectDataWrapper span em {
  font-style: normal;
}
.archiwumprojektow .archiwumprojektow-container .map {
  display: none;
}
@media screen and (min-width: 992px) {
  .archiwumprojektow .archiwumprojektow-container .map {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 60%;
            flex: 1 60%;
  }
}
.archiwumprojektow .leaflet-container a.leaflet-popup-close-button {
  top: 5px;
  right: 5px;
}
.archiwumprojektow .leaflet-popup-content {
  padding: 10px 0;
}
.archiwumprojektow .infowindow h4 {
  margin: 5px 0 5px;
}
.archiwumprojektow .infowindow h4 a {
  color: #2C2D33;
  text-decoration: none;
}
.archiwumprojektow .infowindow .location {
  display: block;
  color: #757575;
  font-size: 13px;
  padding: 5px 10px 5px;
  margin: 10px 0 0;
  border-radius: 5px;
  background-color: #f1f1f1;
}
.archiwumprojektow .infowindow .location i {
  margin-right: 5px;
}
.archiwumprojektow .infowindow p {
  font-size: 14px;
  line-height: 22px;
}
.archiwumprojektow .infowindow .btn {
  margin-top: 0;
  padding: 3px 10px;
  font-size: 12px;
}
.archiwumprojektow .filters {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1400px) {
  .archiwumprojektow .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.archiwumprojektow .filters .first-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.archiwumprojektow .filters .first-line .select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .archiwumprojektow .filters .first-line .select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    margin: 0 5px 5px;
  }
}
.archiwumprojektow .filters .second-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.archiwumprojektow .filters .second-line .select {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .archiwumprojektow .filters .second-line .select {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    margin: 0 5px 5px;
  }
}
.archiwumprojektow .no-results {
  text-align: center;
  padding: 0;
  text-transform: uppercase;
}
.archiwumprojektow .no-results span {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.2em;
  line-height: 1.4em;
  color: #616161;
  text-shadow: #e0e0e0 1px 1px 0;
  padding: 10px;
  margin: -10px 0 40px;
}
.archiwumprojektow .btnVisible {
  display: inline-block;
}
.archiwumprojektow .btnHidden {
  display: none;
}
.archiwumprojektow button.show-project-on-map {
  display: none;
}
@media screen and (min-width: 992px) {
  .archiwumprojektow button.show-project-on-map {
    display: inline-block;
  }
}