@font-face {
    font-family: BrixSans;
    font-weight: normal;
    font-style: normal;
    src: url("font/EON_BrixSans-Regular.otf") format("opentype");
}
@font-face {
    font-family: BrixSans;
    font-weight: normal;
    font-style: italic;
    src: url("font/EON_BrixSans-RegularItalic.otf") format("opentype");
}
@font-face {
    font-family: BrixSans;
    font-weight: bold;
    font-style: normal;
    src: url("font/EON_BrixSans-Bold.otf") format("opentype");
}
@font-face {
    font-family: BrixSans;
    font-weight: bold;
    font-style: italic;
    src: url("font/EON_BrixSans-BoldItalic.otf") format("opentype");
}

* {
    font-family: 'BrixSans', BrixSans, sans-serif;
}


[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

sub, 
.display sub,
.dashboard sub {
    display: inline-block;
    vertical-align: sub;
}

sup, 
.display sup, 
.dashboard sup {
    display: inline-block;
    vertical-align: super;
}

html,
body {
    font-family: 'BrixSans', BrixSans, sans-serif;
	font-size: 12px;
	color: #555;
	padding: 0;
	margin: 0;
	border: 0px;
}

input, textarea, keygen, select, button {
    font-family: 'BrixSans', BrixSans, sans-serif;
    font-size: 12px;
    border-color: #ddd;
    border-radius: 0px;
    border-width: 1px;
}

input:focus, textarea:focus, keygen:focus, select:focus, button:focus {
    outline: none;
}

table {
	font-size: 12px;
}

.left {
	float: left;
}

.right {
	float: right;
}

.disable {
	pointer-events: none;
	color: #dddddd;
}

.button {
	display: inline-block;
	cursor: pointer;
    z-index: 9;
	font-size: 12px; 
	font-weight: bold; 
	margin: 5px 5px 5px 5px;
	padding: 5px 10px 5px 10px;
	border: 1px solid #bbb;
    border-radius: 5px;
	background: rgba(255,255,255,0.6);
    color: #555;
    text-decoration: none;
	
	transition: 0.2s ease-in;
	-webkit-transition: 0.2s ease-in;
	-moz-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	-ms-transition: 0.2s ease-in;
	
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */

    
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.buttonHov {
    display: inline-block !important;
    cursor: pointer !important;
    z-index: 9 !important;
    font-size: 12px !important;
    font-weight: bold !important;
    margin: 5px 5px 5px 5px !important;
    padding: 5px 10px 5px 10px !important;
    border: 1px solid #bbb !important;
    border-radius: 5px !important;
    background: rgba(255,255,255,0.6) !important;
    color: #555 !important;
    text-decoration: none !important;
    transition: 0.2s ease-in !important;
    -webkit-transition: 0.2s ease-in !important;
    -moz-transition: 0.2s ease-in !important;
    -o-transition: 0.2s ease-in !important;
    -ms-transition: 0.2s ease-in !important;
    position: relative !important;
    display: inline-block !important;
    border-bottom: 1px dotted black !important; /* If you want dots under the hoverable text */
    -webkit-touch-callout: none !important; /* iOS Safari */
    -webkit-user-select: none !important; /* Safari */
    -khtml-user-select: none !important; /* Konqueror HTML */
    -moz-user-select: none !important; /* Firefox */
    -ms-user-select: none !important; /* Internet Explorer/Edge */
    user-select: none !important; /* Non-prefixed version, currently supported by Chrome and Opera */
}

    .buttonHov:hover {
        background: #eee !important;
        color: #555 !important;
        text-decoration: none !important;
        z-index: 10 !important;
    }

.button:disabled,
.button[disabled] {
    cursor: default;
	border: 1px solid #eee;
}

.button:hover {
	background: #eee;
    color: #555;
    text-decoration: none;
    z-index: 10;
}

select.button {
    font-weight: normal;
    height: 26px;
}

select.button:hover {
    background: #ffffff;
}

.button.propagate {
	width: 5px;
	margin: 1px 0px 1px 5px;
	padding: 6px 6px 0px 6px;
}

.button .tooltiptext_left {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 500;
    top: 175%;
    left: 75%;
    margin-left: -15px;
	padding: 5px;
    opacity: 0;
    transition: opacity 1s 2s ease;
}

.button .tooltiptext_left::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 15px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555  transparent;
}

.button .tooltiptext_right {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 500;
    top: 175%;
    right: 75%;
    margin-right: -15px;
	padding: 5px;
    opacity: 0;
    transition: opacity 1s 2s ease;
}

.button .tooltiptext_right::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 15px;
    margin-right: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555  transparent;
}

