/*
src/main/webapp/loading-screen.jsp
*/

#loading-screen.in {
	display: table;
}

#loading-screen {	
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 999999999;
	display: none;
	width: 100vw;
	height: 100vh;
	display: none;	
}

#loading-screen .backdrop {
	background: black;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
}

#loading-screen .main-container {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-size: 20px;	
}

#loading-screen .loader-container {
	padding-left: 75px;
}

#loading-screen .loader {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: -75px 0 0 -75px;
	border: 16px solid #f3f3f3;
	border-top: 16px solid #3498db;
	animation: spin 2s linear infinite;
	display: inline-block;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}