/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 40:0 Unexpected "<"

**/
<style>
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
 visibility: hidden;
  width: 170px;
  font-size: small;
  color: red;
  text-align: center;
  background-color: antiquewhite;
  border-radius: 6px;
  font-style: italic;
  
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  bottom: 86%;
  left: 24%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */

  
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
</style>