// $color1: #2a477a; $color1: #dddddd; $size: 40px; .loading { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; } .pulse { width: $size; height: $size; margin: 10px; background-color: $color1; border-radius: 100%; animation: pulseScaleOut 1s infinite ease-in-out; } @keyframes pulseScaleOut { 0% { transform: scale(0); } 100% { transform: scale(1); opacity: 0; } }