/* These are derived from
   http://blog.tkglaser.net/2012/02/waiting-spinner-for-long-running-form.html */

#ps_loading {
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;

    /*background-color: #fff;*/
    /*z-index:1000;*/
}

#ps_loadingcontent
{
    display:table;
    position: fixed;
}

#ps_loadingspinner
{
    display: table-cell;
    vertical-align:middle;
    width: 100%;

    text-align: center;
    font-size:larger;
    padding-top:80px;

}

.ps-async-progress-container {
    display: none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: rgba(255,255,255, 0.7);     /* #e6af6c */

    z-index:1000;
}

.ps-async-progress-ui {
  position: fixed;

  left: calc(50% - 200px);
  top: calc(50% - 180px);
  width: 400px;
  height: 360px;

  /*background-color: darkblue;*/
  background-color: #333;
  color: white;

  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
