.hanse-lade-animation {
  border: 10px solid #dbdbdb; /* Light grey */
  border-top: 10px solid #0092d6; /* Pharma Blau */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
  margin-left: auto;
  margin-right: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

.hanse-lade-text {
	display: none;
	text-align: center;
	font-size: 20px;
	width: 90%;
	margin: auto;
}

.hanse-lade-links {
	display: none;
	font-size: 18px;
	text-align: center;
}