
.info-tooltip-wrapper {
    position: relative;
  }
  .popover-arrow-downside{
    border-top-color: transparent !important;
    border-bottom-color: var(--border-color-base) !important;
    border-bottom-width: 0.6rem !important;
  }
  .popover-arrow-downside::after
  {
    border-top-color: transparent !important;
    border-bottom-color: var(--bg-color-lighten) !important;
    border-bottom-width: 0.6rem !important;
    position: relative !important;
    top: -5px !important;
  }
  
  .info-tooltip-wrapper .reference {
    margin-left: 0.4rem;
    cursor: pointer;
  }
  
  .info-tooltip-wrapper .reference .info-icon {
    font-size: 1.2rem;
    font-style: normal;
    display: block;
  }
  
  .info-tooltip-wrapper .tooltip-content {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: var(--font-weight-regular);
    position: absolute;
    left: 0.9rem;
    bottom: 0;
    z-index: 10;
    padding: 1rem 3.2rem 1rem 1.6rem;
    border-radius: 0.8rem;
    background-color: var(--bg-color-lighten);
    transform: translate(-50%, -2.4rem);
    word-spacing: 0;
    box-shadow: 0 0.2rem 1.2rem 0 rgba(0, 0, 0, .1);
    display: none;
  }
  
  .info-tooltip-wrapper .tooltip-content .popover-arrow {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    filter: drop-shadow(0 0.2rem 1.2rem rgba(0, 0, 0, 0.03));
    left: 50%;
    border: solid transparent 0.6rem;
    bottom: -0.6rem;
    border-bottom-width: 0;
    border-top-color: var(--border-color-base);
    transform: translateX(-0.6rem);
  }
  
  .info-tooltip-wrapper .tooltip-content .popover-arrow::after {
    content: " ";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: solid transparent 0.6rem;
    margin-left: -0.6rem;
    bottom: 0.1rem;
    border-bottom-width: 0;
    border-top-color: var(--bg-color-lighten);
  }
  
  .info-tooltip-wrapper .tooltip-content .close-button {
    background: url(https://static.personalcreations.com/personalcreations/siteimages/close-icon.svg) transparent no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    position: absolute;
    right: 1.6rem;
    top: 1.5rem;
  }