.success-page,
.failed-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  background: #f2f2f2;
}

.success-page .styled-table td,
.failed-page .styled-table td {
  text-align: left;
}

.styled-table tr:nth-child(odd) td,
.styled-table tr:not(:nth-child(odd)):hover td {
  background: transparent !important;
}

.styled-table a {
  color: #007c91;
  transition: color .3s ease-in-out;
}
.styled-table a:hover {
  color: #F37021;
}

.notification-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 500px;
  padding: 40px;
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.notification-inner {
  position: relative;
}

.notification-inner span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
}

.pulse,
.pulse:after {
  display: inline-block;
  padding: .5rem;
  border-radius: 50%;
  animation: pulse 1.5s .85s infinite ease-out;
  transform: scale3d(.7, .7, 0);
  transition: opacity .75s;
}

.success-page .pulse,
.success-page .pulse:after {
  border: thick solid #4BB543;
}

.failed-page .pulse,
.failed-page .pulse:after {
  border: thick solid #FC100D;
}

.pulse:after {
  display: block;
  content: "";
  padding: 10rem;
}

@keyframes pulse {
  50% {
    border-color: rgba(230, 230, 230, .3);
    background: transparent;
  }

  to {
    border-color: transparent;
    transform: none;
  }
}