.splash-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #1dc693; /* Dark Green */
  border-radius: 50%;
  width: 126px;
  height: 126px;
  animation: spinloader 2s linear infinite;
}
.splash img {
  height: 70px;
  width: 70px;
  animation: spinlogo 2s linear infinite;
  position: absolute;
  top: 20px;
  right: 20px;
}
@keyframes spinloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinlogo {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