.button .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 500;
    top: 175%;
    left: 30%;
    margin-left: -92px;
	padding: 5px;
    opacity: 0;
    transition: opacity 1s 2s ease;
}

.button .tooltiptext_big {
    visibility: hidden;
    width: 350px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 500;
    top: 175%;
    left: 30%;
    margin-left: -167px;
    padding: 5px;
    opacity: 0;
    transition: opacity 1s 0.5s ease;
}

    .button .tooltiptext_big::after,
.button .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 100%;
    margin-left: -52%;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555  transparent;
}

.button:hover .tooltiptext_left,
.button:hover .tooltiptext_right,
.button:hover .tooltiptext,
.button:hover .tooltiptext_big {
    visibility: visible;
    opacity: 1;
}

.main_menu {
	background: #f5f5f5;
	border-bottom: 1px solid #aaaaaa;
	width: 100%;
	min-height: 36px;
	max-height: 36px;
	height: 36px;
    position: fixed;
    top: 0px;
    z-index: 10;
}

.main_menu p {
	display: inline-block;
	margin: 12px 5px 0px 30px;
	font-weight: bold;
}

.info_line {
	background: rgba(0,0,0,0);
	border-bottom: 1px solid #aaaaaa;
	width: 100%;
	height: 25px;
    dropdown-containerd;
    bottom: 0px;
    z-index: 10;
}

.info_line p {
    text-align: left;
    display: block;
	margin: 0px 12px 0px 12px;
	font-weight: bold;
}

.dashboard_container {
    display: block;
    margin: auto;
}

.editor_container {
    display: block;
    margin: auto;
}

.editor_container_mobile {
    display: block;
    margin: auto;
    overflow: hidden;
    position:absolute;
    top:50px;
    left:0;
    right:0;
    border:1px solid #aaa;
}

.editor_container_mobile:hover {
    overflow: auto;
    padding-left: -20px;
}

.dashboard {
	display: inline-block;
    width: 100%;
	margin: auto;
}

.dashboard * {
	display: inline-block;
	vertical-align: top;
}

.dashboard_column {
	display: inline-block;
	vertical-align: top;
	max-width: 600px;
	height: auto;
	margin: auto;
}

.dashboard_column * {
	display: block;
	vertical-align: top;
}

.display {
    position: relative;
	margin: 5px 5px 0 0;
	border: 1px solid #ddd;
    border-radius: 5px;
}

.display b {
    display: inline-block;
    vertical-align: initial;
}

.display p span {
    display: inline-block;
}

.content {
	position: relative;
	width: 100%;
	overflow: auto;
}

.value_row {
    position: relative;
    width: 100%;
    display: inline-block;
}

.value_row p {
    display: inline-block;
    height: 10px;
    vertical-align: bottom;
    margin-top: auto;
}

p.name {
    margin-left: 15px;
    margin-right: 0px;
}

p.value {
    font-weight: bold;
    margin-left: 10px;
    margin-right: 0px;
}

p.unit {
    margin-left: 2px;
    margin-right: 5px;
}

.display *,
.display table tbody tr td * {
	display: block;
}

.display style,
.display script {
    display: none !important;
}

.display table {
	display: table;
}

.display table thead,
.display table tbody,
.display table tfoot {
	display: table-row-group;
}

.display table tfoot {
	vertical-align: bottom;
}

.display table thead tr,
.display table tbody tr,
.display table tfoot tr {
	display: table-row;
}

.display table thead tr th,
.display table tbody tr td,
.display table tfoot tr td {
	display: table-cell;
}

.display .content {
	/*position: absolute;
	top: 35px; */
}

.display_header {
    z-index: 2;
	position: absolute;
	top: 0px;
	height: 30px;
	width: 100%;
	background-color: argb(0,0,0,0);
    border-radius: 5px 5px 0px 0px;
}

