.preloader { position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 999; background-color: #040524; .themeholy-btn { padding: 15px 20px; border-radius: 0; font-size: 14px; } } .preloader-inner { text-align: center; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; line-height: 1; img { display: block; margin: 0 auto 0 auto; } } .loader { display: inline-block; position: relative; width: 100px; height: 100px; } .loader:before, .loader:after { content: ""; border-radius: 50%; position: absolute; inset: 0; box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset; } .loader:after { box-shadow: 0 2px 0 $theme-color inset; animation: rotate 1.5s linear infinite; } @keyframes rotate { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }