div.myLoad.search {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background: rgba(255,255,255,0.5);
  z-index: 999;
}
div.myLoad.search .wrapper {
  width: 100%;
  display: block;
}
div.myLoad.search .wrapper .loader {
  width: 80px;
  height: 80px;
  background-size: 80px 80px;
  margin: auto;
}
div.myLoad.global {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: table;
  background: rgba(255,255,255,0.5);
  z-index: 999;
}
div.myLoad.dash,
div.myLoad.dashempty {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: table !important;
  background: rgba(255,255,255,0.5);
  z-index: 999;
  height: 500px;
}
div.myLoad.global .wrapper .loader,
div.myLoad.dash .wrapper .loader {
  width: 80px;
  height: 80px;
  background-size: 80px 80px;
  margin: auto;
}
div.myLoad .wrapper {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
div.myLoad .wrapper .message {
  width: 380px;
  margin: auto;
  background: #1081c5;
  color: #ffffff;
  font-size: 16px;
}
div.myLoad.dashempty .wrapper .message {
  background: #ffc107;
}
div.myLoad .wrapper .loader {
  -webkit-animation: load-spin 2s infinite linear;
  animation: load-spin 2s infinite linear;
  background: url(../images/load.png) no-repeat 0 0 transparent;
  opacity: 0.5;
  display: block;
}
@-webkit-keyframes load-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
