body {
	 background-color: #FAFAFA;
}
  .loading-container {
          position: fixed;
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 9999;
          background-color: #E6294D;
          left: 0%;
          right: 0;
          top: 0;
          bottom: 0;
      }

 #circle {

	 border-radius: 50%;
	 width: 150px;
	 height: 150px;
	 background-color: E6294D;
	 text-align: center;
	 overflow: hidden;
	 position: relative;
	 border: transparent 1px solid;
	 z-index: 10;
}
 #circle div.pointer {
	 animation: test 2s cubic-bezier(0.62, 0.28, 0.23, 0.89) infinite;
	 content: '';
	 position: absolute;
	 left: 75px;
	 top: 25px;
	 width: 10px;
	 height: 10px;
	 transform-origin: 0 50px;
	 border-radius: 50px;
	 background: white;
}
 #circle div.pointer:nth-child(2) {
	 animation: test 2s cubic-bezier(0.62, 0.28, 0.23, 0.79) infinite;
}
 #circle div.pointer:nth-child(3) {
	 animation: test 2s cubic-bezier(0.62, 0.28, 0.23, 0.69) infinite;
}
 #circle div.pointer:nth-child(4) {
	 animation: test 2s cubic-bezier(0.62, 0.28, 0.23, 0.59) infinite;
}
 #circle div.pointer:nth-child(5) {
	 animation: test 2s cubic-bezier(0.62, 0.28, 0.23, 0.49) infinite;
}
 @keyframes test {
	 0% {
		 transform: rotate(0deg);
	}
	 100% {
		 transform: rotate(360deg);
	}
}