@each $key, $value in $width_height {
	.#{$atom-prefix}w-#{$key} { width: #{$value} !important; }
};

@each $breakpointName, $breakpointSize in $breakpoints {
	@media (min-width: $breakpointSize) {
		@each $key, $value in $width_height {
			.#{$atom-prefix}w-#{$key}\:#{$breakpointName} { width: #{$value} !important; }
		};
	};
};
