/*EN: Loading symbol - position and background color*/
/*DE: Ladesymbol - Position und Hintergrundfarbe*/
.loading {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgb(255, 255, 255);
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

/*EN: Contents of the symbol - cut off, no scroll bar*/
/*DE: Inhalt des Symbols - abgeschnitten, kein Scrollbalken*/
form.xm-loading {
	overflow: hidden;
}


form.xm-loading .loading {
	display: block;
}

/*EN: Integration of the individual charging symbol*/
/*DE: Einbindung des individuellen Ladesymbols*/
.loading .animation{
	background-image:   url('https://forms.landkreis-cham.de/formcycle/form/includes/ressource?mid=1&name=Logo_Landkreis+Cham_loading.png');
	height: 100%
	background-repeat: no-repeat;
	background-position: center;
	-webkit-animation: scale-up-center 1000ms infinite alternate-reverse both;
	        animation: scale-up-center 1000ms infinite alternate-reverse both;
}

/*EN: Scaling while loading*/
/*DE: Skalierung beim Laden*/
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}