.whole-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
}

.whole-loading > img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.whole-loading > img.rotate {
  -webkit-animation: rotate 1.2s ease-out infinite forwards;
          animation: rotate 1.2s ease-out infinite forwards;
}

.whole-loading > span {
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 550px) {
  .whole-loading > img {
    width: 150px;
  }
  .whole-loading > span {
    font-size: 1.2rem;
  }
}

.bouncingBox .modal-content {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bouncing-content {
  max-width: 80vw;
  position: relative;
}

.bouncing-content > a > img {
  width: 100%;
}

.bouncing-content > button.close {
  position: absolute;
  font-size: 2.5rem;
  top: -35px;
  right: -30px;
}

@media (max-width: 550px) {
  .bouncing-content > button.close {
    top: 0;
    right: -20px;
    color: #fff;
    font-size: 3rem;
    opacity: 1;
  }
}

.formgroup {
  position: relative;
}

.formgroup > button.end {
  position: absolute;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#eab129), color-stop(50%, #fbcb58), color-stop(51%, #d89f18), to(#fbcb58));
  background: linear-gradient(to bottom, #eab129 0%, #fbcb58 50%, #d89f18 51%, #fbcb58 100%);
  font-size: 0.75em;
  font-weight: 700;
  color: #182f25;
  text-shadow: 0px 1px 5px rgba(255, 228, 144, 0.8);
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 4px;
  min-width: 70px;
}

.formgroup > button.end:disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.input_container {
  position: relative;
}

.input_container > button.end {
  position: absolute;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#eab129), color-stop(50%, #fbcb58), color-stop(51%, #d89f18), to(#fbcb58));
  background: linear-gradient(to bottom, #eab129 0%, #fbcb58 50%, #d89f18 51%, #fbcb58 100%);
  font-size: 0.75em;
  font-weight: 700;
  color: #182f25;
  text-shadow: 0px 1px 5px rgba(255, 228, 144, 0.8);
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 4px;
  min-width: 50px;
}

.input_container > button.end:disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.playbtn.disabled, .submit_btn.disabled {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/*# sourceMappingURL=index.css.map */