﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
:root {
	--fm-leaflet-label-color: rgb(10, 102, 174);
}
	html, body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	overflow: hidden;
}

.page {
	display: grid;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	gap: 0;
	grid-template-rows: min-content 1fr;
	grid-template-columns: 1fr;
	grid-template-areas:
		"menubar"
		"main";
}
	.page > .menubar {
		grid-area: menubar;
		z-index: 10;
		display: flex;
		flex-wrap: nowrap;
		flex-direction: column;
		height: 100vh;
		background-color: rgb(26 65 86);
	}
	.page.menubar-collapsed > .menubar {
		height: unset;
	}
		.page.menubar-collapsed > .menubar > .navmenu {
			display: none;
		}
	.page > .menubar > .menubar-header {
		height: 2.75rem;
		flex-shrink: 0;
		width: 100%;
		background-color: rgb(16 45 62);
	}
			.page > .menubar > .menubar-header > .menubar-header-btn {
				width: 100%;
				height: 100%;
				text-align: left;
			}
				.page > .menubar > .menubar-header > .menubar-header-btn:active, 
				.page > .menubar > .menubar-header > .menubar-header-btn:focus {
					background-color: unset !important;
				}
	.page > .menubar > .navmenu {
		grid-area: main;
		z-index: 20;
		background-color: rgb(26 65 86);
		width: 100vw;
		overflow: auto;
	}

.main {
	grid-area: main;
	overflow: hidden;
}
	.main > .content {
		width: 100%;
		height: 100%;
		overflow: auto;
	}
		.main > .content.content-padding {
			padding: 0.25rem;
		}
		.main > .content.content-fit {
			overflow: hidden;
			display: flex;
			flex-direction: column;
		}

.main-overlay {
	grid-area: main;
	z-index: 2000;
	overflow: hidden;
	background-color: #f5f5f5;
	visibility: hidden;
}
	.main-overlay.main-overlay-visible {
		visibility: visible;
	}

.page-overlay {
	grid-row-start: menubar;
	grid-column-start: menubar;
	grid-row-end: main;
	grid-column-end: main;
	z-index: 3000;
	overflow: hidden;
	background-color: #f5f5f5;
}

@media (min-width: 641px) {
	.page {
		grid-template-rows: 1fr;
		grid-template-columns: 16rem 1fr;
		grid-template-areas:
			"menubar main";
	}
		.page.menubar-collapsed {
			grid-template-columns: 3.25rem 1fr;
		}
		.page:has(> .main-overlay-visible) {
			grid-template-columns: 3.25rem 1fr;
		}
			.page.menubar-collapsed .hide-collapsed {
				display: none !important;
			}
			.page:has(> .main-overlay-visible) .hide-collapsed {
				display: none !important;
			}

		.page > .menubar {
			box-shadow: 3px 0px 5px rgb(0 0 0 / 25%);
		}
		.page.menubar-collapsed > .menubar {
			height: 100vh;
		}

			.page.menubar-collapsed > .menubar > .navmenu::-webkit-scrollbar {
				display: none;
			}
			.page:has(> .main-overlay-visible) > .menubar > .navmenu::-webkit-scrollbar {
				display: none;
			}
			.page.menubar-collapsed > .menubar > .navmenu {
				-ms-overflow-style: none;
				scrollbar-width: none;
			}
			.page:has(> .main-overlay-visible) > .menubar > .navmenu {
				-ms-overflow-style: none;
				scrollbar-width: none;
			}

		.page > .menubar > .menubar-header {
		}
			.page > .menubar > .navmenu {
				display: flex;
				width: 100%;
				overflow: auto;
				flex-direction: column;
				flex-wrap: nowrap;
				justify-content: space-between;
				align-items: stretch;
				flex-shrink: 1;
				flex-grow: 1;
			}
		.page.menubar-collapsed > .menubar > .navmenu {
			display: block;
		}
		.page:has(> .main-overlay-visible) > .menubar > .navmenu {
			display: block;
		}
		.page.menubar-collapsed .navmenu .nav-item .nav-link {
			justify-content: center;
		}
		.page:has(> .main-overlay-visible) .navmenu .nav-item .nav-link {
			justify-content: center;
		}

	.main {
		grid-area: main;
		overflow: hidden;
	}
		.main > .content.content-padding {
			padding: 1rem;
		}
}

