body {
  margin: 0;
  padding: 0;
}

.splash-content-master {
  position: relative;
  /* background-image: -webkit-linear-gradient(135deg, rgba(73, 227, 206, 0.9) 0%, rgba(153, 32, 237, 0.9) 100%); */
  background: #e4e4e4;
  width: 100%;
  height: 100%;
}

.splash-content,
.splash-content-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.splash-content {
  display: -webkit-box;
  display: -ms-flexbox;
  position: relative;
  display: flex;
  min-height: 100vh;
  transition: box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1), transform 0.2s cubic-bezier(0.35, 0, 0.25, 1), background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1), -webkit-transform 0.2s cubic-bezier(0.35, 0, 0.25, 1);
}

.splash-content-top {
  margin-top: -5%;
  position: absolute;
  display: flex;
  width: 90%;
  height: 90%;
}

.splash-logo {
  margin-top: -10%;
  width: 293px;
  animation: move 1.5s infinite ease-in-out;
}

@keyframes move {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lds-dual-ring {
  position: relative;
}

.lds-dual-ring div {
  margin-top: 15px;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #000;
  border-color: #e14f00 transparent #e14f00 transparent;
  -webkit-animation: lds-dual-ring 1.5s linear infinite;
  animation: lds-dual-ring 1.5s linear infinite;
}