.display_footer {
	position: absolute;
	bottom: 0px;
	height: 35px;
	width: 100%;
	/*background-color: rgba(0,0,0,0.07);*/
    border-radius: 0px 0px 5px 5px;
}

.display_footer_double {
	position: absolute;
	bottom: 0px;
	height: 70px;
	width: 100%;
	background-color: rgba(0,0,0,0.07);
    border-radius: 0px 0px 5px 5px;
}

.display_footer_triple {
	position: absolute;
	bottom: 0px;
	height: 105px;
	width: 100%;
	background-color: rgba(0,0,0,0.07);
    border-radius: 0px 0px 5px 5px;
}

.display_footer {
}

.display_title {
	position: relative;
	display: inline-block;
	font-weight: bold; 
	margin: 7px 15px 7px 15px;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.display_text {
	margin: 10px 15px 10px 15px;
}

.add {
	cursor: pointer;
    background: #fff;
	background-image: url("../images/add.png");
	background-repeat: no-repeat;
	background-position: center;
}

.window {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: 100;
	background-color: rgba(255,255,255,0.5);
}

.show {
	display: block;
}

.hide {
	display: none;
}

.window_options {
	position: relative;
	width: 600px;
	height: 80vh;
	margin: auto;
	padding: 0;
	margin-top: 10vh;
	background-color: rgb(255,255,255); 
    border-radius: 5px;
	
	-webkit-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	-moz-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
}

.window_options table, 
.window_options table tr, 
.window_options table tr td,
.window_options_small, 
.window_options_small table tr, 
.window_options_small table tr td {
	margin: none;
	padding: none;
}

.window_options table {
	height: 80vh;
    width: 100%;
}


.window_options_small {
	position: relative;
	width: 500px;
	height: 350px;
	margin: auto;
	padding: 0;
	margin-top: 10vh;
	background-color: rgb(255,255,255); 
    border-radius: 5px;
	
	-webkit-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	-moz-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
}

.window_options_small table {
	height: 350px;
}

.window_header {
    background-color: #f21c0a;
    background-size: cover;
	width: 100%;
    min-width: 500px;
	height: 36px;
    border-radius: 5px 5px 0px 0px;
}

.window_header p{
	display: inline-block;
    color: white;
	max-width: 80%;
	margin: 10px 15px 20px 15px;
	font-size: 14px;
	font-weight: bold;
}

.window_content_container {
    position: absolute;
    width: 100%;
    top: 40px;
    bottom: 45px;
    overflow: auto;
}

.window_content_container_float {
    position: absolute;
    width: 100%;
    top: 40px;
    bottom: 45px;
    overflow: auto;
}

.window_content {
	margin-left: 10px;
	height: auto;
}

.window_footer {
	width: 100%;
	padding-top: 10px;
	height: 40px;
}

.window_info {
	position: relative;
	width: 500px;
	height: 170px;
	margin: auto;
	padding: 0;
	margin-top: 30vh;
	background-color: rgb(255,255,255); 
    border-radius: 5px;
	
	-webkit-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	-moz-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
}

.window_info table, .window_info table tr, .window_info table tr td {
	margin: none;
	padding: none;
}

.window_info table {
	height: 170px;
    width: 100%;
}

.window_upload {
	position: relative;
	width: 500px;
	height: 600px;
    max-height: 70vh;
	margin: auto;
	padding: 0;
	margin-top: 15vh;
	background-color: rgb(255,255,255); 
    border-radius: 5px;
	
	-webkit-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	-moz-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
	box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
}

.window_upload table, .window_upload table tr, .window_upload table tr td {
	margin: none;
	padding: none;
}

.window_upload table {
	height: 600px;
    max-height: 70vh;
    width: 100%;
}


.window_custom {
    position: relative;
    width: 600px;
    height: 80vh;
    margin: auto;
    padding: 0;
    margin-top: 10vh;
    background-color: rgb(255,255,255);
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
    -moz-box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
    box-shadow: 5px 5px 42px 0px rgba(0,0,0,0.44);
}

.window_custom table,
.window_custom table tr,
.window_custom table tr td {
    margin: none;
    padding: none;
}

.window_custom table {
    height: 80vh;
    width: 100%;
}


.option_double {
	display: inline-block;
	width: 470px;
}

.option_double * {
	vertical-align: top;
	display: inline-block;
	width: 110px;
	margin: 0px;
    font-size: 12px;
}

.option_double input {
	margin-bottom: 5px;
	margin-top: 2px;
    margin-right: 4px;
	height: 15px;
	width: 110px;
}
 
.option_double select {
	margin-bottom: 5px;
	margin-top: 2px;
    margin-right: 4px;
	height: 22px;
	width: 105px;
}

.option {
	display: inline-block;
	width: 98%;
}

.option * {
	vertical-align: top;
	display: inline-block;
	width: 220px;
	margin: 0px;
}

.option dl dd ul li a {
    width: 212px;
}

.option div {
	display: table-row;
}

.option div.hide {
	display: none;
}

.option p, 
.option_double p {
	width: 200px;
	margin: 5px 0px 5px 15px;
}

.option select {
	margin-bottom: 5px;
	margin-top: 2px;
	height: 20px;
	width: 223px;
}

.option select option[value="pie"]   { background-image:url(../images/pie.png);   }
.option select option[value="line"] { background-image:url(../images/line.png); }
.option select option[value="bar"] { background-image:url(../images/bar.png); }

.option textarea {
	margin-bottom: 5px;
	margin-top: 2px;
	width: 218px;
	resize: vertical;
    font-family: 'BrixSans', BrixSans, sans-serif;
	font-size: inherit;
}
.option textarea.full {
	width: 450px;
	margin: 5px 0px 5px 15px;
	resize: vertical;
    font-family: 'BrixSans', BrixSans, sans-serif;
	font-size: inherit;
}

.option input {
	margin-bottom: 5px;
	margin-top: 2px;
    padding: 0px;
	height: 20px;
	width: 220px;
}

.option input.half {
	width: 110px;
	margin-right: 4px;
}

.option select.half {
	width: 105px;
}

.option input[type="color"] {
	height: 20px;
    width: 218px;
	-webkit-appearance: none;
    display: inline-block;
}

.option input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}
.option input[type="color"]::-webkit-color-swatch {
	border: none;
}

