.image_slideshow_dialog {
  position: fixed;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: rgb(10, 10, 10);
  font-size: 2rem;
  display: flex;
  justify-content: center;
}

.image-group3 {
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  display: grid;
  gap: 10px;
  margin: 0 10%;
}

.image-group3 img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
}

.cls-1 {
  fill: none;
  stroke: #0a0a0a;
  stroke-miterlimit: 10;
  stroke-width: 0.4rem;
}

.cls-2 {
  fill: #0a0a0a;
  stroke-width: 0px;
}

.cls-1-white {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-miterlimit: 10;
  stroke-width: 0.4rem;
}

.cls-2-white {
  fill: rgb(255, 255, 255);
  stroke-width: 0px;
}

#arrow-slider {
  fill: rgb(10, 10, 10);
  width: 2rem;
  height: 2rem;
}

.image_slideshow_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.image_slideshow_image:hover {
  transform: scale(1);
  z-index: 1;
}

.image_slideshow_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 1;
}

.image_slideshow_arrow {
  bottom: 0;
  position: fixed;
  padding: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.image_slideshow_arrow:hover {
  transform: scale(1.2);
}

.image_slideshow_close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.image_slideshow_close:hover {
  transform: scale(1.2);
}
