.this {
  .outer{
    top: 50%;
    position: fixed;
    width: 100%;
    text-align: center;
    margin-top: -22.5px;
  }

  .mintIndicatorWrapper {
    border-radius: 5px;
    color: #ff6100;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    display: inline-block;
  }
  .mintIndicatorText {
    display: block;
    color: #ff6100;
    text-align: center;
    margin-top: 5px;
    font-size: 13px;
  }
  .shade {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
  }
  img.loading{
    width: 26px;
    height: 26px;
    -webkit-animation: myRotate 0.8s linear infinite;
    animation: myRotate 0.8s linear infinite;
  }

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

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