* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	min-height: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	/*position: fixed;*/
	/*-webkit-text-size-adjust: 100%;*/
}

body {
	padding: 0;
	font: 14px/1.2em Arial,sans-serif;
	background-color: #f4f4f4;
	overflow: hidden;
	/*position: fixed;*/
	width: 100%;
	height: 100%;
	min-width: 320px;
	min-height: 420px;
	-webkit-text-size-adjust: none;
}

p {
	margin: 0.5em 0 1em 0;
}

h1 {
	margin: 0.5em 0 0.6em 0;
}

h2 {
	margin: 0.5em 0 0.6em 0;
}

input[type="text"],
select {
	padding: 4px 3px;
	border: 1px solid #ddd;
	border-radius: 2px;
	font-size: 0.9em;
	width: 35px;
	background-color: #fff;
}

input[type="text"]:focus,
select:focus {
	outline-width: 0;
	border-color: #bbb;
}

button,
input[type="file"] {
	padding: 5px 8px;
	background-color:#ddd;
	border: 1px solid #aaa;
	border-radius: 4px;
	font-size: 1em;
	cursor: pointer;
	margin-right: 3px;
}

input.error {
	background-color: #ffd6d6;
	color: #d00909;
}

#input-distance_per_year {
	font-size: 0.7em;
}

.button-accept {
/*	background-color: #81c334;
	border-color: #72b91d;*/
	background-color: #c32432;
	border-color: #ae1321;
	color: #fff;
}

.button-decline {
	background-color: #ddd;
}

.button-neutral {
	background-color: #ddd;
}


#incompatible-browser-box {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #eee;
	z-index: 120;
}

#incompatible-browser-box div {
	width: 500px;
	margin: 100px auto 0 auto;
	font-size: 1.2em;
	background-color: #fff;
	padding: 5px 30px;
	border-radius: 5px;
}

#incompatible-browser-box div h2 {
	color: #ff5050;
}

#incompatible-browser-box a {
	color: #ff5050;
	font-weight: bold;
}

#app {
	width: 100%;
	height: 100%;
	min-width: 320px;
	min-height: 420px;
}

#content {
	width: 100%;
	height: 100%;
	/*max-height: 1000px;*/
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}

#sidebar {
	width: 400px;
	position: absolute;
	top: 35px;
	right: 0;
	height: calc(100% - 35px);
	padding: 0 25px 30px 10px;
	margin-top: 0; 
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #f4f4f4;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
/*	-webkit-transition: margin-top 0.3s;
	-moz-transition: margin-top 0.3s;
	transition: margin-top 0.3s;*/
	z-index: 95;
}

/*#sidebar.closed {
	margin-top: -300%;
}*/

#sidebar h2 {
	margin: 1.3em 0 0.8em 0;
	/*color: #bbb;*/
	/*border-bottom: 1px solid #ddd;*/
	/*padding-bottom: 1px;*/
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: normal;
}

.group {
	padding-bottom: 5px;
}

#legend-group {
	padding-top: 20px;
}

#search-input-wrapper {
	clear: both;
}

#search-group input {
	font-size: 1.1em;
	height: 34px;
	margin-top: 19px;
	margin-bottom: 1px;
	padding: 5px 8px;
	width: 100%;
	border-radius: 4px;
	box-shadow: 0 0 10px #eaeaea;
	z-index: 100;
}

#search-group input:focus {
	box-shadow: 0 0 10px #ddd;
}

#tourbox {
	position: absolute;
	height: 250px;
	width: 400px;
	left: 50%;
	margin-left: -200px;
	top: 50%;
	margin-top: -112px;
	border-radius: 4px;
	padding: 55px 15px 40px 15px;
	line-height: 1.5em;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.88);
	box-shadow: 3px 3px 45px #666;
	border: none;
	-webkit-transition: background-color 0.4s, height 0.4s;
	-moz-transition: background-color 0.4s, height 0.4s;
	transition: background-color 0.4s, height 0.4s;
	z-index: 100;
}

