.dropdown-menu a.dropdown-item.apps[href="/apps"] {
	display: none !important;
}

body.ngs-portal-body .web-footer,
body.ngs-portal-body footer.web-footer,
body.ngs-portal-body .page-footer,
body.ngs-portal-body .powered-by,
body.ngs-portal-body > .navbar,
body.ngs-portal-body header.navbar,
body.ngs-portal-body .web-navbar {
	display: none !important;
}

html {
	scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
	html {
		overflow-y: scroll;
	}
}

.ngs-portal {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 20px 48px;
	color: #1f2933;
}

.ngs-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
	padding: 6px 12px;
	border: 1px solid #d9e1e8;
	border-radius: 8px;
	background: #f7faf9;
}

.ngs-brand {
	color: #17352f;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
}

.ngs-brand:hover {
	color: #17352f;
	text-decoration: none;
}

.ngs-topbar nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	flex-wrap: wrap;
}

.ngs-topbar nav a {
	color: #33434f;
	padding: 8px 10px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}

.ngs-topbar nav a:hover {
	background: #edf3f0;
	color: #17352f;
	text-decoration: none;
}

.ngs-topbar nav a.is-active {
	background: #17352f;
	color: #fff;
}

.ngs-topbar nav a.ngs-logout {
	margin-left: 8px;
	color: #64717c;
}

.ngs-topbar nav a.ngs-logout:hover {
	color: #17352f;
}

.ngs-hero {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	align-items: end;
	border-bottom: 1px solid #d9e1e8;
	padding-bottom: 18px;
	margin-bottom: 18px;
}

.ngs-hero h1 {
	margin: 0;
	max-width: 620px;
	font-size: clamp(28px, 3.2vw, 36px);
	line-height: 1.08;
	font-weight: 650;
	letter-spacing: 0;
}

.ngs-hero p {
	margin: 12px 0 0;
	max-width: 760px;
	color: #64717c;
	font-size: 16px;
	line-height: 1.45;
}

.ngs-customer,
.ngs-profile-summary {
	min-width: 240px;
	border-left: 4px solid #26635b;
	padding: 10px 0 10px 16px;
	background: #f7faf9;
}

.ngs-actions {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	max-width: 100%;
	margin: 0 0 22px;
	padding: 3px;
	border: 1px solid #d9e1e8;
	border-radius: 8px;
	background: #f7faf9;
	overflow-x: auto;
	white-space: nowrap;
}

.ngs-actions button,
.ngs-actions a {
	border: 0;
	background: transparent;
	color: #33434f;
	min-height: 34px;
	padding: 7px 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
	text-decoration: none;
}

.ngs-primary,
.ngs-secondary,
.ngs-icon-button {
	border: 0;
	background: #e8efec;
	color: #17352f;
	padding: 10px 16px;
	border-radius: 6px;
	font-weight: 650;
	cursor: pointer;
	text-decoration: none;
}

.ngs-actions button.is-active,
.ngs-actions a.is-active {
	background: #17352f;
	color: #fff;
}

.ngs-primary {
	align-items: center;
	background: #17352f;
	color: #fff;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
}

.ngs-primary[aria-busy="true"]::before {
	animation: ngs-spin .8s linear infinite;
	border: 2px solid rgba(255, 255, 255, .45);
	border-top-color: #fff;
	border-radius: 50%;
	content: "";
	height: 14px;
	width: 14px;
}

@keyframes ngs-spin {
	to { transform: rotate(360deg); }
}

.ngs-actions button:hover,
.ngs-actions a:hover,
.ngs-primary:hover,
.ngs-secondary:hover {
	text-decoration: none;
}

.ngs-actions button:hover,
.ngs-actions a:hover {
	background: #edf3f0;
	color: #17352f;
}

.ngs-actions button.is-active:hover,
.ngs-actions a.is-active:hover {
	background: #17352f;
	color: #fff;
}

.ngs-actions button:focus-visible,
.ngs-actions a:focus-visible,
.ngs-topbar a:focus-visible,
.ngs-primary:focus-visible,
.ngs-secondary:focus-visible,
.ngs-icon-button:focus-visible,
.ngs-record-toggle:focus-visible,
.ngs-record-download:focus-visible,
.ngs-form input:focus-visible,
.ngs-form select:focus-visible,
.ngs-form textarea:focus-visible {
	outline: 2px solid #6aa79d;
	outline-offset: 2px;
}

.ngs-secondary {
	background: #dfe9e5;
}

.ngs-form {
	display: grid;
	gap: 12px;
	padding: 14px;
	background: #f8faf9;
	border: 1px solid #d9e1e8;
	border-radius: 8px;
}

.ngs-form label {
	display: grid;
	gap: 5px;
	min-width: 0;
	font-size: 13px;
	font-weight: 650;
	color: #33434f;
}

.ngs-form input,
.ngs-form select,
.ngs-form textarea {
	width: 100%;
	min-width: 0;
	border: 1px solid #c7d1d9;
	border-radius: 6px;
	padding: 9px 10px;
	background: #fff;
	color: #17212b;
}

.ngs-form textarea {
	resize: vertical;
}

.ngs-check {
	display: flex !important;
	align-items: center;
	gap: 10px !important;
	min-width: 0;
	line-height: 1.2;
}

.ngs-check input[type="checkbox"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 1px solid #b8c7d1;
	border-radius: 5px;
	background-color: #fff;
	cursor: pointer;
	flex: 0 0 auto;
}

.ngs-check input[type="checkbox"]:checked {
	border-color: #17352f;
	background-color: #17352f;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.2 5.8 10 11 4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
}

.ngs-check input[type="checkbox"]:focus-visible {
	outline: 2px solid #6aa79d;
	outline-offset: 2px;
}

.ngs-primary:disabled {
	opacity: .65;
	cursor: wait;
}

.ngs-message {
	min-height: 24px;
	margin: 0;
	font-weight: 650;
}

.ngs-message:empty {
	display: none;
}

.ngs-password-help {
	margin: -2px 0 0;
	color: #64717c;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

@media (max-width: 540px) {
	.ngs-portal {
		padding: 24px 12px 48px;
	}

	.ngs-topbar {
		display: grid;
		gap: 12px;
		margin-bottom: 22px;
	}

	.ngs-topbar nav {
		justify-content: flex-start;
	}

	.ngs-topbar nav a.ngs-logout {
		margin-left: 0;
	}

	.ngs-hero {
		display: block;
	}

	.ngs-hero h1,
	.ngs-profile-page .ngs-hero h1 {
		font-size: 26px;
		line-height: 1.14;
	}

	.ngs-hero p {
		font-size: 15px;
	}

	.ngs-customer,
	.ngs-profile-summary {
		margin-top: 18px;
	}

	.ngs-form {
		padding: 14px;
	}
}

.ngs-login-signup {
	width: 400px;
	max-width: calc(100vw - 32px);
	margin: 16px auto 0;
	color: #64717c;
	font-size: 14px;
	line-height: 1.5;
}

.ngs-login-signup a {
	color: #17352f;
	font-weight: 750;
	text-decoration: none;
}

.ngs-login-signup a:hover {
	text-decoration: underline;
}
