@import url('https://fonts.googleapis.com/css?family=Varela+Round');
/*
@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light+Two');
*/

@import url('https://fonts.googleapis.com/css?family=Special+Elite&display=swap');

@-webkit-keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

#loader {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.75);
	z-index: 9999;
}

#loader b {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin-top: -40px;
	margin-left: -40px;
	border-radius: 80px;
	border: 8px solid transparent;
	border-top-color: #FFF;
	border-left-color: #FFF;


	-webkit-animation: rotating 1s linear infinite;
	   -moz-animation: rotating 1s linear infinite;
		-ms-animation: rotating 1s linear infinite;
		 -o-animation: rotating 1s linear infinite;
			animation: rotating 1s linear infinite;

}

#loader b:before {
	content: "";
	position: absolute;
	bottom: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	background: #FFF;
	border-radius: 8px;
}

#loader b:after {
	content: "";
	position: absolute;
	top: 2px;
	right: 3px;
	width: 8px;
	height: 8px;
	background: #FFF;
	border-radius: 8px;
}

::-webkit-scrollbar {
	width: 16px;
	height: 16px;
}

::-webkit-scrollbar-track {
	background: transparent; 
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	/* padding: 3px; */
	/* margin: 3px; */
	border: 4px solid #fff;
	/* right: 2px; */
	/* position: relative; */
}


.tipo-grid .in .scrollable::-webkit-scrollbar-thumb {
	border: 0;
}

* {
	outline: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
}

body {
	font-family: "Varela Round", Arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background: #FFF;
	color: #2c3e50;
	overflow-x: hidden;
}

a,
a:visited {
	text-decoration: none;
	color: #9b59b6;
	font-weight: bold;
}

a:active,
a:focus,
a:hover {
	color: #8e44ad;
}

h1 {
	margin: 32px 0 48px 0;
	font-size: 24px;
	opacity: 0;
	position: relative;
	top: -1em;
	-webkit-transition: all 250ms ease-in-out;
	   -moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		 -o-transition: all 250ms ease-in-out;
			transition: all 250ms ease-in-out;
}

h1.active {
	opacity: 1;
	top: 0;
}

@media all and (min-width: 800px) {
	h1 {
		font-size: 32px;
	}
}

h1 span {
	color: #7f8c8d;
}

.btn-new {
	position: fixed;
	bottom: 32px;
	left: 50%;
	margin-left: -32px;
	width: 64px;
	height: 64px;
	border-radius: 64px;
	line-height: 68px;
	text-align: center;
	background: #9b59b6;
	font-size: 24px;
	cursor: pointer;
	-webkit-box-shadow: 0 0 50px 10px rgba(0,0,0,0.25);
	box-shadow: 0 0 50px 10px rgba(0,0,0,0.25);
	color: #FFF;
}

.btn-new:hover {
	background: #8e44ad;
}

.new-element-popup--out {
	display: none;
}

.new-element-popup--out.active {
	display: block;
}

.new-element-popup--overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 6;
	background: rgba(0,0,0,0.5);
}

.new-element-popup {
	position: fixed;
	top: 32px;
	bottom: 32px;
	left: 5%;
	right: 5%;
	background: #FFF;
	padding: 32px;
	border-radius: 10px;
	overflow: auto;
	z-index: 7;
	-webkit-box-shadow: 0 0 32px 8px rgba(0,0,0,0.25);
			box-shadow: 0 0 32px 8px rgba(0,0,0,0.25);

}

@media all and (min-width: 800px) {
	.new-element-popup {
		left: 50%;
		right: auto;
		width: 800px;
		margin-left: -400px;
		
	}
}

.new-element-popup-out {
	position: absolute;
	top: 100px;
	left: 16px;
	right: 16px;
	bottom: 16px;
	overflow: scroll;
}

.new-element-popup.small {
	top: 50%;
	bottom: auto;
	height: 480px;
	margin-top: -240px;
}

.new-element-popup.smallest {
	top: 50%;
	bottom: auto;
	height: 180px;
	margin-top: -90px;

	left: 50%;
	right: auto;
	width: 320px;
	margin-left: -160px;
}

.new-element-popup.large {
	top: 32px;
	bottom: 32px;
	left: 32px;
	right: 32px;
	margin: 0;
	width: auto;
	height: auto;
}

.new-element-popup h1 {
	font-size: 32px;
	margin: 0 0 32px 0;
	padding: 0;
	text-align: center;
}

.new-element-popup--input {
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
	width: 98%;
	margin: 0px 1% 16px 1%;
}

@media all and (min-width: 600px) {
	.new-element-popup--input {
		width: 31.333333%;
		float: left;
	}
}

.new-element-popup--input label {
	display: block;
	margin: 0 0 8px 0;
}

.new-element-popup--input input,
.new-element-popup--input select,
.new-element-popup--input textarea,
.new-element-popup--input input[type='password'],
.dashboard-details select,
.dashboard-details input,
.screen-filters input,
.screen-filters select,
.custom-input {
	width: 100%;
	background: #ecf0f1;
	border: 0;
	outline: none;
	color: #000;
	font-family: "Varela Round", Arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
	padding: 8px;
	border-radius: 5px;
	height: 36px;
	line-height: 36px;
}

th .custom-input {
	background: rgba(255, 255, 255, 0.5);
}

