﻿:root {
	color-scheme: light;
	--st-color: #0d8f6a; /* 'brand' color */
	--st-border-radius: 6px;
	--st-bg-color: #FFF;
	--st-bg-color-rgb: 255,255,255;
	--st-disabled-bg-color: #eee;
	--st-text-color: #333;
	--st-text-color-rgb: 48,48,48;
	--st-bright-text-color: #000;
	--st-link-text-color: #337ab7;
	--st-link-active-text-color: #23527c;
	--st-muted-text-color: #777;
	--st-muted-icon-color: #aaa;
	--st-top-menu-bg-color: #f0f0f0;
	--st-top-menu-text-color: #333;
	--st-menu-text-color: var(--st-text-color);
	--st-menu-active-bg-color: #F0F0F0;
	--st-border-color: #ddd;
	--st-item-bg-color: #e5e5e5;
	--st-checkbox-switch-bg-color: var(--st-color);
	--st-checkbox-switch-color: #FFF;
	--st-checkbox-opacity: 1;
	--st-checkbox-checked-opacity: 1;
	--st-dropdown-box-shadow-opacity: .175;
	--st-selection-bg-color: #FFFDE1;
	--st-selection-text-color: inherit;
	--st-dimension-label-bg-color: #63aad7;
	--st-measure-label-bg-color: #5dc5aa;
	--st-th-bg-color: #F5F5F5;
	--st-alert-bg-color: #fcf8e3;
	--st-alert-text-color: #8a6d3b;
	--st-chart-series-a-color: #5b9bd5;
	--st-chart-series-b-color: #ed7c31;
	--st-chart-series-c-color: #a5a5a5;
	--st-chart-series-d-color: #ffbf00;
	--st-chart-series-e-color: #4473c4;
	--st-chart-series-f-color: #70ad47;
	--st-chart-series-g-color: #ca8622;
	--st-chart-series-h-color: #6b0392;
	--st-chart-series-i-color: #f05b4f;
	--st-chart-series-j-color: #dda458;
	--st-chart-series-k-color: #eacf7d;
	--st-chart-series-l-color: #86797d;
	--st-chart-series-m-color: #b2c326;
	--st-chart-series-n-color: #6188e2;
	--st-chart-series-o-color: #a748ca;
	--st-left-menu-width: 220px;
	--st-report-right-panel-width: 220px;
}

body.st-color-scheme-dark {
	color-scheme: dark;
	--st-bg-color: #151b23;
	--st-bg-color-rgb: 21,27,35;
	--st-disabled-bg-color: #2a313c;
	--st-text-color: #b1b8c1;
	--st-text-color-rgb: 177,184,193;
	--st-bright-text-color: #FFF;
	--st-muted-text-color: #9198a1;
	--st-muted-icon-color: #5d646d;
	--st-link-active-text-color: #539ad7;
	--st-top-menu-bg-color: #212830;
	--st-top-menu-text-color: #d1d7e0;
	--st-menu-active-bg-color: #656c7656;
	--st-menu-text-color: #a1a8b1;
	--st-border-color: #3d444d;
	--st-item-bg-color: #4184e42a;
	--st-selection-bg-color: #eacf7d60;
	--st-selection-text-color: var(--st-text-color);
	--st-checkbox-switch-color: #BBB;
	--st-checkbox-opacity: 0.3;
	--st-checkbox-checked-opacity: 0.9;
	--st-dropdown-box-shadow-opacity: .875;
	--st-dimension-label-bg-color: #337ab7;
	--st-measure-label-bg-color: #1d856a;
	--st-th-bg-color: #212830;
	--st-alert-bg-color: #342a1d;
	--st-alert-text-color: #895906;
	--st-chart-opacity: 75%;
	--pvt-th-bg-color: #212830;
	--pvt-label-color: #A0A0A0;
	--pvt-subtotal-color: #9198a1;
	--pvt-border-color: var(--st-border-color);
	--pvt-expand-color: #777;
	--pvt-bg-color: var(--st-bg-color);
}
/* publicreport.css specific variables for dashboards inside the app */
body.page-dashboard {
	--st-ctrl-border-color: var(--st-border-color);
	--st-item-highlight-bg-color: #3875d7;
	--st-input-active-bg-color: var(--st-menu-active-bg-color);
	--st-btn-hover-color: var(--st-item-bg-color);
	--st-switch-color: var(--st-checkbox-switch-bg-color);
	--st-checkbox-switch: 1;
}
body.page-dashboard.st-checkbox-classic {
	--st-checkbox-switch: 0;
}

body.st-color-scheme-dark table.pvtTable sup.diffValue[style="color:blue"] {
	color: aqua !important;
	opacity: 0.6;
}
body.st-color-scheme-dark table.pvtTable sup.diffValue[style="color:red"] {
	opacity:0.6;
}
body.st-color-scheme-dark .ct-chart line,
body.st-color-scheme-dark .ct-chart-pie .ct-series,
body.st-color-scheme-dark .ct-chart-donut .ct-series {
	filter: brightness(var(--st-chart-opacity));
}
body.st-color-scheme-dark table.pvtTable div.pvtDatabarContainer > div.pvtDatabar {
	filter: brightness(var(--st-chart-opacity));
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 16px;
	background-color: var(--st-bg-color);
	color: var(--st-text-color);
}
.form-control {
	background-color: var(--st-bg-color);
	color:var(--st-text-color);
}
.form-control[disabled], .form-control[readonly] {
	background-color:var(--st-disabled-bg-color);
}
.label {
	color:var(--st-bg-color);
}
.has-error .control-label {
	color:var(--st-text-color);
}

a:focus, a:hover {
	color: var(--st-link-active-text-color);
}
.well {
	background-color: var(--st-top-menu-bg-color);
} 
.navbar-top-menu {
	border-color: var(--st-top-menu-bg-color);
	background-color: var(--st-bg-color);
}
.navbar-top-menu .container-fluid {
	background-color: var(--st-top-menu-bg-color);
}

body.no-top-menu .navbar-top-menu {
	display:none;
}
.navbar-brand {
	font-size:16px;
	line-height:18px;
}
.navbar-default .navbar-nav,
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
	color: var(--st-menu-text-color);
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
	color: var(--st-menu-text-color);
}
.viewHeading .navbar-form {
	border-color: var(--st-border-color);
	margin-top:7px;
	margin-bottom:7px;
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
	max-height:80vh;
}

@media (min-width: 768px) {
	.navbar-default .navbar-nav > li > a {
		padding:15px 12px;
		line-height:18px;
	}
	.navbar-top-menu.navbar-default .navbar-nav > li > a {
		margin: 8px 4px;
		padding: 8px 8px;
	}
	.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li.open > a {
		margin: 7px 4px;
		padding: 8px 8px;
		background-color: var(--st-menu-active-bg-color);
		border-radius: var(--st-border-radius);
		transition: background .12s ease-out;
	}
	.navbar-top-menu.navbar-default .navbar-nav > li > a:hover, .navbar-top-menu.navbar-default .navbar-nav > li.open > a {
		margin: 8px 4px;
	}
	.iconMenu > li > a {
		font-size:14px;
	}
	.iconMenu .glyphicon {
		top: 2px;
	}
}

.navbar-default .navbar-nav > li.open > a, .navbar-default .navbar-nav > li.open > a:focus, .navbar-default .navbar-nav > li.open > a:hover {
	background-color: var(--st-menu-active-bg-color);
}
.navbar-top-menu.navbar-default .navbar-nav > li.open > a, .navbar-top-menu.navbar-default .navbar-nav > li.open > a:focus, .navbar-top-menu.navbar-default .navbar-nav > li.open > a:hover {
	background-color: var(--st-item-bg-color);
}

.navbar-top-menu .navbar-brand {
	color:#0d8f6a !important;
	min-width: calc(var(--st-left-menu-width) + 30px);
	font-weight:bold;
	text-align:center;
	line-height:20px;
	color:var(--st-color) !important;
}
.navbar-top-menu .navbar-brand.custom-logo {
	padding-top:5px;
	padding-bottom:5px;
	height:50px;
	line-height:40px;
	width:250px;
	overflow:hidden;
}
.navbar-top-menu .navbar-brand.custom-logo img {
	max-height:40px;
	max-width:calc(var(--st-left-menu-width) + 30px);
	display:inline-block;
	image-rendering: -webkit-optimize-contrast;
}
.navbar-top-menu .workspaces li.selected a {
	font-weight:bold !important;
}
.navbar-top-menu #accountMenu .glyphicon-user {
	color:var(--st-muted-icon-color);
}
#accountMenu a.st-theme-selector span:before {
	content: '';
	display: inline-block;
	mask-position: center;
	background-color: var(--st-muted-icon-color);
	margin-right: 5px;
	vertical-align: middle;
}
#accountMenu a.st-theme-selector[rel='light'] span:before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5M2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1m18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1M11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1m0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1M5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0z"></path></svg>');
	width: 16px;
	height: 16px;
	margin-top: -4px;
}
#accountMenu a.st-theme-selector[rel='dark'] span:before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65c-1.47.85-3.18 1.35-5 1.35-5.52 0-10-4.48-10-10S8.48 2 14 2"></path></svg>');
	width: 16px;
	height: 16px;
	margin-top: -4px;
}
#accountMenu a.st-theme-selector[rel='auto'] span:before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10m1-17.93c3.94.49 7 3.85 7 7.93s-3.05 7.44-7 7.93z"></path></svg>');
	width: 16px;
	height: 16px;
	margin-top: -4px;
}

.navbar-top-menu #searchBox input {
	background-color: var(--st-bg-color);
	box-shadow: none;
	max-width: 150px;
}
.navbar-default .navbar-toggle {
	border-color: var(--st-border-color);
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background-color: var(--st-item-bg-color);
}
@media (max-width: 767px) {
	.navbar-default .navbar-nav .open .dropdown-menu > li > a {
		color:var(--st-menu-text-color);
	}
	.navbar-top-menu #accountMenu {
		clear:both;
		float:none !important;
	}
	.navbar-top-menu #searchBox input {
		max-width:100%;
	}

}
@media (min-width: 768px) and (max-width: 1200px) {
	.navbar-top-menu #accountMenu .username {
		display:none;
	}
	.navbar-top-menu #accountMenu .dropdown-toggle {
		text-align:right;
		min-width:50px;
	}
	.navbar-top-menu #accountMenu .dropdown-menu {
		margin-left:-85px;
	}
	.navbar-top-menu #searchBox input {
		max-width: 100px;
	}
}
.navbar-top-menu #appMenu ul.workspaces {
	max-height:60vh;
	overflow-y:auto;
}
.navbar-nav > li > .dropdown-menu {
	margin-top:0px;
}
.navbar-top-menu .navbar-nav ul.dropdown-menu {
	margin-top: 2px;
}

.navbar-top-menu #appMenu ul.workspaces .shared {
	float:right;
	font-size:11px;
	font-weight:normal;
	color:#999;
	line-height:20px;
}
.navbar-top-menu a.subscription-alert {
	padding:0px;
	margin-top:0px;
	color:#ec971f !important;
	display:inline-block;
	opacity:0.7;
	font-size:16px !important;
	line-height:16px !important;
}
.navbar-top-menu a.subscription-alert-important, .navbar-top-menu .navbar-nav > li > a.subscription-alert-important:hover {
	color: #c7254e !important;
}
.navbar-top-menu .navbar-nav > li > a.subscription-alert:hover {
	opacity: 1.0;
	color: #ec971f !important;
}
@media (max-width: 767px) {
	.navbar-top-menu .navbar-nav > li.active > a {
		background-color:#0d8f6a !important;
		color:#FFFFFF !important;
	}
}

.navbar-top-menu .navbar-nav > li > a,
.navbar-top-menu .navbar-nav > li > a:focus,
.navbar-top-menu .navbar-nav > li.active > a,
.navbar-top-menu .navbar-nav > li.active > a:focus {
	background-color: var(--st-top-menu-bg-color);
	color: var(--st-top-menu-text-color);
}
.iconMenu li.active .glyphicon::before {
	background-color: var(--st-top-menu-text-color) !important;
}

.navbar-top-menu .navbar-nav > li > a:hover, 
.navbar-top-menu .navbar-nav > li.active > a:hover, 
.navbar-top-menu .navbar-nav > li.active.open > a {
	background-color: var(--st-item-bg-color) !important;
	color: var(--st-top-menu-text-color) !important;
	transition: background .12s ease-out;
}

@media (min-width: 768px) {
	.navbar-top-menu .navbar-nav > li.active {
		background-color: var(--st-top-menu-bg-color);
		border-bottom: 2px solid var(--st-color) !important;
	}
	.navbar-top-menu .navbar-nav > li.active > a {
		background-color:var(--st-top-menu-bg-color);
		font-weight:600;
		padding-bottom:6px;
		white-space: nowrap !important;
	}

		.navbar-top-menu .navbar-nav > li > a > span.stItemText {
			display: inline-block;
		}
		.navbar-top-menu .navbar-nav > li > a > span.stItemText::before {
			content: attr(data-content);
			display: block;
			font-weight: 600;
			height: 0;
			visibility: hidden;
		}

	.navbar-top-menu .navbar-nav > li.active > a:hover, .navbar-top-menu .navbar-nav > li.open > a {
		margin-bottom:6px !important;
		padding-bottom:8px;
	}
}


input, textarea {
	font-family:Arial;
}
input::placeholder, textarea::placeholder {
	color:var(--st-muted-icon-color) !important;
}

input[type="checkbox"] {
	opacity:var(--st-checkbox-opacity);
}
input[type="checkbox"]:checked, input[type="radio"]:checked {
	opacity:var(--st-checkbox-checked-opacity);
}
button.btn:focus, input[type="button"]:focus, a:focus {
	outline: none !important;
}

	body > .navbar li.active {
		background-color: var(--st-menu-active-bg-color);
	}

