body
{
	font-family: 'Public Sans', 'Open Sans', Arial, "Helvetica Neue", Roboto, Helvetica, sans-serif !important;
	background-color: white;
}

a
{
	text-decoration: none !important;
}

button, input, optgroup, select, textarea
{
	font-family: unset;
}

:root {
	--control-grey: #fbfbfc;
	--control-grey-dark: #f0f0f0;
	--halo-grey: #f7f8fc;
	--halo-greyo: #fafafc;
	--halo-grey-shadow: #f0f1f5;
	--halo-grey-shadow-alpha: rgba(160, 160, 160, .08);
	--halo-grey-shadowo: #f3f3f5;
	--halo-highlight: #eaeaea;
	--halo-highlight-orange: #fff7f0;
	--halo-red: #E74400;
	--blue-button: #5566FF;
	--blue-light: #b8d9ff;
	--blue-light-opaque: #EBEEFF;
	--selected-highlight: #ffece2;
	--selected-highlight-dark: #ff996a;
	--selected-highlight-mid: #ffd1bd;
	--selected-highlight-grey: #e2e2e1;
	--blue-selected-highlight: #b8d9ff;
	--text-secondary: #777777;
	--form-orange-text: #E8713D;
	--button-padding: 6px 12px 6px 12px;
	--button-height: 36px;
	--halo-transition: opacity 0.2s ease-in-out, filter 0.2 ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	--form-white: #fff;
	--halo-orange: #E8713D;
	--halo-green: #1A9882;
	--halo-light-green: #E9FAF7;
	--halo-bright-green: rgba(26, 255, 130, 0.62);
	--dark-border: #333;
	--form-disabled: #6c757d;
	--border-gray: #E0E2E7;
	--border-light-gray: #ECECEC;
	--dark-button-background: #1D1F2C;
	--stream-border: #8C8D92;
	--halo-delete: #EB3D4D;
	--halo-delete-darker: #e5192d;
	--neutral-gray: #667085;
	--halo-royal-blue: #3250FF;
	--halo-light-blue: #2BB2FE;
	--halo-background-blue: #b8d9ff63;
}

.halogrey
{
	background-color: var(--halo-grey);
	xbackground: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 28%, rgba(250,250,250,1) 100%);
}

/* CUSTOM WIDTHS */
.w-10, .w-xs-10 { width: 10%!important; }
.w-15, .w-xs-15 { width: 15%!important; }
.w-20, .w-xs-20 { width: 20%!important; }
.w-50, .w-xs-50 { width: 50%!important; }
.w-75, .w-xs-75 { width: 75%!important; }
.w-95, .w-xs-95 { width: 95%!important; }

/* BREAKPOINTS */

/* SM breakpoint */
@media (min-width: 576px) {
	/* CUSTOM WIDTHS */
	.w-sm-10 { width: 10%!important; }
	.w-sm-15 { width: 15%!important; }
	.w-sm-20 { width: 20%!important; }
}

/* MD breakpoint*/
@media (min-width: 768px) {
	/* CUSTOM WIDTHS */
	.w-md-10 { width: 10%!important; }
	.w-md-15 { width: 15%!important; }
	.w-md-20 { width: 20%!important; }
	.w-md-50 { width: 50%!important; }
	.w-md-75 { width: 75%!important; }
}

/* LG breakpoint */
@media (min-width: 992px) {
	/* CUSTOM WIDTHS */
	.w-lg-10 { width: 10%!important; }
	.w-lg-15 { width: 15%!important; }
	.w-lg-20 { width: 20%!important; }
	.w-lg-50 { width: 50%!important; }
	.w-lg-75 { width: 75%!important; }
}

.halologo
{
	object-position: top;
	height: 122px;
	max-height:140px;
	max-width: 340px;
}

.halologospacer
{
	object-fit: contain;
	object-position: top;
	width: 52px;
	display: none;
	max-height: 122px;
	max-width: 80px;
}


.card
{
	border-radius: unset;
	border: unset;
}

.card-body
{
	padding: 1rem;
}

.edit-sync-site-section input {
	margin: 5% 0;
}

.shop-items
{
	display: grid;
	grid-auto-columns: max-content;
	grid-auto-flow: dense;
	grid-auto-rows: minmax(100px, auto);
	grid-gap: 25px;
	grid-template-columns: repeat(5, 1fr);
	margin: auto;
}

