/*
 * Copyright 2016 Google Inc.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
* {
	box-sizing: border-box;
}

html, body {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	font-family: 'Helvetica', 'Verdana', sans-serif;
	font-weight: 400;
	font-display: optional;
	color: #444;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


html {
	overflow: hidden;
}

body {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	background: #ececec;
}

.header {
	width: 100%;
	height: 56px;
/* 	color: #FFF; */
color: #444;
/* 	background: #13437b; */
background: #fff;
	position: fixed;
	font-size: 20px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px
		rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2);
	padding: 16px 16px 0 16px;
	will-change: transform;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1)
		0.1s;
	transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
	transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
	transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s,
		-webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
	z-index: 1000;
	
	
}

.header .headerButton {
	width: 24px;
	height: 24px;
	margin-right: 16px;
	text-indent: -30000px;
	overflow: hidden;
	opacity: 0.54;
	-webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
	transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
	border: none;
	outline: none;
	cursor: pointer;
	color: black;
}

.header #butRefresh {
	border: 0px;
	width: 24px;
	height: 24px;
	margin-right: 16px;
}

.header #butRefresh:first-of-type{
    background:transparent;
    color: black;
}

.header #butCity {
	background: url(/images/ic_add_white_24px.svg) center center no-repeat;
}

.header #butSettings {
	border: 0px;
	width: 24px;
	height: 24px;
	margin-right: 16px;
}

.header #butSettings:last-of-type {
    background:transparent;
    color: black;
}

.header__title {
	font-weight: 400;
	font-size: 20px;
	margin: 0;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.title {
	margin: -26px -16px 0px;
	/* background: rgba(100,136,162,0.3) !important; */
	
	background: rgba(100,136,162,0.6);
    background: -moz-radial-gradient(center, circle cover, rgba(100,136,162,0.6) 0%, rgba(100,136,162,0.6) 0%, rgba(255,255,255,0.0) 105%, rgba(255,255,255,0.0) 105%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(100,136,162,0.9)), color-stop(0%, rgba(100,136,162,0.9)), color-stop(80%, rgba(255,255,255,0.0)), color-stop(100%, rgba(255,255,255,0.0)));
    background: -webkit-radial-gradient(center, circle cover, rgba(100,136,162,0.6) 0%, rgba(100,136,162,0.6) 0%, rgba(255,255,255,0.0) 105%, rgba(255,255,255,0.0) 105%);
    background: -o-radial-gradient(center, circle cover, rgba(100,136,162,0.6) 0%, rgba(100,136,162,0.6) 0%, rgba(255,255,255,0.0) 105%, rgba(255,255,255,0.0) 105%);
    background: -ms-radial-gradient(center, circle cover, rgba(100,136,162,0.6) 0%, rgba(100,136,162,0.6) 0%, rgba(255,255,255,0.0) 105%, rgba(255,255,255,0.0) 105%);
    background: radial-gradient(circle at center, rgba(100,136,162,0.6) 0%, rgba(100,136,162,0.6) 0%, rgba(255,255,255,0.0) 105%, rgba(255,255,255,0.0) 105%);
}

.title .location {
	margin-left: 17px;
	text-align: center;
}

.title .description {
	margin-left: 17px;
	padding-bottom: 5px;
	text-align: center;
}

.title .openinghours {
	background: #fff;
	text-align: center;
	font-size: 0.8em;
	font-weight: bold;
	padding-top: 5px;
}

.loader {
	left: 50%;
	top: 50%;
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loader #spinner {
	box-sizing: border-box;
	stroke: #673AB7;
	stroke-width: 3px;
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite,
		rotate 1.6s linear infinite;
	animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s
		linear infinite;
}

