#app {
	margin-top:40px;
	margin-left:220px;
}

.app-inner {
	position:relative;
}

span.error {
  color: red;
}

// Loading overlay styling
// =======================

.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  text-align: center;
  opacity:1;
  transition: opacity 0.3s;
  .loading-inner {
    position:relative;
    margin-left:220px;
    height:100%;
    background-color: #e9f0fa;
  }
  &.fade-out {
    opacity: 0;
  }
  &.cover-top-bar {
    position:fixed;
    z-index:50000;
    .loading-inner {
      margin-top:41px;
    }
  }
  .loading-image {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    background-image: url(assets/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
  }
}
