div#loader-Screen {
    background-color: #fff;
    opacity         : 1;
    position        : fixed;
    z-index         : 999999;
    top             : 0px;
    bottom          : 0;
    left            : 0;
    right           : 0;
    display         : flex;
    align-items     : center;
    justify-content : center;
}

.loader-image {
    width            : 20%;
    -webkit-animation: rotateY 5s infinite linear;
    animation        : rotateY 5s infinite linear;
}

@-webkit-keyframes rotateY {
    to {
        -webkit-transform: rotateY(360deg);
    }
}

@keyframes rotateY {
    to {
        transform: rotateY(360deg);
    }
}
