/* Erogych V1.0 CSS */

*:focus {
	outline: solid 0px;
 }
 input:checked{
	background-color: #1f57A4;
	/*background-color:#2196F3;*/
  }

.model_body {
	background-image: linear-gradient(to bottom right, #f9f9f9, #ececec, #d8d8d8);
}
td {
	padding: 0;
	border: none;
 }
 tr {
	padding: 0;
	border: none;
 }
 table {
	border-collapse: collapse;
 }
.sidenav {
	height: 100%;
	width: 250px;
	position:fixed;
	z-index: 1;
	/*top: 0;*/
	left: 0;
	background-color: #111;
	overflow-x: hidden;

  }
  .sidenav-small {
	height: 100%;
	width: 70px;
	position:fixed;
	z-index: 1;
	/*top: 0;*/
	left: 0;
	background-color: #111;
	overflow-x: hidden;
  }

  @font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(/iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
	src: local('Material Icons'),
		 local('MaterialIcons-Regular'),
		 url(/iconfont/MaterialIcons-Regular.woff2) format('woff2'),
		 url(/iconfont/MaterialIcons-Regular.woff) format('woff'),
		 url(/iconfont/MaterialIcons-Regular.ttf) format('truetype');
  }
  
  .material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
  
	vertical-align: middle;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
  
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
  
	/* Support for IE. */
	font-feature-settings: 'liga';
  }  
.iframe_main{
	z-index: -1;
	/*
	height:100%;
	width:100%;
	*/
	border:none;
	top:0px;
	left:0px;
	position:fixed;
}
.iframe_splitter{
	/*z-index: -1;*/
	border: 0px;
	height:100%;
	width:100%;
}

#vtktooltip {
	position: absolute;
	/*
	margin-top:50px;
	margin-left:50px;
	*/
	background-color: silver;
	/*color: #fff;*/
	text-align: center;
	border-radius: 6px;
	padding: 10px;
	opacity: 0.8;
  }
  

.tooltip {
	position: relative;
	display: inline-block;
	/*border-bottom: 1px dotted black;*/
  }
  
  .tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	top: 150%;
	left: 50%;
	margin-left: -60px;
  }
  
  .tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
  }
  
  .tooltip:hover .tooltiptext {
	visibility: visible;
  }

  .img-wrapper {
    /*height: 400px;*/
    width:100%;
    /*background-color: black;*/
    position: relative;
    overflow-x:auto;
    overflow-y:auto;
}

.img-wrapper > img {
    position: relative;
}
/*-----------snackbar----------------*/
#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1000;
	left: 50%;
	bottom: 30px;
	font-size: 17px;
  }
  
  #snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.6s;
	animation: fadein 0.5s, fadeout 0.5s 2.6s;
  }

  @-webkit-keyframes fadein {
	from {bottom: 0; opacity: 0;} 
	to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
	from {bottom: 30px; opacity: 1;} 
	to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
  }
/*-----------------------------------*/
.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -180px 0 0 -180px;
	/*transform: translate(-50%,-50%);*/
	border: 30px solid #f3f3f3;
	border-radius: 50%;
	border-top: 30px solid #1f57A4;
	border-bottom: 30px solid #1f57A4;
	width: 300px;
	height: 300px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
  }

  .buttonLoader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100px;
	height: 50px;
	margin: -50px 0 0 -75px;
  }
  
  @-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }

/* Add animation to "page content" */
.animate-bottom {
	position: relative;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
	from { bottom:-100px; opacity:0 } 
	to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
	from{ bottom:-100px; opacity:0 } 
	to{ bottom:0; opacity:1 }
  }
  /*-----------------------------------*/
  /* Make circles that indicate the steps of the form: */
.step, .stepAnalysis{
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border: none;  
	border-radius: 50%;
	display: inline-block;
	opacity: 0.5;
  }
  
  .step.active, .stepAnalysis.active{
	opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish, .stepAnalysis.finish{
	background-color: #1f57A4;
  }