@-webkit-keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(60deg);
	}
  }

  @keyframes loading {
	  0% {
		  transform: rotate(0deg);
	  }
	  100% {
		  transform: rotate(60deg);
	  }
  }

  .loading-in-progress {
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	background-color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
		flex-direction: column;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	overflow: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
  }
  .loading-spinner {
	background-position: center center;
	background-image: url("./sharefilebrand/sf-spinner.svg");
	background-repeat: no-repeat;
	-webkit-animation-name: loading;
	animation-name: loading;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
	-webkit-animation-duration: 1.8s;
	animation-duration: 1.8s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.95, 0, 0.05, 1);
	animation-timing-function: cubic-bezier(0.95, 0, 0.05, 1);
	background-size: 30px;
	height: 30px;
	width: 30px;
  }
