.loading-inner h3, .loading-inner h4 {
	font-size: 24px;
}
.modal-open .modal {
	background-color: rgba(51, 51, 51, 0.5);
	background: rgba(51, 51, 51, 0.5);
	color: rgba(51, 51, 51, 0.5);
}
#loading {
	color: #fff;
	padding-top: 1%;
	display: table;
	width: 100%;
	height: 100%; /* For at least Firefox */
	min-height: 100%;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}
.spinner {
	margin: 20px auto 0;
	width: 70px;
	text-align: center;
}
.spinner>div {
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	/* Prevent first frame from flickering when animation starts */
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
#modal-content {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border: none;
	background-color: transparent;
}
.modal-inner {
	color: #848484 !important;
	margin: 0 auto;
	max-width: 730px;
	text-align: left;
}
.modal-wrap,#modal-title,#modal-body {
	text-align: left;
}
#myModalPleaseWait{
	/* position:absolute; */
	height:100%;
	width:100%;
    top:0;
    left:0;
	background-color: #b2b2b2;
    background-color: rgba(0, 0, 0, .3);
	z-index:9999999;
	display:none;
}
.modal-dialog {
	position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}