.tooltip-list-wrap > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tooltip-list-item {
	display: flex;
	flex-direction: row;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #242C3A;
}

.tl-item-icon img,
.icon-info img,
img.icon-sparkles {
	max-width: 16px;
	max-height: 16px;
}

.tl-item-text {
	padding-top: 4px;
	padding-left: 8px;
	flex-grow: 1;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.tl-item-text p {
	margin-bottom: 0;
}

.sh-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.sh-tooltip .tooltiptext {
  font-family: 'Inter', initial;
  font-size: 13px;
  visibility: hidden;
  /* width: 120px; */
  width: 160px;
  background-color: #172B4D;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}

.sh-tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #172B4D transparent transparent transparent;
}

.sh-tooltip:hover .tooltiptext {
  visibility: visible;
}