* {
	padding: 0;
	margin: 0;
}
html, body {
	height: 100%;
	width: 100%;
}
body {
	color: #222222;
	background-color: #eeeeee;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 16px;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
input, textarea, select, option, .customButton {
	margin: 5px;
	color: rgba(0, 0, 0, 0.75);
	background-color: rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}
option {
	background-color: rgba(255, 255, 255, 0.6);
}
input, textarea, select, .customButton {
	padding: 15px;
	border: none;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0px 2px 2px 0 rgba(255, 255, 255, 0.3) inset;
}
input[type=radio] {
	position: relative;
	top: 0.1em;
	left: 0.2em;
	width: 1.5em;
	height: 0.8em;
	box-shadow: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
input[type=button], input[type=submit], input[type=reset] {
	text-align: center;
	vertical-align: center;
	cursor: pointer;
	color: rgba(0, 0, 0, 1);
	background-color: rgba(0, 0, 0, 0.25);
}
.customButton {
	display: inline-block;
	cursor: pointer;
}
input[type=submit] {
	font-weight: bold;
}
input::placeholder, textarea::placeholder {
	color: rgba(0, 0, 0, 0.25);
}
input:hover, textarea:hover, select:hover, .customButton:hover {
	color: rgba(0, 0, 0, 0.82);
	background-color: rgba(0, 0, 0, 0.2);
}
input:hover::placeholder, textarea:hover::placeholder {
	color: rgba(0, 0, 0, 0.3);
}
input:focus, textarea:focus, select:focus, .customButton:focus {
	color: rgba(0, 0, 0, 0.87);
	background-color: rgba(0, 0, 0, 0.25);
}
input:focus::placeholder, textarea:focus::placeholder {
	color: rgba(0, 0, 0, 0.35);
}
input[type=text]:disabled:hover,
input[type=password]:disabled:hover,
select:disabled:hover {
	color: rgba(0, 0, 0, 0.75);
	background-color: rgba(0, 0, 0, 0.1);
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, input[type=button]:focus, input[type=submit]:focus, input[type=reset]:focus {
	color: rgba(0, 0, 0, 1);
	background-color: rgba(0, 0, 0, 0.35);
}
th {
	font-weight: bold;
}
th, td {
	display: table-cell;
	vertical-align: inherit;
	text-align: center;
}
.importantButton {
	font-weight: bold;
}
[data-tooltip] {
	display: none;
}
[data-tooltip]:hover::before {
	content: "";
	position: absolute;
	top: 3.3em;
	left: 0.7em;
	z-index: 9999;
	opacity: 0.8;
	background: url(../img/triangle-to-top.png);
	height: 0.64em;
	width: 3em;
}
[data-tooltip]:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	margin-top: 4.9em;
	margin-left: -5.3em;
	color: #ffffff;
	background: rgba(0,0,0,0.8);
	padding: 1em;
	border-radius: 2px;
	box-shadow: 0em 0.1em 0.1em 0em rgba(0, 0, 0, 0.3), 0em 0.1em 0.1em 0em rgba(255, 255, 255, 0.3) inset;
	z-index: 9998;
	font-size: 0.8em;
	text-align: center;
}
.grecaptcha-badge {
	display: none;
}

.loading {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.loading div {
	position: absolute;
	border: 4px solid #333;
	opacity: 1;
	border-radius: 50%;
	animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes loading {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

@keyframes redFlash {
  0% {
    /*background-color: rgba(63, 0, 0, 0);*/
  }
  100% {
    background-color: rgba(255, 21, 21, 1);
	color: rgba(249, 215, 215, 1);
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
  }
}

@keyframes orangeFlash {
  0% {
    /*background-color: rgba(63, 0, 0, 0);*/
  }
  100% {
    background-color: rgba(255, 160, 21, 1);
	color: rgba(249, 234, 215, 1);
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
  }
}

@keyframes opacityBlink {
  0% {
	opacity: 1;
  }
  50% {
	opacity: 0;
  }
  100% {
	opacity: 1;
	/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
  }
}





.scrollable::-webkit-scrollbar {
	width: 15px;
	height: 15px;
}
.scrollable::-webkit-scrollbar:hover {
	background-color: rgba(50, 50, 50, 0.1);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(255, 255, 255, 0.3) inset;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3), 0px 1px 1px 0px rgba(255, 255, 255, 0.3) inset;
}
.scrollable::-webkit-scrollbar-thumb {
	background-color: rgba(50, 50, 50, 0.2);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px 1px 1px 0px rgba(255, 255, 255, 0.4) inset;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px 1px 1px 0px rgba(255, 255, 255, 0.4) inset;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4), 0px 1px 1px 0px rgba(255, 255, 255, 0.4) inset;
}
.scrollable::-webkit-scrollbar-thumb:hover {
	background-color: rgba(50, 50, 50, 0.3);
	-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0px rgba(255, 255, 255, 0.5) inset;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0px rgba(255, 255, 255, 0.5) inset;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5), 0px 1px 1px 0px rgba(255, 255, 255, 0.5) inset;
}
.scrollable::-webkit-scrollbar-button {
	width: 0;
	height: 0;
	display: none;
}

.scrollable::-webkit-scrollbar-corner {
	background-color: transparent;
}


input.toggleButton {
	height: 0;
	width: 0;
	display: none;
}

label.toggleButton {
	cursor: pointer;
	text-indent: -9999px;
	width: 56px;
	height: 26px;
	background-color: rgba(0, 0, 0, 0.2);
	display: block;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 26px;
	position: relative;
}
label.toggleButton:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 21px;
	height: 21px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 21px;
	transition: 0.3s;
}
input.toggleButton:checked + label.toggleButton {
	background: #53a000;
	border: 2px solid rgba(255, 255, 255, 0.4);
}
input.toggleButton:checked + label.toggleButton:after {
	left: calc(100% - 3px);
	transform: translateX(-100%);
	background-color: rgba(255, 255, 255, 0.95);
}
label.toggleButton:active:after {
	width: 31px;
}








@media(max-width:450px) {
	* {
		padding: 0;
		margin: 0;
	}
	html, body {
		height: 100%;
		width: 100%;
	}
	body {
		color: #222222;
		background-color: #eeeeee;
		font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
		font-size: 16px;
		scrollbar-width: none;  /* Firefox */
		-ms-overflow-style: none;  /* IE and Edge */
	}
	body::-webkit-scrollbar {
		display: none;
	}
	a {
		text-decoration: none;
	}
	a:hover {
		text-decoration: underline;
	}
	input, textarea, select, option, .customButton {
		margin: 5px;
		color: rgba(0, 0, 0, 0.75);
		background-color: rgba(0, 0, 0, 0.15);
		border-radius: 4px;
	}
	option {
		background-color: rgba(255, 255, 255, 0.6);
	}
	input, textarea, select, .customButton {
		padding: 15px;
		border: none;
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3), 0px 2px 2px 0 rgba(255, 255, 255, 0.3) inset;
	}
	input[type=radio] {
		position: relative;
		top: 0.1em;
		left: 0.2em;
		width: 1.5em;
		height: 0.8em;
		box-shadow: none;
		border: none;
		background-color: transparent;
		cursor: pointer;
	}
	input[type=button], input[type=submit], input[type=reset] {
		text-align: center;
		vertical-align: center;
		cursor: pointer;
		color: rgba(0, 0, 0, 1);
		background-color: rgba(0, 0, 0, 0.25);
	}
	.customButton {
		display: inline-block;
		cursor: pointer;
	}
	input[type=submit] {
		font-weight: bold;
	}
	input::placeholder, textarea::placeholder {
		color: rgba(0, 0, 0, 0.25);
	}
	input:hover, textarea:hover, select:hover, .customButton:hover {
		color: rgba(0, 0, 0, 0.82);
		background-color: rgba(0, 0, 0, 0.2);
	}
	input:hover::placeholder, textarea:hover::placeholder {
		color: rgba(0, 0, 0, 0.3);
	}
	input:focus, textarea:focus, select:focus, .customButton:focus {
		color: rgba(0, 0, 0, 0.87);
		background-color: rgba(0, 0, 0, 0.25);
	}
	input:focus::placeholder, textarea:focus::placeholder {
		color: rgba(0, 0, 0, 0.35);
	}
	input[type=text]:disabled:hover,
	input[type=password]:disabled:hover,
	select:disabled:hover {
		color: rgba(0, 0, 0, 0.75);
		background-color: rgba(0, 0, 0, 0.1);
	}
	input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, input[type=button]:focus, input[type=submit]:focus, input[type=reset]:focus {
		color: rgba(0, 0, 0, 1);
		background-color: rgba(0, 0, 0, 0.35);
	}
	th {
		font-weight: bold;
	}
	th, td {
		display: table-cell;
		vertical-align: inherit;
		text-align: center;
	}
	.importantButton {
		font-weight: bold;
	}
	[data-tooltip] {
		display: none;
	}
	[data-tooltip]:hover::before {
		content: "";
		position: absolute;
		top: 3.3em;
		left: 0.7em;
		z-index: 9999;
		opacity: 0.8;
		background: url(../img/triangle-to-top.png);
		height: 0.64em;
		width: 3em;
	}
	[data-tooltip]:hover::after {
		content: attr(data-tooltip);
		position: absolute;
		margin-top: 4.9em;
		margin-left: -5.3em;
		color: #ffffff;
		background: rgba(0,0,0,0.8);
		padding: 1em;
		border-radius: 2px;
		box-shadow: 0em 0.1em 0.1em 0em rgba(0, 0, 0, 0.3), 0em 0.1em 0.1em 0em rgba(255, 255, 255, 0.3) inset;
		z-index: 9998;
		font-size: 0.8em;
		text-align: center;
	}
	.grecaptcha-badge {
		display: none;
	}
	
	.loading {
		display: inline-block;
		position: relative;
		width: 64px;
		height: 64px;
	}
	.loading div {
		position: absolute;
		border: 4px solid #333;
		opacity: 1;
		border-radius: 50%;
		animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	}
	.loading div:nth-child(2) {
		animation-delay: -0.5s;
	}
	@keyframes loading {
		0% {
			top: 28px;
			left: 28px;
			width: 0;
			height: 0;
			opacity: 1;
		}
		100% {
			top: -1px;
			left: -1px;
			width: 58px;
			height: 58px;
			opacity: 0;
		}
	}
	
	@keyframes redFlash {
	  0% {
		/*background-color: rgba(63, 0, 0, 0);*/
	  }
	  100% {
		background-color: rgba(255, 21, 21, 1);
		color: rgba(249, 215, 215, 1);
		/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
	  }
	}

	@keyframes orangeFlash {
	  0% {
		/*background-color: rgba(63, 0, 0, 0);*/
	  }
	  100% {
		background-color: rgba(255, 160, 21, 1);
		color: rgba(249, 234, 215, 1);
		/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
	  }
	}

	@keyframes opacityFlash {
	  0% {
		opacity: 0;
	  }
	  100% {
		opacity: 1;
		/* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4), 0px 4px 4px 0px rgba(255, 255, 255, 0.4) inset; */
	  }
	}
	

	
	
	input.toggleButton {
		height: 0;
		width: 0;
		display: none;
	}
	
	label.toggleButton {
		cursor: pointer;
		text-indent: -9999px;
		width: 56px;
		height: 26px;
		background-color: rgba(0, 0, 0, 0.2);
		display: block;
		border: 2px solid rgba(0, 0, 0, 0);
		border-radius: 26px;
		position: relative;
	}
	label.toggleButton:after {
		content: '';
		position: absolute;
		top: 2px;
		left: 2px;
		width: 21px;
		height: 21px;
		background-color: rgba(255, 255, 255, 0.5);
		border-radius: 21px;
		transition: 0.3s;
	}
	input.toggleButton:checked + label.toggleButton {
		background: #53a000;
		border: 2px solid rgba(255, 255, 255, 0.4);
	}
	input.toggleButton:checked + label.toggleButton:after {
		left: calc(100% - 3px);
		transform: translateX(-100%);
		background-color: rgba(255, 255, 255, 0.95);
	}
	label.toggleButton:active:after {
		width: 31px;
	}
}
div[customType=HMIAdmin] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
}

/* HMIAdmin / HMIAdmin_title */
div[customType^=HMIAdmin_title] {
	padding-top: 30px;
	padding-bottom: 12px;
	font-size: 26px;
	font-weight: bold;
}


/* HMIAdmin / table */
table[customType=HMIAdmin_table] {
	display: inline-block;
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}
thead[customType=HMIAdmin_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIAdmin_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.08);
	color: rgba(0, 0, 0, 0.6);
}
th[customType=HMIAdmin_table_thead_tr_th],
td[customType^=HMIAdmin_table_tbody_tr_td] {
	padding: 10px 15px 10px 15px;
}
th[customType=HMIAdmin_table_thead_tr_th] > img {
	height: 30px;
}
td[customType^=HMIAdmin_table_tbody_tr_td] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* HMIAdmin / filterSelector */
div[customType=HMIAdmin_filterSelector] {
	margin: 10px;
}

/* HMIAdmin / filterSelector / * */
span[customType^=HMIAdmin_filterSelector_] {
	padding: 8px;
}

div[customType=HMIEcoScore] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
}

/* HMIEcoScore / homeText */
div[customType=HMIEcoScore_homeText] {
	margin-bottom: 40px;
}

/* HMIEcoScore / filterSelector */
div[customType=HMIEcoScore_filterSelector] {
	margin: 10px;
}

/* HMIEcoScore / filterSelector / * */
span[customType^=HMIEcoScore_filterSelector_] {
	padding: 8px;
}

/* HMIEcoScore / filterSelector / stationText */
span[customType=HMIEcoScore_filterSelector_stationText] {
	margin-left: 50px;
}

/* HMIEcoScore / filterSelector / stationSelect */
select[customType=HMIEcoScore_filterSelector_stationSelect] {
	height: 35px;
	padding: 8px;
	margin: 5px;
	font-size: 16px;
}

/* HMIEcoScore / filterSelector / currencyText */
span[customType=HMIEcoScore_filterSelector_currencyText] {
	margin-left: 50px;
}

/* HMIEcoScore / filterSelector / currencySelect */
select[customType=HMIEcoScore_filterSelector_currencySelect] {
	height: 35px;
	padding: 8px;
	margin: 5px;
	font-size: 16px;
}

/* HMIStation / filterSelector / DLImg */
div[customType=HMIEcoScore_filterSelector_DLimg] {
	display: inline-block;
	position: relative;
	top: 12px;
	width: 30px;
	height: 37px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	margin-left: 30px;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	cursor: pointer;
	background-image: url(../img/excel.png);
	background-size: 75%;
	background-repeat: no-repeat;
	background-position: center center;
}
div[customType=HMIEcoScore_filterSelector_DLimg]:hover {
	/* background-image: url(../img/download.png); */
	background-color: rgba(0, 0, 0, 0.15);
}

/* HMIEcoScore / table */
table[customType=HMIEcoScore_table] {
	display: inline-block;
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}
tr[customType=HMIEcoScore_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
th[customType=HMIEcoScore_table_thead_tr_th],
td[customType^=HMIEcoScore_table_tbody_tr_td] {
	padding: 10px 7px 10px 7px;
}
th[customType=HMIEcoScore_table_thead_tr_th] > img {
	height: 30px;
}
td[customType^=HMIEcoScore_table_tbody_tr_td] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	font-size: 13px;
}
td[customType^=HMIEcoScore_table_tbody_tr_td]:first-child {
	text-align: left;
}

/* HMIEcoScore / explanationText */
div[customType=HMIEcoScore_explanationText] {
	margin-top: 10px;
	text-align: center;
}

/* HMIEcoScore / explanationText / text */
div[customType=HMIEcoScore_explanationText_text] {
	display: inline-block;
	text-align: left;
	font-size: 12px;
}
























