#loadingVail {
    -webkit-transform: translateZ(0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 100% #000;
    z-index: 1002;
    background: #000;
    
}
#loadingVail .amount {
    font-size: 24px;
    height: 30px;
    min-width: 2px;
    display: block;
}

#loadingVail .message{
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    color: #666;
    font-size: 20px;
    font-weight: bold;
    max-height: 600px;
    
}
#loadingVail.hidden {
    opacity: 0;
    z-index: -1;
}
#loadingVail.hidden.active {
    opacity: 1;
    z-index: 10000;
}
#loadingVail .hourglass {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -260px 0 0 -220px;
    border: dotted 14px #111;
    padding: 180px;
    border-radius: 100%;
    -webkit-animation: rotate 8s linear infinite;
    animation: rotate 8s linear infinite;
}

#loadingVail .hourglass img {
    border: dotted 2px #222;
    border-radius: 100%;
    zoom: 3;
    -webkit-animation: rotate 8s linear infinite;
    animation: rotate 8s linear infinite;
}

@-webkit-keyframes rotate {
  0% { 
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% { 
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% { 
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
keyframes rotate {
  0% { 
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% { 
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% { 
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}