@keyframes loading{
0%{
top:120px;
left:120px;
width:0;
height:0;
opacity:1;
}
100%{
top:-5px;
left:-5px;
width:250px;
height:250px;
opacity:0;
}
}
@-webkit-keyframes loading{
0%{
top:90px;
left:90px;
width:0;
height:0;
opacity:1;
}
100%{
top:-5px;
left:-5px;
width:250px;
height:250px;
opacity:0;
}
}
#loading{
	position:relative;
	bottom:-10px;
	right:10px;
    z-index:99;
}
#loading div{
box-sizing:content-box;
position:absolute;
border-width:12px;
border-style:solid;
opacity:1;
border-radius:20%;
-webkit-animation:loading 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
animation:loading 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#loading div:nth-child(1){
border-color:#ea572d;
}
#loading div:nth-child(2){
border-color:#f2d90d;
-webkit-animation-delay:-0.75s;
animation-delay:-0.75s;
}
#loading{
width:50px !important;
height:50px !important;
-webkit-transform:translate(-25px, -25px) scale(0.25) translate(25px, 25px);
transform:translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}