@media(max-width:450px) {
	div[customType=HMIEcoScore] {
		position: absolute;
		top: 60px;
		left: 15px;
		right: 5px;
		text-align: center;
	}
	
	/* HMIEcoScore / homeText */
	div[customType=HMIEcoScore_homeText] {
		margin-bottom: 40px;
	}
	
	/* HMIEcoScore / filterSelector */
	div[customType=HMIEcoScore_filterSelector] {
		margin: 10px;
	}
	
	/* HMIEcoScore / filterSelector / * */
	span[customType^=HMIEcoScore_filterSelector_] {
		padding: 8px;
	}
	
	/* HMIEcoScore / filterSelector / stationText */
	span[customType=HMIEcoScore_filterSelector_stationText] {
		margin-left: 50px;
	}
	
	/* HMIEcoScore / filterSelector / stationSelect */
	select[customType=HMIEcoScore_filterSelector_stationSelect] {
		height: 35px;
		padding: 8px;
		margin: 5px;
		font-size: 16px;
		width: 41%;
	}
	
	/* HMIEcoScore / filterSelector / currencyText */
	span[customType=HMIEcoScore_filterSelector_currencyText] {
		margin-left: 50px;
	}
	
	/* HMIEcoScore / filterSelector / currencySelect */
	select[customType=HMIEcoScore_filterSelector_currencySelect] {
		height: 35px;
		padding: 8px;
		margin: 5px;
		font-size: 16px;
	}
	
	/* HMIStation / filterSelector / DLImg */
	div[customType=HMIEcoScore_filterSelector_DLimg] {
		display: inline-block;
		position: relative;
		top: 12px;
		width: 30px;
		height: 37px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		margin-left: 30px;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		cursor: pointer;
		background-image: url(../img/excel.png);
		background-size: 75%;
		background-repeat: no-repeat;
		background-position: center center;
	}
	div[customType=HMIEcoScore_filterSelector_DLimg]:hover {
		/* background-image: url(../img/download.png); */
		background-color: rgba(0, 0, 0, 0.15);
	}
	
	/* HMIEcoScore / table */
	table[customType=HMIEcoScore_table] {
		display: inline-block;
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(255, 255, 255, 0.05);
		border-radius: 4px;
	}
	tr[customType=HMIEcoScore_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	th[customType=HMIEcoScore_table_thead_tr_th],
	td[customType^=HMIEcoScore_table_tbody_tr_td] {
		padding: 10px 7px 10px 7px;
	}
	/* th[customType=HMIEcoScore_table_thead_tr_th] > img {
		display: none;
	} */
	td[customType^=HMIEcoScore_table_tbody_tr_td] {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 16px;
	}
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(2),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(3),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(4),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(5),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(6),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(7),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(8),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(9),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(10),
	th[customType=HMIEcoScore_table_thead_tr_th]:nth-child(11),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(2),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(3),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(4),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(5),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(6),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(7),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(8),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(9),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(10),
	td[customType^=HMIEcoScore_table_tbody_tr_td]:nth-child(11) {
		display: none;
	}

	/* HMIEcoScore / explanationText */
	div[customType=HMIEcoScore_explanationText] {
		margin-top: 10px;
		text-align: center;
	}
	
	/* HMIEcoScore / explanationText / text */
	div[customType=HMIEcoScore_explanationText_text] {
		display: inline-block;
		text-align: center;
		font-size: 12px;
	}
}.HMICalendarSelector {
  position: absolute;
  width: 168px;
  height: 164px;
  background-color: #cccccc;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7), 0px 2px 2px 0px rgba(255, 255, 255, 0.7) inset;
  font-size: 85%;
  color: rgba(0, 0, 0, 0.75);
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

.HMICalendarSelector_table {
  position: relative;
  border: inherit;
  border-collapse: separate;
  border-spacing: 0;
  border-color: inherit;
  text-align: center;
  padding: 0;
  margin: 0;
}

.HMICalendarSelector_navigationButton {
  font-weight: bold;
  padding: 0;
  margin: 0;
}

.HMICalendarSelector_moisAnnee {
  font-weight: bold;
  font-size: 90%;
  height: 22px;
  padding: 0;
  margin: 0;
}

.HMICalendarSelector_jourSemaine, .HMICalendarSelector_jourHorsMois, .HMICalendarSelector_jourDuMois, .HMICalendarSelector_jourCourant, .HMICalendarSelector_jourSelectionne {
  width: 22px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0);
  padding: 0;
  margin: 0;
}

.HMICalendarSelector_jourHorsMois {
  color: rgba(0, 0, 0, 0.25);
}

.HMICalendarSelector_jourSelectionne {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 2px 0px rgba(255, 255, 255, 0.3) inset;
}

.HMICalendarSelector_jourCourant {
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
}

.HMICalendarSelector_jourSelectionne:hover, .HMICalendarSelector_jourHorsMois:hover, .HMICalendarSelector_jourDuMois:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7), 0px 2px 2px 0px rgba(255, 255, 255, 0.7) inset;
}
.HMIPopup_backgroundTransition {
	background-color: rgba(255, 255, 255, 0);
}
.HMIPopup_backgroundTransitionEnd {
	background-color: rgba(255, 255, 255, 0.7);
}
.HMIPopup_containerTransition { 
	top: 35%;
	opacity: 0;
}
.HMIPopup_containerTransitionEnd { 
	top: 15%;
	opacity: 1;
}

div[customType=HMIPopup] {
	position: fixed;
	top: 0px;
	height: 100%;
	width: 100%;
	cursor: not-allowed;
	transition-property: background-color;
	transition-duration: 200ms;
	transition-timing-function: ease;
}

div[customType=HMIPopup_container] {
	position: absolute;
	top: 15%;
	left: 25%;
	right: 25%;
	background-color: #cccccc;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7), 0px 2px 2px 0px rgba(255, 255, 255, 0.7) inset;  
	cursor: default;
	transition-property: top, opacity;
	transition-duration: 200ms;
	transition-timing-function: ease;
}

div[customType=HMIPopup_title] {
	font-size: 18px;
	font-weight: bold;
	margin: 15px 15px 0px 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #444444;
}

div[customType=HMIPopup_text] {
	margin: 25px 15px 10px 15px;
	overflow: hidden;
	text-overflow: ellipsis;
}

div[customType=HMIPopup_processingImg] {
	margin-top: 30px;
	margin-bottom: 50px;
}

img[customType=HMIPopup_closeCross] {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 16px;
	cursor: pointer;
}

img[customType=HMIPopup_contextualImg] {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 25px;
}

input[customType=HMIPopup_auth_username],
input[customType=HMIPopup_auth_password] {
	font-size: 17px;
	font-weight: bold;
	width: 300px;
}

div[customType=HMIPopup_auth_checkboxStayLoggedIn] {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-top: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
div[customType=HMIPopup_auth_checkboxStayLoggedIn][customChecked="0"] {
	background-image: url(../img/checkbox-unchecked.png);
	opacity: 0.5;
}
div[customType=HMIPopup_auth_checkboxStayLoggedIn][customChecked="1"] {
	background-image: url(../img/checkbox-checked.png);
	opacity: 0.7;
}

span[customType=HMIPopup_auth_textStayLoggedIn] {
	position: relative;
	top: -3px;
	margin-left: 10px;
}

table[customType=HMIPopup_calibrateTable] {
	display: inline-block;
	margin-top: 10px;
	border-spacing: 0px;
	text-align: center;
}
table[customType=HMIPopup_calibrateTable] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
	border-radius: 4px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7), 0px 2px 2px 0px rgba(255, 255, 255, 0.7) inset;
	padding: 5px;
}
table[customType=HMIPopup_calibrateTable] th,
table[customType=HMIPopup_calibrateTable] td {
	padding: 0px 5px 0px 5px;
}
table[customType=HMIPopup_calibrateTable] th:first-child,
table[customType=HMIPopup_calibrateTable] td:first-child {
	text-align: left;
}
input[customType^=HMIPopup_calibrateTable_] {
	width: 35px;
	padding: 7px;
	text-align: center;
}

select[customType=HMIPopup_addBadge],
select[customType^=HMIPopup_addQuota_],
input[customType^=HMIPopup_addQuota_] {
	padding: 10px;
	font-size: 16px;
}
input[customType^=HMIPopup_addQuota_] {
	width: 30px;
}

table[customType=HMIPopup_scheduleRecurrence_table] {
	margin-left: auto;
	margin-right: auto;
	font-size: 90%;
}
table[customType=HMIPopup_scheduleRecurrence_table] td:first-child {
	text-align: right;
}
table[customType=HMIPopup_scheduleRecurrence_table] td:last-child {
	text-align: left;
}
table[customType=HMIPopup_scheduleRecurrence_table] select,
table[customType=HMIPopup_scheduleRecurrence_table] input {
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 4px;
}
/* tr[customType=HMIPopup_scheduleRecurrence_table_tbody_tr_emptyRow] { */
	/* height: 5px; */
/* } */
span[customType=HMIPopup_scheduleRecurrence_startDate], span[customType=HMIPopup_scheduleRecurrence_endRecurrenceValue2] {
	display: inline !important;
	padding: 4px !important;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 5px !important;
	margin-right: 5px !important;
}
input[customType=HMIPopup_scheduleRecurrence_endRecurrenceValue1],
input[customType=HMIPopup_scheduleRecurrence_frequency],
input[customType=HMIPopup_scheduleRecurrence_delayBeforeTrigger] {
	width: 30px;
}
input[customType=HMIPopup_scheduleRecurrence_title],
input[customType=HMIPopup_scheduleRecurrence_emailAddresses] {
	width: 340px;
}



input[customType=HMIPopup_inputText] {
	text-align: center;
	font-size: 18px;
}

input[customType=HMIPopup_submitButton] {
	display: inline-block;
	margin: 15px 15px 15px 15px;
	padding-left: 40px;
	padding-right: 40px;
	font-size: 17px;
}

div[customType=HMIPopup]:not([popupType=authenticate]) *[customType^=HMIPopup_auth_],
div[customType=HMIPopup]:not([popupType=inProgress]) *[customType^=HMIPopup_processing],
div[customType=HMIPopup]:not([popupType=calibrate]) *[customType^=HMIPopup_calibrate],
div[customType=HMIPopup]:not([popupType=scheduleRecurrence]) *[customType^=HMIPopup_scheduleRecurrence],
div[customType=HMIPopup]:not([popupType=addBadge]) *[customType^=HMIPopup_addBadge],
div[customType=HMIPopup]:not([popupType=addQuota]) *[customType^=HMIPopup_addQuota],
div[customType=HMIPopup]:not([popupType=inputText]) *[customType^=HMIPopup_inputText],
div[popupType=inProgress] *[customType=HMIPopup_title],
div[popupType=inProgress] *[customType=HMIPopup_closeCross],
div[popupType=inProgress] *[customType=HMIPopup_contextualImg],
div[popupType=inProgress] *[customType=HMIPopup_submitButton] {
	display: none;
}






















@media(max-width:450px) {
	.HMIPopup_backgroundTransition {
		background-color: rgba(255, 255, 255, 0);
	}
	.HMIPopup_backgroundTransitionEnd {
		background-color: rgba(255, 255, 255, 0.7);
	}
	.HMIPopup_containerTransition { 
		top: 35%;
		opacity: 0;
	}
	.HMIPopup_containerTransitionEnd { 
		top: 15%;
		opacity: 1;
	}
	
	div[customType=HMIPopup] {
		position: fixed;
		top: 0px;
		height: 100%;
		width: 100%;
		cursor: not-allowed;
		transition-property: background-color;
		transition-duration: 200ms;
		transition-timing-function: ease;
	}
	
	div[customType=HMIPopup_container] {
		position: absolute;
		top: 15%;
		left: 5.5%;
		right: 25%;
		background-color: #cccccc;
		text-align: center;
		border-radius: 4px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7), 0px 2px 2px 0px rgba(255, 255, 255, 0.7) inset;  
		cursor: default;
		transition-property: top, opacity;
		transition-duration: 200ms;
		transition-timing-function: ease;
		width: 90%;
	}
	
	div[customType=HMIPopup_title] {
		font-size: 18px;
		font-weight: bold;
		margin: 15px 15px 0px 15px;
		overflow: hidden;
		text-overflow: ellipsis;
		color: #444444;
	}
	
	div[customType=HMIPopup_text] {
		margin: 25px 15px 10px 15px;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	div[customType=HMIPopup_processingImg] {
		margin-top: 30px;
		margin-bottom: 50px;
	}
	
	img[customType=HMIPopup_closeCross] {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 16px;
		cursor: pointer;
	}
	
	img[customType=HMIPopup_contextualImg] {
		position: absolute;
		left: 10px;
		top: 10px;
		width: 25px;
	}
	
	input[customType=HMIPopup_auth_username],
	input[customType=HMIPopup_auth_password] {
		font-size: 15px;
		font-weight: bold;
		width: 80%;
	}
	
	div[customType=HMIPopup_auth_checkboxStayLoggedIn] {
		display: inline-block;
		width: 20px;
		height: 20px;
		margin-top: 10px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		cursor: pointer;
	}
	div[customType=HMIPopup_auth_checkboxStayLoggedIn][customChecked="0"] {
		background-image: url(../img/checkbox-unchecked.png);
		opacity: 0.5;
	}
	div[customType=HMIPopup_auth_checkboxStayLoggedIn][customChecked="1"] {
		background-image: url(../img/checkbox-checked.png);
		opacity: 0.7;
	}
	
	span[customType=HMIPopup_auth_textStayLoggedIn] {
		position: relative;
		top: -3px;
		margin-left: 10px;
	}
	
	table[customType=HMIPopup_calibrateTable] {
		display: inline-block;
		margin-top: 10px;
		border-spacing: 0px;
		text-align: center;
	}
	table[customType=HMIPopup_calibrateTable] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
		border-radius: 4px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.7), 0px 2px 2px 0px rgba(255, 255, 255, 0.7) inset;
		padding: 5px;
	}
	table[customType=HMIPopup_calibrateTable] th,
	table[customType=HMIPopup_calibrateTable] td {
		padding: 0px 5px 0px 5px;
	}
	table[customType=HMIPopup_calibrateTable] th:first-child,
	table[customType=HMIPopup_calibrateTable] td:first-child {
		text-align: left;
	}
	input[customType^=HMIPopup_calibrateTable_] {
		width: 35px;
		padding: 7px;
		text-align: center;
	}
	
	select[customType=HMIPopup_addBadge],
	select[customType^=HMIPopup_addQuota_],
	input[customType^=HMIPopup_addQuota_] {
		padding: 10px;
		font-size: 16px;
	}
	input[customType^=HMIPopup_addQuota_] {
		width: 30px;
	}
	
	input[customType=HMIPopup_inputText] {
		text-align: center;
		font-size: 18px;
	}
	
	input[customType=HMIPopup_submitButton] {
		display: inline-block;
		margin: 15px 15px 15px 15px;
		padding-left: 40px;
		padding-right: 40px;
		font-size: 17px;
	}
	
	div[customType=HMIPopup]:not([popupType=authenticate]) *[customType^=HMIPopup_auth_],
	div[customType=HMIPopup]:not([popupType=inProgress]) *[customType^=HMIPopup_processing],
	div[customType=HMIPopup]:not([popupType=calibrate]) *[customType^=HMIPopup_calibrate],
	div[customType=HMIPopup]:not([popupType=addBadge]) *[customType^=HMIPopup_addBadge],
	div[customType=HMIPopup]:not([popupType=addQuota]) *[customType^=HMIPopup_addQuota],
	div[customType=HMIPopup]:not([popupType=inputText]) *[customType^=HMIPopup_inputText],
	div[popupType=inProgress] *[customType=HMIPopup_title],
	div[popupType=inProgress] *[customType=HMIPopup_closeCross],
	div[popupType=inProgress] *[customType=HMIPopup_contextualImg],
	div[popupType=inProgress] *[customType=HMIPopup_submitButton] {
		display: none;
	}
}div[customType=HMIMainBar] {
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
	right: 0;
	height: 42px;
	color: #666666;
	background-color: #dddddd;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

img[customType=HMIMainBar_logo] {
	position: fixed;
	top: 7px;
	left: 15px;
	height: 28px;
	cursor: pointer;
}

div[customType=HMIMainBar_openCloseMenuButton] {
	display: none;
}
div[customType=HMIMainContent] {
	position: absolute;
	top: 45px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow-x: hidden;
    overflow-y: auto;
}
div[customType=HMIMenu] {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 70px;
	right: 0;
	height: 45px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div[customType=HMIMenu_item] {
	display: inline-block;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 7px;
	padding-right: 7px;
	cursor: pointer;
	color: #777777;
}

div[customType=HMIMenu_item][customSelected="1"] {
	color: #000000;
	background-color: #cccccc;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5);
}

div[customType=HMIMenu_item]:hover {
	color: #000000;
}
div[customType=HMIMap] {
	position: absolute;
	width: 100%;
	height: 100%;
}

div[customType=HMIMap_controls] {
	position: absolute;
	left: 0;
	width: 50px;
	height: 100%;
	color: #666666;
	text-align: center;
	background-color: #dddddd;
	box-shadow: 2px 0px 2px 0px rgba(0, 0, 0, 0.2);
	overflow: hiddentext-overflow: ellipsis;
	white-space: nowrap;
}

div[customType=HMIMap_controls_item] {
	position: relative;
	width: 100%;
	height: 42px;
	cursor: pointer;
	color: #777777;
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	filter: grayscale(100%);
}

div[customType=HMIMap_controls_item][item="home"] {
	background-image: url(../img/wistation-lr2.png);
}
div[customType=HMIMap_controls_item][item="totem"] {
	background-image: url(../img/witotem-lr2.png);
}
div[customType=HMIMap_controls_item][item="uncertainty"] {
	background-image: url(../img/uncertainty.png);
}

div[customType=HMIMap_controls_item][customSelected="1"] {
	color: #000000;
	background-color: #cccccc;
	box-shadow: 2px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

div[customType=HMIMap_controls_item]:hover {
	color: #000000;
	box-shadow: 2px 0px 2px 0px rgba(0, 0, 0, 0.3);
}

div[customType=HMIMap_googleMap] {
	position: absolute;
	/* left: 52px; */
	left: 0px;
	right: 0;
	height: 100%;
	text-align: center;
}

div[customType=HMIMap_googleMap_container] {
	position: absolute;
	width: 100%;
	height: 100%;
}
div[customType=HMITitle] {
	position: absolute;
	top: 10px;
	left: 15px;
	right: 15px;
	height: 60px;
	font-size: 32px;
	font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	text-align: center;
}
div[customType=HMIStationList] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
}

div[customType=HMIStationList_filters] {
	text-align: center;
}
input[customType=HMIStationList_filters_search] {
	width: 500px;
	font-size: 18px;
}

div[customType=HMIStationList_station] {
	position: relative;
	right: 5px;
	height: 70px;
	margin-top: 7px;
	margin-bottom: 7px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
}

div[customType=HMIStationList_station][status=ready] {
	background-color:#53a000;
	color:#d8f7ce;
}
div[customType=HMIStationList_station][status=throttled] {
	background-color:#dbd900;
	color:#f6fdd5;
}
div[customType=HMIStationList_station][status=outofservice],
div[customType=HMIStationList_station][status=unknown] {
	background-color:#a00000;
	color:#f7cece;
	animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
}
div[customType=HMIStationList_station][status=maintenance] {
	background-color:#a07500;
	color:#f7e4ce;
}
div[customType=HMIStationList_station][status=disabled] {
	background-color:#858585;
	color:#dddddd;
}

div[customType=HMIStationList_station]:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.7), 0px 8px 8px 0px rgba(255, 255, 255, 0.7) inset;
}

