.tooltip-parent {
	background-image: url("/images/svg/help.svg");
	height: 24px;
	width: 24px;
	position: relative;
}
.tooltip-parent .tooltip-body {
	color: #0C1F14;
	visibility: hidden;
	max-width: 305px;
	width: max-content;
	background-color: #D1E8D5;
	border-radius: 20px;
	padding: 16px 20px;
	position: absolute;
	opacity: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	transition: opacity 0.3s;
	z-index: 100;
}
.tooltip-parent .tooltip-body .tooltip-arrow {
	background: url("/images/svg/tooltip-arrow.svg") no-repeat;
	width: 21px;
	height: 21px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.tooltip-parent .tooltip-body.active {
	visibility: visible;
	opacity: 1;
}
@media (max-width: 1439px) {
	.tooltip-parent .tooltip-body {
		font-size: 16px;
		font-weight: 400;
		line-height: 28px;
	}
}