body{
    margin: 0;
    padding: 0;
}
#no-app-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #05435C;
    min-height: 100vh;
    min-width: 100vw;
    height: 100%;
    width: 100%;

}
.no-app-logo {
    position: absolute;
    width: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.no-app-loader {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    /* background: linear-gradient(#F191AB, #539863,#429af2); */
    animation: animate 1s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.no-app-loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#F191AB, #539863, #429af2);
}

.no-app-loader span:nth-child(1) {
    filter: blur(5px);
}

.no-app-loader span:nth-child(2) {
    filter: blur(10px);
}

.no-app-loader span:nth-child(3) {
    filter: blur(25px);
}

.no-app-loader span:nth-child(4) {
    filter: blur(50px);
}

.no-app-loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #05394d;
    border: solid white 10px;
    border-radius: 50%;
}
