.preload {
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color: rgba(255,255,255,0.4);
}

/*.preload__loader {
  position: absolute;
  top:50%;
  left:50%;
  margin: -16px 0 0 -16px;
  width: 40px;  
  background-color: #6F3F74;
}*/



.spinner {
  width: 72px;
  height: 72px;

  position: relative;
  margin: 130px auto;
}
.globe-spinner {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 150px auto;
}
.globe-spinner__img {
  /*opacity: 0;
  transition: 0.35s opacity ease 0.5s;
  margin: 15px;*/
  /*width: 70px;*/
  background-image: url(images/globe-loader.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255,255,255,0.55);
  border-radius: 50%;
  position: absolute;
  top:11px;
  left:11px;
  
  width: 50px;
  height:50px;

}
.globe-spinner__img--loaded {
  opacity: 1;
}
.double-bounce1, 
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.double-bounce1 {
  /*background-image: url(images/globe-spin.gif);*/
  
  opacity: 0.9;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
  background-color: #6F3F74;
  opacity: 0.3;
}
.double-bounce2 {
 
  background-color: #6F3F74;
  opacity: 0.1;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.6) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}