#loadingDiv { position: fixed; width: 100%; height: 100%; opacity: 50%; z-index: 5000; background: rgba(255, 255, 255, 1); .loader { position: absolute; left: 50%; top: 50%; margin-left: -2em; margin-top: -2em; background: rgba(255, 255, 255, 1); img { width: 8em; height: 8em; animation: beatHeart 0.8s infinite; } } } @keyframes beatHeart { 0% { transform: scale(1); } 25% { transform: scale(1.2); } 40% { transform: scale(1); } 60% { transform: scale(1.3); } 100% { transform: scale(1); } }