@supports (-webkit-touch-callout: none) {
	/* CSS specific to iOS devices */
	html * {
		font-family: Arial !important;
	}
	input {
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		appearance: none !important;
		-webkit-user-select: text !important;
	}
}

*,
 ::after,
 ::before {
	box-sizing: border-box;
}


/*
 * Centering the body content
 */

html {
	height: 100%;
}

/* .container {
	margin: 30px auto;
	width: 80%;
} */

.content {
	display: none;
	overflow: hidden;
}

body {
/* 	min-height: 100%; */
	margin-top: 0px;
	margin-bottom: 100px;
	margin: 0;
	padding: 0;
	font-family: DINLight, sans-serif;
	background-color: #ebebeb;
	transition: background-color .5s;
}


/*
 * Profile Navbar
 */

.profile {
	padding: 0;
	border: none;
	background: none;
	font-family: DINLight, sans-serif;
	font-size: 15px;  
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
  font-size: 15px; 
  letter-spacing: 2px;  
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 4px;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown-content a span {
  padding-right: 5px;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/*
 * Formatting the sidenav area
 */

.top_navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  box-shadow: 1px 0 2px rgba(0,0,0,0.125);
  display: flex;
  align-items: center;
  z-index: 1;
}

.top_navbar .logo{
  width: 250px;
  padding: 0 15px;
  margin-top: 1px;
  
/*   font-size: 25px;
  font-weight: 600;
  padding: 0 25px;
  color: #007dc3;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-right: 1px solid #f5f5f5; */
}

.top_navbar .logo span{
  font-weight: 400;
}

.top_navbar .menu{
  width: calc(100% - 250px);
  padding: 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_navbar .hamburger{
  font-size: 25px;
  cursor: pointer;
  color: #303030;
}

.top_navbar .hamburger:hover{
  color: #007dc3;
}

.top_navbar .menu .profile_wrap{
  padding-left: 25px;
}

.top_navbar .menu .profile img{
  width: 25px;
  height: 25px;
}

.top_navbar .menu .profile{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.top_navbar .menu .profile .name{
  margin: 0 15px;
}

.hover_collapse .sidebar{
  width: 70px;
}

.hover_collapse .sidebar ul li a .text{
  display: none;
}

.sidebar{
  position: fixed;
  top: 60px;
  left: 0;
  width: 250px;
  height: 100%;
  background: #303030;
  z-index: 1;
}

.sidebar ul li a{
  display: block;
  padding: 12px 25px;
/*   border-bottom: 1px solid white; */
  color: white;
  transition: all 0.2s ease;
  text-decoration: none;
}

.sidebar ul li a .icon{
  font-size: 18px;
  vertical-align: middle;
  transition: background 0.2s ease;
}

.sidebar .sidebar_inner svg {
  width: 25px;
}

.sidebar ul li a .text{
  margin-left: 10px;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: bold;
}

.sidebar ul li a:hover{
  background: #0e94d4;
  color: #fff;
  text-decoration: none;
}

.click_collapse .sidebar{
/*   transition: all 0.2s ease; */
}

.main_container{
  margin-top: 50px;
  margin-left: 70px;
  padding:35px;
  width: calc(100% - 70px);
}

/* .main_container .content{
  background: #fff;
  padding: 35px;
  margin-bottom: 35px;
  text-align: justify;
} */

.click_collapse .main_container{
  width: calc(100% - 250px);
  margin-left: 250px;
  transition: all 0.2s ease;
}


/*
 * Formatting the header area
 */

* {
	box-sizing: border-box;
}

/* .header_container {
	font-size: 16px;
	background-color: #ffffff;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}

.header {
	margin: 0 auto;
	width: 80%;
	overflow: hidden;
}

.logo {
	margin-top: 12px;
}

.header p {
	margin-top: 0px;
	margin-bottom: 0px;
	color: black;
}

.header a {
	font-family: DINLight, sans-serif;
	font-weight: bold;
	float: left;
	text-align: center;
	padding: 15px;
	text-decoration: none;
	font-size: 16px;
	line-height: 25px;
	min-width: 75px;
}

.header-logo a {
	padding-left: 0px;
}

.header-right a:hover {
	background-color: #ddd;
	color: black;
}

.header-right a.active {
	background-color: #009fe3;
	color: white;
}

.header-right {
	float: right;
} */

.hide {
	display: none !important;
}

/* .header_container .icon {
	display: none;
} */

@media screen and (max-width: 1025px) {
	#myInput {
		display: None;
	}
	
	.profile_wrap {
		display: None;
	}

	.grid-two-columns {
		grid-template-columns: repeat(1, 100%) !important;
		white-space: normal;
	}
	.grid-three-columns {
		grid-template-columns: repeat(1, 100%) !important;
		white-space: normal;
	}
	.grid-four-columns {
		grid-template-columns: repeat(1, 100%) !important;
		white-space: normal;
	}
	.collapsible-group {
		white-space: normal;
	}
	.box-add-statistic {
		height: 100px !important;
	}
	.form-container-title {
		width: 100% !important;
	}
	.form-container {
		width: 100% !important;
	}
/* 	.header a {
		float: none;
		display: block;
		text-align: left;
	}
	.header-logo {
		float: left !important;
	} */
/* 	.menuicon {
		float: left;
		padding-right: 15px;
		width: 35px;
	}
	.logo {
		width: 75%;
		margin-top: 6px;
	}
	.header-right {
		float: none;
		display: none;
		margin-top: 65px;
		margin-bottom: 30px;
	}
	.header-right a {
		border-bottom: 1px solid #eee;
		width: 100%;
	}
	.header_container a {
		text-decoration: none;
		font-size: 17px;
		display: block;
	}
	.header_container a.icon {
		display: block;
		position: absolute;
		right: 10%;
		top: 1px;
		padding-top: 17.5px;
		padding-bottom: 17.5px;
		padding-left: 0px;
	} */
/* 	.baricon {
		height: 33px;
	} */
	.modal-content {
		width: 90% !important;
	}
	.content_container {
		white-space: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
	}
}

#myInput {
    font-family: DINLight, sans-serif;
    background-image: url(/static/icons/search_grey.svg);
    background-position: 10px 6px;
    background-repeat: no-repeat;
    background-size: 15px;
    padding: 3px 3px 3px 35px;
    border: 1px solid #ddd;
    float: right;
    border-radius: 14px;
    font-size: 16px;
}

/* header {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #FFF;
  height: 90px;
  width: 100%;
  margin-bottom: 25px;
  z-index: 10;
}

header .logo {
  margin: 0;
  margin-top: 15px;
  float: left;
}

.logo {
  height: 25px;
  position: relative;
  top: 18px;
  left: 0px;
} */

ul {
	display: block;
	padding-inline-start: 0px;
}

h1 {
	display: block;
	font-family: DINLight, sans-serif;
	font-size: 1.5em;
	margin-top: 0.67em;
	margin-bottom: 0.67em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

.container h1 {
	margin-top: 0px !important;
}

.form-container-title h1 {
	margin-top: 0.67em !important;
}

h2 {
	display: block;
	font-size: 1.2em;
	margin-top: 0.67em;
	margin-bottom: 0.67em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h4 {
	display: block;
	font-size: 1.0em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h6 {
	display: inline;
	font-size: 1.0em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

.titelicon {
	vertical-align: middle !important;
	height: 25px;
}

img.titelicon {
	padding-top: 7px;
	padding-right: 7px;
}

.menuicon {
	height: 1.5em;
}

.versionicon {
	width: 18px;
	height: 18px;
	margin-right: 5px;
	vertical-align: middle;
}


/* /*
.menu {
  font-family:'DINBold';
  float: right;
  font-size: 16px;
  font-weight: 100;
  text-align: center;
  letter-spacing: -1px;
  color: #999;
} */


/* .menu li {
  display: inline;
}
.menu li + li {
  margin-left: 35px;
}
.menu li a {
  color: #444;
  text-decoration: none;
} */

*/ .icon-bar {
	width: 90%;
	overflow: hide;
	margin: 0 auto;
}

.icon-bar a {
	padding: 15px;
	width: 90%;
	text-align: center;
	transition: all 0.3s ease;
}


/*
 * Formatting the Alert / Message Box below the Header
 */

.msg-success {
	margin-top: 15px;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(76, 175, 80, 0.7);
	color: white;
}

.msg-warning {
	margin-top: 15px;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(255, 165, 0, 0.7);
	color: white;
}

.msg-error {
	margin-top: 15px;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(230, 12, 48, 0.7);
	color: white;
}

.msg-information {
	margin-top: 15px;
	padding: 15px;
	border-radius: 3px;
	background-color: rgb(0, 159, 227);
	color: white;
}

.msgclosebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 18px;
	cursor: pointer;
	transition: 0.3s;
}

.msgclosebtn:hover {
	color: black;
}


/*
font-family: DINLight, sans-serif;
border: 2px solid transparent;
background: #3498DB;
color: #ffffff;
font-size: 16px;
line-height: 25px;
padding: 10px 0;
text-decoration: none;
text-shadow: none;
border-radius: 3px;
box-shadow: none;
transition: 0.25s;
display: block;
width: 250px;
margin: 10px auto;
}
 */


/*
 * Formatting the footer area
 */

.footer {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
	text-align: center;
	color: #666 !important;
/* 	z-index: 1; */
}

.footer_container {
	margin: 0 auto;
	font-family: DINLight, sans-serif;
	font-size: 16px;
}

.footer_copyright {
	float: left;
	margin-left: 0;
	margin-top: 11px;
}

.footer_version {
	float: right;
	margin-right: 0;
	margin-top: 11px;
}

.login-background {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(/static/img/background-login.png) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	display: table;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

div.login {
	margin: auto;
	width: 300px;
	text-align: center;
	background-color: #FFF;
	padding: 20px;
	border-radius: 2px;
	text-align: center;
}

div.login-footer {
	margin: 0px auto;
	width: 300px;
	text-align: center;
	padding: 10px;
	text-align: center;
	color: white;
	/*   background-color: #acacac;
  border: 2px solid transparent;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; */
}

.login-title {
	margin-bottom: 25px;
	text-align: center;
	width: 100%;
}

.logininputfile {
	font-family: DINLight, sans-serif;
	text-align: center;
	margin-top: 10px;
	background-color: #ECF0F1;
	border: 2px solid transparent;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 200;
	height: 50px;
	width: 250px;
	transition: border .5s;
}

.logininputfile:focus {
	border: 1px solid #3498DB;
	box-shadow: none;
}

.button_login {
	font-family: DINLight, sans-serif;
	border: 2px solid transparent;
	background: #3498DB;
	color: #ffffff;
	font-size: 16px;
	line-height: 25px;
	padding: 10px 0;
	text-decoration: none;
	text-shadow: none;
	border-radius: 3px;
	box-shadow: none;
	transition: 0.25s;
	display: block;
	width: 250px;
	margin: 10px auto;
}

.button_login:hover {
	background-color: #0c74a1;
}

div.sensors {
	margin: auto;
	padding-bottom: 150px;
}

div.users {
	margin: auto;
	padding-bottom: 150px;
}

div.devices {
	margin: auto;
	padding-bottom: 150px;
}

div.customers {
	margin: auto;
	padding-bottom: 150px;
}

div.settings {
	margin: auto;
	padding-bottom: 150px;
}

div.statistics {
	padding-bottom: 150px;
}

div.statistics_guide {
	padding-bottom: 150px;
}

.statistics_guide .inputfile {
	width: 50%;
}


/* Preloader */

#loading {
	visibility: hidden;
	animation: 0.25s fadeIn;
	animation-fill-mode: forwards;
	display: block;
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	padding-bottom: 100px;
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}

#loading-push {
	display: none;
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	padding-bottom: 100px;
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}

@keyframes fadeIn {
	99% {
		visibility: hidden;
	}
	100% {
		visibility: visible;
	}
}

#loading-container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

#loading-span {
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	display: block;
	text-align: center;
	color: white;
	font-size: 20px;
}

.lds-roller {
	display: block;
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
}

.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}

.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: white;
	margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}

