/*
Theme Name: GO Foundation Child
Description: Child theme for GO Foundation theme
Author: planetOGLE
Author URI: http://www.planetogle.com.au
Template: gotheme
Version: 1.0.0
Text Domain: go
*/

.bounce-loader-wrap {
  visibility: hidden;
  background-color: rgba(250,250,250, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  font-family: Hind;
  font-weight: 500;
  font-size: 18px;
  z-index: 5000;
}

.bounce-loader-wrap .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bounce-loader-wrap .loading .text {
  color: rgb(230, 142, 60);
  display: inline-block;
  margin-left: 5px;
}

.bounce-loader-wrap .loading .bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.bounce-loader-wrap .loading .bounceball:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgb(230, 142, 60);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: loader-bounce 500ms alternate infinite ease;
          animation: loader-bounce 500ms alternate infinite ease;
}

@-webkit-keyframes loader-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 loader-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;
  }
}