.ID .waitPanel {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.ID .animImgBox {
  position: relative;
  width: 300px;
  height: 300px;
  max-width: 80%;
  max-height: 80%;
}

.ID .animImgBox svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.ID #waitImgBig {
  animation-duration: 0.8s;
  animation-name: rotate-right;
}

@keyframes rotate-right {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

.ID #waitImgSmall {
  animation-duration: 0.6s;
  animation-name: rotate-left;
}

@keyframes rotate-left {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-1turn);
  }
}
