.photoFullscreen {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: none;
  flex-direction: column;

  background: rgba(0, 0, 0, 0.96);
}

.photoFullscreen.open {
  display: flex;
}

.fullscreenPhotoWrap {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.fullscreenTrack {
  height: 100%;
  display: flex;
}

.fullscreenTrack img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
}

.fullscreenClose {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 20;
  display: flex;
  align-items: center;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);
  color: #fff;

  font-size: 30px;
  line-height: 1;
}

.fullscreenTapZone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  z-index: 10;

  border: none;
  background: transparent;
}

.fullscreenLeft {
  left: 0;
}

.fullscreenRight {
  right: 0;
}

.fullscreenThumbs {
  display: flex;
  gap: 8px;

  padding: 10px 12px 18px;
  overflow-x: auto;
}

.fullscreenThumb {
  flex: 0 0 auto;

  width: 58px;
  height: 58px;

  border-radius: 10px;
  object-fit: cover;

  opacity: 0.55;
  border: 2px solid transparent;
}

.fullscreenThumb.active {
  opacity: 1;
  border-color: #fff;
}