@charset "utf-8";
/* CSS Document */

/*https://tobiasahlin.com/spinkit/*/
	#preloader {
		/*background-color: #fff;*/
		/*background-color: rgb(44, 62, 80);*/
		background-color: rgba(33, 34, 38, 0.9);!important;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9998;
		
	}

	#status2 {
		background-image: url("loader1.gif");
		background-repeat: no-repeat;
		background: crimson;
		width: 170px;
		height: 170px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -35px;
		margin-left: -35px;
		z-index: 9999;
		}

	#status {
		background-image: url("loader.gif");
		background-repeat: no-repeat;
		width: 70px;
		height: 70px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -35px;
		margin-left: -35px;
		z-index: 9999;
		}

	#spinner {

		width: 70px;
		height: 70px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -35px;
		margin-left: -35px;
	  z-index: 9999;
	}

	.double-bounce1, .double-bounce2 {
	  width: 100%;
	  height: 100%;
	  border-radius: 50%;
	  background-color: #ebebeb;
	  opacity: 0.6;
	  position: absolute;
	  top: 0;
	  left: 0;

	  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	  animation: sk-bounce 2.0s infinite ease-in-out;
	}

	.double-bounce2 {
	  -webkit-animation-delay: -1.0s;
	  animation-delay: -1.0s;
	}

	@-webkit-keyframes sk-bounce {
	  0%, 100% { -webkit-transform: scale(0.0) }
	  50% { -webkit-transform: scale(1.0) }
	}

	@keyframes sk-bounce {
	  0%, 100% { 
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	  } 50% { 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	  }
	}
	.text-info {
		color: rgba(33, 34, 38, 0.9);!important;
		font-weight: 600;
	}
	.bg-info {
		background-color:  rgba(33, 34, 38, 0.9);!important;
	}