a.text-muted:hover, a.text-muted:focus {
	color: var(--st-muted-text-color);
}
.text-muted {
	color: var(--st-muted-text-color);
}
code {
	background-color:var(--st-menu-active-bg-color);
}

#sidebar {
	width: var(--st-left-menu-width);
	position: fixed;
}

.body-content {
	padding-top: 70px;
}
body.no-top-menu .body-content {
	padding-top: 15px;
}

#mainViewContainer {
	margin-left: calc(var(--st-left-menu-width) + 15px);
	/*min-height: 100vh;*/
}
#mainViewContainer b, *:not(.checkbox):not(.radio)>label:not(.checkbox-inline):not(.radio-inline) {
	font-weight:600;
}

.get-started-content .label-info {
	background-color: #ec971f;
	border-radius: var(--st-border-radius);
	font-size: 16px;
	display: inline-block;
	padding: 5px 10px;
	margin-top: 5px;
}

.cubeReports #reportList table.table-fixed-header th {
	z-index: 100;
	top: 50px;
}
body.no-top-menu .cubeReports #reportList table.table-fixed-header th {
	top: 0px;
}
@media (min-width: 768px) {
	.cubeReports #reportList table.table-fixed-header th {
		top: 149px;
	}
	body.no-top-menu .cubeReports #reportList table.table-fixed-header th {
		top: 94px;
	}
}
@media (min-width: 1200px) {
	.cubeReports #reportList table.table-fixed-header th {
		top: 120px;
	}

	body.no-top-menu .cubeReports #reportList table.table-fixed-header th {
		top: 65px;
	}
}

.cubeView {
	padding-bottom: 30px;
}
.cardsList {
	font-size: 14px;
	margin-left:-10px;
	margin-right:-10px;
}
.cardsList>* {
	padding-left:10px;
	padding-right:10px;
}
	.cardsList .sortable-ghost {
		visibility: hidden;
	}
	.cardsList .sortable-drag .panel {
		background-color: var(--st-bg-color);
	}

	.cardsList table {
		table-layout:fixed;
	}
	.cardsList .panel {
		border-radius: var(--st-border-radius);
		border-color: var(--st-border-color);
		background-color: var(--st-bg-color);
		box-shadow:none;
	}
	.cardsList .panel .panel-heading {
		padding:5px;
		position:relative;
		border-top-left-radius:var(--st-border-radius);
		border-top-right-radius:var(--st-border-radius);
		border-color:var(--st-top-menu-bg-color);
		background-color: var(--st-top-menu-bg-color);
	}
	.cardsList .panel td {
		border:0px;
	}
	.cardsList .panel td>.text-singleline {
		height:20px;
	}

	.cardsList .panel .panel-heading .glyphicon-move {
		position:absolute;
		right:5px;
		top:5px;
		width:16px;
		font-size:16px;
		line-height:16px;
		color:var(--st-muted-icon-color);
		height:16px;
		padding:2px;
		background-color:transparent;
		display:none;
	}
		.cardsList .panel .panel-heading .glyphicon.reportIsPublic,
		.cardsList .panel .panel-heading .glyphicon.reportIsSubscribed,
		.cardsList .panel .panel-heading .glyphicon.itemIsShared,
		.cardsList .panel .panel-heading .glyphicon.reportDescriptionIcon {
			float: left;
			color: var(--st-muted-icon-color);
			top: 4px;
			margin-right: 5px;
		}
	.cardsList .panel .panel-heading:hover .glyphicon-move {
		display:block;
	}
	.cardsList .panel .panel-heading .glyphicon-move:hover {
		color:var(--st-text-color);
		cursor:move;
	}

		.cardsList .panel .cubeDescription {
			overflow: hidden;
			text-overflow: ellipsis;
			height: 1.42857143em;
			white-space: pre-line;
		}
	.cardsList .suggested-report b, .cardsList .suggested-report a, #reportList .suggested-report a {
		color: #999;
	}
	.cardsList .suggested-report .label, #reportList .suggested-report .label {
		background-color: #aaa;
	}

		.cardsList .panel .panel-heading > a {
			white-space: nowrap;
			overflow:hidden;
			text-overflow: ellipsis;
			font-weight:600;
			display:block;
			text-align:center;
		}
		.cubeView .dimensionsList, .cubeView .measuresList {
			max-height: min(30vh, 130px);
			overflow:auto;
		}
		@media (max-width: 767px) {
			.cubeView .dimensionsList, .cubeView .measuresList {
				max-height: none;
				overflow: auto;
			}
		}
		@media (max-width: 991px) {
			.cardsList > div {
				display: block !important;
			}
		}
			.cardsList .label, #reportList .label {
				font-weight: normal;
				display: inline-block;
				line-height: inherit;
				border-radius: var(--st-border-radius);
				padding: 1px 4px;
			}

			.dimensionsList .label, .measuresList .label {
				font-weight: normal;
				font-size:12px;
				line-height:12px;
				border-radius: var(--st-border-radius);
				padding: 4px 4px;
				float: left;
				display: block;
				margin-right: 5px;
				margin-bottom: 5px;
				font-optical-sizing:none;
			}
			.dimensionsList .label-warning {
				float:none;
				display:inline-block;
				word-wrap: break-word; 
				white-space:normal; 
				text-align:left;
			}

			.label.label-dimension {
				background-color: var(--st-dimension-label-bg-color);
			}
			.label-dimension-parent {
				display:table-cell;
				padding-right:5px;
			}
			.label-dimension-children {
				display:table-cell;
				white-space:normal;
				text-align:left;
			}
				.label-dimension-children .compactDimension {
					white-space:nowrap;
				}

			.label.label-measure {
				background-color: var(--st-measure-label-bg-color);
			}
		.dimensionsList .label a, .measuresList .label a { color:var(--st-bg-color); }
		.measuresList a.compactMeasure, .dimensionsList a.compactDimension {
			color:var(--st-bright-text-color);
		}

.form-group .form-control-static.cubeDescription {
	white-space: pre-line;
}
.cubeDescription prompt {
	display:none;
}
.popover .reportDescription {
	white-space: pre-line;
	font-size:14px;
	line-height:18px;
	max-height:50vh;
	overflow:auto;
}
.popover .reportDescription ul {
	padding-left:20px;
	margin-top:5px;
	margin-bottom:5px;
}

@media (max-width: 767px) {
	#sidebar {
		position:static;
		width:100%;
	}
	#mainViewContainer {
		margin-left:0px;
		padding-top:0px;
	}
	.navbar-fixed-top .navbar-brand, .on-premise-version {
		min-width: unset !important;
		padding-left:15px;
		padding-right:15px;
	}
	
}


#sidebar a {
	outline: 0px solid transparent;
	font-size:14px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
#sidebar li>ul {
	
}
#sidebar .nav > li a {
	color: #0d8f6a;
	padding: 10px 10px;
	border-left: 2px solid var(--st-bg-color);
	font-weight: 600;
	color: var(--st-color);
}
#sidebar li {
	margin-top:0px;
}
#sidebar .nav > li a:focus {
	background-color:transparent;
}
#sidebar .nav > li a:hover {
	background-color: var(--st-menu-active-bg-color);
}
#sidebar li.active > a, #sidebar li.active > a:hover {
	background-color: var(--st-menu-active-bg-color) !important;
	border-left-color: #0d8f6a;
	border-left-color: var(--st-color);
}

#sidebar .nav-pills > li a {
	border-radius:0px;
}

	#sidebar li > ul a.reportName, #sidebar li > ul a.sub-item {
		padding:5px 5px 5px 30px;
		font-weight:normal;
		color:var(--st-menu-text-color);
	}

#sidebar .action {
	visibility:hidden;
	cursor:pointer;
	position:absolute;
	top:9px;
	padding:5px;
	background-color:transparent;
	opacity:0.4;
}
#sidebar span.shared {
	color:#ccc;
	font-weight:normal;
	position: absolute;
	top: 9px;
	right:0px;
	font-size:11px;
	padding: 5px;
}
#sidebar a.reportName span.shared, #sidebar #menuDashboardList span.shared {
	top: 4px;
}
#sidebar li.active>a>span.shared {
	color: #999;
}
#sidebar a:hover span.shared {
	display:none;
}

#sidebar a.reportName .action {
	top:4px;
}
		#sidebar a:hover>.action{
			z-index:100;
			visibility:visible;
		}
		#sidebar a:hover, #sidebar a.shared {
			padding-right:45px !important;
		}

			#sidebar a:hover > .action:hover {
				opacity:1.0;
			}
#sidebar .reportIsPublic, #sidebar .reportIsSubscribed {
	position: absolute;
	margin-left: -20px;
	margin-top: 8px;
	color: var(--st-muted-icon-color);
	z-index: 100;
}

#sidebar #uploadContainer .progress {
	border-radius: var(--st-border-radius);
	height: 52px;
	margin-bottom: 0px;
	background-color: #F0F0F0;
}
	#sidebar #uploadContainer .progress .progress-bar {
		padding-top:15px;
		padding-bottom:15px;
	}
		#sidebar #uploadContainer .progress .progress-bar.started {
			color:#101010;
		}



#menuCubesList, #menuHelpPagesList, #menuDashboardList {
	margin-bottom: 15px;
	overflow: auto;
	position: relative;
}
@media (max-width: 767px) {
	#menuCubesList, #menuDashboardList {
		display: none !important;
	}
}
#menuHelpPagesList .section {
	color:#b4bcc2;
	font-size:11px;
	font-weight:bold;
	text-transform:uppercase;
	padding:5px 0px;
}
#menuHelpPagesList li a {
	padding: 5px 5px 5px 15px !important;
	font-weight: normal !important;
	color: var(--st-text-color) !important;
}
	#menuHelpPagesList li a.expandCollapse {
		padding: 8px 0px 12px 0px !important;
		background-color: transparent;
		border: none;
		position: absolute;
		z-index: 100;
		display: block;
		margin-left: 5px;
		width: 10px;
		height: 30px;
		font-size: 11px;
		text-overflow:clip;
	}
	@media (max-width: 767px) {
		#menuHelpPagesList li a.expandCollapse {
			padding: 5px 0px 15px 0px !important;
		}
	}
	#menuHelpPagesList li a.expandCollapse:hover {
		background-color:transparent;
	}
		#menuHelpPagesList li a.expandCollapse.collapsed:before {
			content: '\25B7';
			color: #999;
			background-color: transparent;
		}
		#menuHelpPagesList li a.expandCollapse:before {
			content: '\25BD';
			color: #0d8f6a;
			color:var(--st-color);
		}


#menuHelpPagesList li.submenu a {
	font-size:80%;
	padding:5px 5px 5px 30px !important;
}

.modal-content {
	border-radius: var(--st-border-radius);
	background-color:var(--st-bg-color);
	border-color: var(--st-border-color);
}
.modal-header, .modal-footer {
	border-color: var(--st-border-color);
}
.modal-header .close {
	color:var(--st-top-menu-text-color);
	text-shadow: 0 1px 0 var(--st-bg-color);
}
.modal-header .modal-title {
	color:var(--st-top-menu-text-color);
}
#searchBox .dropdown-menu {
	max-height:80vh;
	overflow:auto;
}
body.no-top-menu .modal-backdrop {
	opacity: 0;
	filter: alpha(opacity=0);
}

.alert {
	border: 0px;
	border-radius: var(--st-border-radius);
}

.dropdown-menu {
	border-radius: var(--st-border-radius);
	background-color: var(--st-bg-color);
	border-color: var(--st-border-color);
	box-shadow: 0 6px 12px rgba(0,0,0, var(--st-dropdown-box-shadow-opacity) );
}
.dropdown-menu > li > a {
	color:var(--st-menu-text-color);
}
.dropdown-menu > li > a:focus, 
.dropdown-menu > li > a:hover {
	background-color:var(--st-menu-active-bg-color);
	color:var(--st-menu-text-color);
}
.dropdown-menu .divider {
	background-color:var(--st-border-color);
}

#searchBox .dropdown-menu > li > a {
	color: var(--st-muted-text-color);
	max-width: 40vw;
	overflow:hidden;
	text-overflow:ellipsis;
}
@media (max-width: 767px) {
	#searchBox .dropdown-menu > li > a {
		max-width: calc( 100vw - 30px );
	}
}

#searchBox .dropdown-menu > .active > a {
	background-color: var(--st-menu-active-bg-color);
	color: var(--st-menu-text-color);
}

.select2-container.form-control > ul, .select2-container-multi .select2-choices .select2-search-choice {
	border-radius: var(--st-border-radius) !important;
	background-image:none !important;
	box-shadow:none !important;
	background-color: var(--st-bg-color);
}
.select2-container-multi .select2-choices .select2-search-choice {
	background-color: var(--st-item-bg-color) !important;
	border-color: var(--st-item-bg-color) !important;
}

.select2-container .select2-choice {
	border-radius: var(--st-border-radius) !important;
	background-image:none !important;
	box-shadow:none !important;
	height:30px !important;
	line-height: 30px !important;
	background-color:var(--st-bg-color) !important;
	color:var(--st-text-color) !important;
}
.select2-search input {
	border-color:var(--st-border-color) !important;
	font-size:12px !important;
}
.select2-container.select2-dropdown-open .select2-choice {
	border-radius: var(--st-border-radius) var(--st-border-radius) 0 0 !important;
}
.select2-container.select2-dropdown-open.select2-drop-above .select2-choice {
	border-color: transparent !important;
	border-radius: 0 0 var(--st-border-radius) var(--st-border-radius) !important;
}

.select2-container .select2-choice .select2-arrow {
	background-color: inherit !important;
	border-left-color: transparent !important;
	background-image: none !important;
	height: 28px !important;
	padding-top: 2px;
}

