.spinner {
  width: 3em;
  height: 3em;
  cursor: not-allowed;
  border-radius: 50%;
  /* border: 2px solid #444; */
  border: none;
  background: none;
  box-shadow:
    10px -10px 10px #145e9a,
    -10px -10px 10px #dc0419,
    10px 10px 10px #089341,
    -10px 10px 10px #dfac00;
  animation: rot55 0.7s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinnerin {
  border: 2px solid #444;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rot55 {
  to {
    transform: rotate(360deg);
  }
}
