/*general css starts*/
html,
body {
   margin:0;
   padding:0;
   height:100%;
   /**
    * Disabling double-tap to zoom in iOS 10+
    * as it interferes with simple-keyboard
    */   
   touch-action: manipulation;
}
#museOuterContainer #museContainerLoader {
	position: relative;
	left: 50%;
	display: none;
}
#museOuterContainer #museContainer {
	display: inline;
}

body #museOuterContainer {
	min-height: 100px;
	height: 100%;
}
body div:first-of-type#museOuterContainer,
body div.modal:first-of-type + div.modal-backdrop.fade.in + div:first-of-type#museOuterContainer {
	height: 100%;
}

body div:first-of-type#museOuterContainer #museContainerLoader,
body div.modal:first-of-type + div.modal-backdrop.fade.in + div#museOuterContainer #museContainerLoader {
	z-index: 1100;
	vertical-align: middle;
	position: absolute;
	left: 50%;
	margin-left: -64px;
	/*redefine next 2 lines in custom.css (via MCAA) for top center positioning*/
	top: 50%;
	margin-top: -64px;
}
.muse-loading #museContainerLoader {
	display: inline-block !important;
}
.muse-loading #museContainer {
	display: none !important;
}
.muse-loading div.modal, 
.muse-loading .modal-backdrop.in {
	display: none !important;
}
/*general css ends*/

/*loader css code starts*/
.museLoaderAnimation {
	height: 128px;
	width: 128px;
	margin: 0 auto;
	position: relative;
	border: 2px solid transparent;
	border-top: 2px solid #b6c034;
	border-radius: 100%;
	display: block;
	opacity: 0;
	animation: rotation .75s .5s infinite linear, fadeIn 1s .5s ease-in-out forwards;
	z-index: 1000;
}

.museLoaderCircle {
	position: absolute;
	left: 4px;
	top: 4px;
	padding: 20px;
	border-radius: 50%;
	animation: bounceIn .5s ease-in-out;
	z-index: 1000;
}

.museLoaderLogo {
	/* https://www.base64-image.de/ */
	background-repeat: no-repeat;
	background-size: contain;
	width: 60px;
	height: 60px;
	margin: 10px 10px 10px 10px;
	z-index: 1000;
}

@keyframes rotation {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(359deg);
	}
}
@keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
}

@keyframes bounceIn {
	0% {
	  opacity: 0;
	  transform: scale(.1);
	}
	80% {
	  opacity: .5;
	  transform: scale(1.2);
	}
	100% {
	  opacity: 1;
	  transform: scale(1);
	}
}
/*loader css code ends*/
