.loading-bubbles{display:flex;justify-content:center;margin:10px}.loading-bubbles .bubbles-wrapper{height:100%;position:relative;width:100%}.loading-bubbles .bubbles-wrapper .bubbles-overlay{width:100%;height:100%;display:flex;justify-content:center;align-items:center;position:relative;top:0;left:0;z-index:1}.loading-bubbles .bubbles-wrapper .bubbles-overlay.fade-out{opacity:0;transition:all 1s ease-in-out}.loading-bubbles .bubbles-wrapper .bubbles-overlay.fade-out .bubbles{display:none}.loading-bubbles .bubbles{display:flex;flex-direction:row;flex-wrap:nowrap}.loading-bubbles .bubbles .bubble{background:#ffbc00;width:13px;height:13px;border-radius:100%;overflow:hidden;display:inline-block;margin:5px;-webkit-animation:grow 5s infinite;-webkit-animation-direction:alternate;-webkit-animation-timing-function:ease-in-out;-ms-animation:grow 5s infinite;-ms-animation-direction:alternate;-ms-animation-timing-function:ease-in-out;-moz-animation:grow 5s infinite;-moz-animation-direction:alternate;-moz-animation-timing-function:ease-in-out;-o-animation:grow 5s infinite;-o-animation-direction:alternate;-o-animation-timing-function:ease-in-out}.loading-bubbles .bubbles .bubble:first-child{animation-delay:0ms;animation-duration:.6s}.loading-bubbles .bubbles .bubble:nth-child(2){animation-delay:.2s;animation-duration:.6s}.loading-bubbles .bubbles .bubble:last-of-type{animation-delay:.4s;animation-duration:.6s}@keyframes grow{0%{transform:scale(0)}30%{transform:scale(0)}85%{transform:scale(.95)}to{transform:scale(1)}}