#loading-screen{position:fixed;width:100vw;height:100vh;z-index:999999999;display:flex;align-items:center;justify-content:center}.loading-screen__background{position:absolute;top:0;left:0;width:100%;height:100%;background:#394529;opacity:.9}.loading__wrapper{display:flex;align-items:center;justify-content:center;position:relative;height:200px;width:200px}.loading__block{height:200px;width:200px;transform:rotate(135deg);background-color:#fff;animation:rotate 1s ease-in-out infinite;z-index:9}.loading__text{position:absolute;top:50%;bottom:0;left:10%;right:10%;max-width:100%;transform:translateY(-50%);text-align:center;font-size:32px;line-height:32px;display:flex;justify-content:center;align-items:center;font-family:"proxima-nova-condensed",sans-serif;font-weight:900;z-index:999}.loading__shadow{height:200px;width:200px;position:absolute;border-radius:50%;z-index:1;-webkit-box-shadow:0px 0px 50px 50px rgba(0,0,0,0.6);box-shadow:0px 0px 50px 50px rgba(0,0,0,0.6)}@keyframes rotate{0{transform:rotate(135deg)}100%{transform:rotate(225deg)}}