/* input(350,2): run-time error CSS1019: Unexpected token, found '}' */
/* open-iconic is loaded separately in App.razor to avoid render-blocking @import */

/*html, body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}*/

/* DM Sans font override — toggled via _useDmSansFont in App.razor.
   :where() wraps the exclusions so their specificity is zero, giving a total of 0,1,1.
   This lets DevExtreme / DevExpress CSS (icon fonts, report designer) override naturally
   without needing !important hacks. Icon font elements are still excluded by :not(). */
body.font-dm-sans,
body.font-dm-sans *:where(:not([class*="dx-icon"]):not([class*="dxbl-image"]):not([class*="oi-"]):not([class*="oi "]):not(.oi):not([class*="mud-icon"]):not([class*="fa-"]):not([class*="fa "])) {
	font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}
body.font-dm-sans code,
body.font-dm-sans pre,
body.font-dm-sans .dash-date-val,
body.font-dm-sans .dash-note-date {
	font-family: 'DM Mono', monospace;
}

.dxbl-gridlayout-root {
	background-color: transparent;
}

/* Dashboard grid-stack tile container */
.grid-stack-item-content {
	box-shadow: none;
	transition: box-shadow 0.3s ease;
	border-radius: 0;
	background: transparent;
}
	.grid-stack-item-content:hover .card {
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
	}

/* Dashboard card styling — POC-inspired */
.grid-stack-item-content .card {
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
	background: white;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.18s, transform 0.18s;
	animation: dashFadeIn 0.25s ease both;
}
.grid-stack-item-content .card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

@keyframes dashFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.grid-stack-item-content .card-header {
	background: transparent;
	border-bottom: none;
	padding: 13px 15px 0;
	margin-bottom: 11px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: #0a3d62;
	display: flex;
	align-items: center;
	gap: 8px;
}
.grid-stack-item-content .card-header::before {
	content: '';
	width: 3px;
	height: 16px;
	border-radius: 2px;
	background: #d1dce8;
	flex-shrink: 0;
}

