#helpXXX {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border-color: var(--tlp-dark-color);
    background: var(--tlp-dark-color) !important;
}

.help-popup {
    cursor: pointer;
    position: fixed;
    z-index: 1000;
    right: 3em;
    bottom: 3em;


  }

  .help-popup .btn {
      background-color: #555;
  }

  .help-popup div {
      padding-left: 24px;
  }

  .help-popup p {
      padding-left: 24px;
      padding-top: 4px;
      padding-bottom: 4px;
      margin-bottom: 0px;
  }
  
  /* The actual popup (appears on top) */
  .help-popup .help-popuptext {
    visibility: hidden;
    width: 257px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -17em;
    text-align: left;
  }

  .help-popup .help-popuptext .dropdown-item {
    padding:.25rem 0.5rem;
    width: 140px;
  }

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.help-popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }