.loaderContainer {
  position: fixed!important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loaderBlock {
	/* position: relative;
	top: 40vh;
	left: calc(50vw - 50px); */
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 100px;
  border: 1px solid #FFE565;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 300ms;
  box-shadow: 0 0 10px #FFE565;
}
.loader {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50px;
  border: 2px solid #FFE565;
  border-bottom: 0px;
  transition-duration: 300ms;
  animation: loader 1s infinite;
}
@keyframes loader {
  50% {
    transform: rotate(360deg);
  }
}