
.wrap-loadingscreen {
    text-align: center;
    
    font-weight: 400;
}

.text-loadingscreen {
  color: #32a2be;
  display: inline-block;
  margin-left: 20px;
  font-size: 16px;
}

.bounceball-loadingscreen {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.bounceball-loadingscreen:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--coop-main-gd);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: bounce 500ms alternate infinite ease;
          animation: bounce 500ms alternate infinite ease;
}
.bounceball-loadingscreen2 {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.bounceball-loadingscreen2:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--coop-main-gd);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: bounce 700ms alternate infinite ease;
          animation: bounce 700ms alternate infinite ease;
}
.bounceball-loadingscreen3 {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.bounceball-loadingscreen3:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--coop-main-gd);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: bounce 800ms alternate infinite ease;
          animation: bounce 800ms alternate infinite ease;
}

@-webkit-keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}

@keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}
