


/* wp-content/themes/your-child-theme/style.css */
#trloader {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    top:0;
  }
  
  .spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left: 8px solid var(--minimog-color-button-background) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  