@each $key, $value in $spacings {
	._mg-#{$key}   { margin: #{$value} !important; }
	._mgl-#{$key}  { margin-left: #{$value} !important; }
	._mgr-#{$key}  { margin-right: #{$value} !important; }
	._mgt-#{$key}  { margin-top: #{$value} !important; }
	._mgbt-#{$key} { margin-bottom: #{$value} !important; }
	._mgv-#{$key}  { margin-top: #{$value} !important; margin-bottom: #{$value} !important; }
	._mgh-#{$key}  { margin-left: #{$value} !important; margin-right: #{$value} !important; }
};

@each $breakpointName, $breakpointSize in $breakpoints {
	@media (min-width: $breakpointSize) {
		@each $key, $value in $spacings {
			._mg-#{$key}-#{$breakpointName}   { margin: #{$value} !important; }
			._mgl-#{$key}-#{$breakpointName}  { margin-left: #{$value} !important; }
			._mgr-#{$key}-#{$breakpointName}  { margin-right: #{$value} !important; }
			._mgt-#{$key}-#{$breakpointName}  { margin-top: #{$value} !important; }
			._mgbt-#{$key}-#{$breakpointName} { margin-bottom: #{$value} !important; }
			._mgv-#{$key}-#{$breakpointName}  { margin-top: #{$value} !important; margin-bottom: #{$value} !important; }
			._mgh-#{$key}-#{$breakpointName}  { margin-left: #{$value} !important; margin-right: #{$value} !important; }
		};
	};
};
