@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,400);

*{
	margin: 0;
	padding: 0;
}

body{
	text-align: center;
	font-family: calibri, arial;
}

a{
	text-decoration: none;
	border: 0;
}

/* GENERAL */
.content_wrapper{
	width: 95%;
	margin: 0 auto;
	
	text-align: left;
}

.center{
	width: 941px;
	margin: 0 auto;
}

.column{
	float: left;
	width: 100%;
	margin-top: 20px;
}

.third_column{
	float: left;
	width: 33.33%;
}

.half_column{
	float: left;
	width: 50%;
}

.btn{
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
}

.btn-primary {
	color: #fff;
	background-color: #337ab7;
	border-color: #2e6da4;
}

.btn-green{
	display: inline-block;
	padding: 6px 20px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #fff;
	background-color: #94d1bf;
	border-color: #94d1bf;
}

.btn-green-sel, .btn-green:hover {
  background-color: #F37321;
  border-color: #F37321;
}

@media screen and (max-width: 768px) {
	.center{
		width: 95%;
	}
	
	.column{
		margin-bottom: 200px;
	}
	
	.half_column{
		width: 100%;
	}
}

/* NOTICES */
.notice{
	text-align: left;
	
	width: 90%;
	margin: 0 auto;
	
	padding: 0;
}

.notice-blue, .notice-red{
	width: 100%;

	padding: 4px;

	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.notice-blue{
	background-color: #00AADD;
	color: #FFFFFF;
	
	border: 1px solid #00A0D0;
}

.notice-red{
	background-color: #DD5500;
	color: #FFFFFF;
	
	border: 1px solid #D05000;
}

/* MENU */
#menu{
	width: 1000px;
	margin: 0 auto;

	text-align: left;
}

.menu_wrapper{
	float: left;
	width: 100%;
	
	border-bottom: 1px solid #AAAAAA;
}

#menu li{
	display: inline-block;
	float: left;
	margin-right: 1px;
}

#menu li a{
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #0A0A0A;
	background: #FFFFFF;
	text-decoration: none;
}

#menu li:hover a{
	background: #DADADA;
}

#menu #logout_menu_item{
	float: right;
}

#menu #logout_menu_item:hover a{
	color: #FFFFFF;
}

/* GENERAL EDIT */
.row{
	float: left;
	width: 100%;
	margin-bottom: 10px;
}

.row label{
	float: left;
	width: 150px;
	min-height: 15px;
	padding: 5px;
}

.row input[type="text"],
.row input[type="password"],
.row select{
	padding: 5px;
	width: 200px;
}

.row input[type="checkbox"]{
	margin: 5px;
}

.row input[type="submit"]{
	padding: 5px;
}

.row .value_wrapper{
	padding: 5px;
}

/* LIST */
.list_main{
	float: left;
	width: 100%;
}

.list_top{
	width: 100%;
	height: 50px;
}

.list_title{
	float: left;
	font-size: 25px;
	margin: 5px;
	
	font-size: 25px;
	color: #F37321;
	text-transform: uppercase;
}

.list_add_button{
	float: left;
	
	margin: 5px;
	padding: 8px;
	
	color: #0A0A0A;
	
	text-decoration: none;
	border: 1px solid #DADADA;
	/* background-color: #58D3F7; */
	background-color: #F37321;
	color: #FFFFFF;
}

.list_add_button:hover{
	background-color: #A9E2F3;
}

.list_index_links{
	float: left;
	font-size: 20px;
	margin: 5px;
}

.list_index_links>.step_link {
	display: inline-block;
}

.list_index_links>a {
	padding-left: 2px;
	padding-right: 2px;
}

.list_search{
	float: right;
}

.list_search input[type="text"]{
	margin: 5px;
	padding: 5px;
}

.list_search input[type="submit"]{
	margin-top: 5px;
	padding: 5px;
}

.list_column{
	position: relative;
	width: 10%;
}

.list_wrapper, .list_header{
	float: left;
	width: 100%;
}

.list_header{
	border-top: 1px solid #DADADA;
	border-bottom: 1px solid #DEDEDE;
}

.list_header .list_column {
	float: left;
	padding: 10px;
}

.list_row {
	float: left;
	width: 100%;
}

.list_row_odd{
	background-color: #F37321;
	color: #FFFFFF;
}

