.splash-background {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-10deg, #b1e426, #95c11f);
}

.ie-info-main-container {
  position: absolute;
  visibility: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .splash-background,
  .double-bounce1,
  .double-bounce2 {
    display: none;
  }

  .ie-info-main-container {
    visibility: visible;
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: auto;
  }

  .ie-info-sub-container {
    max-width: 670px;
    margin: auto;
    margin-top: 50px;
  }

  .ie-logo-regaz {
    position: relative;
    height: 80px;
    transform: translateX(-50%);
    left: 50%;
  }

  .ie-info-title {
    position: relative;
    color: black;
    font-size: 18px;
    font-weight: 700;
    margin-top: 40px;
  }

  .ie-info-body {
    position: relative;
    color: #e6007e;
    margin-top: 40px;
  }

  .ie-info-compatibility-list {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
}

.spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
