.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.fullImgC {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  max-width: 90vw;
  max-height: 80vh;
}

.modal img {
  display: block;
  max-height: 80vh;
  max-width: 100;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.showFullImg {
  opacity: 1;
  pointer-events: all;
}

.zoomin {
  cursor: zoom-in;
}

.zoomout {
  cursor: zoom-out;
}