/**
**
** HI colors:
**
** Orange:	hsl(26, 94%, 53%)
** Grey: 	hsl(0,0%,66%)
**
** Site colors:
** 
** blue: hsl(220, 65%, 30%)
** orange: hsl(38, 100%, 55%)
** "disabled" grey: hsl(0,0%,75%)
** top level nav button: hsl(220, 100%, 30%)
**
**/

/** order:
content
display
position (incl. z-index & float)
size
margin
padding
border (incl. radius)
color
background
font & text & line
the rest (list-style, etc.)
shadow

effects
transitions
**/

/***************************************
**
** CSS reset, taken from 
** http://html5doctor.com/html-5-reset-stylesheet/
**
***************************************/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, image, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
	background:transparent;
	color: white;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

aside,nav,main,header,footer {
	display: block;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	border: 0;
}

/***************************************
**
** Fonts
**
***************************************/

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Bold.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-BoldItalic.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-BoldItalic.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-BoldItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-Italic.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Italic.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-Light.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Light.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Light.ttf') format('truetype');
    font-style: normal;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-LightItalic.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-LightItalic.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-LightItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-Thin.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-Thin.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-Thin.ttf') format('truetype');
    font-style: normal;
    font-weight: 200;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'LatoWeb';
    src: url('../fonts/Lato-ThinItalic.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Lato-ThinItalic.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Lato-ThinItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 200;
    text-rendering: optimizeLegibility;
}

@font-face {
	font-family: "Ionicons";
	src: url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Fontawesome";
	src: url("../fonts/fontawesome-regular.ttf?v=5.11.2") format("truetype"),
		 url("../fonts/fontawesome-regular.woff?v=5.11.2") format("woff"),
		 url('../fonts/fontawesome-regular.woff2') format('woff2'),
		 url("../fonts/fontawesome-regular.svg?v=5.11.2#Fontawesome") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Fontawesome Solid";
	src: url("../fonts/fontawesome-solid.ttf?v=5.11.2") format("truetype"),
		 url("../fonts/fontawesome-solid.woff?v=5.11.2") format("woff"),
		 url('../fonts/fontawesome-solid.woff2') format('woff2'),
		 url("../fonts/fontawesome-solid.svg?v=5.11.2#Fontawesome") format("svg");
	font-weight: normal;
	font-style: normal;
}

/***************************************
**
** Here starts the real HELLER style
**
***************************************/

html, body {
	width: 100%;
	height: 100%;
	min-height: 100%;
	font-family: 'LatoWeb', Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

body {
	margin: 0px;
	color: hsl(0,0%, 40%);
	background-color: hsl(0,0%,70%);
}

body > #webCAFAppFrame {
	position: relative;
	color: hsl(0,0%, 30%);
	min-height: 100%;
	background-color: hsl(0,0%, 23%);
	box-shadow: 0px 1px 5px hsl(0,0%,30%);
}

body > *:nth-child(n+2) {
	color: hsl(0,0%,0%);
}


/***************************************
**
** JavaScript not enabled box
**
***************************************/

div.warnBox{
	margin: 16px 64px;
	padding:16px;
	border: 2px solid hsl(0,100%,45%);
	border-radius: 4px;
	color:hsl(0,100%,45%);
	font-weight:bold;
	font-size:0.9em;
}

div.warnBox > h1{
	margin: 0px;
	padding: 8px;
	padding-left: 0px;
	font-size:1.8em;
}

/***************************************
**
** Misc
**
***************************************/

span.loadingText:before {
	content: "Wird geladen ...";
	color: hsl(0,0%, 80%);
	font-style: italic;
}