@media (max-width: 1500px) {
	.shop-items {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 1000px) {
	.shop-items {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 800px) {
	.shop-items {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 400px) {
	.shop-items {
		grid-template-columns: repeat(1, 1fr);
	}
}

.customer-details-text {
	display: flex;
	text-align: center;
	flex-direction: column;
	width: 100%;
	padding: 2rem 5rem 0;
}

.customer-details-text h1 {
	font-weight: 1200;
}

.customer-details-text h3 {
	font-style: italic;
}

.customer-details-form {
	margin: 1rem 5rem 3rem;
	padding: 2rem 8%;
	background: white;
	border-radius: 1rem;
	border: 1px solid gainsboro;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.625rem;
}

.form-group {
	margin-right: 0.625rem;
	flex: 1;
}

.form-group:last-child {
	margin-right: 0;
}

@media screen and (min-width: 801px) {
	.form-group {
		flex-basis: 45%;
		flex-grow: 0;
		flex-shrink: 0;
	}
}

@media screen and (max-width: 800px) {
	.form-group {
		flex-basis: 95%;
		flex-shrink: 0;
		flex-grow: 0;
	}
}

.card-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 5%;
	gap: 2%;
	justify-content: center;
}

.card-container form {
	padding: 2rem;
}

.subscription-card {
	text-align: center;
	border: 1px solid gainsboro;
	height: 24rem;
	background-color: white;
	border-radius: 2rem;
	margin: 0.5rem;
	flex: 1;
	min-width: 12rem;
	max-width: 20rem;
}

.subscription-card h4 {
	padding: 1rem 0 2rem;
	font-weight: bold;
}

.subscription-card-image {
	margin: 1rem;
	height: 10rem;
	width: 8rem;
}

.contract-length-label {
	background-color: var(--form-orange-text);
	opacity: 65%;
	border-radius: 20px;
	padding: 0.5rem;
	margin: 1rem;
}

.halopane
{
	background-color:white;
	border-color: #F0F1F3;
	border-right: 1px solid #F0F1F3;
}

.loginbanner
{
	position: absolute;
	bottom: 2rem;
	font-weight: bold;
	font-size: 2.8rem;
	color: #505050;
}


.nmobiletext-sm
{
	display: none !important;
}

.nmobiletext-xs
{
	display: none !important;
}

.login1
{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	align-self: stretch;
}

.loginedit
{
	position: relative;
	background-color: var(--control-grey);
	border-radius: 8px;
	border: 1px solid gainsboro;
}

.loginedit input
{
	border:none !important;
}

.loginedit input::placeholder {
	color: gainsboro;
}

.loginedit input::placeholder {
	color: gainsboro;
}

.loginicon
{
	position: absolute;
	right: 12px;
	top: 12px;
}

.deleteicon
{
	color: red;
}

.whiteback
{
	background-color: white;
}

.loginlogo
{
	width: 40%;
	max-width: 300px;
	min-width: 200px;
}

.loginpanel
{
	background-color: white;
}

.loginpanel h1
{
	font-size: 2.0rem;
}

.loginpanel input
{
	padding: 8px;

	border-radius: 8px;

	border: 1px solid gainsboro;
}

.logingap
{
	gap: 50px;
}


.whitepanel
{
	background-color: white;
}

.whitepanel h1
{
	font-size: 2.0rem;
}

.whitepanel input, .whitepanel select, .whitepanel textarea
{
	background-color: var(--control-grey);
	padding: 8px;

	border-radius: 8px;
	border: 1px solid gainsboro;
}

select[multiple]
{
	border-radius: 4px;
}

.flex-1
{
	flex: 1;
}

.scrollpanel
{
	overflow-y: auto;
	max-height: 80vh;
}

.scrollingbody
{
	position: relative;
	xmax-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	xheight: 100%;
}

.shortscrollingbody
{
	overflow-x: hidden;
	overflow-y: hidden;
}

.primaryscrollmax
{
	max-height: 100vh;
}

.vstackmain
{
	overflow-x: hidden;
	overflow-y: auto;
}

@media only screen and (max-height: 768px) and (min-width: 768px)
{
	html
	{
		overflow-y: auto;
	}

	.shortscrollingbody
	{
		overflow-y: auto;
	}

	.primaryscrollmax
	{
		max-height: unset;
	}

	.scrollingbody
	{
		max-height: unset;
		overflow-x: hidden;
		height: 100%;
	}

	.vstackmain
	{
		overflow-y: auto;
	}
}

.leftmenu
{
	position: sticky;
	top: 0px;
	xmin-height: 100vh;

	width: 303px;
}

.animatewidth
{
	transition: width 0.2s ease-in-out;
}

@keyframes scale-move {
	0%   { transform: scale(3.98, 1); }
	100% { transform: scale(1, 1); }
}


.hidemenutext
{
	width: 76px !important;

	xanimation: scale-move 0.4s ease-in-out;
}

.leftmenutext
{
	xopacity: 1;
}

.noleftmenutext
{
	display: none;
}

.hidemenutext .leftmenutext
{
	display: none !important;
}


.hidemenutext .noleftmenutext
{
	display: block !important;
}

.hidemenutext .halologo
{
	display: none !important;
}

.hidemenutext .halologospacer
{
	display: block !important;
}

.nomenu .leftmenu
{
	display: none !important;
}

a.leftmenuitem
{
	display: block;
	xfont-size: 1.1rem;
	font-weight: 600;
	color: black;
	text-decoration: none !important;
	cursor: pointer;
}


.leftmenuheader
{
	background-color: #F0F1F3;
}

.leftmenuspacer
{
	min-width:40px;
	vertical-align: middle;
	height: 32px;
}

.headerbar
{
	background-color: white;
	border-radius: 0px;
}

.locationstack
{
}

.lh-2
{
	display: inline-block;
	line-height: 1.72rem;
}

.topsearch
{
	xwidth: 70%;
	border: 0px solid whitesmoke;
	background-color: transparent;
}

.altmain .topsearch::placeholder
{
	color: whitesmoke;
}

.altmain .textmuted
{
	color: white;
}

.topicon
{
	color: #AAAABB;
}

.iconmuted
{
	color: #CCCCCC;
}

.searchbar
{
	position: relative;
	padding: 6px;
	border-radius: 8px;
	border: 1px solid #F0F1F3;
	background-color: white;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.searchbar input
{
	border-width: 0px !important;
}

.searchbarheight
{
	height: 40px;
	max-height: 40px;
}

input:focus
{
	outline: none;
}

.noborder
{
	border: 0px;
}

.show > .dropdown-menu {
	xmax-height: 800px;
	xvisibility: visible;

	xdisplay: block;
}


.xfade
{
	transition: opacity 0.1s ease-in-out;
}

.max-vh-100 {
	max-height: 100vh;
}

.dropdown-menu {
	xdisplay: block;
	xmax-height: 0;
	xopacity: 0;

	max-width: 96vw;

	overflow: hidden;

	animation: fadeInFromNone 0.1s ease-in-out;

	padding: 0px;
	z-index: 100;

	box-shadow: 4px 4px 10px #bbb;
}

.dropdown-item .btn
{
	background-color: white;
	border-radius: 0px !important;
}

.dropdown-item.btn
{
	background-color: white;
	border-radius: 0px !important;
	padding: .25rem 1.5rem !important;
	min-height: auto;
}

.dropdown-menu .btn
{
	border-radius: 0px !important;
	min-height: auto;
}

.dropdown-menu button
{
	display: flex;
	align-items: center;
}

.dropdown-item
{
	font-size: 0.9rem;
}

.dropdown-item:nth-of-type(1)
{
	padding-top: 0.3rem !important;
}

.dropdown-divider
{
	margin: 0.25rem 0;
}

@-webkit-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@-moz-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@-o-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

.mediarow
{
	align-items: stretch;
	display: flex;
	flex-direction: row;

	border-top: 1px solid var(--control-grey-dark);
	background-color: white;
}

.mediarow:hover
{
	filter: brightness(0.98);
}

.medialabel
{
	flex: 1;
	background-color: var(--control-grey);

	xborder-top: 1px solid var(--control-grey-dark);
	border-right: 1px solid var(--control-grey-dark);

	padding: 1rem;

	font-size: 0.86rem;
}

.mainwidth
{
	max-width: 100vw;
}

.mediacontent
{
	min-height: 52px;
	display: inline-flex;
	flex: 1;
	background-color: white;
	xborder-top: 1px solid var(--control-grey-dark);
	height: 100%;
	vertical-align: middle;
	align-items: center !important;
	padding: 0.25rem 1rem;
	max-width: 50vw;
}

.mediacontent span
{
	white-space: normal !important;
	text-overflow: ellipsis;
	overflow: hidden;

}

.usericon
{
	min-width: 42px;
	min-height: 42px;
	border-radius: 50%;
	height: 42px;
}

.usermenu
{
	border-radius: 8px;
	padding: 8px;
	cursor: pointer;
}

.userpanel
{
	border-radius: 8px;
	padding: 0px 0px;
}

label span
{
	user-select: none;
}

label
{
	user-select: none;
}


.lightbox-image
{
	max-height: 160px;
}

.thumbOverlayCount
{
	position: absolute;
	top: 10px;
	left: 10px;

	padding: 0px 6px;
	border-radius: 10px;
	font-size: 0.8rem;
	background-color: #4F4F55;
	color: white;
}

.lightbox-pill
{
	padding: 8px 12px;
	background-color:#A7EADE;
	x: #ffd3c1;
	border-radius: 16px;
	font-size: 0.8rem;
	color: #008000;
}

.entity-collection-card .mtrl-card:hover
{
	background-color: whitesmoke;
}

.xgridcard .labelfa .userpanel {
	xtransform: translateX(-4px);
}

.xgridcard .labelfa .userpaneltf

{
	transform: translateX(-4px);
}

.datagrid
{
	background-color: white;
	border-radius: 4px;

	width: 100%;
	min-height: 400px;
}


/* #ECECEF */

.snappanel
{
	background-color: white;
	border-radius: 8px;
	border: 1px solid #F5F5F5;
	/*box-shadow: #F0F0FF 0px 0px 30px;
	box-shadow: #f1f1f1 0px 0px 10px;*/
	box-shadow: var(--halo-grey-shadow-alpha) 0px 0px 16px;

	overflow: hidden;
}

.streampanel
{
	background-color: white;
	border-radius: 8px;
	border: 1px solid #F5F5F5;
	/*box-shadow: #F0F0FF 0px 0px 30px;
	box-shadow: #f1f1f1 0px 0px 10px;*/
	box-shadow: var(--halo-grey-shadow-alpha) 0px 0px 16px;
}

.snappanel .card
{
	background-color: white;
	border: none;

	xoverflow: hidden;
}

.flatpanel
{
	background-color: white;
	border-radius: 8px;
	border: 1px solid #F5F5F5;

	overflow: hidden;
}

.dialogpanel
{
	max-width: 720px;
}

.snappanelo
{
	background-color: white;
	border-radius: 8px;
	border: 1px solid #F5F5F5;
	/*box-shadow: #F0F0FF 0px 0px 30px;
	box-shadow: #f1f1f1 0px 0px 10px;*/
	box-shadow: var(--halo-grey-shadow) 0px 0px 16px;
}

.snappanel p
{
	color: #777777;
}

.floatpanel
{
	box-shadow: var(--halo-grey-shadow) 0px 0px 16px;
}

.dialogpanel
{
	padding: 16px;
}


.scrollgridw
{
	width: max-content;
}

.topnav
{
	display: none !important;
}


.growlink
{
	transition: all .2s ease-in-out;

&:hover {
	 transform: scale(1.06);
	 z-index: 1;
 }
}

.nglookupedit
{
	border-radius: 8px;
	padding: 8px;
	border: 1px solid gainsboro;
}


.snapgap
{
	gap: 1.25rem;
}

.snapgap-vertical
{
	gap: 0 1.25rem;
}

.dialoggap
{
	gap: 12px;
}

.controlgap
{
	gap: 4px;
}

.controlgap2
{
	gap: 8px;
}

.locationgap
{
	gap: 4px;
}

.scrollparentw
{
	width: 100%;
	overflow-x: hidden;
}

.pagemain
{
	max-width: 100vw;
	overflow-x: hidden;
}

.usercard
{
	padding: 20px;
	min-height: 200px;
	border-radius: 8px;

	background: rgb(242,0,0);
	background: linear-gradient(180deg, rgba(242,0,0,0.48) 0%, rgba(255,128,42,0.76) 49%, rgba(255,255,255,1) 53%, rgba(255,255,255,1) 100%);
	abackground-image: linear-gradient(to top, rgba(255,0,0,0), rgba(255,0,0,1));
}

.usertext
{
	padding-left: 0.5rem;
}

.userpanelsm .usertext
{
	padding-left: 0.35rem;
}

.xgridcard .usertext
{
	padding-left: 0.25rem;
}

.imagepicker
{
	background-image: url('images/defaultuser.jpg');
	background-size: cover;

	width: 72px;
	height: 72px;

	border-radius: 50%;

	border:1px solid whitesmoke;
}

.nopointer
{
	pointer-events: none;
}

.text-mid
{
	color: #c4c4c4;
}

.grey-subtext {
	font-size: 0.75rem;
	color: var(--text-secondary);
}


.xgridcard .text-mid-grid
{
	color: #c4c4c4;
}

.imagetextselect
{
	cursor: default !important;
//border-bottom: 1px solid white !important;
}

.imagetextselect:hover
{
	background-color: var(--selected-highlight-grey);
	border-color: var(--selected-highlight-grey) !important;
}

.imagetextselect:hover .text-mid
{
	color: #333333;
}

.imagetextimage
{
	height: 28px;
}

.imagetextimagebig
{
	height: 32px;
}

.ellipsisify
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.xgridimage
{
	height: 72px !important;
	border-radius: 4px;
	padding: 0px;
	margin: 6px 0px 6px 0px;

	filter: drop-shadow(4px 4px 6px #EEE);

	max-width: 180px;
}

.search-pills
{

}

.facet-title span:after
{
	width: 16px;
	text-align: center;
	background-color: whitesmoke;
	border-radius: 8px;
	padding-left: 0px !important;
	line-height: 1.3rem;
}

.facet-title a.collapsed
{
	line-height: 1.3rem;
}

.facet-pills .well
{
	padding: 4px 8px !important;
	border-radius: 8px;
}

.facet-divider
{
	border-color: #f5f5f5 !important;
}

.mtrl-card
{
	border-radius: 8px !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

.popupfilter
{
	width: 260px;
	min-width: 200px;
	min-height: 200px;
	background-color:white;

	display: none;

	box-shadow: 4px 4px 4px #bbb;
	border: 1px solid gainsboro;

	border-radius: 8px;
}

.xgridcardimage
{
	height: initial !important;
}

.xgridcardimageimg
{
	filter: drop-shadow(4px 4px 6px #EEE);
}

.xgridcardgrid
{
	xpadding: 10px !important;
	xmargin: -10px !important;
	background-color: inherit;
	box-shadow: none;
	border-color: transparent;
	overflow-x: visible;
}

.xgridcardview
{
	padding: 0px !important;
}



.xgridcardview
{
	display: grid !important;

	grid-column-gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.cameracol
{
	width: 132px;
	text-wrap: nowrap;
}


.d-flex-normal
{
	display: flex;
}

.entity-selection-button
{
	padding-left: 8px !important;
	text-align: right;
	min-width: 66px !important;
}

.assetcol
{
	width: 132px;
	text-wrap: nowrap;
}

.xcardfa,.xcardlabel
{
	display: none !important;
}

.xgridcard
{
	display: flex;
	flex-direction: column;

	background-color: white !important;
	xpadding: 4px 0px !important;

	padding: 8px 2px !important;
	border: 1px solid #F0F0F0 !important;

	box-shadow: #eeeeee 0px 0px 8px;
	xbox: #d9d9d9 4px 4px 6px;

	min-width: 180px !important;
	max-width: 380px;
}

.xgridcard:hover
{
	background-color: var(--halo-highlight) !important;
	obackground-color: whitesmoke !important;
}

.xgridcard .xcardfa
{
	display: block !important;
	color: #F0F0F0;
	orange_color: #ffac56;
	xcoloro: #ffdfbf;
	xcolor: #e2deff;

	min-width: 24px;
	text-align: center;
	xmargin-right: 0.25rem !important;
}

.xgridcard:hover .xcardfa
{
	color: gainsboro;
}

.labelfa
{
	xgap: 0.25rem;
}

.xgridcard .xcardcontent
{
	flex: 1.3;
}

.xgridcard .xcardlabel
{
	font-size: 0.7rem;
	flex: 1;
	display: block !important;
	xmargin-right: 0.25rem !important;
	xfont-weight: bold;

	color: #777777;
}

.xgridtextempty
{
	padding: 8px !important;
	font-size: 1.2rem;
}

.xgridcard .datestack
{
	flex-direction: row !important;
	align-items: center !important
}

.xgridcard .xgridimage
{
	padding: 0px 0px;
	background-color: transparent;
	border-radius: 0px;
	height: 128px !important;
	order: 1;

	margin: 0px 0px;

	max-width: 380px;
}

.xgridcard .xgridcardimage
{
	padding: 4px 0px !important;
}


.xgridcard .xcardorder1
{
	order: 1;
}

.xgridcard .xcardorder2
{
	order: 2;
}

.xgridcard .xcardorder3
{
	order: 3;
}

.xxgridcarditem
{
	padding-bottom: 4px !important;
	padding-top: 4px !important;
}

.xgridcard .xgridsecondary
{
	order: 2;
}

.imagetextbig
{
	align-items: center;
}

.xgridcard .imagetextbig
{
	align-items: start !important;
	justify-content: space-between !important;
	margin-bottom: 0.25rem !important;
}

.xgridcard .selectimagetext
{
	gap: 0px;
	xjustify-content: space-between !important;
	min-height: 30px;
}

.img-max
{
	object-fit: contain;
	width: 100%;
	filter: drop-shadow(4px 4px 6px #EEE);
}

.xgridcard .imagetextimage
{
	height: 24px;
	min-height: 24px;
	min-width: 24px;
	object-fit: contain;
	display: none;
}

.xgridcard .imagetextimagebig
{
	height: 96px;
	min-height: 96px;
	min-width: 50px;
	object-fit: contain;
}

.xgridcard .usericon
{
	height: 24px;
	min-height: 24px;
	min-width: 24px;
}

.icontextfield i
{
	min-width: 36px;
}

.userpanelsm .usericon
{
	height: 24px;
	min-height: 24px;
	min-width: 24px;
}

.userspacersm
{
	margin-left: 30px;
}

.min-w-100
{
	min-width: 100%;
}

.xgridcard .userrole
{
	display: none;
}

.xgridcard .username
{
	xfont-weight: normal !important;
}

.xgridcard
{
	border-radius: 4px !important;
}

.assignmentgridrow
{
	height: 70px;
}

.xgridcard.videogridrow
{
	padding-top: 0px !important;
	padding-bottom: 6px !important;
	xborder-width: 0px !important;
}

.xgridrowselected
{
	background-color: var(--selected-highlight) !important;
	border: var(--halo-orange) 1px solid !important;
}

.usercardimage
{
	object-fit: cover;
	height: 128px;
	width: 128px;
	border-radius: 50%;
}


.locationbar
{
	xmin-height: 32px;
}

.locationitemroot
{
	margin-left: -4px;
	padding: 0px 4px 0px 4px;
	text-decoration: none !important;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

}

.locationitemroot:hover
{
	background-color: white;
}

h2.locationheader
{
	font-size: 1.8rem;
	font-weight: 600;
}

.locationitem
{
	padding: 0px 4px 0px 8px;

	text-decoration: none !important;

	border-radius: 4px;

	user-select: none;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

}


.line1:empty:before
{
	content: "\00a0";
}

.locationitem:empty
{
	display: none;
}

.locationitem:hover
{
	background-color: white;
}


.locationitem:before
{
	content: '\25B6';
	padding-right: 8px;
	color: #AAAAAA;

	font-size: 0.8rem;
}


.videoplayer
{
	background-color:black;
	min-height: 480px;
	width: 100%;
}

.upload-control
{
	xmax-width: 720px;
}

.vl
{
	border-left: 1px solid silver;
}

.vlr
{
	border-right: 1px solid whitesmoke;

	margin-right: 8px;
	width: 2px;
	height: 76%;
}

.hrf
{
	width: 90%;
	height: 1px;

}

.colorblock
{
	display: inline-block;
	padding: 4px 8px 4px 8px;
	border-radius: 8px;
	background-color: #E9FAF7;
	text-align: center;
	font-weight: bold;
}

.xgridcard .colorblock
{
	display: block;
}

.colorblock:empty
{
	display: none;
}

.hideempty:empty
{
	display:none;
}

.iconcircle
{
	padding: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: red;
	color: white;

	text-align: center;
	vertical-align: middle;
	line-height: inherit !important;
}

.iconcircleimg
{
	height: 22px;
	width: 22px;

	object-fit: contain;

	margin-top: 15%;
}

.iconcircleblue
{
	padding: 4px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #CCDDFF;
	color: blue;
	text-align: center;
	vertical-align: middle;
}


a.blacklink
{
	font-weight: normal !important;
	text-decoration: none !important;
	color: #333333;
}

a.translink
{
	text-decoration: none !important;
	color: inherit;
}

a.translink > i {
  padding: 17px;
}

a.translink:hover {
  background-color: whitesmoke;
}

.altmain a.translink:hover {
  background-color: var(--dark-button-background);
}

a.deadlink
{
	text-decoration: none !important;
	color: inherit;
}

a.deadlink:hover
{
	opacity: 1.0;
}

a.flatlink
{
	border-radius: 8px;
	text-decoration: none !important;
	color: inherit;
}

a.flatlink:hover
{
	background-color: whitesmoke;
}


.flatlink
{
	border-radius: 8px;
	text-decoration: none !important;
	color: inherit;
}

.flatlink:hover
{
	background-color: whitesmoke;
}

a.gridlink
{
	border-radius: 8px;
	text-decoration: none !important;
	color: inherit;
}

a.gridlink:hover
{
	background-color: white;
}

.gridlink
{
	border-radius: 8px;
	text-decoration: none !important;
	color: inherit;
}

.gridlink:hover
{
	background-color: white;
}

a.translinkbold
{
	font-weight: bold !important;
	text-decoration: none !important;
	color: inherit;
}

.xbtn
{
	min-width: 80px;
}

input[type="button"], button
{
	cursor: pointer;
}

form
{
	margin-block-end: 0px;
}

.form-control:not(input[type="file"])
{
	background-color: var(--control-grey) !important;
	padding: 8px;

	border-radius: 8px;
	border: 1px solid gainsboro;

	height: auto;
}

.form-control-sm
{
	height: auto;
}

.checksumtext
{
	padding: 0px;
	border-width: 0px;
	background-color: white !important;
	word-break: break-word;
}

.select2-search__field
{
	background-color: var(--control-grey) !important;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid gainsboro;
}

.select2-container .select2-selection--single
{
	background-color: var(--control-grey) !important;
	padding: 2px;
	border-radius: 8px;
	border: 1px solid gainsboro;
}


.select2-container .select2-selection--multiple
{
	background-color: var(--control-grey) !important;
	padding: 2px;
	border-radius: 8px;
	border: 1px solid gainsboro;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice
{
	border: none !important;
	margin-top: 3px;
}

.select2-container .select2-selection--single
{
	height: auto;
}

.select2-selection__rendered:after
{
	content: "\00a0";
}

.select2-container--default .select2-selection--single .select2-selection__arrow
{
	height: 100%;
	top: 0px;
}

.select2-results__option
{
	padding: 4px;
	font-size: 0.9rem;
}

.select2-search__field
{
	border-radius: 4px;
}

.whitebutton
{
	text-decoration: none !important;
	font-size: 0.9rem;
	border-radius: 8px;
	border: 1px solid #cdd1da;
	padding: var(--button-padding);
	min-height: var(--button-height);

	background-color: #FCFCFD;

	color: black;
}

.whitebutton:hover
{
	background-color: whitesmoke;

	color: black;
}

.mw-dt
{
	min-width: 800px;
}

.mw-800
{
	min-width: 800px;
}

.mw-500
{
	min-width: 500px;
}

.mw-420
{
	min-width: 420px;
}

.mw-320
{
	min-width: 320px;
}

.mw-2xx
{
	min-width: 220px;
}

.long-text-column
{
	max-width: 400px;
}

.w-text-mid
{
	min-width: 200px;
	max-width: 300px;
	width: 25%;
}

.pt-15
{
	padding-top: 6px;
}

.btn-group-vertical
{
	gap: 12px;
}

.btnheight
{
	min-height: var(--button-height);
}

.btnheightp3
{
	min-height: 68px;
}

.btn
{
	min-width: 36px;
	font-size: 0.9rem;
	border-radius: 8px !important;
	border-color: #cdd1da;
	x:#ECECEC;
	background-color: #FCFCFD;
	color: black;
	padding: var(--button-padding);
	min-height: var(--button-height);

	box-shadow: none !important;

	xbox-shadow: 0px 0px 2px silver !important;
	border-color: gainsboro;

	white-space: nowrap;

	transition: opacity 0.22s ease-in-out, filter 0.22s ease-in-out;
}

.mobiletext
{

}

.btn:hover
{
	background-color: whitesmoke;
	color: black;
	border-color: silver !important;
}

.btn-link
{
	color: black !important;
}

.btn-danger
{
	background-color: red;
	color: white;
	font-weight: bold;
}

.btn-primary, .btn-danger
{
	/*background-color: var(--blue-button) !important;*/
	background-color: var(--halo-red) !important;
	border-color: #FF5555 !important;

	color: white;
	font-weight: bold;
}

.btn-primary:hover, .btn-danger:hover
{
	background-color: #ff4b00 !important;
	color: white;

	border-color: #d30000 !important;
}

.bluebutton, a.bluebutton
{
	background-color: #5566FF;

	font-size: 0.9em;

	border-radius: 8px;
	border: 1px solid #EcEcEc;
	padding: var(--button-padding);
	min-height: var(--button-height);

	color:white;
	font-weight: bold;

	white-space: nowrap !important;
}

.bluebutton:hover, a.bluebutton:hover
{
	background-color: #7788FF;
}

.redbutton
{
	border-radius: 8px;
	font-size: 0.9em;
	background-color:red;

	padding: var(--button-padding);
	min-height: var(--button-height);

	border-color: #FF5555;

	color:white;
	font-weight: bold;

	white-space: nowrap !important;
}

.redbutton:hover
{
	background-color: #FF9999;
}


button i
{
	color: #888899;
}

.btn-warning.disabled .btn-warning:disabled
{
	filter: none !important;
	opacity: 0.65 !important;
}

.actionbutton.btn-warning
{
	filter: none !important;
}

.actionbutton
{
	border-radius: 8px;
	font-size: 0.9em;
	background-color: var(--halo-red);
	border-color: #FF5555;
	padding: var(--button-padding);
	min-height: var(--button-height);
	color:white;
	font-weight: bold;

	white-space: nowrap !important;
}

.actionbutton:hover
{
	background-color: #ff4b00;
	color: white;

	border-color: #d30000 !important;
}

.secondbutton
{
	border-radius: 8px;
	font-size: 0.9em;
	background-color: #111111;
	padding: var(--button-padding);
	min-height: var(--button-height);
	color: white !important;
	font-weight: bold !important;

	white-space: nowrap !important;
}

.secondbutton:hover
{
	background-color: #4F4F55;
	color: white !important;
	border-color: black !important;
}

.palebutton
{
	border-radius: 8px;
	font-size: 0.9em;
	padding: var(--button-padding);
	min-height: var(--button-height);
	background-color: #eeeef0;
	border: 0px solid gainsboro;

	font-weight: bold;
	color: black;

	white-space: nowrap !important;
}

.palebutton:hover
{
	background-color: #silver;
}


.actionbutton i
{
	color: white;
}

.btn-primary i
{
	color: white;
}



.btn-warning i
{
	color: unset !important;
}

.btn-warning
{
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
}

.btn-warning:hover
{
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
}


.btnstart
{
	border-top-left-radius: 8px !important;
	border-bottom-left-radius: 8px !important;
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
	border-right-width: 0px !important;
}

.btnend
{
	border-top-left-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
	border-top-right-radius: 8px !important;
	border-bottom-right-radius: 8px !important;
	border-right-width: 1px !important;
}

.btn.disabled, .btn:disabled
{
	opacity: 0.2;
	filter: grayscale(100%);
}

.fa-12x
{
	font-size: 1.1em;
}

.fa-15x
{
	font-size: 1.5em;
}

.table-striped tbody tr:nth-of-type(odd)
{
	background-color: unset;
}

.table-striped td
{
	border-width: 0px;
}

table th
{
	padding: 12px 22px 12px 22px;
	background-color: #FCFCFD;
	border-bottom: 1px solid #eaeaea;
	border-right-width: 0px;
	font-weight: normal;
}

.text-bold
{
	font-weight: bold;
}

.small-label
{
	font-size: 0.7rem;
	font-weight: bold;
}

.menuicon
{
	min-width: 18px;

	margin-right: 0.35rem;
}

.xgrid
{
	xmin-height: 300px;
}

.xgridfloatbar
{
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 8px 8px;
	background-color: whitesmoke;
	border-radius: 0px 4px 0px 0px;
	border-left: 1px solid silver;
	border-bottom: 1px solid silver;
	box-shadow: 4px 4px 4px #bbb;
}

.xgridholder
{
	min-height: 360px;
}

.xgridbase
{
	padding: 8px 16px 8px 16px !important;
}

.deviceimageuser
{
	display: none !important;
}

.xgridcard .deviceimageuser
{
	display: flex !important;
	justify-content: end;
}

.xgridcard .imagetextlist
{
	display: none;
}

.xgridcard .xgridbase
{
	padding: 2px 8px 2px 8px !important;
}

.line1
{
	min-height: 21px;
}

.alert
{
	margin-bottom: 0px;
}

.alert-info
{
	background-color: #f8e2d7;
	ox: #f1e2d1;
	border-color: #facb96;
	color: black;
}

.alert-danger
{
	background-color: #f8e2d7;
}

.xgridcellheader
{
	padding: 12px 22px 12px 22px !important;
	background-color: #FCFCFD !important;
	border-bottom: 1px solid #eaeaea !important;
	border-right-width: 0px !important;
}

.xgridcell
{
	vertical-align: middle;
	border-right-width: 0px !important;
	xborder-bottom: 1px solid #F2F2F2 !important;
}

.flexa
{
	flex: 1 !important;
	xflex-grow: 1 !important;
	min-width: 28%;
}

.flexdouble
{
	flex: 2 !important;
	xflex-grow: 2 !important;
	min-width: 58%;
}

.flextriple
{
	flex: 3 !important;
	xflex-grow: 2 !important;
	min-width: 58%;
}

.flexeq
{
	flex: 1 !important;
	min-width: 40%;
}

.overlaypanel
{
	background-color: rgba(255, 255, 255, 0.95);
	position:absolute;
	z-index: 20;
}

h2
{
	margin: 0px !important;
	color: #1D1F2C;
}

h3
{
	color: #1D1F2C;
	margin: 0px !important;
	font-size: 1.28rem;
	font-weight: bold;
}

.mtrl-card-title h3
{
	color: white !important;
}

h4
{
	margin: 0px !important;
	font-size: 1.1rem;
	font-weight: 400;
	color: #333333;
	xcolor: #777980;
}

.leftmenuitemactive .text-muted
{
	color: #111111 !important;
}

.leftmenuimg
{
	display: inline-block;
	height: 24px;
	opacity: 0.62;
	margin-top: 3px;
}

.leftmenuitemactive .leftmenuimg
{
	opacity: 1.0 !important;
}

button
{
	font-size: 0.9rem;
//border-radius: 8px;
	border: 1px solid #EcEcEc;
	padding: var(--button-padding);

	background-color: #FCFCFD;
}

button:hover
{
	background-color: whitesmoke;
}

button:focus
{
	outline: none !important;
}

button:active
{
	background-color: unset;
	color: unset;
}

.dropdown-item.active, .dropdown-item:active
{
	background-color: unset;
	color: unset;
}


.leftbar
{
	padding: 0px 8px 0px 0px;
}

.rightbar
{
	padding: 0px 0px 0px 8px;

	border-left: 2px solid black;
}

.badge
{
	padding: 0.5rem;
	border-radius: 8px;
}

.leftpill
{
	padding: 8px 8px 8px 14px;
	border-top-left-radius: 50%;
	border-bottom-left-radius: 50%;


	border: 2px solid black;
}

.px-25
{
	padding-left: 0.8rem !important;
	padding-right: 0.8rem !important;
}

.search-button
{
	background-color: var(--selected-highlight);
	border-color: #f9e1c0;
	border-top-left-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
	position: absolute !important;
	padding-left: 0.7rem !important;
	padding-right: 0.7rem !important;
	right: 0px;
	top: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 100%;
}

.search-button:hover
{
	background-color: var(--selected-highlight-mid);
	border-color: var(--selected-highlight-mid) !important;
}


.rightpill
{
	padding: 8px 14px 8px 8px;
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;

	border: 2px solid black;

	border-left: 0px solid black;
}

.pillselected
{
	background-color: rgb(218,220,224);
}

.pr-25
{
	padding-right: .75rem!important;
}

.uploadbox
{
	border: 2px dashed silver;
	border-radius: 8px;

	padding: 10% 20% 10% 20%;

	text-align: center;
}

.dashboardunderlay
{
	position: absolute;

	background-color:black;

	height: 200px;
	width: 100%;

	z-index: 0;
	left: 0px;
	top: 0px;

	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 87%, rgba(33,42,140,1) 100%);
	border: 2px solid black;
}

h2.altmain
{
	color: white;
}

.altmain
{
	color: white;
}

.altmain > .snappanel
{
	box-shadow: none;
	border: 1px solid whitesmoke;
}

.altmain.headerbar
{
	xbackground: none !important;
	background-color: rgba(200,200,200,0.4) !important;
}

.altmain.floatpanel
{
	box-shadow: none;
}

.altmain input
{
	background: none;
	color: whitesmoke;
}

.z1
{
	z-index: 1;
}


.z10
{
	z-index: 10;
}


.modal-content
{
	padding: 8px;
	border-radius: 24px !important;
	overflow: hidden;
	border: none !important;
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
}

.modal-content input
{
	border: 1px solid #F0F0F0;
	border-radius: 8px;
	padding: 8px 12px;
}

.modal-title
{
	font-weight: normal;
}

.dialog-label
{
	font-weight: bold;
	color: #676767;
}

@media only screen and (max-width: 768px)
{
	.modal-content
	{
		padding: 4px;
		border-radius: 16px !important;
	}

	.modal-dialog
	{
		width: 90vw;
		margin: 5vw;

	}
}

.modal-body
{
	xpadding-left: 0px;
	xpadding-right: 0px;
}

.modal-header
{
	border-bottom: 0px solid whitesmoke;
}

.modal-content-livestream {
	background-color: #fefefe;
	margin: 0 auto;
	padding: 25px;
	border: none !important;
	width: 80%;
	max-width: 700px;
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
	border-radius: 10px;

}

.modal-container-livestream {
	position: relative;
	top: 30%;
	transform: translateY(-40%);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}


.incident-modal-content {
	width: 50%;
	left: 25%;
	top: 25%;
	padding: 1rem;
}
.incident-modal-content select {
	width: 40%;
	height: 2.8rem;
	border-radius: 0.5rem;
}
@media (max-width: 750px) {
	.incident-modal-content select {
		width: 90%;
	}
}
.selection-header {
	display: flex;
	flex-direction: row;
	padding: 2rem 0 0 0;
}
.selection-header p {
	color: var(--halo-red);
}
.close {
	flex-direction: row-reverse;
	padding: 0.5rem;
}
.create-incident-header {
	display: flex;
	justify-content: space-between;
}
.incident-modal-button-group {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 2rem 0;
}
.incident-modal-button-group button {
	display: flex;
	justify-content: space-between;
}
.btn-black {
	background-color: black;
	color: white;
	border: none;
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
}

.btn-green {
	background-color: #1A9882;
	color: white;
	border: none;
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
}

.fa-icon-circle {
	height: 100px;
	width: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fa-icon-circle.green {
	background-color: #E9FAF7;
	color: #22CAAD;
}

.fa-icon-circle.blue {
	background-color: #E9F2FA;
	color: #22A8CA;
}

.icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.body-message{
	text-align: center;
}
.text-grey{
	color: #667085;

}
.leftmenuspace
{
	padding: 16px;
}

a.leftmenuspace
{
	padding: 16px;
}


@media only screen and (max-width: 1200px)
{
	.loginbanner
	{
		font-size: 2.0rem;
	}

	.flexa
	{
		flex: 1 !important;
		min-width: 100%;
	}

	.flexdouble
	{
		flex: 1 !important;
		min-width: 100%;
	}

	.flextriple
	{
		flex: 1 !important;
		min-width: 100%;
	}
}

@media only screen and (max-width: 992px)
{

	.mobiletext
	{
		display: none !important;
	}

	.mobilectrl
	{
		width: 90px !important;
	}

	.flexeq
	{
		flex: 1 !important;
		min-width: 100%;
	}

	.config-body2
	{
		flex: 1 !important;
		min-width: 100% !important;
	}

	.leftmenu
	{
		width: 76px !important;
	}
}

@media only screen
and (max-width: 767px)
{

	.search-button
	{
		background-color: white;
		border-color: whitesmoke;
	}

	.search-button:hover
	{
		background-color: whitesmoke;
		border-color: whitesmoke !important;
	}

	.xgridcardview
	{
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		xgrid-template-columns: auto auto;
	}

	.locationbar
	{
		line-height: 2rem;
	}

	.locationgap
	{
		gap: 8px;
	}

	.mobile-tabs i
	{
		display: none;
	}

	.mobile-tabs .caret
	{
		display: none;
	}

	.mobile-tabs li
	{
		max-width: 40%;
	}

	.mobile-tabs span
	{
		display: inline-block;
		white-space: nowrap;
		max-width: 100%;
		overflow-x: hidden;
		text-overflow: ellipsis;
	}

	.mobile-tabs a
	{
		padding-left: 0.5rem;
		padding-right: 0.5rem;
		padding-bottom: 0.2rem;
	}

	.mobiletext-sm
	{
		display: none !important;
	}

	.nmobiletext-sm
	{
		display: inline !important;
	}

	.leftmenuitem
	{
		position: relative;
		box-sizing: border-box;

		padding: 16px;
		border-top: 4px solid white;
		transition: all 0.10s ease-out;
		background-clip: padding-box; /* !importanté */
		text-align: center;
		flex-grow: 1;
	}

	.labelfa
	{
		gap: 0.25rem;
	}

	.squash
	{
		min-width: unset;
		width: 100vw;
	}

	.squash-max
	{
		min-width: unset;
		max-width: 100vw;
	}

	.flexsquash
	{
		flex: 1 !important;
		min-width: unset;
		width: 100vw;
	}

	.flexsquash-max
	{
		flex: 1 !important;
		min-width: unset;
		max-width: 100vw;
	}

	.leftmenuitem:hover
	{
		background-color: whitesmoke;
		border-top: 4px solid silver;
	}

	.leftmenujustify
	{
		justify-content: center;
	}

	.leftmenuixtemactive:before
	{
		content: '';
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		z-index: -1;
		margin: -4px; /* !importanté */
		border-radius: inherit; /* !importanté */
		background: linear-gradient(to right, red, orange);
	}

	.leftmenuitemactive
	{
		border-top: 4px solid var(--halo-red) !important;
		background-color: whitesmoke;
		xborder-left: 4px solid transparent !important;
	}

	.snappanel
	{
		border-radius: 0px;
	}

	.spread-3
	{
		flex: 0 0 50%;
		max-width: 50%;
	}

	.spread-5
	{
		flex: 0 0 50%;
		max-width: 50%;
	}

	.hidemobile
	{
		display: none !important;
	}

	.halogrey
	{
		background-color: #FCFCFC;
	}

	.search-button
	{
		border-radius: 0px !important;
	}
}

@media only screen
and (max-width: 350px)
{
	.mobiletext-xs
	{
		display: none !important;
	}

	.nmobiletext-xs
	{
		display: inline !important;
	}
}

@media only screen
and (min-width: 768px)
{
	.leftmenuitem
	{
		position: relative;
		box-sizing: border-box;

		padding: 16px;
		border-left: 4px solid white;
		transition: all 0.10s ease-out;
		background-clip: padding-box; /* !importanté */
		ease-in-out: test;
	}

	.leftmenuitem:hover
	{
		background-color: whitesmoke;
		border-left: 4px solid silver;
	}

	.leftmenuitemspacer
	{
		border-left: 4px solid white;
	}

	.leftmenuixtemactive:before
	{
		content: '';
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		z-index: -1;
		margin: -4px; /* !importanté */
		border-radius: inherit; /* !importanté */
		background: linear-gradient(to right, red, orange);
	}

	.leftmenuitemactive
	{
		border-left: 4px solid var(--halo-red) !important;
		background-color: whitesmoke;
		xborder-left: 4px solid transparent !important;
	}

	.spread-3
	{
		flex-grow: 1!important;
	}

	.spread-5
	{
		flex-grow: 1!important;
	}

	.snapgap2
	{
		gap: 18px;
	}

	.headerbar
	{
		border-radius: 8px;
	}
}

.taginitials
{
	display: inline-block;
	border-radius: 50%;
	color: white;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	font-size: 1.1rem;
	line-height: 2.7rem;
}

.taginitialssm
{
	padding-top: 3px;
	display: inline-block;
	border-radius: 50%;
	color: white;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	font-size: 0.68rem;
	line-height: 1.2rem;
	width:24px;
	height:24px;
	min-height:24px;
	min-width:24px;
}

.asseticonpanel
{
	display: none !important;
}

.assetstatusicon
{
	padding: 4px;
}

.assetstatuscodec
{
	padding: 2px 4px 1px 4px;
	border-radius: 4px;
	background-color: var(--blue-selected-highlight);
	font-size: 0.7rem;
	font-weight: bold;
}

.assetstatusicon:hover
{
	background-color: var(--halo-highlight);
}

.viewer-height
{
	min-height: 476px;
}

.xgridcard .asseticonpanel
{
	display: flex !important;
}

.xgridcard .taginitials
{
	font-size: 0.72rem;
	line-height: 1.6rem;
}

.xgridcard .taginitials
{
	font-size: 0.56rem;
	line-height: 1.2rem;
}

.xgridcard .usericon
{
	height: 18px;
	min-height: 18px;
	min-width: 18px;
}




.userpanelsm
{
	max-width: 140px;
}

.colorblocksm
{
	max-width: 140px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.userpanelsm .taginitials
{
	font-size: 0.72rem;
	line-height: 1.6rem;
}

.nav-link
{
	border-left: none;
	border-top: none;
	border-right: none;

	border-bottom: 4px solid transparent !important;
}

.nav-tabs .nav-link
{
	border-left: none;
	border-top: none;
	border-right: none;

	border-bottom: 4px solid transparent !important;
}

.nav-link.active {
	background: transparent !important;
	color: black !important;
	border-bottom: 4px solid var(--halo-red) !important;
	xbb: #4380fa;
	border-radius: 0px !important;

	border-left: none;
	border-top: none;
	border-right: none;

	font-weight: bold;
}

li a
{
	color: black;
}

li a:hover
{
	background-color: whitesmoke !important;
	color: black;

	border-color: whitesmoke !important;
}

.nav-link:hover
{
	background-color: whitesmoke !important;
}


.mobile-tabs
{

}

.twitter-typeahead
{
	display: flex !important;
}


.whitetabs
{
	background-color: white;

	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.whitetabs .navlink
{
	background-color: whitesmoke;
}

.whitetabs .navlink.active
{
	background-color: white;
}


.halopage.pagination
{
	font-size: 0.9rem;
	overflow: hidden;
	border-radius: 8px;
	xborder: 1px solid whitesmoke;
}

.halopage .page-link
{
	border: 1px solid gainsboro;
	margin: 0px 4px;
	border-radius: 12px !important;

	color: black !important;
}

.halopage .page-link:hover
{
	border: 1px solid #AAAAAA !important;
}

.halopage .page-link:focus
{
	box-shadow: none !important;
}


.halopage .page-link0
{
	xborder-left: 0px;
	xborder-right: 0px;
	xborder-top: 0px;
	xborder-bottom: 0px;

	xcolor: black !important;
}


.halopage .page-item.active .page-link
{
	background-color: var(--selected-highlight) !important;
	border-color: silver !important;
	color: black !important;
}

.halopage .page-item.disabled .page-link {
	color: gainsboro !important;
}




.halopagen.pagination
{
	font-size: 0.9rem;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid whitesmoke;
}

.halopagen .page-link
{
	border-left: 1px solid whitesmoke;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 0px;

	color: black !important;
}

.halopagen .page-link:focus
{
	box-shadow: none !important;
}


.halopagen .page-link0
{
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 0px;

	color: black !important;
}


.halopagen .page-item.active .page-link
{
	background-color: var(--selected-highlight) !important;
	border-color: whitesmoke !important;
	color: black !important;
}

.halopagen .page-item.disabled .page-link {
	color: gainsboro !important;
}

.pageblack.pagination
{
	font-size: 0.9rem;
	xoverflow: hidden;
}

.pageblack .page-link
{
	color: black !important;
}

.pageblack .page-link:focus
{
}

.pageblack .page-link0
{
	color: black !important;
}


.pageblack .page-item.active .page-link
{
	color: black !important;
}

.pageblack .page-item.disabled .page-link {
	color: gainsboro !important;
}


.dataTable th
{
	padding: 12px 22px 12px 22px !important;
	background-color: #FCFCFD !important;
	border-bottom: 1px solid #eaeaea !important;
}

.dataTable td
{
	padding: 8px 16px 8px 16px !important;
}

.xdataTable td:first-of-type
{
	white-space: nowrap;
}

.dataTable tr:hover
{
	background-color:whitesmoke !important;
}

.dataTables_info
{
	text-align: left !important;
}

.dataTables_paginate
{
	text-align: right !important;
}

.dataTables_paginate .pagination
{
	font-size: 0.9rem;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid whitesmoke;
}

.dataTables_paginate .page-link
{
	border-left: 0px solid whitesmoke;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 0px;

	color: black !important;
}

.dataTables_paginate .page-link:focus
{
	box-shadow: none !important;
}


.dataTables_paginate .page-link0
{
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
	border-bottom: 0px;

	color: black !important;
}


.dataTables_paginate .page-item.active .page-link
{
	background-color: var(--selected-highlight) !important;
	border-color: whitesmoke !important;
	color: black !important;
}

.dataTables_paginate .page-item.disabled .page-link {
	color: gainsboro !important;
	border-color: unset !important;
}

.nav-link
{
	font-size: 0.8rem;
}

.xgridcard .cardabletext
{
	font-size: 0.8rem;
}

.xgridcard .xcardtext
{
	font-size: 0.7rem;
	font-weight: bold;
}

.xcardtext .cardabletext
{
	xfont-size: 0.7rem !important;
}

@media print
{
	.scrollingbody
	{
		overflow: none;
	}
}


.img-thumbnail
{
	border: none;
}

.img-portrait
{
	object-fit: contain !important;
}

.va-pair
{
	/*display: flex;
	align-items: center;*/
}

.va-pair i
{
	line-height: 0.5em;
	vertical-align: -0.15em;
	display: inline-flex;
}

.va
{
	line-height: 0.5em;
	vertical-align: -0.15em;
	display: inline-flex;
}

.va-pair-inline
{
	display: inline-flex;
	align-items: center;
}

.icheckbox_square-blue.checked
{
	filter: hue-rotate(6deg) brightness(130%);
	border-radius: 4px
}

.vue-vertical-label > span
{
	display: flex;
	flex-direction: column;
}

.vue-vertical-label > div
{
	display: flex;
	flex-direction: column;
}

#EVIDENTIAL_wrap
{
	flex-direction: row !important;
}

.vue-vertical-label textarea, .vue-vertical-label select
{
	margin: 0px !important;
	max-width: 100% !important;
}

.vue-vertical-label .select2-container
{
	margin: 0px !important;
	max-width: 100% !important;
}

.vue-vertical-label .select2-container
{
	margin: 0px !important;
	max-width: 100% !important;
}

.vue-vertical-label .meta-tag-display
{
	margin: 0px !important;
	max-width: 100% !important;
}

@media only screen and (max-width: 768px)
{
	#metadata-editor .col-6
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

#DEMO_TEST_wrap
{
	flex-direction: row;
}

div.meta:has(#DEMO_TEST_label) {
	flex-direction: row;
}

div.meta:has(#DEMO_TEST_label) .meta-tag-display {
	width: 100%;
}

.meta label
{
	white-space: nowrap;
}

.config-panel
{
	display: flex;

	flex-wrap: wrap;
	flex-direction: column;

	gap: 20px;
}


.config-body
{

	background-color: white;
	border-radius: 8px;
	border: 1px solid #DDDDDD;
	padding: 20px;



	gap: 20px;
	display: flex;
	cursor: pointer;
}

.config-body:hover
{
	background-color: whitesmoke;
}

.config-info
{
	text-align: left !important;
}

.config-body2
{
	flex: 1;
	min-width: 40%;

	background-color: white;
	border-radius: 8px;
	padding: 1rem 1rem;

	xtext-align: center;

	display: flex;
	gap: 1rem;

	flex-direction: column;
}

.config-body2 form
{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.config-body2 input[type="text"], .config-body2 input[type="password"], .config-body2 select
{
	padding: 6px 10px;
	border-radius: 8px;
	border-width: 1px;
	-webkit-appearance: none;

	border: 1px solid #CCCCCC;
	width: 100%;

	background-color: #FCFCFF;

}

.config-body2 label
{
	xwidth: 160px;
	xtext-align: right;
	padding-right:0.5rem;
	xtext-wrap: nowrap;
	color: var(--text-secondary);
}

h6
{
	color: #555555;
}

.firstletter
{
	xtext-align: justify;
	color: var(--text-secondary);
}

.firstletter:first-letter
{
	font-family: monospace;
	font-weight: bold;
	padding: 4px 10px;
	border-radius: 10px;
	border: 2px solid #999999;
	xbackground-color: #ffba81;
	color: #333333;
}

.config-body2 h3, .config-body2 h4, .config-body2 h5
{
	xpadding: 0px 1rem 1rem 1rem;
}

.config-icon
{
	border: 1px solid #F5f5f5;
	min-width: 72px;
	min-height: 72px;
	border-radius: 50%;
	height: 72px;
	width: 72px;
	text-align: center;
	vertical-align: middle;
	box-shadow: 4px 4px 16px #EEEEEE;
	background-color: white;
	color: #F86624;
}

.config-icon i
{
	font-size: 2.2rem;
	line-height: 4.9rem;
}

.d-none-important
{
	display: none !important;
}



@media only screen and (max-width: 768px)
{
	.snappanel
	{
		border-radius: 0px;
	}

	.searchbar
	{
		xborder-radius: 0px;
	}

	.xgridcardflex
	{
		min-width: 160px !important;
	}

	.xgridcard .xcardlabel
	{
		display: none !important;
	}

	a.locationitemroot
	{
		font-weight: bold !important;
	}
}

.imagetextselect
{
	xheight: 72px;
}

.xgridcard .imagetextselect
{
	height: auto;
	padding: 0px !important;
}

.xgridcard .mobiletext
{
	display: unset !important;
}


.xgridcard .mobiletext-sm
{
	display: unset !important;
}



.xgridcard .xgridcardnone
{
	display: none !important;
}

.xgridcard .cameracol
{
	width: auto;
}

.xgridcard .assetcol
{
	width: auto;
}

.xgridcell
{
	user-select: unset;
}

.dataTables_length
{

}

table.dataTable.table-sm .sorting:before, table.dataTable.table-sm .sorting_asc:before, table.dataTable.table-sm .sorting_desc:before
{
	top: 10px !important;
}

table.dataTable.table-sm .sorting:after, table.dataTable.table-sm .sorting_asc:after, table.dataTable.table-sm .sorting_desc:after
{
	top: 10px !important;
}

.table-bordered
{
	border-color: whitesmoke !important;
}

.remote-storage-message
{
	background-color: #e15e0e;
	border-radius: 8px;
	padding: 6px 12px;
}

.push-to-talk-info {
	display: flex;
	align-items: center;
	background-color: var(--form-white);
	height: 5rem;
	border-radius: 0.25rem;
	justify-content: center;
	gap: 13%;
}

@media (max-width: 1200px) {
	.push-to-talk-info {
		gap: 10%;
	}
}

@media (max-width: 800px) {
	.push-to-talk-info {
		gap: 5%;
	}
}

@media (max-width: 500px) {
	.push-to-talk-info {
		gap: 2%;
	}
}

.push-to-talk-info button {
	margin: 5%;
}

.push-to-talk-info label {
	margin: 5%;
}

#publishStatus {
	width: 110px;
}

.connect-button {
	background-color: var(--halo-green);
	border-radius: 0.25rem;
	color: var(--form-white);
	opacity: 0.9;
	width: 200px;
}

.disconnect-button {
	background-color: var(--halo-orange);
	border-radius: 0.25rem;
	color: var(--form-white);
	opacity: 0.9;
	width: 200px;
}

.connect-button:hover {
	background-color: var(--halo-green);
	opacity: 1;
}

.disconnect-button:hover {
	background-color: var(--halo-orange);
	opacity: 1;
}

.push-to-talk body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.push-to-talk h2 {
	color: #333;
	text-align: center;
	margin-top: 20px;
}

.push-to-talk video {
	display: block;
	margin: 20px auto;
	max-width: 80%;
}

.push-to-talk div {
	margin: 5%;
}

.push-to-talk button {
	display: block;
	background-color: var(--halo-orange);
	color: var(--form-white);
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.push-to-talk button:hover {
	background-color: var(--halo-highlight);
}

.push-to-talk button:disabled {
	background-color: var(--form-disabled);
	cursor: not-allowed;
}

.push-to-talk button.muted {
	background-color: var(--halo-orange);
	color: var(--form-white);
	padding: 13%;
	width: 48px;
}

.push-to-talk button.muted:disabled {
	background-color: var(--form-disabled); /* Grey when muted and disabled */
	color: var(--form-white);;
	width: 48px;
}

.push-to-talk button.unmuted {
	background-color: var(--halo-green); /* Green when unmuted */
	color: var(--form-white);;
	width: 48px;
}

.push-to-talk p {
	color: #333;
}

.push-to-talk video {
	display: block;
	margin: 2rem auto;
	max-width: 100%;
	border: 2px solid #333;
	background-color: #000;
}

.disconnected {
	font-weight: 900;
	color: var(--halo-orange);
	display: inline-block;
	width: 120px;
	white-space: pre-wrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.connected {
	font-weight: 900;
	color: var(--halo-green);
	display: inline-block;
	width: 120px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.microphone-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.9rem;
	height: 2.75rem;
	border-radius: 50%;
	background-color: var(--halo-orange);
	color: white;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

.fa-microphone {
	width: 2.75rem;
}

@media (min-width: 1920px) {
	.microphone-button {
		width: 42px;
	}
}

.microphone-button.muted:not(:hover) .tooltip {
	visibility: hidden;
	opacity: 1;
}

.tooltip {
	visibility: hidden;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 4px;
	position: relative;
	z-index: 100;
	top: 49px;
	left: 40px;
	margin-left: -100px;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
	white-space: pre-line;
}

.microphone-button i {
	color: var(--form-white);
	max-width: fit-content;
}

.microphone-button.muted {
	background-color: var(--halo-red);
}

.microphone-button.unmuted {
	background-color: var(--halo-green);
}

.microphone-button:disabled {
	background-color: var(--form-disabled);
	cursor: not-allowed;
}

.comstream-container {
	width: 80%;
	margin: auto;

}
@media (min-width: 1500px) {
	.comstream-container {
		width: 60%;
	}
}

.video-border-green {
	box-shadow: 0 4px 8px 0 var(--halo-bright-green), 0 6px 20px 0 var(--halo-bright-green);
}

.stream-card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	padding-right: 5%;
	justify-content: space-between;
}

.stream-cards-display {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	width: 100%;
}

.stream-card {
	display: flex;
	flex-direction: column;
	background-color: var(--form-white);
	border-radius: 0.5rem;
	flex: 1 1 calc(25% - 2%);
}

.stream-card a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4rem;
	background-color: var(--halo-orange);
	color: var(--form-white);
	cursor: pointer;
	font-size: small;
	margin-left: auto;
	text-decoration: none;
	padding: 0 4%;
}

.stream-card p {
	margin: 0 0 0 2%;
}

.stream-card-header {
	display: flex;
}

.stream-card-viewer-count {
	background-color: black;
	background-color: rgba(0, 0, 0, 0.5);
	height: auto;
	position: absolute;
	display: flex;
	color: antiquewhite;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.2rem 0.5rem;
	margin: 1%;
	border-radius: 4rem;
}

.stream-card-viewer-count p {
	margin: 0;
}

.stream-card-image img {
	object-fit: cover;
	width: 100%;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

.stream-card-live-label {
	background-color: var(--halo-red);
	border-radius: 4rem;
	padding: 0.1rem 0.5rem;
}

.stream-card-body p {
	border-radius: 4rem;
	margin: 1rem 0;
	width: 100%;
	font-size: 1rem;
	background-color: var(--halo-green);
	opacity: 0.8;
	text-align: center;
	color: var(--form-white);
	padding: 0.5rem 0 !important;
}

.stream-card-content {
	padding: 5%;
}

@media (max-width: 1500px) {
	.stream-card {
		flex: 1 1 calc(25% - 2%);
		max-width: 23%;
	}
	.stream-card a {
		font-size: xx-small;
	}
	.stream-card-body p {
		padding: 0.4rem;
	}
}

/* Responsive adjustments */
@media (min-width: 1200px) {
	.stream-card {
		flex: 1 1 calc(25% - 2%);
		max-width: 23%;
	}
	.stream-card a {
		font-size: x-small;
	}
	.stream-card-body p {
		padding: 0;
	}
}

@media (max-width: 1200px) {
	.stream-card {
		flex: 1 1 calc(33.333% - 2%);
		max-width: 31.333%;
	}
	.stream-card a {
		font-size: x-small;
	}
	.stream-card-body p {
		padding: 0;
	}
}

@media (max-width: 1000px) {
	.stream-card {
		flex: 1 1 calc(50% - 2%);
		max-width: 48%;
	}
	.stream-card-body p {
		padding: 0.4rem;
	}
}

@media (max-width: 800px) {
	.stream-card {
		flex: 1 1 100%;
	}
	.stream-card-body p {
		padding: 0.4rem;
	}
}

.stream-field {
	align-items: baseline;
	display: flex;
}

.stream-field i {
	padding-right: 0.5rem;
}

.stream-card-title {
	display: flex;
	padding: 0 0 1rem;
}

.stream-card-title span {
	color: var(--form-white);
}

.camera-details-table {
	border-collapse: separate;
	border-radius: 0.5rem;
	border-spacing: 0;
	width: 80%;
	margin: auto;
}

.camera-details-table th, .camera-details-table td {
	padding: 0.5rem 0.5rem 0.5rem 1rem;
	border: 0.5px solid var(--border-light-gray);
	background-color: var(--form-white);
}

.camera-details-table th {
	font-size: 1rem;
	font-weight: 600;
	color: black;
}

.camera-details-table tr {
	font-size: 0.9rem;
	font-weight: 400;
}

.camera-details-table tr:first-child th:first-child {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

.camera-details-table tr:last-child td:first-child {
	border-bottom-left-radius: 0.5rem;
}

.camera-details-table tr:last-child td:last-child {
	border-bottom-right-radius: 0.5rem;
}

.camera-details-table-left {
	width: 25%;
}

.camera-details-table-right {
	width: 75%;
}

.controlCenterContainerWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	font-family: Arial, sans-serif;
}

.controlCenterContainer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 30vh);
	margin: 0;
	gap: 1rem;
}

.layoutButton {
	width: 50px;
	height: 50px;
	margin: 0.25rem;
}

.buttonContainer {
	display: flex;
	padding-top: 0;
	margin-bottom: 0.5rem;
	align-items: center;
}

.back-to-list {
	height: var(--button-height);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	margin: auto 0.8rem auto 0;
	color: white;
	background-color: black;
}

.back-to-list:hover {
	background-color: var(--halo-orange);
	color: var(--halo-grey);
}

.back-to-list p {
	margin: auto 0.25rem;
}

.list-view-button {
	margin: auto;
}

.video-banner {
	position: relative;
	width: 100%;
	height: 3rem;
	padding: 0.25rem;
	background-color: white;
	color: black;
	display: flex;
	justify-content: end;
	align-items: center;
}

.hidden-video {
	display: none;
}

.video-banner.black-background {
	background-color: black;
}

.open-stream-button {
	height: 90%;
	background-color: black;
	font-size: 0.875rem;
	-webkit-font-smoothing: antialiased;
	padding: 0 0.75rem;
	color: white;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	border: none;
}

.back-to-list-icon {
	color: var(--form-white);
}

:fullscreen .back-to-list-icon {
	color: var(--dark-button-background);
}

	.open-stream-button:hover {
		background-color: var(--dark-border);
	}

	.open-stream-button i {
		font-size: 1rem;
		display: inline;
	}

.box {
	flex-direction: column;
	position: relative;
	display: flex;
	align-items: center;
	color: white;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: black;
	box-shadow: 0 2px 20px rgba(0,0,0,var(--halo-grey-shadow));
	border: 1px solid #eee;
}

:fullscreen .box {
	border: 0.01rem solid var(--stream-border);
}

:fullscreen .video-banner {
	border: 0.01rem solid var(--stream-border);
}

video {
	width: 100%;
	height: 100%;
}

.video-title {
	color: black;
	position: absolute;
	padding: 0.2rem;
	font-size: 1.2rem;
	left: 0px;
	margin: 5px;
	z-index: 10;
	opacity: 75%;
}

:fullscreen .video-title {
	color: var(--form-white);
}

:fullscreen .back-to-list {
	background-color: var(--halo-grey);
	color: var(--dark-button-background);
}

.muteButton {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	top: 5px;
	right: 5px;
	border-radius: 0.3rem;
	z-index: 10;
}

.controlCenterContainer.standard-1x1-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(1, 1fr);
	height: 85%;
	width: 90%;
}

.controlCenterContainer.standard-1x1-grid .box:nth-child(n+2) {
	display: none;
}

.controlCenterContainer.standard-2x2-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 45vh);
}


.controlCenterContainer.standard-2x2-grid .box:nth-child(n+5) {
	display: none;
}

.controlCenterContainer.enlarged-3x3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 30vh);
}

.controlCenterContainer.enlarged-3x3-grid .box:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.controlCenterContainer.enlarged-3x3-grid .box:nth-child(n+7) {
	display: none;
}

.controlCenterContainer.enlarged-4x4-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 23vh);
}

.controlCenterContainer.enlarged-4x4-grid .box:first-child {
	height: auto;
	grid-column: span 3;
	grid-row: span 3;
}

.controlCenterContainer.enlarged-4x4-grid .box:nth-child(n+9) {
	display: none;
}

:fullscreen .controlCenterContainer {
	gap: 0;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content label {
	display: block;
	margin-top: 10px;
}

.dropdown-inactive-content {
	color: grey;
	opacity: 0.5;
}

.dropdown:hover .dropdown-content {
	display: block;
}
.controlCenterContainerWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	font-family: Arial, sans-serif;
}

.controlCenterContainer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 30vh);
	margin: 0;
	gap: 1rem;
}

.layout-button-container {
	display: flex;
	padding-top: 0;
	margin-bottom: 0.5rem;
	justify-content: end;
}

.layout-button-container:last-child {
	margin-left: auto;
}

.control-center-btn-filter {
	display: flex;
	align-items: center;
}

.layout-button-alignment {
	display: flex;
	width: 100%;
}

.layoutButton {
	width: 2rem;
	height: 2rem;
	margin: 0.25rem;
	padding: 0.25rem;
	background-color: unset;
	border: none;
}

.layout-button-container img {
	width: 1rem;
	height: 1rem;
	object-fit: contain;
}

.layout-button-container svg {
	width: 1rem;
	height: 1rem;
}

.fullscreen .layout-button-container {
	display: flex !important;
}

.videoBanner {
	position: relative;
	width: 100%;
	height: 2rem;
	padding: 0.25rem;
	background-color: white;
	color: black;
}

.box {
	flex-direction: column;
	position: relative;
	display: flex;
	align-items: center;
	color: white;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: black;
}

video {
	width: 100%;
	height: 100%;
}

.muteButton {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	top: 5px;
	right: 5px;
	border-radius: 0.3rem;
	z-index: 10;
	background-color: var(--halo-grey);
}

.controlCenterContainer.standard-1x1-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(1, 1fr);
	height: 85%;
	width: 90%;
}

.controlCenterContainer.standard-1x1-grid .box:nth-child(n+2) {
	display: none;
}

.controlCenterContainer.standard-2x2-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 45vh);
}

