
#calendar-spinloader {
  margin-top: 2.5em;
}

#camp-spinloader {
  width: calc(100% - 2em);
}



#checkout-spinner {
  width: calc(100% - 3.5em);
  height: calc(100% - 4em);
  position: absolute;
  z-index: 9999;
  background-color: white;
  display: none;
}

#reservation-spinner {
  width: 100%;
  height: calc(100% - 4em);
  position: absolute;
  left: -1px;
  z-index: 9999;
  background-color: white;
  display: none;
}

#loader {
	position: absolute;
  top: 0;
	width: 100%;
	height: 100%;
  z-index: 9999;
	background-color: white;
  opacity: 0;
  display: none;
}


.spinloader {
  position: absolute;
  width: 100%;
  height: 100%;
}

.spin {
  width: 5em;
  height: 5em;
  position: absolute;
  left: calc(50% - 2.5em);
  top: calc(50% - 2.5em);
}


.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce1 {
    opacity: .8;
  background-color: #2E3192;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
  background-color: #8DC63F;
}

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

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