.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}

.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}

.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}

.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}

.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}

.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}

.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}

@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*
 * Grids
 */

.grid-two-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.grid-three-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.grid-four-columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}


/*
 * Dashboard Blocks
 */

div.dashboard {
	padding-bottom: 150px;
}

.small-box {
	border-radius: .25rem;
	box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
	display: block;
	position: relative;
	text-align: center;
	color: #fff !important;
}

.small-box>.small-box-footer {
	background-color: rgba(0, 0, 0, .1);
	color: rgba(255, 255, 255, .8);
	display: block;
	padding: 3px 0;
	position: relative;
	text-align: center;
	text-decoration: none;
	/*     z-index: 10; */
}

.small-box .icon {
	color: rgba(0, 0, 0, .15);
/* 	z-index: 0; */
}

.small-box>.inner {
	padding: 10px;
	text-align: left;
}

.small-box .icon>i {
	font-size: 90px;
	position: absolute;
	right: 15px;
	top: 15px;
	transition: transform .3s linear;
}

.small-box h3 {
	font-size: 2.2rem;
	font-weight: 700;
	margin: 0 0 10px;
	padding: 0;
	white-space: nowrap;
}

.small-box h3,
.small-box p {
/* 	z-index: 5; */
}

.info-box {
	box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
	border-radius: .25rem;
	background-color: #fff;
	display: -ms-flexbox;
	display: flex;
	/* 	min-height: 112px; */
	position: relative;
	width: 100%;
	padding: .5rem;
}

