/***************************** LOADING CONTAINERS ****************************/

.subloading-container {

  width:100%;
  height:400px;
  background:rgba(0,0,0,0.25);
	z-index:500;
  color:white;
	text-align: center;
	font-size: 30px;
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}


.loading-container {
	width:100vw;
	height:100vh;
	position:fixed;
	top:0;
	left:0;
	display:none;
	background:rgba(0,0,0,0.7);
	z-index:500;
  font-family:open_sansregular;
}

.loading-content {
	width:inherit;
	height: inherit;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
  font-size:30px;
  color:white;
}

.loading-logo {
	width:45px;
	height: 45px;
	margin-bottom: 20px;
	opacity: 0.75;
}


.loading-msg {
	color:white;
	height:20px;
	line-height: 20px;
	width:100%;
	text-align: center;
	font-size: 16px;
  position:absolute;
  left:0px;
  top:50px;
}
