body {
  margin: 0;
  padding: 0;
}
.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
  font-family: Poppins, Helvetica, 'sans-serif';
}

.splash-screen img {
  /* margin-left: calc(100vw - 100%); */
  margin-left: calc(0vw - 0%) !important;
  margin-bottom: 0px;
  width: 40px;
  height: 40px;
}




.splash-screen .loadingIcon {
    margin-bottom: 10px;
    margin-left: 0;
}

@-webkit-keyframes rotating {
    from {
        -webkit-animation: rotateY(0deg);
        -moz-animation: rotateY(0deg);
        -ms-animation: rotateY(0deg);
        -o-animation: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -webkit-animation: rotateY(360deg);
        -moz-animation: rotateY(360deg);
        -ms-animation: rotateY(360deg);
        -o-animation: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-animation: rotateY(0deg);
        -moz-animation: rotateY(0deg);
        -ms-animation: rotateY(0deg);
        -o-animation: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -webkit-animation: rotateY(360deg);
        -moz-animation: rotateY(360deg);
        -ms-animation: rotateY(360deg);
        -o-animation: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 2.5s linear infinite;
    -moz-animation: rotating 2.5s linear infinite;
    -ms-animation: rotating 2.5s linear infinite;
    -o-animation: rotating 2.5s linear infinite;
    animation: rotating 2.5s linear infinite;
    position: relative;
    width: 32px !important;
    height: 32px !important;
    transform-style: preserve-3d;
}

.front {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 32px !important;
    height: 32px !important;
    margin-left: calc(0vw - 0%) !important;
}

.back {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 32px !important;
    height: 32px !important;
    margin-left: calc(0vw - 0%) !important;
    backface-visibility: hidden;
}