.ipl-progress-indicator-dark {
    background-color: #2a2a2a;    
}

body.busy-cursor {
    cursor: progress;
}
  
.window {
    display: none;      /* Hide the div                                     */
    position: fixed;    /* Set the position relative to the top left corner */
    z-index: 9999;      /* Put the element in the foreground                */
    top: 0;left: 0;     /* Set the position                                 */
    height: 100%;       /* Make the div full screen                         */
    width:100%;         /*                                                  */
    opacity: 0;         /* Make the div transparent                         */
    cursor: wait;       /* Our beloved cursor                               */
}

body.loading .window {  /* If the body tag has the class loading then set   */
                        /* the following properties of the window class.    */
    display: block;     /* Show the div                                     */
    overflow: hidden;   /* Hide any scrollbars for aesthetics               */
}

:root {
    --focus-border: #ff0000;
    --separator-border: #007fd4;
  }
  