/* Bob Culver Tooltips 08.03.16 + ddcluker M-00262567 (Add logic for a second tooltip on a second VLP/VDP pricing field class) */
.pricing li span.tooltipPrice, .pricing li span.tooltipPrice2 {
    cursor: pointer;
}
.tooltipPrice .tooltips, .tooltipPrice2 .tooltips2 {
  position: relative;
  display: inline;
}
.tooltipPrice .tooltips span, .tooltipPrice2 .tooltips2 span {
  position: absolute;
  width: 250px;
  color: #000;
  background: #fff;
  height: auto;
  line-height: 15px;
  text-align: left;
  visibility: hidden;
  border-radius: 3px;
  bottom: 10px;
  opacity: .5;
  font-size: 12px;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 19px 2px rgba(0,0,0,0.31);
-moz-box-shadow: 0px 0px 19px 2px rgba(0,0,0,0.31);
box-shadow: 0px 0px 19px 2px rgba(0,0,0,0.31);
}
.tooltipPrice .tooltips span:after, .tooltipPrice2 .tooltips2 span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.tooltipPrice:hover .tooltips span, .tooltipPrice2:hover .tooltips2 span {
  visibility: visible;
  bottom: 7px;
  opacity: 1;
  left: 50%;
  margin-left: -164px;
  z-index: 999;
  transition: bottom 0.5s ease,opacity 0.75s ease;
}

/* ddcbobc 06.28.18 New Styles for Inventory New Featured page */
.inventory-featured-default .tooltipPrice:hover .tooltips span,
.inventory-featured-default .tooltipPrice2:hover .tooltips2 span {
  bottom: 28px;
}