.btn, .form-control, .has-error .form-control {
	border-radius: var(--st-border-radius);
	border-color: var(--st-border-color);
	box-shadow: none;
}
.has-error .form-control {
	border-color: #a94442;
}

.btn-default, .btn-default:focus, .btn-default:active {
	background-color: var(--st-bg-color) !important;
	border-color: var(--st-border-color) !important;
	color: var(--st-text-color) !important;
	outline:none !important;
	box-shadow:none !important;
}
.btn-default:hover {
	background-color:var(--st-item-bg-color) !important;
	color:var(--st-text-color) !important;
	border-color:var(--st-border-color) !important;
}
.btn-default .badge {
	background-color: var(--st-muted-icon-color);
	color: var(--st-bg-color);
}

.has-error .form-control:focus {
	box-shadow: none;
}
.form-control:focus {
	box-shadow:none;
	border-color:#5897fb;
	outline: none;
}


.input-group-sm > .form-control:first-child, .input-group-sm > .input-group-addon:first-child {
	border-top-left-radius: var(--st-border-radius);
	border-bottom-left-radius: var(--st-border-radius);
}
.input-group-sm > .form-control:last-child, .input-group-sm > .input-group-addon:last-child {
	border-top-right-radius: var(--st-border-radius);
	border-bottom-right-radius: var(--st-border-radius);
}
.input-group-addon {
	border-color:var(--st-border-color);
	background-color:var(--st-bg-color);
}

.select2-container-multi .select2-choices .select2-search-choice {
	margin: 0px 0 4px 5px !important;
	font-size: 12px !important;
	line-height: 12px !important;
	cursor: move !important;
	color: var(--st-menu-text-color) !important;
	padding:4px 6px 4px 18px !important;
	border:none !important;
}
.select2-container-multi .select2-choices .select2-search-field {
	margin: 0px 0 4px 5px !important;
}

.select2-search-choice .select2-search-choice-close {
	background-image: none !important;
	top: 0px !important;
	padding-left: 3px !important;
	padding-right:3px !important;
	width:18px !important;
	height: 20px !important;
	font-size: 14px !important;
	line-height: 20px;
	color: var(--st-muted-text-color) !important;
}
.select2-container .select2-choice abbr.select2-search-choice-close {
	background-image: none !important;
	height: 14px !important;
	font-size: 14px !important;
	color: var(--st-muted-text-color) !important;
	line-height: 14px;
}
	.select2-container .select2-search-choice-close:hover, .select2-container .select2-choice abbr.select2-search-choice-close:hover {
		text-decoration: none;
		color: var(--st-bright-text-color) !important;
	}
	.select2-container .select2-search-choice-close::after {
		content: '×';
		position:absolute;
		font-family:Arial !important;
		font-size: 14px;
		font-weight: 800;
	}


.select2-container.form-control .select2-choice .select2-arrow b {
	background-image: none !important;
	color: var(--st-muted-text-color);
	min-height:28px;
}
	.select2-container .select2-choice .select2-arrow b::after {
		height:28px;
		line-height:28px;
		position: absolute;
		font-family: Arial !important;
		content: "\25BC";
		font-size:10px;
	}
	.select2-container.select2-dropdown-open .select2-choice .select2-arrow b::after {
		content: "\25B2";
	}

	.select2-container-multi:not(.stParameter) .select2-choices {
		padding: 4px 5px 0 0 !important;
	}
.select2-drop {
	border-bottom-left-radius: var(--st-border-radius) !important;
	border-bottom-right-radius: var(--st-border-radius) !important;
	color:var(--st-menu-text-color) !important;
	background-color:var(--st-bg-color) !important;
}
.select2-drop.select2-drop-above {
	border-radius: var(--st-border-radius) var(--st-border-radius) 0 0 !important;
}

.form-control.select2-container.select2-dropdown-open {
	border-top-left-radius: var(--st-border-radius) !important;
	border-top-right-radius: var(--st-border-radius) !important;
}
.form-control.select2-container.select2-dropdown-open.select2-drop-above {
	border-radius: 0 0 var(--st-border-radius) var(--st-border-radius) !important;
}

.select2-container-multi:not(.stParameter) .select2-choices .select2-input {
	line-height: 18px !important;
	margin:0px !important;
	padding: 0 5px !important;
	color: var(--st-text-color) !important;
}
.select2-container .sortable-ghost {
	visibility:hidden;
}
.select2-container .sortable-drag {
	border: 1px solid var(--st-item-bg-color) !important;
}

.btn-st-primary {
	background-color: #FFF !important;
	background-color: var(--st-bg-color) !important;
	border-color: #0d8f6a !important;
	border-color: var(--st-color) !important;
	color: #0d8f6a !important;
	color: var(--st-color) !important;
}
.btn-st-primary:hover, .btn-st-primary:focus, .btn-st-primary:active {
	background-color:#0d8f6a !important;
	border-color:#0d8f6a !important;
	background-color:var(--st-color) !important;
	border-color:var(--st-color) !important;
	color:var(--st-bg-color) !important;
}

.btn-file {
	font-family:Arial;
	font-size:16px;
	min-height:50px;
	position: relative;
	overflow: hidden;
}

.btn-file input {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

#uploadContainer {
	margin-bottom:20px;
}

#uploadContainer .btn-file {
	padding-top:13px;
	padding-bottom:13px;
	border-radius:var(--st-border-radius);
}

#pivotHolder, #tableHolder {
	overflow:auto;
	font-family:Arial;
	max-height:100%;
	/*border-radius:var(--st-border-radius);*/
}

.reportContainer.pivotChartEnabled #pivotHolder {
	max-height:50%;
}

	.select2-search-choice.ui-sortable-helper {
		width:auto !important;
		height:auto !important;
	}
#pivotHolder .alert, #tableHolder .alert {
	margin-bottom:0px;
	border-radius:0px;
}
#pivotHolder #report-error-show-db-query, #tableHolder #report-error-show-db-query {
	display: block;
	font-size: 11px;
}
#pivotHolder #report-error-db-query pre, #tableHolder #report-error-db-query pre {
	margin: 0px;
	border: 0px;
	padding: 15px;
	border-radius: 0px;
	border-top: 1px solid #ddd;
	box-sizing: border-box;
	white-space: pre-wrap;
}

#pivotHolder table.pvtTable td:hover,
#tableHolder table.pvtTable td:hover {
	cursor: pointer;
}

#pivotHolder table.pvtTable td[data-value-index].pvtPopover,
table.pvtTable td.pvtSelectedCell {
	cursor: pointer;
	background-color: var(--st-selection-bg-color) !important;
	color: var(--st-selection-text-color) !important;
}
#pivotHolder table.pvtTable td[data-value-index].pvtPopover.pvtCopiedCell,
table.pvtTable td.pvtSelectedCell.pvtCopiedCell {
	background-color: var(--st-item-bg-color) !important;
}
#tableHolder table.pvtTable th, #tableHolder table.pvtTable td {
	text-align:left !important;
}
#tableHolder th.pvtRow {
	z-index:20 !important;
}
#tableHolder th.pvtColumn:not(:first-child):not([width]) {
	width:1px;
}

.pvtSelectionHint {
	position: absolute;
	background-color: var(--st-border-color);
	font-size: 8pt;
	padding: 2px 5px;
	color: var(--st-muted-text-color);
	z-index: 120;
}
	.pvtSelectionHint a {
		text-decoration: none !important;
		color: var(--st-link-text-color);
	}
	.pvtSelectionHint a:hover {
		color: #23527c;
	}
	.pvtSelectionHint .pvtSelectionHintExpand:after {
		content: '▼';
	}
	.pvtSelectionHint.expanded .pvtSelectionHintExpand:after {
		content: '▲';
	}

.pvtSelectionHint .pvtSelectionHintExtra {
	display:none;
}
.pvtSelectionHint.expanded .pvtSelectionHintExtra {
	display:block;
}

.popover {
	max-width: 600px !important;
	background-color: var(--st-bg-color);
	border-color: var(--st-border-color);
	box-shadow: 0 5px 10px rgba(0,0,0,var(--st-dropdown-box-shadow-opacity));
}
.popover.bottom > .arrow {
	border-bottom-color:var(--st-border-color);
}
.popover.top > .arrow {
	border-top-color:var(--st-border-color);
}
.popover.left > .arrow {
	border-left-color:var(--st-border-color);
}
.popover.right > .arrow {
	border-right-color:var(--st-border-color);
}
.popover.top > .arrow:after {
	border-top-color:var(--st-bg-color);
}
.popover.right > .arrow:after {
	border-right-color:var(--st-bg-color);
}
.popover.left > .arrow:after {
	border-left-color:var(--st-bg-color);
}

.popover.bottom > .arrow::after {
	border-bottom-color:var(--st-bg-color);
}

.popover.pvtDrillDownMenu {
	padding: 0px;
	border-radius:var(--st-border-radius);
}

	.popover.pvtDrillDownMenu .popover-content {
		padding: 0px;
		overflow: hidden;
		border-radius: 6px;
		max-height: min(45vh, 250px);
		overflow: auto;
		scrollbar-width: thin;
	}
		.popover.pvtDrillDownMenu .popover-content::-webkit-scrollbar {
			width: 7px;
		}
		.popover.pvtDrillDownMenu .popover-content::-webkit-scrollbar-track {
			border-left: 2px solid var(--st-bg-color);
			background: #F0F0F0;
		}
		.popover.pvtDrillDownMenu .popover-content::-webkit-scrollbar-thumb {
			background: rgba(0,0,0,0.3);
			border-left: 2px solid var(--st-bg-color);
		}

	.popover.pvtDrillDownMenu label.dimFilterItem, .popover.pvtDrillDownMenu label.dimFilterItemAll, .popover.pvtDrillDownMenu .dimFilterCondition {
		margin: 0;
		padding: 2px 15px 3px 10px;
		display: block;
		font-weight: normal;
		font-size: 8pt;
		line-height: 8pt;
		white-space: nowrap;
		cursor: pointer;
		font-weight:normal !important;
	}
	.popover.pvtDrillDownMenu .dimFilterCondition {
		padding-right: 10px;
		display: flex;
		border-bottom: 1px solid var(--st-border-color);
		padding-bottom: 5px;
		margin-bottom:3px;
	}
		.popover.pvtDrillDownMenu .dimFilterCondition:last-child {
			border-bottom:0px;
			margin-bottom:0px;
		}

		.popover.pvtDrillDownMenu .dimFilterCondition select {
			flex-shrink: 0;
			border-radius: 0px;
			background-color: var(--st-menu-active-bg-color);
			border-color:var(--st-border-color);
			border: 0px;
			outline: none;
			cursor: pointer;
			appearance: none;
			padding: 2px 3px 0px 3px;
			height: 13px;
			vertical-align: top;
		}
		.popover.pvtDrillDownMenu .dimFilterCondition select option {
			background-color:var(--st-top-menu-bg-color);
			line-height:14px;
		}

		.popover.pvtDrillDownMenu .dimFilterCondition input[type="number"] {
			height: 13px;
			border-radius: 0px;
			background-color: var(--st-menu-active-bg-color);
			outline: none;
			border: 0px;
			padding: 0px 0px 0px 3px;
			margin-left: 5px;
			width: 65px;
			flex: 1;
			vertical-align: top;
		}


	.popover.pvtDrillDownMenu label.dimFilterItemAll {
		border-bottom: 1px solid var(--st-border-color);
		padding-bottom: 5px;
		padding-top: 5px;
	}
	.popover.pvtDrillDownMenu .popover-content > .dimFilterItemSeparator {
		margin-top: 2px;
		border-bottom: 1px solid var(--st-border-color);
		margin-bottom: 3px;
	}
	.popover.pvtDrillDownMenu .popover-content > *:first-child {
		padding-top: 5px;
	}
	.popover.pvtDrillDownMenu .popover-content>label.dimFilterItem:last-child {
		padding-bottom: 5px;
	}

	.popover.pvtDrillDownMenu .dimFilterApply {
		border-top: 1px solid var(--st-border-color);
		display: block;
		text-align: center;
		padding: 2px;
		font-size:12px;
		color:var(--st-menu-text-color);
		border-radius:0 0 var(--st-border-radius) var(--st-border-radius);
		cursor:pointer;
	}
	.popover.pvtDrillDownMenu .dimFilterApply:hover {
		text-decoration:none;
		background-color:var(--st-menu-active-bg-color);
	}
		.popover.pvtDrillDownMenu .dimFilterApply[disabled] {
			cursor: not-allowed;
			color:#aaa;
		}


	.popover.pvtDrillDownMenu input[type="checkbox"] {
		margin: 0px 5px 0 0;
		width: 11px;
		height: 11px;
		vertical-align:bottom;
		outline-width: 1px !important;
	}


@media (max-width: 767px) {
	.popover {
		max-width:100vw !important;
	}

	.popover.pvtDrillDownMenu .popover-content {
		max-height: 40vh;
	}
}

	.popover.pvtDrillDownMenu h3 {
		padding: 5px 10px !important;
		font-size: 8pt !important;
		border-radius:0px !important;
		border-color:var(--st-border-color);
		color:var(--st-bright-text-color);
		background-color: var(--st-top-menu-bg-color) !important;
	}

	.popover.pvtDrillDownMenu .drillDownAction {
		cursor: pointer;
		padding: 2px 10px;
		font-size: 8pt;
		border-bottom: 1px solid var(--st-border-color);
		z-index: 10;
	}
	.popover.pvtDrillDownMenu .drillDownToRows {
		display:block;
		font-weight:bold;
		font-size: 8pt;
		padding: 2px 10px;
		color:var(--st-menu-text-color);
		border-bottom: 1px solid var(--st-border-color);
		border-radius:8px 8px 0px 0px;
		text-decoration:none !important;
	}

		.popover.pvtDrillDownMenu .drillDownAction:hover,  .popover.pvtDrillDownMenu .drillDownToRows:hover {
			background-color: var(--st-menu-active-bg-color) !important;
		}

		.popover.pvtDrillDownMenu .drillDownAction:last-child {
			border-bottom: 0px;
		}