.list_row  .list_column{
	float: left;
	padding: 10px;
}

.list_column_mod_odd{
	background-color: #f0f0f0;
}
.list_column_mod_even{
	background-color: #fff;
}

.list_button{
	float: right;
	margin: 10px;
}

.list_sort_arrow_down{
	position: absolute;
	top: 5px;
	right: 5px;

	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #ccc;
}

.list_sort_arrow_up{
	position: absolute;
	top: 5px;
	right: 5px;

	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #ccc;
}

/* Energy overview */
#previous_date{
	
}

#next_date{
	
}

.yellow_block{
    background: #96A9B5 !important;
}

@media screen and (max-width: 380px) {
	#previous_date,
	#next_date{
		padding: 6px 0px;
	
		width: 95%;
		
		margin-top: 8px;
		margin-bottom: 8px;
	}
	
	#select_day,
	#select_month,
	#select_year{
		width: 30%;
	}
}

/* END USER HEADER */
#top_header{
	float: left;
	
	width: 100%;
	height: 70px;
	
	background-color: #242d33;
	
	border-bottom: 4px solid #FFFFFF;
	
	-webkit-box-shadow: 0 3px 13px 0 #BFBFBF;
	box-shadow: 0 3px 13px 0 #BFBFBF;
	
	position: relative;
}


#main_logo{
	float: left;

	width: 109px;
	height: 30px;

	margin-top: 19px;
	margin-left: 27px;
	background-size: cover;

	background-image: url('images/Logo_ZO.png');
}

#top_header .menu_wrapper{	
	float: right;
	width: auto;
	
	border: none;
	
	margin-right: 27px;
}

#top_header #menu{
	width: auto;
	
	text-transform: uppercase;
	font-size: 14px;
}

#top_header #menu li{
	display: inline-block;
	float: left;
	margin-right: 1px;
	
	position: relative;
}

#top_header #menu li a{
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #979696;
	background: none;
	text-decoration: none;
}

#top_header #menu .selected_menu_item,
#top_header #menu li:hover a{
	color: #FFFFFF;
}

#top_header .pulse{
	width: 54px;
	height: 19px;

	background-image: url('images/small_pulse_line.png');
	
	margin: 0 auto;
	margin-top: -15px;
}

#top_header #menu .menu_item_seperator{
	border: 1px solid #F37321;
	
	width: 0px;
	height: 15px;
	
	margin-top: 26px;
}

#top_header #resp_menu_button{
	display: none;
}

/* END USER MAIN LAYOUT	*/
#end_user_content{
	position: relative;
}

#end_user_content_wrapper{
	float: left;
	margin-top: 20px;
	
	padding-bottom: 40px;
	
	width: 100%;
	
	background: #FFFFFF;
}

img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
	img.bg {
		left: 50%;
		margin-left: -512px;   /* 50% */
	}
}

@media screen and (max-width: 768px) {
	#top_header{
		height: auto;
	}
	
	#top_header .center{
		width: 100%;
	}
	
	#main_logo{
		margin-bottom: 15px;
	}
	
	.pulse{
		display: none;
	}
	
	#top_header #resp_menu_button{
		display: block;
	
		float: right;
	
		width: 30px;
		height: 30px;
		
		margin-top: 20px;
		margin-right: 20px;
		
		background: url('images/resp_menu_button.png');
	}
	
	#top_header .menu_wrapper, 
	#top_header #menu{
		width: 100%;
		margin: 0;
	}
	
	#top_header #menu{
		display: none;
	}
	
	#top_header #menu  .menu_item_seperator{
		display: none;
	}
	
	#top_header #menu li{
		width: 100%;
	}
	
	#top_header #menu li a{
		height: auto;
		line-height: normal;
		
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	#end_user_content_wrapper{
		margin-bottom: 200px;
	}
}

/* ADMIN TOP HEADER */
#admin_top_header{
	float: left;
	
	width: 100%;
	
	background-color: #1e2324;
	
	border-bottom: 4px solid #FFFFFF;
	
	-webkit-box-shadow: 0 3px 13px 0 #BFBFBF;
	box-shadow: 0 3px 13px 0 #BFBFBF;
	
	position: relative;
	z-index: 10;
	
	margin-bottom: 10px;
}

#admin_top_header .center{
	width: auto;
}

