.tooltip-price {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black; */
  margin-left: 5px;
}

.tooltip-price .tooltiptext {
  visibility: hidden;
  width: 10rem;
  background-color: white;
  color: black;
  text-align: center;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  border-color: black;
  padding: 1rem .5rem;
  font-size: 14px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip-price.active .tooltiptext {
  visibility: visible;
}

@media only screen and (min-width: 769px) {
  .tooltip-price:hover .tooltiptext {
    visibility: visible;
  }
}

@media only screen and (max-width: 768px) {
  .tooltip-price .tooltiptext {
    width: 7rem;
    left: 35%;
  }
}

@media only screen and (max-width: 480px) {
  .tooltip-price .tooltiptext {
    width: 5rem;
    left: 10%;
  }
}



