/*===============================================
* AsiX - Cover Modal.
================================================*/
.coverModal{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background:#000000;
  z-index: 2;
  transition: width 0.2s ease-in-out;
  display: none;
}

.coverModal>.animModalLoader{
  position: absolute;
  width: 150px;
  height: 150px;
  top: calc(50% - 140px);
  left: calc(50% - 120px);
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 50px 50px;
  animation: loading 2s linear infinite;
}

.coverModal>.animModalLoader:after{
  content: "";
  left: 65px;
  top: -10px; 
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

@keyframes loading{
  50%{opacity:0.5;}
  100%{transform: rotate(360deg);}
}

.infoAlert{
  position: absolute;
  top: calc(50% - 100px);
  padding: 10px 0;
  width: 100%;
  height: 100px;
  text-align: center;
  display: none;
  z-index: 1000;
}

.asx-incl-left{
  transform: rotate(-5deg);
}