#chartHolder {
	height:100%;
	padding-bottom:15px;
}
#chartHolder #pivotChart {
	height:100%;
	overflow:hidden;
}

.reportContainer.pivotTableEnabled #chartHolder {
	height: 50%;
}


table.pvtTable th.pvtRowLabel, table.pvtTable th.pvtColumnLabel, table.pvtTable th.pvtColumn, table.pvtTable tr:first-child>th:first-child:not([class]) {
	width:1%;
}
table.pvtTable sup.diffValue {
	white-space: nowrap;
}

table.pvtTable div.diffValue {
	font-size: 80%;
}

	table.pvtTable span.transpose {
		float:right;
	}
table.pvtTable .pvtPager {
	color: var(--st-muted-text-color);
}
table.pvtTable .pvtPager:hover {
	color: var(--st-bright-text-color);
	cursor: pointer;
}
#tableHolder table.pvtTable tr.pvtPagerRow th {
	font-weight: normal;
	color: var(--st-muted-text-color);
	text-align: center !important;
	padding: 5px;
}
.pvtStickyFixedHeader table.pvtTable tr.pvtPagerRow.bottomFixedRow th {
	top: auto !important;
	left: auto !important;
	bottom: 0px;
	border-top: 1px solid var(--st-border-color) !important;
	position: sticky;
}

table.pvtTable .pvtChartLegend {
	width:14px;
}
table.pvtTable .pvtChartLegend {
	display: inline-block;
	width:calc(1em*1.4);
	margin-right: 5px;
	opacity:var(--st-chart-opacity);
}
.pvtFixedHeaderOuterContainer {
	
}
table.pvtTable span.pvtSetReportParameters {
	color: var(--st-link-text-color);
	text-decoration: none;
	cursor:pointer;
}
	table.pvtTable span.pvtSetReportParameters:hover {
		color: #23527c;
		text-decoration: underline;
	}
table.pvtTable th.pvtLabelWithFilter {
	white-space:nowrap;
}
	table.pvtTable th.pvtLabelWithFilter>.pvtLabelContent {
		white-space:normal;
	}

table.pvtTable th.pvtLabelWithFilter>.pvtLabelFilter {
	z-index: 199;
	color: var(--st-muted-icon-color);
	font-size:8pt;
	font-size:var(--pvt-font-size, 8pt);
	padding:0 2px;
}

table.pvtTable th.pvtLabelWithFilter > .pvtLabelFilterApplied {
	color: var(--st-muted-text-color);
}
table.pvtTable th.pvtLabelWithFilter>.pvtLabelFilter:hover, table.pvtTable th.pvtLabelWithFilter>.pvtLabelFilter.pvtPopover {
	z-index: 199;
	color:var(--st-bright-text-color);
	cursor:pointer;
	text-decoration:none;
}
table.pvtTable th.pvtLabelWithFilter>.pvtLabelFilter:focus {
	text-decoration:none;
}


.pivotConfigForm {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.pivotConfigForm .reportTypeSelector {
	margin-bottom:10px;
}
.pivotConfigForm .reportTypeSelector label:not(.radio-inline) {
	display:inline-block !important;
	margin-right:10px;
}
.pivotConfigForm .reportTypeSelector label.radio-inline {
	vertical-align:middle;
}
.pivotConfigForm .form-control-select2 {
	font-size:12px;
	min-height:30px;
}

.nav-tabs {
	border-color:var(--st-border-color);
}
.pivotConfigForm .nav-tabs a {
	font-size: 14px;
	padding: 5px 10px;
	color: var(--st-menu-text-color);
	border-radius: var(--st-border-radius) var(--st-border-radius) 0 0;
}
body:not(.st-tabs-classic) .pivotConfigForm .nav-tabs a {
	margin: 0;
}
body:not(.st-tabs-classic) .pivotConfigForm .nav-tabs a {
	padding-top:2px;
}

body:not(.st-tabs-classic) .pivotConfigForm .nav-tabs li:not(.active) a:hover {
	background-color: var(--st-menu-active-bg-color);
	transition: background .12s ease-out;
	border-color: transparent;
	border-radius: var(--st-border-radius);
	padding: 2px 5px;
	margin: 0px 5px 3px 5px;
	color: var(--st-text-color);
}

body:not(.st-tabs-classic) .pivotConfigForm .nav-tabs > li.active > a {
	border-bottom-color: var(--st-color);
	border-width: 0 0 2px 0;
	color: var(--st-text-color);
	background-color: var(--st-bg-color);
	font-weight: 600;
}
body:not(.st-tabs-classic) .pivotConfigForm .nav-tabs > li.active > a:focus {
	background-color:var(--st-bg-color);
}


.pivotConfigForm .nav-tabs a:focus {
	outline: none;
}
.pivotConfigForm .tab-content {
	margin-top:10px;
	margin-bottom:10px;
	overflow:auto;
}
.pivotConfigForm label a.text-muted.pull-right {
	margin-right:2px;
}


.scrollbar-y-thin {
	scrollbar-width: thin;
}

.scrollbar-y-thin::-webkit-scrollbar {
	width:7px;
}
.scrollbar-y-thin::-webkit-scrollbar-track {
	border-left:2px solid var(--st-bg-color);
	background: var(--st-menu-active-bg-color);
}
.scrollbar-y-thin::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.3);
	border-left:2px solid var(--st-bg-color);
}

.pivotConfigForm .checkbox {
	margin-top:3px !important;
	margin-bottom:0px;
}
.pivotConfigForm .checkbox select, #reportConfigureMembersDialog .checkbox select {
	padding:0px;
	height:19px;
	border:0px;
	background-color:var(--st-menu-active-bg-color);
}
.pivotConfigForm .checkbox select option, #reportConfigureMembersDialog .checkbox select option {
	background-color:var(--st-top-menu-bg-color);
}

.pivotConfigForm .checkbox select:focus { outline:0; }

.pivotConfigForm #params input[type="checkbox"] {
	margin-right:5px;
}
.pivotConfigForm input.form-control {
	line-height:1.5 !important;
}

.pivotConfigForm .form-group {
	margin-bottom:5px;
}
	.pivotConfigForm .form-group label:not(.radio-inline):not(.checkbox-inline) {
		display:block;
		clear:both;
	}
.reportForm .select2-results {
	max-height:160px;
}
.reportViewDropdownMenu {
	overflow-y:auto;
	max-height:60vh;
}
.reportSwitchWorkspace input {
	margin-right:5px;
}

.reportContainer #pivotArea {
	display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
	.reportContainer #pivotArea {
		margin-bottom: 47px;
	}
	body.no-footer .reportContainer #pivotArea {
		margin-bottom: 10px;
	}
}
.reportContainer.pivotTableEnabled #pivotArea, 
.reportContainer.pivotChartEnabled #pivotArea, 
.reportContainer.flatTableEnabled #pivotArea {
	display: block;
}

@media (max-width: 1199px) {
	.report-actions-menu {
		margin-right: -15px;
		margin-left: -15px;
		border-top: 1px solid var(--st-border-color);
		clear: both;
	}

		.report-actions-menu > ul {
			float: left !important;
			margin: 0px;
		}

			.report-actions-menu > ul > li {
				float: left;
			}

		.report-actions-menu li > a, .report-actions-menu .dropdown-header {
			padding: 5px 10px !important;
		}
		.report-actions-menu .navbar-nav > li > a:hover, .report-actions-menu .navbar-nav > li.open > a {
			padding: 5px 10px !important;
			border-radius: 0px !important;
			margin: 0 !important;
		}

		.report-actions-menu>.navbar-right {
			float:none !important;
			margin-right:0px !important;
		}
		.report-actions-menu>.navbar-right>li:not(.open):first-child>a {
			border-bottom-left-radius: var(--st-border-radius) !important;
		}

			.report-actions-menu > .navbar-right .dropdown-menu {
				right:initial;
				left:initial;
			}
}

@media (max-width: 767px) {
	.report-actions-menu > .navbar-right > li.open:first-child > a {
		border-bottom-left-radius: 0px !important;
	}

	.report-actions-menu .navbar-nav .open .dropdown-menu > li > a, .report-actions-menu .dropdown-header {
		padding: 3px 10px;
	}
}

.pivotContainer span.transpose, .pivotContainer span.configure {
	cursor: pointer;
	transform: rotate(90deg);
}
	.pivotContainer .pivotConfigForm span.transpose {
		font-size:10px;
		margin-left:5px;
	}
.pivotContainer .pivotConfigForm span.configure {
	font-size: 12px;
	margin-left: 5px;
}
.pivotContainer .paramsTab span.configureParams {
	display:none;
	font-size: 12px !important;
	margin-left: 5px;
	cursor: pointer;
}
	.pivotContainer .paramsTab.active:not(.loading) span.configureParams {
		display: inline-block;
	}
.pivotContainer span.transpose:hover, .pivotContainer span.configure:hover, .pivotContainer .paramsTab span.configureParams:hover {
	color: var(--st-menu-text-color);
}


.pivotContainer .pivotConfigForm span.filter-clear {
	cursor: pointer;
	color: var(--st-muted-icon-color);
	font-size: 8pt;
	margin-left: 5px;
}
.pivotContainer .pivotConfigForm span.filter-clear:hover {
	color: var(--st-text-color);
}

.pivotTableEnabled .pivotConfigForm, .pivotChartEnabled .pivotConfigForm  {
	width:auto; 
	float:none; 
	margin-bottom:20px;
}
@media (min-width: 992px) {
	.pivotTableEnabled .pivotConfigForm, .pivotChartEnabled .pivotConfigForm, .flatTableEnabled .pivotConfigForm {
		position: fixed;
		right: 15px;
		width: var(--st-report-right-panel-width);
		overflow: auto;
	}

	.pivotTableEnabled .pivotContainer, .pivotChartEnabled .pivotContainer, .flatTableEnabled .pivotContainer {
		margin-right: calc(var(--st-report-right-panel-width) + 15px);
	}
}

.pivotConfigForm label {
	font-size:14px;
}
.pivotConfigForm textarea#filter {
	resize:vertical;
	min-height:50px;
	word-break:break-all;
	font-size:12px;
}
.select2-result-label, .select2-no-results {
	font-size:12px;
}
.select2-results .select2-no-results {
	background-color:var(--st-bg-color) !important;
}


.viewHeading {
	background-color: var(--st-bg-color);
	border: none;
	border-radius: 0 0 var(--st-border-radius) var(--st-border-radius);
}
	.viewHeading > .container-fluid {
		border-radius: var(--st-border-radius);
		border: 1px solid var(--st-border-color);
	}
	.viewHeading > .container-fluid .navbar-nav {
		padding-right:3px; /*compensate reduced to 12px item padding*/
	}


@media (min-width: 768px) {
	.viewHeading {
		position: sticky;
		top: 70px;
		z-index: 200;
	}

	body.no-top-menu .viewHeading { top:15px; }
	body.no-top-menu .navbar-top-menu {
		display:block;
		min-height:15px;
	}
	body.no-top-menu .navbar-top-menu>* { display:none;}

	.navbar-top-menu.navbar-fixed-top {
		min-height:70px;
		border-bottom:0px;
	}
	body.help-page .navbar-top-menu.navbar-fixed-top {
		min-height:50px;
	}
		body.help-page .navbar-top-menu.navbar-fixed-top::after {
			content: "";
			width: 100%;
			height: 20px;
			position: absolute;
			background: linear-gradient(0deg, rgba(var(--st-bg-color-rgb),0) 0%, rgba(var(--st-bg-color-rgb),1) 80%);
		}
		body.help-page #footer::before {
			content: "";
			width: 100%;
			height: 20px;
			background: linear-gradient(0deg, rgba(var(--st-bg-color-rgb),1) 20%, rgba(var(--st-bg-color-rgb),0) 100%);
			margin-top:-20px;
			position: absolute;
		}

		.navbar-top-menu.navbar-fixed-top > .container-fluid, .navbar-top-menu.navbar-fixed-top > .container {
			border-color: var(--st-color);
			background-color: var(--st-top-menu-bg-color);
		}
}


