//
// Main
//


body {
	background-color: var(--kt-page-bg);
}

// Font color from Content background color
.text-page-bg {
	color: $page-bg;
}

.page-bg {
	background-color: var(--kt-page-bg) !important;
}

// Nav custom
.nav-custom {
    .nav-link {
        color: $white !important;
        opacity: 0.7;

        &.active {
            opacity: 1;
            border-bottom: 2px solid $white !important;
        }

		&:hover {
            opacity: 1;
            border-bottom-color: transparent !important;
        }        
    }
}

// Desktop Mode
@include media-breakpoint-up(lg) {
	// Containers
	.container,
	.container-xxl,
	.container-fluid {
		padding: 0 get($content-spacing, desktop);
	}

	// Wrapper
	.wrapper {
		padding-left: get($aside-config, width, desktop);		 

		// Fixed header mode
		.header-fixed[data-kt-sticky-header="on"] & {
			padding-top: get($header-config, general, height, default);
		}
	}
}

// Tablet & mobile modes
@include media-breakpoint-down(lg) {
	// Containers
	.container,
	.container-xxl,
	.container-fluid {
		max-width: none;
		padding: 0 get($content-spacing, tablet-and-mobile);
	}	
}
