.spinner-wrap{ position: fixed; top: 0; left: 0; width: 100%; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: rgba($color: #101010, $alpha: 0.5); z-index: 2000000; } .loader { width: 16px; height: 16px; border-radius: 50%; background-color: #fff; box-shadow: 32px 0 #fff, -32px 0 #fff; position: relative; animation: flash 0.5s ease-out infinite alternate; } @keyframes flash { 0% { background-color: #FFF2; box-shadow: 32px 0 #FFF2, -32px 0 #FFF; } 50% { background-color: #FFF; box-shadow: 32px 0 #FFF2, -32px 0 #FFF2; } 100% { background-color: #FFF2; box-shadow: 32px 0 #FFF, -32px 0 #FFF2; } }