﻿:root {
	--main-bg-color: #FFF;
	--main-color: #696969;
	--link-color: #427cd4;
	--link-hover-color: #54acf3;
	--button-color: #427cd4;
	--button-text-color: #FFF;
	--button-hover-color: #54acf3;
	--input-border-radius: 3px;
	--table-row-header-bg-color: #EEE;
	--table-row-even-bg-color: #F8F8F8;
	--table-row-odd-bg-color: #FFF;
	--table-row-hover-bg-color: #EEE;
	--table-row-selected-bg-color: #EEE;
	--table-row-border-color: #DDD;
}

/* DEFAULTS
----------------------------------------------------------*/

html,
body, 
form {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	background: var(--main-bg-color);
	color: var(--main-color);
}

body, a, button, input, textarea, select {
	font-size: 13px;
	font-family: "Roboto", "Open Sans", "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
}

a:link, a:visited {
	color: var(--link-color);
	text-decoration: none;
}

a:hover {
	color: var(--link-hover-color);
	text-decoration: none;
}

a:active
{
    color: #4b6c9e;
}

p
{
    margin-bottom: 10px;
    line-height: 1.6em;
}

a img
{
	border:none;
}

input[type="text"], input[type="password"], textarea, select {
	margin: 2px 3px;
	padding: 5px;
	border: 1px solid #BBB;
	border-radius: var(--input-border-radius);
	outline: none;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: 1px solid #666;
}
input [type="button"], input[type="submit"], button, a.button {
	display: inline-block;
	margin: 2px 3px;
	padding: 5px 15px;
	background-color: var(--button-color);
	border: 1px solid var(--button-color);
	color: var(--button-text-color);
	border-radius: var(--input-border-radius);
	text-decoration: none;
	text-align: center;
	outline: none;
	white-space: nowrap;
	font-weight: normal;
	cursor:pointer;
}
input [type="button"].mdi, input[type="submit"].mdi, button.mdi, a.button.mdi {
	padding-left: 7px;
}

input [type="button"].mdi:before, input[type="submit"].mdi:before, button.mdi:before, a.button.mdi:before {
	margin-right: 7px;
}

input[type="button"]:hover, input[type="submit"]:hover, button:hover, a.button:hover {
	background-color: var(--button-hover-color);
	border: 1px solid var(--button-hover-color);
	color: #FFF;
}

input[type="button"]:active, input[type="submit"]:active, button:active, a.button:active {
	background-color: #FFF;
	border: 1px solid #DDD;
	color: #666;
	outline: none;
}

input[type="button"]:disabled, input[type="submit"]:disabled, button:disabled, a.button.disabled
{
	border:1px solid #CCC !important;
	background-color:#EEE !important;
	color:#AAA !important;
	cursor:default;
}

input [type="button"].add-entity, input[type="submit"].add-entity, button.add-entity, a.button.add-entity {
	font-size: 16px;
	border-color: #4CAF50;
	background-color: #4CAF50;
	position: absolute;
	right: 0;
	top: 0;
	margin: 10px 0;
}
input [type="button"].add-entity:hover, input[type="submit"].add-entity:hover, button.add-entity:hover, a.button.add-entity:hover {
	border-color: #71b373;
	background-color: #71b373;
}

input [type="image"]
{
	cursor: pointer;
}

.button.dl
{
	position:absolute;
	right:0;
}

.button.ul
{
	position:absolute;
	right:120px;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
    /*border-bottom:1px solid #CCC;*/
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 400;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
    margin-top: 0px;
}

h2.section-title {
	display: inline-block;
}
/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/
.page {
	background-color: #fff;
	margin: 0;
	border: none;
	min-height: 100%;
	position: relative;
}

.header {
	position: relative;
	margin: 0px;
	padding: 0px;
	background: #427cd4;
	color: #F9F9F9;
	width: 100%;
	z-index: 3;
}

.header h1
{
    margin: 0px;
    padding: 0px 0px 0px 20px;
    color: #f9f9f9;
    border: none;
    line-height: 2em;
    font-size: 2em;
}
.header h1 a {
	color: #f9f9f9;
	text-decoration: none;
	font-size: inherit;
}

