#card-button{
    padding-top:10px;
    padding-bottom:10px;
    background-color: #A90000;
    color: #fff;
    font-weight: 500;
    font-size: 1.0rem;
}


.success-card {
  padding: 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  box-shadow: 0 0 5px #ccc;
  background-color: #fff;
  transition: all ease-in-out 300ms;
  animation: popUp ease-in-out 500ms;
}
.success-card .card-icon {
  min-width: 50px;
  min-height: 50px;
  background-color: var(--green);
  text-align: center;
  color: #fff;
  border-radius: 50%;
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  margin-bottom: 30px;
  align-items: center;
}
.success-card .card-text {}


@keyframes popUp {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}


/* -----------------------------
  Layout
----------------------------- */