.controlCenterContainer.standard-2x2-grid .box:nth-child(n+5) {
	display: none;
}

.controlCenterContainer.enlarged-3x3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 30vh);
}

.controlCenterContainer.enlarged-3x3-grid .box:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.controlCenterContainer.enlarged-3x3-grid .box:nth-child(n+7) {
	display: none;
}

.controlCenterContainer.enlarged-4x4-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 23vh);
}

.controlCenterContainer.enlarged-4x4-grid .box:first-child {
	height: auto;
	grid-column: span 3;
	grid-row: span 3;
}

.controlCenterContainer.enlarged-4x4-grid .box:nth-child(n+9) {
	display: none;
}

:fullscreen .controlCenterContainer {
	gap: 0;
}

.dropdown {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 12rem;
	box-shadow: 0 0.5rem 1rem 0 rgba(0,0,0,0.2);
	z-index: 11;
	border-radius: 0.25rem;
	top: 100%;
}

.dropdown-content label {
	display: block;
}

.dropdown-container {
	display: flex;
}
.dropdown-content label:hover {
	background-color: var(--halo-grey);
}

.dropdown:hover .dropdown-content {
	display: flex;
	flex-direction: column;
}

.cameraId {
	margin: auto;
	padding: 0 0.5rem;
}

.camera-dropdown {
	padding: 0 0.5rem;
}