.navmenu .nav {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	flex-wrap: nowrap;
}
.navmenu .nav-item {
	width: 100%;
	padding: 1px 5px;
}
	.navmenu .nav-item:first-of-type {
		padding-top: 5px;
	}
	.navmenu .nav-item:last-of-type {
		padding-bottom: 5px;
	}
	.navmenu .nav-item .nav-link {
		padding: 0.4rem 0.5rem;
		color: #d7d7d7;
		border-radius: 4px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
		/*.navmenu .nav-item .nav-link {
			cursor: pointer;
		}*/
		.navmenu .nav-item .nav-link.active {
			background-color: rgba(255,255,255,0.25);
			color: white;
		}
		.navmenu .nav-item .nav-link:hover {
			background-color: rgba(255,255,255,0.1);
			color: white;
		}
.navmenu .nav-item.nav-item-admin .nav-link > * {
	opacity: 0.5;
}

.menubar .rzi {
	font-size: 1.65rem;
}

.menubar span.hide-collapsed {
	padding-left: 1rem;
}


.split-page {
	padding: 1.1rem;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.split-page-panel {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}
	.split-page-panel .rz-data-grid {
		overflow: hidden;
	}
.panel-content-cut .rz-panel-content-wrapper {
	overflow: hidden;
}
.panel-content-cut .rz-panel-content-wrapper .rz-panel-content {
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.vh-100-m {
	height: calc(100vh - 2.2rem);
}


/*.call-notification-wrapper .rz-data-grid {
	height: calc(35vh - 6.5625rem);
}*/

.fullscreen-tabs {
	overflow: hidden;
}
	.fullscreen-tabs > .rz-tabview-nav {
		/*flex-wrap: nowrap;*/
		margin: -0.5rem 0 0 -0.5rem;
		padding-bottom: 1px;
		overflow-x: auto;
		overflow-y: hidden;
	}
		.fullscreen-tabs > .rz-tabview-nav > li {
			flex-shrink: 0;
		}
		.fullscreen-tabs > .rz-tabview-nav li a {
			padding: 0.55rem 1rem 0.25rem 1rem !important;
		}
			.fullscreen-tabs > .rz-tabview-nav li:first-of-type a {
				font-weight: bold;
			}
		.fullscreen-tabs > .rz-tabview-nav li:first-of-type:not(.rz-tabview-selected) a {
			color: black;
		}

	.fullscreen-tabs > .rz-tabview-panels {
		display: flex;
		overflow: hidden;
	}
		.fullscreen-tabs > .rz-tabview-panels > .rz-tabview-panel {
			padding: 0;
			padding-top: 0.5rem;
			display: flex;
			flex-direction: column;
			flex-grow: 1;
			overflow: hidden;
		}
	.fullscreen-tabs .tab-line-break {
		flex-basis: 100%;
		height: 0;
		padding: 0 !important;
	}

hr {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	width: 100%;
}

.rz-datatable-loading-content.standalone {
	position: relative;
	left: 0;
	top: 0;
	transform: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem;
}

/*.valid.modified:not([type=checkbox]) {
	outline: 1px solid #26b050;
}*/
.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;
	}

.components-reconnect-show, 
.components-reconnect-failed, 
.components-reconnect-rejected {
	display: none !important;
}

#components-reconnect-modal {
	display: none !important;
}

ul[role=tablist] {
	flex-wrap: wrap;
}

.icon-btn {
	border: none;
	background: transparent;
	line-height: 0;
	padding: 0px;
}
	.icon-btn:hover, .icon-btn:focus {
		text-decoration: none;
		outline: none;
	}

.icon-btn:not(.state-disabled), 
a.icon-btn {
	color: black;
}
	.icon-btn:hover:not(.state-disabled), 
	a.icon-btn:hover {
		color: var(--rz-primary);
	}

.info-box.active {
	color: #d7d7d7;
}
	.info-box:has(.status-info-ok) {
		background-color: rgba(40,255,40,0.20) !important;
	}
	.info-box:hover:has(.status-info-ok) {
		background-color: rgba(40,255,40,0.25) !important;
	}
	.info-box:has(.status-info-warning) {
		background-color: rgba(255,180,40,0.35) !important;
	}
	.info-box:hover:has(.status-info-warning) {
		background-color: rgba(255,180,40,0.40) !important;
	}
	.info-box:has(.status-info-alert) {
		background-color: rgba(255,10,0,0.60) !important;
	}
	.info-box:hover:has(.status-info-alert) {
		background-color: rgba(255,10,0,0.68) !important;
	}
.outline-info-box {
	border: 2px solid rgba(255,255,255,0.15);
}
	.outline-info-box:hover, 
	.outline-info-box.active {
		border: 2px solid rgba(255,255,255,0);
	}

.line-separated-list > div:not(:last-child) {
	padding-bottom: 0.25rem;
	border-bottom: var(--rz-border-base-300);
}
.line-separated-list > div:not(:first-child) {
	padding-top: 0.25rem;
}

.strong-label {
	font-family: var(--rz-text-font-family);
	font-size: var(--rz-text-subtitle2-font-size);
	line-height: var(--rz-text-subtitle2-line-height);
	font-weight: var(--rz-text-subtitle2-font-weight);
	letter-spacing: var(--rz-text-subtitle2-letter-spacing);
	color: var(--rz-text-subtitle2-color);
	text-overflow: ellipsis;
	overflow: hidden;
}

.tertiary-text {
	opacity: 0.65;
	font-style: italic;
}

.text-baseline {
	vertical-align: baseline;
}

.selectbar-emphasis.rz-selectbutton .rz-button {
	border-color: var(--rz-base-400);
}
	.selectbar-emphasis.rz-selectbutton .rz-button.rz-state-active {
		border-color: var(--rz-base-400);
	}

.simple-form-row {
	display: flex;
	flex-direction: row;
	flex-basis: 100%;
	padding: 0.25rem 0;
}
	.simple-form-row.editing {
		/*padding: 0;*/
	}

.so-contact-box
{
	width: 100%;
}

.translucent-white-bg {
	background-color: rgb(255,255,255,0.4);
}

/*.nested-colorization-gray > .rz-data-grid-data > .rz-grid-table > tbody > .rz-state-highlight > td {
	background-color: var(--rz-base-200);
}
.nested-colorization-gray > .rz-data-grid-data > .rz-grid-table > tbody > .rz-state-highlight > td > .rz-cell-data {
	color: black;
}*/

.wrap-header-titles .rz-column-title-content {
	white-space: normal !important;
}

.nested-colorization-primary .rz-expanded-row-content, 
.nested-colorization-primary .rz-expanded-row-template {
	background-color: var(--fm-primary-superlight);
}
	.nested-colorization-primary .rz-expanded-row-content > td {
		background-color: var(--fm-primary-superlight);
	}
/*	.nested-colorization-primary .rz-light {
		background-color: var(--rz-primary-lighter);
	}*/

.nested-colorization-secondary {
	--rz-primary: var(--rz-secondary);
	--rz-primary-lighter: var(--rz-secondary-lighter);
	--rz-tabs-tab-selected-color: var(--rz-primary);
	--rz-grid-selected-color: var(--rz-primary);
	--rz-grid-selected-background-color: var(--rz-secondary-lighter);
}
	.nested-colorization-secondary .rz-expanded-row-content, 
	.nested-colorization-secondary .rz-expanded-row-template {
		background-color: var(--fm-secondary-superlight);
	}
		.nested-colorization-secondary .rz-expanded-row-content > td {
			background-color: var(--fm-secondary-superlight);
		}
/*		.nested-colorization-secondary .rz-light {
			background-color: var(--rz-secondary-lighter);
		}*/

.status-not-visited {
	color: red;
	font-weight: bold;
	position: relative;
	font-size: 1.05rem;
	right: 1px;
	width: 1px;
}

tr.rz-data-row.rz-state-highlight .rz-chkbox.datagrid-row-cascade-check .rz-chkbox-box {
	background-color: var(--rz-checkbox-checked-background-color);
	border: var(--rz-checkbox-checked-border);
}
	tr.rz-data-row.rz-state-highlight .rz-chkbox.datagrid-row-cascade-check .rz-chkbox-box .rz-chkbox-icon {
		width: var(--rz-checkbox-icon-width);
		height: var(--rz-checkbox-icon-height);
		font-size: var(--rz-checkbox-icon-font-size);
		color: var(--rz-checkbox-checked-color);
		vertical-align: middle;
		background-color: var(--rz-checkbox-checked-icon-background-color);
		border-radius: var(--rz-checkbox-checked-icon-border-radius);
	}

		tr.rz-data-row.rz-state-highlight .rz-chkbox.datagrid-row-cascade-check .rz-chkbox-box .rz-chkbox-icon:before {
			content: 'check';
		}

.rz-dropdown-panel.rz-popup {
	width: unset !important;
}



.thumb-view {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	overflow: auto;
	padding: 0 5px 10px 5px;
	min-height: 3rem;
}
		.thumb-view > .thumb-view-item {
			width: 256px;
			height: 240px;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			margin: 13px;
			box-shadow: rgba(0,0,0,0.65) 0px 5px 15px;
			background-color: var(--rz-base-700);
		}
		.thumb-view > .thumb-view-item > .file-list-thumb {
			width: 256px;
			height: 192px;
			color: white;
		}
		.thumb-view > .thumb-view-item > .thumb-view-description {
			height: 48px;
			color: white;
			word-wrap: break-word;
			padding: 2px 8px;
			overflow: hidden;
		}
		.thumb-view > .thumb-view-item > .file-list-thumb[src=""] {
			visibility: hidden;
		}
			.thumb-view > .thumb-view-item > .file-list-thumb[src=""]::after {
				content: "⏳";
				visibility: visible;
				width: 256px;
				height: 192px;
				top: -198px;
				position: relative;
				display: inline-flex;
				justify-content: center;
				align-items: center;
				font-size: 64px;
				opacity: 0.35;
			}

.gallery-dialog-content {
	width: 100vw !important;
	height: 100vh !important;
	display: flex;
	padding: 0;
	background-color: rgba(0,0,0,0.5);
	text-shadow: 0 2px 5px rgba(0,0,0,0.5), 0 3px 10px rgba(0,0,0,0.8);
}

	.gallery-dialog-content .rzi {
		font-size: 5rem;
		text-shadow: 0 2px 5px rgba(0,0,0,0.3), 0 3px 15px rgba(0,0,0,0.6);
	}
	.gallery-dialog-content .rz-dialog-content {
		padding: 0;
	}

#gallery-selected-image {
	max-height: 100%;
	max-width: calc(100% - 16rem);
	flex-grow: 0;
	flex-shrink: 1;
	margin: auto;
	box-shadow: rgba(0,0,0,0.25) 0 10px 35px 10px;
}

