ul.imageGallery {
  width: 100%;
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
ul.imageGallery img {
  width: 100%;
  transform: scale(0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}
ul.imageGallery li {
  margin: 10px;
  background-size: cover;
  filter: grayscale(0) brightness(100%);
  transition: filter 0.4s ease;
  cursor: pointer;
}
ul.imageGallery li:hover {
  filter: grayscale(0.8) brightness(85%);
  transition: filter 0.4s ease;
}
ul.imageGallery li:hover img {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.esg_onTop {
  z-index: 11111;
}
@supports (display: grid) {
  ul.imageGallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@supports not (display: grid) {
  ul.imageGallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
  }
  ul.imageGallery li {
    flex-basis: 250px;
    flex-grow: 1;
  }
}
.mod_easyshowgallery_modal {
  position: fixed;
  left: 0;
  top: 110vh;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.mod_easyshowgallery_modal .pfeil {
  position: absolute;
  top: calc( 50vh - 20px);
  height: 12vh;
  fill: transparent;
  stroke: #fff;
  z-index: 10000;
  stroke-width: 7px;
  cursor: pointer;
}
.mod_easyshowgallery_modal .pfeil.prev {
  left: 3vw;
  transform: rotate(180deg);
}
.mod_easyshowgallery_modal .pfeil.next {
  right: 3vw;
}
.mod_easyshowgallery_modal.open {
  top: 0vh;
}
.mod_easyshowgallery_modal.open .innermodal {
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(1);
}
.mod_easyshowgallery_modal .close-button {
  position: absolute;
  top: 5vh;
  right: 6vw;
  cursor: pointer;
  background-color: transparent;
}
.mod_easyshowgallery_modal .close-button svg.cross {
  width: 5vmin;
  min-width: 40px;
  stroke: #fff;
  stroke-width: 7px;
}
.mod_easyshowgallery_modal .innermodal {
  position: absolute;
  padding: 0px;
  border: 8px solid #fff;
  background-color: #fff;
  border-radius: 4px;
  background-clip: padding-box;
  outline: 0;
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mod_easyshowgallery_modal .innermodal img {
  max-width: 90vw;
  max-height: 90vh;
}
