
.loaderSplit {
    position:fixed;
    height:50%;
    width:100%;
    left:0;
    background:white;
    transition: 1s transform;
    z-index:199;
    background: radial-gradient(circle, #2196F3 -100%, rgb(255 255 255) 20%);
}

#loaderMessageContainer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index:200;
    opacity:1;
    transition: 1s opacity;
    gap:10px;
}

/* CUSTOM LOADER [START] */
.mainLoader {
    width: 64px;
    height: 64px;
    position: relative;
    background: #FFF;
    border-radius: 4px;
    overflow: hidden;
}

.mainLoader:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    transform: rotate(45deg) translate(30%, 40%);
    background: #2054bd;
    box-shadow: 32px -34px 0 5px #3a58ff;
    animation: slideA 2s infinite ease-in-out alternate;
}

.mainLoader:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #5377f3;
    transform: rotate(0deg);
    transform-origin: 35px 145px;
    animation: rotateA 2s infinite ease-in-out;
}

@keyframes slideA {
    0% , 100% {
        bottom: -35px
    }
    25% , 75% {
        bottom: -2px
    }
    20% , 80% {
        bottom: 2px
    }
}

@keyframes rotateA {
    0% {
        transform: rotate(-15deg)
    }
    25% , 75% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(25deg)
    }
}
/* CUSTOM LOADER [END] */