#tourbox-inner-wrapper {
	width: 100%;
	position: relative;
}

#tourbox-header {
	position: absolute;
	top: 15px;
	left: 15px;
	font-weight: bold;
	-webkit-transition: top 0.4s, left 0.4s;
	-moz-transition: top 0.4s, left 0.4s;
	transition: top 0.4s, left 0.4s;
}

#tourbox-progress {
	display: none;
	width: calc(100% - 29px);
	height: 4px;
	position: absolute;
	top: 35px;
	left: 15px;
	background-color: #666;
}

#tourbox-progress-inner {
	display: block;
	width: 10%;
	height: 100%;
	background-color: #7caa45;
}

#tourbox-prev,
#tourbox-next,
#tourbox-close {
	height: 25px;
	line-height: 24px;
	width: 50%;
	background-color: transparent;
	position: absolute;
	bottom: 0;
	padding: 1px 15px;
	cursor: pointer;
}

#tourbox-prev {
	border-radius: 0 4px 0 4px;
	left: 0;
}

#tourbox-next,
#tourbox-close {
	border-radius: 4px 0 4px 0;
	right: 0;
	text-align: right;
}

.tourbox-marker {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
	background-color: #f00;
}

#tourbox-marker_center {
	left: 60px;
	top: 60px;
}

#tourbox-marker-xaxis {
	left: 80px;
	height: 60px;
}

#tourbox-marker-yaxis {
	left: 20;
	width: 80px;
}

#tourbox-marker_targets {
	left: 60px;
	height: 200px;
}

#tourbox-prev:hover,
#tourbox-next:hover,
#tourbox-close:hover {
	background-color: #333;
}

#tourbox-prev.disabled,
#tourbox-next.disabled {
	display: none;
}

#tourbox-icon,
#tour-hello-close {
	position: absolute;
	background: url('../img/icons_tour.svg') no-repeat;
	top: 10px;
	left: calc(100% - 30px);
	width: 18px;
	height: 18px;
	background-position: 0 100%;
	background-size: 18px 36px; /* relative size doesn't work in IE 11 */
	cursor: pointer;
}

#tourbox-header {
	top: 12px;
	left: 15px;
}

#tourbox-progress,
#tourbox-prev,
#tourbox-next {
	display: block;
}

#tourbox .highlight {
	color: #a8df66;
}

/*div.tour-highlight {
	background-color: #ffcdcc;
}
*/

#sidebar div.tour-highlight h2 {
	color: #e93e3a;
	border-color: #e93e3a;
	box-shadow: 3px 3px 30px #e93e3a;
	z-index: 200;
}

#sidebar div.tour-highlight input {
	border-color: #e93e3a;
	box-shadow: 3px 3px 15px #e93e3a;
	z-index: 200;
}

#headerbar.tour-highlight #tab-customize,
#headerbar.tour-highlight #reset-all,
#headerbar.tour-highlight #toggle,
#view-barchart.tour-highlight,
#open-main.tour-highlight,
#open-customize.tour-highlight,
#reset-all-us.tour-highlight {
	background-color: #e93e3a;
	box-shadow: 3px 3px 30px #e93e3a;
	z-index: 200;
}

.additional-info-wrapper {
	display: block;
	position: absolute;
	top: 9px;
	right: 200px;
}

.interface-group-quickstate .additional-info-wrapper {
	right: 173px;
}

.additional-info-inner-wrapper {
	display: block;
	position: relative;
}

.additional-info-icon {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 18px;
	height: 17px;
	border-radius: 8px;
	text-align: center;
	background-color: #bbb;
	color: #fff;
	cursor: default;
	padding-top: 1px;
}

.additional-info-text {
	position: absolute;
	display: block;
	top: 0;
	left: 21px;
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
	color: #fff;
	padding: 7px 10px;
	width: 170px;
	z-index: 100;
}

