ul.wp-block-list {
    margin: 20px 0 0;
}

.is-style-simple-list {
    list-style-type: none;
}

.is-style-default li {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	color: var(--wp--preset--color--midnight-blue);
}

.is-style-default li::before {
	content: '';
	background: var(--wp--preset--color--blue);
	width: 5px;
	height: 5px;
	position: absolute;
	top: 13px;
	left: 0;
	border-radius: 50%;
}

.is-style-circle-checkmark li {
    display: block;
	position: relative;
	padding-left: 45px;
    margin-bottom: 15px;
	color: var(--wp--preset--color--midnight-blue);
}

.is-style-circle-checkmark li::before {
	content: '';
	background: url("../images/red-circle.svg") no-repeat center;
	width: 39px;
	height: 39px;
	position: absolute;
	top: 0;
	left: 0;
}

.is-style-circle-arrow li {
    display: block;
	position: relative;
	padding-left: 90px;
    margin-bottom: 15px;
	color: var(--wp--preset--color--midnight-blue);
    min-height: 55px;
}

.is-style-circle-arrow li::before {
	content: '';
	background: url("../images/list-arrow.svg") no-repeat center;
	width: 55px;
	height: 55px;
	position: absolute;
	top: 0;
	left: 0;
}

.is-style-blue-checkmark li {
    display: block;
	position: relative;
	padding-left: 55px;
	line-height: 23px;
	margin-bottom: 25px;
    color: var(--wp--preset--color--midnight-blue);
}

.is-style-blue-checkmark li::before {
	content: '';
	background: url("../images/circle-check.svg") no-repeat center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
}