.wikpis-gallery-view {
  max-width: 1200px;
  margin: 0 auto;
  /* The Modal (background) */
  /* Modal Content */
  /* The Close Button */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
  /* On hover, add a black background color with a little bit see-through */
}
.wikpis-gallery-view__filter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.wikpis-gallery-view__filter label {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
}
.wikpis-gallery-view__select {
  display: flex;
  flex-direction: column;
}
.wikpis-gallery-view__select > select {
  height: 40px;
}
.wikpis-gallery-view__searcher {
  display: flex;
  flex-direction: column;
}
.wikpis-gallery-view__searcher > input {
  height: 40px;
}
.wikpis-gallery-view__posts-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .wikpis-gallery-view__filter {
    grid-template-columns: 1fr 1fr;
  }
  .wikpis-gallery-view__posts-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 425px) {
  .wikpis-gallery-view__filter {
    grid-template-columns: 1fr;
  }
  .wikpis-gallery-view__posts-container {
    grid-template-columns: 1fr;
  }
}
.wikpis-gallery-view__post {
  display: flex;
}
.wikpis-gallery-view__post > img {
  width: 100%;
  object-fit: cover;
}
.wikpis-gallery-view .animate {
  animation-name: renderGallery;
  animation-duration: 0.4s;
}
.wikpis-gallery-view .animate-reverse {
  animation-name: renderGallery;
  animation-direction: reverse;
  animation-duration: 0.4s;
}
@keyframes renderGallery {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
.wikpis-gallery-view .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.wikpis-gallery-view .modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
.wikpis-gallery-view .close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.wikpis-gallery-view .close:hover,
.wikpis-gallery-view .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.wikpis-gallery-view .mySlides {
  display: none;
}
.wikpis-gallery-view .mySlides > img {
  width: auto !important;
  max-width: 100%;
  max-height: 85vh;
  margin: 0 auto;
}
.wikpis-gallery-view .mySlides > video {
  max-width: 100%;
  max-height: 85vh;
  margin: 0 auto;
}
.wikpis-gallery-view .cursor {
  cursor: pointer;
}
.wikpis-gallery-view .prev,
.wikpis-gallery-view .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.wikpis-gallery-view .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.wikpis-gallery-view .prev:hover,
.wikpis-gallery-view .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

/*# sourceMappingURL=style.css.map */