.additional-info-wrapper:hover .additional-info-icon {
	background-color: #000;
}

.additional-info-wrapper:hover .additional-info-text {
	visibility: visible;
}

#main {
	width: auto;
	height: 100%;
	padding-top: 35px;
}

#add-cars-note {
	position: absolute;
	left: 20px;
	top: 54px;
	width: calc(100% - 438px);
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #666;
	font-size: 1.2em;
	padding: 8em 1em 9em 1em;
	text-align: center;
}

.interface-group {
	position: relative;
	width: 100%;
	height: 48px;
	padding: 7px 0;
	background-color: #f4f4f4;
}

.interface-group-quickstate {
	margin-top: 15px;
	height: 30px;
}

.interface-group span.config-title {
	position: absolute;
	left: 0;
	top: 10px;
	width: 150px; /* fixes issue in FF */
}

.interface-group.interface-group-quickstate span.config-title {
	width: 100%;
}

.interface-group input {
	position: absolute;
	right: 140px;
	top: 5px;
	background-color: #f5f5f5;
	color: #000;
}

.interface-group select{
	display: block;
	position: absolute;
	top: 3px;
	right: 0;
	width: 175px;
	height: 30px;
}

.interface-group .config-slider {
	position: absolute;
	right: -15px;
	top: 4px;
}

.interface-group .config-unit {
	color: #bbb;
	font-size: 0.9em;
}

#input-search-wrapper {
	display: block;
	position: relative;
	width: 100%;
}

/*#clear-search {
	display: block;
	float: left;
	color: #fff;
	background-color: #bbb;
	padding: 3px 2px 0 0;
	cursor: pointer;
	font-size: 16px;
	height: 34px;
	width: 29px;
	margin-left: -4px;
	margin-top: 19px;
	line-height: 30px;
	border-radius: 0 4px 4px 0;
	text-align: center;
}*/

.quickstate-selection {
	padding-bottom: 27px;
}

.quickstate-selection a {
	display: block;
	cursor: pointer;
	width: calc(12.5% - 1px);
	float: left;
	text-align: center;
	margin-right: 1px;
	margin-bottom: 1px;
	padding: 4px 0;
	background-color: #ddd;
}

.quickstate-selection a:hover {
	background-color: #fff;
}

#clear-search {
	cursor: pointer;
	display: block;
	position: absolute;
	top: 26px;
	right: 8px;
	width: 19px;
	height: 19px;
	background: url('../img/icon_close_g.svg') no-repeat 0 0;
	z-index: 130;
}

#search-note {
	font-style: italic;
	color: #aaa;
}

.config-slider {
	position: relative;
}

#headerbar-controlmenu.enable-hover a:hover .note-container {
	visibility: visible;
}

.config-slider .note-container {
	position: absolute;
	display: block;
	width: 170px;
	visibility: hidden;
	z-index: 100;
	bottom: 41px;
	right: 15px;
	z-index: 100;
}

#headerbar-controlmenu .note-container {
	visibility: hidden;
	position: absolute;
	display: block;
	top: 31px;
	right: -25px;
	z-index: 100;
}

.config-slider .note-container-inner {
	position: relative;
	display: block;
}

#headerbar-controlmenu .note-container-inner {
	position: relative;
	display: block;
    margin: 0;
    white-space: nowrap;
    padding: 10px;
    width: auto;
}

.note-triangle {
	position: absolute;
	display: block;
	fill: rgba(0, 0, 0, 0.8);
}

.config-slider .note-triangle {
	bottom: 0;
	right: 0;
}

#headerbar-controlmenu .note-triangle {
	top: -1px;
	right: 32px;
	width: 15px;
	height: 10px;
}

.note-text {
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
	color: #fff;
}

.note-text-main {
	color: #bbb;
}

.config-slider .note-text {
	position: absolute;
	display: block;
	bottom: 10px;
	right: 0;
	padding: 7px 10px;
	width: 170px;
}

