
/* Spinner 2 */

.line-spinner2 {
    display: inline-block;
    position: relative;
    width: 14px; /* Default width */
    height: 14px; /* Default height */
  }

  .line-spinner2 div {
    position: absolute;
    width: 2px; /* Default width */
    height: 10px; /* Default height */
    background: #ffcc00; /* Default color */
    top: 0%;
    left: 0%;
    transform-origin: bottom center;
    border-radius: 1px; /* Default border-radius */
    animation: spin 1.2s linear infinite;
  }

  .line-spinner2 div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: 0s;
  }
  .line-spinner2 div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -0.1s;
  }
  .line-spinner2 div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.2s;
  }
  .line-spinner2 div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.3s;
  }
  .line-spinner2 div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.4s;
  }
  .line-spinner2 div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.5s;
  }
  .line-spinner2 div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.6s;
  }
  .line-spinner2 div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.7s;
  }
  .line-spinner2 div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.8s;
  }
  .line-spinner2 div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.9s;
  }
  .line-spinner2 div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -1.0s;
  }
  .line-spinner2 div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: -1.1s;
  }


  .spinner-container {
    display: flex;
    justify-content: center; /* Default center position */
    align-items: center;
    width: 100%;
    height: 100vh; /* Full viewport height */
  }

  .line-spinner2 {
    display: inline-block;
    position: relative;
  }

  .line-spinner2 div {
    position: absolute;
    transform-origin: bottom center;
    animation: spin 1.2s linear infinite;
  }

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

  /* Spinner2 Emds */

/* Spinner 1 */

.spinner-container {
    display: flex;
    justify-content: center; /* Default center position */
    align-items: center;
    width: 100%;
    height: 100vh; /* Full viewport height */
  }

  .star-spinner {
    display: inline-block;
    position: relative;
  }

  .star-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    border-radius: 50%;
    animation: star-spinner 1.2s linear infinite;
    border-color: #ffcc00 transparent transparent transparent; /* Default color */
  }

  @keyframes star-spinner {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* Spinner 1 ends*/