.loading-state {
 width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 5px solid white;
  border-top-color: black;
  animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