.main {
	padding: 10px 10px 50px 10px;
}
/*	.main.devices-page {
		position: absolute;
		top: 87px;
		left: 0;
		right: 0;
		bottom: 0;
	}
		.main.devices-page #map, .main.devices-page #devices-list {
			position: absolute;
			top: 50px;
			bottom: 40px;
		}
		.main.devices-page #map {
			right: 0;
			width: 40%;
			height: auto;
		}

		.main.devices-page #devices-list {
			left: 0;
			width: 60%;
			overflow-y: auto;
		}*/

.leftCol
{
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

.footer {
	background: #DDD;
	color: #666;
	padding: 5px;
	margin: 0px auto;
	text-align: center;
	height: 30px;
	line-height: 30px;
	position:absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.footer a
{
	color:#666;
	font-weight: bold;
}

#locale-switcher
{
	float:right;
}


/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink {
	background-color: #f4f4f4;
	width: 100%;
}

div.menu
{
    padding: 4px 0px 4px 8px;
}

div.menu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: auto;
	background-color: #f4f4f4;
}

div.menu ul li a, div.menu ul li a:visited {
	background-color: #f4f4f4;
	border: 1px #f4f4f4 solid;
	color: #666;
	display: block;
	line-height: 1.35em;
	padding: 4px 20px;
	text-decoration: none;
	white-space: nowrap;
	outline:none;
}

div.menu ul li a:hover {
	background-color: #FFF;
	color: #427cd4;
	text-decoration: none;
	border-radius: 3px;
}

div.menu ul li a:active {
	background-color: #427cd4;
	color: #f4f4f4;
	text-decoration: none;
	outline: none;
}

.admin-menu ul, .admin-menu ul li
{
	margin:10px 20px;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

.admin-menu ul li a
{
	font-size:15px;
	font-weight: 200;
	color: #000;
	text-decoration:none;
}

/* PENDING TRANSACTIONS SECTION   
----------------------------------------------------------*/
#pending-transactions
{
	z-index: 4;
	position: absolute;
	top: 0;
	right: 0;
}
#auth-request-alert {
	position: absolute;
	top: 50px;
	right: 20px;
	width: 300px;
	padding: 20px;
	background-color: #FFF;
	color: #000;
	border: 1px solid #DDD;
	border-radius: var(--input-border-radius);
	box-shadow: 2px 2px 8px #333;
}
#auth-request-alert h2
{
	margin-top:0;
	margin-bottom:10px;
	border-bottom:1px solid #DDD;
}
#auth-request-alert table
{
	width: 100%;
}
#auth-request-alert th
{
	font-weight:bold;
	text-align:right;
}
#auth-request-alert a
{
	display: inline-block;
	width: 35%;
	margin:0 1%;
}

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
	margin: 1em 0px;
	padding: 1em;
	border: 1px solid #DDD;
	border-radius: 2px;
}

fieldset p 
{
    margin: 2px 12px 10px 10px;
}

fieldset.login label, fieldset.register label, fieldset.changePassword label
{
    display: block;
}

fieldset label.inline 
{
    display: inline;
}

