/***** Allgemeines *****/
html{
	height: 100%;
	min-width: 350px !important;
	background: url(/images/background.jpg) repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-color: black !important;
}

body{
	font-family: Thasadith, sans-serif; 
	display: flex;
	background-color: transparent;
	color: white !important;
	height: auto;
	margin-bottom: 20px;
}

table .text {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 80px;
}

.form-group-funktion select{
	width: auto;
	display: inline;
}
.loader_button{
	position: absolute;
	width: 90px;
	top: 0;
	left: 0;
	margin-left: -13px;
	margin-top: -17px;
	z-index: -1;
	opacity: 0.5;
}
.table td{
	padding: 0.5rem;
}

.fill {
	width: 100%;
		min-height: calc(100% + 26px);
}

input, button{
	background-color: none !important;
	cursor: pointer;
	border-radius: 0;
}

/* Modify Bootstraps Checkbox */
.form-check-input{
	margin-left: 5px !important;
}
.form-check-label{
	padding-left: 1.5rem !important;
}

.form-control:disabled, .form-control[readonly] {
	background-color: transparent !important;
}

input[type=checkbox]
{
	/* Double-sized Checkboxes */
	-ms-transform: scale(1.4); /* IE */
	-moz-transform: scale(1.4); /* FF */
	-webkit-transform: scale(1.4); /* Safari and Chrome */
	-o-transform: scale(1.4); /* Opera */
}
/* Ende Modify Bootstraps Checkbox */

input[type="time"]::-webkit-calendar-picker-indicator{
  filter: invert(100%);
}

button:hover{
	background-color: rgba(255, 255, 255,0.2) !important;
}

a:link {
	text-decoration: none !important;
}

a:visited {
	text-decoration: none !important;
}

a:hover {
	text-decoration: none !important;
}

a:active {
	text-decoration: none !important;
}

label{
	color: #92c020 !important;
	font-weight: bold;
	margin-bottom: .0rem !important;
}
option { 
		background: black !important;
}
select option:disabled{
	color: gray !important;
}
option:checked {
		background: #92c020 !important;
}
select:focus > option:checked { 
		background: #92c020 !important;
}

/* Bootstrap überschreiben */
@media (max-width: 575px) {
		.container-fluid{
				padding-left: 8px;
				padding-right: 8px;
				overflow-x: hidden;
		}
}
/* ENDE Bootstrap überschreiben */
.titel_module{
	position: relative;
	display: block;
	width: 215px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	font-size: 22px;
	line-height: 24px;
	padding-top: 1px;
	padding-bottom: 20px;
	z-index: -1;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.titel_module_start{
	margin-top: 10px;
	float: left;
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	font-size: 22px;
	line-height: 24px;
	padding-top: 1px;
	padding-bottom: 10px;
	z-index: -1;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}


#counter_1{
	background-color: red;
	color: white;
	position: absolute;
	border-radius: 100%;
	padding: 1px 8px 1px 8px;
	margin-left: 30px;
	margin-top: -50px;
	z-index: 1;
	font-weight: bold;
	font-size: 15px;
	display: inline-block;
	vertical-align: center;
	text-align: center;
}
#counter_2{
	background-color: red;
	position: absolute;
	border-radius: 100%;
	padding: 3px 5px 3px 4px;
	margin-left: 440px;
	margin-top: 4px;
	z-index: 1;
	font-weight: bold;
	font-size: 15px;
	display: inline-block;
	vertical-align: center;
	text-align: center;
}

.online{
	float: left;
	width: 100%;
	background-color: #92c020;
}

.offline {
	float: left;
	width: 100%;
	background-color: #FF4500;
}

.anlage_online{
background: rgb(226,242,53);
background: linear-gradient(90deg, rgba(226,242,53,0.25) 0%, rgba(26,121,9,0.7458333675266982) 32%, rgba(30,112,20,0.34807426388524154) 100%);
}
.anlage_offline{
background: rgb(139,75,23);
background: linear-gradient(90deg, rgba(139,75,23,0.28925073447347693) 0%, rgba(180,26,26,0.6337885495995272) 32%, rgba(200,40,40,0.21922272326899506) 100%);
}

.hidden {
	display: none !important;
}

hr{
	margin-top: 5px !important;
	margin-bottom: 10px !important;
	background-color: white;
}

