/* ####################### Focus deaktivieren ################################*/
*:focus {
    outline: 0;
}

/* ####################### default Touch deaktivieren ################################*/
* {
	touch-action: none;
}

/* ####################### text markieren deaktivieren ################################*/
* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* ####################### html + body ################################*/
html, body {
	p_osition: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
    width: 1920px;
    height: 1080px;
	overflow-x:hidden;
	overflow-y:hidden;
    padding: 0px;
	margin: 0px;
	color: white;
	background-color: black;
    font-size: 12px !important;
}
html body {
	background-color: #0a2a59;
	display: none;
}
/* ####################### Font ################################*/
@font-face { 
	font-family: meta; 
	src: 
		url(/styles/font_MetaPlus.woff) format('font/x-woff'),
		url(/styles/font_MetaPlus.ttf) format('truetype')
} 
@font-face { 
	font-family: metabold1; 
	src: 
		url(/styles/font_MetaBoldLF-Roman.woff) format('font/x-woff'),
		url(/styles/font_MetaBoldLF-Roman.ttf) format('truetype')
}
@font-face { 
	font-family: metabold2; 
	src: 
		url(/styles/font_MetaPlus_Bold_Roman.woff) format('font/x-woff'),
		url(/styles/font_MetaPlus_Bold_Roman.ttf) format('truetype')
}
* {
	font: 1.0em meta;
}

/* ####################### clear ################################*/
.clear {
	clear: both;
}

/* ####################### button_left ################################*/
#button_left {
	/* icon 72x72 margin-bottom 28 */
	position: absolute;
	top: 353px;
	left: 49px;
	width: 72px;
	z-index:11;
}
#button_left button {
	width: 80px;
	height: 80px;
	margin-bottom: 18px;
	background-color: rgba(0,0,0,0);
	border: none;
}
#button_left button:last-child {
	margin-bottom: 0px;
}
.rotate90 #button_left button {
	top: 56px;
	transform: rotate(90deg);
}
.rotate180 #button_left button {
	transform: rotate(180deg);
}

#button_left button#i18n {
	background-image: url("/images/button_left_i18n.png");
}
#button_left button#rotate {
	background-image: url("/images/button_left_rotate.png");
}
#button_left button#home {
	background-image: url("/images/button_left_home.png");
}
#button_left button#info {
	background-image: url("/images/button_left_info.png");
}

/* ####################### logo_iow ################################*/
#logo_iow {
	position: absolute;
	top: 30px;
	left: 40px;
	width: 270px;
	height: 110px;
	background-image: url("/images/logo_iow.png");
	background-repeat: no-repeat;
	z-index:10;
}
.rotate90 #logo_iow {
	top: 110px;
	left: -30px;
	transform: rotate(90deg);
}
.rotate180 #logo_iow {
	transform: rotate(180deg);
	top: 940px;
}

/* ####################### logo_igd ################################*/
#logo_igd {
	position: absolute;
	top: 30px;
	right: 40px;
	width: 270px;
	height: 110px;
	background-image: url("/images/logo_igd.png");
	background-repeat: no-repeat;
	background-size: contain;
	z-index:10;
	display:none;
}
.rotate90 #logo_igd {
	top:860px;
	left: -70px;
	transform: rotate(90deg);
}
.rotate180 #logo_igd {
	transform: rotate(180deg);
	top: 940px;
}

/* ####################### content_main ################################*/
#content_main {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1920px;
	height: 1080px;
}
.rotate90 #content_main {
	top: -420px;
	left: 420px;
	height: 1920px;
	width: 1080px;
	transform: rotate(90deg);
}
.rotate180 #content_main {
	transform: rotate(180deg);
}

/* ####################### title ################################*/
#app_title {
	position: absolute;
	top: 70px;
	left: 700px;
	width: 520px;
	height: 90px;
	border-radius: 10px;
	background-color: #40a5dc;
	text-align: center;
	z-index:10;
}
.rotate180 #app_title {
	transform: rotate(180deg);
	top: 915px;
}
#app_title > div {
	margin-top: 25px;
	font-size: 37px;
	font-family: metabold2;
}