legend 
{
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry 
{
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry 
{
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo {
	width: 25%;
	margin: 0 auto;
	margin-top: 7%;
}
div.accountInfo p {
	white-space: nowrap;
}
div.accountInfo fieldset.login input[type="text"],
div.accountInfo fieldset.login input[type="password"],
div.accountInfo fieldset.login input[type="submit"] {
	box-sizing: border-box;
	width: 400px;
	padding: 10px 15px;
}
.new-password-requirements {
	color: #AAA;
	font-size:10px;
	display: block;
}
/* MISC  
----------------------------------------------------------*/
.clear {
	clear: both;
}

.title
{
    display: block;
    text-align: left;
    width: auto;
}

.loginDisplay {
	display: inline-block;
	padding: 0;
	color: #666;
	position: absolute;
	top: 10px;
	right: 10px;
	height: 32px;
	overflow: hidden;
	background-color: #f4f4f4;
	border-radius: 2px;
	line-height: 20px;
}
.loginDisplay:focus, .loginDisplay:hover {
	height: auto;
	outline: none;
}
.loginDisplay .logged-in-user, .loginDisplay ul li a {
	display: block;
	height: 20px;
	line-height: 20px;
	vertical-align: middle;
	padding: 6px 35px 6px 15px;
}
.loginDisplay ul li a::before {
	margin-right: 5px;
}
.loginDisplay ul li a:hover {
	background-color: #EEE;
}
.loginDisplay .logged-in-user .arrow {
	font-size: 20px;
	right: 10px;
	position: absolute;
}
.loginDisplay ul, .loginDisplay ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

.failureNotification
{
    font-size: 1.2em;
    color: Red;
}

.bold
{
    font-weight: bold;
}

.column
{
	float:left;
	width:50%;
}

.section
{
	margin-bottom:20px;
}

.section h1, .section h2, .section h3, .section h4, .section h5,  .section h6
{
	margin-bottom:10px;
	border-bottom:1px solid #CCC;
}


/* TABLES  
----------------------------------------------------------*/
table.data-table
{
	width: 100%;
	border: none;
}
table.data-table tbody tr {
	cursor: default;
	border: 1px solid var(--table-row-border-color);
}
table.data-table thead tr, table.item-table thead tr {
	background-color: var(--table-row-header-bg-color);
	border: 1px solid var(--table-row-border-color);
}
table.data-table tbody tr.alt, table.data-table tbody tr:nth-child(even),
table.item-table tbody tr.alt, table.item-table tbody tr:nth-child(even) {
	background-color: var(--table-row-even-bg-color);
}
table.data-table tbody tr.alt, table.data-table tbody tr:nth-child(odd),
table.item-table tbody tr.alt, table.item-table tbody tr:nth-child(odd) {
	background-color: var(--table-row-odd-bg-color);
}

table.data-table tbody tr.selected {
	background-color: var(--table-row-selected-bg-color) !important;
	color: #333;
	font-weight: bold;
}

table.data-table > tbody > tr:not(.pager):hover {
	background-color: var(--table-row-hover-bg-color)
}
table.data-table tr th, table.data-table tr td
{
	border:none;
	padding: 5px 10px;
	text-align: left;
}

table.item-table th, table.item-table td
{
	padding: 3px 10px;
}

table.item-table tbody th
{
	text-align:right;
}

table.item-table thead th
{
	text-align:left;
}
table.item-table .section th
{
	text-align:left;
	border-bottom: 1px solid #DDD;
}
.pager
{
	border: none;
}
.pager td
{
	padding:0 !important;
	position: relative;
}
.pager a, .pager span {
	text-decoration: none;
	display: inline-block;
	padding: 0;
	border: 1px solid #DDD;
	width: 30px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	border-radius: var(--input-border-radius);
}
.pager a {
	background: #FFF;
	color: #666;
}
.pager a:hover
{
	background-color:#EEE;
}
.pager span {
	background-color: #427cd4;
	color: #FFF;
	font-weight: bold;
	border: 1px solid #427cd4;
}

.pager table
{
	float:left;
}
.pager .page-size
{
	position:absolute;
	top: 0;
	right: 0;
	padding: 2px 10px;
}

table.data-table .sort-cell{}
table.data-table .sort-asc, table.data-table .sort-desc {
	background-color: #DDD;
}
table.data-table .sort-asc a, table.data-table .sort-desc a {
}
table.data-table .sort-asc a::after, table.data-table .sort-desc a::after {
	right: 0;
	margin-left: 5px;
	font: normal normal bold 24px/1 "Material Design Icons";
	font-size: inherit;
	color: #666;
}
table.data-table .sort-asc a::after {
	content: "\F0143";
}
table.data-table .sort-desc a::after {
	content: "\F0140";
}


/* ELEMENTS
----------------------------------------------------------*/
#map { height: 400px; }
#map .map-toggle-enlarge:after {
	display: block;
	width: 24px;
	height: 24px;
	color: #333;
	font: normal normal normal 24px/1 "Material Design Icons";
}
#map .map-toggle-enlarge.expand:after { content: '\F06ED'; }
#map .map-toggle-enlarge.collapse:after { content: '\F06EC'; }

#map .device-marker {
	display: block;
	border-radius: 24px;
	border: 2px solid #FFF;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	background-color: #9E9E9E;
}
#map .device-marker > span {
	top: 2px;
	position: relative;
	display: inline-block;
	margin-left: 50%;
}
#map .device-marker > span > span {
	margin-left: -50%;
	position: relative;
	background-color: #FFF;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	padding: 0px 5px;
	white-space: nowrap;
	font-weight: bold;
}

#map .device-marker:before {
	color: #FFF;
	font-size: 20px;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
}