.key-button {
	box-sizing: border-box;
	line-height: 80px;
	font-size: 22px;
	text-align: center;
	width: 80px;
	color: #555;
	cursor: pointer;
	margin: 0 8px;
	height: 80px;
	border-color: #f2f2f2;
	border-style: solid;
	text-shadow: 0 0.5px 1px #777, 0 2px 6px #f2f2f2;
	border-width: 1px;
	border-radius: 10px;
	background: -webkit-linear-gradient(top, #f9f9f9 0%, #D2D2D2 80%, #c0c0c0 100%);
	font-family: sans-serif;
	display: inline-block;
	transition: box-shadow 0.3s ease, transform 0.15s ease;
	box-shadow: 0 0 1px #888,0 1px 0 #fff, 0 6px 0 #C0C0C0, 0 8px 17px rgba(#444, 0.4), 2px 1px 4px rgba(#444, 0.25), -2px 1px 4px rgba(#444, 0.25), 0 9px 16px rgba(#444, 0.1);
}
	.key-button:hover, .key-button:focus {
		box-shadow: 0 0 1px #888,0 1px 0 #fff, 0 4px 0 #C0C0C0, 0 2px 35px rgba(#444, 0.3), 2px 2px 4px rgba(#444, 0.25), -2px 2px 4px rgba(#444, 0.25), 0 7px 4px rgba(#444, 0.1);
		transform: translateY(2px);
	}
	.key-button:active {
		box-shadow: 0 0 1px #888,0 1px 0 #fff, 0 0 0 #C0C0C0, 0 0px 30px rgba(#444, 0.15), 2px 2px 4px rgba(#444, 0.25), -2px 2px 4px rgba(#444, 0.25), 0 0px 4px rgba(#444, 0.25);
		transform: translateY(4px);
	}


/* leaflet map styles: */
	#leaflet {
	
}

	#leaflet .leaflet-idwmap-layer {
		filter: blur(8px);
	}

	#leaflet .leaflet-so-label {
		padding: 0;
		background-color: white;
		border: 1px solid var(--fm-leaflet-label-color);
		border-radius: 5px;
		color: black;
		box-shadow: none;
		line-height: 1.0;
		pointer-events: all;
		cursor: pointer;
		background-color: rgba(255,255,255,0.98);
		min-width: 12px;
		min-height: 16px;
		box-shadow: var(--fm-leaflet-label-color) 0px 1px 3px -1px;
	}

		#leaflet .leaflet-so-label.leaflet-so-alarm {
			--fm-leaflet-label-color: rgb(255,0,0);
		}

		#leaflet .leaflet-so-label.leaflet-tooltip-right:before {
			top: 0;
			margin-top: 1px;
			border-right-color: var(--fm-leaflet-label-color);
		}

		#leaflet .leaflet-so-label.leaflet-tooltip-left:before {
			top: 0;
			margin-top: 1px;
			border-left-color: var(--fm-leaflet-label-color);
		}

	#leaflet .leaflet-so-id {
		background-color: var(--fm-leaflet-label-color);
		color: white;
		display: inline-block;
		padding: 1px 3px 1px 1px;
	}

	#leaflet .leaflet-so-alias {
		display: inline-block;
		padding: 1px 2px 1px 0;
	}

	#leaflet.z5 .leaflet-so-id,
	#leaflet.z6 .leaflet-so-id,
	#leaflet.z7 .leaflet-so-id {
		display: none;
	}

	#leaflet.z5 .leaflet-so-alias, 
	#leaflet.z6 .leaflet-so-alias, 
	#leaflet.z7 .leaflet-so-alias, 
	#leaflet.z8 .leaflet-so-alias, 
	#leaflet.z9 .leaflet-so-alias {
		display: none;
	}

	#leaflet.z5 .leaflet-visualized-variable,
	#leaflet.z6 .leaflet-visualized-variable,
	#leaflet.z7 .leaflet-visualized-variable {
		display: none;
	}

	#leaflet .leaflet-visualized-variable {
		display: inline-block;
		/*background-color: var(--fm-leaflet-label-color);*/
		color: var(--fm-leaflet-label-color);
		padding: 1px 2px 1px 3px;
		margin-left: -3px;
		border-left: 1px solid var(--fm-leaflet-label-color);
	}

	#leaflet .leaflet-variable-list {
		border-top: 1px solid var(--fm-leaflet-label-color);
		min-height: 4px;
		display: none;
	}

	#leaflet .leaflet-variable {
		padding: 1px 2px 0px 2px;
		margin: 1px;
		border-radius: 3px;
	}

		#leaflet .leaflet-so-label.leaflet-expanded {
			box-shadow: var(--fm-leaflet-label-color) 0px 1px 5px -1px;
		}

		#leaflet .leaflet-so-label.leaflet-expanded .leaflet-so-id {
			display: inline-block;
		}

		#leaflet .leaflet-so-label.leaflet-expanded .leaflet-variable-list {
			display: block;
		}

		#leaflet .leaflet-so-label.leaflet-expanded .leaflet-so-alias {
			display: inline-block;
		}

	#leaflet .leaflet-so-label:hover {
		box-shadow: var(--fm-leaflet-label-color) 0px 1px 5px -1px;
	}

		#leaflet .leaflet-so-label:hover .leaflet-so-id {
			display: inline-block;
		}

		#leaflet .leaflet-so-label:hover .leaflet-so-alias {
			display: inline-block;
		}