.stream-filter {
	border-radius: 0.5rem;
	height: var(--button-height);
	border: 1px solid #eee;
	padding: 0 0.5rem;
}

.checkboxRow.checked {
	background-color: var(--halo-grey);
}

.dropdown-container select {
	width: 80%;
	max-height: 100%;
	border-radius: 4px;
	padding: 0.5rem;
	margin: 0.5rem;
	border-color: gainsboro;
}

.date-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1rem;
}

.dashboard {
	margin-left: 0.25rem;
	translate: 0 -4rem;
}

.dashboard div {
	height: 1.5vh;
}

.last-updated-label {
	margin-left: 0.25rem;
}

.selection-container {
	display: flex;
	width: 100%;
	padding: 0 10%;
	gap: 2%;
	justify-content: flex-end;
	translate: 0 -3.75rem;
	padding-left: 0.25rem;
}

@media (max-width: 1400px) {
	.selection-container {
		margin-top: 5%;
	}
}

.dropdown-container {
	display: flex;
}

.dropdown-container select {
	width: 100%;
	max-height: 100%;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin: 0.5rem;
}

.dropdown-container i {
	display: flex;
	align-items: center;
	padding: 0 0 0 1rem;
}

.custom-range-inputs {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 10%;
	height: 2rem;
	translate: 0 -3.75rem;
}