#map .device-marker.selected {
	border-color: #333;
}
#map .device-marker.selected > span > span {
	background-color: #333;
	color: #EEE;
}

#map .device-marker.status-for-hire {
	background-color: #4CAF50;
}

#map .device-marker.status-hired {
	background-color: #F44336;
}

#map .device-marker.status-stopped {
	background-color: #FF9800;
}

	#map .tracking-marker::before {
		font: normal normal bold 20px/1 "Material Design Icons";
		background: #FFF;
		border-radius: 20px;
		font-weight: normal;
		display: block;
		position: relative;
	}
	#map .tracking-marker.tracking-marker-first::before {
		content: ' ';
		width: 7px;
		height: 7px;
		font-size: 10px;
		top: 5px;
		left: 5px;
		border: 3px solid #333;
	}
	#map .tracking-marker.tracking-marker-last::before, #map .tracking-marker.tracking-marker-destination::before {
		width: 32px;
		height: 32px;
		font-size: 32px;
		background: none;
	}
	#map .tracking-marker.tracking-marker-last::before {
		content: '\F034E';
		color: #c5362b;
		bottom: 16px;
		left: -4px;
		border: none;
	}
	#map .tracking-marker.tracking-marker-destination::before {
		content: '\F023C';
		color: #333;
		background-color: #FFF;
		top: -4px;
		left: -4px;
		border: none;
	}

.command-button {
	margin: 0 3px;
}
a.back-button {
	margin: 10px 10px 10px 0;
}
.filter
{
	padding: 10px 0;
	position:relative;
}
.filter .filter-field {
	display: inline-block;
	position: relative;
}
.filter .filter-field.text-search:after {
	content: '\F0349';
	font: normal normal normal 20px/1 "Material Design Icons";
	color: #666;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 6px;
	right: 6px;
}
.filter .filter-field.text-search input[type="text"]:first-child {
	padding-right: 25px;
}
.modal-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .2;
	-webkit-opacity: 0.2;
	-moz-opacity: 0.2;
	filter: alpha(opacity=20);
	z-index: 1000001;
}

.modal-popup
{
	margin: auto;
	position: fixed;
	top: 0; left: 0; bottom: 0; right: 0;
	background-color:#FFF;
	border-radius:5px;
	z-index:1000002;
	height:30%;
	width:30%;
	padding:20px;
	box-shadow: 2px 2px 10px #666;
}
.modal-popup-content
{
	position: absolute;
	overflow-y: auto;
	top: 60px;
	left: 20px;
	bottom: 20px;
	right: 20px;
}
.has-command-row .modal-popup-content
{
	bottom: 60px;
}
.modal-big
{
	width:50% !important;
	height:50% !important;	
}
.modal-popup .modal-popup-close
{
	position: absolute;
	top: 20px;
	right:20px;
	border: none;
	display:block;
	width:16px;
	height: 16px;
	opacity:.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter:alpha(opacity=50);
	background:transparent url('/Images/close.png') no-repeat scroll 0 0;
}
.modal-popup .modal-popup-close:hover
{
	opacity:.8;
	-webkit-opacity: 0.8;
	-moz-opacity: 0.8;
	filter:alpha(opacity=80);
}

.modal-popup h2
{
	border-bottom: 1px solid #CCC;
	margin: 0 0 20px;
}
.modal-popup table
{
	width: 100%;
}
.modal-popup table th
{
	width: 33%;
}

.modal-popup .command-row
{
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	border-top: 1px solid #CCC;
	padding-top: 5px;
}
.leaflet-popup-content h2
{
	border-bottom:1px solid #CCC;
}
#loading
{
	text-align:center;
	width: 300px !important;
	height: 70px !important;
}
.block-message
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	cursor: default;
	text-align: center;
}
.block-message div
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: .5;
}
.block-message span
{
	position:relative;
	z-index:1;
	color: #F44;
	font-size:20px;
	background-color:#333;
	border:1px solid #F44;
	border-radius:5px;
	padding:10px;
	opacity:.7;
	top:150px;
}
.device-locked {
	display: inline-block;
	font-size: 20px;
	color: #d0a114;
}
.device-unlocked
{
	display:none;
}
.hex
{
	font-family:Monospace;
	font-size:13px;
	word-break: break-word;
}
.base64
{
	font-family:Monospace;
	font-size:13px;
	word-break: break-all;
}