@media (max-width: 767px) {
	.flexViewHeading > .container-fluid > .navbar-header {
		padding-right:10px;
	}
	.flexViewHeading > .container-fluid > .navbar-header > .reportName > .navbar-brand, .flexViewHeading > .container-fluid > .navbar-header > .cubeName > .navbar-brand {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
		max-width: calc(100vw - 40px);
	}
	.flexViewHeading > .container-fluid > .navbar-header > .cubeNavLink {
		display: block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: calc(100vw - 65px);
	}
}
@media (min-width: 768px) {
.flexViewHeading > .container-fluid > .navbar-header {
	display: flex;
	float:none !important;
}

	.flexViewHeading > .container-fluid > .navbar-header > * {
		float: none !important;
		white-space: nowrap;
	}

	.flexViewHeading>.container-fluid>.navbar-header>.reportName, .flexViewHeading>.container-fluid>.navbar-header>.cubeName {
		float:none !important;
		flex: 1;
		min-width: 50%;
	}
	.flexViewHeading>.container-fluid>.navbar-header>.cubeNavLink {
		flex-shrink:1;
		display:block;
		min-width: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.flexViewHeading>.container-fluid>.navbar-header>.reportName>.navbar-brand, .flexViewHeading>.container-fluid>.navbar-header>.cubeName>.navbar-brand {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		float:none !important;
		display:block;
	}
	.flexViewHeading>.container-fluid>.navbar-header>.reportName>.editMode, .flexViewHeading>.container-fluid>.navbar-header>.cubeName>.editMode {
		display:block;
		float:none !important;
		display:flex;
	}
	.flexViewHeading>.container-fluid>.navbar-header>.reportName>.editMode>.form-group, .flexViewHeading>.container-fluid>.navbar-header>.cubeName>.editMode>.form-group {
		flex-shrink:1;
		min-width: 0;
	}
	.flexViewHeading>.container-fluid>.navbar-header>.reportName>.editMode>.btn, .flexViewHeading>.container-fluid>.navbar-header>.cubeName>.editMode>.btn {
		margin-left:10px;
	}
}

@media (min-width: 1200px) {
	.flexViewHeading > .container-fluid {
		display: flex;
	}
	.flexViewHeading>.container-fluid>* {
		float:none !important;
		white-space:nowrap;
	}
	.flexViewHeading>.container-fluid>.navbar-left {
		margin-right:15px;
	}

		.flexViewHeading > .container-fluid > .navbar-header {
			flex: 1;
			min-width: 0;
		}
}

.viewHeading .navbar-header {
	vertical-align:bottom;
}
.viewHeading .navbar-header .navbar-brand {
	font-family:Arial,Helvetica;
	vertical-align:bottom;
	height:auto;
	color:var(--st-muted-text-color);
}
.viewHeading .navbar-header a.navbar-brand {
	color:var(--st-link-text-color) !important;
}

.viewHeading .navbar-header .navbar-brand small {
	color: #CCC;
	font-size: 14px;
	line-height:16px;
}
	.viewHeading .navbar-header .navbar-brand .glyphicon {
		height:18px;
		vertical-align:bottom;
		top:0px;
	} 

.viewHeading .navbar-header .glyphicon-edit { visibility:hidden; }
.viewHeading .navbar-header a:hover .glyphicon-edit { visibility:visible; }

	.viewHeading .navbar-form {
		padding-left:0px;
		box-shadow:none;
	}
	@media (max-width: 767px) {
		.viewHeading .navbar-form {
			border: none !important;
			padding: 0 10px;
		}
	}

	.viewHeading.nameEditMode .btn.visibleWhenChanged {
		display:none !important;
	}
	.viewHeading .editMode input.form-control {
		max-width:100%;
	}

.viewHeading .reportName, .viewHeading .cubeName {
	float:left;
}
.viewHeading .reportName a.navbar-brand:hover, .viewHeading .cubeName a.navbar-brand:hover {
	cursor:text;
}

.viewHeading .reportName {
	display:none;
}

	.viewHeading .reportName .glyphicon {
		font-size:14px;
		color:var(--st-muted-icon-color);
		margin-right:5px;
		line-height:18px;
	}

.cubeDataSourceTimestamp {
	color:var(--st-muted-icon-color);
}
.cubeDataSourceTimestamp a {
	font-size:12px;
}

.cubeDataActions {
	font-size:12px;
	line-height:12px;
	display:block;
}

@media (max-width: 767px) {
	.viewHeading .editMode {
		display:block;
		padding-left:15px;
		padding-top:0px;
		padding-bottom:0px;
	}
	.viewHeading .reportName>.editMode, .viewHeading .cubeName>.editMode {
		margin-left:-5px;
	}

	.viewHeading .editMode input {
		min-width:0px;
	}
	.viewHeading .navbar-brand {
		padding: 10px;
		padding-right:0px;
	}

	.viewHeading .navbar-brand.separator {
		font-size:12px;
	}
	.cubeDataSourceTimestamp {
		display:block;
	}

	.nav > li > a {
		padding: 5px 10px;
	}

	.pivotConfigForm .tab-content {
		height: auto !important;
		max-height: unset !important;
	}
}

.cubeStatsPanel {
	max-height:30vh; overflow:auto; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
	margin-bottom:20px;
}
.cubeStatsPanel .list-group {
	font-size:14px;
	margin-bottom:0px;
}
.cubeStatsPanel .list-group-item {
	padding: 8px;
	border-radius:0px !important;
}
.cubeStatsPanel .list-group-item:first-child {
	border-top:0px;
}
.cubeStatsPanel .list-group-item:last-child {
	border-bottom:0px;
}


table.table {
	font-size:14px;
	border-color:var(--st-border-color);
}
.table .table {
	background-color: var(--st-bg-color);
}

table.table th {
	background-color:var(--st-th-bg-color);
	font-weight:600;
}
.table > thead > tr > th,
.table > tbody > tr > td, 
.table > tbody > tr > th, 
.table > tfoot > tr > td, 
.table > tfoot > tr > th, 
.table > thead > tr > td, 
.table > thead > tr > th {
	border-color: var(--st-border-color);
}
.pvtTable td[style] {

}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
	border-color: var(--st-border-color) !important;
}


#footer {
	position: fixed;
	bottom: 0;
	left: 0px;
	right: 0px;
	background-color: var(--st-top-menu-bg-color);
	font-size: 14px;
	color: #505050;
	z-index: 200;
}
	#footer .footerWrapper {
		padding:5px; 
		padding-left:15px;
		padding-right:15px;
	}
#footer .fullScreenMode { display:none; text-align:center; font-size:75%; }
#footer .stLogo {
	font-weight:bold;
	color:#777;
}
#footer .stLogo > span {
	color: #0d8f6a;
	color: var(--st-color);
}

@media (max-width: 767px) {
	#footer {
		position: static;
		background-color: var(--st-bg-color);
		text-align:center;
	}
		#footer .footerWrapper small {
			float:none !important;
			display:inline;
			font-size:75%;
		}
		#footer .pull-left::after {
			content:' | ';
		}
		#footer div.clearfix, #footer .mobileHidden {
			display: none;
		}
}

.textcomplete-dropdown {
	border-radius:0px;
	padding:0px;
}
.textcomplete-dropdown .textcomplete-item a {
	overflow:hidden;
	text-overflow:ellipsis;
}

.ct-label {
	font-size: 11px !important;
	overflow: hidden;
	color: var(--st-muted-text-color) !important;
	fill: var(--st-muted-text-color) !important;
}
.ct-chart-donut .ct-label, .ct-chart-pie .ct-label {
	fill: var(--st-bg-color) !important;
}

.ct-bar-data-label {
	font-size: 11px !important;
	color: rgba(var(--st-text-color-rgb),0.7);
	fill: rgba(var(--st-text-color-rgb),0.9);
	text-align: center;
}

.ct-horizontal-bars .ct-label.ct-vertical {
	text-align: right !important;
	justify-content: flex-end !important;
	margin-right: 5px;
}
	.ct-horizontal-bars .ct-label.ct-vertical.ct-overflow-y {
		display: block !important;
		vertical-align: top;
		text-align: left;
	}
	.ct-label.ct-horizontal.ct-overflow-x {
		text-align: right !important;
		align-items:center !important;
		justify-content: flex-end !important;
		writing-mode: vertical-rl;
		transform:rotate(180deg) !important;
	}


.ct-axis-title {
	font-style: italic;
}
.ct-grid {
	stroke-dasharray: initial !important;
	stroke: var(--st-item-bg-color) !important;
}
.ct-chart line {
	shape-rendering:crispedges;

}
.ct-chart .ct-area {
	fill-opacity: 0.4 !important;
}
.ct-point {
	stroke-width: 5px !important;
}
.ct-condensed .ct-point {
	stroke-width: 2px !important;
}
.ct-sparsed .ct-point {
	stroke-width: 7px !important;
}

.ct-chart.ct-animation .ct-chart-line .ct-point, .ct-chart.ct-animation .ct-chart-area .ct-point {
	opacity: 0;
}

.ct-line {
	stroke-width: 2px !important;
}
.ct-condensed .ct-line {
	stroke-width: 1px !important;
}

/* chart series colors */
.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
	stroke: var(--st-chart-series-a-color) !important;
}
.ct-series-a .ct-slice-pie, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-area {
	fill: var(--st-chart-series-a-color) !important;
}
.pvtChartLegend.pvtChart-series-a {
	background-color: var(--st-chart-series-a-color);
}

.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
	stroke: var(--st-chart-series-b-color) !important;
}
.ct-series-b .ct-slice-pie, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-area {
	fill: var(--st-chart-series-b-color) !important;
}
.pvtChartLegend.pvtChart-series-b {
	background-color: var(--st-chart-series-b-color);
}

.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
	stroke: var(--st-chart-series-c-color) !important;
}
.ct-series-c .ct-slice-pie, .ct-series-c .ct-slice-donut-solid, .ct-series-c .ct-area {
	fill: var(--st-chart-series-c-color) !important;
}
.pvtChartLegend.pvtChart-series-c {
	background-color: var(--st-chart-series-c-color);
}

.ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
	stroke: var(--st-chart-series-d-color) !important;
}
.ct-series-d .ct-slice-pie, .ct-series-d .ct-slice-donut-solid, .ct-series-d .ct-area {
	fill: var(--st-chart-series-d-color) !important;
}
.pvtChartLegend.pvtChart-series-d {
	background-color: var(--st-chart-series-d-color);
}

.ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
	stroke: var(--st-chart-series-e-color) !important;
}
.ct-series-e .ct-slice-pie, .ct-series-e .ct-slice-donut-solid, .ct-series-e .ct-area {
	fill: var(--st-chart-series-e-color) !important;
}
.pvtChartLegend.pvtChart-series-e {
	background-color: var(--st-chart-series-e-color);
}

.ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
	stroke: var(--st-chart-series-f-color) !important;
}
.ct-series-f .ct-slice-pie, .ct-series-f .ct-slice-donut-solid, .ct-series-f .ct-area {
	fill: var(--st-chart-series-f-color) !important;
}
.pvtChartLegend.pvtChart-series-f {
	background-color: var(--st-chart-series-f-color);
}

.ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
	stroke: var(--st-chart-series-g-color) !important;
}
.ct-series-g .ct-slice-pie, .ct-series-g .ct-slice-donut-solid, .ct-series-g .ct-area {
	fill: var(--st-chart-series-g-color) !important;
}
.pvtChartLegend.pvtChart-series-g {
	background-color: var(--st-chart-series-g-color);
}

.ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
	stroke: var(--st-chart-series-h-color) !important;
}
.ct-series-h .ct-slice-pie, .ct-series-h .ct-slice-donut-solid, .ct-series-h .ct-area {
	fill: var(--st-chart-series-h-color) !important;
}
.pvtChartLegend.pvtChart-series-h {
	background-color: var(--st-chart-series-h-color);
}


.ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
	stroke: var(--st-chart-series-i-color) !important;
}
.ct-series-i .ct-slice-pie, .ct-series-i .ct-slice-donut-solid, .ct-series-i .ct-area {
	fill: var(--st-chart-series-i-color) !important;
}
.pvtChartLegend.pvtChart-series-i {
	background-color: var(--st-chart-series-i-color);
}

.ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
	stroke: var(--st-chart-series-j-color) !important;
}
.ct-series-j .ct-slice-pie, .ct-series-j .ct-slice-donut-solid, .ct-series-j .ct-area {
	fill: var(--st-chart-series-j-color) !important;
}
.pvtChartLegend.pvtChart-series-j {
	background-color: var(--st-chart-series-j-color);
}


.ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
	stroke: var(--st-chart-series-k-color) !important;
}
.ct-series-k .ct-slice-pie, .ct-series-k .ct-slice-donut-solid, .ct-series-k .ct-area {
	fill: var(--st-chart-series-k-color) !important;
}
.pvtChartLegend.pvtChart-series-k {
	background-color: var(--st-chart-series-k-color);
}

.ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
	stroke: var(--st-chart-series-l-color) !important;
}
.ct-series-l .ct-slice-pie, .ct-series-l .ct-slice-donut-solid, .ct-series-l .ct-area {
	fill: var(--st-chart-series-l-color) !important;
}
.pvtChartLegend.pvtChart-series-l {
	background-color: var(--st-chart-series-l-color);
}

.ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
	stroke: var(--st-chart-series-m-color) !important;
}
.ct-series-m .ct-slice-pie, .ct-series-m .ct-slice-donut-solid, .ct-series-m .ct-area {
	fill: var(--st-chart-series-m-color) !important;
}
.pvtChartLegend.pvtChart-series-m {
	background-color: var(--st-chart-series-m-color);
}

.ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
	stroke: var(--st-chart-series-n-color) !important;
}
.ct-series-n .ct-slice-pie, .ct-series-n .ct-slice-donut-solid, .ct-series-n .ct-area {
	fill: var(--st-chart-series-n-color) !important;
}
.pvtChartLegend.pvtChart-series-n {
	background-color: #6188e2;
}


.ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
	stroke: var(--st-chart-series-o-color) !important;
}
.ct-series-o .ct-slice-pie, .ct-series-o .ct-slice-donut-solid, .ct-series-o .ct-area {
	fill: var(--st-chart-series-o-color) !important;
}
.pvtChartLegend.pvtChart-series-o {
	background-color: var(--st-chart-series-o-color);
}