#headerbar-controlmenu .note-text {
	padding: 5px 8px;
}

#headerbar-controlmenu .tour-hello {
	cursor: pointer;
	visibility: visible;
	top: 30px;
	right: 0;
	z-index: 110;
}

#headerbar-controlmenu .tour-hello-inner {
    padding: 21px 0 0 0;
}

#headerbar-controlmenu .note-triangle-tour {
	top: -2px;
	right: 37px;
	width: 18px;
	height: 12px;
	opacity: 0.9;
}

#headerbar-controlmenu .tour-hello-text {
	background-color: rgb(95, 156, 0);
	padding: 10px 38px 10px 12px;
	font-size: 1.1em;
	opacity: 0.9;
	box-shadow: 0 0 20px rgb(95, 156, 0);
}

#headerbar-controlmenu .tour-hello-inner:hover .tour-hello-text,
#headerbar-controlmenu .tour-hello-inner:hover .note-triangle-tour {
	opacity: 1.0;
} 

/*.open-tour-hello .note-container-regular,
#headerbar-controlmenu a.open-tour-hello:hover .note-container-regular {
	visibility: hidden;
}
*/
.open-tour-hello .tour-hello {
	visibility: visible;
}

#headerbar-controlmenu #tour-hello-close {
	display: block;
	position: absolute;
	top: 19px;
	left: auto;
	right: 9px;
	width: 18px;
	height: 18px;
	background: url('../img/icon_close_w.svg') no-repeat 0 0;
	z-index: 130;
	opacity: 0.8;
}

#headerbar-controlmenu #tour-hello-close:hover {
	opacity: 1.0;
}

.highlighted-dot {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #f00;
	color: #fff;
	border-radius: 9px;
	margin-right: 8px;
	text-align: center;
	float: left;
	line-height: 18px;
	margin-top: -1px;
}

.highlighted-clear {
	float: right;
	color: #999;
	cursor: pointer;
}

.quicksetting-paragraph {
	position: relative;
	/*border:1px solid #aaa;*/
	background-color: #ddd;
	border-radius: 2px;
	margin: 0.5em 0;
	padding: 0.5em 0.7em;
	cursor: pointer;
}

.quicksetting-paragraph:hover {
	background-color: #ccc;
}

.quicksetting-trim {
	color: #000;
}

.quicksetting-firstline {
	width: 100%;
	padding-bottom: 3px;
}

.quicksetting-details:before {
	content: ' ';
	display: block;
}

.quicksetting-details {
	color: #999;
	font-size: 0.9em;
}

.quicksetting-check {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
	padding-top: 1.15em;
	padding-left: 0.35em;
	background-color: #aaa;
	border-radius: 0 2px 2px 0;
}

#uploadBox {
	margin-top: 8px;
	border:1px solid #aaa;
	background-color:#fff;
	border-radius: 2px;
	padding: 6px 6px 8px 6px;
	position: relative;
}

#uploadBoxGoButton {
	float: right;
}

#headerbar-dummy {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 39px;
	background-color: #222;
	z-index: 0;
}

#headerbar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 39px;
	color: #fff;
	background-color: #222;
	border-bottom: 1px solid #444;
	z-index: 100;
}

#headerbar-innerwrapper {
	position: relative;
	width: 100%;
	max-width: 1600px;
	height: 39px;
	margin: 0 auto;
}

#headerbar-logo {
	position: absolute;
	left: 20px;
	top: 8px;
	width: 300px;
	height: 24px;
}

#main-logo-link {
	display: block;
	float: left;
	width: 146px;
	height: 23px;
	background: top left url('../img/logo_carboncounter.svg') no-repeat;
	background-size: 146px 23px;
	text-decoration: none;
	text-indent: -10000px;
}

#main-logo-link h1 {
	display: block;
	width: 100%;
	height: 100%;
	/*text-indent: -10000px;*/
	margin: 0;
	padding-top: 7px;
	font-size: 16px;
	color: #ffffff;
}

#headerbar-logo-us {
	position: absolute;
	left: 20px;
	top: 7px;
	width: 523px;
	height: 26px;
	/*background: top left url('../img/logo_asurl_withtext.svg') no-repeat;*/
	background: top left url('../img/logo_asurl_withtext_n.png') no-repeat;
	background-size: 523px 26px;
}

#headerbar-logo-us a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

#headerbar-logo-us h1 {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -10000px;
	margin: 0;
}


#logo-country-luxembourg {
	position: relative;
	display: block;
	float: left;
	width: 120px;
	height: 23px;
	margin: 0 0 0 9px;
	background: 0 4px url('../img/logo_country_luxembourg.svg') no-repeat;
	background-size: 120px 18px;
	text-decoration: none;
}

#logo-country-luxembourg span {
	display: none;
}

#logo-country-us {
	position: relative;
	display: block;
	float: left;
	width: 120px;
	height: 23px;
	margin: 0 0 0 9px;
	background: 0 4px url('../img/logo_country_us.svg') no-repeat;
	background-size: 120px 14px;
	text-decoration: none;
}

#logo-country-us span {
	display: none;
}


.logo-country-link ul {
	display: none;
	position: absolute;
	left: 0;
	top: 19px;
	width: 235px;
	padding: 10px 0 0 0;
	margin: 0 0 0 -10px;
	list-style-type: none;
	list-style-image: none;
	z-index: 100;
}

.logo-country-link li {
	padding: 0;
	margin: 0;
}

.logo-country-link li a {
	color: #ccc;
	padding: 5px 10px;
	background-color: #222;
	text-decoration: none;
}

.logo-country-link ul li:last-child a {
	border-radius: 0 0 4px 4px;
}

.logo-country-link li  span:hover {
	background-color: #555;
}

.logo-country-link:hover {
	border-radius: 0 4px 0 0;
}

.logo-country-link:hover ul {
	display: block;
}

#headerbar-controlmenu {
	position: absolute;
	width: 150px;
	right: 15px;
	top: 6px;
	text-align: right;
}

#headerbar-viewmenu a,
#headerbar-controlmenu a,
#headerbar-customizemenu a {
	position: relative;
	cursor: pointer;
	color: #fff;
	text-decoration:none;
	display: block;
	line-height: 24px;
	height: 26px;
	background-color: #444;
	cursor: pointer;
}

#headerbar-controlmenu a,
#headerbar-viewmenu a {
	float: right;
}

#headerbar-viewmenu a {
	padding: 1px 10px 0 32px;
}

#headerbar-customizemenu a {
	float: left;
}

#headerbar-viewmenu a:hover,
#headerbar-controlmenu a:hover,
#headerbar-customizemenu a:hover {
	background-color: #555;
}

#headerbar-controlmenu .menu-tooltip {
	display: block;
	position: absolute;
	left: 0;
	top: 30px;

}

#headerbar-controlmenu .menu-tooltip:before {
  display: block;
  content: url('../img/tooltiptriange_h.svg');
/*  background-image: url('../img/tooltiptriange_h.svg');
  background-size: 18px 12px;*/
  height: 12px;
  width: 8px;
  margin-left: 20px;
}

#headerbar-controlmenu .menu-tooltip span {
	/*display: block;*/
	padding: 6px 8px;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px;
}

/*#headerbar-tourmenu #tour-link {
	text-align: right;
	border-radius: 4px;
	width: 190px;
	padding: 2px 7px;
	background-color: #81c334;
	background-image: url('../img/icon_toggle.svg');
	background-repeat: no-repeat;
	background-position: 4px 5px;
	background-size: 14px 14px;
}*/

#view-explore {
	border-radius: 4px 0 0 4px;
	background: url('../img/icon_explore.svg') no-repeat;
	background-position: 7px 4px;
	background-size: 18px 72px;
}

