html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::before {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.auth-card .image-side {
  padding: 30px 30px !important;
}

.auth-card .image-side .h3 {
  line-height: 1.7rem !important;
}

.ert-primary {
  background-color: #d51419 !important;
  border-color: #d51419 !important;
  color: #fff !important;
}

.logo-single {
  margin-bottom: 40px !important;
}

.hide-pc {
  display: none;
}

.ert-version {
  font-size: 10px;
  margin-top: -10px;
}

.ert-logo {
  padding: 50px 30px 7px 30px;
  margin: auto;


}

.ert-logo img {
  object-fit: contain;
  width: 150px;
}

@media only screen and (max-width:992px) {
  .hide-mobile {
    display: none;
  }

  .hide-pc {
    display: flex;
  }

  .auth-card .form-side,
  .auth-card .image-side {
    padding-top: 5px !important;
  }

  .fixed-background {
    background: url("") no-repeat 50% fixed !important;
  }

  /* .auth-card .image-side {
    background: url("") no-repeat top !important;
    padding-bottom: 0px !important;
    margin-bottom: -14px !important;
    text-align: center;
  }

  .auth-card .image-side .white,
  .auth-card .image-side .text-white {
    color: #000 !important;
  } */
}


.east-fixed-alert {
  z-index: 2070;
  position: fixed;
  width: 100%;
  bottom: 10px;
  left: 0;
}

.east-fixed-alert .ertalert {
  width: 100%;
  bottom: 10px;
}