/* Loader full-screen container */
#loader {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Centered content */
  .loader-content {
    text-align: center;
  }
  
  /* Cog icon */
  .cog-icon {
    width: 80px;
    height: 80px;
    color: #ec038a; /* SVG colour */
  }
  
  /* Loader text */
  .loader-text {
    margin-top: 25px;
    font-size: 2rem;
    font-weight: 400;
    color: #ec038a;
    font-family: "Apple Chancery", "Brush Script MT", "Lucida Handwriting", cursive;
  }
  
  /* Spin animation */
  .spinning-cog4419 {
    animation: spin 1.3s infinite linear;
    transform-origin: 50% 50%;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  