#view-barchart {
	border-radius: 0 4px 4px 0;
	background: url('../img/icon_barchart.svg') no-repeat;
	background-position: 7px 4px;
	background-size: 18px 72px;
}

#toggle-info {
	border-radius: 4px 0 0 4px;
	width: 30px;
	margin-right: 1px;
	background: url('../img/icon_info.svg') no-repeat;
	background-position: 7px 4px;
	background-size: 18px 72px;
	text-indent: -10000px;
}

/*#create-link {
	width: 30px;
	margin-right: 1px;
	background: url('../img/icon_link.svg') no-repeat;
	background-position: 7px 6px;
	background-size: 16px 16px;
	text-indent: -10000px;
}*/

#toggle {
	width: 30px;
	margin-right: 1px;
	background: url('../img/icon_toggle.svg') no-repeat;
	background-position: 7px 5px;
	background-size: 16px 16px;
	text-indent: -10000px;
}

#reset-all {
	width: 30px;
	margin-right: 1px;
	background: url('../img/icon_reset.svg') no-repeat;
	background-position: 8px 6px;
	background-size: 14px 14px;
	text-indent: -10000px;
}

#reset-all-us {
	border-radius: 0 4px 4px 0;
	width: 30px;
	margin-right: 1px;
	background: url('../img/icon_reset.svg') no-repeat;
	background-position: 8px 6px;
	background-size: 14px 14px;
	text-indent: -10000px;
}

#change-language {
	border-radius: 0 4px 4px 0;
	width: 40px;
	margin-right: 10px;
	padding: 1px 10px;
}

#open-main {
	border-radius: 4px;
	width: 120px;
	padding: 1px 10px 1px 31px;
	margin-right: 1px;
	background: url('../img/icon_mainpanel_2c.svg') no-repeat;
	background-position: 6px 4px;
	background-size: 18px 90px;
}

#headerbar-customizemenu #open-main {
	display: none;
}

#open-customize {
	border-radius: 4px;
	width: 140px;
	padding: 1px 10px 1px 31px;
	background: url('../img/icon_cogwheel_2c.svg') no-repeat;
	background-position: 6px 4px;
	background-size: 18px 90px;
}

#open-tour {
	/*border-radius: 4px 0 0 4px;*/
	width: 30px;
	margin-right: 1px;
	background: url('../img/icon_tour.svg') no-repeat;
	background-position: 7px 4px;
	background-size: 18px 72px;
	text-indent: -10000px;
}

#change-language ul {
	display: none;
	position: absolute;
	right: 0;
	top: 26px;
	padding: 0;
	margin: 0;
	list-style-type: none;
	list-style-image: none;
	width: 40px;
	z-index: 100;
}

#change-language li {
	padding: 0;
	margin: 0;
	width: 40px;
}

#change-language li span {
	display: block;
	background-color: #444;
	cursor: pointer;
	width: 40px;
	text-align: center;
}

#change-language ul li:last-child span {
	border-radius: 0 0 4px 4px;
}

#change-language li  span:hover {
	background-color: #555;
}

#change-language:hover {
	border-radius: 0 4px 0 0;
}

#change-language:hover ul {
	display: block;
}

#touchcontrol {
	border-radius: 0 4px 4px 0;
}

#mousecontrol {
	border-radius: 4px 0 0 4px;
}

#headerbar-controlmenu a.active {
	background-color: #eee;
	color: #000;
}

#headerbar-customizemenu {
	position: absolute;
	right: 250px;
	top: 6px;
	width: 140px;
}

#headerbar-viewmenu {
	position: absolute;
	right: 419px;
	top: 6px;
	width: 220px;
}

#headerbar-viewmenu a.active,
#headerbar-customizemenu a.active {
	color: #000;
	background-color: #f5f5f5;
}

#headerbar-viewmenu a.active {
	background-position: 7px -50px;
}