.screen-filters input,
.screen-filters select {
	width: auto;
}

.new-element-popup--input input::placeholder {
	color: #bdc3c7;
	font-weight: 400;
	font-style: italic;
	font-size: 12px;
}

.new-element-popup--input textarea {
	height: 200px;
}

.new-element-popup--input.posicao input {
	width: 48%;
	float: left;
	margin-right: 4%;
	margin-bottom: 8px;
	display: none;
}

.new-element-popup--input.posicao input:nth-child(even) {
	margin-right: 0;
}

#new-element-popup--query {
	height: 420px;
	border-radius: 5px 0 5px 5px;
}

.new-element-popup--close {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
}

.btn,
.btn-create-widget,
.btn-create-server,
.btn-add-dashboard-to-slideshow,
.btn-create-user,
.btn-create-team {
	background: #9b59b6;
	width: 100px;
	padding: 8px 0;
	border-radius: 99px;
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
	color: #FFF;
}

#slideshow-title {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	line-height: 50px;
	font-size: 32px;
	padding: 0 16px;
	background: #34495e;
	color: #FFF;
	border-bottom: 1px solid #2c3e50;
}

.theme-1 #slideshow-title {
	background: #FFF;
	color: #000;
	border-bottom-color: #f3f3f3;
}

.widgets {
	display: block;
	position: fixed;
	top: 50px;
	bottom: 0;
	width: 100vw;
	overflow-y: auto;
	background: #34495e;
	color: #fff;
	padding: 8px;
}

.theme-1 .widgets {
	background: #FFF;
	color: #000;
}

@media all and (min-width: 480px) {
	.widgets {
		overflow-y: hidden;
		display: grid;
		grid-template-columns: repeat(20, 5%);
		grid-template-rows: repeat(20, 5%); 
		grid-gap: 0;
	}
}

.widget {
	width: 100%;
	height: 0;
	position: relative;
	background: #2c3e50;
	border-radius: 16px;
	padding-top: 75%;
	border: 8px solid #34495e;
	opacity: 1;
	top: 0;
	overflow: hidden;

	-webkit-transition: all 500ms ease-in-out;
	   -moz-transition: all 500ms ease-in-out;
		-ms-transition: all 500ms ease-in-out;
		 -o-transition: all 500ms ease-in-out;
			transition: all 500ms ease-in-out;
}

@media all and (max-width: 480px) {
	.widget.tipo-grid {
		padding-top: 0;
		height: 85vh;
		font-size: 11px;
	}

	.widget.tipo-grid td {
		padding: 4px;
	}
}

.theme-1 .widget {
	background: #f3f3f3;
	border-color: #FFF;

}

@media all and (min-width: 480px) {
	.widget {
		padding: 32px;
		height: auto;
	}
}

.widget.hidden {
	opacity: 0;
	top: -8vh;
}

.widget.hidden-down {
	opacity: 0;
	top: 8vh;
}

.btn-del-widget {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
}

.in {
	position: absolute;
	top: 16px;
	bottom:16px;
	left: 16px;
	right: 16px;
	color: #FFF;
	overflow: hidden;
}

h1 + .in {
	top: 56px;
}

.theme-1 .in {
	color: #000;
}

.tipo-grid .in .scrollable {
	position: absolute;
	top: 0;
	bottom: 32px;
	left: 0;
	right: 0;
	overflow-x: auto;
	overflow-y: scroll;
	z-index: 1;
}

.export-to-xls,
.print-grid {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0.5;
	cursor: pointer;
}

.print-grid {
    right: 2rem;
}

.export-to-xls:hover,
.print-grid:hover {
	opacity: 1;
}

.widget h1 {

	-webkit-transition: all 0ms ease-in-out;
	   -moz-transition: all 0ms ease-in-out;
		-ms-transition: all 0ms ease-in-out;
		 -o-transition: all 0ms ease-in-out;
			transition: all 0ms ease-in-out;

	opacity: 1;
	font-size: 20px;
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	margin: 0;
}

.widget-filter {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	background: #2c3e50;
	padding: 16px;
	width: 100%;
	max-width: 580px;
	height: 396px;
	z-index: 9;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	box-shadow: 0 0 50px 0 #000, 0 0 0 9999px rgba(0,0,0,0.5);
	color: #FFF;
	overflow-y: auto;
}

.theme-1 .widget-filter {
	background: #FFF;
	color: #000;
}

.widget-filter.active {
	display: block;
}

.widget-filter + .in {
	top: 76px;
}


#dashboard-filters-out {
	display: none;
    z-index: 1;
    color: #FFF;
}

.widget-filter-toggle {
	position: absolute;
	top: 8px;
	right: 8px;
	opacity: 0.5;
	cursor: pointer;
}

.widget-filter-toggle:hover {
	opacity: 1;
}

.widget-filter .dfilters > div {
	padding: 8px 16px;
	overflow: hidden;
	line-height: 38px;
	width: 50%;
	float: left;
	height: 90px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.widget-filter .dfilters > div.big {
	float: none;
	width: 100%;
}

.widget-filter div.big + .btn {
    margin-top: 2rem;
}

.widget-filter .dfilters > div input,
.widget-filter .dfilters > div select {
	width: 100%;
	display: block;
	background: #34495e;
	border: 0;
	padding: 8px;
	border-radius: 8px;
	color: #FFF;
	font-family: "Varela Round", Arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
}

.theme-1 .widget-filter .dfilters > div input,
.theme-1 .widget-filter .dfilters > div select {
	background: #f3f3f3;
	color: #000;
}

.widget-filter .btn, .widget-filter .dfilters > div.btn {
	line-height: 100%;
	margin-top: 1rem;
	float: right;
	width: calc(50% - 32px);
	margin-right: 16px;
	height: 32px;
}

.widget-filter .btn:nth-child(even) {
    margin-top: 3rem !important;
}

.widget-filter-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 8;
}

