
/*@font-face {
  font-family: "Eurostile";
  src: url("fonts/EurostileRegular.woff");
}

@font-face {
  font-family: "kryptonian";
  src: url('fonts/kryptonian-webfont.woff2') format('woff2'),
         url('fonts/kryptonian-webfont.woff') format('woff');
}
*/
@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/eurostileregular-webfont.eot'); /* IE9 Compat Modes */
    src: url('../fonts/eurostileregular-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/eurostileregular-webfont.woff') format('woff'), /* Modern Browsers */
         url('../fonts/eurostileregular-webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('../fonts/eurostileregular-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
    }
/*
@font-face {
    font-family: 'kryptonian';
    src: url('../fonts/kryptonian-webfont.eot');
    src: url('../fonts/kryptonian-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/kryptonian-webfont.woff') format('woff'),
         url('../fonts/kryptonian-webfont.ttf')  format('truetype'), 
         url('../fonts/kryptonian-webfont.svg#svgFontName') format('svg');
    }
*/
html {
/*
	filter: saturate(0);
	-o-filter: saturate(0);
	-moz-filter: saturate(0);
	-webkit-filter: saturate(0);
	-ms-filter: saturate(0);
*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/*
html.filter-energy {
	filter: saturate(1) hue-rotate(0deg);
	-o-filter: saturate(1) hue-rotate(0deg);
	-moz-filter: saturate(1) hue-rotate(0deg);
	-webkit-filter: saturate(1) hue-rotate(0deg);
	-ms-filter: saturate(1) hue-rotate(0deg);
}

html.filter-transport {
	filter: saturate(1) hue-rotate(65deg);
	-o-filter: saturate(1) hue-rotate(65deg);
	-moz-filter: saturate(1) hue-rotate(65deg);
	-webkit-filter: saturate(1) hue-rotate(65deg);
	-ms-filter: saturate(1) hue-rotate(65deg);
}

html.filter-food {
	filter: saturate(1) hue-rotate(271deg);
	-o-filter: saturate(1) hue-rotate(271deg);
	-moz-filter: saturate(1) hue-rotate(271deg);
	-webkit-filter: saturate(1) hue-rotate(271deg);
	-ms-filter: saturate(1) hue-rotate(271deg);
}

html.filter-building {
	filter: saturate(2) hue-rotate(180deg);
	-o-filter: saturate(2) hue-rotate(180deg);
	-moz-filter: saturate(2) hue-rotate(180deg);
	-webkit-filter: saturate(2) hue-rotate(180deg);
	-ms-filter: saturate(2) hue-rotate(180deg);
}
*/

* {
	scrollbar-width: none; /* Firefox */
}

html, body {
    overscroll-behavior-x: none;
}

body {
	font-family: "Eurostile", sans-serif;
	font-size: 17px;
	line-height: 22px;
	color: white;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	overflow: scroll;
	-ms-overflow-style: none;
	/*background-color: black;*/
	background-color: #000b2a;
	background: url(../img/grid-background.png) no-repeat center;
	background-size: cover;
	margin: 0;
	cursor: url(../img/cursor.png), auto;
}

body::-webkit-scrollbar {
	display: none;
}

a, a:link, a:visited, a:hover, a:active {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}

.container {
	min-width: 320px;
	max-width: 550px;
	min-height: 568px;
	max-height: 812px;
	width: 100%;
	height: 100%;
	background-color: #000b2a;
	position: absolute;
	display: none;
	border-radius: 10px;
	/*padding: 10px;*/
	overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	box-shadow: 0px 0px 50px rgba(90, 105, 130, 0.5);
	-webkit-box-shadow: 0px 0px 50px rgba(90, 105, 130, 0.5);
	-o-box-shadow: 0px 0px 50px rgba(90, 105, 130, 0.5);
	-ms-box-shadow: 0px 0px 50px rgba(90, 105, 130, 0.5);
}

.container.active {
	display: block;
}

.container.alert {
	background: red !important;
}

.header {
	position: relative;
	width: 100%;
	height: 80px;
	margin: 0;
	top: 15px;
	left: 0;
}

.logo {
    background-image: url(../img/logos/default/logo-header.png);
    height: 70px;
	margin: 0 5% 0 5%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo-centered {
	background: url(../img/logo-centered.png) no-repeat center;
    width: 100%;
    height: 100%;
    background-size: 60%;
	animation: 2s infinite bounce ease;
	animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
}

@keyframes bounce {
        0%   { transform: scale(1,1)      translateY(0); }
        10%  { transform: scale(1.1,.9)   translateY(0); }
        30%  { transform: scale(.9,1.1)   translateY(-100px); }
        50%  { transform: scale(1.05,.95) translateY(0); }
        57%  { transform: scale(1,1)      translateY(-7px); }
        64%  { transform: scale(1,1)      translateY(0); }
        100% { transform: scale(1,1)      translateY(0); }
    }

@-webkit-keyframes bounce {
        0%   { -webkit-transform: scale(1,1)      translateY(0); }
        10%  { -webkit-transform: scale(1.1,.9)   translateY(0); }
        30%  { -webkit-transform: scale(.9,1.1)   translateY(-100px); }
        50%  { -webkit-transform: scale(1.05,.95) translateY(0); }
        57%  { -webkit-transform: scale(1,1)      translateY(-7px); }
        64%  { -webkit-transform: scale(1,1)      translateY(0); }
        100% { -webkit-transform: scale(1,1)      translateY(0); }
    }

.sublogo {
	width: 100%;
	text-align: center;
	color: #3280ab;
}



.content {
	position: relative;
	width: 100%;
	height: calc(100% - 80px);
	margin: 0;
	top: 0;
	left: 0;
	overflow-y: scroll;
    overflow-x: hidden;
}

.content .description {
	padding: 15px;
	text-align: justify;
	overflow: scroll;
	-ms-user-select: none;
}

.content .description.no-footer {
	height: 100%;
}

/*.interactive:after {
	width: 100%;
	content: '';
	height: 30px;
	position: absolute;
	top: -30px;
	background: rgb(0,11,42);
	background: -moz-linear-gradient(0deg, rgba(0,11,42,1) 0%, rgba(0,11,42,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,11,42,1) 0%, rgba(0,11,42,0) 100%);
	background: linear-gradient(0deg, rgba(0,11,42,1) 0%, rgba(0,11,42,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000b2a",endColorstr="#000b2a",GradientType=1);
}*/

.content .description::-webkit-scrollbar, .content::-webkit-scrollbar {
	display: none;
}

.content .title {
	text-align: center;
	font-weight: bold;
	line-height: 30px;
}

.cookie {
	text-align: center;
	font-size: 12px;
	line-height: 12px;
	margin: 15px;
	opacity: 0.6;
}

.footer {
	position: absolute;
	width: 100%;
	height: 50px;
	margin: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.footer .button-menu {
	width: 100%;
	padding: 0;
	margin: 0;
}

.footer .button-menu li {
	display: inline;
    float: left;
	width: calc(31.3% - 4px);
	box-shadow: inset 0px 0px 7px 0px #00a1d4;
	background-color: rgba(0, 161, 212, 0.5);
	border: 2px solid #00a1d4;
	border-radius: 7px 7px 0 0;
	border-bottom: 0px;
	display: inline-block;
	cursor: pointer;
	cursor: url(../img/cursor.png), auto;
	color: #ffffff;
	font-size: 17px;
	padding: 16px 31px;
	text-decoration: none;
	margin: 0 1% 0 1%;
	padding: 0;
	height: 150%;
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
}

.footer .button-menu li:hover {
	background-color: rgba(0, 161, 212, 0.7);
}

.footer .button-menu li.active {
	background-color: rgba(0, 161, 212, 0.85);
}

.did-you-know {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
	font-size: 22px;
	opacity: 0.9;
	line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.did-you-know.relative {
	position: relative !important;
	margin-top: 20px;
}

.did-you-know .title {
	text-align: center;
	font-weight: bold;
	line-height: 30px;
}

.did-you-know .description {
	margin: 0 20px 0 20px;
}

.feedback {
	position: absolute;
    top: 50%;
    left: 0;
	right: 0;
    width: 100%;
	font-size: 22px;
	opacity: 0.9;
	line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.feedback .title {
	text-align: center;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 15px;
}

.feedback-stars {
	width: 100%;
	text-align: center;
}

.feedback-star {
	cursor: pointer;
}

.feedback-star img {
	height: 40px;
	margin: 2px;
}

.feedback-star img.faded {
	opacity: 0.3;
}

.feedback-thankyou {
	
}

.feedback-message textarea {
	width: 80%;
	resize: none;
	line-height: 28px;
}

.overflowing {
	/*animation: 2s linear infinite alternate auto-scroll;*/
}

@-webkit-keyframes border-blink {
  0%{
	border-bottom: 10px solid white;
  }
  50% {
	border-bottom: 10px solid white;
  }
  100%{
	border-bottom: 10px solid white;
  }
}


@keyframes border-blink {
  0%{
	border-bottom: 10px solid white;
  }
  50% {
	border-bottom: 10px solid white;
  }
  100%{
	border-bottom: 10px solid white;
  }
}

@-webkit-keyframes auto-scroll {
    	0% {
    		margin-top: 0px;
    	}
    	100% {
    		margin-top: -200px;
    	}
}

@keyframes auto-scroll {
    	0% {
    		margin-top: 0px;
    	}
    	100% {
    		margin-top: -200px;
    	}
}

.interactive {
    position: relative;
    left: 0px;
    right: 0;
    margin: 0 0 100px 0;
}

.interactive::-webkit-scrollbar {
	display: none;
}

.interactive .option {
	width: 94%;
    box-shadow: 0px 0px 3px 0px #00a1d4;
    background-color: rgba(0, 161, 212, 0.1);
    border-radius: 7px;
    border: 2px solid #00a1d410;
    display: inline-block;
    color: #ffffff;
    font-size: 17px;
    line-height: 40px;
    text-decoration: none;
    margin: 6px 3%;
    padding: 6px 0;
    text-transform: uppercase;
}

.interactive .option.selected {
	background-color: rgb(27, 108, 130, 0.78);
}

.interactive .option.multiple {
	width: 42%;
    overflow: hidden;
}

.interactive .option.selectable {
	cursor: pointer;
}

.interactive .option .index {
	display: inline-block;
    float: left;
    border-radius: 7px;
    border: 2px solid #00a1d4;
    padding: 1px 6px 0px 8px;
    margin: 0;
    line-height: 17px;
    background-color: rgba(0, 161, 212, 0.5);
}

.interactive .option .label {
	display: inline-block;
    clear: both;
    line-height: 24px;
    margin: 0 5px;
}

.interactive .option .label-text {
	padding: 7px 5px 2px 5px;
    margin: 0 5px 0 0;
    /*line-height: 34px;*/
}

.interactive .option .action {
	width: 100%;
	height: 20px;
	margin-top: 15px;
}

.interactive .option.map {
	height: 215px;
	text-align: center;
	overflow: hidden;
}

.interactive .option.little-padding {
    padding: 5px 20px 5px 20px;
    height: 65px;
}

button, textarea {
	box-shadow: 0px 0px 3px 0px #00a1d4;
	background-color: rgba(0, 161, 212, 0.5);
	border-radius: 7px;
	border: 2px solid #00a1d4;
	display: inline-block;
	cursor: pointer;
	cursor: url(../img/cursor.png), auto;
	color: #ffffff;
	font-size: 17px;
	line-height: 40px;
	text-decoration: none;
	margin: 0px 7% 0px 7%;
	text-transform: uppercase;
}

button:hover {
	background-color: rgba(0, 161, 212, 0.7);
}

button.full-width {
	width: 80%;
}

button.alert, input.alert {
	box-shadow: 0px 0px 3px 0px #d40000;
	background-color: rgba(212, 0, 0, 0.5);
	border-color: #d40000;
	color: red;
}

input {
	box-shadow: 0px 0px 3px 0px #00a1d4;
	background-color: rgba(0, 161, 212, 0.5);
	border-radius: 7px;
	border: 2px solid #00a1d4;
	display: inline-block;
	cursor: pointer;
	cursor: url(../img/cursor.png), auto;
	color: rgba(255, 255, 255, .8);
	font-size: 17px;
	line-height: 40px;
	text-decoration: none;
	margin: 0px 10% 0px 10%;
	padding-left: 15px;	
}

input.grouped-right {
	border-radius: 7px 0 0 7px;
	margin: 0 !important;
}

.grouped-ok-button {
	content: "OK";
	box-shadow: 0px 0px 3px 0px #00a1d4;
	background-color: #00a1d4;
	border-radius: 0px 7px 7px 0px;
	border: 2px solid #00a1d4;
	display: inline-block;
	cursor: pointer;
	cursor: url(../img/cursor.png), auto;
	color: #ffffff;
	font-size: 17px;
	line-height: 40px;
	text-decoration: none;
	margin: 0;
	text-transform: uppercase;
}

.range-bar {
    -webkit-appearance: none;
    padding: 0;
    font: inherit;
    outline: none;
    color: #069;
    opacity: 1;
    background-image: linear-gradient(to bottom, #00000000, #00c2ff80, #0e131300);
    box-sizing: border-box;
    height: 10px;
    width: 100%;
    border-radius: 10px;
}

.range-cursor {
	height: 30px;
    width: 80px;
    border-radius: 10px;
    background-image: radial-gradient(#0395c1 41%, #005d5d);
    position: relative;
    top: -10px;
    left: 0%;
    cursor: pointer;
	cursor: url(../img/cursor.png), auto;
    box-shadow: 0px 0px 10px 0px #000000;
    user-select: auto;
    color: black;
    text-align: center;
    font-weight: bold;
    line-height: 31px;
}

p {
	margin-block-start: 0.5em;
	margin-block-end: 0.5em;
}

.impact-gauge {
	width: 80%;
    height: 130px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0px 0px 3px 0px #00a1d4;
    background-color: rgba(0, 161, 212, 0.16);
    border-radius: 7px;
}

.impact-gauge:before {
    content: '';
    height: 90px;
    width: 100%;
    border-bottom: 1px dashed #00a1d4;
    position: absolute;
    top: 0px;
    left: 0;
}

.impact-gauge-col-4 {
	float: left;
    position: relative;
    top: 5px;
	width: 25%;
	text-align: center;
}

.impact-gauge-col-5 {
	float: left;
    position: relative;
    top: 5px;
	width: 20%;
	text-align: center;
}

.impact-gauge-col-4 img, .impact-gauge-col-5 img {
	height: 50px;
	/*filter: invert(1);*/
}

.impact-gauge-index {
	height: 10px;
	position: relative;
	top: 25px;
	width: 50px;
	background-color: orange;
	border-radius: 7px;
	margin: 0 auto;
	line-height: 35px;
	font-size: 40px;
}

.impact-gauge-index.plus {
	height: 30px;
	position: relative;
	top: 0px;
	width: 50px;
	background-color: green;
	border-radius: 7px 7px 0 0;
}

.impact-gauge-index.plus:before {
	content: '+';
}

.impact-gauge-index.minus:before {
	content: '-';
}

.impact-gauge-index.minus {
	height: 30px;
	position: relative;
	top: 29px;
	width: 50px;
	background-color: red;
	border-radius: 0 0 7px 7px;
}

.inline-icon {
	height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.invert {
	-webkit-filter:invert(100%);
    filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1');
}

.tiles {
	padding: 15px;
	height: calc(100% - 2% - 80px - 30px - 15px - 15px);
	overflow-y: scroll;
	margin-bottom: 50px;
	-ms-overflow-style: none;
}


.tiles::-webkit-scrollbar {
	display: none;
}

.tile {
	width: calc(100% - 30px);
	background: rgba(255, 255, 255, 0.1);
	padding: 15px;
	margin-bottom: 10px;
}

.tile.last {
	margin-bottom: 50px;
}

.tile img {
	width: 100%;
}

.tile-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.tile-figure {
	position: relative;
    width: 100%;
    text-align: center;
    font-size: 90px;
    line-height: 100px;
}

.tile-unit {
	position: relative;
    width: 100%;
    text-align: center;
    font-size: 40px;
    line-height: 40px;
}

.input {
	text-align: center;
	line-height: 30px;
}

.lock {
	padding: 10px;
	text-align: center;
}

.lock-wrapper {
	display: inline-block;
}

.lock-circle {
	font-family: "Eurostile";
	display: inline-block;
    width: 70px;
    margin: 5px;
    height: 70px;
	font-size: 40px;
	line-height: 70px;
    border-radius: 100%;
    box-shadow: 0px 0px 3px 0px #00a1d4;
    background-color: rgba(0, 161, 212, 0.5);
	cursor: pointer;
	cursor: url(../img/cursor.png), auto;
}

.lock-circle:hover {
	background-color: rgba(0, 161, 212, 0.7);
}

.lock-circle.selected {
	background-color: rgba(58, 160, 142, 1);
}

.lock-circle.alert {
	box-shadow: 0px 0px 3px 0px #d40000;
	background-color: rgba(212, 0, 0, 0.5);
	border-color: #d40000;
	color: red;
}

.center-big {
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
}

.radar {
	height: 300px;
	margin: 0 15px 0 15px;
}

.ct-grid {
	stroke: rgba(255, 255, 255, 0.1);
}

.ct-series {
	stroke-width: 20px;
	stroke: white;
}

.ct-labels {
	text-align: center;
	font-size: 10px;
}

.center {
	text-align: center;
}

.width50px {
	width: 50px;
}

.full-height {
	height: 100%;
}

.cube
 {
	width: 150px;
	height: 150px;
	position: relative;
	margin: 30px auto;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
 }

 .face
 {
	width: 150px;
	height: 150px;
	position: absolute;
	font-size: 80px;
	text-align: center;
	line-height: 150px;
	background-color: #999999;
	box-shadow: inset 0 0 20px #333333;
	opacity: 1;
 }

 .cube .one
 {
	-webkit-transform: translateZ(75px);
	transform: translateZ(75px);
 }

 .cube .two
 {
	-webkit-transform: rotateY(90deg) translateZ(75px);
	transform: rotateY(90deg) translateZ(75px);
 }

 .cube .three
 {
	-webkit-transform: rotateY(180deg) translateZ(75px);
	transform: rotateY(180deg) translateZ(75px);
 }

 .cube .four
 {
	-webkit-transform: rotateY(-90deg) translateZ(75px);
	transform: rotateY(-90deg) translateZ(75px);
 }

 .cube .five
 {
	-webkit-transform: rotateX(90deg) translateZ(75px);
	transform: rotateX(90deg) translateZ(75px);
 }

 .cube .six
 {
	-webkit-transform: rotateX(-90deg) translateZ(75px) rotate(0deg);
	transform: rotateX(-90deg) translateZ(75px) rotate(0deg);
 }
 
 /** Timejump **/
.timejump-text {
	position: absolute;
    top: 50%;
    left: 50%;
	text-transform: uppercase;
    z-index: -1;
    transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	animation: 1s infinite both fade;
}

.timejump-anim img {
	width: 20%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -10%;
	animation: 1s infinite both fade;
}

@-webkit-keyframes move {
  0%{
	transform: translateZ(-500px) rotate(0deg);
	-webkit-transform: translateZ(-500px) rotate(0deg);
	-o-transform: translateZ(-500px) rotate(0deg);
  }
  100%{
	transform: translateZ(500px) rotate(0deg);
	-webkit-transform: translateZ(500px) rotate(0deg);
	-o-transform: translateZ(500px) rotate(0deg);
  }
}

@keyframes move {
  0%{
	transform: translateZ(-500px) rotate(0deg);
  }
  100%{
	transform: translateZ(500px) rotate(0deg);
  }
}

@-webkit-keyframes fade {
  0%{
	opacity: 0;
  }
  25% {
	opacity: 1;
  }
  75% {
	opacity: 1;
  }
  100%{
	opacity: 0;
  }
}


@keyframes fade {
  0%{
	opacity: 0;
  }
  25% {
	opacity: 1;
  }
  75% {
	opacity: 1;
  }
  100%{
	opacity: 0;
  }
}