#open-customize.active,
#open-main.active {
	height: 33px;
	border-radius: 4px 4px 0 0;
	background-position: 6px -68px;
}

#open-tour.active {
	background-position: 6px -50px;
}

#toggle-info.active {
	height: 33px;
	border-radius: 0;
	background-position: 6px -50px;
}

#headerbar-customizemenu a path,
#headerbar-viewmenu a.active path {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

#headerbar-customizemenu a.active path,
#headerbar-viewmenu a.active path {
    -ms-transform: rotate(90deg) translate(0, -9px);
    -webkit-transform: rotate(90deg) translate(0, -9px);
    transform: rotate(90deg) translate(0, -9px);
}

#headerbar-viewmenu a.active path {
    -ms-transform: rotate(90deg) translate(0, -9px);
    -webkit-transform: rotate(90deg) translate(0, -9px);
    transform: rotate(90deg) translate(0, -9px);
    stroke: black;
}

.highlighted-car-entry {
	cursor: default;
	margin: 0 -3px;
	padding: 0.5em 0.3em;
	border-radius: 4px;
}

.highlighted-car-entry:hover {
	background-color: #ffd8d8;
}

.legend-entry {
	position: relative;
	cursor: default;
	margin: 0;
	padding: 0.5em 0.3em 0.5em 1.8em;
	margin: 0 -3px;
	border-radius: 4px;
}

.legend-entry:hover,
.legend-entry.active {
	background-color: #ccc;
}

.legend-dot {
	position: absolute;
	display:block;
	top: 0.5em;
	left: 2px;
	width: 16px;
	height: 16px;
	color: #fff;
	border-radius: 8px;
	margin-right: 8px;
	text-align: center;
}

.legend-dot.average {
	width: 10px;
	height: 10px;
	border: 2px solid #000;
	border-radius: 5px;
	margin-left: 3px;
	margin-right: 11px;
	margin-top: 2px;
}

p.costs_veh,
p.costs_veh_monthly {
	margin-bottom: 15px;
}

#highlight-info {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	color: #fff;
	padding: 2px 4px;
  	background-color: rgba(0, 0, 0, 0.85);
  	z-index: 110;
}

#info-tab p {
	font-size: 1.05em;
	line-height: 1.4em;
}

#info-tab p a {
	color: #000;
}

#info-tab h3 {
	font-size: 1em;
	font-weight: bold;
	/*font-style: italic;*/
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}

.infotab-wrapper {
	background-color: #fff;
	border-radius: 5px;
	padding: 0.8em;
	margin-bottom: 3em;
}

#sidebar .infotab-wrapper h2 {
	margin-top: 0.1em;
}

#info-menu {
	display: block;
	width: 100%;
}

#info-menu a {
	display: block;
	width: calc(25% - 1px);
	padding: 3px;
	text-align: center;
	float: left;
	margin-right: 1px;
	background-color: #fff;
	cursor: pointer;
}

#info-menu a:first-child {
	border-radius: 4px 0 0 4px;
}

#info-menu a:last-child {
	border-radius: 0 4px 4px 0;
}

#info-menu a.active {
	background-color: #222;
	color: #fff;
}

#info-menu .clear {
	clear: both;
}

#cookie-consent {
	color: #000;
	width: calc(100% - 35px);
	padding: 10px 25px 10px 15px;
	position: absolute;
	bottom: 10px;
	right: 25px;
	z-index: 110;
	background-color: #fff; /*rgba(255, 255, 255, 0.8)*/
	border: solid #ccc 1px;
	/*border-width: 0 1px 1px 1px;*/
}

#cookie-consent a {
	color: #000;
	text-decoration: underline;
}

a#cookie-consent-close {
	float:right;
	text-decoration: none;
	font-weight: bold;
}

#credits {
	position: absolute;
	bottom: 0;
	right: 25px;
	z-index: 100;
}

/*#credits.consent-active {
	bottom: 36px;
}*/