.widget-filter-overlay.active {
	display: block;
}

.widget table {
	width: 100%;
	border-collapse: collapse;
}

.widget table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget table tr.hidden {
	display: none;
}

.widget table tbody tr:nth-child(odd) {
	background: rgba(0,0,0,0.1);
}

.theme-1 .widget table tbody tr:nth-child(odd) {
	background: #fff;
}

.widget table tbody tr:last-child {
	border-bottom: 0;
}

.widget table tr td,
.widget table tr th {
	padding: 8px;
	text-align: left;
	font-weight: 400;
	white-space: nowrap;
}

.widget table tr td.numeric,
.widget table tr th.numeric {
	text-align: right;
}

.widget table .grouped-table-main-tr {
	font-size: 120%;
	padding:8px;
}

.widget table .grouped-table-main-tr td {
	text-align: left;
}

.widget table .grouped-table-secondary-tr {
	display: none;
}



.ct-grid {
	stroke: rgba(255,255,255,.2);
	stroke-width: 1px;
	stroke-dasharray: 2px;
}

.theme-1 .ct-grid {
	stroke: #000;
}

.ct-label {
	color: #FFF;
	fill: #FFF;
}

.theme-1 .ct-label {
	color: #000;
	fill: #000;
}

.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
	stroke: #1abc9c;
}

.ct-series-b .ct-bar,
.ct-series-b .ct-line,
.ct-series-b .ct-point,
.ct-series-b .ct-slice-donut {
	stroke: #9b59b6;
}

.ct-series-c .ct-bar,
.ct-series-c .ct-line,
.ct-series-c .ct-point,
.ct-series-c .ct-slice-donut {
	stroke: #f1c40f;
}

.tipo-value .in,
.tipo-null .in {
	text-align: center;
}

.tipo-value .in.value-in,
.tipo-null .in.value-in {
	display: inline;
	position: static;
	margin: 0;
}

.tipo-gfx-gauge .gauge {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 50%;
}

