@keyframes spinner-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#loading-map, #loading {
  height: 50px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 50% !important;
  transform: translateY(-50%);
  width: 50px;
}

#loading-results {
  height: 50px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 250px;
  width: 50px;
}

@media (max-width:767px) {
  @media (min-height:700px) {
    #loading-results {
      top: 200px;
    }
  }

  @media (max-height:700px) {
    #loading-results {
      top: 150px;
    }
  }

  @media (max-height:600px) {
    #loading-results {
      top: 100px;
    }
  }
}

.spinner, .spinner-active {
  animation: 2s spinner-rotate linear infinite;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid transparent;
  height: 50px;
  position: absolute;
  width: 50px;
}

.spinner {
  border-bottom: 0;
  border-left: 1px solid;
  border-right: 0;
  border-top: 1px solid;
  opacity: 0.5;
}

.spinner-active {
  animation: 1s spinner-rotate linear infinite;
  border-bottom: 1px solid;
  border-left: 0;
  border-right: 1px solid;
  border-top: 0;
}