.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #b9a6e0;
  /* Dark Green */
  border-radius: 50%;
  width: 200px !important;
  height: 200px !important;
  animation: spinloader 2s linear infinite;
  margin-left: 600px;
  margin-top: 250px;
  background: #000000;
}

.loader img {
  border-radius: 50%;
  height: 200px;
  width: 200px;
  animation: spinlogo 2s linear infinite;
  background: #000000;
}

@keyframes spinloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinlogo {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
  margin: auto;
  background: #343a40;
}
