.photo-areas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: flex;
  touch-action: manipulation;
}
.photo-area {
  flex: 1;
  height: 100%;
  z-index: 16;
}
.photo-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 4px 0 0 0;
  margin: 0;
  line-height: 1;
  pointer-events: none;
}
.photo-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #DDDDDD;
  transition: background .15s;
}
.photo-dot.active {
  background: #2189FF;
}