/* ####################### info/help ################################*/
.help {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1920px;
	height: 1080px;
	background-color: rgba(10,42,89,0.9);
	display: none;
	z-index: 9;
}
.rotate90 .help {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 1920px;
	width: 1080px;
	background-color: rgba(10,42,89,0.9);
}
/*Dialog*/
.help .block_dialog {
	position: absolute;
	top: 200px;
	left: 450px;
	width: 1000px;
	height: 800px;
	border-radius: 20px;
	background-color: #40a5dc;
}
.rotate90 .help .block_dialog {
	left: 100px;
	width: 880px;
	height: 1200px;
}
/*Titel*/
.help .block_dialog .title {
	position: absolute;
	transform-origin: 0 0;
	transform: rotate(-90deg);
	top: 800px;
	left: 0px;
	width: 800px;
	height: 40px;
	border-radius: 20px 20px 0px 0px;
	background-color: #fff;
	color: #40a5dc;
	text-align: center;
}
.rotate90 .help .block_dialog .title {
	top: 1200px;
	width: 1200px;
}
.help .block_dialog .title span.i18n {
	position: absolute;
	top:6px;
	font-size: 20px;
	font-family: metabold2;
}

/*Content*/
.help .block_dialog .help_content {
	position: absolute;
	top: 120px;
	left: 100px;
	width: 785px;
	height: 610px;
	font-size: 24px;
	line-height: 1.3;
    text-align: justify;
	padding-right: 50px;
}
.rotate90 .help .block_dialog .help_content  {
	width: 670px;
	height: 990px;
}
.help .block_dialog .help_content li {
	padding-bottom: 10px;
	padding-top: 10px;
}

.help .block_dialog .help_content .moretext {
	margin: 24px 0px;
}
.help .block_dialog .help_content .moretext .abstract {
	display: inline-block;
	background-color: #73E30D;
	padding: 5px 10px 5px 10px;
	border-radius: 7px;
}
.help .block_dialog .help_content .moretext .abstract:before {
	content: "";
	width: 16px;
	height: 16px;
	background-image: url("/images/moretext.png");
	display: inline-block;
	transition: transform 400ms;
	margin-right: 6px;
} 
.help .block_dialog .help_content .moretext .abstract.show:before {
	transform: rotate(90deg);
}
.help .block_dialog .help_content .moretext .text {
	margin-top: 20px;
	padding-left: 20px;
	font-size: 0.9em;
	display:none;

}
.help .block_dialog .help_content img.screenshot {
	display:block;
	padding: 10px;
	background-color: #0a2a59;
	border-radius: 15px;
	border: 1px solid #fff;
	box-shadow: 0px 0px 10px #fff;
	margin: 10px 0px 10px 0px;
}
.help .block_dialog .help_content img.screenshot.float.right {
	float:right;
	margin:0px 0px 20px 20px;
}
.help .block_dialog .help_content img.screenshot.float.left {
	float:left;
	margin:0px 20px 20px 0px;
}
.help .block_dialog .help_content.features p {
	clear: both;
}

.help .block_dialog.content .help_content.features, .help .block_dialog.features .help_content.content {
	display: none;
}

/*Buttons*/
.help .block_dialog .block_help_buttons {
	position: absolute;
	top: 0px;
	left: 259px;
	z-index: 10;
}
.rotate90 .help .block_dialog .block_help_buttons  {
	left: 219px;
}
.help .block_dialog .block_help_buttons .button_help {
	background-color: #73e30d;
	display: inline-block;
	margin: 0px 2px 0px 0px;
	width:250px;
	height: 60px;
	position: relative;
}
.help .block_dialog.content .block_help_buttons .button_help.content, .help .block_dialog.features .block_help_buttons .button_help.features {
	background-color: #fff;
	color: #40A5DC;
	height: 70px;
}
.help .block_dialog.content .block_help_buttons .button_help.content > div.i18n, .help .block_dialog.features .block_help_buttons .button_help.features > div.i18n {
	font-family: metabold2;
}

