.business-help-icon {
  display: inline;
  margin-left: 3px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 575px) {
  .business-help-icon {
    position: relative;
    top: -8px;
  }
}
.business-help-icon .business-help-icon-svg svg {
  width: 13px;
  height: 13px;
  fill: #999;
  vertical-align: -1px;
}
.business-help-icon .business-help-tooltip {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.15s linear, visibility 0.15s linear;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  width: 355px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 16px 18px;
  z-index: 1070;
  text-align: left;
  font-size: 13px;
  font-weight: normal;
  cursor: default;
}
.business-help-icon .business-help-tooltip::after,
.business-help-icon .business-help-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  border: solid transparent;
}
.business-help-icon .business-help-tooltip::after {
  border-width: 7px;
  margin-left: -7px;
  border-top-color: #fff;
}
.business-help-icon .business-help-tooltip::before {
  border-width: 8px;
  margin-left: -8px;
  border-top-color: #ddd;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-header {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  letter-spacing: normal;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body p {
  margin: 0 0 10px;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body p:last-child {
  margin-bottom: 0;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body a {
  color: #B19F6F;
  font-size: 13px;
  text-decoration: underline;
  text-transform: none;
  letter-spacing: normal;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body a:hover {
  color: #8A7C56;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body a.email-link {
  color: #555;
  text-decoration: none;
}
.business-help-icon .business-help-tooltip .business-help-tooltip-body a.email-link:hover {
  color: #B19F6F;
  text-decoration: none;
}
.business-help-icon:hover .business-help-tooltip {
  visibility: visible;
  opacity: 1;
}
.business-help-icon .business-help-tooltip.visible {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 575px) {
  #content-site-index .business-help-icon,
  #content-site-pricing .business-help-icon {
    top: auto;
  }
}
