.bg {
    background-color: aliceblue;
    width: 100%;
    /* width: 480px; */
    /* overflow: hidden; */
    /* margin: 0 auto; */
    box-sizing: border-box;
    /* padding: 22px; */
    font-family: 'Roboto';
    margin-top: 20px;
}
.card {
  background-color: #e8ffed;
  /*width: 100%;*/
  float: left;
  margin-top: 40px;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 80px 30px 25px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.card__success {
  position: absolute;
  top: -50px;
  left: 40%;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #60c878;
  border: 5px solid #fff;
}
.card__success i {
  color: #fff;
  line-height: 100px;
  font-size: 45px;
}
.card__msg {
  text-transform: uppercase;
  color: green;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.card__submsg {
  color: #00db33;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0px;
}
.card__noticmsg {
  color: #838890;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0px;
}
.card__body {
  background-color: #e8ffed;
  border-radius: 4px;
  width: 100%;
  margin-top: 10px;
  float: left;
  box-sizing: border-box;
  padding: 10px;
}
.card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 7px;
}
.card__recipient-info {
  display: inline-block;
}
.card__recipient {
  color: #232528;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 600;
}
.card__name {
  color: #838890;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 0px;
}
.card__phone {
  color: #838890;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 0px;
}
.card__email {
  color: #838890;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 0px;
}
.card__price {
  color: #232528;
  font-size: 40px;
  margin-top: 25px;
  margin-bottom: 30px;
}
.card__price span {
  font-size: 60%;
}
.card__method {
  color: #d3cece;
  text-transform: uppercase;
  text-align: left;
  font-size: 11px;
  margin-bottom: 5px;
}
.card__payment {
  background-color: #fff;
  border-radius: 4px;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__credit-card {
  width: 50px;
  display: inline-block;
  margin-right: 15px;
}
.card__card-details {
  display: inline-block;
  text-align: left;
}
.card__card-type {
  text-transform: uppercase;
  color: #232528;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 3px;
}
.card__card-number {
  color: #838890;
  font-size: 12px;
  margin-top: 0px;
}
.card__tags {
  clear: both;
  padding-top: 15px;
}
.card__tag {
  text-transform: uppercase;
  background-color: #f8f6f6;
  box-sizing: border-box;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 10px;
  color: #d3cece;
}


.card__failure {
  position: absolute;
  top: -50px;
  left: 40%;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #ff5102;
  border: 5px solid #fff;
}
.card__failure i {
  color: #fff;
  line-height: 100px;
  font-size: 45px;
}
.card__failure__msg {
  text-transform: uppercase;
  color: #ff5102;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.card__failure__submsg {
  color: #ff8148;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0px;
}

.card__pending {
  position: absolute;
  top: -50px;
  left: 40%;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #f7b400;
  border: 5px solid #fff;
}
.card__pending i {
  color: #fff;
  line-height: 100px;
  font-size: 45px;
}
.card__pending__msg {
  text-transform: uppercase;
  color: #ff5102;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.card__pending__submsg {
  color: #ff8148;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0px;
}

