HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/wingssprayer.komma.pro/resources/sass/5-Components/_components.usp.scss
.c-usp {
	display: flex;
	flex-wrap: wrap;
	margin: space(-1) space(-3);
	list-style: none;
	color: palette(tertiary, 400);
}


.c-usp__item {
	@include font-size(l);
	@include font-weight(bold);
	flex: 1 0 calc(#{column(3,9)} - #{double(space(3))});
	min-width: 200px; // protect squashing the text
	margin: space(1) space(3);
	display: flex;
	align-items: center;

	&::before {
		content: '';
		margin-right: space(3);
		flex: none;
		width: 24px;
		height: 24px;
		background-image: url(/img/icons/check-colored.svg);
	}
}


.c-usp--on-dark {
	.c-usp__item {
		color: palette(primary);

		&::before {
			background-image: url(/img/icons/check-white.svg);
		}
	}
}


.c-usp--alt {
	color: palette(primary, 700);

	&::before {
		background-image: url(/img/icons/check-half-colored.svg);
	}

	.c-usp__item {
		margin-bottom: space(2);
	}
}


.c-usp--vertical {
	flex-direction: column;
}