@charset "utf-8";

/* screen_loading */
.screen_loading {position:fixed; margin:auto; top:0; left:0; bottom:0; right:0; width:100%; height:100%; overflow:show; z-index:99999;}
.screen_loading:before {content:""; display:block; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(255,255,255,.4);}

.screen_loader_wrap{position:absolute; left:50%; top:50%; width:120px; height:120px; margin-left:-60px; margin-top:-60px; background-size:80px 75px; border-radius:50%}
.screen_loading .loader_circle{border:4px solid #fff; border-top:4px solid #515b75; border-radius:50%; width:100px; height:100px; animation:spin 1s linear infinite; position:absolute; left:50%; top:50%; margin-top:-50px; margin-left:-50px; box-sizing:border-box;}
@keyframes spin{0%{transform: rotate(0deg);} 100%{transform: rotate(360deg);}}