.icon-box {
	border-radius: .25rem;
	/* background-color: red; */
	height: 70px;
}

.sensor-dashboard-tile .info-box {}

.info-box-content {
	width: 100% !important;
}

.sensor-dashboard-tile .info-box-content {
	padding-left: 10px;
	overflow: hidden;
}

.sensor-dashboard-tile .info-box-text {
	white-space: nowrap;
	display: table;
	width: 100%;
	table-layout: fixed;
	font-weight: 700;
}

.sensor-dashboard-tile .info-box-value {
	white-space: nowrap;
	display: table;
	width: 100%;
	table-layout: fixed;
}

.device-dashboard-tile .info-box-content {
	width: 100% !important;
}

.device-dashboard-tile .info-box {
	min-height: 258px;
	padding: .5rem;
}

.device-dashboard-data {
	padding: 10px;
	padding-bottom: 40px;
}

.device-dashboard-title h2 {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 0px;
	line-height: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.info-box .info-box-icon img {
	border-radius: .25rem;
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.875rem;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	width: 70px;
	filter: brightness(0) invert(1);
	height: 1.3em;
	padding-top: 10px;
	-ms-transform: translateY(22%);
	transform: translateY(22%);
}

.device-dashboard-statusbuttons {
	padding-bottom: 10px;
}

.device-dashboard-statusbuttons button {
	margin-right: 5px;
}

.info-box .info-box-number {
	display: block;
	margin-top: .2rem;
	font-weight: 700;
}

.device-dashboard-icon {
	vertical-align: middle !important;
	height: 25px;
}

img.device-dashboard-icon {
	padding-right: 7px;
	margin-top: -4px;
	/* 	filter: brightness(0) invert(1); */
}

.small-box-footer {
	background-color: rgba(0, 0, 0, .2);
	color: rgba(255, 255, 255, .8);
	display: block;
	padding: 3px 0;
	position: absolute;
	text-align: center;
	text-decoration: none;
	bottom: 0;
	left: 0;
	width: 100%;
}

.info-box .progress {
	background-color: rgba(0, 0, 0, .125);
	height: 2px;
	margin: 5px 0;
}

.progress {
	box-shadow: none;
	border-radius: 1px;
}

.progress {
	display: -ms-flexbox;
	display: flex;
	height: 1rem;
	overflow: hidden;
	line-height: 0;
	font-size: .75rem;
	background-color: #e9ecef;
	border-radius: .25rem;
	box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, .1);
}