/* chart legend */
.ct-chart {
	overflow: hidden;
	position: relative;
}
	.ct-chart.ct-legend-top {
		padding-top: 50px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.ct-chart.ct-legend-bottom {
		padding-bottom: 50px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.ct-chart.ct-legend-right {
		padding-right: 25%;
		box-sizing: border-box;
		overflow: hidden;
	}

ul.ct-legend {
	height: 30px;
	position: absolute;
	margin: 10px 0;
	padding: 0;
	overflow: hidden;
	list-style-type: none;
	text-align: left;
}

	ul.ct-legend > li {
		margin: 5px;
	}

		ul.ct-legend > li > span {
			font-size: 14px;
			line-height: 20px;
			vertical-align: middle;
			display: inline-block;
			margin-left: 5px;
		}

	ul.ct-legend .pvtChartLegend {
		width: 20px;
		height: 20px;
		border-radius: 4px;
		margin-left: 5px;
		display: inline-block;
	}

.ct-chart.ct-legend-top ul.ct-legend {
	left: 0;
	top: 0;
	text-align: center;
}

.ct-chart.ct-legend-bottom ul.ct-legend {
	left: 0;
	bottom: 0;
	text-align: center;
}

.ct-chart.ct-legend-right ul.ct-legend {
	right: 0;
	top: 0;
	width: 25%;
	height: 100%;
	overflow-y:auto;
	margin:0;
}

.ct-chart.ct-legend-top ul.ct-legend > li,
.ct-chart.ct-legend-bottom ul.ct-legend > li {
	display: inline-block;
}
ul.ct-legend.ct-legend-compact .pvtChartLegend {
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
ul.ct-legend.ct-legend-compact > li > span {
	font-size: 10px;
	line-height: 15px;
}


.chartist-tooltip {
	top: 0;
	left: 0;
	position: absolute;
	display: inline-block;
	opacity: 0;
	min-width: 50px;
	padding: 5px;
	background-color: var(--st-border-color); /*rgba(var(--st-text-color-rgb),0.4);*/
	color: var(--st-text-color);
	font-family: Helvetica,Arial,sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	pointer-events: none;
	z-index: 250;
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	transition: opacity .2s linear;
	border-radius:var(--st-border-radius);
}
  .chartist-tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top-color: var(--st-border-color); 
  }
  .chartist-tooltip.tooltip-show {
    opacity: 0.8; 
  }
  .chartist-tooltip-meta {
	  font-weight:normal;
	  font-size:11px;
	  overflow:hidden;
	  text-overflow:ellipsis;
	  max-width:200px;
	  max-height:50px;
	  display:inline-block;
	  padding:2px;
	  background-color:rgba(var(--st-bg-color-rgb),0.8)
  }


.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
    pointer-events:none;
}
.vertical-align-center {
    display: table-cell;
    vertical-align: middle;
    pointer-events:none;
}
.vertical-alignment-helper .modal-content {
    width:inherit;
    height:inherit;
    margin: 0 auto;
    pointer-events: all;
}
.cubeCfgEditorChanged {
	font-weight:bold;
	display:none;
}
#cubeCfgEditor div[data-schemapath="root"] > h3 {
	display: none;
}
#cubeCfgEditor h3 {
	font-size:22px;
	margin-top:20px;
}
#mainView .alert {
	border: 0px;
	border-radius: 0px;
}
.alert.alert-warning {
	background-color: var(--st-alert-bg-color);
	color: var(--st-alert-text-color);
}


#cubeCfgEditor .well.well-sm {
	padding-bottom: 9px !important;
	box-shadow: none;
	border: 0px;
	border-radius: 0px;
}
	#cubeCfgEditor .well.well-sm .well.well-sm {
		box-shadow:none;
		border:none;
		padding:0px !important;
		margin-bottom:10px;
	}
	#cubeCfgEditor .well.well-sm .well.well-sm h3 {
		font-size:16px;
		font-weight:600;
		margin-top:0px;
		margin-bottom:5px;
	}
	#cubeCfgEditor p.help-block.errormsg {
		margin: 0px;
		font-size: 80%;
	}
	#cubeCfgEditor textarea[name="root[SourceDb][SelectSql]"] {
		min-height:200px;
		font-family:monospace,Arial;
	}
	#cubeCfgEditor .btn.btn-default.json-editor-btn-edit + div {
		background-color:transparent !important;
	}

#cubeCfgEditor td>.btn-group {
	white-space:nowrap;
}
#cubeCfgEditor td>.btn-group>button {
	float:none;
	display:inline-block;
}
#cubeCfgEditor .btn-group>button, #ReportOverrideJsonEditor .btn-group>button {
	border-radius:0px;
}
#cubeCfgEditor .checkbox>label>span>span {
	font-weight:600 !important;
}
#cubeCfgEditor.SourceDbConnectionStringHidden div[data-schemapath="root.SourceDb.ConnectionString"] {
	display:none;
}
#cubeCfgEditor textarea[name^="root[Dimensions]"], #cubeCfgEditor textarea[name^="root[Measures]"], #cubeCfgEditor textarea[name^="root[Parameters]"], #cubeCfgEditor textarea[name^="root[SourceDb][JoinsAfterGroup]"] {
	height: 34px;
	resize: horizontal;
	overflow: hidden;
	font-family: monospace,Arial;
}
#cubeCfgEditor table.table-sticky-headers {
	border-collapse:separate;
}
#cubeCfgEditor table.table-sticky-headers th {
	position: sticky;
	top: 50px;
	z-index: 100;
	border-collapse:collapse;
	border-right:0px;
}
@media (min-width: 768px) {
	#cubeCfgEditor table.table-sticky-headers th {
		top: 120px;
	}
	body.no-top-menu #cubeCfgEditor table.table-sticky-headers th {
		top: 65px;
	}
}
#cubeCfgEditor table.table-sticky-headers th:first-child {
	border-left:0px;
}
#cubeCfgEditor table.table-sticky-headers th:last-child {
	border-right:2px;
}
#cubeCfgEditor table.table-sticky-headers td {
	border-right:0px;
	border-top:0px;
}
#cubeCfgEditor table.table-sticky-headers td:first-child {
	border-left:0px;
}
#cubeCfgEditor table.table-sticky-headers tr:last-child td {
	border-bottom:0px;
}


sup.required {
	color:red;
}
.glyphicon.help-tooltip {
	color: #999;
	text-decoration:none !important;
}
a.glyphicon.help-tooltip:hover {
	color: var(--st-link-text-color);
}

@media (min-width: 1200px) {
	#memberList > div {
		overflow-x: auto;
		max-height: calc(100vh - 185px);
	}
	body.no-footer #memberList > div {
		max-height: calc(100vh - 155px);
	}
	#inviteResult > div {
		overflow-x: auto;
		max-height: calc(100vh - 185px);
	}

	body.no-footer #inviteResult > div {
		max-height: calc(100vh - 155px);
	}
}
@media (min-width: 768px) {
	#ruleList,
	#dashboardList,
	#accountList,
	#promptList,
	#workspaceList,
	#cubeList,
	#mainView > #reportList {
		overflow-x: auto;
		max-height: calc(100vh - 185px);
	}

	body.no-footer #ruleList,
	body.no-footer #dashboardList,
	body.no-footer #accountList,
	body.no-footer #promptList,
	body.no-footer #workspaceList,
	body.no-footer #cubeList,
	body.no-footer #mainView > #reportList {
		max-height: calc(100vh - 155px);
	}

	body.no-top-menu #ruleList,
	body.no-top-menu #dashboardList,
	body.no-top-menu #accountList,
	body.no-top-menu #promptList,
	body.no-top-menu #workspaceList,
	body.no-top-menu #cubeList,
	body.no-top-menu #mainView > #reportList {
		overflow-x: auto;
		max-height: calc(100vh - 130px);
	}

	body.no-top-menu.no-footer #ruleList,
	body.no-top-menu.no-footer #dashboardList,
	body.no-top-menu.no-footer #accountList,
	body.no-top-menu.no-footer #promptList,
	body.no-top-menu.no-footer #workspaceList,
	body.no-top-menu.no-footer #cubeList,
	body.no-top-menu.no-footer #mainView > #reportList {
		overflow-x: auto;
		max-height: calc(100vh - 100px);
	}

}

.table-fixed-header {
	margin-bottom:0px;
}
.table-fixed-header thead>tr>th {
	position: sticky;
	top: 0;
	background-color: var(--st-th-bg-color);
	z-index:50;
}
.table-fixed-header tfoot>tr>td {
	position: sticky;
	bottom: 0;
	z-index:50;
	background-color: var(--st-bg-color);
}
.table-fixed-header td {
	border-top: 0px !important;
	border-bottom: 1px solid var(--st-border-color);
}
.table-fixed-header thead th, .table-fixed-header tfoot td {
	border: none !important;
	padding: 0px !important;
}
.table-header-white th {
	background-color: var(--st-bg-color) !important;
}
.table-fixed-header thead th>div {
	padding:8px;
	border-bottom:2px solid var(--st-border-color);
}
.table-fixed-header tfoot td > div {
	padding: 8px;
	border-top: 2px solid var(--st-border-color);
}
.table-condensed.table-fixed-header thead th > div {
	padding: 5px;
	border-bottom: 1px solid var(--st-border-color);
}
.table-condensed.table-fixed-header tfoot td > div {
	padding: 5px;
	border-top: 1px solid var(--st-border-color);
}

.table-fixed-header tbody tr:last-child td {
	border-bottom-width: 0px;
}

#cubeCfgEditor .form-control {
	padding: 6px !important;
}
#cubeCfgEditor select {
	font-style: normal !important;
	background-color:var(--st-bg-color) !important;
}
#cubeCfgEditor div[data-schemapath="root"]>select {
	margin-bottom:20px !important;
}
#cubeCfgEditor td[data-schematype="array"] thead {
	display:none;
}
#cubeCfgEditor table {
	margin-bottom:10px;
}
#cubeCfgEditor td[data-schematype="array"] table {
	margin-bottom: 5px;
}
#cubeCfgEditor div[data-schemapath="root.Dimensions"] table,
#cubeCfgEditor div[data-schemapath="root.Measures"] table,
#cubeCfgEditor div[data-schemapath="root.Parameters"] table,
#cubeCfgEditor div[data-schemapath="root.SourceFile.CsvUnpivot.UnpivotColumns"] table {
	width: 100% !important;
}
#cubeCfgEditor div[data-schemapath="root.Dimensions"]>div>table>tbody>tr>td,
#cubeCfgEditor div[data-schemapath="root.Measures"]>div>table>tbody>tr>td,
#cubeCfgEditor div[data-schemapath="root.Parameters"]>div>table>tbody>tr>td
{
	width:150px;
}
#cubeCfgEditor div[data-schemapath="root.Dimensions"]>div>table>tbody>tr>td.compact,
#cubeCfgEditor div[data-schemapath="root.Dimensions"]>div>table>tbody>tr>td[data-schematype],
#cubeCfgEditor div[data-schemapath="root.Measures"]>div>table>tbody>tr>td.compact,
#cubeCfgEditor div[data-schemapath="root.Measures"]>div>table>tbody>tr>td[data-schematype],
#cubeCfgEditor div[data-schemapath="root.Parameters"]>div>table>tbody>tr>td.compact,
#cubeCfgEditor div[data-schemapath="root.Parameters"]>div>table>tbody>tr>td[data-schematype]
{
	width:auto;
}

#cubeCfgEditor div[data-schemapath="root.Parameters"] table td>label, 
#cubeCfgEditor div[data-schemapath="root.Parameters"] table td h3 { display:none; }
#cubeCfgEditor div[data-schemapath="root.Parameters"] table h3>div { margin-left:0px !important; }
#cubeCfgEditor div[data-schemapath="root.Parameters"] table td div.well.well-sm { margin-bottom:0px !important; }
#cubeCfgEditor div[data-schemapath="root.Parameters"] table td select:not([name]) { 
	margin-left:0px !important; 
	padding: 6px 6px !important;
	height:34px !important;
	background-color:var(--st-bg-color) !important;
}
#cubeCfgEditor div[data-schemapath="root.Parameters"] table td div.checkbox {
	margin-top:10px !important;
}
#cubeCfgEditor div[data-schemapath="root.Parameters"] div[data-schematype="array"] td[data-schematype="object"] input.form-control {
	max-width:100px;
}
#cubeCfgEditor div[data-schemapath="root.SourceDb.UseGroupByCube"] {
	margin-top:-10px;
	margin-bottom:5px;
}
#cubeCfgEditor div[data-schemapath="root.SourceXmla.MdxTokens"] table {
	width:100% !important;
}
#cubeCfgEditor div[data-schemapath="root.PivotFilter"] h3, #cubeCfgEditor div[data-schemapath="root.Search"] h3 {
	display: none;
}
#cubeCfgEditor div[data-schemapath="root.PivotFilter"] div[data-schemapath="root.PivotFilter.ApplyAsCondition"] label,
#cubeCfgEditor div[data-schemapath="root.Search"] div[data-schemapath="root.Search.Enabled"] label {
	font-weight: bold !important;
	font-size: 16px !important;
}
#cubeCfgEditor div[data-schemapath="root.PivotFilter.TranslateLike"],
#cubeCfgEditor div[data-schemapath="root.PivotFilter.Exclude"],
#cubeCfgEditor div[data-schemapath="root.Search.MatchDimensions"] {
	margin-left: 20px;
	width: auto;
}

#cubeCfgEditor div.rows div.list-group {
	overflow: auto;
	padding-right: 0px;
	border: 1px solid var(--st-border-color);
}
#cubeCfgEditor div.rows a.list-group-item {
	border-radius: 0px !important;
	border-left: 0px;
	border-right: 0px;
	padding:5px;
	background-color:var(--st-bg-color);
	border-color:var(--st-border-color);
	color:var(--st-menu-text-color);
}
#cubeCfgEditor div.rows a.list-group-item.active {
	color:var(--st-bg-color);
	background-color:var(--st-link-text-color);
}

	#cubeCfgEditor div.rows a.list-group-item:first-child {
		border-top: 0px;
	}
	#cubeCfgEditor div.rows a.list-group-item:last-child {
		border-bottom: 0px;
	}
#cubeCfgEditor div.rows input.form-control {
	width: 100% !important;
}
#cubeCfgEditor div.rows h3 > span:not(.glyphicon) {
	color: var(--st-bg-color);
	background-color: var(--st-link-text-color);
	display: inline-block;
	height: 34px;
	line-height: 34px;
	position: relative;
	vertical-align: middle;
	padding-left: 10px;
	padding-right: 10px;
}
#cubeCfgEditor div.rows .form-group {
	margin-bottom:5px;
}
.viewLoading {
	border: 1px solid #ddd;
	opacity: 0.5;
}

