.fl-module.fl-module-list-box .fl-module-content{
	margin-top: 0.5rem;
}

.list-box-holder {
	border-radius: var(--border-radius);
	border: 3px solid rgba(113, 184, 180, 0.24);
	padding: 1.5rem;
}

.list-box-holder h3 {
	margin: 0 0 1rem;
	font-size: var(--text-size-300);
	font-weight: 700;
}

.list-box-holder ul {
	margin: 0;
	padding: 0;
	--icon-size: 20px;
	list-style: none;
	counter-reset: check;
}

.list-box-holder ul li {
	margin: 0 0 1rem;
	padding: 0 0 0 2rem;
	list-style: none;
	position: relative;
	line-height: 1.2;
	text-wrap: pretty;
}

.list-box-holder ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: var(--icon-size);
	width: var(--icon-size);
	background-image: url("/wp-content/themes/mitchell-digital-theme/assets/icons/APS-Icon-Check.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}


.list-box-holder.icon-arrow ul li::before {
	background-image: url("/wp-content/themes/mitchell-digital-theme/assets/icons/APS-Icon-Arrow-Right.png");
}

.list-box-holder.icon-cross ul li::before {
	background-image: url("/wp-content/themes/mitchell-digital-theme/assets/icons/APS-Icon-Cross.png");
}