.tipo-gfx-gauge .gauge b {
	position: absolute;
	top: 0;
	height: 0;
	padding-top: 100%;
	left: 0;
	right: 0;

	border-radius: 100%;

	background: #e74c3c;
	background: -webkit-linear-gradient(left, #2ecc71 0%,#f1c40f 50%,#e74c3c 100%);
	background:    -moz-linear-gradient(left, #2ecc71 0%, #f1c40f 50%, #e74c3c 100%);
	background: linear-gradient(to right, #2ecc71 0%,#f1c40f 50%,#e74c3c 100%);
}

.tipo-gfx-gauge .gauge b:before {
	content: "";
	position: absolute;
	top: 32px;
	bottom: 32px;
	left: 32px;
	right: 32px;
	border-radius: 100%;
	background: #2c3e50;
	z-index: 2;
}

.theme-1 .tipo-gfx-gauge .gauge b:before {
	background: #f3f3f3;
}

.tipo-gfx-gauge .gauge b i {
	position: absolute;
	top: 32px;
	bottom: 50%;
	left: 50%;
	width: 16px;
	margin-left: -8px;
	background: #fff;
	z-index: 3;
	
	transform-origin: bottom center;

	-webkit-transition: all 1s ease-in-out;
	   -moz-transition: all 1s ease-in-out;
		-ms-transition: all 1s ease-in-out;
		 -o-transition: all 1s ease-in-out;
			transition: all 1s ease-in-out;
}

.theme-1 .tipo-gfx-gauge .gauge b i {
	background: #999;
}

.tipo-gfx-gauge .gauge b i:after {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	border: 8px solid #fff;
	border-top: 0;
	border-left-color: transparent;
	border-right-color: transparent;
	margin-left: -8px;
	z-index: 3;
}

.theme-1 .tipo-gfx-gauge .gauge b i:after {
	border-bottom-color: #999;
}

.tipo-gfx-gauge .gauge b i:before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	margin-left: -8px;
	z-index: 4;
	background: #fff;
}

.theme-1 .tipo-gfx-gauge .gauge b i:before {
	background: #999;
}

.tipo-gfx-gauge .gauge .value {
	position: absolute;
	bottom: 16px;
	left: 32px;
	right: 32px;
	text-align: center;
	font-size: 32px;
	z-index: 4;
	line-height: 32px;
	text-shadow: 0 0 10px #151929;
}

.tipo-gfx-gauge .gauge .value span {
	color: #ddd;
	font-size: 16px;
	display: inline-block;
	padding-left: 0.25em;
	line-height: 32px;
	display: block;
	text-shadow: 0 0 10px #151929;
}

.theme-1 .tipo-gfx-gauge .gauge .value span {
	color: #333;
}


.dashboard-list,
.main-list {
	padding: 16px;
}

.dashboards ul,
.main-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dashboards > li,
.main-list > li {
	position: relative;
	margin: 0;
	padding: 0;
	cursor: pointer;
	height: 52px;
	display: block;
	vertical-align: middle;
	line-height: 52px;
}

.home-list li,
.block-list li {
	opacity: 1;
	top: 0;
	-webkit-transition: all 150ms ease-in-out;
	   -moz-transition: all 150ms ease-in-out;
		-ms-transition: all 150ms ease-in-out;
		 -o-transition: all 150ms ease-in-out;
			transition: all 150ms ease-in-out;
}

.home-list li.hidden,
.block-list li.hidden {
	opacity: 0;
	-webkit-transform: scale(0.8);
	   -moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		 -o-transform: scale(0.8);
			transform: scale(0.8);
}

.dashboards li:hover,
.main-list li:hover {
	text-decoration: underline;
}

.dashboards .tooltip,
.main-list .tooltip {
	background: #000;
	border-radius: 5px;
	display: block;
	/* position: absolute; */
	white-space: nowrap;
	z-index: 9;
	display: none;
	padding: 16px;
	/* top: 0; */
	/* left: 100%; */
	/* margin-top: 8px; */
	position: relative;
	line-height: 0;
}

.dashboards .tooltip:after,
.main-list .tooltip:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -8px;
	margin-top: -8px;
	border: 8px solid #000;
	border-left: 0;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

.dashboards li:hover .tooltip,
.main-list li:hover .tooltip {
	display: inline-block;
	margin-left: 16px;
}

.dashboards .tooltip > div,
.main-list .tooltip > div {
	display: inline-block;
	margin: 0 8px;
}


.block-list ul {
	padding: 0;
	margin: 0 -1%;
	overflow: hidden;
	margin-top: 16px;
	padding-bottom: 80px;
}

.block-list ul li {
	position: relative;
	margin: 0;
	padding: 0;
	cursor: pointer;
	height: 100px;
	display: block;
	vertical-align: middle;
	width: 98%;
	background: #2c3e50;
	margin: 0 1% 32px 1%;
	padding: 16px;
	border-radius: 8px;
	color: #FFF;
}

@media all and (min-width: 600px) {
	.block-list ul li,
	.home-list ul li {
		width: 23%;
		float: left;
		height: 200px;		
	}
}

span.block-actions {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

span.block-actions > div {
	display: block;
	float: left;
	line-height: 24px;
	opacity: 0.75;
	padding: 16px;
}

span.block-actions > div:hover {
	color: #FFF;
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

span.block-actions > div + div {
	float: right;
}


.slideshow-dashboard-list {
	overflow: hidden;
}

.slideshow-dashboard-list > div select, .slideshow-dashboard-list > div input {
	background: #ecf0f1;
	padding: 8px;
	border: 0;
	border-radius: 8px;
	font-size: 1em;
	font-family: "Varela Round", Arial, sans-serif;
	color: #000;
	width: 28%;
	float: left;
	vertical-align: middle;
}

.slideshow-dashboard-list > div label {
	width: 18%;
	display: block;
	float: left;
	vertical-align: middle;
	text-align: right;
	padding-right: 16px

}
.slideshow-dashboard-list > div {
	margin: 0;
	margin-bottom: 16px;
	vertical-align: middle;
	line-height: 40px;
	overflow: hidden;
}

.dashboard-in-slideshow--del,
.dashboard-in-slideshow--add {
	/* position: absolute; */
	width: 6%;
	float: left;
	text-align: center;
	background: #ecf0f1;
	border-radius: 8px;
	line-height: 34px;
	margin-left: 2%;
	cursor: pointer;
}

.dashboard-in-slideshow--del:hover,
.dashboard-in-slideshow--add:hover {
	background: #8e44ad;
	color: #FFF;
}

.dashboard-in-slideshow--add {
	margin: 8px 0 8px auto;
	float: none;
}

.home-list li {
	display: block;
	width: 98%;
	height: 200px;
	background: #2c3e50;
	margin: 0 1% 32px 1%;
	border-radius: 8px;
	padding: 16px;
	text-align: center;
	position: relative;
}

#servers {
	background: #e74c3c;
}
.servers ul li {
	border-bottom: 10px solid #e74c3c;
}

#indicators {
	background: #f39c12;
}
.indicators ul li {
	border-bottom: 10px solid #f39c12;
}

#dashboards {
	background: #3498db;
}
.dashboards ul li,
.widget-list ul li {
	border-bottom: 10px solid #3498db;
}

.dashboard-details {
	background: #ecf0f1;
	padding: 16px;
	border-radius: 8px;
	margin-top: 16px;
}

.dashboard-details label {
	display: block;
}

.widget-list + .widgets {
	position: static;
	height: 480px;
	background: #ecf0f1;
	margin-top: 16px;
	border-radius: 8px;
	display: none;
	margin-bottom: 130px;
}

.widget-list + .widgets > .widget {
	border-color: #ecf0f1;
	overflow: visible;
}

.widget-list + .widgets > .widget:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
	background: #3498db;
	border-radius: 0 0 8px 8px;
}

.widget-list + .widgets > .widget .del {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #1a252f;
	border-radius: 16px;
	width: 32px;
	height: 32px;
	opacity: 1;
	line-height: 32px;
	text-align: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
}

