
#loading, #loading1, #loading2, #loading3, #loading4, #loading5{
  display: none;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #111;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #EBDEBC transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.lds-ring-blue {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}


.lds-ring-blue div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #111;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0F1E40 transparent transparent transparent;
}
.lds-ring-blue div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring-blue div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring-blue div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lds-ring-small {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring-small div {
  /*box-sizing: border-box;*/
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  margin: 8px 8px 8px 16px;
  border: 4px solid #111;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0F1E40 transparent transparent transparent;
}
.lds-ring-small div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring-small div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring-small div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*BUTTON INDEX LOADER*/
#pulsed-loader{display: none;width:70%;height:70%;}

#pulsed-loader1,
#pulsed-loader2,
#pulsed-loader3,
#pulsed-loader3b,
#pulsed-loader4,
#pulsed-loader4b,
#pulsed-loader5,
#pulsed-loader6,
#pulsed-loader7,
#pulsed-loader8{display: none;width:25px;height:25px;}




.pre-loader{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center; 
}


.placeholder-item {
  box-shadow: 0 4px 10px 0 rgba(33, 33, 33, 0.15);
  border-radius: 4px;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.placeholder-item::before {
  content: '';
  display: block;
  position: absolute;
  left: -150px;
  top: 0;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, #E8E8E8 50%, transparent 100%);
  animation: load 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes load {
    from {
        left: -150px;
    }
    to   {
        left: 100%;
    }
}


/*Three Dots Loader*/
.three-dots-loader, .three-dots-loader:before, .three-dots-loader:after {
  border-radius: 50%;
  color: black;
  width: 1.5em;
  height: 1.5em;
  animation-fill-mode: both;
  animation: bblFadInOut .8s infinite ease-in-out;
}
.three-dots-loader {
  font-size: 6px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.three-dots-loader:before,
.three-dots-loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.three-dots-loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.three-dots-loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}