/* Header accent colours and card tints by tile content */
.grid-stack-item-content .card-header.hdr-risk::before { background: #00a896; }
.grid-stack-item-content .card-header.hdr-tasks::before { background: #c97c00; }
.grid-stack-item-content .card-header.hdr-alerts::before { background: #d93025; }
.grid-stack-item-content .card-header.hdr-docs::before { background: #1a6fd4; }
.grid-stack-item-content .card-header.hdr-rels::before { background: #0a3d62; }
.grid-stack-item-content .card-header.hdr-notes::before { background: #6b46c1; }
.grid-stack-item-content .card-header.hdr-metrics::before { background: #0a3d62; }
.grid-stack-item-content .card-header.hdr-comms::before { background: #1a6fd4; }
.grid-stack-item-content .card-header.hdr-finance::before { background: #1a8a3a; }

/* Subtle background tints per tile category */
.card-header.hdr-risk ~ .card-body { background: rgba(0, 168, 150, 0.02); }
.card-header.hdr-tasks ~ .card-body { background: rgba(201, 124, 0, 0.02); }
.card-header.hdr-alerts ~ .card-body { background: rgba(217, 48, 37, 0.02); }
.card-header.hdr-docs ~ .card-body { background: rgba(26, 111, 212, 0.02); }
.card-header.hdr-rels ~ .card-body { background: rgba(10, 61, 98, 0.02); }
.card-header.hdr-notes ~ .card-body { background: rgba(107, 70, 193, 0.02); }
.card-header.hdr-metrics ~ .card-body { background: rgba(10, 61, 98, 0.02); }
.card-header.hdr-comms ~ .card-body { background: rgba(26, 111, 212, 0.02); }
.card-header.hdr-finance ~ .card-body { background: rgba(26, 138, 58, 0.02); }

/* Header icon badge */
.card-header .hdr-icon {
	font-size: 13px;
	opacity: 0.5;
	flex-shrink: 0;
}

.grid-stack-item-content .card-header a {
	color: #0a3d62 !important;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.grid-stack-item-content .card-header a:hover {
	color: #00d9c5 !important;
}

.grid-stack-item-content .card-body {
	padding: 0 15px 14px;
}

/* Dashboard list items — rounded tile style */
.grid-stack-item-content .card-body .d-flex.align-items-center.border.rounded {
	background: #f8f9fa;
	border: 1px solid #eee !important;
	border-radius: 4px !important;
	padding: 0.6rem 0.85rem !important;
	margin-bottom: 0.5rem !important;
	transition: all 0.2s ease;
}

.grid-stack-item-content .card-body .d-flex.align-items-center.border.rounded:hover {
	background: #f0f2f5;
	transform: translateX(3px);
	border-color: #00d9c5 !important;
}

/* Dashboard bordered items (tasks, etc.) */
.grid-stack-item-content .card-body .border.rounded.p-2.mb-2 {
	background: #f8f9fa;
	border: 1px solid #eee !important;
	border-radius: 4px !important;
	transition: all 0.2s ease;
}

.grid-stack-item-content .card-body .border.rounded.p-2.mb-2:hover {
	background: #f0f2f5;
	transform: translateX(3px);
	border-color: #00d9c5 !important;
}

/* Dashboard item links */
.grid-stack-item-content .card-body a {
	color: #2c3e50;
	font-weight: 500;
	font-size: 0.88rem;
	text-decoration: none;
}

.grid-stack-item-content .card-body a:hover {
	color: #00d9c5;
}

/* Dashboard action buttons styling */
.grid-stack-item-content .card-header .greenaddicon,
.grid-stack-item-content .card-header .dx-icon-add {
	font-size: 0.8rem;
}

/* Dashboard avatar tweaks */
.grid-stack-item-content .key-rel-initials2 {
	width: 34px;
	height: 34px;
	line-height: 34px;
	font-size: 1rem;
	border-radius: 50%;
	background-color: #00d9c5 !important;
}

.grid-stack-item-content .key-rel-image {
	width: 34px;
	height: 34px;
}

html, body {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.page {
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
}

.page2 {
	height: 100%;
	overflow-y: auto;
}

.sidebar {
	padding: 0;
	background-color: #1a1d2e;
	overflow: visible;
	height: 100%;
}

	.sidebar > .bottom-row {
		bottom: 0;
		padding-bottom: 10px;
		text-align: right;
		width: 100%;
		padding-right: 14px;
	}

.nav-arrow-icon {
	color: rgba(255,255,255,0.45);
	cursor: pointer;
	transition: color 0.3s;
}

.nav-arrow-icon:hover {
	color: #00d9c5;
}

.savebutton {
	float: left;
	background-color: #00d9c5 !important;
	border: 2px solid #15293f;
}


.leftbutton {
	float: left;
	background-color: #00d9c5 !important;
}

.rightbutton {
	float: right;
	position: relative;
	background-color: #00d9c5 !important;
}

.myFormLayoutItemCaption {
	display: inline-block;
	max-width: calc(100% - 1.5rem);
}

.filter-type-container {
	display: flex;
}

	.filter-type-container > div {
		width: 100%;
	}

.filter-type-button {
	margin-right: 5px;
}

.login-header {
	flex: 0 0 50px;
	background: linear-gradient(180deg, #1e3a5f 0%, #15293f 100%);
}

.header-login-brand {
	font-size: 1.05rem;
	font-weight: 300;
	letter-spacing: 0.5px;
	color: #fff;
	padding-left: 55px;
	line-height: 50px;
}

.header-login-brand strong {
	font-weight: 600;
}

.login-content {
	height: 100%;
	flex: 1 1 auto;
}

.header-actions {
	align-items: center;
	gap: 0.5rem;
	margin-left: auto;
	background-color: transparent;
	color:white;
}

.header-btn {
	align-items: center;
	color: white;
	text-decoration: none;
	float: right;
	margin-top: 5px;
}

	.header-btn:hover {
		opacity: 0.8;
	}

	.header-btn:disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}

.menu {
	background: linear-gradient(180deg, #1e3a5f 0%, #15293f 100%);
	color: white;
	height: 50px;
	padding-left: 60px;
}

.side-menu {
	background-color: #1a1d2e;
	color: rgba(255,255,255,0.45);
	padding-top: 10px;
	width: 100%;
}

	.side-menu .dxbl-menu-item {
		padding: 7px 0;
		position: relative;
	}

	/* Hover-intent progress bar — fills over the delay period so users see the hover registered */
	@media (prefers-reduced-motion: no-preference) {
		.side-menu .dxbl-menu-item.menu-item--hover-intent::after {
			content: '';
			position: absolute;
			bottom: 1px;
			left: 4px;
			right: 4px;
			height: 2px;
			background: #00d9c5 !important;
			transform-origin: left;
			transform: scaleX(0);
			animation: menu-hover-intent var(--menu-intent-duration, 400ms) linear forwards;
		}

		@keyframes menu-hover-intent {
			to { transform: scaleX(1); }
		}
	}

	.side-menu .dxbl-menu-item-text,
	.side-menu .dxbl-menu-item-text-container {
		white-space: nowrap;
	}

	/* Hide all chevrons in both collapsed and expanded mode — flyouts still work */
	.side-menu .dxbl-menu-dropdown-toggle,
	.side-menu .dxbl-menu-item-expand-btn {
		width: 0 !important;
		height: 0 !important;
		overflow: hidden !important;
		padding: 0 !important;
		margin: 0 !important;
		border: none !important;
		position: absolute !important;
	}

	/* Center icon when sidebar is collapsed */
	[style*="width: 44px"] .side-menu .dxbl-btn {
		justify-content: center !important;
		width: 100% !important;
		padding: 2px 0 !important;
	}

	/* Hide text container in collapsed mode */
	[style*="width: 44px"] .side-menu .dxbl-menu-text-hidden {
		display: none !important;
	}

	/* Tooltip for collapsed sidebar leaf items — styled to match flyout sub-menus */
	.side-menu-tooltip {
		position: fixed;
		background-color: rgb(26, 29, 46);
		color: rgba(255,255,255,0.85);
		padding: 4px 12px;
		border-radius: 4px;
		border: 0.667px solid rgba(255,255,255,0.3);
		white-space: nowrap;
		z-index: 10000;
		box-shadow: 0 4px 12px rgba(0,0,0,0.3);
		pointer-events: none;
		font-size: 12px;
	}

/* Sidebar flyout dropdown styling is in site-theme-fluent.css
   (uses .dxbl-menu-dropdown — the actual DevExpress 25.2 class) */

/* Grid/treelist context menu styling is in site-theme-fluent.css
   (portaled dropdowns can't be distinguished by ancestry — use .dxbl-context-menu-dropdown instead) */

/* Toolbar dropdown menus — light theme */
.dxbl-dropdown-body:has(.dxbl-toolbar-dropdown-item-list) {
	background-color: #f8f9fb !important;
	color: #1a1d2e !important;
	border: 1px solid #edf0f4 !important;
	border-radius: 10px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
}
.dxbl-toolbar-dropdown-item-list .dxbl-dropdown-item,
.dxbl-toolbar-dropdown-item-list .dxbl-dropdown-item * {
	background-color: transparent !important;
	color: #1a1d2e !important;
	transition: background-color 0.2s, color 0.2s;
}
.dxbl-toolbar-dropdown-item-list .dxbl-dropdown-item:hover,
.dxbl-toolbar-dropdown-item-list .dxbl-dropdown-item:hover * {
	background-color: #00d9c5 !important;
	color: #1a1d2e !important;
}
.dxbl-toolbar-dropdown-item-list .dxbl-toolbar-dropdown-item:hover {
	background-color: #00d9c5 !important;
}
/* Context menu — light theme */
.dxbl-context-menu-dropdown.dxbl-dropdown-dialog {
	background-color: #f8f9fb !important;
	border: 1px solid #edf0f4 !important;
	border-radius: 10px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
}
.dxbl-context-menu-item,
.dxbl-context-menu-item * {
	background-color: transparent !important;
	color: #1a1d2e !important;
	transition: background-color 0.2s, color 0.2s;
}
.dxbl-context-menu-item:hover,
.dxbl-context-menu-item:hover * {
	background-color: #00d9c5 !important;
	color: #1a1d2e !important;
}

/* Grid filter popup — appears when clicking the funnel icon in a column header.
   Portaled to body like the context menu, so scoped CSS can't reach it — lives here.
   Matches the context-menu chrome above for a consistent popup language. */
.dxbl-grid-filter-menu-dropdown.dxbl-dropdown-dialog,
[class*="grid-filter-menu-dropdown"].dxbl-dropdown-dialog {
	background-color: #f8f9fb !important;
	border: 1px solid #edf0f4 !important;
	border-radius: 10px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
	padding: 4px !important;
}

/* Filter operator / value list items */
.dxbl-grid-filter-menu-item,
.dxbl-grid-filter-menu-item *,
[class*="grid-filter-menu-item"],
[class*="grid-filter-menu-item"] * {
	background-color: transparent !important;
	color: #1a1d2e !important;
	transition: background-color 0.2s, color 0.2s;
	border-radius: 6px;
}

.dxbl-grid-filter-menu-item:hover,
.dxbl-grid-filter-menu-item:hover *,
[class*="grid-filter-menu-item"]:hover,
[class*="grid-filter-menu-item"]:hover * {
	background-color: rgba(0, 217, 197, 0.12) !important;
	color: #1a1d2e !important;
}

/* Selected / active filter option — brighter teal, consistent with context menu */
.dxbl-grid-filter-menu-item.dxbl-active,
.dxbl-grid-filter-menu-item.dxbl-checked,
[class*="grid-filter-menu-item"].dxbl-active,
[class*="grid-filter-menu-item"].dxbl-checked {
	background-color: #00d9c5 !important;
	color: #1a1d2e !important;
}

/* Filter popup Apply / Clear buttons at the bottom — pick up the teal accent */
.dxbl-grid-filter-menu-dropdown .dxbl-btn-primary,
[class*="grid-filter-menu-dropdown"] .dxbl-btn-primary {
	background-color: #3bb0a0 !important;
	border-color: #3bb0a0 !important;
	color: #fff !important;
	border-radius: 6px !important;
}

.dxbl-grid-filter-menu-dropdown .dxbl-btn-primary:hover,
[class*="grid-filter-menu-dropdown"] .dxbl-btn-primary:hover {
	background-color: #2a9080 !important;
	border-color: #2a9080 !important;
}

.side-menu2 {
	background-color: #1a1d2e;
	color: rgba(255,255,255,0.45);
	padding-top: 10px;
}

	.side-menu2 .dxbl-menu-item {
		padding-top: 7px;
		padding-bottom: 7px;
	}

.submenu {
	background-color: #1a1d2e;
	color: white;
	width: max-content;
}

.gridlayout-left-side-bar:before {
	background-color: #1a1d2e;
}

/* Ensure sidebar's grid cell doesn't clip flyout sub-menus */
.gridlayout-left-side-bar {
	overflow: visible !important;
}

/* DxGridLayout item containing the sidebar — must not clip dropdown popups */
[style*="grid-area: left-bar"],
.dxbl-gridlayout-root > [class*="dxbl-gridlayout-item"]:has(.gridlayout-left-side-bar) {
	overflow: visible !important;
}

.workflow-flyout-content {
	width: 100%
}

.ustom-flyout-body {
	width: 100%
}

.help-flyout-links {
	margin-top: .75rem;
	padding-top: .75rem;
	border-top: 1px solid #e5e7eb;
}

.help-flyout-tickets {
	margin-top: .5rem;
	font-size: .75rem;
	line-height: 1.4;
}

.help-flyout-tickets a {
	cursor: pointer;
	color: inherit;
}

.help-flyout-tickets .badge {
	font-size: .6rem;
}

.help-flyout-version {
	margin-top: .5rem;
	text-align: center;
}

.multi-menu {
	display: flex;
	flex-wrap: nowrap;
	align-content: space-between;
}

.top-menu {
	background: linear-gradient(180deg, #1e3a5f 0%, #15293f 100%);
	color: white;
	height: 50px;
	padding-left: 60px;
	flex: 100%;
	display: flex;
	align-items: center;
}

.left-menu2 {
	background: linear-gradient(180deg, #1e3a5f 0%, #15293f 100%);
	color: white;
	height: 50px;
	padding-left: 60px;
	flex: 100%;
	padding-top: 6px;
}

.sub_menu {
	display: flex;
	flex-wrap: nowrap;
	align-content: space-between;
	background-color: #15293f;
	color: white;
	height: 45px;
	padding-top: 2px;
}

.left-sub_menu-workflow {
	width: 40px;
	padding-top: 6px;
	padding-left: 6px;
	max-height: 45px;
}

.left-sub_menu-child {
	flex: 1;
	max-height: 45px;
}

.right-menu {
	background: linear-gradient(180deg, #1e3a5f 0%, #15293f 100%);
	color: white;
	height: 50px;
	padding-left: 60px;
	flex: 25%;
}
/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
	.left-menu {
		flex: 50%;
	}
}

@media screen and (max-width: 992px) {
	.right-menu {
		flex: 50%;
	}
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.multi-menu {
		flex-direction: column;
	}
}

.menu2 {
	padding-top: 8px;
}

.menu-text-items {
	padding-top: 13px;
	background-color: transparent;
	color: white;
	cursor: default;
}

.dx-nav-menu {
	background-color: transparent;
	color: white;
	align-items: center !important;
	width: 100% !important;
	flex: 1 !important;
}
.dx-nav-menu > ul,
.dx-nav-menu .dxbl-menu-items {
	align-items: center !important;
	width: 100% !important;
}

.dx-nav-sub-menu {
	background-color: #15293f;
	color: white;
}

/* Teal pill badges for Alerts / Tasks / Messages — match POC entity-badge-hdr */

.topbar-pill {
	background: rgba(0,217,197,0.15) !important;
	color: #00d9c5 !important;
	border: 1px solid rgba(0,217,197,0.3) !important;
	border-radius: 12px !important;
	padding: 0.2rem 0.65rem !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	margin: 0 0.15rem !important;
	line-height: 1 !important;
	min-height: 0 !important;
	height: auto !important;
	align-self: center !important;
	min-width: 0 !important;
}

/* Strip all internal DevExpress styling from pill descendants */
.topbar-pill *:not(.topbar-pill) {
	color: #00d9c5 !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	min-height: 0 !important;
	line-height: inherit !important;
	font-size: inherit !important;
}

.topbar-pill:hover {
	background: rgba(0,217,197,0.35) !important;
}

.topbar-pill:hover *:not(.topbar-pill) {
	color: #fff !important;
}

/* Style right-side toolbar icons to match sidebar (muted white, teal on hover) */
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .dx-icon-clock,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .dx-icon-add,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .dx-icon-favorites,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .dx-icon-arrowleft,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .dx-icon-help,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .dx-icon-download,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .menu-icon-wealthdesk,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .menu-icon-workflow,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) .menu-icon-iq,
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item) [class*="dx-icon"] {
	color: rgba(255,255,255,0.45) !important;
	transition: color 0.2s ease !important;
}

.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item):hover [class*="dx-icon"],
.dx-nav-menu .dxbl-menu-item:not(.topbar-pill):not(.search-menu-item):hover [class*="menu-icon"] {
	color: #00d9c5 !important;
}

/* IQ toolbar button — teal when panel is open */
.iq-toolbar-active [class*="dx-icon"],
.iq-toolbar-active [class*="menu-icon"] {
	color: #00d9c5 !important;
}

.dx-nav-menu2 {
	background-color: transparent;
	color: white;
	width: 50%;
}

/* .dxbl-wait-indicator and .dxbl-btn.dxbl-lg internal variable overrides
   moved to css/site-theme-bootstrap.css (not needed in Fluent) */

.dose-group.unit-caption {
	max-width: min-content;
}

.dxbl-toolbar-btn-ellipsis {
	display: flex !important;
	justify-content: center;
}
.dxbl-toolbar-btn-ellipsis.dxbl-toolbar-hidden-item {
	display: none !important;
}

.dxbl-btn-toolbar.dxbl-toolbar-no-item-text > .dxbl-toolbar-placeholder {
	-webkit-box-flex: 0;
	-webkit-flex: 0;
	-ms-flex: 0;
	flex: none;
	margin: 0;
}

.cls {
	color: #2c3e50;
}

.cls2 {
	border: 0 none;
	padding: 0px;
	padding-left: 8px;
	padding-right: 8px;
	color: #2c3e50;
}

.tool_bar_item_header {
	color: #2c3e50;
	margin-left: 10px;
	display: flex !important;
	justify-content: center;
}

.tool_bar_item_header2 {
	color: #2c3e50;
	display: flex !important;
	justify-content: center;
}

.tool_bar_item {
	color: #2c3e50;
	display: flex !important;
	justify-content: center;
}

.menu-icon {
	color: #2c3e50;
}

.toolbar-icon {
	color: #00d9c5 !important;
}

.menu-text {
	color: black;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

.dropArea {
	border: 2px dashed gray;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: lightgray;
	cursor: pointer;
	position: relative;
	min-height: 100px;
}

	.dropArea:hover {
		background-color: antiquewhite;
		color: #333;
	}

	.dropArea input[type=file] {
		position: absolute;
		width: 100%;
		height: 100%;
		opacity: 0;
		cursor: pointer;
	}

.dropAreaDrug {
	background-color: darkgray;
}

/* .dxbs-fl.myFL legacy rule moved to css/site-theme-bootstrap.css */

.search {
	/*padding: 0.25rem;
	position: relative;
	min-width: 123px;*/
	text-align: center;
	height: 100%;
	width: 220px;
	padding-top: 2%;
	/*padding-bottom: 2%;*/
	position: relative;
	min-width: 123px;
	/*	top: 7px;
	bottom: 5px;
	left: 2px;*/
}

.search2 {
	text-align: center;
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	min-width: 123px;
	top: 0px;
	bottom: 0px;
	left: 0px;
}

.search .search-input {
	padding-right: 0;
}

.search .search-button {
	right: 0px;
	top: 0px;
	pointer-events: auto;
	z-index: 3;
	width: auto;
	display: flex;
	align-items: center;
	height: 100%;
	position: absolute;
	color: gray;
}

	.search .search-button .search-icon {
		background-color: currentColor;
		width: 24px;
		height: 24px;
		mask-image: url("/images/Search.svg");
		-webkit-mask-image: url("/images/Search.svg");
	}

.search-recent-icon {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 0 0 0 !important;
	width: 14px;
	height: 14px;
	-webkit-mask-image: url("/images/menuicons/SearchRecent.svg?v=-T34x6tlBF2UTzmmqATzmf1ZAHA");
	mask-image: url("/images/menuicons/SearchRecent.svg?v=-T34x6tlBF2UTzmmqATzmf1ZAHA");
	mask-size: contain;
	background-color: currentColor;
}

.loginform-layout {
	margin: auto;
	margin-top: 40px;
	width: 400px;
	max-width: 100%;
	min-height: 280px;
	box-sizing: border-box;
}

.loginform-layout2 {
	margin: auto;
	margin-top: 80px;
	width: 800px;
	max-width: 100%;
	min-height: 400px;
	box-sizing: border-box;
}

h1:focus {
	outline: none;
}

/* Link/button colours moved to css/site-theme-bootstrap.css / site-theme-fluent.css */

.content {
	padding-top: 1.1rem;
	padding-bottom: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
	outline: 1px solid #00b894;
}

.invalid {
	outline: 1px solid red;
}

.validation-message {
	color: red;
}

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

	#blazor-error-ui .dismiss {
		cursor: pointer;
		position: absolute;
		right: 0.75rem;
		top: 0.5rem;
	}

/* .blazor-error-boundary is defined in app.css */

.currencydisplay {
	display: flex;
}

	.currencydisplay label {
		white-space: nowrap;
		margin-top: 5px;
		margin-left: 5px;
		white-space-collapse: preserve;
	}

.razorpage {
	flex: 1;
	height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
	background: #f5f6f8;
	overflow-x: hidden;
}

.popup-loading-placeholder {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.razorpageheader {
	margin-bottom: 10px;
	padding: 0.75rem 1rem;
}
/* Card styling only on enquiry pages */
.razorpage > .razorpageheader {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* Strip card styling inside popups/modals/editors — already has its own container */
.dxbl-popup-body .razorpageheader,
.dxbl-modal-body .razorpageheader,
.dxbl-popup .razorpageheader,
.dxbl-modal .razorpageheader,
.dxbl-popup-content .razorpageheader,
.editform-layout > .razorpageheader {
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}
/* moved popup override after .razorpagemain — see below */

.razorpagemain {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 0.5rem;
	margin-bottom: 10px;
}

.razorpagefooter {
	flex-shrink: 0;
	background: white;
	border-top: 1px solid #e0e0e0;
	/*padding: 10px 0;*/
	margin-top: auto;
}

	.razorpagefooter button {
		min-height: 25px;
	}

.razorpage .razorpagemain {
	overflow-x: hidden;
	overflow-y: auto;
}
/* Popup/modal/editor — flat razorpagemain, no card styling */
.dxbl-popup .razorpagemain,
.dxbl-popup-body .razorpagemain,
.dxbl-modal .razorpagemain,
.dxbl-modal-body .razorpagemain,
.dxbl-flyout .razorpagemain,
.dxbl-flyout-body .razorpagemain,
.in-popup .razorpagemain,
.dxbl-popup-content .razorpagemain,
.editform-layout .razorpagemain {
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin-bottom: 0 !important;
	border: none !important;
}
/* DxFormLayout — ensure transparent background on form content areas */
.dxbl-fl-ctrl,
.dxbl-fl-tab-page,
.dxbl-fl-group,
.dxbl-fl,
.dxbl-fl-cpt,
.dxbl-fl-tabs,
.dxbl-tabs-panel,
.dxbl-tabs-content,
[class*="dxbl-fl-"],
[class*="dxbl-tabs-panel"],
[class*="dxbl-tabs-content"] {
	background: transparent !important;
	background-color: transparent !important;
}

/* DevExpress 25.2 Fluent theme sets `.dxbl-fl { overflow: hidden }`. The form
   layout's inner `.dxbl-row` has the standard Bootstrap `margin: 0 -12px` so
   columns can bleed into adjacent gutters — but with the parent clipping, the
   leftmost ~12px of every row gets sliced off (the first character of any
   left-aligned caption / first column control disappears). #117 */
.dxbl-fl {
	overflow: visible;
}

.enquiry-editform-layout {
	width: 100%;
	display: flex;
	flex-flow: column;
}

.editform-layout {
	flex: 1;
	min-height: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
}

	.editform-layout .dxbl-tabs {
		flex: 1;
		overflow: hidden;
		min-height: 50px;
	}

.pane-layout {
	height: 100%;
	width: 100%;
	display: flex;
	flex-flow: column;
}

.fillcontrol {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.popup-form-layout {
	margin: 0px;
	padding: 0px;
	border: 0px;
	height: 100%;
	width: 100%;
	flex-grow: 1;
}

.fill-parent {
	height: 100%;
	width: 100%;
	flex-grow: 1;
}

.form-layout {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

	.form-layout .form-group {
		padding: 0px;
	}

.second-group .dxbl-group {
	height: 100%;
}

.MyHeight, .MyHeight > div {
	height: 100% !important;
}

.fullscreen {
	height: 100% !important;
	width: 100% !important;
}

.full-grid {
	height: 100% !important;
}

.top-grid {
	height: 50% !important;
}

.top-grid-25 {
	height: 25% !important;
}

.top-grid-33 {
	height: 33% !important;
}

.top-grid-100 {
	height: 100% !important;
	contain: layout style;
}

.bottom-grid {
	height: 50% !important;
}

.bottom-grid-75 {
	height: 75% !important;
}

.FullWidth, .FullWidth > div {
	width: 100% !important;
}

.layout-margin-left {
	margin-left: 10px;
}

.layout-margin-right {
	margin-right: 10px;
}

.form-centered {
	width: 50%;
	margin: 0 auto;
}

.profile_image {
	width: 128px;
	height: 128px;
	object-fit: cover;
	border-radius: 50%;
	font-size: 72px;
	border: solid;
	border-width: 1px;
	border-color: lightgray;
	color: white;
	display: flex;
	text-anchor: center;
	margin: auto;
	line-height: 128px;
	margin-top: 5px;
}

.full-height .dxbl-row {
	height: 100%;
}
/*.full-height .dxbl-group {
	height: 100%;
}*/
/*.full-height .dxbl-fl-group {
	height: 100%;
}*/
.dxbl-fl-group.dxbl-fl-gd.dxbl-col-md-6.dxbl-col {
	margin-top: 0;
}

.version-holder {
	position: absolute;
	bottom: 0;
}

.main-icon {
	position: absolute;
	top: 0;
	left: 0;
}

#lottie-icon {
	width: 300px;
	height: 300px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.profile-vew-wrapper {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.profile-view-container {
	flex: 1 1 auto;
	overflow-y: auto;
}

.profile-container {
	border-radius: 0.25rem;
	padding: 1.5rem;
}

.profile-price {
	margin-bottom: 0;
}

.profile-link-container {
	text-align: right;
}

.profile-ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

button-right {
	float: right;
}

#watermark-container {
	position: absolute;
	width: 400px;
	height: 200px;
	right: 0px;
	bottom: 0px;
	background: url("/images/echelon_transparent_cropped.png?v=lqkEU5au-FeFmCId6sUAfJfbsMQ");
	background-size: contain;
	/*opacity: 0.1;*/
}

#login-logo {
	max-width: 100%;
	max-height: 100%;
	position: relative;
	background-size: contain;
	background-repeat: no-repeat;
	/*border: 3px solid red;*/
	margin: 0 auto;
}
/* Need to collapse back together once we decide how we are handling themes */
.login-background-echelon {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/deck_background.webp?v=fifdIqFDcBbW7ItCHaYaLmgQ78s");
}

.login-background {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/girl_background.webp?v=vTEjzZMJInvaUMtbatGxh4xRHSs");
}

.login-background1 {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/810-6158-112_1.jpg?v=yy8_WqC5hzsO77sw3sVSQWDXGs4");
}

.login-background2 {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/810-6898-356_1.jpg?v=BEzRKSd_L2zFkwP8wcCJmAiPL-s");
}

.login-background3 {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/bus-atlas-p1-44-226.jpg?v=JxuFfmu55GubmqJmCpw8Ci7GgyY");
}

.login-background4 {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/graphicstock1.jpg?v=cx30lxyPgbT0LzYGtRg-V4h4RWk");
}

.login-background5 {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/graphicstock2.jpg?v=sj39AASqKoHvc7sQd01TY1P2Oo0");
}

.login-background6 {
	width: 100%;
	height: 100%;
	margin-top: 5px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px white solid;
	background-image: url("/images/backgrounds/happy.jpg?v=ebEn_fX0qc_alGLtuAXEFN6w994");
}

.header-logo {
	max-width: 50px;
	max-height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background-size: 80px 80px;
	background-position-x: -15px;
	background-position-y: -15px;
	background-image: url("/images/WealthSphere_Icon_Green_Logo_Transparent_Background.svg?v=UPRhkgNieKxcB_yeJ4XjzLv8p5U");
	filter: hue-rotate(-30deg) saturate(1.1);
}

.header-logo-echelon {
	max-width: 50px;
	max-height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background-size: 80px 80px;
	background-position-x: -15px;
	background-position-y: -15px;
}

.dx-radio-group-label {
	font-size: inherit;
	font-weight: 600;
}

	.dx-radio-group-label.dx-demo-small {
		font-size: 0.75rem;
	}

	.dx-radio-group-label.dx-demo-large {
		font-size: 1rem;
	}

.dx-radio-group {
	padding-bottom: 1rem;
}

.dx-radio-selected-value {
	max-width: 480px;
	width: 100%;
}

/* ==========================================================================
   Report Designer Page Styles
   Scoped to .report-designer-page to only apply on ReportDesigner.razor
   ========================================================================== */

.report-designer-page .dxbrv-tabs {
	background-color: #1a1d2e !important;
}

/* Properties panel — targeted fixes only; let DevExtreme manage its own layout.
   Real container: .dx-editors .dxrd-properties-wrapper */

/* Allow label text + info icon to render without clipping */
.report-designer-page .dx-editors .dx-field-label {
	overflow: visible !important;
}

/* Value area: push to right edge. DevExtreme sets width:60% but leaves it at the left,
   creating dead space on the right. margin-left:auto pushes the value to the right edge
   so it sits neatly beside the absolutely-positioned label without overlapping. */
.report-designer-page .dx-editors .dx-field-value:not(.dx-switch):not(.dx-checkbox):not(.dx-button) {
	margin-left: auto !important;
}

/* Boolean property rows — the checkbox value editor overlaps the label.
   Shift label text right to clear the 22px checkbox. */
.report-designer-page .dx-field:has(.dx-field-value .dx-checkbox) > .dx-field-label {
	padding-left: 26px !important;
}

/* Dashboard row links — entire row is clickable */
.dashboard-row-link {
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}
.dashboard-row-link:hover {
	background-color: #00d9c5 !important;
	border-color: #00d9c5 !important;
	color: white;
}
.dashboard-row-link:hover span,
.dashboard-row-link:hover a,
.dashboard-row-link:hover p,
.dashboard-row-link:hover li,
.dashboard-row-link:hover .text-muted {
	color: white !important;
}
.dashboard-row-link:hover .greenicon,
.dashboard-row-link:hover button[class*="dx-icon"] {
	color: white !important;
}
/* Disable row navigation when dashboard is unlocked for editing */
.dashboard-editing .dashboard-row-link {
	pointer-events: none;
	cursor: default;
}

/* Dashboard block footer — drill-down + full page links */
.card-footer-bar {
	display: flex;
	border-top: 1px solid #e2e8f0;
}
.card-footer-bar .card-footer-link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 500;
	color: #0a3d62;
	padding: 6px 8px;
	cursor: pointer;
	background: none;
	border: none;
	font-family: inherit;
	transition: background 0.15s, color 0.15s;
}
.card-footer-bar .card-footer-link:hover {
	background: rgba(10, 61, 98, 0.06);
	color: #00d9c5;
}
.card-footer-bar .card-footer-link + .card-footer-link {
	border-left: 1px solid #e2e8f0;
}
.card-footer-bar .card-footer-link .footer-icon {
	font-size: 12px;
	opacity: 0.6;
}

/* ===== Dashboard block POC styling ===== */

/* List row pattern — Tasks, Documents, Relationships */
.dash-lrow {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 7px 0;
	border-bottom: 1px solid #e2e8f0;
	cursor: pointer;
	transition: background 0.12s;
}
.dash-lrow:last-child { border-bottom: none; }
.dash-lrow:hover {
	background: rgba(10, 61, 98, 0.06);
	margin: 0 -15px;
	padding: 7px 15px;
	border-radius: 6px;
}
.dash-ldot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px;
}
.dash-lbody { flex: 1; min-width: 0; }
.dash-lmain {
	font-size: 12px;
	font-weight: 500;
	color: #1a1d2e;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dash-lmeta {
	font-size: 10px;
	color: #94a3b8;
	margin-top: 1px;
}

/* Status/type badges */
.dash-badge {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	flex-shrink: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border: 1px solid;
	align-self: flex-start;
	margin-top: 1px;
}
.dash-badge-red { background: rgba(217, 48, 37, 0.09); color: #d93025; border-color: rgba(217, 48, 37, 0.2); }
.dash-badge-amber { background: rgba(201, 124, 0, 0.09); color: #c97c00; border-color: rgba(201, 124, 0, 0.2); }
.dash-badge-green { background: rgba(26, 138, 58, 0.09); color: #1a8a3a; border-color: rgba(26, 138, 58, 0.2); }
.dash-badge-navy { background: rgba(10, 61, 98, 0.08); color: #0a3d62; border-color: rgba(10, 61, 98, 0.15); }
.dash-badge-blue { background: rgba(26, 111, 212, 0.09); color: #1a6fd4; border-color: rgba(26, 111, 212, 0.2); }
.dash-badge-grey { background: #f7f9fc; color: #94a3b8; border-color: #e2e8f0; }

/* Key Dates — color bar rows */
.dash-date-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid #e2e8f0;
	cursor: pointer;
	transition: background 0.12s;
}
.dash-date-row:hover {
	background: rgba(10, 61, 98, 0.06);
	margin: 0 -15px;
	padding: 6px 15px;
	border-radius: 6px;
}
.dash-date-row:last-child { border-bottom: none; }
.dash-date-bar {
	width: 3px;
	height: 30px;
	border-radius: 2px;
	flex-shrink: 0;
}
.dash-date-bar-red { background: #d93025; }
.dash-date-bar-amber { background: #c97c00; }
.dash-date-bar-green { background: #1a8a3a; }
.dash-date-label {
	font-size: 12px;
	font-weight: 500;
	color: #1a1d2e;
	flex: 1;
}
.dash-date-val {
	font-size: 11px;
	color: #94a3b8;
	font-family: monospace;
}

/* Document file type icon */
.dash-doc-icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	flex-shrink: 0;
}
.dash-doc-pdf { background: rgba(217, 48, 37, 0.09); color: #d93025; }
.dash-doc-doc { background: rgba(26, 111, 212, 0.09); color: #1a6fd4; }
.dash-doc-xls { background: rgba(26, 138, 58, 0.09); color: #1a8a3a; }
.dash-doc-img { background: rgba(107, 70, 193, 0.09); color: #6b46c1; }
.dash-doc-default { background: #f7f9fc; color: #94a3b8; }

/* Small round avatar for list rows */
.dash-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #0a3d62;
	overflow: hidden;
}
.dash-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Key-value field pairs */
.dash-field {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	border-bottom: 1px solid #e2e8f0;
	font-size: 12px;
}
.dash-field:last-child { border-bottom: none; }
.dash-field-label { color: #94a3b8; font-weight: 500; }
.dash-field-val { color: #1a1d2e; font-weight: 500; }

/* Engagement notes — card items */
.dash-note-item {
	background: #f7f9fc;
	border: 1px solid #e2e8f0;
	border-radius: 7px;
	padding: 8px 10px;
	margin-bottom: 6px;
	cursor: pointer;
	transition: all 0.13s;
}
.dash-note-item:last-child { margin-bottom: 0; }
.dash-note-item:hover {
	border-color: #0a3d62;
	background: rgba(10, 61, 98, 0.06);
}
.dash-note-hdr {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3px;
}
.dash-note-type {
	font-size: 11px;
	font-weight: 600;
	color: #0a3d62;
}
.dash-note-date {
	font-size: 10px;
	color: #94a3b8;
	font-family: monospace;
}
.dash-note-text {
	font-size: 11px;
	color: #4a5568;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ===== Entity Profile card (POC style) ===== */
.dash-profile-top {
	background: linear-gradient(155deg, #0a3d62 0%, #1a5276 100%);
	padding: 20px 16px 16px;
	text-align: center;
}
.dash-profile-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 2.5px solid rgba(255, 255, 255, 0.3);
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	overflow: hidden;
}
.dash-profile-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.dash-profile-name {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
.dash-profile-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 2px;
}
.dash-profile-badges {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 10px;
	flex-wrap: wrap;
}
.dash-pbadge {
	font-size: 10px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.18);
}
.dash-pbadge-ok {
	background: rgba(26, 138, 58, 0.3);
	border-color: rgba(74, 222, 128, 0.35);
	color: #4ade80;
}
.dash-pfields {
	padding: 11px 14px 4px;
}
.dash-pf {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	border-bottom: 1px solid #e2e8f0;
	font-size: 11px;
}
.dash-pf:last-child { border-bottom: none; }
.dash-pfk { color: #94a3b8; }
.dash-pfv { color: #1a1d2e; font-weight: 500; text-align: right; }
.dash-profile-actions {
	display: flex;
	justify-content: center;
	gap: 4px;
	padding: 8px 14px 12px;
}
.dash-profile-btn {
	font-size: 10px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 6px;
	border: 1px solid #e2e8f0;
	background: #f7f9fc;
	color: #0a3d62;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.15s;
}
.dash-profile-btn:hover {
	background: rgba(10, 61, 98, 0.08);
	border-color: #0a3d62;
}

/* ===== Risk / Compliance card (POC style) ===== */
.dash-risk-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 15px 8px;
}
.dash-risk-detail { flex: 1; }
.dash-risk-band {
	font-size: 18px;
	font-weight: 700;
}
.dash-risk-sub {
	font-size: 11px;
	color: #94a3b8;
	margin-top: 2px;
}
.dash-risk-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-top: 10px;
}
.dash-rm-item {
	background: #f7f9fc;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 6px 8px;
}
.dash-rmi-l {
	font-size: 9px;
	color: #94a3b8;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}
.dash-rmi-v {
	font-size: 11px;
	font-weight: 600;
	color: #1a1d2e;
	margin-top: 2px;
}
.dash-review-bar {
	padding: 8px 15px 14px;
	border-top: 1px solid #e2e8f0;
}
.dash-rb-labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	margin-bottom: 5px;
}
.dash-rb-track {
	height: 7px;
	background: #e2e8f0;
	border-radius: 4px;
	overflow: hidden;
}
.dash-rb-fill {
	height: 100%;
	border-radius: 4px;
}
.dash-rb-chips {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 9px;
}
.dash-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 5px;
	border: 1px solid;
}
.dash-chip-ok { background: rgba(26, 138, 58, 0.09); border-color: rgba(26, 138, 58, 0.2); color: #1a8a3a; }
.dash-chip-warn { background: rgba(201, 124, 0, 0.09); border-color: rgba(201, 124, 0, 0.2); color: #c97c00; }
.dash-chip-red { background: rgba(217, 48, 37, 0.09); border-color: rgba(217, 48, 37, 0.2); color: #d93025; }
.dash-chip-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

/* KPI tile grid — Key Metrics block */
.dash-kpi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding: 4px 15px 14px;
}
.dash-kpi {
	background: #f7f9fc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 10px 12px;
	cursor: pointer;
	transition: all 0.16s;
	position: relative;
	overflow: hidden;
}
.dash-kpi::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	border-radius: 8px 8px 0 0;
	background: transparent;
}
.dash-kpi:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.dash-kpi-num {
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
}
.dash-kpi-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #94a3b8;
	margin-top: 2px;
}
.dash-kpi-red { background: rgba(217, 48, 37, 0.09); border-color: rgba(217, 48, 37, 0.2); }
.dash-kpi-red .dash-kpi-num { color: #d93025; }
.dash-kpi-red::before { background: #d93025; }
.dash-kpi-amber { background: rgba(201, 124, 0, 0.09); border-color: rgba(201, 124, 0, 0.2); }
.dash-kpi-amber .dash-kpi-num { color: #c97c00; }
.dash-kpi-amber::before { background: #c97c00; }
.dash-kpi-green { background: rgba(26, 138, 58, 0.09); border-color: rgba(26, 138, 58, 0.2); }
.dash-kpi-green .dash-kpi-num { color: #1a8a3a; }
.dash-kpi-green::before { background: #1a8a3a; }
.dash-kpi-navy { background: rgba(10, 61, 98, 0.08); border-color: rgba(10, 61, 98, 0.15); }
.dash-kpi-navy .dash-kpi-num { color: #0a3d62; }
.dash-kpi-navy::before { background: #0a3d62; }
.dash-kpi-blue { background: rgba(26, 111, 212, 0.09); border-color: rgba(26, 111, 212, 0.2); }
.dash-kpi-blue .dash-kpi-num { color: #1a6fd4; }
.dash-kpi-blue::before { background: #1a6fd4; }
/* LW+CL 21.04.26 — purple + teal modifiers used by Master Entity Fund Admin dashboard. */
.dash-kpi-purple { background: rgba(107, 70, 193, 0.09); border-color: rgba(107, 70, 193, 0.2); }
.dash-kpi-purple .dash-kpi-num { color: #6b46c1; }
.dash-kpi-purple::before { background: #6b46c1; }
.dash-kpi-teal { background: rgba(0, 168, 150, 0.09); border-color: rgba(0, 168, 150, 0.2); }
.dash-kpi-teal .dash-kpi-num { color: #00a896; }
.dash-kpi-teal::before { background: #00a896; }

/* Task sparkline — mini bar chart */
.dash-spark-row {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 32px;
	padding: 0 2px;
}
.dash-spark-bar {
	flex: 1;
	border-radius: 2px 2px 0 0;
	min-height: 3px;
	transition: height 0.3s ease;
}
.dash-spark-label {
	display: flex;
	justify-content: space-between;
	font-size: 9px;
	color: #94a3b8;
	margin-top: 4px;
	padding: 0 2px;
}

/* Entity status pills — dashboard header bar */
.dash-status-pills {
	display: flex;
	gap: 5px;
	align-items: center;
	margin-left: 12px;
}
.dash-status-pill {
	font-size: 10px;
	font-weight: 600;
	padding: 2px 9px;
	border-radius: 8px;
	border: 1px solid;
	white-space: nowrap;
}
.dash-pill-active { background: rgba(26, 138, 58, 0.15); border-color: rgba(26, 138, 58, 0.3); color: #1a8a3a; }
.dash-pill-offboarded { background: rgba(148, 163, 184, 0.15); border-color: rgba(148, 163, 184, 0.3); color: #64748b; }
.dash-pill-risk-high { background: rgba(217, 48, 37, 0.15); border-color: rgba(217, 48, 37, 0.3); color: #d93025; }
.dash-pill-risk-med { background: rgba(201, 124, 0, 0.15); border-color: rgba(201, 124, 0, 0.3); color: #c97c00; }
.dash-pill-risk-low { background: rgba(26, 138, 58, 0.15); border-color: rgba(26, 138, 58, 0.3); color: #1a8a3a; }
.dash-pill-risk-unknown { background: rgba(148, 163, 184, 0.12); border-color: rgba(148, 163, 184, 0.25); color: #94a3b8; }
.dash-pill-type { background: rgba(10, 61, 98, 0.08); border-color: rgba(10, 61, 98, 0.18); color: #0a3d62; }
.dash-pill-alerts { background: rgba(217, 48, 37, 0.15); border-color: rgba(217, 48, 37, 0.3); color: #d93025; }

/* Dashboard header bar layout */
.dash-header-bar {
	display: flex;
	align-items: center;
	gap: 8px;
}
.dash-header-entity {
	font-size: 13px;
	font-weight: 600;
	color: #1a1d2e;
}
.dash-header-meta {
	font-size: 11px;
	color: #94a3b8;
}

/* Compliance elapsed-days bar */
.dash-elapsed-bar {
	margin-top: 8px;
	padding: 0 15px 4px;
}
.dash-elapsed-text {
	font-size: 11px;
	color: #4a5568;
	margin-bottom: 4px;
}
.dash-elapsed-text strong {
	font-weight: 700;
}
.dash-elapsed-track {
	height: 6px;
	background: #e2e8f0;
	border-radius: 3px;
	overflow: hidden;
}
.dash-elapsed-fill {
	height: 100%;
	border-radius: 3px;
	transition: width 0.3s ease;
}

/* ===== Tile Picker Panel ===== */
.dash-tile-picker {
	padding: 12px;
}
.dash-tile-picker-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #94a3b8;
	margin-bottom: 10px;
}
.dash-tile-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}
.dash-tile-card {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	transition: all .15s;
	background: #f7f9fc;
	user-select: none;
}
.dash-tile-card:hover {
	border-color: #0a3d62;
	background: rgba(10, 61, 98, 0.04);
}
.dash-tile-card-active {
	border-color: #00a896;
	background: rgba(0, 168, 150, 0.06);
}
.dash-tile-card-active:hover {
	border-color: #00a896;
}
.dash-tile-card-disabled {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}
.dash-tile-card-unavailable {
	opacity: 0.35;
	cursor: not-allowed;
}
.dash-tile-card-unavailable:hover {
	border-color: #e2e8f0;
	background: #f7f9fc;
}
.dash-tile-icon {
	font-size: 16px;
	color: #94a3b8;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
}
.dash-tile-card-active .dash-tile-icon {
	color: #00a896;
}
.dash-tile-info {
	flex: 1;
	min-width: 0;
}
.dash-tile-name {
	font-size: 11px;
	font-weight: 600;
	color: #1a1d2e;
	line-height: 1.2;
}
.dash-tile-tag {
	font-size: 9px;
	color: #94a3b8;
	margin-top: 1px;
}
.dash-tile-toggle {
	width: 32px;
	height: 18px;
	border-radius: 9px;
	background: #d1dce8;
	position: relative;
	flex-shrink: 0;
	transition: background .2s;
}
.dash-tile-toggle::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.15);
	transition: transform .2s;
}
.dash-tile-toggle-on {
	background: #00a896;
}
.dash-tile-toggle-on::after {
	transform: translateX(14px);
}
/* Rearrange mode banner */
.dash-rearrange-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	margin: 0 0 2px;
	background: #fff;
	border: 2px solid #00a896;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 168, 150, 0.12);
}
.dash-rearrange-icon {
	font-size: 18px;
	color: #00a896;
	flex-shrink: 0;
}
.dash-rearrange-text {
	flex: 1;
	min-width: 0;
}
.dash-rearrange-text strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #00a896;
}
.dash-rearrange-text span {
	font-size: 11px;
	color: #94a3b8;
}

/* Tile picker rearrange button */
.dash-tile-rearrange-btn {
	font-size: 11px;
	font-weight: 500;
	color: #0a3d62;
	background: none;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 4px 10px;
	cursor: pointer;
	font-family: inherit;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: all .15s;
}
.dash-tile-rearrange-btn:hover {
	border-color: #00a896;
	color: #00a896;
	background: rgba(0, 168, 150, 0.06);
}

.dash-tile-picker-divider {
	height: 1px;
	background: #e2e8f0;
	margin: 12px 0;
}
.dash-tile-rearrange {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	background: #f7f9fc;
	margin-bottom: 4px;
}
.dash-tile-rearrange-info {
	display: flex;
	align-items: center;
	gap: 8px;
}
.dash-tile-picker-footer {
	border-top: 1px solid #e2e8f0;
	padding: 10px 12px;
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.dash-tile-reset-btn {
	font-size: 11px;
	font-weight: 500;
	color: #94a3b8;
	background: none;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 4px 10px;
	cursor: pointer;
	font-family: inherit;
	transition: all .15s;
}
.dash-tile-reset-btn:hover {
	color: #d93025;
	border-color: rgba(217, 48, 37, 0.3);
	background: rgba(217, 48, 37, 0.06);
}
.dash-tile-confirm {
	display: flex;
	align-items: center;
	gap: 6px;
}
.dash-tile-confirm-text {
	font-size: 11px;
	color: #d93025;
	font-weight: 500;
}
.dash-tile-confirm-btn {
	font-size: 10px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.dash-tile-confirm-yes {
	background: #d93025;
	color: #fff;
}
.dash-tile-confirm-yes:hover {
	background: #b71c1c;
}
.dash-tile-confirm-no {
	background: #f7f9fc;
	color: #4a5568;
	border: 1px solid #e2e8f0;
}
.dash-tile-confirm-no:hover {
	border-color: #94a3b8;
}
.dash-tile-type-label {
	font-size: 10px;
	font-weight: 600;
	color: #0a3d62;
	background: rgba(10, 61, 98, 0.06);
	padding: 2px 8px;
	border-radius: 6px;
}

/* Grey out the drag handle column for unposted settlements */
.settlement-not-posted > td:first-child {
	opacity: 0.25;
	pointer-events: none;
}

/* ─── Search flyout (Recent/Related Entities) ─── */
.dxbl-flyout .entity-item {
	display: flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	margin-bottom: 0.25rem;
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 6px !important;
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 500;
	color: #2c3e50;
	transition: all 0.2s;
	gap: 0.5rem;
	overflow: hidden;
}
.dxbl-flyout .entity-item:hover {
	background: #00d9c5;
	color: white;
	border-color: #00d9c5;
}
.dxbl-flyout .entity-item:hover a {
	color: white !important;
}
.dxbl-flyout .entity-item a {
	color: #2c3e50;
	text-decoration: none;
	font-weight: 500;
}
.dxbl-flyout .entity-item .key-rel-initials2 {
	width: 24px;
	height: 24px;
	font-size: 0.6rem;
	line-height: 24px;
	min-width: 24px;
}
.dxbl-flyout .entity-item .key-rel-image {
	width: 24px;
	height: 24px;
	min-width: 24px;
}
/* Remove extra padding from flyout card body */
.dxbl-flyout .card-body {
	padding: 0.5rem !important;
}
/* Flyout tab headers — POC-inspired section labels */
.dxbl-flyout .dxbl-tabs-header .dxbl-btn-group .dxbl-btn {
	font-size: 0.7rem !important;
	font-weight: 700 !important;
	color: #999 !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ─── Global Tab Styling (POC-inspired) ─── */
/* Tab list outer container — white card with rounded corners (non-popup only) */
dxbl-tab-list.dxbl-tabs-tablist {
	background: white !important;
	border-radius: 10px !important;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
	border: 1px solid #e9ecef !important;
	overflow: hidden !important;
}
/* In popups/modals — flat tab bar, no card */
.dxbl-modal dxbl-tab-list.dxbl-tabs-tablist,
.dxbl-popup dxbl-tab-list.dxbl-tabs-tablist,
.dxbl-flyout dxbl-tab-list.dxbl-tabs-tablist {
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	border: none !important;
	border-bottom: 1px solid #e9ecef !important;
}
/* Tab list inner UL */
[role="tablist"] {
	background: transparent !important;
	border-bottom: none !important;
}
/* Individual tab items */
dxbl-tab-item.dxbl-tabs-item {
	background: transparent !important;
	border: none !important;
	border-bottom: 2px solid transparent !important;
	color: #666 !important;
	font-size: 0.85rem !important;
	font-weight: 500 !important;
	padding: 0.65rem 1.25rem 0.5rem !important;
	margin-bottom: 0 !important;
	transition: all 0.2s !important;
	cursor: pointer !important;
}
/* Tab hover */
dxbl-tab-item.dxbl-tabs-item:hover {
	background: #f0f1f3 !important;
	color: #444 !important;
}
/* Active tab — teal underline */
dxbl-tab-item.dxbl-tabs-item.dxbl-active {
	color: #00d9c5 !important;
	border-bottom: 2px solid #00d9c5 !important;
	background: transparent !important;
	font-weight: 600 !important;
}
/* Tab text color inheritance */
dxbl-tab-item.dxbl-tabs-item .dxbl-text {
	color: inherit !important;
}
/* Hide DevExpress default selection bar — we use border-bottom instead */
.dxbl-tabs-selection-bar {
	display: none !important;
}
/* Hide DevExpress built-in ::after underline on active tabs */
dxbl-tab-item.dxbl-tabs-item.dxbl-active::after {
	display: none !important;
}

/* ===== Input Control Styling ===== */
/* DevExpress text editors — gray background, rounded, full border */
.dxbl-text-edit,
.dxbl-combobox,
.dxbl-spin-edit,
.dxbl-date-edit,
.dxbl-memo,
.dxbl-listbox,
.dxbl-tagbox {
	background: #f0f2f5 !important;
	border: 1px solid #d1d5db !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
/* Remove the DevExpress bottom-only focus bar */
.dxbl-text-edit .dxbl-input-group-focus-line,
.dxbl-combobox .dxbl-input-group-focus-line,
.dxbl-spin-edit .dxbl-input-group-focus-line,
.dxbl-date-edit .dxbl-input-group-focus-line,
.dxbl-memo .dxbl-input-group-focus-line,
.dxbl-tagbox .dxbl-input-group-focus-line {
	display: none !important;
}
/* Focused state — teal border */
.dxbl-text-edit.dxbl-focused,
.dxbl-combobox.dxbl-focused,
.dxbl-spin-edit.dxbl-focused,
.dxbl-date-edit.dxbl-focused,
.dxbl-memo.dxbl-focused,
.dxbl-tagbox.dxbl-focused {
	border-color: #00d9c5 !important;
	box-shadow: 0 0 0 2px rgba(0, 217, 197, 0.15) !important;
}
/* Standard HTML inputs/selects/textareas */
input.form-control,
select.form-select,
textarea.form-control {
	background: #f0f2f5 !important;
	border: 1px solid #d1d5db !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
input.form-control:focus,
select.form-select:focus,
textarea.form-control:focus {
	border-color: #00d9c5 !important;
	box-shadow: 0 0 0 2px rgba(0, 217, 197, 0.15) !important;
	background: #fff !important;
}
/* Action buttons (arrows, clear, calendar) — match input gray background */
.dxbl-text-edit .dxbl-btn-group,
.dxbl-combobox .dxbl-btn-group,
.dxbl-spin-edit .dxbl-btn-group,
.dxbl-date-edit .dxbl-btn-group,
.dxbl-tagbox .dxbl-btn-group,
.dxbl-text-edit .dxbl-btn,
.dxbl-combobox .dxbl-btn,
.dxbl-spin-edit .dxbl-btn,
.dxbl-date-edit .dxbl-btn,
.dxbl-tagbox .dxbl-btn {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
}
/* Clear button — hidden by default, visible on hover/focus.
   DX 25.2 renders the button as .dxbl-edit-btn-clear; pre-DX22 used .dxbs-clear-btn. */
.dxbl-edit-btn-clear,
.dxbs-clear-btn {
	opacity: 0 !important;
	pointer-events: none;
	transition: opacity 0.15s ease;
}
.dxbl-text-edit:hover .dxbl-edit-btn-clear,
.dxbl-combobox:hover .dxbl-edit-btn-clear,
.dxbl-spin-edit:hover .dxbl-edit-btn-clear,
.dxbl-date-edit:hover .dxbl-edit-btn-clear,
.dxbl-tagbox:hover .dxbl-edit-btn-clear,
.dxbl-text-edit.dxbl-focused .dxbl-edit-btn-clear,
.dxbl-combobox.dxbl-focused .dxbl-edit-btn-clear,
.dxbl-spin-edit.dxbl-focused .dxbl-edit-btn-clear,
.dxbl-date-edit.dxbl-focused .dxbl-edit-btn-clear,
.dxbl-tagbox.dxbl-focused .dxbl-edit-btn-clear,
.dxbl-text-edit:hover .dxbs-clear-btn,
.dxbl-combobox:hover .dxbs-clear-btn,
.dxbl-spin-edit:hover .dxbs-clear-btn,
.dxbl-date-edit:hover .dxbs-clear-btn,
.dxbl-tagbox:hover .dxbs-clear-btn,
.dxbl-text-edit.dxbl-focused .dxbs-clear-btn,
.dxbl-combobox.dxbl-focused .dxbs-clear-btn,
.dxbl-spin-edit.dxbl-focused .dxbs-clear-btn,
.dxbl-date-edit.dxbl-focused .dxbs-clear-btn,
.dxbl-tagbox.dxbl-focused .dxbs-clear-btn {
	opacity: 1 !important;
	pointer-events: auto;
}
/* Remove bottom-only underline from DevExpress input-group */
.dxbl-input-group::after,
.dxbl-input-group::before {
	display: none !important;
}
/* Popup body — flex column so child .razorpage.in-popup fills available height.
   Without this, height: 100% on .razorpage.in-popup cannot resolve because
   the DxPopup body has no definite height for percentage calculation. */
.dxbl-popup-body,
.dxbl-modal-body {
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	background-color: #fff !important;
}

/* Popup body flex propagation — allows editors with flex layout to fill
   the popup height and scroll internally (e.g. RoleEditor permissions panel).
   overflow: auto gives tall form popups a scrollbar instead of clipping;
   grid/editor popups that use flex: 1 internally won't overflow here at all. */
.razorpage.in-popup {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

/* MyDxGrid flex chain — DxLoadingPanel wraps content in a div with class
   dxbl-loading-panel-target-content (no Blazor scope attribute), so this rule
   must be global. It propagates the flex chain from .grid-flex-root through
   the DevExpress wrapper to the toolbar and grid-height-wrapper. */
.grid-flex-root .dxbl-loading-panel-target-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}

/* ── Drill-down popup KPI cards (Key Dates, Notes, Tasks, Relationships) ── */
.drill-kpis {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding: 8px 0 4px;
	flex-shrink: 0;
	background: #fff;
}

.dk {
	background: transparent;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 8px 10px;
}

.dk-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #94a3b8;
}

.dk-val {
	font-size: 18px;
	font-weight: 800;
	margin-top: 2px;
}

.dk-navy  { color: #0a3d62; }
.dk-red   { color: #d93025; }
.dk-amber { color: #c97c00; }
.dk-green { color: #1a8a3a; }

/* Drill-down popups: KPIs + grid as flex column, grid fills remaining space */
.dxbl-popup-body > .drill-kpis ~ .razorpagemain {
	overflow: hidden;
}

/* ── Category colour dots (used in grid + editor) ── */
.category-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	vertical-align: middle;
	flex-shrink: 0;
}
.category-dot-admin        { background-color: #dc3545; }
.category-dot-operations   { background-color: #0d6efd; }
.category-dot-accounting   { background-color: #198754; }
.category-dot-specialist   { background-color: #6f42c1; }
.category-dot-governance   { background-color: #fd7e14; }
.category-dot-external     { background-color: #6c757d; }

/* Prevent input styling from bleeding into popup/modal outer borders */
.dxbl-modal-content,
.dxbl-popup-content,
.dxbl-flyout-content {
	background: white !important;
	border: 1px solid #dee2e6 !important;
	border-radius: 8px !important;
}
/* White popup header background — removes DevExpress default grey */
.dxbl-modal-header,
.dxbl-popup-header {
	background-color: #fff !important;
}
/* Force white background on form containers inside popups */
.dxbl-modal-content .razorpageheader,
.dxbl-popup-content .razorpageheader,
.dxbl-modal-content .razorpagemain,
.dxbl-popup-content .razorpagemain,
.dxbl-modal-content .editform-layout,
.dxbl-popup-content .editform-layout,
.dxbl-modal-content .dxbl-gridlayout-root,
.dxbl-popup-content .dxbl-gridlayout-root {
	background: white !important;
	background-color: white !important;
}

/* ===== Grid Appearance flyout ===== */
.appearance-flyout.dxbl-flyout {
	border-radius: 14px !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
	border: 1px solid #edf0f4 !important;
	overflow: hidden;
	background: #f8f9fb !important;
}

.appearance-flyout .dxbl-flyout-header {
	background: #f8f9fb !important;
	border-bottom: none !important;
	padding: 14px 18px 0 18px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #1a1d2e !important;
}

.appearance-flyout .dxbl-flyout-content {
	background: #f8f9fb !important;
	border: none !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.appearance-flyout .dxbl-flyout-body {
	background: #f8f9fb !important;
	width: 100% !important;
}

.appearance-flyout [class*="dxbl-flyout-body"] {
	background: #f8f9fb !important;
	width: 100% !important;
}

.appearance-flyout [class*="dxbl-flyout-body"] > div {
	width: 100% !important;
}

.appearance-flyout .col-sort-unsorted:hover {
	background: #e8eaef !important;
	color: #6b7280 !important;
}

.appearance-flyout .col-sort-active:hover {
	background: rgba(59, 176, 160, 0.2) !important;
}

.appearance-flyout .col-card:hover {
	border-color: #d0d8e0 !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}

/* ===== Export flyout option cards ===== */
.export-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid #edf0f4;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s;
	font-size: 13px;
	font-weight: 500;
	color: #1a1d2e;
}
.export-option:hover {
	border-color: #3bb0a0;
	background-color: rgba(59, 176, 160, 0.06);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.export-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 22px;
	width: 24px;
	height: 24px;
}

/* Active layout card — teal highlight */
.layout-active {
	background: #3bb0a0 !important;
	color: #fff !important;
	border-color: #3bb0a0 !important;
}
.layout-active span {
	color: #fff !important;
}
.layout-active:hover {
	background: #2a9080 !important;
	border-color: #2a9080 !important;
}

/* ========================================================================
   Shared "cd-*" section pattern — Brett POC §3 entity-dashboard styling.
   Promoted from Components/Pages/Entities/Compliance/EntityRisk.razor.css
   so other compliance tabs (LEI, Reporting, Documents) share the same
   card chrome. Matches the "page 1" Compliance Details look.
   LW+CL 29.04.26
   ======================================================================== */

.cd-section {
	padding: 12px 14px;
	border: 1px solid #e3e6eb;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: background 150ms ease, border-color 150ms ease;
	margin-bottom: 12px;
}

.cd-section.section-editing {
	background: rgba(0, 168, 150, 0.04);
	border-color: rgba(0, 168, 150, 0.18);
}

.cd-section-hdr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 8px;
	flex-wrap: wrap;
	gap: 8px;
}

.cd-section-hdr h3 {
	font-size: 12px;
	font-weight: 700;
	color: #0a3d62;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0;
}

.cd-section-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.cd-act-btn {
	background: transparent;
	border: 1px solid #d1dce8;
	color: #4a5568;
	font-size: 11px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 150ms ease;
}

.cd-act-btn:hover {
	background: #f7f9fc;
	color: #1a1d2e;
	border-color: #0a3d62;
}

.cd-act-btn.primary {
	background: #00a896;
	border-color: #00a896;
	color: #fff;
}

.cd-act-btn.primary:hover {
	background: #00a896;
	filter: brightness(1.08);
}

.cd-rows {
	display: flex;
	flex-direction: column;
}

.cd-validation {
	margin-top: 12px;
}

.cd-row {
	display: grid;
	grid-template-columns: minmax(120px, 42%) 1fr;
	gap: 12px;
	padding: 5px 8px;
	align-items: center;
	min-height: 28px;
	position: relative;
	border-radius: 6px;
	transition: background 150ms ease, box-shadow 150ms ease;
}

.cd-row.row-editing {
	background: rgba(0, 168, 150, 0.06);
	box-shadow: inset 2px 0 0 rgba(0, 168, 150, 0.5);
}

.cd-label {
	font-size: 12px;
	color: #94a3b8;
}

.cd-value {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.cd-text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	color: #111827;
	overflow-wrap: anywhere;
	white-space: pre-wrap;
}

.cd-text--muted {
	color: #9ca3af;
	font-style: italic;
}

.cd-pencil {
	background: none;
	border: none;
	cursor: pointer;
	color: #94a3b8;
	font-size: 12px;
	padding: 0 4px;
	margin-left: 4px;
	opacity: 0;
	transition: opacity 150ms ease, color 150ms ease;
	flex-shrink: 0;
}

.cd-row:hover .cd-pencil {
	opacity: 1;
}

.cd-pencil:hover {
	color: #0a3d62;
}

.cd-pencil:focus-visible {
	opacity: 1;
	outline: 2px solid #1a4b8c;
	outline-offset: 2px;
}

.cd-section.section-editing .cd-pencil {
	display: none;
}

.cd-grid-block {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #e3e6eb;
}

.cd-grid-block-hdr {
	font-size: 12px;
	font-weight: 700;
	color: #0a3d62;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
}

/* ===== WS standard search-input decoration =====
   Apply CssClass="ws-search-box" to any DxTextBox / MyTextBox to get a
   magnifying-glass icon inside the input. The lens + handle are drawn as
   ::before / ::after pseudo-elements on the DevExpress wrapper div, so no
   icon-font dependency. Input gets padding-left to make room for the icon. */
.dxbl-edit.ws-search-box {
	position: relative;
}

.dxbl-edit.ws-search-box::before {
	content: '';
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border: 1.5px solid #94a3b8;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.dxbl-edit.ws-search-box::after {
	content: '';
	position: absolute;
	left: 19px;
	top: calc(50% + 4px);
	width: 1.5px;
	height: 5px;
	background: #94a3b8;
	transform: rotate(-45deg);
	transform-origin: top;
	pointer-events: none;
	z-index: 1;
}

.dxbl-edit.ws-search-box input {
	padding-left: 28px !important;
}

.greenaddicon {
	background-color: #00d9c5 !important;
	color: black !important;
	color: black;
}

.greenicon {
	color: #00d9c5 !important;
	color: black;
}

.menu-icon-clock {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityworkflow.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-image: url("/images/menuicons/entityworkflow.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-size: contain;
	background-color: #00d9c5 !important;
}

.menu-icon-workflow {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityworkflow.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-image: url("/images/menuicons/entityworkflow.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-size: contain;
	background-color: #00d9c5 !important;
}

.menu-icon-workflow-collapse {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/workflowcollapse.svg?v=mfaMZ7SR75G9CE98HQFC3AMQ2G0");
	mask-image: url("/images/menuicons/workflowcollapse.svg?v=mfaMZ7SR75G9CE98HQFC3AMQ2G0");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-wealthdesk {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/wealthdesk.svg?v=-T34x6tlBF2UTzmmqATzmf1ZAHA");
	mask-image: url("/images/menuicons/wealthdesk.svg?v=-T34x6tlBF2UTzmmqATzmf1ZAHA");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-favorites {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/favourites.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-image: url("/images/menuicons/favourites.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-accouting {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityaccounting.svg?v=Ou07UaqBXousclja95NFDUrrBos");
	mask-image: url("/images/menuicons/entityaccounting.svg?v=Ou07UaqBXousclja95NFDUrrBos");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-livewealth {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitylivewealth.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-image: url("/images/menuicons/entitylivewealth.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-administrator {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityadministrator.svg?v=Ou07UaqBXousclja95NFDUrrBos");
	mask-image: url("/images/menuicons/entityadministrator.svg?v=Ou07UaqBXousclja95NFDUrrBos");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-documents {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitydocuments.svg?v=pTq3nH2PTRzFjhGDgMSyX1f_fhA");
	mask-image: url("/images/menuicons/entitydocuments.svg?v=pTq3nH2PTRzFjhGDgMSyX1f_fhA");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-tasks {
	height: 22px !important;
	width: 18px !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitytasks.svg?v=Xt3KqDoDML9TBnJYLUGRvblbzXg");
	mask-image: url("/images/menuicons/entitytasks.svg?v=Xt3KqDoDML9TBnJYLUGRvblbzXg");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-automations {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityautomations.svg?v=mcfmmo20y2Ud3s5vtKO1urV-Ln4");
	mask-image: url("/images/menuicons/entityautomations.svg?v=mcfmmo20y2Ud3s5vtKO1urV-Ln4");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-reports {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityreports.svg?v=rcRZzO1qXOosUjRvBKIGH6Ba-Eg");
	mask-image: url("/images/menuicons/entityreports.svg?v=rcRZzO1qXOosUjRvBKIGH6Ba-Eg");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-imports {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityimports.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-image: url("/images/menuicons/entityimports.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-iq {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/wealthsphereiq.svg?v=_8gjgr-AHMSe9cbB--AR8OHe0gs");
	mask-image: url("/images/menuicons/wealthsphereiq.svg?v=_8gjgr-AHMSe9cbB--AR8OHe0gs");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-accountspayable {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityaccountspayable.svg?v=Ou07UaqBXousclja95NFDUrrBos");
	mask-image: url("/images/menuicons/entityaccountspayable.svg?v=Ou07UaqBXousclja95NFDUrrBos");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-communications {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitycommunications.svg?v=3DNYZcSIBFawjkpCAFHldsBcoec");
	mask-image: url("/images/menuicons/entitycommunications.svg?v=3DNYZcSIBFawjkpCAFHldsBcoec");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-settings {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitysettings.svg?v=Xt3KqDoDML9TBnJYLUGRvblbzXg");
	mask-image: url("/images/menuicons/entitysettings.svg?v=Xt3KqDoDML9TBnJYLUGRvblbzXg");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-backarrow {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	height: 22px !important;
	width: 18px !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/backarrow.svg?v=bN5fJJ0tvb6J8EOmnlpvT2XtIYM");
	mask-image: url("/images/menuicons/backarrow.svg?v=bN5fJJ0tvb6J8EOmnlpvT2XtIYM");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entityges {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitiesges.svg?v=7JA7V__hgZvlmsOjHmdW0l-xXq0");
	mask-image: url("/images/menuicons/entitiesges.svg?v=7JA7V__hgZvlmsOjHmdW0l-xXq0");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-large {
	height: 30px !important;
	width: 30px !important;
}

.menu-icon-small {
	height: 22px !important;
	width: 18px !important;
}

.menu-icon-entities {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entities.svg?v=JGlc_a9oe081owuGRb0u0W4I_wk");
	mask-image: url("/images/menuicons/entities.svg?v=JGlc_a9oe081owuGRb0u0W4I_wk");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entity {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	-webkit-mask-image: url("/images/menuicons/entity.svg?v=7JA7V__hgZvlmsOjHmdW0l-xXq0");
	mask-image: url("/images/menuicons/entity.svg?v=7JA7V__hgZvlmsOjHmdW0l-xXq0");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 0.4em 0 0 !important;
	top: 1px;
	color: transparent;
	display: inline-block;
}

.menu-icon-entitydashboard {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitydashboard.svg?v=CPe5dCWJrlXZLXvZOKglDvjnVsY");
	mask-image: url("/images/menuicons/entitydashboard.svg?v=CPe5dCWJrlXZLXvZOKglDvjnVsY");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entitydetails {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitydetails.svg?v=pTq3nH2PTRzFjhGDgMSyX1f_fhA");
	mask-image: url("/images/menuicons/entitydetails.svg?v=pTq3nH2PTRzFjhGDgMSyX1f_fhA");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entitycompliance {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitycompliance.svg?v=CPe5dCWJrlXZLXvZOKglDvjnVsY");
	mask-image: url("/images/menuicons/entitycompliance.svg?v=CPe5dCWJrlXZLXvZOKglDvjnVsY");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entitycommunicationpreferences {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitycommunicationpreferences.svg?v=3DNYZcSIBFawjkpCAFHldsBcoec");
	mask-image: url("/images/menuicons/entitycommunicationpreferences.svg?v=3DNYZcSIBFawjkpCAFHldsBcoec");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entityengagementnotes {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityengagementnotes.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-image: url("/images/menuicons/entityengagementnotes.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entitynotes {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitynotes.svg?v=IhN6YyUa8FGpleFcyaA7A2YBoUc");
	mask-image: url("/images/menuicons/entitynotes.svg?v=IhN6YyUa8FGpleFcyaA7A2YBoUc");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-entityrelationships {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityrelationships.svg?v=rcRZzO1qXOosUjRvBKIGH6Ba-Eg");
	mask-image: url("/images/menuicons/entityrelationships.svg?v=rcRZzO1qXOosUjRvBKIGH6Ba-Eg");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-alerts {
	height: 22px !important;
	width: 18px !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityalerts.svg?v=Z6Ld3pNRmkOkk56bZEBfOzplDrc");
	mask-image: url("/images/menuicons/entityalerts.svg?v=Z6Ld3pNRmkOkk56bZEBfOzplDrc");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-home {
	height: 22px !important;
	width: 18px !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/home.svg?v=_8gjgr-AHMSe9cbB--AR8OHe0gs");
	mask-image: url("/images/menuicons/home.svg?v=_8gjgr-AHMSe9cbB--AR8OHe0gs");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-messages {
	height: 22px !important;
	width: 18px !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityportalmessages.svg?v=IhN6YyUa8FGpleFcyaA7A2YBoUc");
	mask-image: url("/images/menuicons/entityportalmessages.svg?v=IhN6YyUa8FGpleFcyaA7A2YBoUc");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-billing {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitybilling.svg?v=3DNYZcSIBFawjkpCAFHldsBcoec");
	mask-image: url("/images/menuicons/entitybilling.svg?v=3DNYZcSIBFawjkpCAFHldsBcoec");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-wip {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitywip.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-image: url("/images/menuicons/entitywip.svg?v=FEMq7ZgR2Go5pzTHamXUp1hzKZI");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-assets {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entityassetsfunds.svg?v=mcfmmo20y2Ud3s5vtKO1urV-Ln4");
	mask-image: url("/images/menuicons/entityassetsfunds.svg?v=mcfmmo20y2Ud3s5vtKO1urV-Ln4");
	mask-size: contain;
	background-color: currentColor;
}

.menu-icon-navsphere {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/menuicons/entitynavsphere.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-image: url("/images/menuicons/entitynavsphere.svg?v=LmqA4X2z9beSvM62EjWSoQbvPFs");
	mask-size: contain;
	background-color: currentColor;
}

.dx-menu-item.notoggle > .dropdown-menu {
	transform: matrix(1, 0, 0, 1, -112, -1) !important;
}

.dx-menu-item.notoggle a > span.dropdown-toggle {
	display: none;
}

.dx-menu-item .search {
	min-width: 123px
}

.user-profile .logo-container {
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}

.menu-icon-governance {
	mask-repeat: no-repeat !important;
	-webkit-mask-repeat: no-repeat !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 3px 0 0 0 !important;
	display: inline-block;
	-webkit-mask-image: url("/images/governance/governance-logo.png?v=CbXNYe6HZcZOV_o7ZzrKCgzxep4");
	mask-image: url("/images/governance/governance-logo.png?v=CbXNYe6HZcZOV_o7ZzrKCgzxep4");
	mask-size: contain;
	background-color: currentColor;
}

.user-profile .log-off-btn {
	padding-top: 0.815rem;
	padding-bottom: 0.815rem;
	border-top: 1px solid #e5e5e5;
}

.user-profile .menu-icon-user-profile {
	opacity: 0.25;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}



:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, var(--f-throw-out-distance, 150px), 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__backdrop:empty,.fancybox__viewport:empty,.fancybox__track:empty,.fancybox__slide:empty{display:block}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0px)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0, 0, 0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}
