* {
	box-sizing: border-box;
}
*:before,
*:after {
	box-sizing: border-box;
}
.arror {
	position: fixed;
	display: none;
	z-index: 10;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	padding: 10px 0 50px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 700px;
	font-weight: bold;
	background: url(../images/icon_scroll.png) center 380px no-repeat;
	background-color: rgba(0, 0, 0, 0.5);
	background-size: 100px;
}
.maps {
	/* background-color: #2a2a52d5; */
	background: -webkit-linear-gradient(90deg, #16222a 10%, #3a6073 90%); /* Chrome 10+, Saf5.1+ */
	background: -moz-linear-gradient(90deg, #16222a 10%, #3a6073 90%); /* FF3.6+ */
	background: -ms-linear-gradient(90deg, #16222a 10%, #3a6073 90%); /* IE10 */
	background: -o-linear-gradient(90deg, #16222a 10%, #3a6073 90%); /* Opera 11.10+ */
	background: linear-gradient(90deg, #16222a 10%, #3a6073 90%);
}
a {
	color: #ce606f;
}
svg {
	/* height: auto; */
	height: 490px;
	/*  position: relative;*/
	overflow: hidden;
	max-width: 100%;
}
.text-center {
	text-align: center;
}
.subline {
	color: #768191;
	font-weight: normal;
}
.container {
	left: 40%;
	/* max-width: 740px; */
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.map {
	/* margin-top: 55em;  */
	position: relative;
	left: 0%;
	/* top: 700%; */
	/* bottom: 90%; */
}
.map-markers {
	list-style: none;
	margin: 0;
	padding: 0;
}
.map-marker {
	position: absolute;
}
.map-marker.preactive .map-marker-info {
	display: block;
}
@media screen and (min-width: 770px) {
	.map-marker:hover .map-marker-info {
		display: block;
	}
}
@media (max-width: 769px) {
	.map-marker.active .map-marker-info {
		display: block;
	}
}
.map-marker-ICON {
	display: block;
	width: 60px;
	height: 60px;
	background: url(../images/sensor_marker.png) center;
	background-size: contain;
	/* opacity: 0.9;
	animation: map-marker-ICON-animation 2s infinite; */
}
@keyframes map-marker-ICON-animation {
	0% {
		background-image: url(../images/sensor_marker_dark.png);
	}
	50% {
		background-image: url(../images/sensor_marker.png);
	}
	100% {
		background-image: url(../images/sensor_marker_dark.png);
	}
}
:hover > .map-marker-ICON,
.active > .map-marker-ICON {
	background-image: url(../images/sensor_marker_dark.png) !important;
	/* opacity: 1; */
}
.deactive_ > .map-marker-ICON {
	background-image: url(../images/sensor_marker.png) !important;
	opacity: 0.7;
	animation: none;
}
.map-marker-info {
	display: none;
	position: absolute;
	bottom: 45px;
	right: 45px;
	width: 420px;
	z-index: 9;
}
.map-marker-info.right {
	left: 45px;
	right: auto;
}
.map-marker-info.bottom {
	bottom: -175px;
}
.map-marker-info main {
	position: relative;
	border: 8px solid white;
	border-radius: 1.7em;
	color: #7e7e7e;
	background: linear-gradient(45deg, #f5f1ed 90%, rgba(255, 255, 255, 0.4) 91%, rgba(255, 255, 255, 0.4) 100%);
}
.map-marker-info h2 {
	margin-bottom: 0;
	font-weight: 300;
	font-size: 1.5em;
}
.map-marker-info-inner {
	border-radius: 25px;
	box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
	background: white;
}
.map-marker-info-inner:after {
	border-left: 0.75em solid transparent;
	border-right: 0.75em solid transparent;
	border-top: 1em solid #fff;
	content: '';
	height: 0;
	left: 50%;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	width: 0;
	background: transparent;
	border: none;
}
.animate {
	animation-duration: 1s;
	animation-fill-mode: both;
}
/* 1280 */
@media screen and (max-width: 1499px) {
	.map-marker-ICON {
		width: 40px;
		height: 40px;
	}
	.map-marker-info {
		bottom: 25px;
		right: 25px;
	}
	.map-marker-info.right {
		left: 25px;
	}
}
@media screen and (min-width: 768px) {
	.arror {
		display: none;
	}
}
@media (max-width: 767px) {
	.legend-marker-info,
	.map-marker-info {
		z-index: 20;
		left: 0 !important;
		right: initial !important;
		position: fixed !important;
		top: 60px;
		bottom: auto !important;
		transform: translate(0, 0);
		width: 100%;
		animation: onloadAnimation 0.5s ease-in-out;
	}
	.fadeOut .legend-marker-info,
	.fadeOut .map-marker-info {
		animation: onunloadAnimation 0.6s ease-in-out;
	}
	.legend-marker-info {
		top: 210px;
	}
	.map-marker-info-inner {
		margin: 10px;
		width: calc(100vw - 20px);
	}
	@keyframes onloadAnimation {
		0% {
			opacity: 0;
			transform: translateY(30vh);
		}
		100% {
			opacity: 1;
			transform: translateY(0px);
		}
	}
	@keyframes onunloadAnimation {
		0% {
			opacity: 1;
			transform: translateY(0px);
		}
		99% {
			opacity: 0;
			transform: translateY(30vh);
		}
		100% {
			display: none;
		}
	}
	.map-marker-info main {
		height: 15rem;
		padding-bottom: 1.5rem;
	}
}
@media (max-width: 499px) {
	.legend-marker-info {
		top: 270px;
	}
}
/*
 * Component: Small Box
 * --------------------
 */
.small-box {
	border-radius: 2px;
	position: relative;
	display: block;
	margin-bottom: 20px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small-box > .inner {
	padding: 10px;
}
.small-box > .small-box-footer {
	position: relative;
	text-align: center;
	padding: 3px 0;
	color: #fff;
	color: rgba(255, 255, 255, 0.8);
	display: block;
	z-index: 10;
	background: rgba(0, 0, 0, 0.1);
	text-decoration: none;
}
.small-box > .small-box-footer:hover {
	color: #fff;
	background: rgba(0, 0, 0, 0.15);
}
.small-box h3 {
	font-size: 28px;
	font-weight: bold;
	margin: 0 0 10px 0;
	white-space: nowrap;
	padding: 0;
}
.small-box p {
	font-size: 15px;
}
.small-box p > small {
	display: block;
	color: #f9f9f9;
	font-size: 13px;
	margin-top: 5px;
}
.small-box h3,
.small-box p {
	z-index: 5;
}
.small-box .icon {
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	position: absolute;
	top: -10px;
	right: 10px;
	z-index: 0;
	font-size: 90px;
	color: rgba(0, 0, 0, 0.15);
}
.small-box:hover {
	text-decoration: none;
	color: #f9f9f9;
}
.small-box:hover .icon {
	font-size: 95px;
}
@media (max-width: 767px) {
	.small-box {
		text-align: center;
	}
	.small-box .icon {
		display: none;
	}
	.small-box p {
		font-size: 12px;
	}
}
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) {
	.small-box h3 {
		font-size: 20px;
		font-weight: bold;
		margin: 0 0 10px 0;
		white-space: nowrap;
		padding: 0;
	}
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) {
	.small-box h3 {
		font-size: 18px;
		font-weight: bold;
		margin: 0 0 10px 0;
		white-space: nowrap;
		padding: 0;
	}
}
@media only screen and (max-device-width: 480px) {
	.small-box h3 {
		font-size: 16px;
		font-weight: bold;
		margin: 0 0 10px 0;
		white-space: nowrap;
		padding: 0;
	}
}
/*
 * Component: Box
 * --------------
 */
.box {
	position: relative;
	border-radius: 3px;
	background: #ffffff;
	border-top: 3px solid #d2d6de;
	margin-bottom: 20px;
	width: 100%;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.box.box-primary {
	border-top-color: #3c8dbc;
}
.box.box-info {
	border-top-color: #00c0ef;
}
.box.box-danger {
	border-top-color: #dd4b39;
}
.box.box-warning {
	border-top-color: #f39c12;
}
.box.box-success {
	border-top-color: #00a65a;
}
.box.box-default {
	border-top-color: #d2d6de;
}
.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
	display: none;
}
.box .nav-stacked > li {
	border-bottom: 1px solid #f4f4f4;
	margin: 0;
}
.box .nav-stacked > li:last-of-type {
	border-bottom: none;
}
.box.height-control .box-body {
	max-height: 300px;
	overflow: auto;
}
.box .border-right {
	border-right: 1px solid #f4f4f4;
}
.box .border-left {
	border-left: 1px solid #f4f4f4;
}
.box.box-solid {
	border-top: 0;
}
.box.box-solid > .box-header .btn.btn-default {
	background: transparent;
}
.box.box-solid > .box-header .btn:hover,
.box.box-solid > .box-header a:hover {
	background: rgba(0, 0, 0, 0.1);
}
.box.box-solid.box-default {
	border: 1px solid #d2d6de;
}
.box.box-solid.box-default > .box-header {
	color: #444444;
	background: #d2d6de;
	background-color: #d2d6de;
}
.box.box-solid.box-default > .box-header a,
.box.box-solid.box-default > .box-header .btn {
	color: #444444;
}
.box.box-solid.box-primary {
	border: 1px solid #3c8dbc;
}
.box.box-solid.box-primary > .box-header {
	color: #ffffff;
	background: #3c8dbc;
	background-color: #3c8dbc;
}
.box.box-solid.box-primary > .box-header a,
.box.box-solid.box-primary > .box-header .btn {
	color: #ffffff;
}
.box.box-solid.box-info {
	border: 1px solid #00c0ef;
}
.box.box-solid.box-info > .box-header {
	color: #ffffff;
	background: #00c0ef;
	background-color: #00c0ef;
}
.box.box-solid.box-info > .box-header a,
.box.box-solid.box-info > .box-header .btn {
	color: #ffffff;
}
.box.box-solid.box-danger {
	border: 1px solid #dd4b39;
}
.box.box-solid.box-danger > .box-header {
	color: #ffffff;
	background: #dd4b39;
	background-color: #dd4b39;
}
.box.box-solid.box-danger > .box-header a,
.box.box-solid.box-danger > .box-header .btn {
	color: #ffffff;
}
.box.box-solid.box-warning {
	border: 1px solid #f39c12;
}
.box.box-solid.box-warning > .box-header {
	color: #ffffff;
	background: #f39c12;
	background-color: #f39c12;
}
.box.box-solid.box-warning > .box-header a,
.box.box-solid.box-warning > .box-header .btn {
	color: #ffffff;
}
.box.box-solid.box-success {
	border: 1px solid #00a65a;
}
.box.box-solid.box-success > .box-header {
	color: #ffffff;
	background: #00a65a;
	background-color: #00a65a;
}
.box.box-solid.box-success > .box-header a,
.box.box-solid.box-success > .box-header .btn {
	color: #ffffff;
}
.box.box-solid > .box-header > .box-tools .btn {
	border: 0;
	box-shadow: none;
}
.box.box-solid[class*='bg'] > .box-header {
	color: #fff;
}
.box .box-group > .box {
	margin-bottom: 5px;
}
.box .knob-label {
	text-align: center;
	color: #333;
	font-weight: 100;
	font-size: 12px;
	margin-bottom: 0.3em;
}
.box > .overlay,
.overlay-wrapper > .overlay,
.box > .loading-img,
.overlay-wrapper > .loading-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.box .overlay,
.overlay-wrapper .overlay {
	z-index: 50;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 3px;
}
.box .overlay > .fa,
.overlay-wrapper .overlay > .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -15px;
	color: #000;
	font-size: 30px;
}
.box .overlay.dark,
.overlay-wrapper .overlay.dark {
	background: rgba(0, 0, 0, 0.5);
}
.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
	content: ' ';
	display: table;
}
.box-header:after,
.box-body:after,
.box-footer:after {
	clear: both;
}
.box-header {
	color: #444;
	display: block;
	padding: 10px;
	position: relative;
}
.box-header.with-border {
	border-bottom: 1px solid #f4f4f4;
}
.collapsed-box .box-header.with-border {
	border-bottom: none;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
	display: inline-block;
	font-size: 18px;
	margin: 0;
	line-height: 1;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
	margin-right: 5px;
}
.box-header > .box-tools {
	position: absolute;
	right: 10px;
	top: 5px;
}
.box-header > .box-tools [data-toggle='tooltip'] {
	position: relative;
}
.box-header > .box-tools.pull-right .dropdown-menu {
	right: 0;
	left: auto;
}
.box-header > .box-tools .dropdown-menu > li > a {
	color: #444 !important;
}
.btn-box-tool {
	padding: 5px;
	font-size: 12px;
	background: transparent;
	color: #97a0b3;
}
.open .btn-box-tool,
.btn-box-tool:hover {
	color: #606c84;
}
.btn-box-tool.btn:active {
	box-shadow: none;
}
.box-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	padding: 10px;
}
.no-header .box-body {
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}
.box-body > .table {
	margin-bottom: 0;
}
.box-body .fc {
	margin-top: 5px;
}
.box-body .full-width-chart {
	margin: -19px;
}
.box-body.no-padding .full-width-chart {
	margin: -9px;
}
.box-body .box-pane {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 3px;
}
.box-body .box-pane-right {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 0;
}
.box-footer {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-top: 1px solid #f4f4f4;
	padding: 10px;
	background-color: #ffffff;
}
@keyframes bounce-in {
	0%,
	20%,
	40%,
	60%,
	80%,
	100% {
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}
.animate-bounce-in {
	animation-duration: 0.75s;
	animation-name: bounce-in;
}
@keyframes pop {
	0% {
		transform: scale(0);
	}
	8% {
		opacity: 0.4;
	}
	10% {
		opacity: 0;
		transform: scale(1);
	}
}
.animate-pop {
	animation-duration: 1s;
	animation-name: pop;
}
.readingCol {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: start;
	padding-left: 24px;
	width: 8rem;
}
.IconReadingCol {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: start;
	margin-right: 1px;
	background: transparent;
	width: 8rem;
}
