.cgg--loader-wrap {
    position: fixed;
    top:0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 200;
    background-color: rgba(0,0,0,0.8);
}
body div.cgg--loader-wrap.hidden {
    display: none!important;
}
@supports(backdrop-filter: blur(0.5rem)) {
	.cgg--loader-wrap {
		backdrop-filter: blur(0.5rem);
	}
}
.cgg--loader {
    margin: 0 auto 10px auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.cgg--loader > div {
    width: 33%;
    height: 33%;
    background-color: var(--color-orange);
    float: left;
    animation: cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.cgg--loader .cube1 {
    animation-delay: 0.2s;
}
.cgg--loader .cube2 {
    animation-delay: 0.3s;
}
.cgg--loader .cube3 {
    animation-delay: 0.4s;
}
.cgg--loader .cube4 {
    animation-delay: 0.1s;
}
.cgg--loader .cube5 {
    animation-delay: 0.2s;
}
.cgg--loader .cube6 {
    animation-delay: 0.3s;
}
.cgg--loader .cube7 {
    animation-delay: 0s;
}
.cgg--loader .cube8 {
    animation-delay: 0.1s;
}
.cgg--loader .cube9 {
    animation-delay: 0.2s;
}
@keyframes cubeGridScaleDelay {
    0%, 70%, 100% {
        transform: scale3D(1, 1, 1);
    }
    35% {
        transform: scale3D(0, 0, 1);
    }
}