.tabs {
    position: relative;
    height: 100px;
}
.tabs > ul, .tabs > ul > li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    height: 20px;
}
.tabs > ul  {
	position: absolute;
	z-index: 2;
}
.tabs > ul > li {
    display: block;
    float: left;
}
.tabs > ul > li > a {
    display: block;
    border-top: 1px solid #c1c1c1;
    padding: 2px 15px;
    height: 16px;
    line-height: 16px;
    text-decoration: none;
    border-left: 1px solid #c1c1c1;
    background-color:#FFF;
}
.tabs > ul > li:first-child > a {
	border-radius: 3px 0 0 0;
}
.tabs > ul > li:last-child > a {
    border-right: 1px solid #c1c1c1;
	border-radius: 0 3px 0 0;
}
.tabs > ul > li.selected > a {
	border-bottom:1px solid #FFF;
	color:#427cd4;
}
.tabs > div {
    position: absolute;
    top: 21px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    border: 1px solid #ccc;
    border-radius: 0 3px 3px 3px;
    overflow-y: auto;
    padding: 5px;
}
.tabs > div.selected {
	z-index: 1;
}
.signature-valid, .signature-invalid, .signature-none {
	font-size:10px;
	font-variant-caps: initial;
	text-decoration: none;
}
.signature-valid {
    color: #4CAF50 !important;
}
.signature-invalid {
    color: #F44336 !important;
}
.signature-none {
	color: #A0A0A0 !important;
}

.checkbox-dropdown {
    position: relative;
    background: #FFF;
    margin-left: 10px;
}

.checkbox-dropdown div {
    display: none;
    position: absolute;
    background: #FFF;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    border-radius: 0 0 3px 3px;
    border: 1px solid #EEE;
}

.checkbox-dropdown > span {
    padding: 5px 30px 5px 5px;
    background: url(/Images/chevron-down.png) no-repeat scroll right 5px center;
    border-radius: 3px;
    display: inline-block;
    cursor: default;
}

.checkbox-dropdown input {
    display: none;
}

.checkbox-dropdown input + label {
    /*background: transparent url('/Images/elegant.png') no-repeat scroll left top;*/
    display: inline-block;
    white-space: nowrap;
    padding-left: 23px;
    height: 17px;
    line-height: 17px;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    margin: 7px 0;
}
.checkbox-dropdown input + label:active {
    background-position: left -17px;
}
.checkbox-dropdown input:checked + label:active {
    background-position: left -51px;
}
.checkbox-dropdown input:checked + label {
    background-position: left -34px;
}
.checkbox-dropdown input:disabled + label {
    background-position: left -68px;
}
.checkbox-dropdown input:checked:disabled + label {
    background-position: left bottom;
}

.checkbox-dropdown div:focus, .checkbox-dropdown:focus {
    outline: none;
}

.checkbox-dropdown:focus-within div, .checkbox-dropdown:focus div, .checkbox-dropdown div:hover {
    display: block;
}

.checkbox-dropdown input + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background: #FFF;
    border-radius: 3px;
    color: #666;
    text-align: center;
    vertical-align: middle;
    line-height: 14px;
    font-size: 16px;
    border: 1px solid #DDD;
    font-weight: bold;
}
.checkbox-dropdown input + label:hover:before {
    border-color: #BBB;
}

.checkbox-dropdown input:checked + label:before {
    content: '✓';
}

div.signal-level {
	display: block;
	background: #DDD;
	height: 2px;
	border-radius: 2px;
	position: relative;
	max-width: 100px;
}

div.signal-level span.signal-level-bar {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	border-radius: 2px;
	z-index: 0;
}

div.signal-level span.signal-level-value {
	position: absolute;
	right: -55px;
	text-align: right;
	line-height: 2px;
	font-size: 12px;
	z-index: 1;
	width: 50px;
	white-space: nowrap;
}

div.signal-level.signal-level-good span.signal-level-bar {
	background-color: #4CAF50;
}

div.signal-level.signal-level-fair span.signal-level-bar {
	background-color: #FF9800;
}

div.signal-level.signal-level-poor span.signal-level-bar {
	background-color: #F44336;
}