.info-box .progress .progress-bar {
	background-color: black;
}

.bg-info,
.bg-info>a {
	color: black!important;
}

.elevation-1 {
	/*     box-shadow: 0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24)!important; */
}

.bg-info {
	background-color: #fff;
}

.bg-success {
	background-color: #28a745;
}

.bg-warning {
	background-color: #ffc107;
}

.bg-danger {
	background-color: #dc3545;
}

.dashboard .button_batterystatus {
	position: absolute;
}

.sensors .button_batterystatus {}

.button_batterystatus {
	background-color: transparent;
	cursor: pointer;
	display: inline-block;
	height: 20px;
	width: 20px;
	padding: 0px 0px;
	border: none;
	border-radius: 0px;
	top: 10px;
	right: 14px;
}

.dashboard .button_rssisignal {
	position: absolute;
}

.sensors .button_rssisignal {}

.button_rssisignal {
	background-color: transparent;
	cursor: pointer;
	display: inline-block;
	height: 20px;
	width: 20px;
	padding: 0px 0px;
	border: none;
	border-radius: 0px;
	top: 38px;
	right: 14px;
}


/*
 * Stats Blocks
 */

.box-add-statistic {
	background: url(/static/icons/plus.svg) no-repeat center center;
	background-color: #ebebeb;
	background-size: 50px;
	cursor: pointer;
	height: 490px;
	width: 100%;
	float: left;
	border-radius: 4px;
	border: 1px solid #666;
	opacity: 0.2;
	display: block
}