@media all and (min-width: 1024px) {
	.widget-list,
	.widget-list + .widgets {
		width: 75%;
		float: left;
	}

	.widget-list li {
		width: 23% !important;
	}
	
	.dashboard-details {
		position: relative;
		opacity: 0;
		left: 10%;
		float: right;
		width: 23%;
		margin-left: 2%;
		-webkit-transition: all 250ms ease-in-out;
		-moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		-o-transition: all 250ms ease-in-out;
		transition: all 250ms ease-in-out;
	}

	.dashboard-details.normal {
		opacity: 1;
		left: 0;
	}
}

.dashboard-details h2 {
	margin-top: 0;
}

.dashboard-details input,
.dashboard-details select {
	margin: 8px 0 32px 0;
	width: 100%;
	display: block;
	background: #FFF;
}



#slideshows {
	background: #1abc9c;
}
.slideshows ul li {
	border-bottom: 10px solid #1abc9c;
}

@media all and (min-width: 1080px) {
	.home-list li {
		width: 23%;
		float: left;
	}
}

ul.home-list {
	overflow: hidden;
	margin: 16px -1%;
}

.home-list a {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #FFF;
	height: 200px;
	line-height: 200px;
	font-size: 2em;
	cursor: pointer;
}

.home-list a:hover {
	background: rgba(0,0,0,0.1);
}

.home-list .fas {
	position: absolute;
	top: 25px;
	left: 0;
	font-size: 150px;
	opacity: 0.25;
	right: 0;
	color: rgba(255, 255, 255, 0.5);
}

.block-list ul li.status-2 {
	background: #f39c12;
}

.block-list ul li.status-3 {
	background: #e74c3c;
}

a.preview-dashboard {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.5);
	display: inline-block;
	position: relative;
	top: -4px;
	margin-left: 16px;
	background: #9b59b6;
	padding: 4px 8px;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
}

.preview-dashboard:hover,
.preview-dashboard:active,
.preview-dashboard:focus {
	color: #FFF;
}

.login-box {

	margin: 0 auto;
	width: 310px;
	background: #ecf0f1;
	border-radius: 8px;
	margin-top: 64px;
	padding: 32px;
	overflow: hidden;

	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -155px;
	margin-top: -210px;

	-webkit-box-shadow: 0 0 32px 8px rgba(0,0,0,0.5);
box-shadow: 0 0 32px 8px rgba(0,0,0,0.5);
}

.login-box input {
	display: block;
	margin: 8px 0 24px 0;
	width: 100%;
	padding: 12px;
	border: 0;
	border-radius: 4px;
	background: #FFF;
	outline: none;
	border: none;
	color: #2c3e50;
	font-family: "Varela Round", Arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
}

.login-box h1 {
	text-align: center;
	margin: 0 0 32px 0;
}

.login-box #recover {
	float: left;
	line-height: 36px;
	margin-top: 8px;
	color: #95a5a6;
	cursor: pointer;
}

.login-box #recover:hover {
	color: #2c3e50;
}

.login-box #login {
	float: right;
	margin-top: 8px;
}

#popup-recover {
	padding: 16px;
}

#popup-recover input {
	display: block;
	margin: 8px 0 24px 0;
	width: 100%;
	padding: 12px;
	border: 0;
	border-radius: 4px;
	background: #ecf0f1;
	outline: none;
	border: none;
	color: #2c3e50;
	font-family: "Varela Round", Arial, sans-serif;
	font-weight: 800;
	font-size: 16px;
}

#popup-recover p {
	margin: 0 0 8px 0;
}

#dragAndDropCanvas {
	height: 400px;
	background: #ecf0f1;
	border-radius: 4px;
	width: 100%;
	position: relative;
	margin: 16px auto;
}

.dragAndDrop-row {
	overflow: hidden;
}

.dragAndDrop-block {
	width: 5%;
	height: 20px;
	float: left;
	box-sizing: border-box;
}


.dragAndDrop-block.highlight {
	background: #8e44ad;
}

.dragAndDrop-block.busy {
	background: #bdc3c7;
}

.dragAndDrop-block.current {
	background: #9b59b6;
}

.dragAndDrop-block:hover {
	background: #8e44ad;
}

.dragAndDrop-block.busy-tl { border-radius: 8px 0 0 0; }
.dragAndDrop-block.busy-tr { border-radius: 0 8px 0 0; }
.dragAndDrop-block.busy-br { border-radius: 0 0 8px 0; }
.dragAndDrop-block.busy-bl { border-radius: 0 0 0 8px; }

