body {
	padding-top:0px;
	font-family: 'custom';
	color: #EAEDEE;
	cursor:default;
	background-color: white;
}

@keyframes minimize{
	from{	
	    -ms-transform: scale(1,1);
	    -webkit-transform: scale(1,1); 
    	transform: scale(1,1); 
	}
	to{
	    -ms-transform: scale(0.5,0.5);
	    -webkit-transform: scale(0.5,0.5);
    	transform: scale(0.5,0.5); 
	}
}

.minimize{
	-webkit-animation-name: minimize;
	-webkit-animation-duration: 0.8s;
	animation-name: minimize;
	animation-duration: 0.8s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes maximize{	
	from{
	    -ms-transform: scale(0.5,0.5); 
	    -webkit-transform: scale(0.5,0.5); 
    	transform: scale(0.5,0.5);  	
	}
	to{	
	    -ms-transform: scale(1,1); 
	    -webkit-transform: scale(1,1); 
    	transform: scale(1,1); 
	}
}
.maximize{
 	-webkit-animation-name: maximize;
	-webkit-animation-duration: 0.8s;
	animation-name: maximize;
	animation-duration: 0.8s;
	animation-timing-function: cubic-bezier(.8,0,.8,1);
	animation-fill-mode: forwards;
	/*
	-moz-transition:all 0.68s cubic-bezier(1,.06,.57,1);
	*/
}


#transform3d{
	position: absolute;
	width: 100px;
	background-color: purple;
	left: 20px; top:10px;
}

.start {
    -moz-transform:translate3d(0.0px, 0.0px, 0.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -moz-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1); 
    -ms-transform:translate3d(0.0px, 0.0px, 0.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -ms-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);
    -webkit-transform:translate3d(0.0px, 0.0px, 0.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -webkit-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transform:translate3d(0.0px, 0.0px, 0.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -o-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}

.end {
    -moz-transform:translate3d(100.0px, 0.0px, 200.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -moz-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);
    -webkit-transform:translate3d(100.0px, 0.0px, 200.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -webkit-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);  
    -ms-transform:translate3d(100.0px, 0.0px, 200.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -ms-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);    
    -o-transform:translate3d(100.0px, 0.0px, 200.0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
    -o-transition:all 0.8s cubic-bezier(0.42, 0, 0.58, 1);    
}

#sitemapBox{
	position: absolute;
	left:2.083vw;
	right:2.083vw;
	top:11.458vw;
	width: 95.833vw;
    height:42.708vw;
	z-index: 90;
	background-image:url("../images/base/background.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
	margin-bottom:2.083vw;

	visibility: hidden;
	z-index: 1000;	
	overflow: hidden;
}

#background{
    /*
	position: absolute;	
	width: 1600px;
	height: 900px;	
	top: 50px; 
	left: 100px;*/
	/*background-color: #618894;*/
	z-index: 1001;
	background-color: red;
}

#dragWrapper{
	position: absolute;
	margin-top: 0;
	width: 100%;
	height: 100%; 
	background-color: rgba(0, 100,0, 0);	
}

#root{
	position: absolute;	
	height: 50%;
	width: 50%;
	margin-top: 0;

	/*background-color: rgba(150, 0, 0, 0.05);*/

	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;     
	user-select: none;
}

#anchor{
	position: absolute;
	top: 18vw;
	z-index: 1010;
}

.index{
	position: absolute;
	left: 10px;
}

#index{
	visibility: hidden;
}

#index > *{
	visibility: visible;
}

.absolute{
	position: absolute;
	left: 200px;
}

.notransition {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.notSelected{
	background-color: #476a75;
}

.related{
	background-color: #ffc500;
	color: black;	
}

.selected{
	background-color: #ffc500;
	color: black;	
}

.hovered{
	background-color: #ffe9a0 !important;
	color: black;		
}

.border{
	-webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.defaultBorder{	
	border-left: solid rgba(255,255,255, 0) 8px;
	border-right: solid rgba(255,255,255, 0) 8px;	
}

.selectedBorder{	
	border-left: solid white 0.4vw;/*8px*/
	border-right: solid white 0.4vw;	
}

.openingHighlight{
	background-color: #b38a00 !important;
	color: black;	
}

.scaleSelected{
    -ms-transform: scale(1.0,1.0) !important; 
    -webkit-transform: scale(1.0,1.0) !important;
	transform: scale(1.0,1.0) !important;  
}

.box{
	width: 1vw;
	height: 1vw;	
	text-align: left;
	color: white;		

	/*padding: 8px;*/
	/*background-color: black;*/
}

.opacity{
	opacity: 0.6;
}

.innerBox{	
	margin: 0.5vw;/*10px*/
	height: 140px;
	overflow: hidden;

	-webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.text{	
	/*background-color: orange;	*/
	width: 100%;
}

.textPadding{
	position: relative;
    top: 50%; 
    transform: translateY(-50%) ;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);      
    padding: 8px;
}

.imgAlign{
	/*background-color: rgb(200,100,200);*/	
    width: 100%;   
    height: 110px;/*121 oder 120 bei box padding 8px*/     
    position: relative;
    padding: 0;
    margin: 0;
    bottom: -1px;
    left: 0;
    text-align: center;   
}
/*
img{
	pointer-events: none;

	/* damit drag and drop funktioniert
	Alternativen: 
	1. <img src="" ondragstart="return false;"/>
	2. <img draggable="false" src="image.png">
	3. $('img').on('dragstart', function(event) { event.preventDefault(); });
	
}*/

#debugCrosshairBlack{
	position: absolute;
	left: 790px;
	top: 440px;
	width: 20px;	
	border: solid black 1px;
}

#debugCrosshairWhite{
	position: absolute;
	left: 800px;
	top: 450px;
	width: 15px;	
	border: solid white 1px;
}

.debugMeasure{
	position: absolute;
	left: 0px;
	width: 3px;
	height: 10px;
	background-color: rgb(140,0,200);
	font-size: 50%;
	z-index: 1000;
}