/* Spinner */
/* ========================= */

/* Container of the spinner element */
.spinner-container {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px; /* Add some spacing between spinner and text */
}

/* Styling for the svg element of the spinner */
.spinner-svg {
    width: 20px; /* You can adjust the size as needed */
    height: 20px;
  }

/* Rotation elements and animation */
.spinner-rotate {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}