/***************************************
**
** EVE / webCAF
**
***************************************/
.chromeLabel {
	font-family: "LatoWeb";
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.eveCompanyIcon, .eveCompanyIconLeading::before, .eveCompanyIconTrailing::after {
	content: " ";
	background-image: url("../image/logo-company.png");
    background-repeat: no-repeat;

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.eveCompanySmallIcon, .eveCompanySmallIconLeading::before, .eveCompanySmallIconTrailing::after {
	content: url("../image/logo-company_18x20.png");
    background-repeat: no-repeat;

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.eveIcon, .eveIconLeading::before, .eveIconTrailing::after {
	display: inline-block;
	font-family: "Ionicons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.eveIcon.FONTAWESOME, .eveIconLeading.FONTAWESOME::before, .eveIconTrailing.FONTAWESOME::after {
	font-family: "Fontawesome";
}

.eveIcon.FONTAWESOME-SOLID, .eveIconLeading.FONTAWESOME-SOLID::before, .eveIconTrailing.FONTAWESOME-SOLID::after {
	font-family: "Fontawesome Solid";
}

.eveSvgIcon {
	width: 21px;
	height: 21px;
}

.eveCloser {
	font-size: 18pt;
	border: 0;
	cursor: pointer;
	text-align: center;
	width: 1.2em;
	border-radius: 4px;
	color: white;
	background-color: hsl(0, 0%, 35%);

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.eveCloser:hover {
  background-color: hsl(0, 75%, 32%);
}

.loadingLabel {
	color: hsl(0, 0%, 70%);
}

.eveAppStartupPlaceholder {	
	position: absolute;
	width: 100%;
	height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
	text-align: center;
}

.evePlatformLogo::after {
	content: url("../image/logo-eve.png");
}

.eveAppStartupPlaceholder .evePlatformLogo {
	position: absolute;
	margin: 0 auto;
	left: 0em;
	right: 0em;	
	bottom: 1em;
}

.eveAppStartupPlaceholder .evePlatformLogo::before {
	content: "powered by";
	display: block;
	margin-bottom: 0.2em;
	color: hsl(0, 0%, 70%);
	font-size: 1.5em;
}

.eveAppStartupPlaceholder .evePlatformLogo::after {
	display: block;
}

.eveAppLogo::after {
    content: url("../image/logo.png");
	display: block;
}

.eveAppIdentifier::before {
    content: url("../image/logo.png");
	display: block;
}

.eveAppIdentifier::after {
    display: block;
	font-weight: 300;
	font-size: 6em;
	margin: 0;
	margin-top: 0.25em;
}

.eveInteractiveElement.eveDisabled {
	cursor: not-allowed;
}

.eveInteractiveElement.eveLightElement.eveDisabled,
.eveInteractiveElement.eveLightElement.eveDisabled:hover {
    background: hsl(0, 0%, 50%);
}

.eveDisabled .eveIcon {
    color: hsl(0,0%,75%);
}

.eveInteractiveElement {
	cursor: pointer;

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.eveInteractiveElement.eveLightElement,
.eveInteractiveElement.eveStrongElement,
.eveStrongElement ul > li.eveInteractiveElement:not(.eveDisabled) {
	background-color: hsl(0, 0%, 35%);
	color: white;
}

.eveInteractiveElement.eveLightElement.secondaryTool,
.eveInteractiveElement.eveStrongElement.secondaryTool{
	background-color: hsl(0, 0%, 50%)
}

.eveInteractiveElement.eveLightElement.tertiaryTool,
.eveInteractiveElement.eveStrongElement.tertiaryTool{
	background-color: #B2B2B2;
}

.eveInteractiveElement svg .eveInteractiveSvgFill {
	fill: white;
}

.eveStrongElement ul > li.eveInteractiveElement.eveDisabled {
	color: white;
	background-color: hsl(0,0%,75%);

}

.eveInteractiveElement.eveLightElement:hover, .eveInteractiveElement.eveUnderstateElement:hover:not(.eveDisabled) {
	background-color: hsl(191, 87%, 33%);
}

.eveInteractiveElement.eveLightElement.eveActive, .eveInteractiveElement.eveUnderstateElement.eveActive {
	background-color: hsl(31, 78%, 50%);
}

.eveInteractiveElement.eveLightElement.eveActiveSecondary:not(.eveActive), .eveInteractiveElement.eveUnderstateElement.eveActiveSecondary:not(.eveActive) {
	background-color: #f7aa54;
}

.eveInteractiveElement.eveLightElement.eveDisabled, .eveInteractiveElement.eveLightElement.eveDisabled:hover {
	color: hsl(0,0%,75%);
}

.eveInteractiveElement.eveStrongElement.eveDisabled, .eveInteractiveElement.eveStrongElement.eveDisabled:hover, .eveInteractiveElement.eveLightElement.eveStrongHover.eveDisabled:hover, .eveInteractiveElement.eveUnderstateElement.eveStrongHover.eveDisabled:hover {
	color: white;
	background-color: hsl(0,0%,50%);
}

.webCAFChromeWidgetReorderList ul > li.expanded > .expandedContent .eveIcon:hover,
.eveInteractiveElement.eveLightElement.eveIcon:hover,
.eveInteractiveElement.eveStrongElement:hover,
.eveInteractiveElement.eveLightElement.eveStrongHover:hover,
.eveInteractiveElement.eveUnderstateElement.eveStrongHover:hover {
	background-color: hsl(191, 87%, 33%);
}

.eveInteractiveElement.eveStrongElement.eveActive,
.eveStrongElement > li > ul > li.eveInteractiveElement:hover:not(.eveDisabled) {
	color: white;
	background-color: hsl(31, 78%, 50%);
}

.eveInteractiveElement.eveStrongHover.eveIcon.eveActive svg path, 
.eveInteractiveElement.eveStrongHover.eveActive .eveIcon svg path {
	fill: white;
}

.eveDragable{
	cursor: url(dijit-theme/images/cursor_pan.png), auto;
}

/* IE10 IE11 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
	.eveDragable{
		cursor: url('./asset/style/dijit-theme/images/cursor_pan.cur'), auto;
	}
}

/* Edge */
@supports (-ms-ime-align:auto) {
	.eveDragable{
		cursor: url('./asset/style/dijit-theme/images/cursor_pan.cur'), auto;
	}
}

.eveHidden{
	display: none!important;
}

.evePotentiallyHarmfulAction {
    background-color: hsl(359, 100%, 62%)!important;
}

.defaultWidgetBackground {
	background-color: hsl(0, 0%, 30%);
}

.webCAFBuildlingsBlocksWidgetStationSelectBox .webCAFBuildlingsBlocksWidgetStationSelectBoxDecreaseToStart,
.webCAFBuildlingsBlocksWidgetStationSelectBox .webCAFBuildlingsBlocksWidgetStationSelectBoxIncreaseToEnd {
  display: flex!important;
}

/* .printingReport .webCAFMainWidgetWrapperConfigBar {
    display: none!important;
} */

:root {
	--hi-icon-font-family: "Ionicons"
}