.zoom-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  background-color: rgba(0, 0, 0, 0.4);

}
.zoom-background {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
}

.image-big {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.zoom-close {
  position: absolute;
  top: 0px;
  right: 40px;
  color: white;
  font-size: 60px;
  transition: transform 0.4s;
  cursor: pointer;

}

.zoom-close:hover {
    color: #2880a8;
}