.custom-range-inputs p {
	margin: 0;
}

.custom-range-inputs input {
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin: 0.5rem;
	border-width: thin;
	height: 2.5rem;
	border-color: gainsboro;
	border-style: groove;
}

.dropdown-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.teams-dropdown-container {
	width: 100%;
	padding-right: 1rem;
}

@media (max-width: 1200px) {
	.push-to-talk-info {
		gap: 10%;
	}
	.video {
		height: 90%;
	}
}

@media (max-width: 800px) {
	.push-to-talk-info {
		gap: 5%;
	}
}

@media (max-width: 500px) {
	.push-to-talk-info {
		gap: 2%;
	}
}

.stream-player {
	max-height: 80%;
}

@media (max-width: 1800px) {
	.stream-player {
		max-height: 80%;
	}
}

@media (max-width: 1600px) {
	.stream-player {
		max-height: 80%;
	}
}

@media (max-width: 1200px) {
	.stream-player {
		max-height: 90%;
	}
}

@media (max-width: 1000px) {
	.stream-player {
		max-height: 95%;
	}
}

.video-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 5em;
	color: var(--form-white);
	cursor: pointer;
}

.no-video-icon {
	position: absolute;
	top: 40%;
	font-size: 3rem;
}

.chevron {
    padding-left: 3rem;
}

