.loadmask {
    z-index: 1100;
    position: absolute;
    top:0;
    left:0;
    -moz-opacity: 0.5;
    opacity: 0.5;
    filter: alpha(opacity=50);
    /*background-color: #CCC;*/
    /*background:"#2c2e2f"*/
    width: 100%;
    height: 100%;
    zoom: 1;
}
.loadmask-msg {
    z-index: 1100;
    position: absolute;
    top: 0;
    left: 0;
    padding:2px;
}
.loadmask-msg div {
  /*padding: 18px 16px 21px 28px;*/
  /*background: #fbfbfb url('../images/loading.gif') no-repeat 5px 5px;*/
  line-height: 16px;
  color: #222;
  font: normal 11px tahoma, arial, helvetica, sans-serif;
  cursor: wait;
}
.masked {
    overflow: hidden !important;
}
.masked-relative {
    position: relative !important;
}
.masked-hidden {
    visibility: hidden !important;
}

/*Modified css for loading http://codepen.io/andreasstorm/pen/oXdoEa*/ 
.loadr {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
}
.loadr svg {
  position: relative;
  z-index: 10;
  height: 32px;
  animation: bounce 1s cubic-bezier(0.51, 0.23, 0.02, 0.96) infinite;
  fill: #6c6;
}
.loadr:after {
  position: absolute;
  bottom: 1px;
  left: 4px;
  display: block;
  width: 22px;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 100%;
  animation: shadow 1s infinite;
  content: '';
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.85, 1.1) translateY(-15px);
  }
}
@-webkit-keyframes shadow {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.7, 1);
    background: rgba(0,0,0,0.05);
  }
}
.link {
  position: absolute;
  padding: 20px 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #808080;
  transition: all 0.3s ease;
}
.link:hover {
  background: rgba(0,0,0,0.04);
  color: #6c6;
}
.page-loading-overlay{
    -moz-opacity: 0.4;
    opacity: 0.4;
    filter: alpha(opacity=40);
}