/* COLORS */
/*Top level variables*/
/*Loading between pages*/
.loading {
  z-index: 1000000000;
  height: 100%;
}
.loading .shadow {
  box-shadow: 0 5px 15px 0 rgba(67, 11, 11, 0.2);
}
.loading .toybot-toy {
  animation-name: bounce;
  animation-duration: 0.4s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.loading .toybot-bolt {
  animation-name: bounce;
  animation-duration: 0.4s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0.1s;
}
.loading .cloud-trail {
  animation-name: flicker;
  animation-duration: 0.1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.loading .cloud-front-1 {
  animation-name: bubble-less;
  animation-duration: 0.8s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 25% 0%;
}
.loading .cloud-front-2 {
  animation-name: bubble;
  animation-duration: 0.8s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 25% 10%;
  animation-delay: 0.2s;
}
.loading .cloud-front-3 {
  animation-name: bubble;
  animation-duration: 0.6s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 5% 8%;
  animation-delay: 0.3s;
}
.loading .cloud-front-4 {
  animation-name: bubble-less;
  animation-duration: 0.5s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 30% 5%;
  animation-delay: 0.4s;
}
.loading .cloud-back-1 {
  animation-name: bubble-less;
  animation-duration: 0.5s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 20% 35%;
  animation-delay: 0.1s;
}
.loading .cloud-back-2 {
  animation-name: bubble;
  animation-duration: 0.4s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 6% 10%;
}
.loading .cloud-back-3 {
  animation-name: bubble;
  animation-duration: 0.4s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: 30% 10%;
  animation-delay: 0.3s;
}
@keyframes bounce {
  from {
    transform: translateY(-1px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes flicker {
  to {
    opacity: 0.9;
  }
}
@keyframes bubble {
  to {
    opacity: 0.95;
    transform: scale(1.4);
  }
}
@keyframes bubble-less {
  to {
    opacity: 0.95;
    transform: scale(1.2);
  }
}
.loading .wrapper {
  line-height: 2em;
  height: 170px;
  background-color: #ff614c;
  width: 170px;
  text-align: center;
  border-radius: 85px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  top: 45% !important;
}
.loading .wrapper .fa {
  vertical-align: bottom;
}
.loading .wrapper img {
  border: 0;
  height: 120px;
  margin-top: 10px;
}

.page-loading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 250px;
  height: 250px;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
}

.colorful-loading {
  max-width: 100%;
  max-height: 100%;
  padding-top: calc(50% - 125px);
}
.colorful-loading .simple-easy-svg {
  max-width: 100%;
  max-height: 100%;
}
.colorful-loading .shadow {
  box-shadow: 0 5px 15px 0 rgba(67, 11, 11, 0.2);
  max-width: 100%;
  max-height: 100%;
}
.colorful-loading .play-svg {
  border-radius: 150px;
  max-width: 100%;
  max-height: 100%;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  box-shadow: 0 5px 15px 0 rgba(67, 11, 11, 0.2);
}
@media only screen and (max-width: 767px) {
  .colorful-loading .play-svg {
    max-width: min(80vw, 80vh) !important;
    max-height: min(80vw, 80vh) !important;
    border-radius: 50%;
  }
}
.colorful-loading .loading-svg {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .colorful-loading {
    padding-top: calc(50% - 80vw);
  }
}