/* ==================== Image Hotspot Container ==================== */

.digr_ihp_hotspot_container {
  position: relative;
}

.digr_ihp_hotspot_container img.digr_ihp_hotspot_main_img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.digr_ihp_hotspot_container .digr_tooltip_image_wrapper {
  position: relative;
  display: block;
  line-height: 0;
}

/* ==================== Hotspot Item Positioning ==================== */

.digr_ihp_hotspot_container .digr_ihp_image_hotspot_item {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  z-index: 9;
  overflow: visible !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

