[class*=toolbelt-cols] {

	display: flex;
	flex-wrap: wrap;
	margin: var( --toolbelt-spacing ) calc( var( --toolbelt-spacing ) * -1 );

	> * {

		flex-grow: 1;
		width: 100%;
		box-sizing: border-box;

	}

}

.toolbelt-cols-1 > * {

	// Covered in the default styles.

}

.toolbelt-cols-2 > * {

	width: 50%;

}

.toolbelt-cols-3 > * {

	width: 33.3333%;

}

.toolbelt-cols-4 > * {

	width: 25%;

}

.toolbelt-cols-5 > * {

	width: 20%;

}