/* settings for spinner */
#spinner {
    display: block;
    border: none;
    position: absolute;
    z-index: 1001;
    margin: auto auto;
    margin: auto;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    /*right: 18px;*/
    /*margin: 0px;*/
    /*background-color: rgba(0, 0, 0, 0.9) !important;*/
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.sk-cube-grid {
    width: 15vw;
    height: 15vw;
    /*opacity: 0.5;*/    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .sk-cube-grid .sk-cube {
        width: 100%;
        height: 100%;
        background-size: 100%;    
    }

#preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: url(../img/safemoney-background.svg);
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 1);
    z-index: 990;
    will-change: opacity;
}

    #preloader-overlay.half-opacity {
        background-color: rgba(0, 0, 0, 0.5) !important;
    }

#spinner[class=disabled] .white-square {
    border-color: black;
}

#spinner {
    width: 300px;
    height: 200px;
  }
  
  .sk-cube-grid {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    margin:90px auto;
    position: relative;
    background:rgba(0, 0, 0, .3);
    box-shadow: -48px 0 rgba(0, 0, 0, .3), 48px 0 rgba(0, 0, 0, .3);
    box-sizing: border-box;
    animation: shadowPulse 0.7s ease-in-out both infinite
  }
  
  @keyframes shadowPulse {
    33% {
      background: rgba(0, 0, 0, .3);
      box-shadow: -48px 0 #FF3D00, 48px 0 rgba(0, 0, 0, .3);
    }
    66% {
      background: #FF3D00;
      box-shadow: -48px 0 rgba(0, 0, 0, .3), 48px 0 rgba(0, 0, 0, .3);
    }
    100% {
      background: rgba(0, 0, 0, .3);
      box-shadow: -48px 0 rgba(0, 0, 0, .3), 48px 0 #FF3D00;
    }
  }