#fsa-overlay {	
    position: fixed; top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
  }
  .fsa-cv-spinner {
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .fsa-spinner {
    width:40px; height:40px;
    border:4px solid #ddd;
    border-top:4px solid #2e93e6;
    border-radius:50%;
    animation:sp-anime .8s infinite linear;
  }
  @keyframes sp-anime {
    100% { transform:rotate(360deg); }
  }