.images-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  /* justify-content: center; */
  overflow-y: auto;
}

.images-wrap .image {
  width: calc(800px * 0.2);
  height: calc(480px * 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #DDD;
  position: relative;
}

.images-wrap .image.deleted_at {
  filter: grayscale(1);
  border: 1px solid #000;
}

.images-wrap .image .click {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
