.loader-body {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: visible;
    top: 0;
    left: 0;
    text-align: center;
    justify-content: center;
    align-content: center;
    transition: .5s all;
    z-index: 100000000;
}

.loader {
    width: 100px;
    height: 100px;
    border: 6px solid #ff1949;
    border-radius: 50%;
    position: absolute;
    z-index: 115000;
    /*change color of border*/
    border-top-color: white;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-animation: 1s spin infinite linear;
    -o-animation: 1s spin infinite linear;
    animation: 1s spin infinite linear;
}

.loaderGreen {
    width: 100px;
    height: 100px;
    border: 6px solid #60DBC9;
    border-radius: 50%;
    position: absolute;
    z-index: 115000;
    /*change color of border*/
    border-top-color: white;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-animation: 1s spin infinite linear;
    -o-animation: 1s spin infinite linear;
    animation: 1s spin infinite linear;
}

.loader-body.done {
    visibility: hidden;
    opacity: 0;
}

.loaderImage {
    width: 90px;
    height: 90px;
    position: absolute;
    /* 	background:url(images/logoNewMono.svg) center center no-repeat; */
    z-index: 115000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #646aef!important;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}