.pivotConfigForm label a.text-muted {
	font-size: 9px;
	font-family: Verdana;
	color: #999;
	font-weight: normal;
	display: inline-block;
	margin-top: 5px;
}
.pivotConfigForm label a.text-muted:hover {
	color:var(--st-menu-text-color);
}
.pivotConfigForm .quick-help {
	display:block;
	text-align: right;
}
#cubeCfgEditor .quick-help {
	margin-left:5px;
	font-size:11px;
}

.text-singleline {
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
@media (min-width: 1600px) {
	.text-singleline-xl {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.filterSyntaxHelpContent table {
	min-width:350px;
}
.filterSyntaxHelpContent th {
	white-space: nowrap;
	padding-right:10px;
	font-weight:normal;
	text-align:right;
	vertical-align:top;
}
.filterSyntaxHelpContent td {
	font-size:12px;
	line-height:14px;
	padding-bottom:5px;
}

#shareByLinkDialog th, #shareByLinkDialog td {
	border: 0px;
	vertical-align:middle;
}
#shareByLinkDialog table {
	margin-bottom:0px;
}
#shareByLinkDialog table .btn {
	line-height:1.0;
}
#shareByLinkDialog .configureLink .glyphicon {
	top:0px;
	line-height:10px;
}
#shareByLinkDialog .configureLink .glyphicon::before {
	width: 14px;
	height: 14px;
	margin-bottom: -2px;
}

input.copy-control {
	width: 100%;
	border: 1px solid var(--st-border-color);
	border-radius: var(--st-border-radius);
	margin: 0px;
	background-color: var(--st-bg-color);
}
input.copy-control:focus {
	outline:none;
}

.workspace-items-selector ul {
	list-style-type:none;
	margin-bottom:0px;
}
.workspace-items-selector {
	padding-top:0px;
}

body.stReportFullscreen > .navbar-top-menu, body.stReportFullscreen #sidebar, body.stReportFullscreen .viewHeading {
	display: none !important;
}
body.no-left-menu #sidebar {
	display: none !important;
}
body.no-left-menu .reportContainer .navbar-header .navbar-brand {
	display: none !important;
}
body.stReportFullscreen .body-content {
	padding-top: 15px !important;
}
body.stReportFullscreen #mainViewContainer, body.no-left-menu #mainViewContainer {
	margin-left: 0px !important;
}
body.stReportFullscreen #footer .footerWrapper > small {
	display:none !important;
}
body.stReportFullscreen #footer .fullScreenMode {
	display: block !important;
}
body.stReportFullscreen #footer .footerWrapper {
	text-align:center;
}
body.stReportFullscreenReportOnly .pivotConfigForm {
	display: none !important;
}
body.stReportFullscreenReportOnly .pivotContainer {
	margin-right:0px !important;
}


body.page-signup body {
	font-family: "Segoe UI","Segoe WP",Arial;
	font-size: 16px;
}

body.page-signup h1 {
	margin-top: 30px;
	display: block;
	letter-spacing: 1px;
	color: #ec971f;
	font-size: 32px;
	line-height: 1.8;
	margin-bottom: 30px;
	text-rendering: optimizeLegibility;
}
	body.page-signup h1 .title {

		font-weight: 600;
		display: block;
		text-transform: uppercase;
	}
	body.page-signup h1 .summary {
		display: block;
		color: #A0A0A0;
		letter-spacing: 0px;
		font-weight: 600;
		font-size: 18px;
		line-height: 1.6;
		margin-top:10px;
	}
	body.page-signup cite {
		quotes: "“" "”";
		font-family:'Times New Roman';
	}
	body.page-signup cite::before {
		content: open-quote;
	}
	body.page-signup cite::after {
		content: close-quote;
	}

@media (max-width: 991px) {
	body.page-signup .heading {
		text-align: center;
		margin-bottom: 40px;
	}
}
.on-premise-version {
	color: #999;
	font-size: 11px;
	position: absolute;
	min-width: var(--st-left-menu-width);
	text-align: center;
	margin-top: 30px;
}
body.page-signup .on-premise-version {
	position: absolute;
	margin-top: 35px;
	font-size: 12px;
	min-width:unset;
}
body.page-login .on-premise-version {
	min-width:unset;
	width:100%;
	position:static;
	margin-top:-15px;
	margin-bottom:10px;
}

body.page-signup .navbar-nav > li, body.page-signup .navbar-header {
	float: left !important;
}

body.page-signup .navbar-nav {
	margin:0px !important;
}

body.page-signup h2 {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: Arial;
	text-align: left;
	color: #666;
	margin-top: 0px;
	margin-bottom: 20px;
}

body.page-signup .btn-st-primary, body.page-login .btn-st-primary {
	background-color: #0d8f6a !important;
	border-color: #0d8f6a !important;
	color: #FFF !important;
	opacity: 0.8;
	background-color: var(--st-color) !important;
	border-color: var(--st-color) !important;
}

	body.page-signup .btn-st-primary:hover, body.page-signup .btn-st-primary:focus,
	body.page-login .btn-st-primary:hover, body.page-login .btn-st-primary:focus {
		opacity:1.0;
	}

body.page-signup .form-control, body.page-login .form-control {
	box-shadow: none !important;
	margin-left:1px;
	margin-right:1px;
}

	body.page-signup .form-control:focus, body.page-login .form-control:focus {
		border-width: 2px;
		border-color: #0d8f6a;
		margin: 0px;
		border-color: var(--st-color);
	}

	body.page-signup .has-error .form-control, body.page-login .has-error .form-control  {
		border-width: 2px;
		border-color: #ec971f;
		margin:0px;
	}
	body.page-signup .form-group, body.page-signup #signupForm .btn {
		margin-bottom:20px;
	}

body.page-signup .infoBlock {
	margin-left: auto;
	margin-right: auto;
	max-width: 550px;
	margin-bottom:50px;
}

	body.page-signup .infoBlock ul {
		list-style-type: none;
		padding-left: 0px;
	}

	body.page-signup .infoBlock ul a, body.page-signup .infoBlock ul a:visited {
		color: #0d8f6a !important;
		color: var(--st-color) !important;
	}

body.page-signup .infoBlock ul > li {
	padding-bottom:5px;
}
	body.page-signup .infoBlock ul > li:before {
		content: '\25A0';
		position: absolute;
		color: #ccc;
		font-size: 16px;
	}


body.page-signup ul > li > span {
	display: block;
	margin-top: 0px;
	color: var(--st-text-color);
	font-size: 16px;
	line-height: 1.4;
	padding-left: 25px;
}

body.page-signup .seektable-screen {
	text-align: center;
	margin-bottom: 50px;
}
@media (min-width: 992px) {
	body.page-signup .seektable-screen {
		text-align: right;
	}
}

body.page-signup .seektable-screen img {
	image-rendering: -webkit-optimize-contrast;
	max-height: 350px;
	max-width:100%;
	margin: 0px;
	border: 5px solid var(--st-item-bg-color);
	border-radius: 10px;
	padding:10px;
	margin-right: 15px;
}

body.page-signup .container-hr {
	background-color: var(--st-top-menu-bg-color);
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 18px;
	text-align: center;
	font-style: italic;
	margin-bottom: 50px;
}

body.page-signup .seektable-datasources {
	text-align: center;
	margin-bottom: 30px;
}
body.page-signup .seektable-datasources>div {
	display:inline-block;
	margin-left:10px;
	margin-right:10px;
	margin-bottom:20px;
	text-align:center;
}
	body.page-signup .seektable-datasources label {
		display: block;
		color: #A0A0A0;
		font-weight: 600;
		font-size: 14px;
	}
body.page-signup .seektable-reviews {
	text-align: center;
	margin-bottom: 30px;
	margin-top:40px;
}

body.page-signup .seektable-datasources img, body.page-signup .seektable-reviews img {
	image-rendering: -webkit-optimize-contrast;
	max-height: 40px;
}


body.page-signup .navbar-top-menu .navbar-brand {
	text-align: left;
	min-width:unset;
}
	body.page-signup .navbar-top-menu .navbar-brand.st-logo {
		font-size: 150%;
	}
body.page-signup .custom-logo img {
	max-height: 150px;
	box-shadow: 0px 0px 0px;
	margin: 0px;
}

body.page-signup .navbar-top-menu, body.page-login .navbar-top-menu {
	border-bottom: 0px;
	border:none;
	margin-bottom:0px;
}
	body.page-signup .navbar-top-menu {
		margin-top:20px;
		margin-bottom:20px;
	}
@media (max-width: 767px) {
	body.page-signup .navbar-default .navbar-nav > li > a {
		padding: 16px 12px;
		line-height: 18px;
	}
		body.page-signup .navbar-default .navbar-nav > li > a:hover,
		body.page-signup .navbar-default .navbar-nav > li.open > a {
			margin: 8px 4px;
			padding: 8px 8px;
			background-color: var(--st-menu-active-bg-color);
			border-radius: var(--st-border-radius);
			transition: background .12s ease-out;
		}
}


body.page-signup .navbar-top-menu ul.navbar-nav>li>a,
body.page-signup .navbar-top-menu ul.navbar-nav>li>a:visited,
body.page-signup .navbar-top-menu ul.navbar-nav>li>a:focus {
	color: #0d8f6a;
	font-weight: 600;
	color: var(--st-color);
	background-color:var(--st-bg-color);
}
body.page-signup .navbar-top-menu ul.navbar-nav>li>a:hover {
	background-color:var(--st-item-bg-color);
}


body.page-signup .navbar-top-menu ul li>a, body.page-signup .navbar-top-menu ul li>a:hover {
	color:var(--st-color) !important;
}


body.page-signup .navbar-top-menu .dropdown-menu {
	border-radius:var(--st-border-radius);
	margin-left:5px;
}

body.page-signup.footer-signup #footer {
	position: static;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 16px;
}
body.page-signup.footer-signup #footer .footerWrapper {
	max-width: 1170px;
	margin-left:auto;
	margin-right:auto;
}


body.page-login .body-content {
	max-width: 400px;
	border: 5px solid var(--st-top-menu-bg-color);
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
}
body.page-login .btn {
	font-size: 18px !important;
	display:block;
	width:100%;
}
@media (max-width: 767px) {
	body.page-login .body-content {
		border-radius: 0px;
		border-width:2px;
		max-width: 100%;
		border-left: 0px;
		border-right: 0px;
		border-top:0px;
		margin-top:0px;
	}
}
.dashboardContainer {
	font-family: Arial;
	font-size: 11px;
}
body.page-dashboard .select2-result-label, body.page-dashboard .select2-no-results, body.page-dashboard .select2-drop {
	font-size: 11px;
}

.dashboardContainer h1 {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.loadingSpinner {
	margin: 15px;
	text-align: center;
	display: block;
}
.btn .loadingSpinner {
	margin: 0px;
}

.loadingSpinner > div {
	width: 8px;
	height: 8px;
	background-color: #666;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loadingSpinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.loadingSpinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

.helpContent img {
	image-rendering: -webkit-optimize-contrast;	
}
.helpContent h1 {
	font-size:32px;
}
@media (max-width: 767px) {
	.helpContent h1 small, .helpContent h2 small, .helpContent h3 small {
		display: block;
	}
}

#reportConfigureExportDialog .checkbox-small {
	margin-top: 2px;
	margin-bottom: 2px;
	font-size: 14px;
	line-height: 15px;
}
#reportConfigureExportDialog .checkbox-small input[type="checkbox"] {
	margin-top: 2px;
}


#reportConfigureMembersDialog table td div.member-name {
	margin-top:5px;
}
#reportConfigureMembersDialog .visible-ValueMode-Difference, #reportConfigureMembersDialog .visible-ValueMode-Percentage .checkbox {
	margin-top: 2px;
	margin-bottom: 2px;
	font-size: 12px;
	line-height: 15px;
}
	#reportConfigureMembersDialog .visible-ValueMode-Difference label, #reportConfigureMembersDialog .visible-ValueMode-Percentage label {
		min-height: 15px;
	}
	#reportConfigureMembersDialog .visible-ValueMode-Difference input[type="checkbox"], #reportConfigureMembersDialog .visible-ValueMode-Percentage input[type="checkbox"] {
		margin-top: 2px;
	}
#reportConfigureMembersDialog .visible-PercentageDataBar>* {
	margin-top:2px;
}

#reportConfigureMembersDialog input[type="color"] {
	padding: 1px;
	width: 16px;
	height: 16px;
}
#reportConfigureMembersDialog input[type="color"]::-moz-color-swatch {
	border: none;
}
#reportConfigureMembersDialog input[type="color"]::-webkit-color-swatch {
	border: none;
}
#reportConfigureMembersDialog input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
	border-radius: 0;
}
#reportConfigureMembersDialog select {
	padding:5px;
}
#reportConfigureChartDialog input[type="color"] {
	display: inline-block;
	width: 50px;
	margin-left: 0px;
	margin-right: 5px;
	margin-bottom: 10px;
	padding: 3px 5px;
	cursor:pointer;
}

#reportConfigureStylesDialog .checkbox {
	margin-top:0px;
	margin-bottom:0px;
}

#reportMetadataDialog .form-group {
	font-size: 14px;
	margin-bottom: 5px;
}
#reportMetadataDialog .form-control-static {
	font-family: monospace, Courier New, Courier;
}
#reportMetadataDialog .reportQueryValue {
	max-height: 50vh;
	overflow-y: auto;
	font-size: 12px;
}
#reportMetadataDialog .reportQueryGroup label a {
	font-weight:normal;
	font-size:11px;
}

#reportAIPromptDialog .promptResult {
	display: none;
	overflow-y: auto;
	max-height: 70vh;
	max-height: calc(100vh - 220px);
}
#reportAIPromptDialog .promptResult ul {
	margin-top:10px;
	margin-bottom:10px;
}
#reportAIPromptDialog .loading .loadingSpinner {
	display:block;
	visibility:visible;
}
#reportAIPromptDialog .loading .btn, 
#reportAIPromptDialog .loadingSpinner, 
#reportAIPromptDialog .loading .promptResult {
	display: none;
}
#reportAIPromptDialog .btnCancel {
	display: none;
}
#reportAIPromptDialog .loading .btnCancel {
	display: inline-block;
}