.option input[type="range"] {
    width: 170px;
    display: inline-block;
}

.option p.range_value {
	text-align: right;
	margin-left: 10px;
    width: 40px;
}

.option p.header {
	text-align: center;
}

.option p.data {
	margin: 5px 0px 5px 5px;
    width: 116px;
} 

.option select.auto {
	margin: 5px 0px 5px 5px;
    width: auto;
} 

.option p.data2 {
	margin: 5px 0px 5px 5px;
    width: 120px;
}

.option input.data {
	margin: 5px 0px 5px 5px;
    height: 14px;
    width: 114px;
} 

.option select.data {
	margin: 5px 0px 5px 5px;
    width: 114px;
}

.option input.data2 {
	margin: 5px 0px 5px 5px;
    width: 90px;
    height: 14px;
}

.option select.data2 {
	margin: 5px 0px 5px 5px;
    width: 90px;
}

.option p.data3 {
	margin: 5px 0px 5px 5px;
    width: 90px;
}

.option input.data3 {
	margin: 5px 0px 5px 5px;
    width: 45px;
    height: 14px;
}

.option select.data3 {
	margin: 5px 0px 5px 5px;
    width: 90px;
}

.option p.name {
	margin: 7px 0px 5px 15px;
	width: 55px;
}

.option p.name_big {
	margin: 7px 0px 5px 15px;
	width: 182px;
}

.option input[type="color"].color, .option p.color {
	width: 20px;
}

.head {
	display: inline-block;
	width: 98%;
	background-color: #f0f0f0;
    border-radius: 5px;
	margin: 15px 0px 10px 0px;
	font-weight: bold;
}

.head * {
	display: inline-block;
	width: 98%;
	margin: 5px 5px 5px 10px;
}

