.loading-svg {
  display: flex;
  text-align: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 40vh;
  animation: grow 1100ms ease-in-out infinite;
  -webkit-animation: grow 1100ms ease-in-out infinite;
}

.loading-svg img {
  width: 40px;
  height: auto;
  border: none;
  border-radius:50%;
  animation: spin 1100ms ease-in-out infinite;
  -webkit-animation: spin 1100ms ease-in-out infinite;
}

@media (min-width: 992px) {
  .loading-svg img {
    width: 60px;
  }
}

@keyframes spin {
  to {
    -webkit-transform: scale(2) rotate(180deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: scale(2) rotate(180deg);
  }
}

@keyframes grow {
  to {
    -webkit-transform: scale(2);
  }
}

@-webkit-keyframes grow {
  to {
    -webkit-transform: scale(2);
  }
}