#admin_top_header .menu_wrapper{	
	float: right;
	width: auto;
	
	border: none;
	
	margin-right: 27px;
}

#admin_top_header #menu{
	width: auto;
	
	text-transform: uppercase;
	font-size: 14px;
}

#admin_top_header #menu li{
	display: inline-block;
	float: left;
	margin-right: 1px;
	
	position: relative;
}

#admin_top_header #menu li a{
	float: left;

	display: block;
	padding-left: 5px;
	padding-right: 5px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #979696;
	background: none;
	text-decoration: none;
}

#admin_top_header #menu .selected_menu_item,
#admin_top_header #menu li:hover a{
	color: #FFFFFF;
}

#admin_top_header .pulse{
	width: 54px;
	height: 19px;

	background-image: url('images/small_pulse_line.png');
	
	margin: 0 auto;
	margin-top: -15px;
}

#admin_top_header #menu .menu_item_seperator{
	border: 1px solid #F37321;
	
	width: 0px;
	height: 15px;
	
	margin-top: 26px;
}

#admin_top_header #resp_menu_button{
	display: none;
}

@media screen and (max-width: 1023px) {
	#admin_top_header{
		height: auto;
	}
	
	#admin_top_header .center{
		width: 100%;
	}
	
	#main_logo{
		margin-bottom: 15px;
	}
	
	.pulse{
		display: none;
	}
	
	#admin_top_header #resp_menu_button{
		display: block;
	
		float: right;
	
		width: 30px;
		height: 30px;
		
		margin-top: 20px;
		margin-right: 20px;
		
		background: url('images/resp_menu_button.png');
	}
	
	#admin_top_header .menu_wrapper, 
	#admin_top_header #menu{
		width: 100%;
		margin: 0;
	}
	
	#admin_top_header #menu{
		display: none;
	}
	
	#admin_top_header #menu  .menu_item_seperator{
		display: none;
	}
	
	#admin_top_header #menu li{
		width: 100%;
	}
	
	#admin_top_header #menu li a{
		height: auto;
		line-height: normal;
		
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

/* TABLE */
.table{
	width: 90%;
	
	margin: 0 auto;
}

.table .header{
	float: left;

	width: 100%;
	
	background-color: #F37321;
	
	color: #FFFFFF;
	
	padding: 5px;
	
	text-align: left;
}

.table .row{
	width: 100%;
	
	padding: 5px;
	
	margin: 0;
}

.table .row_dark{
	background-color: #d2d1d1;
}

.table .row_light{
	background-color: #e7e7e7;
}

#energy_gauge_wrapper{
    display: none;
    height: 0;
}

#green_tree{
    display: none;
}

.green_block .left_text{
    text-align: center !important;
}

.green_block {
    background: #D7DFE2 !important;
}

#generated_elec {
    background-color: #F37321 !important;
}

#energy_reduction {
    background-color: #73b2dc !important;
}

#generated_elec {
    background-color: #F37321 !important;
}

.small_energy_block_header {
    background-color: #FFFFFF38 !important;
}

#delivered_elec {
    background-color: #489BD4 !important;
}

#delivered_elec {
    background-color: #489BD4 !important;
}

#consumed_elec{
    background-color: #4F6368 !important;
}
#consumed_elec {
    background-color: #4F6368 !important;
}

#current_energy{
    background-color: #73b2dc !important;
}

#current_energy > .big_text {
    color: #FFFFFF !important;
    background-color: #73b2dc !important;
}

#consumed_gas{
    background-color: #96A9B5 !important;
}

#consumed_gas {
    background-color: #96A9B5 !important;
}

#energy_gauge_sun{
    background-image: url('images/gauge_sun.png') !important;
}

#energy_gauge text{
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* MAIN BUTTONS COLORS */
#end_user_content .inverter_date_button_sel,
#end_user_content .btn-green,
#end_user_content .btn-primary,
.list_add_button{
    background-color: #F37321 !important;
    border-color: #F37321 !important;
}

#end_user_content .inverter_date_button{
    background-color: #F37321BA;
    border-color: #F37321BA;
}

/* MAIN TEXT COLOR */
#end_user_content #title_wrapper #energy_overview_title,
#end_user_content #title_wrapper #end_user_settings_title,
#end_user_content #current_energy .big_text,
.list_title,
#inverter_details_title{
    color: #F37321;
}