/* tooltip.css and add js for tooltip */
.custom-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-tooltip .tooltiptext {
  visibility: hidden;


  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  background-color: #fff;
  color: #102d4f;
  text-align: center;
  border-radius: 4px;
  padding: 5px 5px;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
  font-weight: 400;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-top: 0px;
  margin-left: -60px;
  width: 151px
}

.custom-tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.custom-tooltip:hover .tooltiptext,
.custom-tooltip.clicked .tooltiptext {
  visibility: visible;
}

.tooltiptext a{
  color:#102d4f;
  font-weight: bold;
}
.tooltiptext a:hover{
  color:#102d4f;
  
}

/* Example html <div class="custom-tooltip">
  le@gmail.com&nbsp;
  <div class="tooltiptext">
    Send OTP to Verify
    <a href="https://www.google.com" ><i class="far fa-paper-plane mr-2"></i>Send</a>
  </div>
</div> */