/* Tooltip container */
.cjd_tooltip {
    position: relative;
    display: inline-block;
    /* If you want dots under the hoverable text */
  }
  
  /* Tooltip text */
  .cjd_tooltip .cjd_tooltiptext {
visibility: hidden;
    width: 129px;
    background-color: #e3e3e3;
    color: #242424;
    text-align: center;
    padding: 2px 0px;
    border-radius: 6px;
    font-style: normal;
    line-height: 17px;
    position: absolute;
    z-index: 1;
    bottom: 104%;
    left: 36%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
font-weight:bold;
  }

.accordion {
  background-color: #c5c5c5;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
      background-color: #505050;
    color: #dbdbdb;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
  
  /* Tooltip arrow */
  .cjd_tooltip .cjd_tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #e3e3e3 transparent transparent transparent;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .cjd_tooltip:hover .cjd_tooltiptext {
    visibility: visible;
    opacity: 1;
  }