@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 110%;
  }
  100% {
    scale: 100%;
  }
}

#podziekowanie * {
    color: white !important;
}

#preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    background-color: white;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#preloader.active {
    visibility: visible;
    opacity: 1;
}

#preloader img {
    width: 220px;
    height: auto;
      animation: zoom-in-zoom-out 1s ease infinite;
}

.main-content  {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}



 #search-results, #search-section {
    display: none;
}

.section, .full {
    float: left;
    width: 100%;
    clear: both;
}

.wrapper {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    width: 100%;
    padding: 9px;
    display: flex;
    flex-wrap: wrap;
}

.col {
    width: 100%;
    padding: 9px;
}

@media screen and (max-width: 1920px) {
    .wrapper {
        max-width: 1600px;
    }
}

@media screen and (max-width: 1600px) {
    .wrapper {
        max-width: 1320px;
    }

}