/* Modify Checkbox */
/* The container */
.wrp_checkbox {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-top: 8px;
	cursor: pointer;
	line-height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.wrp_checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	border-color: white;
	border-style: solid;
	border-width: 1px;
	background-color: none;
}

/* On mouse-over, add a grey background color */
.wrp_checkbox:hover input ~ .checkmark {
	background-color: none;
}

/* When the checkbox is checked, add a blue background */
.wrp_checkbox input:checked ~ .checkmark {
	background-color: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.wrp_checkbox input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.wrp_checkbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid #92c020;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Edit Toogle Color ****/
.navbar-toggler-icon {
		background-image: url("/images/burger_menu.png")
}
/***** Backgrounds *****/


/***** Typography *****/
nav .navbar-nav li a{
		color: white;
}
nav .navbar-nav li a:hover{
		color: #92c020 !important;
}
input::placeholder {
	color: gray !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: gray;
}
::-moz-placeholder { /* Firefox 19+ */
	color: gray;
}
:-ms-input-placeholder { /* IE 10+ */
	color: gray;
}
:-moz-placeholder { /* Firefox 18- */
	color: gray;
}
/***** Loader *****/

.loader_overlay{
	display: none;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: 200;
}
.loader_spin{
	width: 150px;
	margin: auto;
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	z-index: 201;
	color: white;
}

/***** Start *****/
#screen_modul{
	display: none;
}

#system_status{
	background-color: gray;
	min-height: 22px;
	font-size: 14px;
	position: fixed;
	padding: 0px 0px;
	left: 0;
	bottom: 0;
	width: 100%;
	color: white;
	border-color: black;
	border-top-style: solid;
	border-width: 1px;
	text-align: center;
	z-index: 9999;
	content: ' ';
	-moz-box-shadow:    inset 0px 2px 8px #000000;
	-webkit-box-shadow: inset 0px 2px 8px #000000;
	box-shadow:         inset 0px 2px 8px #000000;
}

.wrapper_start{
	width: 33.33%;
	float: left;
	margin: 20px 0px 20px 0px;
	cursor: pointer;
	transition: all .2s ease;
}

.icon_start{
	width: 70%; /*or whatever you choose*/
	margin: auto;
	position: relative;
}

.icon_start img {
	 display: block;
	 max-width: 180px; /*actual image width*/
	 height: auto; /* maintain aspect ratio*/
	 margin: auto; /*optional centering of image*/
}

.err_icon{
	width:55px;
	position:absolute;
	bottom:0;
	right:0;
	margin-right:20%;
	margin-bottom:10px;
	z-index:1;
	animation: blinker 2s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}

.wrapper_start:hover {
}
.text_start{
	color: white;
	font-size: 20px;
	width: 100%;
	float: left;
}

@media screen and (max-width : 768px) { /* Mobile */
	.err_icon{
		width: 45px;
		margin-right: 15%;
	}
}

@media screen and (max-width : 470px) { /* Mobile */
	.text_start{
		font-size: 18px;
	}
	.wrapper_start{
		width: 50%;
		float: left;
		margin: 10px 0px;
		cursor: pointer;
		opacity: 1;
	}
	.icon_start{
		width: 60%; /*or whatever you choose*/
		margin: auto;
	}
	.err_icon{
		width: 40px;
		margin-right: 12%;
	}
}

/***** Speicher ****/

.tank_container{
		position: relative;
		width: 130px;
		margin: 0 auto;
		padding-bottom: 40px;
}
.tank_titel{
		width: 100%;
		padding: 5px 0px 0px 0px;
}
.tank{
		position: relative;
		width: 130px;
		height: 250px;
		margin: 0 auto;
		-moz-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		-o-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.img_tank img{
	position: absolute;
	z-index: 101;
	height: 110%;
	width: 110%;
	margin-left: -5%;
	margin-top: -18%;
	-moz-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		-o-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.img_tank_rohr img{
	position: absolute;
	z-index: 99;
	height: 110%;
	width: 110%;
	margin-left: -5%;
	margin-top: -18%;
	-moz-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		-o-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.tank_progress{
	border-radius: 15px;
		width: 130px;
		position: relative; 
		-moz-transform:rotate(180deg);
		-webkit-transform:rotate(180deg);
		-o-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
		z-index: 100 !important;
		-moz-box-shadow:    inset 0 0 10px white;
	 -webkit-box-shadow: inset 0 0 10px white;
	 box-shadow:         inset 0 0 10px white;
}
#tank_progress_red{
	background-color: rgba(204,51,0,0.7);
}
#tank_progress_orange{
	background-color: rgba(255,153,0,0.7);
}
#tank_progress_yellow{
	background-color: rgba(204,204,0,0.7);
}
#tank_progress_green{
	background-color: rgba(0,102,0,0.7);
}