.box-add-statistic:hover {
	opacity: 1.0;
}

.box {
	/*   border: 3px solid #666;
  background-color: #ddd;
  border-radius: .5em;
  padding: 10px; */
	cursor: move;
}

.box.over {
	border: 3px dotted #666;
}

[draggable] {
	user-select: none;
}


/* Float four columns side by side */

.col-md-6 {
	float: left;
	width: 100%;
	border-radius: .25rem;
	box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
}


/* Clear floats after the columns */

.row:after {
	content: "";
	display: table;
	clear: both;
}

.chart-header {
	padding: 10px 16px;
	background-color: #ddd;
	/* 	border-top-left-radius: 4px;
	border-top-right-radius: 4px;	 */
	color: black;
}


/* .chart-box {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
} */

.js-plotly-plot .plotly .modebar {
	right: 5px !important;
}

.plotlyjsicon {
	display: none;
}


/* Style the counter cards */

.chart {
	text-align: center;
	background-color: #FFFFFF;
	width: 100%;
	height: 450px;
	float: left;
	overflow: hidden;
	/*   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1); */
	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: .25rem;
}

.chart_delete {
	margin-left: 90%;
	min-width: 50px;
	height: 450px;
	background: #FFFFFF;
}

div.sysinfo {
	margin: auto;
}

@font-face {
	font-family: 'DINLight';
	src: url('/static/fonts/DINLight.ttf')
}

@font-face {
	font-family: 'DINBold';
	src: url('/static/fonts/DINBold.ttf')
}

/* Table Pageination  */

/* .pagination {
	display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pagination a {
	color: black;
    background-color: white;
    float: left;
    padding: 4px 8px;
    text-decoration: none;
    transition: background-color .3s;
    font-size: 16px;
    margin: 5px;
    border-radius: 4px;
}

.pagination a.active {
  background-color: #009fe3;
  color: white;
}

.pagination a:hover:not(.active) {background-color: #ddd;} */

/* Table Sorting */

/* div.tableWrapper table th {
    cursor: pointer;
}
div.tableWrapper table th.active {
    background: #C4C4C4;
}
div.tableWrapper table th.active.asc::before,
div.tableWrapper table th.active.desc::before {
    content: '\25B6';
    transform: rotate(-90deg);
    display: inline-block;
    margin: 0 8px;
}
div.tableWrapper table th.active.desc::before {
    transform: rotate(90deg);
} */

/* Table Styling*/

.table_container {
	white-space: nowrap;
	overflow-x: scroll;
	overflow-y: hidden;
}

.settings .table_container {
	overflow-x: visible;
}

/* thead {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-o-user-select: none;
	unselectable="on";
	onselectstart="return false";
	onmousedown="return false";
	background-color: #ddd;
	border: 1px solid #4f0ce6;
	transition: 0.3s;
} */

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

/* thead th {
	border-bottom-color: currentColor !important;
}

table td,
table th {
	border: 1px solid #ddd;
}

table td,
table th {
	border: 1px solid #ddd;
	padding: 15px;
	text-align: left;
} */

table th {
	text-align: left;
}

#healthmodal table td, table th {
    padding: 5px !important;
}

/* table tr:nth-child(even) {
	background-color: #f2f2f2;
}

table tr:hover {
	background-color: #ddd;
} */

#healthmodal table tr:nth-child(even) {
	background-color: #f2f2f2;
}

#healthmodal table tr:hover {
	background-color: transparent !important;
}

/* table#2colom {
	width: 100%;
	border: 1px solid #ddd;
}

table td {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
} */

