#objectide_processing {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 10000;
}

.objectide-processing-animate {
    -animation: processing-spin .7s infinite linear;
    -webkit-animation: processing-spin2 .7s infinite linear;
}

@-webkit-keyframes processing-spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes processing-spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}