.page .leaflet-filter-widget {
	z-index: 1005;
	position: fixed;
	top: 10px;
	left: 305px;
	background-color: rgba(255,255,255,0.85);
}
.page.menubar-collapsed .leaflet-filter-widget {
	left: 100px;
}

.leaflet-gradient-legend {
	background: linear-gradient(0deg, #000066 0%, blue 10%, cyan 20%, lime 30%, yellow 40%, orange 50%, red 60%, Maroon 70%, #660066 80%, #990099 90%, #ff66ff 100%);
}

.split-page-panel > .rz-tabview > .rz-tabview-panels > .rz-tabview-panel {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	padding: 0.5rem 0 0 0;
}

.rz-tabview.overflow-hidden > .rz-tabview-panels {
	overflow: hidden;
}
	.rz-tabview.overflow-hidden > .rz-tabview-panels > .rz-tabview-panel {
		overflow: hidden;
		height: 100%;
		display: flex;
		flex-direction: column;
	}

/* SCADA schema styles */
.scada-schema-variable-edit-highlight {
	overflow: auto !important;
}
	.scada-schema-variable-edit-highlight .scada-schema {
		width: 100%;
		height: 100%;
		min-width: 45rem;
		min-height: 30rem;
	}
.rz-tabview-nav li.scada-schema-tab {
	box-decoration-break: slice;
}
.rz-tabview-panel:has(.scada-schema-wrapper) {
	overflow: auto;
	background-color: white;
	border: 1px solid #dddddd;
	border-top: 0;
	padding: 0 !important;
	max-width: 80rem;
}
.scada-schema-wrapper {
	display: grid;
	grid-template-areas: "scada-schema-area";
	overflow: hidden;
}
	.scada-schema-wrapper .scada-schema {
		grid-area: scada-schema-area;
	}

.scada-schema {

}
	.scada-schema.not-ready {
		opacity: 0.5;
		filter: blur(8px);
		pointer-events: none;
	}
	.scada-schema.scada-schema-hidden {
		opacity: 0;
		z-index: -1;
		pointer-events: none;
	}

	.scada-schema svg {
/*		max-width: 100%;
		height: 100%;*/
		width: 100%;
		height: auto;
	}

	.scada-variable-emphasis {
		animation: attention-blinking 3s infinite;
	}
	@keyframes attention-blinking {
		20% {
			filter: drop-shadow(2px 0px 2px rgba(0 127 255 / 0.5)) drop-shadow(-2px 0px 2px rgba(0 127 255 / 0.5)) drop-shadow(0px 2px 2px rgba(0 127 255 / 0.5)) drop-shadow(0px -2px 2px rgba(0 127 255 / 0.5));
		}

		0%, 40%, 100% {
			filter: drop-shadow(2px 0px 35px rgba(0 127 255 / 0)) drop-shadow(-2px 0px 35px rgba(0 127 255 / 0)) drop-shadow(0px 2px 35px rgba(0 127 255 / 0)) drop-shadow(0px -2px 35px rgba(0 127 255 / 0));
		}
	}
.scada-alert-glow {
	filter: drop-shadow(2px 0px 3px var(--fm-alert-color)) drop-shadow(-2px 0px 3px var(--fm-alert-color)) drop-shadow(0px 2px 3px var(--fm-alert-color)) drop-shadow(0px -2px 3px var(--fm-alert-color));
}
.scada-alert-blinking {
	animation: alert-blinking 1s ease-in-out infinite;
}
@keyframes alert-blinking {
	35%, 65% {
		filter: drop-shadow(2px 0px 1px var(--fm-alert-color)) drop-shadow(-2px 0px 1px var(--fm-alert-color)) drop-shadow(0px 2px 1px var(--fm-alert-color)) drop-shadow(0px -2px 1px var(--fm-alert-color));
	}

	0%, 100% {
		filter: drop-shadow(2px 0px 10px var(--fm-alert-color)) drop-shadow(-2px 0px 10px var(--fm-alert-color)) drop-shadow(0px 2px 10px var(--fm-alert-color)) drop-shadow(0px -2px 10px var(--fm-alert-color));
	}
}

.scada-schema-variable-edit-highlight .input-variable,
.scada-schema-variable-edit-highlight .input-variable .context-menu-element {
	cursor: pointer;
}
	.scada-schema-variable-edit-highlight .input-variable:not(:has(.input-variable:hover)):hover {
		filter: drop-shadow(2px 0px 2px rgba(0 127 255 / 0.5)) drop-shadow(-2px 0px 2px rgba(0 127 255 / 0.5)) drop-shadow(0px 2px 2px rgba(0 127 255 / 0.5)) drop-shadow(0px -2px 2px rgba(0 127 255 / 0.5));
	}

.scada-element-url {
	cursor: pointer !important;
}
	.scada-element-url:hover {
		filter: drop-shadow(2px 0px 2px rgba(127 0 255 / 0.5)) drop-shadow(-2px 0px 2px rgba(127 0 255 / 0.5)) drop-shadow(0px 2px 2px rgba(127 0 255 / 0.5)) drop-shadow(0px -2px 2px rgba(127 0 255 / 0.5)) !important;
	}



.row-clickable-grid > .rz-data-grid-data > table.rz-grid-table > tbody > tr.rz-data-row:hover td {
	background-color: var(--rz-grid-hover-background-color) !important;
}

.row-context-menu-grid > .rz-data-grid-data > table.rz-grid-table > tbody > tr.rz-data-row {
	cursor: alias;
}

.context-menu-element {
	cursor: alias;
}

.data-point-chart {
	width: 100%;
	height: 100%;
}
.data-point-chart-load-box {
	position: absolute;
	display: flex;
	z-index: 2;
	left: 3.5rem;
	bottom: 0.25rem;
	flex-direction: column;
}
	.data-point-chart-load-box button {
		margin-top: 0.25rem;
		text-align: left;
	}


.dashboard-column-wrapper {
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	overflow: auto !important;
}

	.dashboard-column-wrapper .dashboard-column-item {
		display: flex;
		flex-direction: column;
		flex: 1 1 35%;
		min-height: 15rem;
		overflow: hidden;
		margin-bottom: 0.5rem;
	}
		.dashboard-column-wrapper .dashboard-column-item .rz-data-grid {
			height: 100%;
		}


.tree-content-view {
	display: flex;
	flex-direction: column;
	overflow: auto;
}
	.tree-content-view .tree-content-view-tree {
		display: flex;
		flex: 1 1 30%;
		overflow: hidden;
		flex-direction: column;
	}
	.tree-content-view .tree-content-view-content {
		display: flex;
		flex: 1 1 70%;
	}
@media (min-width: 641px) {
	.tree-content-view {
		flex-direction: row;
		overflow: hidden;
		flex: 1 1;
	}
		.tree-content-view .tree-content-view-tree {
			margin-right: 1rem;
			margin-top: 0.5rem;
			flex: unset;
		}
		.tree-content-view .tree-content-view-content {
			flex: 1 1;
		}
}

.hide-group-interface { 
	/**/
}
	.hide-group-interface .rz-group-header {
		display: none;
	}
	.hide-group-interface .rz-col-icon {
		width: 0px;
	}

.group-emphasis > td {
	background-color: rgba(76, 175, 80, 0.10) !important;
	padding-left: 7.65rem;
	/*font-weight: bold;*/
	border-bottom: 1px var(--rz-success-light) solid;
}
	.group-emphasis.group-no-items {
		display: none;
	}
	.group-emphasis.group-no-name {
		display: none;
	}
	.group-emphasis.group-level-0 {
		font-weight: bold;
	}
		.group-emphasis.group-level-0 > td {
			border-bottom: 2px var(--rz-success-light) solid;
		}
	.group-emphasis .group-name-label {
		color: var(--rz-success-dark);
	}
/*	.group-emphasis .group-no-name-label {
		color: var(--rz-success);
		opacity: 0.5;
	}*/
