@charset "utf-8";

/* LISTS BULLETS */
	.lists-bullets {
		display: grid;
		grid-gap: 1.6rem;
		list-style: none;
		}
	.lists-bullets-item {
		padding-left: 3rem;
		position: relative;
		}
	.lists-bullets-item::before {
		content: '\f111';
		display: block;
		font-family: 'Font Awesome 6 Pro';
		font-weight: 900;
		font-size: var(--mywp-ts-text-sub-3);
		font-style: normal;
		font-variant: normal;
		left: 0;
		position: absolute;
		text-align: left;
		text-rendering: auto;
		top: 0.3rem;
		}
	.lists-bullets-item.lists-bullets-f-t::before {
		top: 1rem;
		}
	.lists-bullets-header {
		font-size: var(--mywp-ts-head-5);
		font-weight: var(--mywp-heavy);
		}
	.lists-bullets-header + .lists-bullets-text {
		margin-top: 0.5rem;
		}
	.lists-bullets-text > p {
		margin: 0;
		}
	@media (min-width: 40em) {
		.lists-bullets.lists-columns-2 {
			grid-gap: 1.6rem 4.8rem;
			grid-template-columns: repeat(2, 1fr);
			}
		.lists-bullets-item::before {
			top: 0.6rem;
			}
	}