body {
  margin: 0;
}

.ie-alert-title {
  font-family: "Montserrat", Helvetica, Arial, serif;
  color: #034077;
  font-weight: 600;
  font-size: 1.714rem;
  text-align: center;
}

.ie-alert-body {
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.ie-alert-table-container {
  font-family: "Montserrat", Helvetica, Arial, serif;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.75rem;
}

.ie-alert-table-container table {
  margin: 0 auto
}

.ie-alert-table-container table tr {
  line-height: 1rem
}

#loading-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
}
.loading-logo {
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% + 7px);
}
.loading-logo img {
  width:100px;
}
.loading {
  position: absolute;
  left: calc(50% - 80px);
  top: calc(50% - 126px);
  width: 145px;
  height: 145px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.loading .effect-1,
.loading .effect-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 3px solid rgb(60, 159, 135);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}
.loading .effect-2 {
  animation: rotateOpacity 1s ease infinite 0.1s;
}
.loading .effect-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 3px solid rgb(60, 159, 135);
  -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
  animation: rotateOpacity 1s ease infinite 0.2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotateOpacity {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}
