.verification-message {
  text-align: center;
  color: #5eff5e;
  opacity: 0;
  pointer-events: none;
  position: relative;
  top: -8px;
}
.verification-message::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(/application/assets/images/icon-check.svg) no-repeat center;
  -webkit-background-size: 14px;
  position: relative;
  top: -2px;
}
.verification-resend + .verification-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.verification-message.is-error {
  color: #ff7700;
}
.verification-message.is-error::before {
  background-image: url(/application/assets/images/icon-close.svg);
}
.success-screen {
  display: flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050505;
  z-index: 10;
  transition: opacity 0.3s linear;
}
.success-screen p {
  font-size: 50px;
  margin: 5px 0;
  line-height: 1.1;
}
.success-screen p:last-child {
  color: #ff7700;
  font-family: Urbanist;
  font-weight: 525;
  letter-spacing: -1.5px;
  font-size: 52.5px;
  text-shadow: 0 0 30px rgba(255, 117, 0, 0.7);
}
.is-unloading .success-screen p {
  transition: opacity 0.5s linear !important;
}
.is-loading .success-screen {
  opacity: 0;
}