.tank_progress_text{
	display: block;
	position: absolute; 
	width: 170px;
	height: 30px;
	margin-left: 30px;
	margin-top: -105px;
	color: black;
	font-size: 22px;
	-moz-transform:rotate(270deg);
	-webkit-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	z-index: 102;
}
.tank_liter{
		width: 100%;
		float: left;
		padding: 5px 0px;
		text-align: center;
}

/***** Temperaturen *****/

/* unter 0° Violett-Blau */
#under_10 {
background: rgb(50,255,241); /* Old browsers */
background-image: linear-gradient(to right bottom, #00378b, #1b4da7, #2e64c4, #3e7be1, #4e94ff);
}
/* unter 20° grün-gelb*/
#under_20 {
background: rgb(244,237,17); /* Old browsers */
background-image: linear-gradient(to right bottom, #068b00, #54a811, #88c524, #bce238, #f0ff4e);
}
/* unter 45° gelb-orange*/
#under_45 {
background: rgb(240,249,54); /* Old browsers */
background-image: linear-gradient(to right bottom, #f6ff2c, #fbeb17, #ffd801, #ffc400, #ffb100);
}
/* unter 60° orage-rot*/
#under_60 {
background: rgb(255,201,53); /* Old browsers */
background-image: linear-gradient(to right bottom, #ffa600, #ff8c00, #ff6f00, #ff4c00, #ff0000);
}

/* über 60° rot*/
#top_60 {
background: rgb(255,0,0); /* Old browsers */
background-image: linear-gradient(to right bottom, #ff0000, #d50a12, #ac1218, #831719, #5b1717);
}

#tbl_temperaturen tr,td{
		padding: 5px 1%;
		color: white;
		background-color: rgba(0,0,0,0.3);
}

.container_temp { width: 140px; margin: 0 auto; margin-bottom: 10px;}
.de .den, .de .dene, .de .denem, .de .deneme { position: absolute;  left: 50%; top: 50%; }
.de {
		position: relative;
		width: 145px;
		height: 145px;
		border-radius: 100%;
		background-color: transparent;
}
.den {
		position: relative;
		width: 140px;
		height: 140px;
		margin: -70px 0 0 -70px;
		border-radius: 100%;
		box-shadow: inset 0 2px 5px rgba(0, 0, 0, .5);
		position:relative;
}
.dene {
		width: 130px;
		height: 130px;
		margin: -65px 0 0 -65px;
		border-radius: 100%;
		box-shadow: inset 0 2px 2px rgba(255, 255, 255, .4);
		background: black;
}
.denem {
		width: 120px;
		height: 120px;
		margin: -60px 0 0 -60px;
		border-radius: 100%;
		background: black;
		background: -moz-linear-gradient(top, black 0%, gray 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cbd5d6), color-stop(100%, #f2f6f5));
		background: -webkit-linear-gradient(top, black 0%, gray 100%);
}

.deneme {
		padding: 8px 2px 0 5px;
		width: 130px;
		height: 130px;
		text-align: center;
		display: inline-block;
		margin: -65px 0 0px -65px;
		color: white;
		font-size: 38px;
		font-weight: 400;
		text-align: center;
}
.deneme span { /* Bezeichnung */
	position: relative;
	display: block;
	width: 110px;
	font-size: 15px;
	margin-top: -10px;
	margin-left: 5px;
	text-overflow: ellipsis;
	/*white-space: nowrap;*/
	overflow: hidden;
}

/***** Alarme *****/
.wrapper_alarm{
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	border-color: black;
	border-style: solid;
	border-width: 1px;
	position: relative;
	margin: 0 auto;
	content: '';
	min-width: 280px;
	width: 100%;
	height: 60px;
	background-color: rgba(0,0,0,0.5);
	margin-bottom: 18px;
-webkit-box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
-moz-box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
}

.alarm_status{
	float: left;
	text-align: center;
	padding: 5px 0px;
	line-height: 48px;
	width: 50px;
	height: 50px;
	font-weight: bold;
	font-size: 24px;
}

.alarm_text{
	float: left;
	padding: 5px 2px;
	line-height: 24px;
	width: 140px;
	height: 50px;
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

#tbl_alarm tr,td{
		padding: 5px 1%;
		color: white;
		background-color: rgba(0,0,0,0.3);
}

/***** Befehle *****/
#tbl_befehl tr,td{
		padding: 5px 1%;
		color: white;
		background-color: rgba(0,0,0,0.3);
}