#devices-list tr td .device-commands, #devices-list tr td .device-reports {
	display: none;
	white-space: nowrap;
	z-index: 999;
}
#devices-list tr td .device-commands {
	bottom: 0;
	left: 0;
}
#devices-list tr td .device-reports {
	bottom: 0;
	right: 0;
}
#devices-list tr.selected td {
	padding-bottom: 34px;
	position: relative;
}
#devices-list tr.selected .device-commands, #devices-list tr.selected .device-reports {
	display: block;
	position: absolute;
	font-size: 0;
}
#devices-list tr td .device-commands .command-button, #devices-list tr td .device-reports .command-button {
	font-size: 12px;
	padding: 3px 7px;
	margin: 2px;
}
#devices-list tr td .device-commands a.command-button:after, #devices-list tr td .device-reports a.command-button:after {
	font-size: 20px;
}
#devices-list tbody tr.connected td:first-child:before, #devices-list tbody tr.disconnected td:first-child:before {
	display: inline-block;
	width: 24px;
	height: 24px;
	font: normal normal normal 24px/1 "Material Design Icons";
}
#devices-list tbody tr.disconnected td:first-child:before {
	content: '\F153B';
	color: #F44336;
}
#devices-list tbody tr.connected.connection-insecure td:first-child:before {
	content: '\F0003';
	color: #4CAF50;
}
#devices-list tbody tr.connected.connection-secure td:first-child:before {
	content: '\F1538';
	color: #4CAF50;
}

#devices-list tbody tr td span.position-unavailable {
	font-size: 20px;
	color: #427cd4;
}

#devices-list tbody tr td .device-alarm {
	font-size: 20px;
	color: #F44336;
}
#devices-list tbody tr td span.company-name, #devices-list tbody tr td span.taximeter-serial, #devices-list tbody tr td span.gps-satellites {
	display: block;
	font-size: 9px;
	color: #999;
	font-weight: normal;
}

#devices-list tbody tr td .gps-fix.gps-fix-type-no-fix {
	color: #F44336;
}

#devices-list tbody tr td .gps-fix.gps-fix-type-2d-fix {
}

#devices-list tbody tr td .gps-fix.gps-fix-type-3d-fix {
}

ul.multi-filter, ul.multi-filter li {
	display: inline-block;
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
ul.multi-filter {
	font-size: 0;
}
ul.multi-filter li {
	font-size: 12px;
}
ul.multi-filter li input[type="radio"], ul.multi-filter li input[type="checkbox"] {
	display: none;
}
ul.multi-filter li input[type="radio"] + label, ul.multi-filter li input[type="checkbox"] + label {
	border-top: 1px solid #BBB;
	border-bottom: 1px solid #BBB;
	border-left: 1px solid #BBB;
	padding: 6px 10px;
}

ul.multi-filter li:first-child input[type="radio"] + label, ul.multi-filter li:first-child input[type="checkbox"] + label {
	border-radius: 3px 0 0 3px ;
}
ul.multi-filter li:last-child input[type="radio"] + label, ul.multi-filter li:last-child input[type="checkbox"] + label {
	border-radius: 0 3px 3px 0;
	border-right: 1px solid #BBB;
}

ul.multi-filter li input[type="radio"]:checked + label, ul.multi-filter li input[type="checkbox"]:checked + label {
	background-color: #427cd4;
	border-color: #427cd4;
	color: #FFF;
}

.admin-table .delete-button, .device-commands .dangerous-button {
	background-color: #F44336;
	border-color: #F44336;
}
.admin-table .delete-button:hover, .device-commands .dangerous-button:hover {
	background-color: #f56359;
	border-color: #f56359;
}
.device-commands .warning-button {
	background-color: #d0a114;
	border-color: #d0a114;
}
.device-commands .warning-button:hover {
	background-color: #f9c320;
	border-color: #f9c320;
}
.device-commands .action-button {
	border-color: #4CAF50;
	background-color: #4CAF50;
}
.device-commands .action-button:hover {
	border-color: #71b373;
	background-color: #71b373;
}

.admin-table .command-column {
	width: 200px;
}

.alert-icon {
	color: #FF9800;
	font-size: 20px;
}
span.validation-error {
	color: #A00;
}
span.validation-hint {
	display:block;
	color: #A00;
	font-size: 10px;
}
input.validation-hint, select.validation-hint {
	border-color: #A00;
}
span.required-field {
	font-weight: bold;
}