/* Help icon (uses theme colors & radius) */
.help-tip{
    /* display:inline-flex; align-items:center; justify-content:center; */
    /* width: 22px; height: 22px; */
    /* border-radius: 50%; */
    /*font-weight: 700; */
    /*font-size: 13px;*/
    /*line-height: 1; */
    /* cursor: help; */
    /*position: relative; */
}

.help-tip svg,
.help-tip svg path {
    fill: initial !important;   /* restore original fill */
    stroke: initial !important; /* restore original stroke */
    background: #fff;
}

.help-popover {
    position: absolute; /* your original, JS will override to fixed inline */
    z-index: 2147483647;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

/* Let JS/Resizer set height; keep width fluid */
.help-popover iframe {
    display: block;
    width: 100%;
    border: 0;
}

