/* https://codepen.io/mandelid/pen/kNBYLJ */ #loading-spinner { position: absolute; top: 35%; left: 40%; z-index: 10; display: inline-block; width: 300px; height: 300px; border: 16px solid rgba(255, 255, 255, .3); border-radius: 50%; border-top-color: #5f6ce9; animation: spin 1s linear infinite; -webkit-animation: spin 1s linear infinite; } @keyframes spin { to { -webkit-transform: rotate(360deg); } } @-webkit-keyframes spin { to { -webkit-transform: rotate(360deg); } }