.embla.embla--property-gallery {
  max-width: 100%;
  margin: auto;
  --slide-size: 100%;
}
.embla--property-galery .embla__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.embla--property-galery .embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  width: 100%;
  align-items: center;
}

.embla--property-galery .embla__slide {
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.embla--property-gallery .embla__slide__number {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.embla__slide__number{
  max-height: 80vh;
}
.embla--property-galery .embla__dots {
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  padding: 12px;
}
.embla--property-galery .embla__dot {
  background-color: white;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.embla--property-galery .embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
}
.embla--property-galery .embla__dot--selected:after {
  background-color: black;
}