.dragAndDrop-block.top 		{    border-top: 4px solid #ecf0f1; }
.dragAndDrop-block.bottom 	{ border-bottom: 4px solid #ecf0f1; }
.dragAndDrop-block.left 	{   border-left: 4px solid #ecf0f1; }
.dragAndDrop-block.right 	{  border-right: 4px solid #ecf0f1; }


.home-list li.admin {
	display: none;
}

.usermenu {
	font-size: 16px;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	padding: 16px;
	opacity: 0;
	-webkit-transform: scale(0.8);
	   -moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		 -o-transform: scale(0.8);
			transform: scale(0.8);

	-webkit-transition: all 250ms ease-in-out;
	   -moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		 -o-transition: all 250ms ease-in-out;
			transition: all 250ms ease-in-out;

}

.usermenu.normal {
	opacity: 1;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
		-ms-transform: scale(1);
		 -o-transform: scale(1);
			transform: scale(1);
}

.breadcrumb {
	/*
	border-bottom: 1px solid #ecf0f1;
	*/
	color: #FFF;
	padding: 16px;
	background: #8e44ad;
	background: #2c1535;
	margin: -16px -16px 0 -16px;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.75);
}

.btn-logout {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: underline;
	padding: 0 4px;
	cursor: pointer;
	font-weight: 400;
}

div#new-element-popup--position {
	height: 480px;
	background: #101525;
	border-radius: 4px;
	/* padding-top: 25%; */
	width: 100%;
	position: relative;
	margin: 16px auto;
}

.new-element-popup--input.actions {
	clear: both;
	width: 98%;
	float: none;
	padding-top: 32px;
}


@media all and (min-width: 600px) {
	.new-element-popup--input.large {
		width: 98%;
		/* margin-top: 16px; */
	}
	
	.new-element-popup--input.med {
		width: 48%;
	}

	.new-element-popup--input.small {
		width: 14.66666%;
	}

}

#prompt-overlay,
#confirm-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	z-index: 8;
}

#prompt-out,
#confirm-out {
	display: none;
}

#confirm,
#prompt {
	background: #FFF;
	color: #2c3e50;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 200px;
	border-radius: 8px;
	padding: 16px;
	margin: -100px 0 0 -200px;
	box-shadow: 0 0 25px 0 rgba(0,0,0,0.75);
	z-index: 9;
}

#confirm .btn-ok,
#prompt .btn-ok {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: #9b59b6;
}

#confirm .btn-cancel,
#prompt .btn-cancel {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: #34495e;
}

#confirm p,
#prompt p {
	margin: 0 0 8px 0;
}

#prompt input {
	background: #ecf0f1;
	border: 0;
	border-radius: 8px;
	padding: 16px;
	width: 100%;
	outline: none;
	color: #2c3e50;
	font-size: 16px;
	font-weight: 800;
	font-family: "Varela Round", Arial, sans-serif;
	margin-top: 16px;
}


.toast {
	position: fixed;
	bottom: -200px;
	left: 50%;
	margin-left: -160px;
	width: 320px;
	background: #3498db;
	opacity: 0;
	padding: 1rem;
	color: #FFF;
	z-index: 999;

	cursor: pointer;

	-webkit-border-radius: 5px;
			border-radius: 5px;

	-webkit-transition: all 250ms ease-in-out;
	   -moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		 -o-transition: all 250ms ease-in-out;
			transition: all 250ms ease-in-out;

	-webkit-box-shadow: 0 0 50px 5px rgba(0,0,0,0.3);
			box-shadow: 0 0 50px 5px rgba(0,0,0,0.3);

	-webkit-filter: blur(3px);
			filter: grayscale(3px);
}

.toast.show {
	opacity: 1;
	bottom: 2rem;
	-webkit-filter: blur(0);
			filter: grayscale(0);
}

.toast.hide {
	opacity: 0;
	bottom: 4rem;
}

.toast.success {
	background: #1abc9c;
}

.toast.error {
	background: #e74c3c;
}

.toast.warning {
	background: #f39c12;
}

.toast .fa {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	cursor: pointer;
}

.toast a {
	color: #FFF;
	font-weight: bold;
}

.postit {
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	position: relative;
	float: left;
	width: 80%;
	margin: 5% 10%;
	padding-top: 80%;
	height: 0;
	font-size: 20px;
}

.large .postit {
	width: 46%;
	font-size: 18px;
	padding-top: 40%;
	margin: 5% 2%;
}

.med .postit {
	width: 29%;
	padding-top: 25%;
	font-size: 16px;
}

.small .postit {
	width: 16%;
	padding-top: 15%;
	font-size: 14px;
}

.postit-in {
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 8px;
	font-family: 'Special Elite';
	border-bottom-right-radius: 60px 5px;
	display: inline-block;
	background: #FFFFA5;
	color: #111;
	-webkit-box-shadow: 10px 10px 25px 0 rgba(0,0,0,0.5);
	box-shadow: 10px 10px 25px 0 rgba(0,0,0,0.5);
	font-size: 12px;
}

.large .postit-in {
	font-size: 16px;
}

.postit-in:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: -webkit-linear-gradient(-45deg, rgba(255,255,255,0) 75%,rgba(255,255,255,0.5) 100%);
	background: linear-gradient(135deg, rgba(255,255,255,0) 75%,rgba(255,255,255,0.5) 100%);
}

.postit.r2 {
	-webkit-transform: rotate(-6deg);
	   -moz-transform: rotate(-6deg);
		-ms-transform: rotate(-6deg);
		 -o-transform: rotate(-6deg);
			transform: rotate(-6deg);
}

.postit.r3 {
	-webkit-transform: rotate(3deg);
	   -moz-transform: rotate(3deg);
		-ms-transform: rotate(3deg);
		 -o-transform: rotate(3deg);
			transform: rotate(3deg);
}

