#loading-editor {
  background-color: #ffffff00;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 99999;
  margin-top: 0px;
  top: 0px;
}

#loading-center-editor {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute-editor {
  position: absolute;
  left: 50%;
  top: 30%;
  height: 50px;
  width: 150px;
  margin-top: 175px;
  margin-left: -75px;

}
.object-editor {
  width: 8px;
  height: 50px;
  margin-right:5px;
  background-color: #0a628f77;
  -webkit-animation: animate 1s infinite;
  animation: animate 1s infinite;
  float: left;
}

.object-editor:last-child {
  margin-right: 0px;
}

.object-editor:nth-child(10){
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.object-editor:nth-child(9){
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.object-editor:nth-child(8){
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.object-editor:nth-child(7){
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.object-editor:nth-child(6){
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.object-editor:nth-child(5){
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.object-editor:nth-child(4){
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.object-editor:nth-child(3){
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.object-editor:nth-child(2){
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}


@-webkit-keyframes animate {

  50% {
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);

  }
}

@keyframes animate {
  50% {
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }

}



