﻿/*@media screen and (min-width: 769px) {*/
    .waitcontainer_main {
      width: 26%;
      min-width: 220px;
      background-color: #6c829c;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      perspective: 500px;
      position:absolute;
      top: 40%;/*40%*/
      left: 37%;
      padding: 0px 0px;
      -moz-opacity: 1;
      opacity: 1;
      height: 85px;
      z-index:1011;
      border-radius: 10px;
    }
/*}
@media screen and (min-width: 0px) and (max-width: 768px) {
    .waitcontainer_main {
      width: 50%;

      background-color: #6c829c;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      perspective: 500px;
      position:absolute;
      top: 40%;
      left: 25%;
      padding: 0px 10px;
      -moz-opacity: 1;
      opacity: 1;
      height: 75px;
      z-index:1011;
      border-radius: 10px;
    }
}
*/
.waitcontainer {
  width: 95%;
  border-bottom: 3px solid #dedede;
  margin-left: 8px;
  margin-top:4px;
  display: flex;
  justify-content: space-around;
  position:absolute;
  top: 0;
  left: 0;
  color: #dedede;
  height: 50%;
}

.waitcontainer img {
    width: 28px;
}

.waitcontainer div {
  font-size: 180%;
  font-family: sans-serif;
  transform-style: preserve-3d;
}
.waitcontainer div:nth-child(1) {
  animation: turn 3s infinite;
  animation-delay: 200ms;
}
.waitcontainer div:nth-child(2) {
  animation: turn 3s infinite;
  animation-delay: 400ms;
}
.waitcontainer div:nth-child(3) {
  animation: turn 3s infinite;
  animation-delay: 600ms;
}
.waitcontainer div:nth-child(4) {
  animation: turn 3s infinite;
  animation-delay: 800ms;
}
.waitcontainer div:nth-child(5) {
  animation: turn 3s infinite;
  animation-delay: 1000ms;
}
.waitcontainer div:nth-child(6) {
  animation: turn 3s infinite;
  animation-delay: 1200ms;
}
.waitcontainer div:nth-child(7) {
  animation: turn 3s infinite;
  animation-delay: 1400ms;
}


@keyframes turn {
  0% {
    transform: rotateX(0deg);
    transform-origin: 0 100%;
  }
  100% {
    transform: rotateX(360deg);
    transform-origin: 0 100%;
  }
}