.postit.r4 {
	-webkit-transform: rotate(6deg);
	   -moz-transform: rotate(6deg);
		-ms-transform: rotate(6deg);
		 -o-transform: rotate(6deg);
			transform: rotate(6deg);
}
.postit.c2 .postit-in { background: #c7ffa5; }
.postit.c3 .postit-in { background: #a5eaff; }
.postit.c4 .postit-in { background: #ffa5b1; }
.postit.c5 .postit-in { background: #c0a5ff; }
.postit.c6 .postit-in { background: #ffa5eb; }

.postit-title {
	font-size: 120%;
	padding-top: 16px;
}

.postit-date {
	font-size: 80%;
	position: absolute;
	top: 0;
	right: 0;
	padding: 8px;
}

.postit-text {
	margin-top: 8px;
}

#preview-data {
	float: right;
	padding: 4px 16px;
	background: #ecf0f1;
	color: #000;
	border-radius: 8px 8px 0 0;
	cursor: pointer;
}

#preview-data i {
	-webkit-transition: all 150ms ease-in-out;
	   -moz-transition: all 150ms ease-in-out;
		-ms-transition: all 150ms ease-in-out;
		 -o-transition: all 150ms ease-in-out;
			transition: all 150ms ease-in-out;
}

#preview-data:hover i {
	-webkit-transform: scale(1.2);
	   -moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		 -o-transform: scale(1.2);
			transform: scale(1.2);
}

.query-preview #confirm {
	top: 64px;
	bottom: 64px;
	left: 64px;
	right: 64px;
	margin: 0;
	width: auto;
	height: auto;
}

.table-out {
	overflow: auto;
	position: absolute;
	top: 16px;
	bottom: 64px;
	left: 16px;
	right: 16px;
}

.table-out table td {
	border: 1px solid #ddd;
	padding: 8px;
}

.table-out table {
	border-collapse: collapse;
	width: 100%;
}

.table-out table th {
	background: #eee;
	padding: 8px;
	border: 1px solid #ddd;
}

.new-element-popup--extra.hidden {
	display: none;
}

.indicator-filter--possiblevalues-sf.hidden {
	display: none;
}

@media all and (min-width: 480px) {
	.txtsize-xs {	font-size: 9px; }
	.txtsize-s {	font-size: 12px; }
	.txtsize-m {	font-size: 16px; }
	.txtsize-l {	font-size: 24px; }
	.txtsize-xl {	font-size: 32px; }
}

.owner {
	margin-top: 8px;
	color: #7f8c8d;
}

.owner b {
	color: #FFF;
}

select.server-related {
	border-bottom: 4px solid #e74c3c;
	padding-bottom: 4px;
}

select.indicator-related {
	border-bottom: 4px solid #f39c12;
	padding-bottom: 4px;
}

select.dashboard-related {
	border-bottom: 4px solid #3498db !important;
	padding-bottom: 4px !important;
}

.filters {
	float: right;
	font-size: 16px;
}

.filters > div {
	display: inline-block;
	margin: 0 0 0 8px;
	padding: 8px 16px;
	background: #FFF;
	color: #9b59b6;
	border-radius: 8px;
	border: 2px solid #9b59b6;
}

.filters > div.active {
	background: #9b59b6;
	color: #FFF;	
}


.indicator-filter {
	overflow: hidden;
	background: #ecf0f1;
	border-radius: 8px;
	padding: 16px 0px;
	margin: 8px 0 16px 0;
	position: relative;
}

.indicator-filter.hidden {
	display: none;
}

.indicator-filter > div {
	width: calc(25% - 32px);
	float: left;
	margin: 0 16px;
}

.indicator-filter select,
.indicator-filter input {
	background: #FFF;
}

.btn-add-filter {
	display: inline-block;
	background: #9b59b6;
	color: #FFF;
	padding: 4px 16px;
	border-radius: 16px;
	font-size: 14px;
	cursor: pointer;
}

.indicator-filter .indicator-filter--close {
	position: absolute;
	top: 0;
	right: 0;
	background: #bdc3c7;
	width: 30px;
	height: 30px;
	margin: 0;
	text-align: center;
	line-height: 30px;
	border-radius: 0 8px 0 8px;
	cursor: pointer;
}

.dashboard-filter {
    padding: 8px;
    background: #bdc3c7;
    border-radius: 8px;
	position: relative;
	margin-bottom: 16px;
}

.dashboard-filter--close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #95a5a6;
    box-shadow: #FFF;
    width: 36px;
    height: 36px;
    line-height: 31px;
    text-align: center;
    border-radius: 30px;
    border: 4px solid #ecf0f1;
}

#dashboard-filters .dashboard-filter input,
#dashboard-filters .dashboard-filter select,
#dashboard-filters .dashboard-filter textarea {
    margin: 4px 0 16px 0;
}

span.btn-goto {
	background: #9b59b6;
	color: #FFF;
	padding: 4px 8px;
	line-height: 20px;
	font-size: 10px;
	border-radius: 15px;
	cursor: pointer;
}

.scrollable thead th {
	background: #2c3e50;
    position: sticky;
    top: 0;
}

.theme-1 .grid-top,
.theme-1 thead th {
	background: #fff;
}

.login {
	background: #2c1535;
	overflow: hidden;
}

.login i.big {
	color: rgba(0,0,0,0.15);
	font-size: 11vw;
	width: 20vw;
	height: 25vh;
	line-height: 25vh;
	text-align: center;

	position: absolute;
}



.logo {
	max-width: 100%;
	width: 50%;
	display: block;
	margin: 0 auto 16px auto;
}

.moving-left,
.moving-right {
	position: relative;
	white-space: nowrap;
}

.fascolor {
	color: #FFF !important;
}

