/* Tooltip container */
.cjd_tooltip {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}

/* Tooltip text */
.cjd_tooltip .cjd_tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #0000009c;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 15px 15px 15px 0px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 80%;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

/* Tooltip arrow
  .cjd_tooltip .cjd_tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0%;
    margin-left: 0px;
    border-width: 10px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  } */

/* Show the tooltip text when you mouse over the tooltip container */
.cjd_tooltip:hover .cjd_tooltiptext {
  visibility: visible;
  opacity: 1;
}
