  /* Loader container */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light_gray);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Loader animation */
  .spinner {
    width: 200px;
    height: 200px;
    border: 5px solid var(--gray);
    border-top: 5px solid var(--medium_light_black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  #loader img {
    position: absolute;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }