/* Basis */
*, *:before, *:after {
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: Open Sans,sans-serif;
}

/* Loading div */
.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10000  
}

/* Logo overwrite */
.uk-logo {
	background-image: url("../logo.png");
	background-repeat: no-repeat;
	background-position: center;
	width: 80px;
}


/* TreeMap div */
.treemap {
	position: relative;
	width: 100%;
	height: 100%;
	/*width: calc(100% - 0 * 2 * 1px);
	height: calc(100% - 370px);*/
	margin: 0px;
	overflow: hidden;	
	z-index: 99;
}

/* TreeMap layout */
.node {
	position: absolute;
	background: transparent url("") no-repeat 50%/cover;
	overflow: hidden;
	opacity: 0.8;
	-webkit-transition: opacity .8s;
	transition: opacity .8s;
	cursor: pointer;
}

.node .label {
	display: inline;
	font-family: sans-serif;
	color: rgba(255, 255, 255, 0.6);
	position: absolute;
	padding: 0;
	margin: 0;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
		  transform: translateX(-50%) translateY(-50%);
	-webkit-transition: color .4s, opacity .8s, -webkit-filter .8s;
	transition: color .4s, opacity .8s, -webkit-filter .8s;
	transition: color .4s, opacity .8s, filter .8s;
	transition: color .4s, opacity .8s, filter .8s, -webkit-filter .8s;
}

.node.hide {
	opacity: 0;
	pointer-events: none;
}

.node.hide .label {
	-webkit-filter: blur(10px);
		  filter: blur(10px);
}

.node:hover .label {
	color: white;
}

.node.level-0 {
	z-index: 104;
	font-size: 15vmin;
	display: none;
}

.node.level-1 {
	z-index: 103;
	font-size: 10vmin;
}

.node.level-2 {
	z-index: 102;
	font-size: 5vmin;
}

.node.level-3 {
	z-index: 101;
	font-size: 2.5vmin;
}

.tooltip {	
	position: absolute;
	max-width: 200px;
	display: none;
	height: auto;
	background: none repeat scroll 0 0 white;
	border: 0 none;
	border-radius: 8px 8px 8px 8px;
	box-shadow: -3px 3px 15px #888888;
	color: black;
	font: 12px sans-serif;
	padding: 5px;
}

.uk-form-danger {
	color: #999;
}

.uk-form-danger:focus {
	color: #999;
	border-color: #39f;
}

#progress_container {
	display: block;	
}

.progress_bar {
    background: #ccc;
	overflow: hidden;
    border-radius: 13px;
    height: 20px;
	margin-top: 5px;
    width: 100px;
    padding: 3px;
}

#progress_annotations {
	overflow: hidden;
    content: '';
    display: block;
    background: #39f;
    width: 10%;
    height: 100%;
    border-radius: 9px;
}