/* Back to top button */
.tooltip{
  position: relative;
  display: contents;
  border-bottom:0px !important;
  opacity:1 !important;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px !important;
  background-color: #cfeefa !important;
  color: #0e1b4d !important;
  text-align: left;
  border-radius: 6px;
  padding: 5px 8px;
  margin-left:10px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}