.befehl_status{
	float: left;
	text-align: center;
	padding: 5px 5px;
	line-height: 48px;
	width: 60px;
	height: 50px;
	font-weight: bold;
	font-size: 24px;
}

.switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 18px;
}

.switch input {display:none;}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 5px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
}

.wrapper_power{
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	border-color: black;
	border-style: solid;
	border-width: 1px;
	position: relative;
	margin: 0 auto;
	content: '';
	min-width: 280px;
	width: 100%;
	height: 60px;
	background-color: rgba(0,0,0,0.5);
	margin-bottom: 18px;
-webkit-box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
-moz-box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
}
.power_status{
	float: left;
	text-align: center;
	padding: 5px;
	line-height: 48px;
	width: 55px;
	height: 50px;
	font-weight: bold;
	font-size: 24px;
}
.power_text_schaltung{
	float: left;
	padding: 5px;
	line-height: 24px;
	width: 155px;
	height: 60px;
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.power_text_absenkung{
	float: left;
	padding: 5px;
	line-height: 24px;
	width: 215px;
	height: 60px;
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.power {
	float: left;
	cursor: pointer;
}
.power input {
	display: none;
}
.power input + div {
	float: right;
	width: 63px;
	height: 63px;
	margin: -3px -1px 0 0px;
	overflow: hidden;
	background: rgb(120,120,120);
	border-radius: 50%;
	border-style: solid;
	border-color: black;
	border-width: 2px;
	padding: 20px;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	-webkit-filter: drop-shadow(0 4px 6px rgba(150, 150, 150, 0.3));
					filter: drop-shadow(0 4px 6px rgba(150, 150, 150, 0.3));
	-webkit-transform: scale(1);
	transform: scale(1);
}
.power input + div:before {
	content: '';
	width: 4px;
	height: 14px;
	border-radius: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	z-index: 2;
	margin: 0 0 0 -2px;
	top: 9px;
	opacity: 1;
	-webkit-transform: scaleY(1) translate(0, 2px);
					transform: scaleY(1) translate(0, 2px);
	transition: opacity .4s ease .1s, -webkit-transform .9s ease .4s;
	transition: opacity .4s ease .1s, transform .9s ease .4s;
	transition: opacity .4s ease .1s, transform .9s ease .4s, -webkit-transform .9s ease .4s;
}
.power input + div:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 200%;
	height: 200%;
	border-radius: 50%;
	background: #92c020; /* nytic grün */
	-webkit-transform: translate(100%, 100%);
					transform: translate(100%, 100%);
	-webkit-transform-origin: right bottom;
					transform-origin: right bottom;
	transition: -webkit-transform .8s ease;
	transition: transform .8s ease;
	transition: transform .8s ease, -webkit-transform .8s ease;
}
.power input + div svg {
	margin: -6px 0 0 -6px;
	width: 32px;
	height: 32px;
	fill: none;
	display: block;
	stroke: #fff;
	position: relative;
	z-index: 2;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-dasharray: 84;
	stroke-dashoffset: 160;
	-webkit-transform: translate3d(0, 0, 0);
					transform: translate3d(0, 0, 0);
	transition: stroke-dasharray .6s ease 0s, stroke-dashoffset .7s ease .0s;
}
.power input + div:active {
	-webkit-transform: scale(0.96);
					transform: scale(0.96);
}
.power input:checked + div {
	-webkit-filter: drop-shadow(0 4px 6px rgba(146, 192, 32, 0.3));
					filter: drop-shadow(0 4px 6px rgba(146, 192, 32, 0.3));
}
.power input:checked + div svg {
	stroke-dasharray: 120;
	stroke-dashoffset: 133;
	transition: stroke-dasharray 0.6s ease 0.45s, stroke-dashoffset 0.7s cubic-bezier(0.94, -0.1, 0.1, 1.2) 0.2s;
}
.power input:checked + div:before {
	-webkit-transform: scaleY(0) translate(0, 7px);
					transform: scaleY(0) translate(0, 7px);
	transition: opacity .4s ease .0s, -webkit-transform .6s ease .3s;
	transition: opacity .4s ease .0s, transform .6s ease .3s;
	transition: opacity .4s ease .0s, transform .6s ease .3s, -webkit-transform .6s ease .3s;
}
.power input:checked + div:after {
	-webkit-transform: translate(40%, 40%);
					transform: translate(40%, 40%);
}


/***** Zeitprogramme *****/
.wrapper_programm{
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	border-color: black;
	border-style: solid;
	border-width: 1px;
	position: relative;
	margin: 0 auto;
	content: '';
	min-width: 280px;
	width: 100%;
	height: 60px;
	background-color: rgba(0,0,0,0.5);
	margin-bottom: 18px;
-webkit-box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
-moz-box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
box-shadow: 0px 0px 42px -10px rgba(255,255,255,0.5);
}

.programm_text{
	float: left;
	padding: 5px 5px 5px 15px;
	line-height: 24px;
	width: 180px;
	height: 55px;
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.programm_settings{
	float: right;
	padding: 5px 0px;
	width: 50px;
	height: 50px;
}

.programm_log{
	float: right;
	padding: 5px 0px;
	width: 50px;
	height: 50px;
	margin-right: 6px;
}

#screen_timeline{
	margin: 5px 0px;
}

#timeline{
	position: relative;
	padding-top: 15px;
	width: 100%;
	height: 40px;
	background-color: rgba(255,255,255,0.2);
	display: flex;
}
 #timeline_raster{
	position: relative;
	width: 100%;
	height: 20px;
	background-color: rgba(255,255,255,0.2);
	display: flex;
	border-top-style: solid;
	border-color: #92c020;
	border-width: 1px;
	line-height: 20px;
}
#timeline_raster div{
	float:left;
	width:4.16%;
	height:20px;
	text-align: right;
}
.min10_active{
	float: left;
	background-color: #92c020;
	height: 25px;
	width: 1%;
}
.min10_inactiv{
	float: left;
	background-color: #d9534f;
	height: 26px;
	width: 1%;
	z-index: 1;
}

