/**
 * Fluent Forms help "i" — match contact email/phone icon colors.
 * Absolute + optical nudge so the italic mark reads centered in the circle.
 */
body .ff-el-tooltip,
.ff-el-input--label .ff-el-tooltip {
  background-color: #FDE9F0;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-block !important;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  line-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
}

body .ff-el-tooltip:hover,
.ff-el-input--label .ff-el-tooltip:hover {
  color: inherit;
}

body .ff-el-tooltip svg,
.ff-el-input--label .ff-el-tooltip svg {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body .ff-el-tooltip::after,
.ff-el-input--label .ff-el-tooltip::after {
  content: "i";
  position: absolute;
  left: 50%;
  top: 50%;
  /* Italic glyphs optically sit right/low — nudge to true visual center */
  transform: translate(calc(-50% + 0.5px), calc(-50% - 1px));
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  color: #EE3E38;
  pointer-events: none;
  width: auto;
  height: auto;
}