.hidden {
	display: none;
}

.icon-legend {
	position: absolute;
	bottom: 0;
	left: 45%;
	margin: 2rem;
	width: 35%;
	background: rgb(255, 255, 255);
}

@media (max-height: 760px) {
	.icon-legend {
		bottom: 20%;
	}
}

@media (min-height: 761px) {
	.icon-legend {
		bottom: 0;
	}
}

.legend-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: 2px solid rgb(255, 255, 255);
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px;
	color: rgb(25, 25, 25);
	cursor: pointer;
	font-family: Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 38px;
	text-align: center;
}

.legend-content img {
	width: 2rem;
	height: 2rem;
}

.legend-content p {
	margin: 0;
	padding: 0 1rem 0 0;
}

.legend-content i {
	margin: 0rem 0.5rem 0.3rem 0;
}

.info-text {
	font-size: 0.5rem;
	padding: 0 0 0.5rem 0.5rem;
}

.tool-tip span {
	position: fixed;
	transform: translate(0%, 50%);
	width: 40%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
	border: 2px solid #fff;
	border-radius: 3px;
	top: 1rem;
	background-color: #fff;
	z-index: 10;
	padding: 1rem;
	visibility: hidden;
}

.tool-tip {
	width: 10%;
}

.tool-tip-icon {
	color: var(--blue-selected-highlight);
	padding: 0.5rem 0 0 1rem;
	font-size: 1.5rem;
	margin-left: 70%;
}

