@charset "utf-8";
/* CSS Document */

#loading-wrapper { 
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: #FFF; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  transition: all 0.3s; 
  z-index: 9999;
} 

.loader {
  width: 80%;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  text-indent: -9999em;
  
}

.completed {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 321px) and (max-width: 467px) {
	
.loader {
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  }
	
	
	
}

@media (min-width: 468px) and (max-width: 767px) {
	
	.loader {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  
}
	
}
/* Small Desktops */
@media (min-width: 768px) and (max-width: 1023px) {
	
	.loader {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  
}

}