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

.cvz-tooltip {
  font-size: 1.3em;
  color: #b4802c;
  margin-left: 4px;
  cursor: pointer;
}

/* Tooltip text */
.cvz-tooltip .tooltiptext {
  visibility: hidden;
  width: 186px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  line-height: 1.1em;
  font-size: 14px;
}

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

.cvz-tooltip .tooltiptext {
  top: -1em;
  left: 2em;
}

.cvz-tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 1.6em;
  right: 100%; /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}