#reportAIPromptDialog a[name] {
	color: inherit !important;
	font-weight: bold;
	cursor: default;
	text-decoration: none;
}


.undoHistory .badge.historyCount, .redoHistory .badge.historyRedoCount {
	background-color: var(--st-muted-icon-color);
	padding: 1px 4px 2px 4px;
	top: 0;
	position: static;
	margin-top: -4px;
	margin-left:5px;
}

.tableList .glyphicon {
	color: var(--st-muted-icon-color);
	position: static;
	line-height:16px;
	margin-top:4px;
	margin-bottom:-2px;
}
.tableList .glyphicon-move {
	visibility: hidden;
}
.tableList tr:hover .glyphicon-move, .tableList .sortable-ghost .glyphicon-move {
	visibility: visible;
}
.tableList .glyphicon-move:hover, .tableList .sortable-ghost .glyphicon-move {
	color: var(--st-text-color);
	cursor: move;
}
.tableList .sortable-ghost {
	background-color: var(--st-menu-active-bg-color);
}
.tableList .sortable-drag {
	opacity: 0;
}
.reports-label a {
	font-weight: normal;
	font-size: 11px;
	display: block;
	min-height: 20px;
}
ul.dropdown-menu.listViewType li.checked::before {
	content: '\2713';
	position: absolute;
	margin-top:3px;
	right:20px;
}
ul.dropdown-menu.listViewType li.checked a {
	padding-right: 35px;
}

@media (max-width: 767px) {
	ul.dropdown-menu.listViewType li.checked a {
		padding-right: 20px !important;
	}
}

.cubeSearch .searchResults {
	margin-top:10px;
	margin-bottom:-5px;
	display:none;
}

.cubeSearch .searchResults .reportConfig {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	vertical-align:top;
	cursor:pointer;
	transition:opacity 200ms;
	opacity:0.5;
}

.cubeSearch .searchResults .reportConfig:hover {
	opacity:1.0;
}
	.cubeSearch .searchResults table {
		width:auto;
	}

	.cubeSearch .searchResults table td {
		text-align: left;
	}
	.cubeSearch .searchResults table th.pvtRowLabel {
		height:30px;
		width:auto;
	}
	.cubeSearch .searchResults table th.pvtColumnLabel {
		height:30px;
		width:auto;
	}
	.cubeSearch .searchResults table th {
		text-align: left;
	}
	.cubeSearch .searchResults .label {
		font-size: 12px;
		border-radius: var(--st-border-radius);
		padding: 1px 4px 2px;
		margin: 1px;
		font-weight: normal;
		display: inline-block;
		line-height: inherit;
	}

.globalSearch .searchResults li {
	margin-bottom:10px;
	padding-left:5px;
}
.globalSearch .searchResults li a {
	font-size: 16px;
}
.globalSearch .searchResults li .reason {
	color:#999;
	font-size: 12px;
}
.globalSearch .dimensionsList, .globalSearch .measuresList {
	display:inline-block;
	margin-left:5px;
	vertical-align:bottom;
}
	.globalSearch .dimensionsList .label, .globalSearch .measuresList .label {
		margin-bottom:0px;
		margin-top:2px;
	}

/* Checkbox-switch */
body:not(.st-checkbox-classic) .checkbox.checkbox-switch {
    padding-left: 0;
}

body:not(.st-checkbox-classic) .checkbox.checkbox-switch label,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch {
    display: inline-block;
    position: relative;
    padding-left: 0;
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label input,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch input {
    display: none;
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label span.checkbox-switch,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch span.checkbox-switch {
    width: 30px;
    border-radius: 15px;
    height: 16px;
    border: 1px solid #dbdbdb;
    background-color: var(--st-bg-color);
    border-color: var(--st-border-color);
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label span.checkbox-switch:before,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch span.checkbox-switch:before {
    vertical-align:top;
	display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--st-checkbox-switch-color);
    content: " ";
    top: 0px;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label > input:checked + span.checkbox-switch:before,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch > input:checked + span.checkbox-switch:before {
    left: 14px;
}


/* Switch Default */
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label {
	font-size:14px;
	line-height:20px;
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label > input:checked + span.checkbox-switch,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch > input:checked + span.checkbox-switch {
    background-color: var(--st-checkbox-switch-bg-color);
    border-color: var(--st-checkbox-switch-bg-color);
    box-shadow: var(--st-checkbox-switch-bg-color) 0px 0px 0px 8px inset;
    transition: border 0.3s ease 0s, box-shadow 0.3s ease 0s, background-color 0.5s ease 0s;
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label > input:checked:disabled + span.checkbox-switch,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch > input:checked:disabled + span.checkbox-switch {
    background-color: var(--st-checkbox-switch-bg-color);
    border-color: var(--st-checkbox-switch-bg-color);
	opacity:0.5;
    box-shadow: var(--st-checkbox-switch-bg-color) 0px 0px 0px 8px inset;
    transition: border 0.3s ease 0s, box-shadow 0.3s ease 0s, background-color 0.5s ease 0s;
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label > input:disabled + span.checkbox-switch,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch > input:disabled + span.checkbox-switch {
    background-color: rgb(232,235,238);
    border-color: rgb(255,255,255);
}
body:not(.st-checkbox-classic) .checkbox.checkbox-switch label > input:disabled + span.checkbox-switch:before,
body:not(.st-checkbox-classic) .checkbox-inline.checkbox-switch > input:disabled + span.checkbox-switch:before {
    background-color: rgb(248,249,250);
    border-color: rgb(243, 243, 243);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

body:not(.st-checkbox-classic) .pivotConfigForm .checkbox.checkbox-switch label {
	padding-left:35px;
}
body:not(.st-checkbox-classic) .pivotConfigForm .checkbox.checkbox-switch label>span.checkbox-switch {
	margin-left:-35px;
}
body:not(.st-checkbox-classic) .form-group .checkbox.checkbox-switch {
	margin-top: 0px;
	margin-bottom: 0px;
}
body:not(.st-checkbox-classic) .table.table-condensed .checkbox.checkbox-switch {
	margin-top: 2px;
	margin-bottom: 0px;
}

.pager .disabled > a, 
.pager .disabled > a:focus, 
.pager .disabled > a:hover, 
.pager .disabled > span {
	background-color:var(--st-disabled-bg-color);
	color:var(--st-muted-text-color);
	border-color:var(--st-border-color);
}
.pager li > a, .pager li > a:focus, .pager li > span {
	border-color: var(--st-border-color);
	background-color: var(--st-bg-color);
	color:var(--st-link-text-color);
}
.pager li > a:hover {
	color:var(--st-link-active-text-color);
	background-color:var(--st-item-bg-color);
}

/* icon overrides */
.glyphicon.glyphicon-globe::before,
.glyphicon.glyphicon-move::before,
.glyphicon.glyphicon-share::before,
.glyphicon.glyphicon-th.stReport::before,
.glyphicon.glyphicon-th-large::before,
.glyphicon.glyphicon-share.stTeam::before,
.glyphicon.glyphicon-cog::before,
.glyphicon.glyphicon-retweet.transpose::before,
.glyphicon.glyphicon-question-sign::before,
.glyphicon.glyphicon-th-list.stDemo::before,
.glyphicon.glyphicon-plus.stSignup::before,
.glyphicon.glyphicon-th-list.stBackToApp::before,
.glyphicon.glyphicon-info-sign::before,
.glyphicon.glyphicon-envelope::before,
#accountMenu .glyphicon.glyphicon-user::before {
	content: ' ';
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: -2px;
	background-color: var(--st-muted-icon-color);
}

.glyphicon.glyphicon-globe::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39"></path></svg>');
}

.glyphicon.glyphicon-move::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9h4V6h3l-5-5-5 5h3zm-1 1H6V7l-5 5 5 5v-3h3zm14 2-5-5v3h-3v4h3v3zm-9 3h-4v3H7l5 5 5-5h-3z"></path></svg>');
}

.glyphicon.glyphicon-share::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92"></path></svg>');
}

.glyphicon.glyphicon-th.stReport::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 8h11V5c0-1.1-.9-2-2-2h-9zM3 8h5V3H5c-1.1 0-2 .9-2 2zm2 13h3V10H3v9c0 1.1.9 2 2 2m8 1-4-4 4-4zm1-9 4-4 4 4zm.58 6H13v-2h1.58c1.33 0 2.42-1.08 2.42-2.42V13h2v1.58c0 2.44-1.98 4.42-4.42 4.42"></path></svg>');
}

.glyphicon.glyphicon-th-large::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h8V3H3zm0 8h8v-6H3zm10 0h8V11h-8zm0-18v6h8V3z"></path></svg>');
}

.glyphicon.glyphicon-share.stTeam::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87"></path><circle cx="9" cy="8" r="4" fill-rule="evenodd"></circle><path fill-rule="evenodd" d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24C14.5 5.27 15 6.58 15 8s-.5 2.73-1.33 3.76c.42.14.86.24 1.33.24m-6 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4"></path></svg>');
	height:22px;
	width:22px;
	margin-top:-2px;
	margin-bottom: -2px;
}

.glyphicon.glyphicon-cog::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6"></path></svg>');
}

.glyphicon.glyphicon-retweet.transpose::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8m0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4z"></path></svg>');
}

.glyphicon.glyphicon-question-sign::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 18h2v-2h-2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4"></path></svg>');
}

.glyphicon.glyphicon-th-list.stDemo::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 7H9c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2m0 2v2H9V9zm-6 6v-2h2v2zm2 2v2h-2v-2zm-4-2H9v-2h2zm6-2h2v2h-2zm-8 4h2v2H9zm8 2v-2h2v2zM6 17H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v1h-2V5H5v10h1z"></path></svg>');
}

.glyphicon.glyphicon-plus.stSignup::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m9 17 3-2.94c-.39-.04-.68-.06-1-.06-2.67 0-8 1.34-8 4v2h9zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41z"></path></svg>');
}
.glyphicon.glyphicon-th-list.stBackToApp::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.09 15.59 11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67zM19 3H5c-1.11 0-2 .9-2 2v4h2V5h14v14H5v-4H3v4c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2"></path></svg>');
}
.glyphicon.glyphicon-info-sign::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8"></path></svg>');
}
.glyphicon.glyphicon-envelope::before {
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 14H4V8l8 5 8-5zm-8-7L4 6h16z"></path></svg>');
}

@media (min-width: 768px) {
	.undoHistory .badge.historyCount, .redoHistory .badge.historyRedoCount {
		margin-left:1px;
	}

	.undoHistory span.stItemText, .revertReport span.stItemText, .redoHistory span.stItemText, .reportContainer .saveReport span.stItemText {
		display: none;
	}
	.undoHistory::before, .revertReport::before, .redoHistory::before, .reportContainer .saveReport::before {
		content: ' ';
		display: inline-block;
		width: 18px;
		height: 18px;
		margin-bottom: -3px;
		background-color: var(--st-muted-text-color);
	}
	.undoHistory::before {
		mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8"></path></svg>');
	}
	.revertReport::before {
		mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path></svg>');
	}
	.redoHistory::before {
		mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7z"></path></svg>');
	}
	.reportContainer .saveReport::before {
		mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V7zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3m3-10H5V5h10z"></path></svg>');
	}
}

.cardsList .panel .panel-heading .glyphicon-move:hover::before, #reportList .glyphicon-move:hover::before {
	background-color: var(--st-text-color);
}
.pivotContainer span.transpose,
.pivotContainer span.configure {
	margin-left:0px !important;
}

	.pivotContainer span.transpose:hover::before,
	.pivotContainer span.configure:hover::before,
	.pivotContainer .paramsTab span.configureParams:hover::before,
	.undoHistory:hover::before,
	.revertReport:hover::before,
	.redoHistory:hover::before,
	.reportContainer .saveReport:hover::before,
	label .glyphicon.glyphicon-question-sign:hover::before, h3 .glyphicon.glyphicon-question-sign:hover::before {
		background-color: var(--st-menu-text-color);
	}

.topMenu .glyphicon::before {
	width: 18px !important;
	height: 18px !important;
	margin-bottom: -2px;
	margin-right: 2px;
	background-color: var(--st-muted-text-color) !important;
}
.viewHeading .glyphicon::before {
	margin-bottom:-1px;
}
.glyphicon.reportDescriptionIcon:focus {
	outline:none;
}
.glyphicon.reportDescriptionIcon:hover::before, .glyphicon.reportDescriptionIcon:focus::before {
	background-color: var(--st-text-color);
	cursor: pointer;
}

label .glyphicon.glyphicon-question-sign::before, h3 .glyphicon.glyphicon-question-sign::before {
	width: 14px;
	height: 14px;
	line-height: inherit;
	margin-top: 0px;
}

#accountMenu .glyphicon.glyphicon-user::before {
	height: 20px;
	width: 20px;
	margin-bottom: -4px;
	background-color: var(--st-muted-text-color) !important;
	mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="10" cy="8" r="4"></circle><path d="M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26c-.79-1.13-1.26-2.51-1.26-4 0-1.07.25-2.07.67-2.98M20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49q-.48-.405-1.08-.63L18 11h-2l-.3 1.49q-.6.225-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49q.48.405 1.08.63L16 21h2l.3-1.49q.6-.225 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63M17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2"></path></svg>');
}
.subform label {
	position: absolute;
	font-size: 11px;
	margin-top: -8px;
	margin-left: 10px;
	padding: 0px 5px;
	background-color: var(--st-bg-color);
}
.billingContact .subform label {
	margin-left:5px;
}

.table-noborder td, .table-noborder th {
	border: none !important;
}