.table_text_limit_150px {
    width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.table_text_limit_settings {
    width: 132px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sysinfo tr td:first-child {
	width: 9em;
	min-width: 9em;
	max-width: 9em;
	word-break: break-all;
}

.tableicon {
	background-color: #ddd;
	border-radius: 4px;
	border: none;
	color: white;
	padding: 7px 7px;
	text-align: center;
	text-decoration: none;
	width: 30px;
	height: 30px;
	margin-top: -5px;
	float: left;
	margin-right: 5px;
}


/*
 * Info Sprechblase / Bubble über Info Icon
 */

.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
	visibility: hidden;
	/* Position the tooltip */
	position: absolute;
/* 	z-index: 5; */
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

.tooltip iframe {
	border-width: 0px;
	border-style: inset;
	border-color: initial;
	border-image: initial;
	width: 400px;
	height: 300px;
	border: 0px solid #888;
	border-radius: 4px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.targetinfo-header {
	padding: 2px 8px;
	background-color: #009fe3;
	border-radius: 4px;
	color: white;
}

.targetinfo {
	font-family: DINLight, sans-serif;
	font-size: 12px;
	background-color: #ebebeb;
	text-align: left;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
}


/*
 * ....
 */

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	font-size: 16px;
}

::-moz-placeholder {
	/* Firefox 19+ */
	font-size: 16px;
}

:-ms-input-placeholder {
	/* IE 10+ */
	font-size: 16px;
}

:-moz-placeholder {
	/* Firefox 18- */
	font-size: 16px;
}

.button_graph_delete {
	background: url(/static/icons/trash-alt_white.svg) no-repeat center center;
	background-color: #e60c30;
	background-size: 12px;
	cursor: pointer;
	display: inline-block;
	height: 28px;
	width: 28px;
	float: right;
	margin-top: -5px;
	margin-right: -10px;
	margin-left: 5px;
	border: none;
	border-radius: 4px;
}

.button_graph_delete:hover {
	background-color: #a2041e;
}

.button_graph_csv {
	background: url(/static/icons/file-csv_white.svg) no-repeat center center;
	background-color: #acacac;
	/* Grey */
	background-size: 12px;
	cursor: pointer;
	display: inline-block;
	height: 28px;
	width: 28px;
	float: right;
	margin-top: -5px;
	border: none;
	border-radius: 4px;
}

.button_graph_csv:hover {
	background-color: #808080;
}

.button_graph_grey {
	background: url(/static/icons/wrench_white.svg) no-repeat center center;
	background-color: #acacac;
	/* Grey */
	background-size: 12px;
	cursor: pointer;
	display: inline-block;
	height: 30px;
	width: 30px;
	padding-bottom: 10px 10px;
	float: right;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	border: none;
	border-radius: 4px;
}

.button_graph_grey:hover {
	background-color: #808080;
}

.button_guide_on {
	font-family: DINLight, sans-serif;
	background-color: #4CAF50;
	/* Green */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_guide_done {
	font-family: DINLight, sans-serif;
	background-color: #95d097;
	/* Green 70%*/
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_guide_off {
	font-family: DINLight, sans-serif;
	background-color: #acacac;
	/* Grey */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_blestatus {
	font-family: DINLight, sans-serif;
	border-radius: 4px;
	border: none;
	margin: 0px 0px;
	color: white;
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	float: left;
	min-width: 50px;
	background-color: rgb(192, 192, 192);
}

.button_devicestatus {
	font-family: DINLight, sans-serif;
	border-radius: 4px;
	border: none;
	margin: 0px 0px;
	color: white;
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	float: left;
	min-width: 50px;
}

.button_tempstatus {
	font-family: DINLight, sans-serif;
	border-radius: 4px;
	border: none;
	margin: 0px 0px;
	color: white;
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	float: left;
}

.button_health {
	font-family: DINLight, sans-serif;
	border-radius: 4px;
	border: none;
	margin: 0px 0px;
	color: white;
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	float: left;
}

.button_userstatus {
	font-family: DINLight, sans-serif;
	border-radius: 4px;
	border: none;
	margin: 0px 0px;
	color: white;
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	float: left;
}

.button_add {
	font-family: DINLight, sans-serif;
	background-color: #4CAF50;
	/* Green */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_add:hover {
	background-color: #3e8e41;
}

.button_guide_green {
	font-family: DINLight, sans-serif;
	background-color: #4CAF50;
	/* Green */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: center;
}

.button_guide_green:hover {
	background-color: #3e8e41;
}

.buttonform-float {
	display: inline-block;
	float: center;
}

.button_guide_grey {
	font-family: DINLight, sans-serif;
	background-color: #acacac;
	/* Grey */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: center;
}

.button_guide_grey:hover {
	background-color: #808080;
}

.button_play {
	background: url(/static/icons/play_white.svg) no-repeat center center;
	background-color: #4CAF50;
	/* Green */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_play:hover {
	background-color: #3e8e41;
}

.button_edit {
	background: url(/static/icons/wrench_white.svg) no-repeat center center;
	background-color: #acacac; /* Grey */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_edit:hover {
	background-color: #808080;
}

.button_download {
	background: url(/static/icons/download_white.svg) no-repeat center center;
	background-color: #acacac; /* Grey */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_download:hover {
	background-color: #808080;
}

.button_database {
	background: url(/static/icons/database_white.svg) no-repeat center center;
	background-color: #4CAF50;
	/* Green */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_database:hover {
	background-color: #3e8e41;
}

.button_info {
	background: url(/static/icons/info_white.svg) no-repeat center center;
	background-color: #4CAF50;
	/* Green */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_info:hover {
	background-color: #3e8e41;
}

.button_plus {
	background: url(/static/icons/plus_white.svg) no-repeat center center;
	background-color: #4CAF50;
	/* Green */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_plus:hover {
	background-color: #3e8e41;
}

.button_grey {
	font-family: DINLight, sans-serif;
	background-color: #acacac;
	/* Grey */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_grey:hover {
	background-color: #808080;
}

.button_refresh {
	background: url(/static/icons/redo-alt_white.svg) no-repeat center center;
	background-color: #009fe3;
	/* Blue */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_refresh:hover {
	background-color: #0c74a1;
}

.button_red {
	font-family: DINLight, sans-serif;
	background-color: #e60c30;
	/* Red */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_red:hover {
	background-color: #a2041e;
}

.button_delete {
	background: url(/static/icons/trash-alt_white.svg) no-repeat center center;
	background-color: #e60c30;
	/* Red */
	background-size: 15px;
	cursor: pointer;
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px 10px;
	float: left;
	margin: 2px 2px;
	border: none;
	border-radius: 4px;
}

.button_delete:hover {
	background-color: #a2041e;
}

.button_blue {
	font-family: DINLight, sans-serif;
	background-color: #009fe3;
	/* VOCOM-Blue */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_blue:hover {
	background-color: #0c74a1;
}

.button_logout {
	font-family: DINLight, sans-serif;
	background-color: #acacac;
	/* Grey */
	border-radius: 4px;
	border: none;
	margin: 2px 2px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
}

.modal .servicestatus {
	margin: 0px 0px !important;
}

.sensors .servicestatus2 {
	margin-top: 12px !important;
	margin-bottom: 12px !important;
	margin-right: 12px !important;
}

.servicestatus-text {
	margin-left: 14px !important;
	font-family: DINLight, sans-serif;
	font-size: 14px;
	font-weight: 200;
	text-decoration: none;
	margin-top: -2px;
	display: block;
}

.servicestatus-field .servicestatus-row {
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	padding-bottom: 10px;
}


/* Create two equal columns that floats next to each other */

.servicestatus-column {
	float: left;
	width: 40%;
}


/* Clear floats after the columns */

.servicestatus-row:after {
	content: "";
	display: table;
	clear: both;
}

.servicestatus {
	margin: 8px 0px;
	height: 1.2em;
	width: 1.2em;
	border-radius: 50%;
	border: none;
	display: inline;
/* 	z-index: 1; */
	float: left;
	animation-name: flash;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	//Firefox 1+
	-webkit-animation-name: flash;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	//Safari 3-4
	-moz-animation-name: flash;
	-moz-animation-duration: 2s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
}

.servicestatus2 {
	margin: 8px 0px;
	height: 1.2em;
	width: 1.2em;
	border-radius: 50%;
	border: none;
	display: inline;
/* 	z-index: 1; */
	float: left;
	animation-name: flash;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	//Firefox 1+
	-webkit-animation-name: flash;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	//Safari 3-4
	-moz-animation-name: flash;
	-moz-animation-duration: 2s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
}

@keyframes flash {
	0% {
		opacity: 1.0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1.0;
	}
}

//Firefox 1+
@-webkit-keyframes flash {
	0% {
		opacity: 1.0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1.0;
	}
}

//Safari 3-4
@-moz-keyframes flash {
	0% {
		opacity: 1.0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1.0;
	}
}

.form-buttons {
	margin-top: 15px;
	margin-left: 5px;
	float: left;
	margin-bottom: 75px;
	width: 100%;
}

.help-block {
	margin-block-start: -0.5em;
	margin-block-end: 0.5em;
	color: red;
}

.inputfile {
	font-family: DINLight, sans-serif;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 10px;
	background-color: #ECF0F1;
	border: 1px solid #888;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 200;
	padding-left: 5px;
	padding: 10px;
	width: 100%;
	transition: border .5s;
}

.inputfile:focus {
	border: 1px solid #3498DB;
	box-shadow: none;
}

.inputfileid {
	font-family: DINLight, sans-serif;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 10px;
	background-color: #ECF0F1;
	border: 1px solid #888;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 200;
	padding-left: 5px;
	padding: 10px;
	width: 60px;
	transition: border .5s;
}

.inputfileid:focus {
	border: 1px solid #3498DB;
	box-shadow: none;
}

.inputfile_update {
	font-family: DINLight, sans-serif;
	text-align: left;
	margin-top: 18px;
	margin-bottom: 18px;
	background-color: #ECF0F1;
	border: 1px solid #888;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 200;
	padding-left: 5px;
	padding: 10px;
	width: 200px;
	transition: border .5s;
}

.inputfile_update:focus {
	border: 1px solid #3498DB;
	box-shadow: none;
}

.inputfile_none {
	font-family: DINLight, sans-serif;
	text-align: left;
	background: transparent;
	font-size: 16px;
	font-weight: 200;
	width: 100%;
	border: none;
}

.inputfile_services {
	font-family: DINLight, sans-serif;
	text-align: left;
	background: transparent;
	font-size: 16px;
	font-weight: 200;
	border: none;
}


/* The Modal (background) */

.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	padding-bottom: 100px;
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}


/* Modal Content */

.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 0px solid #888;
	border-radius: 4px;
	width: 40%;
	min-width: 350px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}


/* Add Animation */

@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0
	}
	to {
		top: 0;
		opacity: 1
	}
}


/* The Close Button */

.close {
	float: right;
}

.close-input {
	border: none;
	background: none;
	font-size: 28px;
	font-weight: bold;
	font-family: DINLight, sans-serif;
	color: white;
}

.close-input:hover,
.close-input:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	padding: 2px 16px;
	background-color: #5cb85c;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	/* 	border-radius: 4px; */
	color: white;
}

.modal-body {
	padding: 2px 16px;
}

.modal-footer {
	padding: 2px 16px;
	background-color: #5cb85c;
	color: white;
}

.collapsible-group {
	margin-top: 20px;
}

.collapsible {
	font-family: DINLight, sans-serif;
	font-size: 16px;
	text-decoration: none;
	border-radius: 4px;
	margin: 2px 2px;
	background-color: #acacac;
	color: white;
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	border: 1px solid #ddd;
	padding: 10px 16px;
}

.collapsible:after {
	content: '\002B';
	color: white;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.settings .collapsible {
	margin-bottom: 10px;
	width: 100%;
}

.settings .content {
    margin-bottom: 10px;
    margin-left: 10px;
	margin-right: 10px;
}


/* Service Status*/

.green {
	color: green
}

.grey {
	color: grey
}

.red {
	color: red
}


/*
 * Settings Boxes
 */

.block {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	color: black;
	/* min-height: 195px;
	width:32.3%;
	min-width: 375px;
    margin-right:1%;
	margin-bottom:1%; */
	background: #ddd;
	border-radius: 4px;
}

.block-inside {
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}

.setting_buttons {
	margin-top: 15px;
	margin-bottom: 15px;
	box-sizing: border-box;
	float: left;
	width: 100%;
}

.button_settings_red {
	font-family: DINLight, sans-serif;
	background-color: #e60c30;
	/* Red */
	border-radius: 4px;
	border: none;
	margin-right: 4px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_settings_red:hover {
	background-color: #a2041e;
}

.button_settings_green {
	font-family: DINLight, sans-serif;
	background-color: #4CAF50;
	/* Green */
	border-radius: 4px;
	border: none;
	margin-right: 4px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_settings_green:hover {
	background-color: #3e8e41;
}

.button_settings_blue-home {
	font-family: DINLight, sans-serif;
	background-color: #009fe3;
	/* VOCOM-Blue */
	border-radius: 4px;
	border: none;
	margin-right: 4px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: white;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	float: left;
}

.button_settings_blue-home:hover {
	background-color: #0c74a1;
}