#credits-inner {
	position: relative;
	background-color: #ddd;
	font-size: 14px;
	color: #000;
	border-radius: 2px 2px 0 0;
	padding: 5px 7px 4px 7px;
	opacity: 0.95;
	z-index: 100;
	/*max-width: 95%;*/
}

#credits-full {
	padding: 5px 15px;
}

#credits h2 {
	font-size: 1em;
	font-weight: bold;
	margin-top: 0.5em;
	margin-bottom: 1em;
}

#credits h3 {
	font-size: 1em;
	font-weight: normal;
	font-style: italic;
	margin-top: 0.5em;
	margin-bottom: 1em;
}

#credits a {
	color: #000;
	text-decoration: underline;
	cursor: pointer;
}

#credits a.active {
	color: #000;
	/*color: #fff;*/
	/*background-color: #555;*/
	text-decoration: none;
}

#credits-full-close {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	background: url('../img/icons_tour.svg') no-repeat;
	background-position: 0 100%;
	background-size: 20px 40px; /* relative size doesn't work in IE 11 */
	cursor: pointer;
}

#credits-summary {
	text-align: right;
	font-size: 0.9em;
}
/*
#credit-icons {
	position: absolute;
	bottom: 3px;
	right: 25px;
	z-index: 100;
	width: 56px;
	height: 21px;
}

#credit-icons a {
	display: block;
	height: 21px;
	text-indent: -10000px;
	float: left;
}

#credit-icons a:hover {
	background-position: 0 -42px;
}

a#credit-icon-myenergy {
	width: 14px;
	background: url('../img/icon_myenergy_small.png') no-repeat;
	background-position: 0 0;
	background-size: 14px 63px;
}

a#credit-icon-eu {
	width: 32px;
	background: url('../img/icon_eu_small.png') no-repeat;
	background-position: 0 0;
	background-size: 32px 63px;
	margin-left: 10px;
}*/


.credit-icon {
	text-decoration: none;
	height: 21px;
}

.credit-icon img {
	margin-bottom: -3px;
}

/*#funding-logo {
	display: block;
	width: 100%;
}*/

/*#myenergy-text {
	font-size: 0.9em;
}*/

/*#credits-newline {
	display: none;
}*/

/*#survey-box-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	z-index: 145;
	background-color: rgba(255, 255, 255, 0.8);
}*/

#survey-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25em;
	/*height: 18em;*/
	max-width: 90%;
	padding: 0;
	margin-left: -15em;
	margin-top: -10em;
	z-index: 150;
/*	background-color: rgba(255, 255, 255, 0.90);*/
}

#survey-box a {
	color: #000;
}

#survey-box p {
	line-height: 1.35em;
}

/*#survey-box.large {
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 0;
	margin-top: 0;
	width: 100%;
	height: 100%;
	padding: 0.3em;
}*/

#survey-box iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	border: none;
}

#survey-box-close {
	display: block;
	position: absolute;
	top: 0.8em;
	right: 0.8em;
	width: 16px;
	height: 16px;
}

#survey-box-inner {
	margin: auto;
	width: 100%;
	height: 100%;
	position: relative;
	border: 1px solid #ccc;
	background-color: #fff;
}

#survey-box-content {
	overflow: scroll;
	padding: 1.2em 1.8em 4em 1.8em;
}

/*#survey-box.large #survey-box-content {
	overflow: hidden;
	padding: 0;
}*/

#survey-box-links,
#survey-box-accept {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4em;
	padding: 0.95em 0 0 1.8em;
	background-color: #efefef;
	border-top: 1px solid #ccc;
}

#survey-box-links.sidebar {
	border: none;
	position: relative;
	padding: 0;
	background-color: transparent;
}

#survey-box-accept input {
	width: 12em;
	font-size: 1em;
	border-color: #ccc;
	padding: 5px 3px;
	margin-right: 3px;
}

[ng-cloak] {
	display: none;
}