.value_datagrid table {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

.value_datagrid {
	font: normal 12px/175% Arial, Helvetica, sans-serif;
	overflow: hidden;
	border: none;
	border-radius: 3px;
}

.value_datagrid table td, .value_datagrid table th {
	padding: 3px 10px;
	vertical-align: bottom;
}

.value_datagrid table tbody td {
	color: #000;
	border: none;
	font-size: 12px;
	font-weight: normal;
}

.value_datagrid table tbody td:first-child {
	border-left: none;
}

.value_datagrid table tbody tr:last-child td {
	border-bottom: none;
}

div.dhtmlx_window_active, div.dhx_modal_cover_dv {
	position: fixed !important;
}

.dropdown {
    margin-bottom: -10px
}       

.dropdown dd, .dropdown dt, .dropdown ul { 
    margin:0px; 
    padding:0px; 
}

.dropdown dd { 
    position:relative; 
}
.dropdown a, .dropdown a:visited { 
    color: #000;
    text-decoration:none; 
    outline:none;
}

.dropdown a:hover { 
}

.dropdown dt a:hover { 
    border: 1px solid #d0c9af;
}

.dropdown dt a {
    background: #ffffff url('../images/arrow.png?v=1') no-repeat scroll right center; 
    padding-left: 0px;
    margin-left: 0px;
    display:block; 
    border:1px solid #aaa; 
    width: 222px;
    height: 34px;
}

.dropdown dt a span {
    cursor:pointer; 
    display:block; 
    padding:5px;
}

.dropdown dd ul { 
    background:#ffffff none repeat scroll 0 0; 
    border:1px solid #aaa; 
    display:none;
    left:0px; 
    padding: 0px 2px 0px 0px; 
    margin: -1px 0px 0px 0px;
    position:absolute; 
    width:auto; 
    min-width:170px; 
    list-style:none;
    z-index: 1;
}

.dropdown span.value { 
    display:none;
}

.dropdown dd ul li a { 
    padding:5px; 
    display:block;
}

.dropdown dd ul li a:hover { 
    background-color: #eeeeee;
}
        
.dropdown img.icon { 
    border:none; 
    vertical-align:middle; 
    margin-top: -1px;
    margin-left: 0px;
    margin-right: 10px;
    padding: 0px;
    height: 28px;
    width: 28px;
}

div.time {
    margin: 0 0 0 10px;
}

div.time input[type="date"],
div.time input[type="datetime"],
div.time input[type="datetime-local"],
div.time select,
div.time p {
    display: inline-block;
}

div.time select {
    margin: 5px 10px;
	height: 24px;
    width: 130px;
    font-size: 13px !important;
}

div.time input {
    margin: 12px 5px 0 0;
	height: 24px;
    font-family: 'Gotham', sans-serif;
    font-size: 13px !important;
    width: 140px;
    padding: 0px 3px;
}

div.time input:-moz-read-only { /* For Firefox */
    background-color: #eee;
}

div.time input:read-only { 
    background-color: #eee;
}

p.time {
    margin: 11px 8px 0 2px;
}

p.time_70px {
    min-width: 70px;
    margin: 11px 8px 0 2px;
}

a.time {
    margin: 6px 0 0 10px;
    width: 60px;
    display: inline-block;
}

div.device {
    margin: 0 0 0 10px;
}

div.device * {
    display: inline-block;
}

div.device select {
    min-width: 100px;
    margin: 5px 10px 0 0;
	height: 24px;
}

div.device input[type="text"],
div.device input[type="submit"] {
    min-width: 100px;
    margin: 10px 10px 0 0;
    height: 24px;
    text-align: right;
}

div.time device {
    margin: 5px 5px 0 0;
	height: 25px;
}

p.device {
    margin: 11px 8px 0 2px;
}

a.device {
    margin: 4px 0 0 10px;
}

@media (max-width: 800px) {
    body {
        overflow: auto;
    }

    .main_menu p {
	    display: none;
    }

    div.device select {    
        padding-top: 1px;
        font-size: 12px !important;
    }

    div.device input {
        padding-top: 3px;
        font-size: 12px !important;
    }

    div.time input.time_input_bootstrap {    
        padding-top: 4px;
        font-size: 12px !important;
    }

    div.time select {
        font-size: 12px !important;
    }

    div.time p {
        padding-top: 2px;
    }
}

@media (max-width: 640px) {
    .main_menu {
	    height: 72px;
    }

    .main_menu p {
	    display: none;
    }

    .editor_container_mobile {
        top:80px;
    }
}

@media (max-width: 350px) {
    .main_menu {
	    height: 106px;
    }

    .editor_container_mobile {
        top:110px;
    }
}

.carpet_legend {
    width: 200px;
    height: 40px;
    margin: auto;
}

.legend_text {
    margin: auto;
    width: 200px;
    height: 20px;
    display: inline-block;
}

.legend_text p {
    margin: 5px 0px 0px 0px;
    width: 50px;
    height: 15px;
    display: inline-block;
}

.legend_text p.min {
    float: left;
    text-align: left;
}

.legend_text p.max {
    float: right;
    text-align: right;
}

.carpet_colors {
    width: 200px;
    height: 20px;
    margin: auto;
    background: -webkit-linear-gradient(left, 
    hsla(250,75%,40%,1), 
    hsla(240,75%,40%,1), 
    hsla(230,75%,40%,1),
    hsla(220,75%,40%,1), 
    hsla(210,75%,40%,1),
    hsla(200,75%,40%,1), 
    hsla(190,75%,40%,1), 
    hsla(180,75%,40%,1), 
    hsla(170,75%,40%,1), 
    hsla(160,75%,40%,1), 
    hsla(150,75%,40%,1), 
    hsla(140,75%,40%,1), 
    hsla(130,75%,40%,1), 
    hsla(120,75%,40%,1), 
    hsla(110,75%,40%,1), 
    hsla(100,75%,40%,1), 
    hsla(90,75%,40%,1), 
    hsla(80,75%,40%,1), 
    hsla(70,75%,40%,1), 
    hsla(60,75%,40%,1), 
    hsla(50,75%,40%,1), 
    hsla(40,75%,40%,1), 
    hsla(30,75%,40%,1), 
    hsla(20,75%,40%,1),
    hsla(10,75%,40%,1),  
    hsla(0,75%,40%,1));
}

.carpet_day,
.carpet_month {
    margin: auto;
}

.carpet_day table {
    padding: 0px 10px 0px 10px;
    margin: auto;
    color: #777;
}

.carpet_month table {
    padding: 10px 10px 0px 10px;
    margin: auto;
    color: #777;
}

.carpet_day tr,
.carpet_month tr {
    display: table-row;
}

.carpet_day th {
    display: table-cell;
    text-align:center;
    vertical-align: bottom;
    white-space:nowrap;
    g-origin:75% 75%;
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    transform: rotate(-60deg);

    max-width: 40px;
}

.carpet_month th {
    display: table-cell;
    text-align:center;
    vertical-align: middle;
    white-space:nowrap;
    height: 30px;
    width: 60px;
}

.carpet_month_title {
    display: table-cell;
    text-align:center;
    vertical-align: bottom;
    white-space:nowrap;
    font-size: 22px;
    width: 60px;
    color: #000
}

.carpet_day th p {
    margin: -10px 0px 30px -20px;
    display:inline-block;
}
.carpet_day th p:before{
    content:'';
    width:0;
    padding-top:100%;/* takes width as reference, + 10% for faking some extra padding */
    display:inline-block;
    vertical-align: bottom;
    text-align: left;
}

.carpet_day td {
    display: table-cell;
    max-width: 40px;
}

.carpet_month td {
    display: table-cell;
    width: 48px;
    height: 48px;
    text-align:center;
    vertical-align: middle;
    background: #aaa;
}

.carpet_month td p {
    width: auto;
    height: auto;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

.carpet_day td.time {
    display: table-cell;
    font-weight: bold;
    width: 50px;
    min-width: 50px;
}

.indicator {
    z-index: 5;
    border: 1px solid rgba(255,255,255, 0.0);
}

.indicator:hover {
    border: 1px solid rgba(255,255,255, 0.5);
}

.tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: rgba(40,40,40, 0.9);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    top: 10px;
    left: 10px;
    position: fixed;
    z-index: 10;
    margin-left: 0px;
	padding: 5px;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 15px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555  transparent;
}

.visible {
    visibility: visible;
}

.xml_textarea {
}

.device_select_container {
    /*min-width: 300px;*/
}

.device_select_container p {
    min-width: 70px;
}

.device_select_container select,
.device_select_container input[type="text"],
.device_select_container input[type="submit"] {
    width: 176px;
}

.grayscale {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: url(grayscale.svg); /* Firefox 4+ */
    filter: gray; /* IE 6-9 */
}

.bold {
}

.bold td {
    font-weight: bold;
    color: #555;
}

div.device input.search_input {
    text-align: left;
    padding-left: 5px;
}

div.device input.search_input::after {
    width: 300px;
    height: 300px;
    background: url("http://www.gentleface.com/i/free_toolbar_icons_16x16_black.png");
    top: 10px;
    right: 5px;
    position: relative;
    display: inline-block;
}

div.time select option,
div.device select option {
    display: block !important;
}

.date-input-buttons {
    margin-top: 14px;
}

.loading_page{
    z-index: 1001;
    background-color:#fff;
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.loading_page_2{
    z-index: 1000;
    background-color:rgba(255, 255, 255, 0.5);
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.loader_container {
    background-color:rgba(0, 0, 0, 0);
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 600px;
}


.loader {
    border: 5px solid #efefef;
    border-top: 5px solid #aaa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    background-color: rgba(0,0,0,0);
    
    position:absolute;
    left:0; right:0;
    top:0; bottom:0;
    margin:auto;
}

.loading_container {
    position:absolute;
    left:0; right:0;
    top:0; bottom:0;
    margin:auto;
    padding-top: 50px;
}

.loading_text {
    font-size: 12px;
    color: rgba(0,0,0,0.44);
    font-weight: bold;
    margin-top: 300px;
    text-align: center;
}

.loading_message {
    font-size: 12px;
    color: hsl(0, 100%, 43%);
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    padding: 20px;
    background-color: #e0e0e0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.date {
    max-width: 130px;
    display: block;
}

.time * {
    display: inline-block;
}

.bootstrap-datetimepicker-widget {
    height: 280px;
    position: relative;
}

.bootstrap-datetimepicker-widget div {
    width: 100%;
}

.bootstrap-datetimepicker-widget * {
    display: initial;
    position: initial;
}


.time input.time_input_bootstrap {
    margin: 0px;
    border-radius: 0px;
    padding-left: 5px;
    font-size: 12px !important;
}

.time .input-group-addon {
    font-size: 10px;
}

.time .input-group {
    margin: 5px 5px 0 0; 
}

.time span {
    border-radius: 0px;
}



/************************************************/
/*             NEW TABLE STYLE                  */
/************************************************/

.tableview {
    position: relative;
    padding-top: 0em; /*header height*/
    border: 1px solid #e9e9e9;
    color: #364c5d;
}

    .tableview:before,
    .tableview-has-footer:after {
        content: "";
        position: absolute;
        display: block;
        left: 0;
        right: 0;
    }

    .tableview:before {
        top: 0;
    }

.tableview-has-footer:after {
    bottom: 0;
}

.tableview > .tableview-holder {
    display: block;
    position: static;
    overflow-x: hidden;
    overflow-y: auto;
}

    .tableview > .tableview-holder > table {
        width: 100%;
        position: static;
        border-spacing: 0;
        border-collapse: collapse;
    }

        .tableview > .tableview-holder > table > thead > tr > [caption],
        .tableview > .tableview-holder > table > thead > tr > [caption]:after {
            white-space: nowrap;
            position: static;
            height: 0;
            line-height: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

            .tableview > .tableview-holder > table > thead > tr > [caption]:after {
                content: attr(caption);
                color: transparent;
                display: inline-block;
            }

            .tableview > .tableview-holder > table > thead > tr > [caption]:before {
                content: attr(caption);
                position: absolute;
            }

.tableview-has-footer:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
}

.tableview-has-footer > .tableview-holder > table > tfoot > tr > * > .fixed {
    position: absolute;
    bottom: 0;
    z-index: 10000;
}

.tableview:before {
    height: 0em; /*header height*/
}

.tableview > .tableview-holder {
    max-height: 100%;
}

    .tableview > .tableview-holder > table > thead > tr > [caption]:before {
        line-height: 3.4285714em;
        margin-top: -3.4285714em;
    }

.tableview-has-footer {
    padding-bottom: 0em; /*header height*/
}

    .tableview-has-footer:after {
        height: 0em; /*footer height*/
    }

    .tableview-has-footer > .tableview-holder > table > tfoot > tr > * > .fixed {
        height: 0em; /*footer height*/
        line-height: 0em; /*footer height*/
    }

.tableview:before {
    background: #eef9ff;
    border-bottom: 1px solid #e9e9e9;
}

.tableview-holder > table > * > tr > * {
    padding: 0 0.35715em;
}

    .tableview-holder > table > * > tr > *:first-child {
        padding-left: 2.142857em;
    }

    .tableview-holder > table > * > tr > *:last-child {
        padding-right: 2.142857em;
    }

.tableview-holder > table > thead > tr > [caption] {
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

/*.tableview-holder > table > tbody:hover > tr > * {
    opacity: .6;
    -webkit-filter: blur(1px);
}

.tableview-holder > table > tbody:hover > tr:hover > * {
    opacity: 1;
    -webkit-filter: blur(0px);
}*/

.tableview-holder > table > tbody > tr:not(:first-child) {
    border-top: 1px solid #e9e9e9;
}

/*.tableview-holder > table > tbody > tr:hover {
    background: #f5f5f5;
    transition: background .2s;
}*/

.tableview-holder > table > tbody > tr > * {
    padding-top: 0.71428em;
    padding-bottom: 0.71428em;
    transition: opacity .2s;
}

.tableview-has-footer:after {
    background: #e6e6e6;
}

.tableview-has-footer tfoot {
    font-weight: bold;
    text-transform: uppercase;
    color: #8e9aa3;
    text-shadow: 1px 1px 1px #fff;
}

.only-head {
    margin-bottom: 0px !important;
}


.btn-group ul.dropdown-menu {
    display: none;
}

.open ul.dropdown-menu {
    display: block !important;
}

ul.dropdown-menu li {
    width: 100%;
}

ul.dropdown-menu input[type="checkbox"] {
    margin: 2px -25px;
    font-size: 12px;
}

.btn.btn-default {
    border-radius: 0px;
    border-width: 1px;
    border-color: #ddd;
    font-size: 12px;
    padding: 2px 10px 2px 10px;
    margin: 5px;
    width: 250px;
}

.multiselect-container > li > a > label {
    font-size: 12px;
}

span.multiselect-selected-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 220px;
}





.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dropdown-container, .instructions {
    width: 220px;
    font-size: 12px;
    margin: 5px 10px 5px 0px;
    position: absolute;
    z-index: 8;
    background: #fff;
}

.instructions {
    width: 100%;
    text-align: center;
}

.dropdown-button {
    float: left;
    width: 100%;
    padding: 4px 3px;
    cursor: pointer;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.dropdown-label, .dropdown-quantity
{
    float: left;
}

.dropdown-quantity {
    margin-left: 1px;
    width: 210px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fa-filter {
    float: right;
}

.dropdown-list {
    float: left;
    width: 100%;
    border: none;
    box-sizing: border-box;
    padding: 0px 0px;
    height: 0px;
}

.dropdown-search {
    border: 1px solid #ccc;
    width: 300px;
    margin: -1px 0px 0px 0;
    height: 24px;
    text-align: left;
    padding: 5px 5px;
}

.dropdown-list ul {
    margin: 0px;
    max-height: 300px;
    overflow-y: auto;
    padding: 0px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
}


.dropdown-list input[type="checkbox"] {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 15px;
    height: 15px;
    margin: 5px 10px;
}

.dropdown-list label {
    margin: 6px 0px;
    width: 240px;
    font-weight: normal;
}

/* The container */
.export_checkbox_container {
    display: block;
    position: relative;
    padding: 0px 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'BrixSans', BrixSans, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.export_checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.export_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.export_checkbox_container:hover input ~ .export_checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.export_checkbox_container input:checked ~ .export_checkmark {
    background-color: #f21c0a;
}
.export_checkbox_container input.partial:checked ~ .export_checkmark {
    background-color: #777;
}

/* Create the checkmark/indicator (hidden when not checked) */
.export_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.export_checkbox_container input:checked ~ .export_checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.export_checkbox_container .export_checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.l1 {
    margin-left: 30px;
}

.l2 {
    margin-left: 60px;
}

.l3 {
    margin-left: 90px;
}

.l4 {
    margin-left: 120px;
}

@media (max-width: 640px) {

    .device_select_container {
        padding-top: 5px;
    }

    .device_select_container p {
        min-width: 100px;
    }
}