

        @media (min-width: 1025px) {
            .main-nav-container {
                width: 100% !important;
            }
            .enabled-sticky-primary-menu #main-nav.fixed .container {
    max-width:  100% !important;
}
        }
        
        .dashboard-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 24px;
			margin-bottom: 32px;
		}
		.dashboard-card {
			background: #fff;
			border-radius: 4px;
			box-shadow: 0 1px 4px rgba(0,0,0,0.06);
			border-top: 8px solid;
			padding: 0;
			display: flex;
			flex-direction: row;
			overflow: hidden;
			min-height: 210px;
		}
		.dashboard-card .icon-box {
			flex: 0 0 110px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: #f7f7f7;
			min-height: 100%;
			min-width: 110px;
			font-size: 64px;
			border-right: 1px solid #eee;
		}
		.dashboard-card .card-content {
			padding: 18px 18px 18px 18px;
			flex: 1 1 auto;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}
		.dashboard-card .card-title {
			font-size: 18px;
			font-weight: bold;
			margin-bottom: 10px;
			color: #222;
		}
		.dashboard-card ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}
		.dashboard-card ul li {
			display: flex;
			align-items: center;
			font-size: 15px;
			margin-bottom: 7px;
		}
		.dashboard-card ul li:last-child {
			margin-bottom: 0;
		}
		.dashboard-card ul li i {
			margin-right: 8px;
			font-size: 17px;
			width: 20px;
			text-align: center;
		}
		.dashboard-card ul li a {
			color: #222;
			text-decoration: none;
			flex: 1;
		}
		.dashboard-card.blue { border-top-color: #2962b7; }
		.dashboard-card.green { border-top-color: #2bb673; }
		.dashboard-card.orange { border-top-color: #f57c1f; }
		.dashboard-card.purple { border-top-color: #7c3fa0; }
		@media (max-width: 900px) {
			.dashboard-grid { grid-template-columns: 1fr; }
		}