/*-------- padding and margins -------*/
@each $breakpoint in map-keys($grid-breakpoints) {
	@include media-breakpoint-up($breakpoint) {
		$infix: breakpoint-infix($breakpoint, $grid-breakpoints);

		@each $prop, $abbrev in (margin: m, padding: p) {
			@each $size, $length in $spacers {
				.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important}
				.#{$abbrev}t#{$infix}-#{$size}{
					#{$prop}-top: $length !important;
				}
				.#{$abbrev}r#{$infix}-#{$size}{
					#{$prop}-right: $length !important;
				}
				.#{$abbrev}b#{$infix}-#{$size}{
					#{$prop}-bottom: $length !important;
				}
				.#{$abbrev}l#{$infix}-#{$size} {
					#{$prop}-left: $length !important;
				}
				.#{$abbrev}y#{$infix}-#{$size}{
					#{$prop}-top: $length !important;
					#{$prop}-bottom: $length !important;
				}
				.#{$abbrev}x#{$infix}-#{$size} {
					#{$prop}-left: $length !important;
					#{$prop}-right: $length !important;
				}
			}
		}

		// margin auto values
		.m#{$infix}-auto { margin: auto !important; }
		.mt#{$infix}-auto{
			margin-top: auto !important;
		}
		.mr#{$infix}-auto{
			margin-right: auto !important;
		}
		.mb#{$infix}-auto{
			margin-bottom: auto !important;
		}
		.ml#{$infix}-auto{
			margin-left: auto !important;
		}
		.mb#{$infix}-auto{
			margin-bottom: auto !important;
		}
		.ml#{$infix}-auto{
			margin-left: auto !important;
		}
		.my#{$infix}-auto{
			margin-top: auto !important;
			margin-bottom: auto !important;
		}
		.mx#{$infix}-auto{
			margin-left: auto !important;
			margin-right: auto !important;
		}
	}
}
.pt-10 {
	padding-top: 8rem !important;
}
/*-------- padding and margins -------*/