*[customType^=HMIStationList_station_] {
	position: absolute;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
div[customType=HMIStationList_station_icons] {
	top: 10px;
	bottom: 10px;
	left: 10px;
	width: 70px;
}
div[customType=HMIStationList_station_icon] {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(../img/wistation-lr.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
div[customType=HMIStationList_station_status] {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
div[status=outofservice] div[customType=HMIStationList_station_status],
div[status=unknown] div[customType=HMIStationList_station_status] {
	background-image: url(../img/disconnected.png);
	filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
	-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
}
div[status=maintenance] div[customType=HMIStationList_station_status] {
	background-image: url(../img/parameters.png);
	filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
	-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
}
div[status=disabled] div[customType=HMIStationList_station_status] {
	background-image: url(../img/logout.png);
	filter: grayscale(100%) brightness(110%) contrast(0.9);
	-webkit-filter: grayscale(100%) brightness(110%) contrast(0.9);
}

div[customType=HMIStationList_station_name] {
	top: 10px;
	left: 90px;
	right: 360px;
	font-size: 19px;
	font-weight: bold;
}
div[customType=HMIStationList_station_details] {
	bottom: 8px;
	left: 90px;
	right: 360px;
	font-size: 15px;
}
div[customType^=HMIStationList_station_stockStatus] {
	width: 160px;
	height: 18px;
	font-size: 13px;
}
div[customType=HMIStationList_station] div[customType^=HMIStationList_station_stockStatus][status="-1"] {
	color: rgba(255, 255, 255, 0.4);
}
div[customType=HMIStationList_station]:not([status=unknown]) div[customType^=HMIStationList_station_stockStatus][status="0"] {
	background-color: #a00000;
	color: #f7cece;
	animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
}
div[customType=HMIStationList_station_stockStatus1] {
	top: 10px;
	right: 185px;
}
div[customType=HMIStationList_station_stockStatus2] {
	top: 28px;
	right: 185px;
}
div[customType=HMIStationList_station_stockStatus3] {
	top: 46px;
	right: 185px;
}
div[customType=HMIStationList_station_stockStatus4] {
	top: 10px;
	right: 10px;
}
div[customType=HMIStationList_station_stockStatus5] {
	top: 28px;
	right: 10px;
}
div[customType=HMIStationList_station_stockStatusWater] {
	top: 46px;
	right: 10px;
}


















@media(max-width:450px) {
	div[customType=HMIStationList] {
		position: absolute;
		top: 60px;
		left: 15px;
		right: 5px;
	}
	
	div[customType=HMIStationList_filters] {
		text-align: center;
	}
	input[customType=HMIStationList_filters_search] {
		width: 80%;
		font-size: 16px;
	}
	
	div[customType=HMIStationList_station] {
		position: relative;
		right: 5px;
		height: 100px;
		margin-top: 7px;
		margin-bottom: 7px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		border-radius: 4px;
		overflow: hidden;
		cursor: pointer;
	}
	
	div[customType=HMIStationList_station][status=ready] {
		background-color:#53a000;
		color:#d8f7ce;
	}
	div[customType=HMIStationList_station][status=throttled] {
		background-color:#dbd900;
		color:#f6fdd5;
	}
	div[customType=HMIStationList_station][status=outofservice],
	div[customType=HMIStationList_station][status=unknown] {
		background-color:#a00000;
		color:#f7cece;
		animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
	}
	div[customType=HMIStationList_station][status=maintenance] {
		background-color:#a07500;
		color:#f7e4ce;
	}
	div[customType=HMIStationList_station][status=disabled] {
		background-color:#858585;
		color:#dddddd;
	}
	
	div[customType=HMIStationList_station]:hover {
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.7), 0px 8px 8px 0px rgba(255, 255, 255, 0.7) inset;
	}
	
	*[customType^=HMIStationList_station_] {
		position: absolute;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	div[customType=HMIStationList_station_icons] {
		top: 10px;
		bottom: 10px;
		left: 10px;
		width: 70px;
	}
	div[customType=HMIStationList_station_icon] {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-image: url(../img/wistation-lr.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center top;
	}
	div[customType=HMIStationList_station_status] {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	div[status=outofservice] div[customType=HMIStationList_station_status],
	div[status=unknown] div[customType=HMIStationList_station_status] {
		background-image: url(../img/disconnected.png);
		filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
		-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
	}
	div[status=maintenance] div[customType=HMIStationList_station_status] {
		background-image: url(../img/parameters.png);
		filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
		-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
	}
	div[status=disabled] div[customType=HMIStationList_station_status] {
		background-image: url(../img/logout.png);
		filter: grayscale(100%) brightness(110%) contrast(0.9);
		-webkit-filter: grayscale(100%) brightness(110%) contrast(0.9);
	}
	
	div[customType=HMIStationList_station_name] {
		top: 12%;
		left: 90px;
		right: 0px;
		font-size: 12px;
		font-weight: bold;
		white-space: initial;
	}
	div[customType=HMIStationList_station_details] {
		bottom: 17%;
		left: 90px;
		right: 0px;
		font-size: 12px;
		white-space: initial;
	}
	div[customType^=HMIStationList_station_stockStatus] {
		display: none;
	}
	div[customType=HMIStationList_station] div[customType^=HMIStationList_station_stockStatus][status="-1"] {
		color: rgba(255, 255, 255, 0.4);
	}
	div[customType=HMIStationList_station]:not([status=unknown]) div[customType^=HMIStationList_station_stockStatus][status="0"] {
		background-color: #a00000;
		color: #f7cece;
		animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
	}

}*[customType^=HMIStation] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

input[type=text][customType^=HMIStation] {
	padding: 8px;
}
select[customType^=HMIStation] {
	padding: 7px;
}

div[customType=HMIStation] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
}

/* HMIStation / [enfants directs] */
div[customType=HMIStation]>div[customType^=HMIStation_]:not([customType^=HMIStation_title]) {
	display: inline-block;
	position: relative;
	margin-top: 7px;
	margin-bottom: 7px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	overflow: hidden;
}

/* HMIStation / name */
input[customType=HMIStation_name] {
	width: 480px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}

/* HMIStation / title* */
div[customType^=HMIStation_title] {
	padding-top: 30px;
	padding-bottom: 12px;
	font-size: 26px;
	font-weight: bold;
}

/* HMIStation / subTitle* */
div[customType^=HMIStation_subTitle] {
	padding-top: 20px;
	padding-bottom: 8px;
	font-size: 22px;
	font-weight: bold;
	border-top: 1px solid #bbbbbb;
}

/* HMIStation / metadata     et     HMIStation / supervision */
div[customType=HMIStation_metadata] input, div[customType=HMIStation_metadata] select {
	color: #ffffff;
}
div[customType=HMIStation_metadata] {
	height: 255px;
	width: 610px;
}
div[customType=HMIStation_supervision] {
	height: 170px;
	width: 610px;
}
div[customType=HMIStation][status=ready] div[customType=HMIStation_metadata],
div[customType=HMIStation][status=ready] div[customType=HMIStation_supervision]{
	background-color:#53a000;
	color:#d8f7ce;
}
div[customType=HMIStation][status=throttled] div[customType=HMIStation_metadata],
div[customType=HMIStation][status=throttled] div[customType=HMIStation_supervision]{
	background-color:#dbd900;
	color:#f6fdd5;
}
div[customType=HMIStation][status=outofservice] div[customType=HMIStation_metadata],
div[customType=HMIStation][status=unknown] div[customType=HMIStation_metadata],
div[customType=HMIStation][status=outofservice] div[customType=HMIStation_supervision],
div[customType=HMIStation][status=unknown] div[customType=HMIStation_supervision] {
	background-color:#a00000;
	color:#f7cece;
	animation: redFlash 1000ms steps(2, jump-both) infinite alternate
}
div[customType=HMIStation][status=maintenance] div[customType=HMIStation_metadata],
div[customType=HMIStation][status=maintenance] div[customType=HMIStation_supervision]{
	background-color:#a07500;
	color:#f7e4ce;
}
div[customType=HMIStation][status=disabled] div[customType=HMIStation_metadata],
div[customType=HMIStation][status=disabled] div[customType=HMIStation_supervision]{
	background-color:#858585;
	color:#dddddd;
}

/* HMIStation / metadata / icons */
div[customType=HMIStation_icons] {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	width: 120px;
}
div[customType=HMIStation_icons_icon] {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(../img/wistation-lr.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
}
div[customType=HMIStation_icons_status] {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
div[status=throttled] div[customType=HMIStation_icons_status] {
	background-image: url(../img/throttled.png);
	filter: invert(100%) sepia() saturate(1000%) hue-rotate(0deg) contrast(0.4);
	-webkit-filter: invert(100%) sepia() saturate(1000%) hue-rotate(0deg) contrast(0.4);
}
div[status=outofservice] div[customType=HMIStation_icons_status],
div[status=unknown] div[customType=HMIStation_icons_status] {
	background-image: url(../img/disconnected.png);
	filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
	-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
}
div[status=maintenance] div[customType=HMIStation_icons_status] {
	background-image: url(../img/parameters.png);
	filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
	-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
}
div[status=disabled] div[customType=HMIStation_icons_status] {
	background-image: url(../img/logout.png);
	filter: grayscale(100%) brightness(110%) contrast(0.9);
	-webkit-filter: grayscale(100%) brightness(110%) contrast(0.9);
}

/* HMIStation / metadata / stationEnabledText */
div[customType=HMIStation_metadata_stationEnabledText] {
	position: absolute;
	top: 12px;
	left: 160px;
	margin-left: 5px;
	font-size: 20px;
}

/* HMIStation / metadata / stationEnabled */
div[customType=HMIStation_metadata_stationEnabled] {
	position: absolute;
	top: 10px;
	left: 235px;
}

/* HMIStation / metadata / badgeReaderEnabledText */
div[customType=HMIStation_metadata_badgeReaderEnabledText] {
	position: absolute;
	top: 12px;
	left: 302px;
	width: 122px;
	text-align:right;
	font-size: 20px;
}

/* HMIStation / metadata / badgeReaderEnabled */
div[customType=HMIStation_metadata_badgeReaderEnabled] {
	position: absolute;
	top: 10px;
	left: 430px;
}

/* HMIStation / metadata / status */
div[customType=HMIStation_metadata_status] {
	position: absolute;
	top: 50px;
	left: 160px;
	right: 110px;
	margin-left: 5px;
	text-align: left;
}

/* HMIStation / metadata / status */
div[customType=HMIStation_metadata_lastStatusUpdate] {
	position: absolute;
	top: 75px;
	left: 160px;
	right: 110px;
	margin-left: 5px;
	text-align: left;
}

/* HMIStation / metadata / SN */
div[customType=HMIStation_metadata_SN] {
	position: absolute;
	top: 100px;
	left: 160px;
	right: 20px;
	margin-left: 5px;
	text-align: left;
}

/* HMIStation / metadata / inputs */
input[type=text][customType^=HMIStation_metadata_]:not([customType=HMIStation_metadata_missingSN_reuseSN]), select[customType^=HMIStation_metadata_] {
	position: absolute;
}
input[customType=HMIStation_metadata_customerName] {
	top: 125px;
	left: 160px;
	width: 195px;
}
input[customType=HMIStation_metadata_customerCode] {
	top: 165px;
	left: 160px;
	width: 85px;
}
input[customType=HMIStation_metadata_customerSite] {
	top: 165px;
	left: 270px;
	width: 85px;
}
select[customType=HMIStation_metadata_currency] {
	top: 165px;
	left: 380px;
	width: 207px;
}
input[customType=HMIStation_metadata_lat] {
	top: 205px;
	left: 160px;
	width: 85px;
}
input[customType=HMIStation_metadata_lng] {
	top: 205px;
	left: 270px;
	width: 85px;
}
select[customType=HMIStation_metadata_agency] {
	top: 205px;
	left: 380px;
	width: 207px;
}

/* HMIStation / metadata / buzzerEnabledText */
div[customType=HMIStation_metadata_buzzerEnabledText] {
	position: absolute;
	top: 135px;
	left: 460px;
	width: 122px;
	text-align: left;
	font-size: 20px;
}

/* HMIStation / metadata / buzzerEnabled */
div[customType=HMIStation_metadata_buzzerEnabled] {
	position: absolute;
	top: 132px;
	left: 530px;
}

/* HMIStation / metadata / QRCode */
img[customType=HMIStation_metadata_QRCode] {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 76px;
}

/* HMIStation / metadata / QRCode / imgDL */
div[customType=HMIStation_metadata_QRCode_imgDL] {
	position: absolute;
	top: 10px;
	right: 20px;
	height: 39px;
	width: 76px;
	cursor: pointer;
}
div[customType=HMIStation_metadata_QRCode_imgDL]:hover {
	background-color: rgba(0, 0, 0, 0.05);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIStation / metadata / SNLabel */
img[customType=HMIStation_metadata_SNLabel] {
	position: absolute;
	top: 60px;
	right: 20px;
	width: 76px;
}

/* HMIStation / metadata / SNLabel / imgDL */
div[customType=HMIStation_metadata_SNLabel_imgDL] {
	position: absolute;
	top: 60px;
	right: 20px;
	height: 39px;
	width: 76px;
	cursor: pointer;
}
div[customType=HMIStation_metadata_SNLabel_imgDL]:hover {
	background-color: rgba(0, 0, 0, 0.05);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIStation / metadata / missingSN */
div[customType=HMIStation_metadata_missingSN] {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.95);
	border-width: 5px;
	border-color: rgba(0, 0, 0, 0.95);
	border-style: solid;
	font-weight: bold;
}
div[customType^=HMIStation_metadata_missingSN_text] {
    overflow: visible;
    text-overflow: ellipsis;
    white-space: normal;
	text-align: center;
	margin: 15px;
}
input[customType=HMIStation_metadata_missingSN_generateSN] {
	font-size: 16px;
}
input[customType=HMIStation_metadata_missingSN_reuseSN] {
	font-size: 16px;
	text-align: center;
}



/* HMIStation / supervision / temperature */
div[customType=HMIStation_supervision_temperature] {
	position: absolute;
	top: 10px;
	left: 20px;
	right: 20px;
	text-align: left;
}

/* HMIStation / supervision / throttled */
div[customType=HMIStation_supervision_throttled] {
	position: absolute;
	top: 40px;
	left: 20px;
	right: 20px;
	bottom: 10px;
	text-align: left;
	white-space: normal;
}



/* HMIStation / stocks / table */
table[customType=HMIStation_stocks_table] {
	margin: 10px;
	border-spacing: 10px;
}

input[customType^=HMIStation_stocks_table_] {
	width: 50px;
	text-align: center;
}

/* HMIStation / stocks / table / thead */
th[customType^=HMIStation_stocks_table_thead_tr_th] {
	padding-bottom: 10px;
}

img[customType=HMIStation_stocks_table_thead_tr_th_img] {
	height: 70px;
}
div[customType=HMIStation_stocks_table_thead_tr_th_imgWater] {
	height: 50px;
	background-image: url(../img/tap.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	filter: invert(30%) grayscale(100%) brightness(150%) sepia(100%) hue-rotate(148deg) saturate(900%) contrast(0.8);
	-webkit-filter: invert(30%) grayscale(100%) brightness(150%) sepia(100%) hue-rotate(148deg) saturate(900%) contrast(0.8);
}

/* HMIStation / stocks / table / tbody */
th[customType^=HMIStation_stocks_table_tbody_tr_th],
td[customType^=HMIStation_stocks_table_tbody_tr_td] {
	padding-left: 4px;
	padding-right: 4px;
}
td[customType=HMIStation_stocks_table_tbody_tr_tdTitle] {
	text-align: right;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 2px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset;
	background-color: #53a000;
	color: #d8f7ce;
	min-width: 71px;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
	cursor: pointer;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.status.disabledM"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
	background-color: #858585;
	color: rgba(255, 255, 255, 0.4);
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.stock.forced"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
	background-color:#a07500;
	color:#f7e4ce;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.stock.empty"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]),
tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.status.outOfService2"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
	background-color: #a00000;
	color: #f7cece;
	animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) span {
	font-size: 10px;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td[stockConsistent="0"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) span {
	/* background-color: #a05300; */
	/* color: #f7e6ce; */
	opacity: 1;
	animation: opacityBlink 1000ms infinite;
}
tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]):hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5), 0px 4px 4px 0px rgba(255, 255, 255, 0.5) inset;
}


/* HMIStation / stocks / buttonCalibrate */
input[customType=HMIStation_stocks_buttonCalibrate] {
	margin-top: 3px;
	margin-bottom: 10px;
	font-size: 16px;
}


/* HMIStation / stocks / buttonDownloadCalibrationSummary */
input[customType=HMIStation_stocks_buttonDownloadCalibrationSummary] {
	margin-top: 3px;
	margin-bottom: 10px;
	font-size: 16px;
}

/* HMIStation / prestations / divEnabled */
div[customType=HMIStation_prestations_divEnabled] {
	margin-left: auto;
	margin-right: auto;
	width: 300px;
}

/* HMIStation / prestations / enabledText */
div[customType=HMIStation_prestations_enabledText] {
	margin-top: 15px;
	margin-bottom: -20px;
	margin-left: 80px;
	text-align: left;
	font-size: 20px;
}

/* HMIStation / prestations / enabled */
div[customType=HMIStation_prestations_enabled] {
	position: relative;
	top: -7px;
	left: 10px;
}








/* HMIStation / prestationsScheduled / addPrestation */
div[customType^=HMIStation_prestationsScheduled_addPrestation] {
	position: relative;
	height: 30px;
	width: 210px;
	margin-top: 20px;
	margin-bottom: 20px;
}
div[customType^=HMIStation_prestationsScheduled_addPrestation] > div {
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	width: 40px;
	background-image: url(../img/add-prestation.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}
div[customType^=HMIStation_prestationsScheduled_addPrestation] > span {
	position: absolute;
	top: 21px;
	left: 59px;
	font-weight: bold;
	font-size: 15px;
}

/* HMIStation / prestationsScheduled / table */
table[customType=HMIStation_prestationsScheduled_table] {
	position: relative;
	margin: 10px auto 10px auto;
	border-spacing: 0px;
	text-align: center;
	min-width: 600px;
}
thead[customType=HMIStation_prestationsScheduled_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
th[customType=HMIStation_prestationsScheduled_table_thead_tr_th] {
	padding: 10px 20px 10px 20px;
}
tr[customType=HMIStation_prestationsScheduled_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
td[customType^=HMIStation_prestationsScheduled_table_tbody_tr_td] {
	padding: 3px 5px 3px 5px;
	font-size: 90%;
}
td[customType=HMIStation_prestationsScheduled_table_tbody_tr_tdDeleteIcon] {
	width: 10px;
	background-image: url(../img/delete.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	filter: invert(50%);
	-webkit-filter: invert(50%);
}
td[customType=HMIStation_prestationsScheduled_table_tbody_tr_td] > img {
	height: 20px;
}
tr[customType=HMIStation_prestationsScheduled_table_tbody_tr]:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.15);
	color: rgba(0, 0, 0, 0.75);
}
td[customType=HMIStation_prestationsScheduled_table_tbody_tr_tdDeleteIcon]:hover {
	/* border-radius: 2px; */
    /* box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset; */
	/* background-color: rgba(255, 255, 255, 0.1); */
	filter: invert(0%);
	-webkit-filter: invert(0%);
}










/* HMIStation / prestations / dateSelector */
div[customType=HMIStation_prestations_dateSelector] {
	margin: 10px;
}

/* HMIStation / prestations / dateSelector / * */
span[customType^=HMIStation_prestations_dateSelector_] {
	padding: 8px;
}

/* HMIStation / prestations / dateSelector / *Text */
span[customType^=HMIStation_prestations_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIStation / prestations / DLImg */
div[customType=HMIStation_prestations_DLimg] {
	position: absolute;
	top: 70px;
	right: 21px;
	width: 24px;
	height: 24px;
	background-image: url(../img/excel.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* HMIStation / prestations / DL */
div[customType=HMIStation_prestations_DL] {
	position: absolute;
	top: 64px;
	right: 15px;
	width: 34px;
	height: 34px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	cursor: pointer;
}
div[customType=HMIStation_prestations_DL]:hover {
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(255, 255, 255, 0.2);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIStation / prestations / table */
table[customType=HMIStation_prestations_table] {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIStation_prestations_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIStation_prestations_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIStation_prestations_table_thead_tr_th],
td[customType=HMIStation_prestations_table_tbody_tr_td] {
	padding: 10px 20px 10px 20px;
}
td[customType=HMIStation_prestations_table_tbody_tr_td]:nth-last-child(1) {
	text-align: left;
}

/* HMIStation / stats / dateSelector */
div[customType=HMIStation_stats_dateSelector] {
	margin: 10px;
}

/* HMIStation / stats / dateSelector / * */
span[customType^=HMIStation_stats_dateSelector_] {
	padding: 8px;
}

/* HMIStation / stats / dateSelector / *Text */
span[customType^=HMIStation_stats_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIStation / stats / table */
table[customType=HMIStation_stats_table] {
	margin: 10px;
	border-spacing: 10px;
}

/* HMIStation / stats / table / thead */
th[customType^=HMIStation_stats_table_thead_tr_th] {
	padding-bottom: 10px;
}
img[customType=HMIStation_stats_table_thead_tr_th_img] {
	height: 70px;
}

/* HMIStation / stats / table / tbody */
th[customType^=HMIStation_stats_table_tbody_tr_th],
td[customType^=HMIStation_stats_table_tbody_tr_td] {
	padding-left: 4px;
	padding-right: 4px;
}
td[customType=HMIStation_stats_table_tbody_tr_tdTitle] {
	text-align: right;
}

/* HMIStation / bagDeliveries / dateSelector */
div[customType=HMIStation_bagDeliveries_dateSelector] {
	margin: 10px;
}

/* HMIStation / bagDeliveries / dateSelector / * */
span[customType^=HMIStation_bagDeliveries_dateSelector_] {
	padding: 8px;
}

/* HMIStation / bagDeliveries / dateSelector / *Text */
span[customType^=HMIStation_bagDeliveries_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIStation / bagDeliveries / table */
table[customType=HMIStation_bagDeliveries_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIStation_bagDeliveries_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIStation_bagDeliveries_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIStation_bagDeliveries_table_thead_tr_th],
td[customType=HMIStation_bagDeliveries_table_tbody_tr_td] {
	padding: 10px 20px 10px 20px;
}
td[customType=HMIStation_bagDeliveries_table_tbody_tr_td] > img {
	height: 20px;
}

/* HMIStation / consumptions / dateSelector */
div[customType=HMIStation_consumptions_dateSelector] {
	margin: 10px;
}

/* HMIStation / consumptions / dateSelector / * */
span[customType^=HMIStation_consumptions_dateSelector_] {
	padding: 8px;
}

/* HMIStation / consumptions / dateSelector / *Text */
span[customType^=HMIStation_consumptions_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIStation / consumptions / DLImg */
div[customType=HMIStation_consumptions_DLimg] {
	position: absolute;
	top: 21px;
	right: 21px;
	width: 24px;
	height: 24px;
	background-image: url(../img/excel.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* HMIStation / consumptions / DL */
div[customType=HMIStation_consumptions_DL] {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	cursor: pointer;
}
div[customType=HMIStation_consumptions_DL]:hover {
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(255, 255, 255, 0.2);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIStation / consumptions / table */
table[customType=HMIStation_consumptions_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIStation_consumptions_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIStation_consumptions_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIStation_consumptions_table_thead_tr_th],
td[customType=HMIStation_consumptions_table_tbody_tr_td] {
	padding: 10px 20px 10px 20px;
}
td[customType=HMIStation_consumptions_table_tbody_tr_td]:nth-last-child(1) {
	text-align: left;
}
td[customType=HMIStation_consumptions_table_tbody_tr_td] > img {
	height: 20px;
}

/* HMIStation / badges */
div[customType=HMIStation_badges] {
	/* position: relative; */
	/* width: 600px; */
}

/* HMIStation / badges / addBadge */
div[customType^=HMIStation_badges_addBadge] {
	position: relative;
	height: 30px;
	width: 180px;
	margin-top: 20px;
	margin-bottom: 20px;
}
div[customType^=HMIStation_badges_addBadge] > div {
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	width: 40px;
	background-image: url(../img/add-user.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}
div[customType^=HMIStation_badges_addBadge] > span {
	position: absolute;
	top: 21px;
	left: 59px;
	font-weight: bold;
	font-size: 15px;
}

/* HMIStation / badges / badgeList */
div[customType=HMIStation_badges_badgeList] {
	position: relative;
	margin-top: 10px;
}

/* HMIStation / badges / badgeList / badge */
div[customType=HMIStation_badges_badgeList_badge] {
	position: relative;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 7px;
	margin-bottom: 7px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	border-radius: 4px;
	overflow: hidden;
}

/* HMIStation / badges / badgeList / badge / name */
div[customType=HMIStation_badges_badgeList_badge_name] {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 22px;
	font-weight: bold;
}

/* HMIStation / badges / badgeList / badge / uid */
div[customType=HMIStation_badges_badgeList_badge_uid] {
	position: absolute;
	top: 50px;
	left: 10px;
}

/* HMIStation / badges / badgeList / badge / img */
img[customType=HMIStation_badges_badgeList_badge_img] {
	position: absolute;
	top: 10px;
	right: 60px;
	height: 60px;
	width: 95px;
}

/* HMIStation / badges / badgeList / badge / imgDL */
div[customType=HMIStation_badges_badgeList_badge_imgDL] {
	position: absolute;
	top: 10px;
	right: 60px;
	height: 60px;
	width: 95px;
	cursor: pointer;
}
div[customType=HMIStation_badges_badgeList_badge_imgDL]:hover {
	background-color: rgba(255, 255, 255, 0.7);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* HMIStation / badges / badgeList / badge / deleteIcon */
div[customType=HMIStation_badges_badgeList_badge_deleteIcon] {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 60px;
	cursor: pointer;
	background-image: url(../img/delete.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	filter: invert(50%);
	-webkit-filter: invert(50%);
}
div[customType=HMIStation_badges_badgeList_badge_deleteIcon]:hover {
	/* border-radius: 2px; */
    /* box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset; */
	/* background-color: rgba(255, 255, 255, 0.1); */
	filter: invert(0%);
	-webkit-filter: invert(0%);
}

/* HMIStation / badges / badgeList / badge / quotasTable */
table[customType=HMIStation_badges_badgeList_badge_quotasTable] {
	position: relative;
	margin: 85px 10px 10px 10px;
	border-spacing: 0px;
	text-align: center;
	min-width: 600px;
}
tr[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
td[customType^=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td] {
	padding: 3px 5px 3px 5px;
}
td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td]:nth-child(2) {
	text-align: left;
}
td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td]:nth-last-child(2) {
	padding-right: 20px;
}
td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_tdDeleteIcon] {
	width: 10px;
	cursor: pointer;
	background-image: url(../img/delete.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	filter: invert(50%);
	-webkit-filter: invert(50%);
}
td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td] > img {
	height: 20px;
}
td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_tdDeleteIcon]:hover {
	/* border-radius: 2px; */
    /* box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset; */
	/* background-color: rgba(255, 255, 255, 0.1); */
	filter: invert(0%);
	-webkit-filter: invert(0%);
}

/* HMIStation / badges / badgeList / badge / quotasTable / input* */
input[customType^=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td_input] {
	width: 25px;
}

/* HMIStation / badges / badgeList / badge / addQuota */
div[customType=HMIStation_badges_badgeList_badge_addQuota] {
	position: relative;
	height: 15px;
	width: 260px;
	margin-top: 20px;
	margin-bottom: 20px;
}
div[customType=HMIStation_badges_badgeList_badge_addQuota] > div {
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	width: 40px;
	background-image: url(../img/add-quota.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}
div[customType=HMIStation_badges_badgeList_badge_addQuota] > span {
	position: absolute;
	top: 13px;
	left: 57px;
}

/* HMIStation / dosages / table */
table[customType=HMIStation_dosages_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIStation_dosages_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIStation_dosages_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIStation_dosages_table_thead_tr_th] {
	padding: 6px 5px 6px 5px;
}
td[customType=HMIStation_dosages_table_tbody_tr_td] {
	padding: 3px 5px 3px 5px;
}
td[customType=HMIStation_dosages_table_tbody_tr_td]:nth-child(2) {
	text-align: left;
}
td[customType=HMIStation_dosages_table_tbody_tr_td] > img {
	height: 20px;
}

/* HMIStation / dosages / input* */
input[customType^=HMIStation_dosages_table_tbody_tr_td_input] {
	width: 35px;
}

/* HMIStation / logsStationHome / dateSelector */
div[customType=HMIStation_logsStationHome_dateSelector] {
	margin: 10px;
}

/* HMIStation / logsStationHome / dateSelector / * */
span[customType^=HMIStation_logsStationHome_dateSelector_] {
	padding: 8px;
}

/* HMIStation / logsStationHome / dateSelector / *Text */
span[customType^=HMIStation_logsStationHome_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIStation / logsStationHome / table */
table[customType=HMIStation_logsStationHome_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIStation_logsStationHome_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIStation_logsStationHome_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIStation_logsStationHome_table_thead_tr_th],
td[customType=HMIStation_logsStationHome_table_tbody_tr_td] {
	padding: 3px 5px 5px 3px;
}
td[customType=HMIStation_logsStationHome_table_tbody_tr_td]:nth-last-child(1) {
	text-align: left;
	max-width: 600px;
	white-space: normal;
}

/* HMIStation / configNotif */
div[customType=HMIStation_configNotif] {
	padding: 10px;
}

/* HMIStation / configNotif / table */
table[customType^=HMIStation_configNotif_] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
table[customType=HMIStation_configNotif_tableInternal] {
	margin-bottom: 70px;
}
table[customType=HMIStation_configNotif_tableInvoice] {
	margin-bottom: 70px;
}
table[customType=HMIStation_configNotif_tableInvoice] td:nth-child(2) {
	text-align: left;
}
div[customType=HMIStation_configNotif_invoiceEnabled] {
	position: relative;
	top: 7px;
}
span[customType=HMIStation_configNotif_table_tbody_tr_td_dateSelector] {
	position: relative;
	top: 16px;
	font-size: 14px;
	padding: 8px;
}
span[customType=HMIStation_configNotif_reassort_Enabled_text] {
	position: relative;
	top: -22px;
	left: 10px;
}
table[customType=HMIStation_configNotif_tableInvoice] {
	margin-top: 70px;
}
input[customType=HMIStation_configNotif_table_tbody_tr_td_invoiceComment_input] {
	width: 90%;
}
thead[customType^=HMIStation_configNotif_] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
td[customType=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=Threshold_input] {
	width: 30px;
}
td[customType=HMIStation_configNotif_table_tbody_tr_td] > input[customType^=HMIStation_configNotif_table_tbody_tr_td_inputReassort_Nb] {
	width: 20px;
}
td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=Emails_input],
td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=EmailsClt_input],
td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=EmailAddresses],
td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=SMS_input],
td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=SMSClt_input] {
	width: 500px;
}
input[customType=HMIStation_configNotif_table_tbody_tr_td_inputReassort_Notification_EmailAddresses] {
	text-align: center;
}
th[customType=HMIStation_configNotif_table_thead_tr_th],
td[customType=HMIStation_configNotif_table_tbody_tr_td] {
	padding: 3px 5px 5px 3px;
}













@media(max-width:450px) {
	*[customType^=HMIStation] {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: pre-line;
	}

	input[type=text][customType^=HMIStation] {
		padding: 8px;
	}
	select[customType^=HMIStation] {
		padding: 7px;
	}
	
	div[customType=HMIStation] {
		position: absolute;
		top: 60px;
		left: 15px;
		right: 5px;
		text-align: center;
	}
	
	/* HMIStation / [enfants directs] */
	div[customType=HMIStation]>div[customType^=HMIStation_]:not([customType^=HMIStation_title]) {
		display: inline-block;
		position: relative;
		margin-top: 7px;
		margin-bottom: 7px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		overflow: hidden;
		font-size: 9px;
		width: 95%;
	}
	
	/* HMIStation / name */
	input[customType=HMIStation_name] {
		width: 80%;
		font-size: 17px;
		font-weight: bold;
		text-align: center;
	}
	
	/* HMIStation / title* */
	div[customType^=HMIStation_title] {
		padding-top: 30px;
		padding-bottom: 12px;
		font-size: 14px;
		font-weight: bold;
	}
	
	/* HMIStation / metadata     et     HMIStation / supervision */
	div[customType=HMIStation_metadata] input, div[customType=HMIStation_metadata] select {
		color: #ffffff;
	}
	div[customType=HMIStation_metadata] {
		height: 500px;
		width: 610px;
	}
	div[customType=HMIStation_supervision] {
		height: 170px;
		width: 610px;
	}
	div[customType=HMIStation][status=ready] div[customType=HMIStation_metadata],
	div[customType=HMIStation][status=ready] div[customType=HMIStation_supervision]{
		background-color:#53a000;
		color:#d8f7ce;
	}
	div[customType=HMIStation][status=throttled] div[customType=HMIStation_metadata],
	div[customType=HMIStation][status=throttled] div[customType=HMIStation_supervision]{
		background-color:#dbd900;
		color:#f6fdd5;
	}
	div[customType=HMIStation][status=outofservice] div[customType=HMIStation_metadata],
	div[customType=HMIStation][status=unknown] div[customType=HMIStation_metadata],
	div[customType=HMIStation][status=outofservice] div[customType=HMIStation_supervision],
	div[customType=HMIStation][status=unknown] div[customType=HMIStation_supervision] {
		background-color:#a00000;
		color:#f7cece;
		animation: redFlash 1000ms steps(2, jump-both) infinite alternate
	}
	div[customType=HMIStation][status=maintenance] div[customType=HMIStation_metadata],
	div[customType=HMIStation][status=maintenance] div[customType=HMIStation_supervision]{
		background-color:#a07500;
		color:#f7e4ce;
	}
	div[customType=HMIStation][status=disabled] div[customType=HMIStation_metadata],
	div[customType=HMIStation][status=disabled] div[customType=HMIStation_supervision]{
		background-color:#858585;
		color:#dddddd;
	}
	
	/* HMIStation / metadata / icons */
	div[customType=HMIStation_icons] {
		position: absolute;
		top: 10px;
		bottom: 10px;
		left: 10px;
		width: 120px;
	}
	div[customType=HMIStation_icons_icon] {
		position: absolute;
		top: -151px;
		bottom: 0;
		left: 0;
		right: 0;
		background-image: url(../img/wistation-lr.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center top;
	}
	div[customType=HMIStation_icons_status] {
		position: absolute;
		top: -136px;
		bottom: 266px;
		left: 16px;
		right: 19px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	div[status=throttled] div[customType=HMIStation_icons_status] {
		background-image: url(../img/throttled.png);
		filter: invert(100%) sepia() saturate(1000%) hue-rotate(0deg) contrast(0.4);
		-webkit-filter: invert(100%) sepia() saturate(1000%) hue-rotate(0deg) contrast(0.4);
	}
	div[status=outofservice] div[customType=HMIStation_icons_status],
	div[status=unknown] div[customType=HMIStation_icons_status] {
		background-image: url(../img/disconnected.png);
		filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
		-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
	}
	div[status=maintenance] div[customType=HMIStation_icons_status] {
		background-image: url(../img/parameters.png);
		filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
		-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
	}
	div[status=disabled] div[customType=HMIStation_icons_status] {
		background-image: url(../img/logout.png);
		filter: grayscale(100%) brightness(110%) contrast(0.9);
		-webkit-filter: grayscale(100%) brightness(110%) contrast(0.9);
	}
	
	/* HMIStation / metadata / stationEnabledText */
	div[customType=HMIStation_metadata_stationEnabledText] {
		position: absolute;
		top: 4.8%;
		left: 62%;
		margin-left: 5px;
		font-size: 20px;
	}
	
	/* HMIStation / metadata / stationEnabled */
	div[customType=HMIStation_metadata_stationEnabled] {
		position: absolute;
		top: 4%;
		left: 43%;
	}
	
	/* HMIStation / metadata / badgeReaderEnabledText */
	div[customType=HMIStation_metadata_badgeReaderEnabledText] {
		position: absolute;
		top: 12.5%;
		left: 54%;
		width: 122px;
		text-align: right;
		font-size: 20px;
	}
	
	/* HMIStation / metadata / badgeReaderEnabled */
	div[customType=HMIStation_metadata_badgeReaderEnabled] {
		position: absolute;
		top: 12%;
		left: 43%;
	}
	
	/* HMIStation / metadata / status */
	div[customType=HMIStation_metadata_status] {
		position: absolute;
		top: 22%;
		left: 4%;
		margin-left: 5px;
		text-align: left;
		font-size: 14px;
		width: 92%;
	}
	
	/* HMIStation / metadata / status */
	div[customType=HMIStation_metadata_lastStatusUpdate] {
		position: absolute;
		top: 29%;
		left: 4%;
		right: 110px;
		margin-left: 5px;
		text-align: left;
		font-size: 14px;
		width: 92%;
	}
	
	/* HMIStation / metadata / SN */
	div[customType=HMIStation_metadata_SN] {
		position: absolute;
		top: 36%;
		left: 4%;
		right: 20px;
		margin-left: 5px;
		text-align: left;
		font-size: 14px;
		width: 92%;
	}
	
	/* HMIStation / metadata / inputs */
	input[type=text][customType^=HMIStation_metadata_]:not([customType=HMIStation_metadata_missingSN_reuseSN]), select[customType^=HMIStation_metadata_] {
		position: absolute;
	}
	input[customType=HMIStation_metadata_customerName] {
		top: 42%;
		left: 3%;
		width: 88%;
	}
	input[customType=HMIStation_metadata_customerCode] {
		top: 50%;
		left: 3%;
		width: 88%;
	}
	input[customType=HMIStation_metadata_customerSite] {
		top: 58%;
		left: 3%;
		width: 88%;
	}
	select[customType=HMIStation_metadata_currency] {
		top: 66%;
		left: 3%;
		width: 92%;
	}
	input[customType=HMIStation_metadata_lat] {
		top: 74%;
		left: 3%;
		width: 88%;
	}
	input[customType=HMIStation_metadata_lng] {
		top: 82%;
		left: 3%;
		width: 88%;
	}
	select[customType=HMIStation_metadata_agency] {
		top: 90%;
		left: 3%;
		width: 92%;
	}
	
	/* HMIStation / metadata / buzzerEnabledText */
	div[customType=HMIStation_metadata_buzzerEnabledText] {
		position: absolute;
		top: 135px;
		left: 460px;
		width: 122px;
		text-align: left;
		font-size: 20px;
	}
	
	/* HMIStation / metadata / buzzerEnabled */
	div[customType=HMIStation_metadata_buzzerEnabled] {
		position: absolute;
		top: 132px;
		left: 530px;
	}
	
	/* HMIStation / metadata / QRCode */
	img[customType=HMIStation_metadata_QRCode] {
		display: none;
	}
	
	/* HMIStation / metadata / QRCode / imgDL */
	div[customType=HMIStation_metadata_QRCode_imgDL] {
		display: none;
	}

	div[customType=HMIStation_metadata_QRCode_imgDL]:hover {
		background-color: rgba(0, 0, 0, 0.05);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	
	/* HMIStation / metadata / missingSN */
	div[customType=HMIStation_metadata_missingSN] {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.95);
		border-width: 5px;
		border-color: rgba(0, 0, 0, 0.95);
		border-style: solid;
		font-weight: bold;
	}
	div[customType^=HMIStation_metadata_missingSN_text] {
		overflow: visible;
		text-overflow: ellipsis;
		white-space: normal;
		text-align: center;
		margin: 15px;
	}
	input[customType=HMIStation_metadata_missingSN_generateSN] {
		font-size: 16px;
	}
	input[customType=HMIStation_metadata_missingSN_reuseSN] {
		font-size: 16px;
		text-align: center;
	}
	
	
	
	/* HMIStation / supervision / temperature */
	div[customType=HMIStation_supervision_temperature] {
		position: absolute;
		top: 10px;
		left: 20px;
		right: 20px;
		text-align: center;
		font-size: 12px;
	}
	
	/* HMIStation / supervision / throttled */
	div[customType=HMIStation_supervision_throttled] {
		position: absolute;
		top: 40px;
		left: 20px;
		right: 20px;
		bottom: 10px;
		text-align: center;
		white-space: normal;
		font-size: 12px;
	}
	
	
	div[customType=HMIStation_stocks] {
		overflow: scroll !important;
	}
	/* HMIStation / stocks / table */
	table[customType=HMIStation_stocks_table] {
		margin: 10px;
		border-spacing: 10px;
	}
	
	input[customType^=HMIStation_stocks_table_] {
		width: 50px;
		text-align: center;
	}
	
	/* HMIStation / stocks / table / thead */
	th[customType^=HMIStation_stocks_table_thead_tr_th] {
		padding-bottom: 10px;
	}
	
	img[customType=HMIStation_stocks_table_thead_tr_th_img] {
		height: 70px;
	}
	div[customType=HMIStation_stocks_table_thead_tr_th_imgWater] {
		height: 50px;
		background-image: url(../img/tap.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center top;
		filter: invert(30%) grayscale(100%) brightness(150%) sepia(100%) hue-rotate(148deg) saturate(900%) contrast(0.8);
		-webkit-filter: invert(30%) grayscale(100%) brightness(150%) sepia(100%) hue-rotate(148deg) saturate(900%) contrast(0.8);
	}
	
	/* HMIStation / stocks / table / tbody */
	th[customType^=HMIStation_stocks_table_tbody_tr_th],
	td[customType^=HMIStation_stocks_table_tbody_tr_td] {
		padding-left: 4px;
		padding-right: 4px;
	}
	td[customType=HMIStation_stocks_table_tbody_tr_tdTitle] {
		text-align: right;
	}
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
		padding-top: 10px;
		padding-bottom: 10px;
		border-radius: 2px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset;
		background-color: #53a000;
		color: #d8f7ce;
		min-width: 71px;
	}
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
		cursor: pointer;
	}
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.status.disabledM"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
		background-color: #858585;
		color: rgba(255, 255, 255, 0.4);
	}
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.stock.forced"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
		background-color:#a07500;
		color:#f7e4ce;
	}
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.stock.empty"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]),
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td[customValue="global.status.outOfService2"]:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]) {
		background-color: #a00000;
		color: #f7cece;
		animation: redFlash 1000ms steps(2, jump-both) infinite alternate
	}
	tr[customType=HMIStation_stocks_table_tbody_trStock] > td:not([customType="HMIStation_stocks_table_tbody_tr_tdTitle"]):hover {
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5), 0px 4px 4px 0px rgba(255, 255, 255, 0.5) inset;
	}
	
	
	/* HMIStation / stocks / buttonCalibrate */
	input[customType=HMIStation_stocks_buttonCalibrate] {
		margin-top: 3px;
		margin-bottom: 22px;
		font-size: 16px;
	}
	
	
	
	




	/* HMIStation / prestations / divEnabled */
	div[customType=HMIStation_prestations_divEnabled] {
		margin-left: auto;
		margin-right: auto;
		width: 200px;
	}

	/* HMIStation / prestations / enabledText */
	div[customType=HMIStation_prestations_enabledText] {
		margin-top: 15px;
		margin-bottom: -20px;
		margin-left: 80px;
		text-align: left;
		font-size: 20px;
	}

	/* HMIStation / prestations / enabled */
	div[customType=HMIStation_prestations_enabled] {
		position: relative;
		top: -7px;
		left: 10px;
	}

	/* HMIStation / prestations / dateSelector */
	div[customType=HMIStation_prestations_dateSelector] {
		margin: 10px;
		height: 70px;
	}

	/* HMIStation / prestations / dateSelector / * */
	span[customType^=HMIStation_prestations_dateSelector_] {
		padding: 8px;
		margin-top: 38px;
		font-size: 11px;
	}

	/* HMIStation / prestations / dateSelector / *Text */
	span[customType^=HMIStation_prestations_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}

	/* HMIStation / prestations / DLImg */
	div[customType=HMIStation_prestations_DLimg] {
		position: absolute;
		top: 52px;
		right: 23px;
		width: 24px;
		height: 24px;
		background-image: url(../img/excel.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}

	/* HMIStation / prestations / DL */
	div[customType=HMIStation_prestations_DL] {
		position: absolute;
		top: 46px;
		right: 17px;
		width: 34px;
		height: 34px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		cursor: pointer;
	}
	div[customType=HMIStation_prestations_DL]:hover {
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(255, 255, 255, 0.2);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}

	/* HMIStation / prestations / table */
	table[customType=HMIStation_prestations_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 100%;
	}
	thead[customType=HMIStation_prestations_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIStation_prestations_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIStation_prestations_table_thead_tr_th],
	td[customType=HMIStation_prestations_table_tbody_tr_td] {
		padding: 10px 20px 10px 4px;
	}

	th[customType=HMIStation_prestations_table_thead_tr_th]:nth-child(3),
	td[customType=HMIStation_prestations_table_tbody_tr_td]:nth-child(3),
	th[customType=HMIStation_prestations_table_thead_tr_th]:nth-child(3),
	td[customType=HMIStation_prestations_table_tbody_tr_td]:nth-child(3) {
		display: none;
	}


	td[customType=HMIStation_prestations_table_tbody_tr_td]:nth-last-child(1) {
		text-align: left;
	}
	
	
	
	

	/* HMIStation / prestations / enabledText */
	div[customType=HMIStation_prestations_enabledText] {
		position: absolute;
		top: -2px;
		left: 43%;
		margin-left: 5px;
		font-size: 18px;
	}

	/* HMIStation / prestations / enabled */
	div[customType=HMIStation_prestations_enabled] {
		position: absolute;
		top: 9px;
		left: 23%;
	}

	/* HMIStation / stats / dateSelector */
	div[customType=HMIStation_stats_dateSelector] {
		margin: 10px;
	}

	/* HMIStation / stats / dateSelector / * */
	span[customType^=HMIStation_stats_dateSelector_] {
		padding: 8px;
	}

	/* HMIStation / stats / dateSelector / *Text */
	span[customType^=HMIStation_stats_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}

	/* HMIStation / stats / table */
	table[customType=HMIStation_stats_table] {
		margin: 10px;
		border-spacing: 10px;
	}

	/* HMIStation / stats / table / thead */
	th[customType^=HMIStation_stats_table_thead_tr_th] {
		padding-bottom: 10px;
	}
	img[customType=HMIStation_stats_table_thead_tr_th_img] {
		height: 70px;
	}

	/* HMIStation / stats / table / tbody */
	th[customType^=HMIStation_stats_table_tbody_tr_th],
	td[customType^=HMIStation_stats_table_tbody_tr_td] {
		padding-left: 4px;
		padding-right: 4px;
	}
	td[customType=HMIStation_stats_table_tbody_tr_tdTitle] {
		text-align: right;
	}

	/* HMIStation / bagDeliveries / dateSelector */
	div[customType=HMIStation_bagDeliveries_dateSelector] {
		margin: 10px;
	}
	
	/* HMIStation / bagDeliveries / dateSelector / * */
	span[customType^=HMIStation_bagDeliveries_dateSelector_] {
		padding: 8px;
	}
	
	/* HMIStation / bagDeliveries / dateSelector / *Text */
	span[customType^=HMIStation_bagDeliveries_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}
	
	/* HMIStation / bagDeliveries / table */
	table[customType=HMIStation_bagDeliveries_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 95%;
	}
	thead[customType=HMIStation_bagDeliveries_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIStation_bagDeliveries_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIStation_bagDeliveries_table_thead_tr_th],
	td[customType=HMIStation_bagDeliveries_table_tbody_tr_td] {
		padding: 10px 20px 10px 3px;
	}

	td[customType=HMIStation_bagDeliveries_table_tbody_tr_td] > img {
		height: 20px;
	}

	/* HMIStation / consumptions / dateSelector */
	div[customType=HMIStation_consumptions_dateSelector] {
		margin: 10px;
	}
	
	/* HMIStation / consumptions / dateSelector / * */
	span[customType^=HMIStation_consumptions_dateSelector_] {
		padding: 8px;
	}
	
	/* HMIStation / consumptions / dateSelector / *Text */
	span[customType^=HMIStation_consumptions_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}
	
	/* HMIStation / consumptions / DLImg */
	div[customType=HMIStation_consumptions_DLimg] {
		position: absolute;
		top: 21px;
		right: 21px;
		width: 24px;
		height: 24px;
		background-image: url(../img/excel.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	
	/* HMIStation / consumptions / DL */
	div[customType=HMIStation_consumptions_DL] {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 34px;
		height: 34px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		cursor: pointer;
	}
	div[customType=HMIStation_consumptions_DL]:hover {
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(255, 255, 255, 0.2);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	
	/* HMIStation / consumptions / table */
	table[customType=HMIStation_consumptions_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 95%;
	}
	thead[customType=HMIStation_consumptions_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIStation_consumptions_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIStation_consumptions_table_thead_tr_th],
	td[customType=HMIStation_consumptions_table_tbody_tr_td] {
		padding: 10px 20px 10px 3px;
	}

	th[customType=HMIStation_consumptions_table_thead_tr_th]:nth-child(3),
	td[customType=HMIStation_consumptions_table_tbody_tr_td]:nth-child(3),
	td[customType=HMIStation_consumptions_table_tbody_tr_td]:nth-child(4),
	th[customType=HMIStation_consumptions_table_thead_tr_th]:nth-child(5),
	th[customType=HMIStation_consumptions_table_thead_tr_th]:nth-child(6),
	td[customType=HMIStation_consumptions_table_tbody_tr_td]:nth-child(6) {
		display: none;
	}

	td[customType=HMIStation_consumptions_table_tbody_tr_td]:nth-last-child(1) {
		text-align: left;
	}
	td[customType=HMIStation_consumptions_table_tbody_tr_td] > img {
		height: 20px;
	}
	
	/* HMIStation / badges */
	div[customType=HMIStation_badges] {
		/* position: relative; */
		/* width: 600px; */
	}
	
	/* HMIStation / badges / addBadge */
	div[customType^=HMIStation_badges_addBadge] {
		position: relative;
		height: 30px;
		width: 180px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	div[customType^=HMIStation_badges_addBadge] > div {
		position: absolute;
		top: 5px;
		bottom: 5px;
		left: 5px;
		width: 40px;
		background-image: url(../img/add-user.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	div[customType^=HMIStation_badges_addBadge] > span {
		position: absolute;
		top: 21px;
		left: 59px;
		font-weight: bold;
	}
	
	/* HMIStation / badges / badgeList */
	div[customType=HMIStation_badges_badgeList] {
		position: relative;
		margin-top: 10px;
	}
	
	/* HMIStation / badges / badgeList / badge */
	div[customType=HMIStation_badges_badgeList_badge] {
		position: relative;
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 7px;
		margin-bottom: 7px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		border-radius: 4px;
		overflow: hidden;
		width: 92%;
	}
	
	/* HMIStation / badges / badgeList / badge / name */
	div[customType=HMIStation_badges_badgeList_badge_name] {
		position: absolute;
		top: 5px;
		left: 10px;
		font-size: 18px;
		font-weight: bold;
		max-width: 171px;
	}
	
	/* HMIStation / badges / badgeList / badge / uid */
	div[customType=HMIStation_badges_badgeList_badge_uid] {
		position: absolute;
		top: 50px;
		left: 10px;
	}
	
	/* HMIStation / badges / badgeList / badge / img */
	img[customType=HMIStation_badges_badgeList_badge_img] {
		position: absolute;
		top: 5px;
		right: 29px;
		height: 44px;
		width: 81px;
	}
	
	/* HMIStation / badges / badgeList / badge / imgDL */
	div[customType=HMIStation_badges_badgeList_badge_imgDL] {
		position: absolute;
		top: 6px;
		right: 28px;
		height: 43px;
		width: 82px;
		cursor: pointer;
	}
	div[customType=HMIStation_badges_badgeList_badge_imgDL]:hover {
		background-color: rgba(255, 255, 255, 0.7);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	
	/* HMIStation / badges / badgeList / badge / deleteIcon */
	div[customType=HMIStation_badges_badgeList_badge_deleteIcon] {
		position: absolute;
		top: -12px;
		right: 2px;
		width: 23px;
		height: 60px;
		cursor: pointer;
		background-image: url(../img/delete.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		filter: invert(50%);
		-webkit-filter: invert(50%);
	}
	div[customType=HMIStation_badges_badgeList_badge_deleteIcon]:hover {
		/* border-radius: 2px; */
		/* box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset; */
		/* background-color: rgba(255, 255, 255, 0.1); */
		filter: invert(0%);
		-webkit-filter: invert(0%);
	}
	
	/* HMIStation / badges / badgeList / badge / quotasTable */
	table[customType=HMIStation_badges_badgeList_badge_quotasTable] {
		position: relative;
		margin: 85px 10px 10px 10px;
		border-spacing: 0px;
		text-align: center;
		min-width: 600px;
	}
	tr[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	td[customType^=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td] {
		padding: 3px 5px 3px 5px;
		width: 8%;
		font-size: 11px;
	}
	td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td]:nth-child(2) {
		display: none;
	}
	td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td]:nth-last-child(2) {
		padding-right: 20px;
		font-size: 13px;
	}
	td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_tdDeleteIcon] {
		width: 10px;
		cursor: pointer;
		background-image: url(../img/delete.png);
		background-size: 7%;
		background-repeat: no-repeat;
		background-position: left center;
		filter: invert(50%);
	}
	td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td] > img {
		height: 20px;
	}
	td[customType=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_tdDeleteIcon]:hover {
		/* border-radius: 2px; */
		/* box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset; */
		/* background-color: rgba(255, 255, 255, 0.1); */
		filter: invert(0%);
		-webkit-filter: invert(0%);
	}
	
	/* HMIStation / badges / badgeList / badge / quotasTable / input* */
	input[customType^=HMIStation_badges_badgeList_badge_quotasTable_tbody_tr_td_input] {
		width: 8px;
		height: 5px;
		font-size: 12px;
	}
	
	/* HMIStation / badges / badgeList / badge / addQuota */
	div[customType=HMIStation_badges_badgeList_badge_addQuota] {
		position: relative;
		height: 15px;
		width: 260px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	div[customType=HMIStation_badges_badgeList_badge_addQuota] > div {
		position: absolute;
		top: 5px;
		bottom: 5px;
		left: 5px;
		width: 40px;
		background-image: url(../img/add-quota.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	div[customType=HMIStation_badges_badgeList_badge_addQuota] > span {
		position: absolute;
		top: 13px;
		left: 57px;
		font-size: 14px;
	}
	
	/* HMIStation / dosages / table */
	table[customType=HMIStation_dosages_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 95%;
	}
	thead[customType=HMIStation_dosages_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIStation_dosages_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIStation_dosages_table_thead_tr_th] {
		padding: 6px 5px 6px 5px;
	}

	th[customType=HMIStation_dosages_table_thead_tr_th]:nth-child(2) {
		display: none;
	}

	td[customType=HMIStation_dosages_table_tbody_tr_td] {
		padding: initial;
	}
	td[customType=HMIStation_dosages_table_tbody_tr_td]:nth-child(2) {
		display: none;
	}
	td[customType=HMIStation_dosages_table_tbody_tr_td] > img {
		height: 20px;
	}
	
	/* HMIStation / dosages / input* */
	input[customType^=HMIStation_dosages_table_tbody_tr_td_input] {
		width: 26px;
		height: 9px;
		font-size: 11px;
	}
	
	/* HMIStation / logsStationHome / dateSelector */
	div[customType=HMIStation_logsStationHome_dateSelector] {
		margin: 10px;
	}
	
	/* HMIStation / logsStationHome / dateSelector / * */
	span[customType^=HMIStation_logsStationHome_dateSelector_] {
		padding: 8px;
	}
	
	/* HMIStation / logsStationHome / dateSelector / *Text */
	span[customType^=HMIStation_logsStationHome_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}
	
	/* HMIStation / logsStationHome / table */
	table[customType=HMIStation_logsStationHome_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 100%;
	}
	thead[customType=HMIStation_logsStationHome_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIStation_logsStationHome_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIStation_logsStationHome_table_thead_tr_th],
	td[customType=HMIStation_logsStationHome_table_tbody_tr_td] {
		padding: 3px 0px 5px 3px;
	}
	td[customType=HMIStation_logsStationHome_table_tbody_tr_td]:nth-last-child(1) {
		text-align: left;
		max-width: 244px;
		white-space: normal;
	}
	
	/* HMIStation / configNotif */
	div[customType=HMIStation_configNotif] {
		padding: 10px;
	}
	
	/* HMIStation / configNotif / table */
	table[customType^=HMIStation_configNotif_] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	table[customType=HMIStation_configNotif_tableInternal] {
		margin-bottom: 70px;
	}
	table[customType=HMIStation_configNotif_tableInvoice] {
		margin-bottom: 70px;
	}
	table[customType=HMIStation_configNotif_tableInvoice] td:nth-child(2) {
		text-align: left;
	}
	div[customType=HMIStation_configNotif_invoiceEnabled] {
		position: relative;
		top: 7px;
	}
	span[customType=HMIStation_configNotif_table_tbody_tr_td_dateSelector] {
		position: relative;
		top: 16px;
		font-size: 14px;
		padding: 8px;
	}
	span[customType=HMIStation_configNotif_reassort_Enabled_text] {
		position: relative;
		top: -22px;
		left: 10px;
	}
	table[customType=HMIStation_configNotif_tableInvoice] {
		margin-top: 70px;
	}
	input[customType=HMIStation_configNotif_table_tbody_tr_td_invoiceComment_input] {
		width: 90%;
	}
	thead[customType^=HMIStation_configNotif_] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	td[customType=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=Threshold_input] {
		width: 30px;
	}
	td[customType=HMIStation_configNotif_table_tbody_tr_td] > input[customType^=HMIStation_configNotif_table_tbody_tr_td_inputReassort_Nb] {
		width: 20px;
	}
	td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=Emails_input],
	td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=EmailsClt_input],
	td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=EmailAddresses],
	td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=SMS_input],
	td[customType^=HMIStation_configNotif_table_tbody_tr_td] > input[customType$=SMSClt_input] {
		width: 85%;
		font-size: 9px;
	}
	input[customType=HMIStation_configNotif_table_tbody_tr_td_inputReassort_Notification_EmailAddresses] {
		text-align: center;
	}
	th[customType=HMIStation_configNotif_table_thead_tr_th],
	td[customType=HMIStation_configNotif_table_tbody_tr_td] {
		padding: 3px 5px 5px 3px;
	}

	div[customType="HMIStation_prestations_dateSelector"] > label.toggleButton {
		margin-top: 42px;
	}
}div[customType=HMITotemList] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
}

div[customType=HMITotemList_filters] {
	text-align: center;
}
input[customType=HMITotemList_filters_search] {
	width: 500px;
	font-size: 18px;
}

div[customType=HMITotemList_station] {
	position: relative;
	right: 5px;
	height: 70px;
	margin-top: 7px;
	margin-bottom: 7px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
}

div[customType=HMITotemList_station][status=unknown] {
	background-color:#a00000;
	color:#f7cece;
	animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
}
div[customType=HMITotemList_station][status=ready] {
	background-color:#53a000;
	color:#d8f7ce;
}
div[customType=HMITotemList_station][stockStatus="0"]:not([status=unknown]),
div[customType=HMITotemList_station][SDStatus="0"]:not([status=unknown]) {
	background-color:#a07500;
	color:#f7e4ce;
}

div[customType=HMITotemList_station]:hover {
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.7), 0px 8px 8px 0px rgba(255, 255, 255, 0.7) inset;
}

*[customType^=HMITotemList_station_] {
	position: absolute;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
div[customType=HMITotemList_station_icons] {
	top: 10px;
	bottom: 10px;
	left: 10px;
	width: 70px;
}
div[customType=HMITotemList_station_icon] {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
div[customType=HMITotemList_station][type="1"] div[customType=HMITotemList_station_icon] {
	background-image: url(../img/hands-gello-lr.png);
}
div[customType=HMITotemList_station][type="2"] div[customType=HMITotemList_station_icon] {
	background-image: url(../img/luxe-lr.png);
}
div[customType=HMITotemList_station_status] {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
div[status=unknown] div[customType=HMITotemList_station_status] {
	background-image: url(../img/disconnected.png);
	filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
	-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
}
div[stockStatus="0"]:not([status=unknown]) div[customType=HMITotemList_station_status],
div[SDStatus="0"]:not([status=unknown]) div[customType=HMITotemList_station_status] {
	background-image: url(../img/parameters.png);
	filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
	-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
}

div[customType=HMITotemList_station_name] {
	top: 10px;
	left: 90px;
	font-size: 19px;
	font-weight: bold;
}
div[customType=HMITotemList_station_details] {
	bottom: 8px;
	left: 90px;
	font-size: 15px;
}





@media(max-width:450px) {
	div[customType=HMITotemList] {
		position: absolute;
		top: 60px;
		left: 15px;
		right: 5px;
	}
	
	div[customType=HMITotemList_filters] {
		text-align: center;
	}
	input[customType=HMITotemList_filters_search] {
		width: 80%;
		font-size: 18px;
	}
	
	div[customType=HMITotemList_station] {
		position: relative;
		right: 5px;
		height: 100px;
		margin-top: 7px;
		margin-bottom: 7px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		border-radius: 4px;
		overflow: hidden;
		cursor: pointer;
	}
	
	div[customType=HMITotemList_station][status=unknown] {
		background-color:#a00000;
		color:#f7cece;
		animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
	}
	div[customType=HMITotemList_station][status=ready] {
		background-color:#53a000;
		color:#d8f7ce;
	}
	div[customType=HMITotemList_station][stockStatus="0"]:not([status=unknown]),
	div[customType=HMITotemList_station][SDStatus="0"]:not([status=unknown]) {
		background-color:#a07500;
		color:#f7e4ce;
	}
	
	div[customType=HMITotemList_station]:hover {
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.7), 0px 8px 8px 0px rgba(255, 255, 255, 0.7) inset;
	}
	
	*[customType^=HMITotemList_station_] {
		position: absolute;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	div[customType=HMITotemList_station_icons] {
		top: 10px;
		bottom: 10px;
		left: 10px;
		width: 70px;
	}
	div[customType=HMITotemList_station_icon] {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center top;
	}
	div[customType=HMITotemList_station][type="1"] div[customType=HMITotemList_station_icon] {
		background-image: url(../img/hands-gello-lr.png);
	}
	div[customType=HMITotemList_station][type="2"] div[customType=HMITotemList_station_icon] {
		background-image: url(../img/luxe-lr.png);
	}
	div[customType=HMITotemList_station_status] {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	div[status=unknown] div[customType=HMITotemList_station_status] {
		background-image: url(../img/disconnected.png);
		filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
		-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
	}
	div[stockStatus="0"]:not([status=unknown]) div[customType=HMITotemList_station_status],
	div[SDStatus="0"]:not([status=unknown]) div[customType=HMITotemList_station_status] {
		background-image: url(../img/parameters.png);
		filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
		-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
	}
	
	div[customType=HMITotemList_station_name] {
		top: 12%;
		left: 90px;
		font-size: 12px;
		font-weight: bold;
		white-space: initial;
	}
	div[customType=HMITotemList_station_details] {
		bottom: 26%;
		left: 90px;
		font-size: 12px;
		white-space: initial;
	}
	
}*[customType^=HMITotem] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

input[type=text][customType^=HMITotem] {
	padding: 8px;
}
select[customType^=HMITotem] {
	padding: 7px;
}

div[customType=HMITotem] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
}

/* HMITotem / [enfants directs] */
div[customType=HMITotem]>div[customType^=HMITotem_]:not([customType^=HMITotem_title]) {
	display: inline-block;
	position: relative;
	margin-top: 7px;
	margin-bottom: 7px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	overflow: hidden;
}

/* HMITotem / name */
input[customType=HMITotem_name] {
	width: 480px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}

/* HMITotem / title* */
div[customType^=HMITotem_title] {
	padding-top: 30px;
	padding-bottom: 12px;
	font-size: 26px;
	font-weight: bold;
}

/* HMITotem / metadata */
div[customType=HMITotem_metadata] input, div[customType=HMITotem_metadata] select {
	color: #ffffff;
}
div[customType=HMITotem_metadata] {
	height: 243px;
	width: 610px;
}
div[customType=HMITotem][status=ready] div[customType=HMITotem_metadata] {
	background-color:#53a000;
	color:#d8f7ce;
}
div[customType=HMITotem][sdstatus="0"]:not([status=unknown]) div[customType=HMITotem_metadata],
div[customType=HMITotem][stockstatus="0"]:not([status=unknown]) div[customType=HMITotem_metadata] {
	background-color:#a07500;
	color:#f7e4ce;
}
div[customType=HMITotem][status=unknown] div[customType=HMITotem_metadata] {
	background-color:#a00000;
	color:#f7cece;
	animation: redFlash 1000ms steps(2, jump-both) infinite alternate;
}

/* HMITotem / metadata / icons */
div[customType=HMITotem_icons] {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	width: 120px;
}
div[customType=HMITotem_icons_icon] {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
div[customType=HMITotem][type="1"] div[customType=HMITotem_icons_icon] {
	background-image: url(../img/hands-gello-lr2.png);
}
div[customType=HMITotem][type="2"] div[customType=HMITotem_icons_icon] {
	background-image: url(../img/luxe-lr2.png);
}
div[customType=HMITotem] div[customType=HMITotem_icons_status] {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
div[status=unknown] div[customType=HMITotem_icons_status] {
	background-image: url(../img/disconnected.png);
	filter: invert(100%) brightness(100%);
	-webkit-filter: invert(100%) brightness(100%);
}
div[stockstatus="0"]:not([status=unknown]) div[customType=HMITotem_icons_status],
div[sdstatus="0"]:not([status=unknown]) div[customType=HMITotem_icons_status] {
	background-image: url(../img/parameters.png);
	filter: invert(100%) brightness(100%);
	-webkit-filter: invert(100%) brightness(100%);
}

/* HMITotem / metadata / typeAndStock */
div[customType=HMITotem_metadata_typeAndStock] {
	position: absolute;
	top: 12px;
	left: 160px;
	right: 110px;
	margin-left: 5px;
	text-align: left;
	font-size: 20px;
	font-weight: bold;
}

/* HMITotem / metadata / status */
div[customType=HMITotem_metadata_status] {
	position: absolute;
	top: 50px;
	left: 160px;
	right: 110px;
	margin-left: 5px;
	text-align: left;
}

/* HMITotem / metadata / lastStatusUpdate */
div[customType=HMITotem_metadata_lastStatusUpdate] {
	position: absolute;
	top: 75px;
	left: 160px;
	right: 110px;
	margin-left: 5px;
	text-align: left;
}

/* HMITotem / metadata / SN */
div[customType=HMITotem_metadata_SN] {
	position: absolute;
	top: 100px;
	left: 160px;
	right: 20px;
	margin-left: 5px;
	text-align: left;
}

/* HMITotem / metadata / linkQuality */
div[customType=HMITotem_metadata_linkQuality] {
	position: absolute;
	top: 125px;
	left: 160px;
	right: 20px;
	margin-left: 5px;
	text-align: left;
}

/* HMITotem / metadata / inputs */
input[type=text][customType^=HMITotem_metadata_]:not([customType=HMITotem_metadata_missingSN_reuseSN]), select[customType^=HMITotem_metadata_] {
	position: absolute;
}
input[customType=HMITotem_metadata_customerName] {
	top: 150px;
	left: 160px;
	width: 410px;
}
input[customType=HMITotem_metadata_customerCode] {
	top: 192px;
	left: 160px;
	width: 85px;
}
input[customType=HMITotem_metadata_customerSite] {
	top: 192px;
	left: 270px;
	width: 85px;
}
select[customType=HMITotem_metadata_agency] {
	top: 193px;
	left: 378px;
	width: 208px;
}

/* HMITotem / metadata / QRCode */
img[customType=HMITotem_metadata_QRCode] {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 76px;
}

/* HMITotem / metadata / QRCode / imgDL */
div[customType=HMITotem_metadata_QRCode_imgDL] {
	position: absolute;
	top: 10px;
	right: 20px;
	height: 39px;
	width: 76px;
	cursor: pointer;
}
div[customType=HMITotem_metadata_QRCode_imgDL]:hover {
	background-color: rgba(0, 0, 0, 0.05);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMITotem / metadata / missingSN */
div[customType=HMITotem_metadata_missingSN] {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.95);
	border-width: 5px;
	border-color: rgba(0, 0, 0, 0.95);
	border-style: solid;
	font-weight: bold;
	color: #777777;
}
div[customType^=HMITotem_metadata_missingSN_text] {
    overflow: visible;
    text-overflow: ellipsis;
    white-space: normal;
	text-align: center;
	margin: 15px;
}
input[customType=HMITotem_metadata_missingSN_generateSN] {
	font-size: 16px;
}
input[customType=HMITotem_metadata_missingSN_reuseSN] {
	font-size: 16px;
	text-align: center;
}


/* HMITotem / consumptions / dateSelector */
div[customType=HMITotem_consumptions_dateSelector] {
	margin: 10px;
}

/* HMITotem / consumptions / dateSelector / * */
span[customType^=HMITotem_consumptions_dateSelector_] {
	padding: 8px;
}

/* HMITotem / consumptions / dateSelector / *Text */
span[customType^=HMITotem_consumptions_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMITotem / consumptions / DLImg */
div[customType=HMITotem_consumptions_DLimg] {
	position: absolute;
	top: 21px;
	right: 21px;
	width: 24px;
	height: 24px;
	background-image: url(../img/excel.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* HMITotem / consumptions / DL */
div[customType=HMITotem_consumptions_DL] {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	cursor: pointer;
}
div[customType=HMITotem_consumptions_DL]:hover {
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(255, 255, 255, 0.2);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMITotem / consumptions / table */
table[customType=HMITotem_consumptions_table] {
	margin: 10px 150px 10px 150px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMITotem_consumptions_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMITotem_consumptions_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMITotem_consumptions_table_thead_tr_th],
td[customType=HMITotem_consumptions_table_tbody_tr_td] {
	padding: 10px 20px 10px 20px;
}



/* HMITotem / configNotif */
div[customType=HMITotem_configNotif] {
	padding: 10px;
}

/* HMITotem / configNotif / table */
table[customType^=HMITotem_configNotif_] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
table[customType=HMITotem_configNotif_tableInternal],
table[customType=HMITotem_configNotif_tableClient] {
	margin-bottom: 40px;
}
span[customType=HMITotem_configNotif_reassort_Enabled_text] {
	position: relative;
	top: -22px;
	left: 10px;
}
label[customType=HMITotem_configNotif_reassort_Enabled_label] {
	left: 50px;
}
thead[customType^=HMITotem_configNotif_] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
td[customType=HMITotem_configNotif_table_tbody_tr_td] > input[customType$=Threshold_input] {
	width: 30px;
}
td[customType^=HMITotem_configNotif_table_tbody_tr_td] > input[customType$=Emails_input],
td[customType^=HMITotem_configNotif_table_tbody_tr_td] > input[customType$=EmailsClt_input],
td[customType^=HMITotem_configNotif_table_tbody_tr_td] > input[customType$=EmailAddresses],
td[customType^=HMITotem_configNotif_table_tbody_tr_td] > input[customType$=SMS_input],
td[customType^=HMITotem_configNotif_table_tbody_tr_td] > input[customType$=SMSClt_input] {
	width: 500px;
}
input[customType=HMITotem_configNotif_table_tbody_tr_td_inputReassort_Notification_EmailAddresses] {
	text-align: center;
}
th[customType=HMITotem_configNotif_table_thead_tr_th],
td[customType=HMITotem_configNotif_table_tbody_tr_td] {
	padding: 3px 5px 5px 3px;
}
div[customType=HMIUserList] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
	padding-bottom: 20px;
}

div[customType=HMIUserList_filters] {
	position: relative;
	display: inline-block;
	left: -200px;
	height: 90px;
	width: 1200px;
}
input[customType=HMIUserList_filters_search] {
	position: absolute;
	height: 30px;
	width: 350px;
	margin-left: 15px;
	font-size: 16px;
}

/* HMIUserList / createUser */
div[customType^=HMIUserList_createUser] {
	position: relative;
	height: 30px;
	width: 255px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}
div[customType^=HMIUserList_createUser] > div {
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 5px;
	width: 40px;
	background-image: url(../img/add-user.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}
div[customType^=HMIUserList_createUser] > span {
	position: absolute;
	top: 21px;
	left: 59px;
	font-weight: bold;
}

/* HMIUserList / table */
table[customType=HMIUserList_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	
	
}
thead[customType=HMIUserList_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tbody[customType=HMIUserList_table_tbody] tr:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
tbody[customType=HMIUserList_table_tbody] tr {
	cursor: pointer;
}
thead[customType=HMIUserList_table_thead] th,
tbody[customType=HMIUserList_table_tbody] td {
	padding: 10px 20px 10px 20px;
}
tbody[customType=HMIUserList_table_tbody] td:nth-child(1),
tbody[customType=HMIUserList_table_tbody] td:nth-child(2) {
	text-align: left;
}
tbody[customType=HMIUserList_table_tbody] tr:hover {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
td[customType=HMIUserList_table_tbody_tr_tdImgBadge] {
	background-image: url(../img/badge-sample.png);
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center center;
	width: 40px;
	cursor: pointer;
}
td[customType=HMIUserList_table_tbody_tr_tdImgBadge]:hover {
	background-image: url(../img/download.png);
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

td[customType=HMIUserList_table_tbody_tr_tdDelete] {
	background-image: url(../img/delete.png);
	background-size: 35%;
	background-repeat: no-repeat;
	background-position: center center;
	filter: invert(50%);
	-webkit-filter: invert(50%);
	width: 40px;
	cursor: pointer;
}

td[customType=HMIUserList_table_tbody_tr_tdDelete]:hover {
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
	filter: invert(0%);
	-webkit-filter: invert(0%);
}




@media(max-width:450px) {
	div[customType=HMIUserList] {
		position: absolute;
		top: 60px;
		left: 15px;
		right: 5px;
		text-align: center;
		padding-bottom: 20px;
	}
	
	div[customType=HMIUserList_filters] {
		position: initial;
		width: 80%;
	}
	input[customType=HMIUserList_filters_search] {
		position: relative;
		width: 63%;
		font-size: 11px;
	}
	
	/* HMIUserList / createUser */
	div[customType^=HMIUserList_createUser] {
		position: relative;
		height: 18%;
		width: 7%;
		margin-bottom: -18px;
		margin-left: 1%;
		margin-right: auto;
	}
	div[customType^=HMIUserList_createUser] > div {
		position: absolute;
		top: 5px;
		bottom: 2%;
		left: 5px;
		width: 40px;
		background-image: url(../img/add-user.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	div[customType^=HMIUserList_createUser] > span {
		position: absolute;
		top: 21px;
		left: 59px;
		font-weight: bold;
	}
	
	/* HMIUserList / table */
	table[customType=HMIUserList_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		width: 100%;
		font-size: 6px;
		
	}
	thead[customType=HMIUserList_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tbody[customType=HMIUserList_table_tbody] tr:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	tbody[customType=HMIUserList_table_tbody] tr {
		cursor: pointer;
	}
	thead[customType=HMIUserList_table_thead] th,
	tbody[customType=HMIUserList_table_tbody] td {
		padding: 10px 0px 10px 0px;
	}
	thead[customType=HMIUserList_table_thead] th:nth-child(1),
	thead[customType=HMIUserList_table_thead] th:nth-child(2),
	tbody[customType=HMIUserList_table_tbody] td:nth-child(1),
	tbody[customType=HMIUserList_table_tbody] td:nth-child(2) {
		text-align: center;
		max-width: 150px;
		font-size: 13px;
	}

	thead[customType=HMIUserList_table_thead] th:nth-child(3),
	thead[customType=HMIUserList_table_thead] th:nth-child(4),
	thead[customType=HMIUserList_table_thead] th:nth-child(5),
	thead[customType=HMIUserList_table_thead] th:nth-child(6),
	tbody[customType=HMIUserList_table_tbody] td:nth-child(3),
	tbody[customType=HMIUserList_table_tbody] td:nth-child(4),
	tbody[customType=HMIUserList_table_tbody] td:nth-child(5),
	tbody[customType=HMIUserList_table_tbody] td:nth-child(6) {
		display: none;
	}

	tbody[customType=HMIUserList_table_tbody] tr:hover {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	td[customType=HMIUserList_table_tbody_tr_tdImgBadge] {
		background-image: url(../img/badge-sample.png);
		background-size: 60%;
		background-repeat: no-repeat;
		background-position: center center;
		width: 40px;
		cursor: pointer;
	}
	td[customType=HMIUserList_table_tbody_tr_tdImgBadge]:hover {
		background-image: url(../img/download.png);
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	
	td[customType=HMIUserList_table_tbody_tr_tdDelete] {
		background-image: url(../img/delete.png);
		background-size: 35%;
		background-repeat: no-repeat;
		background-position: center center;
		filter: invert(50%);
		-webkit-filter: invert(50%);
		width: 40px;
		cursor: pointer;
	}
	
	td[customType=HMIUserList_table_tbody_tr_tdDelete]:hover {
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
		filter: invert(0%);
		-webkit-filter: invert(0%);
	}
	
	
}




*[customType^=HMIUser] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

input[type=text][customType^=HMIUser],
input[type=password][customType^=HMIUser] {
	padding: 8px;
}
select[customType^=HMIUser] {
	padding: 7px;
}

div[customType=HMIUser] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
}

/* HMIUser / [enfants directs] */
div[customType=HMIUser]>div[customType^=HMIUser_]:not([customType^=HMIUser_title]) {
	display: inline-block;
	position: relative;
	margin-top: 7px;
	margin-bottom: 7px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	overflow: hidden;
}

/* HMIUser / title* */
div[customType^=HMIUser_title] {
	padding-top: 30px;
	padding-bottom: 12px;
	font-size: 26px;
	font-weight: bold;
}

/* HMIUser / metadata */
div[customType=HMIUser_metadata] {
	height: 370px;
	width: 610px;
}

/* HMIUser / metadata / badgeImg */
img[customType=HMIUser_metadata_badgeImg] {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 130px;
}

/* HMIUser / metadata / badgeImg / imgDL */
div[customType=HMIUser_metadata_badgeImg_imgDL] {
	position: absolute;
	top: 15px;
	left: 15px;
	height: 82px;
	width: 130px;
	cursor: pointer;
}
div[customType=HMIUser_metadata_badgeImg_imgDL]:hover {
	background-color: rgba(255, 255, 255, 0.35);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIUser / metadata / read-only fields */
div[customType=HMIUser_metadata_username] {
	position: absolute;
	top: 122px;
	left: 90px;
	right: 10px;
	font-size: 17px;
	right: 15px;
	text-align: left;
}
/* div[customType=HMIUser_metadata_lastActivityDate] { */
	/* position: absolute; */
	/* top: 75px; */
	/* left: 160px; */
/* } */

/* HMIUser / metadata / inputs */
input[type=text][customType^=HMIUser_metadata_],
input[type=password][customType^=HMIUser_metadata_],
select[customType^=HMIUser_metadata_] {
	position: absolute;
}
input[customType=HMIUser_metadata_customerName] {
	top: 10px;
	left: 155px;
	width: 419px;
	font-size: 22px;
}
input[customType=HMIUser_metadata_uid] {
	top: 62px;
	left: 155px;
	width: 80px;
}
input[customType=HMIUser_metadata_password] {
	top: 160px;
	left: 10px;
	width: 140px;
}
select[customType=HMIUser_metadata_agency] {
	top: 62px;
	left: 263px;
	width: 138px;
}
select[customType=HMIUser_metadata_rights] {
	top: 62px;
	right: 10px;
}
input[customType=HMIUser_metadata_reachableCustomerCodes] {
	top: 160px;
	left: 177px;
	width: 396px;
}
input[customType=HMIUser_metadata_email] {
	top: 240px;
	left: 10px;
	width: 268px;
}
input[customType=HMIUser_metadata_company] {
	top: 200px;
	left: 10px;
	width: 268px;
}
input[customType=HMIUser_metadata_postalAddress1] {
	top: 200px;
	right: 10px;
	width: 268px;
}
input[customType=HMIUser_metadata_postalAddress2] {
	top: 240px;
	right: 10px;
	width: 268px;
}
input[customType=HMIUser_metadata_zipCode] {
	top: 280px;
	right: 238px;
	width: 40px;
}
input[customType=HMIUser_metadata_city] {
	top: 280px;
	right: 10px;
	width: 203px;
}
input[customType=HMIUser_metadata_country] {
	top: 320px;
	right: 10px;
	width: 268px;
}
input[customType=HMIUser_metadata_mobilePhone] {
	top: 280px;
	left: 10px;
	width: 120px;
}
input[customType=HMIUser_metadata_landPhone] {
	top: 280px;
	left: 158px;
	width: 120px;
}
select[customType=HMIUser_metadata_language] {
	top: 320px;
	left: 158px;
	width: 136px;
}
div[customType=HMIUser_metadata_languageText] {
	position: absolute;
	top: 327px;
	left: 10px;
	width: 145px;
	padding-top: 6px;
	text-align: right;
	font-size: 14px;
}

/* HMIUser / metadata / userActived */
div[customType=HMIUser_metadata_userActived] {
	position: absolute;
	top: 115px;
	left: 15px;
}

/* HMIUser / prestations / dateSelector */
div[customType=HMIUser_prestations_dateSelector] {
	margin: 10px;
}

/* HMIUser / prestations / dateSelector / * */
span[customType^=HMIUser_prestations_dateSelector_] {
	padding: 8px;
}

/* HMIUser / prestations / dateSelector / *Text */
span[customType^=HMIUser_prestations_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIUser / prestations / DLImg */
div[customType=HMIUser_prestations_DLimg] {
	position: absolute;
	top: 21px;
	right: 21px;
	width: 24px;
	height: 24px;
	background-image: url(../img/excel.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* HMIUser / prestations / DL */
div[customType=HMIUser_prestations_DL] {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	cursor: pointer;
}
div[customType=HMIUser_prestations_DL]:hover {
	/* box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px 0px rgba(0, 0, 0, 0.5) inset; */
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIUser / prestations / table */
table[customType=HMIUser_prestations_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIUser_prestations_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIUser_prestations_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIUser_prestations_table_thead_tr_th],
td[customType=HMIUser_prestations_table_tbody_tr_td] {
	padding: 10px 20px 10px 20px;
}
td[customType=HMIUser_prestations_table_tbody_tr_td]:nth-last-child(1) {
	text-align: left;
}

/* HMIUser / consumptions / dateSelector */
div[customType=HMIUser_consumptions_dateSelector] {
	margin: 10px;
}

/* HMIUser / consumptions / dateSelector / * */
span[customType^=HMIUser_consumptions_dateSelector_] {
	padding: 8px;
}

/* HMIUser / consumptions / dateSelector / *Text */
span[customType^=HMIUser_consumptions_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIUser / consumptions / DLImg */
div[customType=HMIUser_consumptions_DLimg] {
	position: absolute;
	top: 21px;
	right: 21px;
	width: 24px;
	height: 24px;
	background-image: url(../img/excel.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

/* HMIUser / consumptions / DL */
div[customType=HMIUser_consumptions_DL] {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 34px;
	height: 34px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	cursor: pointer;
}
div[customType=HMIUser_consumptions_DL]:hover {
	/* box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px 0px rgba(0, 0, 0, 0.5) inset; */
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url(../img/download.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	/* filter: invert(100%); */
	/* -webkit-filter: invert(100%); */
}

/* HMIUser / consumptions / table */
table[customType=HMIUser_consumptions_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIUser_consumptions_table_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIUser_consumptions_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIUser_consumptions_table_thead_tr_th],
td[customType=HMIUser_consumptions_table_tbody_tr_td] {
	padding: 10px 20px 10px 20px;
}
td[customType=HMIUser_consumptions_table_tbody_tr_td]:nth-last-child(1) {
	text-align: left;
}
td[customType=HMIUser_consumptions_table_tbody_tr_td] > img {
	height: 20px;
}

/* HMIUser / quotasTable */
table[customType=HMIUser_quotasTable] {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	border-spacing: 0px;
	text-align: center;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}
thead[customType=HMIUser_quotasTable_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIUser_quotasTable_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType^=HMIUser_quotasTable_thead_tr_th] {
	padding: 10px 20px 10px 20px;
}
td[customType^=HMIUser_quotasTable_tbody_tr_td] {
	padding: 3px 10px 3px 10px;
}
td[customType=HMIUser_quotasTable_tbody_tr_td]:nth-child(2),
td[customType=HMIUser_quotasTable_tbody_tr_td]:nth-child(4) {
	text-align: left;
}
td[customType=HMIUser_quotasTable_tbody_tr_td]:nth-last-child(2) {
	padding-right: 20px;
}
td[customType=HMIUser_quotasTable_tbody_tr_tdDeleteIcon] {
	width: 10px;
	cursor: pointer;
	background-image: url(../img/delete.png);
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center center;
	filter: invert(50%);
	-webkit-filter: invert(50%);
}
td[customType=HMIUser_quotasTable_tbody_tr_td] > img {
	height: 20px;
}
td[customType=HMIUser_quotasTable_tbody_tr_tdDeleteIcon]:hover {
	/* border-radius: 2px; */
    /* box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.2) inset; */
	/* background-color: rgba(0, 0, 0, 0.1); */
	filter: invert(0%);
	-webkit-filter: invert(0%);
}

/* HMIUser / quotasTable / input* */
input[customType^=HMIUser_quotasTable_tbody_tr_td_input] {
	width: 25px;
}


/* HMIUser / logsUser / dateSelector */
div[customType=HMIUser_logsUser_dateSelector] {
	margin: 10px;
}

/* HMIUser / logsUser / dateSelector / * */
span[customType^=HMIUser_logsUser_dateSelector_] {
	padding: 8px;
}

/* HMIUser / logsUser / dateSelector / *Text */
span[customType^=HMIUser_logsUser_dateSelector_][customType$=Text] {
	position: relative;
	top: -16px;
}

/* HMIUser / logsUser / table */
table[customType=HMIUser_logsUser_table] {
	margin: 10px;
	border-spacing: 0px;
	text-align: center;
}
thead[customType=HMIUser_logsUser_thead] {
	background-color: rgba(0, 0, 0, 0.2);
	color: rgba(0, 0, 0, 0.75);
}
tr[customType=HMIUser_logsUser_table_tbody_tr]:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.60);
}
th[customType=HMIUser_logsUser_table_thead_tr_th],
td[customType=HMIUser_logsUser_table_tbody_tr_td] {
	padding: 3px 5px 5px 3px;
}
td[customType=HMIUser_logsUser_table_tbody_tr_td]:nth-last-child(1) {
	text-align: left;
	max-width: 600px;
}



























@media(max-width:450px) {
	*[customType^=HMIUser] {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	input[type=text][customType^=HMIUser],
	input[type=password][customType^=HMIUser] {
		padding: 8px;
	}
	select[customType^=HMIUser] {
		padding: 7px;
	}
	
	div[customType=HMIUser] {
		position: absolute;
		top: 60px;
		left: 15px;
		right: 5px;
		text-align: center;
	}
	
	/* HMIUser / [enfants directs] */
	div[customType=HMIUser]>div[customType^=HMIUser_]:not([customType^=HMIUser_title]) {
		display: inline-block;
		position: relative;
		margin-top: 7px;
		margin-bottom: 7px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		overflow: hidden;
		width: 95%;
		font-size: 11px;
	}
	
	/* HMIUser / title* */
	div[customType^=HMIUser_title] {
		padding-top: 30px;
		padding-bottom: 12px;
		font-size: 21px;
		font-weight: bold;
	}
	
	/* HMIUser / metadata */
	div[customType=HMIUser_metadata] {
		height: 930px;
		width: 100%;
	}
	
	/* HMIUser / metadata / badgeImg */
	img[customType=HMIUser_metadata_badgeImg] {
		top: 6%;
		left: 3%;
		width: 95%;
		border-radius: 4px;
	}
	
	/* HMIUser / metadata / badgeImg / imgDL */
	div[customType=HMIUser_metadata_badgeImg_imgDL] {
		position: absolute;
		top: 11%;
		left: 0%;
		height: 19%;
		width: 100%;
		cursor: pointer;
	}
	div[customType=HMIUser_metadata_badgeImg_imgDL]:hover {
		background-color: rgba(255, 255, 255, 0.35);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	
	/* HMIUser / metadata / read-only fields */
	div[customType=HMIUser_metadata_username] {
		position: absolute;
		top: 32%;
		left: 30px;
		font-size: 9px;
		width: 98%;
		text-align: center;
	}
	/* div[customType=HMIUser_metadata_lastActivityDate] { */
		/* position: absolute; */
		/* top: 75px; */
		/* left: 160px; */
	/* } */
	
	/* HMIUser / metadata / inputs */
	input[type=text][customType^=HMIUser_metadata_],
	input[type=password][customType^=HMIUser_metadata_],
	select[customType^=HMIUser_metadata_] {
		position: absolute;
	}
	input[customType=HMIUser_metadata_customerName] {
		top: 1%;
		left: 10%;
		width: 70%;
		font-size: 16px;
		text-align: center;
	}
	input[customType=HMIUser_metadata_uid] {
		top: 34%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_password] {
		top: 50%;
		left: 0%;
		width: 93%;
	}
	select[customType=HMIUser_metadata_agency] {
		top: 46%;
		left: 0%;
		width: 97%;
	}
	select[customType=HMIUser_metadata_rights] {
		top: 38%;
		left: 0%;
		width: 97%;
	}
	input[customType=HMIUser_metadata_reachableCustomerCodes] {
		top: 42%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_email] {
		top: 58%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_company] {
		top: 54%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_postalAddress1] {
		top: 70%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_postalAddress2] {
		top: 74%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_zipCode] {
		top: 78%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_city] {
		top: 86%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_country] {
		top: 82%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_mobilePhone] {
		top: 62%;
		left: 0%;
		width: 93%;
	}
	input[customType=HMIUser_metadata_landPhone] {
		top: 66%;
		left: 0%;
		width: 93%;
	}
	select[customType=HMIUser_metadata_language] {
		top: 92.5%;
		left: 43%;
		width: 32%;
	}
	div[customType=HMIUser_metadata_languageText] {
		position: absolute;
		top: 93%;
		left: 17%;
		width: 25%;
	}
	
	/* HMIUser / metadata / userActived */
	div[customType=HMIUser_metadata_userActived] {
		position: absolute;
		top: 97px;
		left: 8px;
	}

	div[customType=HMIUser_metadata_userActived] > label.toggleButton {

		margin-top: 317%;

	}
	
	
	
	
	/* HMIUser / prestations / dateSelector */
	div[customType=HMIUser_prestations_dateSelector] {
		margin: 10px;
	}

	/* HMIUser / prestations / dateSelector / * */
	span[customType^=HMIUser_prestations_dateSelector_] {
		padding: 8px;
	}

	/* HMIUser / prestations / dateSelector / *Text */
	span[customType^=HMIUser_prestations_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}

	/* HMIUser / prestations / DLImg */
	div[customType=HMIUser_prestations_DLimg] {
		position: absolute;
		top: 21px;
		right: 21px;
		width: 24px;
		height: 24px;
		background-image: url(../img/excel.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}

	/* HMIUser / prestations / DL */
	div[customType=HMIUser_prestations_DL] {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 34px;
		height: 34px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		cursor: pointer;
	}
	div[customType=HMIUser_prestations_DL]:hover {
		/* box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px 0px rgba(0, 0, 0, 0.5) inset; */
		background-color: rgba(255, 255, 255, 0.8);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}

	/* HMIUser / prestations / table */
	table[customType=HMIUser_prestations_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 100%;
	}
	thead[customType=HMIUser_prestations_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIUser_prestations_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIUser_prestations_table_thead_tr_th],
	td[customType=HMIUser_prestations_table_tbody_tr_td] {
		padding: 10px 20px 10px 20px;
		white-space: normal;
	}

	th[customType=HMIUser_prestations_table_thead_tr_th]:nth-child(3),
	td[customType=HMIUser_prestations_table_tbody_tr_td]:nth-child(3),
	th[customType=HMIUser_prestations_table_thead_tr_th]:nth-child(5),
	td[customType=HMIUser_prestations_table_tbody_tr_td]:nth-child(5) {
		display: none;
	}


	td[customType=HMIUser_prestations_table_tbody_tr_td]:nth-last-child(1) {
		text-align: left;
	}
	
	
	
	
	
	/* HMIUser / consumptions / dateSelector */
	div[customType=HMIUser_consumptions_dateSelector] {
		margin: 10px;
		margin-right: 70px;
	}
	
	/* HMIUser / consumptions / dateSelector / * */
	span[customType^=HMIUser_consumptions_dateSelector_] {
		padding: 8px;
	}
	
	/* HMIUser / consumptions / dateSelector / *Text */
	span[customType^=HMIUser_consumptions_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}
	
	/* HMIUser / consumptions / DLImg */
	div[customType=HMIUser_consumptions_DLimg] {
		position: absolute;
		top: 21px;
		right: 21px;
		width: 24px;
		height: 24px;
		background-image: url(../img/excel.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	
	/* HMIUser / consumptions / DL */
	div[customType=HMIUser_consumptions_DL] {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 34px;
		height: 34px;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		cursor: pointer;
	}
	div[customType=HMIUser_consumptions_DL]:hover {
		/* box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.5), 0px 2px 2px 0px rgba(0, 0, 0, 0.5) inset; */
		background-color: rgba(255, 255, 255, 0.8);
		background-image: url(../img/download.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/* filter: invert(100%); */
		/* -webkit-filter: invert(100%); */
	}
	
	/* HMIUser / consumptions / table */
	table[customType=HMIUser_consumptions_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 95%;
		font-size: 9px;
	}
	thead[customType=HMIUser_consumptions_table_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIUser_consumptions_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIUser_consumptions_table_thead_tr_th],
	td[customType=HMIUser_consumptions_table_tbody_tr_td] {
		padding: 10px 20px 10px 10px;
		white-space: break-spaces;
	}
	th[customType=HMIUser_consumptions_table_thead_tr_th]:nth-child(2),
	th[customType=HMIUser_consumptions_table_thead_tr_th]:nth-child(6),
	td[customType=HMIUser_consumptions_table_tbody_tr_td]:nth-child(2),
	td[customType=HMIUser_consumptions_table_tbody_tr_td]:nth-child(6) {
		display: none;
	}


	td[customType=HMIUser_consumptions_table_tbody_tr_td]:nth-last-child(1) {
		text-align: left;
	}
	td[customType=HMIUser_consumptions_table_tbody_tr_td] > img {
		height: 20px;
	}
	
	/* HMIUser / quotasTable */
	table[customType=HMIUser_quotasTable] {
		position: relative;
		margin-left: auto;
		margin-right: auto;
		margin-top: 10px;
		margin-bottom: 10px;
		border-spacing: 0px;
		text-align: center;
		box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
		background-color: rgba(0, 0, 0, 0.05);
		border-radius: 4px;
		font-size: 8px;
		width: 95%;
	}
	thead[customType=HMIUser_quotasTable_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}
	tr[customType=HMIUser_quotasTable_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType^=HMIUser_quotasTable_thead_tr_th] {
		padding: 10px 20px 10px 20px;
	}
	td[customType^=HMIUser_quotasTable_tbody_tr_td] {
		font-size: 12px;
		padding-left: 2px;
	}

	th[customType^=HMIUser_quotasTable_thead_tr_th]:nth-child(2),
	th[customType^=HMIUser_quotasTable_thead_tr_th]:nth-child(4),
	td[customType=HMIUser_quotasTable_tbody_tr_td]:nth-child(2),
	td[customType=HMIUser_quotasTable_tbody_tr_td]:nth-child(4) {
		display: none;
	}


	td[customType=HMIUser_quotasTable_tbody_tr_td]:nth-last-child(2) {
		padding-right: 20px;
	}
	td[customType=HMIUser_quotasTable_tbody_tr_tdDeleteIcon] {
		width: 10px;
		cursor: pointer;
		background-image: url(../img/delete.png);
		background-size: 60%;
		background-repeat: no-repeat;
		background-position: center center;
		filter: invert(50%);
		-webkit-filter: invert(50%);
	}
	td[customType=HMIUser_quotasTable_tbody_tr_td] > img {
		height: 20px;
	}
	td[customType=HMIUser_quotasTable_tbody_tr_tdDeleteIcon]:hover {
		/* border-radius: 2px; */
		/* box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.2) inset; */
		/* background-color: rgba(0, 0, 0, 0.1); */
		filter: invert(0%);
		-webkit-filter: invert(0%);
	}
	
	/* HMIUser / quotasTable / input* */
	input[customType^=HMIUser_quotasTable_tbody_tr_td_input] {
		width: 13px;
		height: 8px;
	}
	
	
	/* HMIUser / logsUser / dateSelector */
	div[customType=HMIUser_logsUser_dateSelector] {
		margin: 10px;
	}
	
	/* HMIUser / logsUser / dateSelector / * */
	span[customType^=HMIUser_logsUser_dateSelector_] {
		padding: 8px;
	}
	
	/* HMIUser / logsUser / dateSelector / *Text */
	span[customType^=HMIUser_logsUser_dateSelector_][customType$=Text] {
		position: relative;
		top: -16px;
	}
	
	/* HMIUser / logsUser / table */
	table[customType=HMIUser_logsUser_table] {
		margin: 10px;
		border-spacing: 0px;
		text-align: center;
		width: 99%;
		font-size: 8px;
	}
	thead[customType=HMIUser_logsUser_thead] {
		background-color: rgba(0, 0, 0, 0.2);
		color: rgba(0, 0, 0, 0.75);
	}


	th[customType=HMIUser_logsUser_table_thead_tr_th]:nth-child(3),
	td[customType=HMIUser_logsUser_table_tbody_tr_td]:nth-child(3),
	th[customType=HMIUser_logsUser_table_thead_tr_th]:nth-child(4),
	td[customType=HMIUser_logsUser_table_tbody_tr_td]:nth-child(4),
	th[customType=HMIUser_logsUser_table_thead_tr_th]:nth-child(5),
	td[customType=HMIUser_logsUser_table_tbody_tr_td]:nth-child(5) {
		display: none;
	}


	tr[customType=HMIUser_logsUser_table_tbody_tr]:nth-child(even) {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.60);
	}
	th[customType=HMIUser_logsUser_table_thead_tr_th],
	td[customType=HMIUser_logsUser_table_tbody_tr_td] {
		padding: 3px 5px 5px 3px;
	}


	td[customType=HMIUser_logsUser_table_tbody_tr_td]:nth-last-child(1) {
		text-align: left;
		max-width: 130px;
		white-space: normal;
	}
	
	
}div[customType=HMIWiHelp] {
	position: absolute;
	top: 60px;
	left: 15px;
	right: 5px;
	text-align: center;
}

div[customType=HMIWiHelp_freeNumber] {
	position: relative;
	width: 520px;
	height: 130px;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
	background-color: rgba(117, 186, 43, 1);
	border-radius: 15px;
	color: rgba(255, 255, 255, 1);
	margin-left: auto;
	margin-right: auto;
}

div[customType=HMIWiHelp_freeNumber_img] {
	position: absolute;
	top: 20px;
	left: 20px;
	bottom: 20px;
	width: 60px;
	background-image: url(../img/callCenter.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	filter: invert(100%);
	-webkit-filter: invert(100%);
}

div[customType=HMIWiHelp_freeNumber_phoneNumber] {
	position: absolute;
	top: 20px;
	left: 110px;
	right: 20px;
	font-size: 30px;
	font-weight: bold;
}

div[customType=HMIWiHelp_freeNumber_text1] {
	position: absolute;
	top: 60px;
	left: 110px;
	right: 20px;
	font-size: 20px;
}

div[customType=HMIWiHelp_freeNumber_text2] {
	position: absolute;
	left: 110px;
	right: 20px;
	bottom: 20px;
	font-size: 16px;
}

iframe[customType^=HMIWiHelp_movie] {
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5), 0px 2px 2px 0px rgba(255, 255, 255, 0.5) inset;
}



@media(max-width:450px) {
	div[customType=HMIWiHelp] {
		position: absolute;
		top: 60px;
		left: 0px;
		right: 0px;
		text-align: center;
	}
	
	div[customType=HMIWiHelp_freeNumber] {
		width: 100%;
		height: 160px;
	}
	
	div[customType=HMIWiHelp_freeNumber_img] {
		position: absolute;
		top: 20px;
		left: 20px;
		bottom: 20px;
		width: 60px;
		background-image: url(../img/callCenter.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		filter: invert(100%);
		-webkit-filter: invert(100%);
	}
	
	div[customType=HMIWiHelp_freeNumber_phoneNumber] {
		font-size: 22px;
	}
	
	div[customType=HMIWiHelp_freeNumber_text1] {
		font-size: 14px;
	}
	
	div[customType=HMIWiHelp_freeNumber_text2] {
		font-size: 14px;
	}
	
	iframe[customType^=HMIWiHelp_movie] {
		width: 100%;
	}
}

div[customType=HMIIFrame1] {
	overflow: hidden;
	height: 136px;
	background-color: #ffffff;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	text-align: center;
}

div[customType=HMIIFrame1_title] {
	position: absolute;
	left: 0;
	right: 0;
	top: 103px;
	text-align: center;
	height: 30px;
	font-size: 1.8vw;
	color: #002c88;
	background-color: #ffffff;
	font-weight: bold;
}

div[customType^=HMIIFrame1_div] {
	display: inline-block;
	position: relative;
	text-align: center;
	top: 0;
	width: 22%;
	height: 100%;
	margin-left: 2%;
	margin-right: 2%;
}

div[customType^=HMIIFrame1_div]:nth-child(2) {
	margin-left: 0;
}

div[customType^=HMIIFrame1_div]:last-child {
	margin-right: 0;
}

div[customType^=HMIIFrame1_div] span[customType*=data] {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding-top: 7px;
	text-align: center;
	height: 30px;
	font-size: 3vw;
	color: #002c88;
	font-weight: bold;
}

div[customType^=HMIIFrame1_div] span[customType*=text] {
	position: absolute;
	left: 0;
	right: 0;
	top: 50px;
	padding-left: 4vw;
	padding-right: 4vw;
	text-align: center;
	font-size: 1.2vw;
	color: rgba(0, 17, 53, 0.5);
	background-color: #ffffff;
}

