.loadmask {
  z-index: 100;
  position: absolute;
  top:0;
  left:0;
  -moz-opacity: 0.7;
  opacity: .70;
  background-color: var(--crowdin-level-1-bg);
  width: 100%;
  height: 100%;
  zoom: 1;
}

.loadmask-msg {
  z-index: 20001;
  position: absolute;
  top: 0;
  left: 0;
  border:none;
  background: transparent;
  padding: 2px;
  border-radius: 18px;
  min-height: 30px;
  min-width: 30px;
  box-shadow: 0 0 15px 2px rgba(255,255,255,.3);
  -moz-box-shadow: 0 0 15px 2px rgba(255,255,255,.3);
  -webkit-box-shadow: 0 0 15px 2px rgba(255,255,255,.3);
  color: #222;
  font: normal 14px 'Roboto',tahoma, arial, helvetica, sans-serif;
  line-height: 22px;
  cursor: wait;
}

.loadmask-msg:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  border-top: 4px solid #f5f5f5;
  border-right: 4px solid #f5f5f5;
  border-bottom: 4px solid #f5f5f5;
  border-left: 4px solid #85ae52;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
-webkit-animation-name: load8;  animation-name: load8;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: initial;
          animation-delay: initial;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: initial;
          animation-direction: initial;
  -webkit-animation-fill-mode: initial;
          animation-fill-mode: initial;
  -webkit-animation-play-state: initial;
          animation-play-state: initial;
          background:none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: 50%;
  margin-top: -17px;
}



animatio {  animation-name: load8;
  animation-duration: 1.1s;
  animation-timing-function: linear;
  animation-delay: initial;
  animation-iteration-count: infinite;
  animation-direction: initial;
  animation-fill-mode: initial;
  animation-play-state: initial;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loadmask-msg > div {
  padding: 10px 10px 10px 40px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.62);
  border-radius: 10px;
}

.masked {
  overflow: hidden !important;
}

.masked-relative {
  position: relative !important;
}

.masked-hidden {
  visibility: hidden !important;
}
