.new_loader_status_area, .new_loader_status{transition-duration:0.4s;position:fixed;pointer-events:none;opacity:0;z-index:10000000000;}
.new_loader_status_area{position:fixed;right:0;bottom:0;width:100px;height:100px;}
.new_loader_status{top:calc(50% - 25px);left:calc(50% - 25px);height:50px;width:50px;animation:rotate 3s infinite;}
.new_loader_status:before, .new_loader_status:after{border-radius:50%;content:"";display:block;height:20px;width:20px;}
.new_loader_status:before{animation:new_loader_status_ball1 2s infinite;background-color:#ffdd46;box-shadow:30px 0 0 #ffdd46;margin-bottom:10px;}
.new_loader_status:after{animation:new_loader_status_ball2 2s infinite;background-color:#ffdd46;box-shadow:30px 0 0 #ffdd46;}
@keyframes rotate {
0%{transform:rotate(0deg) scale(0.8)}
50%{transform:rotate(360deg) scale(1.2)}
100%{transform:rotate(720deg) scale(0.8)}
}
@keyframes new_loader_status_ball1 {
0%{box-shadow:30px 0 0 #ffdd46;}
50%{box-shadow:0 0 0 #ffdd46;margin-bottom:0;transform:translate(15px, 15px);}
100%{box-shadow:30px 0 0 #ffdd46;margin-bottom:10px;}
}
@keyframes new_loader_status_ball2 {
0%{box-shadow:30px 0 0 #ffdd46;}
50%{box-shadow:0 0 0 #ffdd46;margin-top:-20px;transform:translate(15px, 15px);}
100%{box-shadow:30px 0 0 #ffdd46;margin-top:0;}
}
html[load_status_show="1"] .new_loader_status_area,
html[load_status_show="2"] .new_loader_status_area,
html[load_status_show="1"] .new_loader_status,
html[load_status_show="2"] .new_loader_status{opacity:1;}
@media(max-width:767px){
.new_loader_status {
top: calc(50% - 25px) !important;
left: calc(50% - 25px) !important;
}
}