@use 'sass:map';
@use './../../base/functions' as *;
@use '../../base/maps/tokens' as *;

.feature-checkmark {
	width: var(--padding-medium);
	height: var(--padding-medium);
	position: relative;
	display: block;

	&::after {
		content: '\e910'; // icon-check
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		inset: 0;
		font-family: brandui-icons;
		font-size: var(--padding-large);
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		color: var(--action);
	}
}
