/**
$max: fontsize for desktop in px
$lineHeight: lineheight for desktop in px
$min: fontsize for mobile in px
$marginBottom: factor of the bottommargin to the base of 40px on desktop --> ist umgestellt, war vorher marginTop
*/
.mono_image {
  height: 100%;
  width: 100%;
  max-width: 1134px;
  overflow: hidden;
}
.mono_image.small {
  height: 100%;
}
.mono_image.small .mono_image__gallery.small {
  height: 100%;
}
.mono_image__image.width-80 picture {
  display: flex;
  justify-content: center;
}
.mono_image__image.width-80 img {
  max-width: 80%;
}
.mono_image__gallery {
  display: flex;
  flex-direction: unset;
  gap: 20px;
}
.mono_image__gallery.small {
  flex-wrap: wrap;
}
.mono_image__gallery .mono_image__image {
  width: 33%;
  flex: 1 1 calc(33% - 20px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: fit-content;
}
.mono_image__gallery .mono_image__image img {
  object-fit: cover !important;
  max-width: 145px;
  margin: 0 auto;
}
.mono_image__modal-content {
  display: none;
}
.mono_modal .mono_image__modal-content {
  display: block;
}
.mono_image__modal-close {
  padding: 0;
  background: none;
  position: absolute;
  right: 0;
  top: -50px;
}
.mono_image__modal-close img {
  background: none;
  width: 25px;
  height: auto;
  transition: transform 250ms;
}
.mono_image__modal-close img:hover {
  transform: scale(1.2) rotate(45deg);
}
.mono_image__modal-description {
  margin-top: 10px;
}
.mono_image__modal-content {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
}
.mono_image__image {
  display: block;
}
.mono_image__image img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.mono_modal .mono_image__image {
  display: none;
}

.mono_col--25 .mono_image {
  height: 100%;
}
.mono_col--25 .mono_image__image {
  height: 100%;
}
.mono_col--25 .mono_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 6px;
}

.mono_col--33 .mono_image__image img {
  height: auto;
  width: 100%;
}

.mono_col--50 .mono_image__image img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.circle-button span:after {
  background-color: var(--possehl-blue);
  border-radius: 6px;
  width: 10px;
  height: 10px;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-slider .mono_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-slider .mono_image.active {
  opacity: 1;
  z-index: 1;
}

.image-slider .mono_image {
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-slider .mono_image.active {
  display: block;
  opacity: 1;
  z-index: 1;
}