#g-above {
    background: $above-background;
    color: $above-text-color;
    
    // Container
    .g-container {
        padding-top: 4rem;
        padding-bottom: 4rem;
        @include breakpoint(mobile-only) {
          padding-top: 2rem;
          padding-bottom: 2rem;
        }        
    }

    .center-block {
        margin-left: auto;
        margin-right: auto;
    }

	// Background Image
    @if $above-background-image {
        background: $above-background url($above-background-image) top center no-repeat;
        background-size: cover;
        background-repeat: no-repeat;
    }    
}

@media print {
	#g-above {
		background: #fff !important;
		color: #000 !important;
	}
}