@charset "utf-8";
#PageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    z-index: 99999;
}
#PageLoader.fade-out {
    opacity: 0;
}
#PageLoader svg circle {
    transform-origin: center;
    animation: blink 1s linear infinite;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.1;
    }
}
#PageLoader svg circle:nth-child(1) {
    animation-delay: 0s;
}
#PageLoader svg circle:nth-child(2) {
    transform: rotate(45deg);
    animation-delay: -0.875s;
}
#PageLoader svg circle:nth-child(3) {
    transform: rotate(90deg);
    animation-delay: -0.75s;
}
#PageLoader svg circle:nth-child(4) {
    transform: rotate(135deg);
    animation-delay: -0.625s;
}
#PageLoader svg circle:nth-child(5) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
#PageLoader svg circle:nth-child(6) {
    transform: rotate(225deg);
    animation-delay: -0.375s;
}
#PageLoader svg circle:nth-child(7) {
    transform: rotate(270deg);
    animation-delay: -0.25s;
}
#PageLoader svg circle:nth-child(8) {
    transform: rotate(315deg);
    animation-delay: -0.125s;
}