#product-tooltip {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10001 !important;
  display: none;
  width: 450px;
  height: 600px;
  overflow: hidden;
  pointer-events: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#product-tooltip.show {
  opacity: 1;
}
@media (max-width: 959px) {
  #product-tooltip {
    width: calc(100vw - 20px);
    height: auto;
    max-height: 80vh;
    max-width: 450px;
    font-size: 14px;
    padding: 8px;
  }
}
#product-tooltip > * {
  transform: scale(0.8);
  transform-origin: top center;
  width: 125%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 959px) {
  #product-tooltip > * {
    height: auto;
  }
}
@media (min-width: 960px) {
  #product-tooltip > * {
    height: 125%;
  }
}
#product-tooltip table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
#product-tooltip table tr td {
  padding: 5px;
  border: none;
}
#product-tooltip table tr td img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
#product-tooltip p, #product-tooltip h1, #product-tooltip h2, #product-tooltip h3, #product-tooltip h4, #product-tooltip h5, #product-tooltip h6, #product-tooltip div {
  text-align: center;
}
#product-tooltip img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}/*# sourceMappingURL=tooltip.css.map */