.help .block_dialog .block_help_buttons .button_help:first-child {
	border-radius: 0px 0px 0px 20px;
}
.help .block_dialog .block_help_buttons .button_help:last-child {
	margin-right: 0px;
	border-radius: 0px 0px 20px 0px;
}

.help .block_dialog .block_help_buttons .button_help > div.i18n {
	margin-top: 15px;
	text-align: center;
	width: 250px;
	font-size: 1.8em;
}
/*CloseButton*/
.help .block_dialog .button_help_close {
	position: absolute;
	right: 0px;
	background-color: #ffffff;
	color: #40a5dc;
	width:60px;
	height: 60px;
	border-radius: 0px 20px 0px 0px;
	font-weight: bold;
	font-size: 40px;
	text-align: center;
	line-height: 55px;	
}

/* ####################### Scrollbar ################################*/
.scroll_pane {
	position: relative;
	width:100%;
	height:100%;
}

.scroll_viewport {
	position: absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom: 0px;
	overflow: hidden;
}

.scroll_viewpane {
	position: relative;
	top:0px;
	width:100%;
	margin: 0px;
	padding: 0px 0px 10px 0px;
}
.scroll_viewpane p {
	m_argin: 0px 0px 1em 0px;
}
.scroll_bar {
	position: absolute;
	top:0px;
	bottom:0px;
	right: -47px;
	width: 27px;
	border-radius: 5px;
	background-color: rgba(256,256,256,0.1);
	display:none;
}

.scroll_knob {
	position: relative;
	width: 100%;
	border-radius: 5px;
	background-color: #fff;
}

/* ####################### app ################################*/
app {
	background-color: #73E30D;
	border-radius: 5px;
	padding: 2px 10px;
	font-size: 0.9em;
}

/* ####################### sprache ################################*/
body.de .i18n.en {
	display: none
}
body.en .i18n.de {
	display: none
}


/* ####################### textIds ################################*/
.textid {
	font-size: 12px !important;
	font-family: Verdana, 'Lucida Sans Unicode', sans-serif !important;
	font-weight: normal !important;
	text-align: center !important;
	position: absolute !important;
	top: -10px !important;
	left:-5px !important;
	background-color: rgba(89,51,5, 0.6) !important;
	color: #ffffff !important;
	padding: 5px !important;
	border-radius: 5px !important;
	border: 1px solid #ffffff !important;
	width: 25px !important;
	opacity:0;
	d_isplay: none;
}

.textid.A_8 {
	margin-top: 60px;
	margin-left: -10px;
}

.textid.C_4, .textid.C_6, .textid.C_8, .textid.C_10, .textid.C_12 {
	margin-top: 40px;
	margin-left: -20px;
}

.block_phases #akkordeon div {
	position: relative;
}
.block_phases #akkordeon .textid {
	top: 0px !important;
	left:0px !important;
	font-size: 10px !important;
	padding: 2px !important;
}

/* ####################### version ################################*/
.version {
	pointer-events: none;
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-size: 12px !important;
	font-family: Verdana, 'Lucida Sans Unicode', sans-serif !important;
	font-weight: normal !important;
	color: rgba(256,256,256, 0.6) !important;
}
.version .id{
	font-size: 12px !important;
	font-family: Verdana, 'Lucida Sans Unicode', sans-serif !important;
	font-weight: normal !important;
}

/* ####################### x3dom ################################*/
#x3dom_logdiv {
	z-index: 9999;
	position: absolute;
	font-size: 1.0em;
	font-family:verdana, sans-serif;
	background-color: rgba(0,0,0,0.7);
    overflow: scroll;
    resize: both;
    max-width: 100%;
    max-height: 100%;	
    min-width: 10%;
    min-height: 10px;
    width: 20%;vvff
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
#x3dom_logdiv::before {
	content: "[D] enable/disable debug view / [V] show current viewpoint values";
	position: absolute;
	font-size: 0.8em;
	right: 10px;
	background-color: rgba(255,255,255, 0.4);
	color: #fff;
	padding: 3px 8px;
	border-radius: 5px;
	border: 1px solid #aaa;
}
#x3dom_logdiv p {
	font-family:verdana, sans-serif;
	padding-bottom: 2px;
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}