.loader {
  display: none;
  position: fixed;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  margin-top: -32px;
  margin-left: -32px;
  z-index: 2000;
}
.loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #888;
  border-radius: 50%;
  animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #13ace8 #feb42e #f65249 #8BC34A;
}
/*
.loader div:nth-child(1):before {
  background: none;
  border: 4px solid #444;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  pointer-events: none;
  border-radius: 50%;
  border-color: #fcc93c transparent transparent transparent;
}*/
.loader div:nth-child(1) {
  animation-delay: -0.45s;
}
.loader div:nth-child(2) {
  animation-delay: -0.3s;
}
.loader div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**type facebook*/
.loader-block{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 100;
    top: 0;
    left: 0;
}
.lds-facebook {
	margin: 0 auto;
	position: relative;
	width: 80px;
	height: 40px;
	margin-top: -25px;
	top: 50%;
}
.lds-facebook div {
	display: inline-block;
	position: absolute;
	left: 8px;
	width: 8px;
	background-color: #999;
	animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
	left: 16px;
	animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
	left: 32px;
	animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
	left: 48px;
	animation-delay: 0;
}
.lds-facebook::after{
	position: absolute;
	bottom: -15px;
	left: 15px;
	color: #999;
	content: ' ';
}
@keyframes lds-facebook {
	0% {
		top: 4px;
		height: 32px;
	}
	50%, 100% {
		top: 12px;
		height: 16px;
	}
}

/*loading img*/
.loading-img-list{
	
}
.loading-img-list > li{
	display: inline-block;
    padding: 0 !important;
    margin-right: 1rem;
    position: relative;
}
.loading-img-list > li > img{
	height: 15vh;
}

/**type 3*/
.lds-spinner-s {
	display: inline-block;
	position: relative;
	width: 20px;/**80px*/
	height: 20px;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
	
}
.lds-spinner-s div {
  transform-origin: 10px 10px;
  animation: lds-spinner-s 1.2s linear infinite;
}
.lds-spinner-s.lds-dark div:after {
  background: #555!important;
}
.lds-spinner-s div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0px;
  left: 9px;
  width: 2px;
  height: 6px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner-s div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner-s div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner-s div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner-s div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner-s div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner-s div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner-s div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner-s div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner-s div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner-s div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner-s div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner-s div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner-s {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.loading-section {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 2000;
}