File: /home/panomity.de/vr.panomity.com/preloader.css
body.viewport-lg {
position: absolute;
}
#loadinginfo {
position: absolute;
top: 50%;
left: 50%;
width: 30px;
height: 30px;
margin-top: -15px;
margin-left: -15px;
border-radius: 50%;
background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);
animation: animate 0.3s linear infinite;
}
@keyframes animate
{
0%
{
transform: rotate(0deg);
filter: hue-rotate(0deg);
}
100%
{
transform: rotate(360deg);
filter: hue-rotate(360deg);
}
}
#loadinginfo:before {
content: '';
position: absolute;
top: 6px;
left: 6px;
right: 6px;
bottom: 6px;
background: #000;
border-radius: 50%;
z-index: 1000;
}
#loadinginfo:after {
content: '';
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);
background: #000;
border-radius: 50%;
z-index: 1000;
z-index: 1;
filter: blur(30px);
}