.active-cameras-sidebar-heading {
	display: flex;
	flex-direction: row;
	z-index: 11;
}

.active-cameras-sidebar-heading:hover .tool-tip-text {
	visibility: visible;
}

.custom-button {
	background-color: #fff;
	border: 2px solid #fff;
	border-radius: 3px;
	box-shadow: 0 2px 6px rgba(0,0,0,.3);
	color: rgb(25,25,25);
	cursor: pointer;
	font-family: Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 38px;
	margin: 0 5px; /* Adjust margin for spacing */
	padding: 0 5px;
	text-align: center;
}

.live-card {
	position: absolute;
	background-color: #2f3137;
	width: 400px;
	height: 400px;
	bottom: 0;
	right: 0;
	color: #1b7e5a;
}

.live-card-content {
	display: flex;
	flex-direction: column;
}

.map-overlay-stream-card {
	position: absolute;
	bottom: 10%;
	right: 2%;
	width: 20%;
	border-radius: 0.5rem;
	background-color: var(--halo-grey);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px;
}

.map-overlay-stream-card-button {
	display: flex;
	flex-direction: row;
}

.map-overlay-stream-card-image {
	width: 100%;
	height: 10rem;
	object-fit: cover;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

.map-overlay-stream-card-button-container {
	display: flex;
	flex-direction: row;
	height: 2.5rem;
}

.two-way-coms-enabled {
	background-color: var(--halo-green);
	color: white !important;
	width: 50%;
	border-radius: 0.5rem;
	display: flex;
	font-size: 0.8rem;
	height: 50%;
	margin: auto;
	justify-content: center;
}

.stream-card-button {
	background-color: var(--halo-orange);
	color: white !important;
	width: 40%;
	border-radius: 0.5rem;
	display: flex;
	font-size: 0.8rem;
	height: 50%;
	margin: auto;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	align-items: center;
}

.stream-card-button:hover {
	background-color: #FFA500;
}
.filter-multi-select-modal {
	border-radius: 0.5rem;
	padding: 1rem;
	display:none;
	position:absolute;
	background:white;
	border:1px solid #ccc;
	width:25%;
	top:-20px !important;
	left: 75% !important;
}

@media (max-width: 1300px) {
	.filter-multi-select-modal {
		width: 35% !important;
		left: 65% !important;
	}
}

@media (max-width: 1200px) {
	.filter-multi-select-modal {
		width: 45% !important;
		left: 55% !important;
	}
}

@media (max-width: 1000px) {
	.filter-multi-select-modal {
		width: 90% !important;
		left: 5% !important;
	}
}

.filter-multi-select-modal-heading {
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding-bottom:10px;
}

.filter-teams-list {
	display:flex;
	justify-content:flex-end;
	margin-top:1rem;
}

.apply-filter-button {
	margin-left: 1rem;
}

.filter-checkbox {
	border-radius: 0.5rem;
	border: 2px solid var(--neutral-gray);
	margin: 1rem 0.5rem;
	height: 1rem;
	width: 1rem;
	accent-color: var(--halo-orange);
	box-shadow: 0 0 0 0.1rem var(--neutral-gray) inset;
}

.filter-option-type {

}

.filter-options {
	display: flex;
	align-items: center;
	color: var(--neutral-gray);
}

.filter-multi-select-scrollable-container {
	overflow-y: auto;
	max-height: 16rem;
	border: 1px solid var(--control-grey-dark);
	border-bottom-right-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}

.filter-label {
	margin: 0;
}

.filter-title {
	border: 1px solid var(--control-grey-dark);
	border-bottom: none;
	margin-bottom: 0;
	width: 100%;
	background-color: var(--control-grey-dark);
	padding: 0.5rem;
	border-top-right-radius: 0.5rem;
	border-top-left-radius: 0.5rem;
	color: var(--neutral-gray);
}

.filter-multi-select-button-container {
	display: flex;
	justify-content: flex-end;
	margin: 1rem 0 0 0;
}

.btn-filter {
	background-color: white;
	border: 1px solid var(--halo-royal-blue);
}

.btn-filter span {
	color: var(--halo-royal-blue);
}

.btn-filter i {
	color: var(--halo-royal-blue);
}

.btn-filter:hover {
	background-color: white !important;
	border: 1px solid var(--halo-light-blue) !important;
}

.notification-modal {
	border-radius: 0.5rem;
	padding: 1rem;
	display:none;
	position:absolute;
	background:white;
	border:1px solid #ccc;
	width: 500px;
	right: 0%;
	top: 105%;
	z-index: 10;
	color: initial;
}

.notification-section {
	cursor: pointer;
    border-top: 1px solid #ccc;
	padding: 2%;
}

.toast-notification-section {
	cursor: pointer;
	padding: 2%;
}

.toast-notification-section strong {
	font-family: Arial, sans-serif;
	font-weight: bold !important;
}

.notification-section p {
	margin-top: 0;
	margin-bottom: 0;
	padding-bottom: 0.5rem;
}

.notification-section strong {
	font-family: Arial, sans-serif;
	font-weight: bold !important;
}

.notification-section:hover {
	background-color: var(--halo-grey);
}

.notification-read {
	background-color: var(--halo-background-blue);
}

.notification-heading {
	display: flex;
	gap: 2%;
	font-family: Arial, sans-serif;
	font-weight: bold !important;
}

.notification-stream-icon {
	color: var(--halo-green);
	margin-top: 2px;
}

.notification-timestamp {
	font-size: small;
	margin-left: 33%;
	margin-top: 2px;
	color: var(--neutral-gray);
}

.notification-livestream-started {

}

.notification-bell-icon {
	margin: 0.5rem 0.5rem 0 0.5rem;
}

.notification-content-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.notification-content-heading button {
	border: none;
	background-color: white;
	font-size: 1.2rem;
}

.notification-content-heading h4 {
	font-size: 1.5rem;
	padding-bottom: 0.1rem;
}

.scrollable-area {
	height: 30rem;
	overflow: scroll;
}

.notification-empty {
  text-align: center;
  padding-block: 2rem;
  font-style: italic;
  color: var(--gray);
}


.notification-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.notification-footer-button {
	display: flex;
	align-items: center;
	color: var(--text-secondary) !important;
	margin-top: 5%;
}

.notification-footer-button p {
	margin: 0 0 0.4rem 0.2rem;
	text-decoration: underline;
	cursor: pointer;
}

.toast-notification {
	border-radius: 0.5rem;
	padding: 1rem;
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	margin: 1rem;
	width: 30rem;
	background: white;
	border: 1px solid #ccc;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	transform: translateX(100%);
	opacity: 0;
	z-index: 11;
	padding: 5%;
	color: initial;
}

.toast-notification.show {
	display: block;
	transform: translateX(0);
	opacity: 1;
}

.toast-notification.hide {
	transform: translateX(100%);
	opacity: 0;
}

.dropdown-container select.map-filters {
	width: 33%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 0.8em;
}

.notification-count {
  background-color: var(--halo-red);
  color: white;
  font-size: 10px;
  display: none;
  text-align: center;
  block-size: min-content;
  flex-shrink: 0;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0 6px;
  line-height: 1.4;
}

.available-cameras-container {
	display: flex;
}

.select-all-button {
	background-color: var(--halo-orange);
	color: white;
	width: 40%;
	border-radius: 0.5rem;
	font-size: 0.8rem;
	margin-left: 1rem;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	align-items: center;
}

.details-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.details-timestamp-container {
	padding: 1rem;
}

.details-timestamp {
	color: var(--text-secondary);
	font-size: 0.8rem;
}

.camera-details-tooltip {
	padding: 1rem;
	background-color: var(--halo-background-blue);
	align-self: center;
}

.tooltip-info {
	margin-left: 0.5rem;
	color: var(--stream-border);
}
