.tooltipSlider {
    position: relative;
    margin-left: -5px;
    margin-bottom: 8px;
    display: inline-block;
    margin-right: -5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .tooltiptext {
    visibility: hidden;
    width: 200px;
    font-weight: normal;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 15;
    bottom: 150%;
    /* Position the tooltip above the text */
    left: 50%;
    margin-left: -105px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
  }
  
  .tooltipSlider:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  .tooltipRun {
    position: relative;
    margin-left: 5px;
    margin-bottom: 8px;
    margin-top: -8px;
    display: inline-block;
    margin-right: -5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .tooltipRun:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  .informationIcon {
    margin: 0;
  }