@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:0;
	right:10px;
}
#loading div{
box-sizing: content-box;
position: absolute;
border-width: 12px;
border-style: solid;
opacity: 1;
border-radius:15%;
animation: loading 1.25s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#loading div:nth-child(1){
border-color: #098740;
}
#loading div:nth-child(2){
border-color: #b8cb31;
animation-delay: -0.75s;
}
#loading{
width: 50px !important;
height: 50px !important;
transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}