/***** Box ****/
.box {
	opacity: 0;
	min-height: 83px;
	cursor: pointer;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 6px 6px;
	margin: 8px 0px;
	animation-name: fadeIn;
	animation-duration: 0.1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	color: white !important;
	-webkit-box-shadow: 0px 2px 4px 5px rgba(0,0,0,0.16); /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
	-moz-box-shadow:    0px 2px 4px 5px rgba(0,0,0,0.16);  /* Firefox 3.5 - 3.6 */
	box-shadow:         0px 2px 4px 5px rgba(0,0,0,0.16);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.box:hover {
		-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		margin-top: 5px;
		margin-bottom: 5px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

.form-control {
		color: white !important;
		background-image: linear-gradient(gray, rgba(255, 255, 255, 0.3)), linear-gradient(gray, rgba(255, 255, 255, 0.3));
		background-size: 0 1px, 100% 1px;
		background-color: transparent;
		float: none;
		font-weight: 400;
		border-width: 0px;
		border-style: initial;
		border-color: initial;
		border-image: initial;
		background-repeat: no-repeat;
		background-position: left bottom, center calc(100% - 0.75px);
		transition: background 0.3s ease-out;
		border-radius: 0;
		font-size: 16px;
		line-height: 1.42;
		padding: 5px 0;
}

.form-control:focus {
		color: white !important;
		background-image: linear-gradient(#92c020, rgba(255, 255, 255, 0.3)), linear-gradient(#92c020, rgba(255, 255, 255, 0.3));
		background-size: 100% 2px, 100% 1px;
		background-color: transparent;
		box-shadow: none;
		transition-duration: 0.3;
		outline: none;
}

/* Buttons */
.btn-mat {
		border: none;
		color: #fff;
		background-color: #333;
		text-transform: uppercase;
		border-radius: 0.2rem;
		-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
}

.btn-mat:focus, .btn-mat:hover {
		-webkit-box-shadow: 0px 3px 7px 0px rgb2(0,0,0,0.26);
		-moz-box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.26);
		box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.26);
}

.btn-mat:active {
		-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
		box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16);
}
/* Blink Error Icon Screen Anlagen */
@keyframes blinker { to { opacity: 0.5; } }

#footer{
	display: none;
	-moz-box-shadow:    inset 0px 2px 8px #000000;
	-webkit-box-shadow: inset 0px 2px 8px #000000;
	box-shadow:         inset 0px 2px 8px #000000;
}