.panzoom-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.panzoom-image {
  width: 100%;
  height: auto;
  transform-origin: 0 0;
  border: 2px solid #000000;
}

.panzoom-controls {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panzoom-controls button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding: 0;
  margin: 0 5px;
  background: #f3f5f3;
  border: 0;
  color: #231f20;
  font-weight: 700;
  padding-top: 2px;
}

.panzoom-controls button:hover {
  background-color: #f3f5f3;
}
.pan-img-wrapper {
  border: 15px solid #000000;
}
@media (min-width: 1200px) {
  .pan-img-wrapper {
    border: 30px solid #000000;
    /* height: max-content !important; */
  }
  .panzoom-controls {
    right: 50px;
    bottom: 50px;
  }
}
