@borderColor: #ee210f; .loader { border-top: 2px solid @borderColor; border-radius: 50%; width: 60px; height: 60px; animation: spin 2s linear infinite; margin: 0 auto; } #deemPage { display: none; position: fixed; z-index: 3000 !important; top: 0; .background { display: flex; position: fixed; width: 100%; height: 100%; z-index: 200; opacity: 0.5; background: #454545; } } #progress { display: none; position: fixed; z-index: 5000; top: 0; .loader { vertical-align: middle; } .background { display: flex; position: fixed; width: 100%; height: 100%; z-index: 200; opacity: 0.6; background: #242424; } #bar { display: flex; position: fixed; vertical-align: middle; align-content: center; align-items: center; height: 100%; width: 100%; z-index: 200; color: white !important; } } @keyframes spin { 25% { transform: rotate(80deg); } 100% { transform: rotate(360deg); } } #snackbar { min-width: 250px; margin-left: -125px; background-color: #333; color: #fff; text-align: center; border-radius: 2px; padding: 16px; position: fixed; z-index: 1; left: 50%; bottom: 30px; font-size: 17px; visibility: hidden; opacity: 0; transition: visibility 0s, opacity 0.5s linear; } .snackbarShow { visibility: visible !important; opacity: 1 !important; }