@
-webkit-keyframes rotate {from { -webkit-transform:rotate(0);
	transform: rotate(0);
}

to {
	-webkit-transform: rotate(450deg);
	transform: rotate(450deg);
}

}
@
keyframes rotate {from { -webkit-transform:rotate(0);
	transform: rotate(0);
}

to {
	-webkit-transform: rotate(450deg);
	transform: rotate(450deg);
}

}
@
-webkit-keyframes line { 0% {
	stroke-dasharray: 2, 85.964;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

50
%
{
stroke-dasharray
:
65.973
,
21.9911;
stroke-dashoffset
:
0;
}
100
%
{
stroke-dasharray
:
2
,
85.964;
stroke-dashoffset
:
-65.973;
-webkit-transform
:
rotate(
90deg
);
transform
:
rotate(
90deg
);
}
}
@
keyframes line { 0% {
	stroke-dasharray: 2, 85.964;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

50
%
{
stroke-dasharray
:
65.973
,
21.9911;
stroke-dashoffset
:
0;
}
100
%
{
stroke-dasharray
:
2
,
85.964;
stroke-dashoffset
:
-65.973;
-webkit-transform
:
rotate(
90deg
);
transform
:
rotate(
90deg
);
}
}
.main {
/* 	padding-top: 60px; */
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.settings-dialog-container {
	background: rgba(0, 0, 0, 0.57);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
	-webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
	transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
}

.settings-dialog-container--visible {
	opacity: 1;
	pointer-events: auto;
}

.requestPushNotificationPermissionDialog--visible {
	opacity: 1!important;
}

.requestPushNotificationPermissionDialog {
	padding-top: 10px;
	padding-left: 15px;
	opacity: 0;
	will-change: opacity;
}

#areaPatchMinutes, #areaManualPatchMinutes {
	width: 45px !important;
	margin-right: 5px;
}

.settings-area-dialog-container {
	background: rgba(0, 0, 0, 0.57);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
	-webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
	transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
}

.settings-area-dialog-container--visible {
	opacity: 1;
	pointer-events: auto;
}

.login-dialog-container {
	background: rgba(0, 0, 0, 0.57);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
	-webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
	transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
}

.login-dialog-container--visible {
	opacity: 1;
	pointer-events: auto;
}

.login-dialog-error-message {
	color: red;
	font-weight: bold;
	font-size: 0.75em;
}

.login-kid-dialog-container {
	padding: 0em;
	padding-top: 4em;
	padding-left: 1em;
	opacity: 0;
	z-index: 100;
}

.login-kid-dialog-container--visible {
	opacity: 1;
	pointer-events: auto;
}

.selectCustomerList {
	width: 200px;
}

.login-kid-dialog-error-message {
	color: red;
	font-weight: bold;
	font-size: 0.75em;
}

.dialog {
	background: #FFF;
	border-radius: 2px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px
		rgba(0, 0, 0, 0.48);
	min-width: 280px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) translateY(30px);
	transform: translate(-50%, -50%) translateY(30px);
	-webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1)
		0.05s;
	transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s,
		-webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

.dialog>div {
	padding-left: 24px;
	padding-right: 24px;
}

.dialog-title {
	padding-top: 20px;
	font-size: 1.25em;
}

.dialog-body {
	padding-top: 20px;
	padding-bottom: 24px;
}

.dialog-body select {
	width: 100%;
	font-size: 2em;
}

.dialog-buttons {
	padding: 8px !important;
	float: right;
}

.card {
	padding: 16px;
	position: relative;
	box-sizing: border-box;
	background: #fff;
	border-radius: 2px;
	margin: 16px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px
		rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	max-width: 480px;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
	display: inline-block;
}

.card--visible {
	opacity: 1;
	pointer-events: auto;
}

.symbol_curstate {
	width: 20px;
	height: 20px;
	float: left;
	margin: 5px;
}

.symbol_curstate img {
	width: 20px;
	height: 20px;
}

/*
.symbol_curstate-red {
	background-color: rgb(227, 6, 6);
	width: 20px;
	height: 20px;
	float: left;
	margin: 5px;
}

.symbol_curstate-orange {
	background-color: orange;
	width: 20px;
	height: 20px;
	float: left;
	margin: 15px;
}

.symbol_curstate-green {
	background-color: green;
	width: 20px;
	height: 20px;
	float: left;
	margin: 5px;
}
*/

.symbolhand {
	color: #e7c516;
}

.weather-forecast .location {
	font-size: 1.75em;
	color: #13437b;
	font-weight: bold;
/*	border-bottom: 1px solid #13437b; */
	margin-right: 17px;
}

.weather-forecast .date, .weather-forecast .description {
	font-size: 1.25em;
}

.weather-forecast .current {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.weather-forecast .current .icon {
	width: 128px;
	height: 128px;
}

.weather-forecast .current .visual {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 4em;
}

.weather-forecast .current .visual .scale {
	font-size: 0.5em;
	vertical-align: super;
}

.weather-forecast .current .visual, .weather-forecast .current .description
	{
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.weather-forecast .current .sunset:before {
	content: "Sunset: ";
	color: #888;
}

.weather-forecast .current .wind:before {
	content: "Wind: ";
	color: #888;
}

.weather-forecast .current .sunrise:before {
	content: "Sunrise: ";
	color: #888;
}

.weather-forecast .current .humidity:before {
	content: "Humidity: ";
	color: #888;
}

.weather-forecast .current .pollen:before {
	content: "Pollen Count: ";
	color: #888;
}

.weather-forecast .current .pcount:before {
	content: "Pollen ";
	color: #888;
}

.weather-forecast .future {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.weather-forecast .future .oneday {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.weather-forecast .future .oneday .icon {
	width: 64px;
	height: 64px;
	margin-left: auto;
	margin-right: auto;
}

.weather-forecast .future .oneday .temp-high, .weather-forecast .future .oneday .temp-low
	{
	display: inline-block;
}

.weather-forecast .future .oneday .temp-low {
	color: #888;
}

@media ( max-width : 450px) {
	.weather-forecast .date, .weather-forecast .description {
		font-size: 0.9em;
	}
	.weather-forecast .current .icon {
		width: 96px;
		height: 96px;
	}
	.weather-forecast .current .visual {
		font-size: 3em;
	}
	.weather-forecast .future .oneday .icon {
		width: 32px;
		height: 32px;
	}
}

.mdl-button {
	background: transparent;
	border: none;
	border-radius: 2px;
	color: black;
	position: relative;
	height: 36px;
	margin: 0;
	min-width: 64px;
	padding: 0 16px;
	display: inline-block;
	font-family: "Roboto", "Helvetica", "Arial", sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0;
	overflow: hidden;
	will-change: box-shadow;
	-webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),
		background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s
		cubic-bezier(0.4, 0, 0.2, 1);
	transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color
		0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s
		cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	line-height: 36px;
	vertical-align: middle;
}

.mdl-button::-moz-focus-inner {
	border: 0;
}

.mdl-button:hover {
	background-color: rgba(158, 158, 158, 0.2);
}

.mdl-button:focus:not(:active) {
	background-color: rgba(0, 0, 0, 0.12);
}

.mdl-button:active {
	background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button.mdl-button--colored {
	color: #3f51b5;
}

.mdl-button.mdl-button--colored:focus:not(:active) {
	background-color: rgba(0, 0, 0, 0.12);
}

.mdl-button--primary.mdl-button--primary {
	color: #3f51b5;
}

.mdl-button--primary.mdl-button--primary .mdl-ripple {
	background: white;
}

.mdl-button--primary.mdl-button--primary.mdl-button--raised,
	.mdl-button--primary.mdl-button--primary.mdl-button--fab {
	color: white;
	background-color: #3f51b5;
}

/** Michael Post */
body {
	font-size: 1em;
	font-family: arial;
}

.notice {
	font-size: 1.2em;
	font-family: arial;
	font-style: italic;
	float: left;
	vertical-align: bottom;
}

.logo {
	float: none;
	text-align: right;
}

.logout {
	text-align: right;
	font-weight: bold;
	padding: 5px;
	padding-right: 50px;
}

.customer {
	font-size: 1em;
	font-family: arial;
	font-weight: bold;
	padding-bottom: 50px;
}

.customer_header {
	font-size: 1em;
	font-family: arial;
	font-weight: bold;
	border: 1px solid black;
	margin: 10px;
	width: 100%;
}

.customer_header_content {
	font-size: 1em;
	font-family: arial;
	font-weight: bold;
	float: left;
	width: 50%;
	height: 30px;
	margin: 10px;
}

.customer_header_navigation {
	/* float: right; */
	border: 0px solid red;
	margin: 10px;
/* 	color: #13437b; */
	/*margin-top: -50px;*/
}

.butAreaSettings:last-of-type {
    background:transparent;
}
	
.butAreaSettings {
	background:transparent;
	border: 0px;
	margin-top: 7px;
	margin-left: 272px;
}

.customer_body {
	font-size: 1em;
	font-family: arial;
	font-weight: plain;;
}

.product_label_default {
	background-color: rgb(210, 210, 210);
	color: black;
}

.product_label_1420 {
	background-color: rgb(40, 116, 178);
	float: left;
	color: white;
}

.product_label_1430 {
	background-color: rgb(161, 35, 43);
	float: left;
	color: white;
}

.product_label_1440 {
	background-color: rgb(236, 124, 37);
	float: left;
	color: white;
}

.product_label_1450 {
	background-color: rgb(226, 176, 7);
	float: left;
	color: white;
}

.product_label_1460 {
	background-color: rgb(144, 70, 132);
	float: left;
	color: white;
}

.product_label_1470 {
	background-color: rgb(40, 113, 62);
	float: left;
	color: white;
}

.product_label_1480 {
	background-color: rgb(47, 42, 90);
	float: left;
	color: white;
}

.customer_body_host_serial {
	width: 200px;
	margin: 5px;
	float: left;
}

.customer_body_host_lastknownip {
	width: 165px;
	margin: 5px;
	float: left;
}

.customer_body_host_serial2 {
	width: 200px;
	margin: 5px;
	float: none;
}

.customer_body_host_lastknownip_body {
	margin: 5px;
	width: 175px;
	float: left;
}

.customer_body_host_left {
	width: 50px;
	float: left;
}

.customer_body_host_right {
	width: 250px;
	float: left;
	margin: 5px;
}

.customer_body_host_area {
	width: 250px;
	float: left;
	margin: 5px;
}

.customer_body_host_comment {
	width: 550px;
	margin: 5px;
}

.customer_body_host_connection {
	float: right;
	margin: 5px;
}

.customer_body_host_hardware {
	width: 200px;
	float: left;
	margin: 5px;
}

.customer_body_host_status {
	width: 30px;
	float: right;
}

.customer_body_host {
	
}

.legende {
	margin: 10px;
}

/* unvisited link */
a:link {
	color: black;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: black;
	text-decoration: none;
}

/* mouse over link */
a:hover {
	color: black;
	text-decoration: none;
}

/* selected link */
a:active {
	color: black;
	text-decoration: none;
}

.form-signin {
	max-width: 330px;
	padding: 15px;
	margin: 0 auto;
}

.form-signin .form-signin-heading, .form-signin .checkbox {
	margin-bottom: 10px;
}

.form-signin .checkbox {
	font-weight: normal;
}

.form-signin .form-control {
	position: relative;
	font-size: 16px;
	height: auto;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form-signin .form-control:focus {
	z-index: 2;
}

.form-signin input[type="text"] {
	margin-bottom: -1px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.form-signin input[type="password"] {
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.account-wall {
	margin-top: 20px;
	padding: 40px 0px 20px 0px;
	background-color: #f7f7f7;
	-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.login-title {
	color: #555;
	font-size: 18px;
	font-weight: 400;
	display: block;
}

.profile-img {
	width: 96px;
	height: 96px;
	margin: 0 auto 10px;
	display: block;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.need-help {
	margin-top: 10px;
}

.new-account {
	display: block;
	margin-top: 10px;
}

.table_header {
	font-size: 1em;
	font-family: arial;
	font-weight: bold;
}

.table_content {
	font-size: 1em;
	font-family: arial;
	font-weight: normal;
}

.customer_border {
	width: 100%;
	border: 1px solid black;
}

.visitor {
	float: left;
	margin: 5px;
	width: 150px;
	margin-top: 20px;
}

.visitor .headline {
	font-weight: bold;
}

.visitor .content {
	text-align: center;
	height: 25px;
	font-size: 1.3em;
}

.throughput {
	float: left;
	margin: 5px;
	width: 150px;
	margin-top: 20px;
}

.throughput .headline {
	font-weight: bold;
}

.throughput .content {
	text-align: center;
	height: 25px;
	font-size: 1.3em;
}

.queue {
	float: left;
	margin: 5px;
	width: 150px;
	margin-top: 0px;
}

.queue .headline {
	font-weight: bold;
}

.queue .content {
	text-align: center;
	height: 50px;
	font-size: 1.3em;
}

.queuetime {
	float: left;
	margin: 5px;
	width: 150px;
	margin-top: 0px;
}

.queuetime .headline {
	font-weight: bold;
}

.queuetime .content {
	text-align: center;
	height: 50px;
	font-size: 1.3em;
}

div.card.weather-forecast div.content {
	text-align: center;
}

.footer {
	text-align: center;
	font-size: 0.8em;
	font-weight: bold;
	background: rgba(100,136,162,0.3) !important;
	margin: -10px -16px -16px;
}

.content {
	overflow: auto;
}

.area-dialog {
	background: #FFF;
	border-radius: 2px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px
		rgba(0, 0, 0, 0.48);
	min-width: 280px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) translateY(30px);
	transform: translate(-50%, -50%) translateY(30px);
	-webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1)
		0.05s;
	transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s,
		-webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

.area-dialog>div {
	padding-left: 24px;
	padding-right: 24px;
}

.area-dialog-title {
	padding-top: 20px;
	font-size: 1.25em;
}

.area-dialog-body {
	padding-top: 20px;
	padding-bottom: 24px;
	display: grid;
	/*   grid-template-rows:200px 1fr 100px;  */
	grid-template-columns: 50% 50%;
}

.area-dialog-body select {
	width: 100%;
	font-size: 1em;
}

.area-dialog-buttons {
	padding: 8px !important;
	float: right;
}

.login-dialog {
	background: #FFF;
	border-radius: 2px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px
		rgba(0, 0, 0, 0.48);
	min-width: 280px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) translateY(30px);
	transform: translate(-50%, -50%) translateY(30px);
	-webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1)
		0.05s;
	transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s,
		-webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

.login-dialog>div {
	padding-left: 24px;
	padding-right: 24px;
}

.login-dialog-title {
	padding-top: 20px;
	font-size: 1.25em;
}

.login-dialog-body {
	padding-top: 20px;
	padding-bottom: 24px;
	display: grid;
	/*   grid-template-rows:200px 1fr 100px;  */
	grid-template-columns: 50% 50%;
}

.login-dialog-body select {
	width: 100%;
	font-size: 1em;
}

.login-dialog-buttons {
	padding: 8px !important;
	float: right;
}

.login-kid-dialog {
	background: #FFF;
	border-radius: 2px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px
		rgba(0, 0, 0, 0.48);
	min-width: 280px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) translateY(30px);
	transform: translate(-50%, -50%) translateY(30px);
	-webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1)
		0.05s;
	transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
	transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s,
		-webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

.login-kid-dialog>div {
	padding-left: 24px;
	padding-right: 24px;
}

.login-kid-dialog-title {
	padding-top: 20px;
	font-size: 1.25em;
}

.login-kid-dialog-body {
	padding-top: 20px;
	padding-bottom: 24px;
	display: grid;
	/*   grid-template-rows:200px 1fr 100px;  */
	grid-template-columns: 50% 50%;
}

.login-kid-dialog-body select {
	width: 100%;
	font-size: 1em;
}

.login-kid-dialog-buttons {
	padding: 8px !important;
	float: right;
}

.loginusername {
		max-width: 100%;
}

.loginpassword {
		max-width: 100%;
}