.screen-filters {
	position: absolute;
	top: 85px;
	right: 16px;
	z-index: 1;
}

.screen-filters--action {
	display: inline-block;
	margin-left: 32px;
}

.modal {
	display: none;
	position: fixed;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
	padding: 16px;
	background: #FFF;
	border-radius: 8px;
	z-index: 9;
}

.modal.active {
	display: block;
}

.modal h5 {
	font-size: 24px;
	overflow: hidden;
	padding: 0 0 8px 0;
	margin: 0 0 16px 0;
	padding: 0;
}

.modal .modal-close {
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	z-index: 8;
}

.modal.active + .modal-overlay {
	display: block;
}

.new-element-popup--indicator-overlay,
.new-element-popup--indicator-multi-overlay {
	position: absolute;
	bottom: 0;
	height: 36px;
	left: 0;
	right: 0;
}

.widget h1.value-in {
	display: inline;
	right: auto;
}

.title-float input {
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 100%;
	padding: 0;
	margin: 0 0 0 8px;
	position: relative;
	top: 3px;
}

.title-float label {
	display: inline-block;
	width: auto;
}

span.title-float {
	float: right;
}

banner {
	display: block;
	width: 100%; 
	position: relative;
	white-space: nowrap;
}

.value-in banner {
    display: inline-block;
    width: auto;
}

.widget h1 span {
    position: absolute;
    top: 120%;
    left: 0;
    font-size: 80%;
}

li.disabled {
	background: repeating-linear-gradient(-45deg, #2c3e50, #2c3e50 5px, #34495e 5px, #34495e 10px );	
}

li.disabled a {
	color: rgba(255, 255, 255, 0.25);
	cursor: not-allowed;
}

.img-in img {
	max-width: 90%;
	width: 90%;
	margin: 0 auto 16px auto;
	display: block;
}

.img-in {
	text-align: center;
}

.img-text {
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 32px;
    height: 32px;
}

.btn-inline {
	width: auto;
	display: inline-block;
	margin: 0 8px;
	padding: 0 0.5em;
    font-size: 60%;
    position: relative;
    top: -0.2em;
}

.btn-small {
	position: relative;
	top: -2px;
	font-size: 14px;
	padding: 4px 16px;
}

.usermenu > div {
	display: inline;
	/* margin: 0 16px; */
	border-left: 1px solid #FFF;
	padding: 4px 16px;
}

.usermenu > div:first-child {
	border: 0;
}

.bgcolor-1  {	background: #e74c3c !important; color: #FFF; 	}
.bgcolor-2  {	background: #2ecc71 !important; color: #FFF; 	}
.bgcolor-3  {	background: #f1c40f !important; color: #FFF; 	}
.bgcolor-4  {	background: #3498db !important; color: #FFF; 	}
.txtcolor-1 {	color: #e74c3c !important; }
.txtcolor-2 {	color: #2ecc71 !important; }
.txtcolor-3 {	color: #f1c40f !important; }
.txtcolor-4 {	color: #3498db !important; }

th.group,
th.sort {
    background: #fff;
    color: #000;
	border-radius: 4px 4px 0 0;
	padding: 2px 4px;
}

th.sort.sort-desc:after {
	content: "\25b2";
	color: #CCC;
}

th.sort.sort-asc:after {
	content: "\25bc";
	color: #CCC;
}

#widget-formula-out,
#widget-indicators-out {
	display: none;
}

.btn.btn-save-multi {
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -50px;
	width: 100px;
	height: 25px;
	line-height: 25px;
	padding: 0;
	font-size: 18px;
}

.curr {
	border: 2px dotted #333;
	background: #eee;
}


input.check-toggle {
	position: relative;
	height: 24px;
	width: 50px;
	background: transparent !important;
	-webkit-appearance: none;
	outline: none;
	float: right;
	margin: 0;
}

.check-toggle:before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 1);
	border-radius: 40px;


	-webkit-transition: all 350ms ease-in-out;
	   -moz-transition: all 350ms ease-in-out;
	    -ms-transition: all 350ms ease-in-out;
	     -o-transition: all 350ms ease-in-out;
	        transition: all 350ms ease-in-out;

}

.check-toggle:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border-radius: 40px;
	background: #7f8c8d;
	z-index: 2;
	-webkit-transition: all 250ms ease-in-out;
	   -moz-transition: all 250ms ease-in-out;
	    -ms-transition: all 250ms ease-in-out;
	     -o-transition: all 250ms ease-in-out;
	        transition: all 250ms ease-in-out;
}

.check-toggle:checked:after {
	left: calc(100% - 24px);
	background: #2ecc71;
}

.mb-1 {
	margin-bottom: 1em;
}

.mapCanvas {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: #333;
}

@media all and (max-width: 600px) {
	.screen-filters--action {
		display: block;
		margin: 0 0 16px 0;
		overflow: hidden;
	}
	
	.screen-filters {
		position: static;
	}
	
	.screen-filters input, .screen-filters select {
		float: right;
		width: 60%;
	}
	
	.block-list ul li {
		height: 140px;
	}
}

.tableexport-caption {
    display: none;
}

#slideshow-controls {
    position: absolute;
    right: 32px;
    top: 0;
    /* background: red; */
    color: #FFF;
    white-space: nowrap;
}

#slideshow-controls div {
    width: 40px;
    line-height: 40px;
    text-align: center;
    float: left;    
}