/*******************************************************************************
* Page Load
*******************************************************************************/

.GmWow {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.3);
    z-index: 10000;
    top: 0;
    left: 0;
}
.qALeD {
    width:200px;
    height:60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}
.yXeRi {
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background: var(--d-blue);
    left:15%;
    transform-origin: 50%;
    animation: circle .4s alternate infinite ease;
}

@keyframes circle {
    0% {
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40% {
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top:0%;
    }
}
.yXeRi:nth-child(2) {
    left:45%;
    animation-delay: .2s;
}
.yXeRi:nth-child(3) {
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.UAuKb {
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .4s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }
    40% {
        transform: scaleX(1);
        opacity: .7;
    }
    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}
.UAuKb:nth-child(4) {
    left: 45%;
    animation-delay: .2s;
}
.UAuKb:nth-child(5) {
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.qALeD span {
    position: absolute;
    top:75px;
    font-family: 'Lato';
    font-size: 20px;
    letter-spacing: 12px;
    color: #fff;
    left:15%;
}

/****************************** data loading ******************************/

.aaaaa {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.3);
}
.rDQhW {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    width: 100%;
    gap: 5px;
}
/*  big  */
.hNuwx { 
    display: inline-block;
    width: 5px;
    height: 25px;
    border-radius: 4px;
    animation: loading .8s ease-in-out infinite;
    -webkit-animation: loading .8s ease-in-out infinite;
}
/*  small  */
.Phm0l {
    width: 4px;
    height: 18px;
}
.hNuwx:nth-child(1) {
    background-color: var(--d-blue);
    animation-delay: 0s;
}
.hNuwx:nth-child(2) {
    background-color: var(--d-blue);
    animation-delay: 0.09s;
}
.hNuwx:nth-child(3) {
    background-color: var(--d-blue);
    animation-delay: .18s;
}
.hNuwx:nth-child(4) {
    background-color: var(--d-blue);
    animation-delay: .27s;
}

@keyframes loading {
    0% {
        transform:scale(1);
    }
    20% {
        transform:scale(1,2.2);
    }
    40% {
        transform:scale(1);
    }
}