html,
body {
  margin: 0;
  padding: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00b7ff;
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.report-block {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  place-content: center;
  align-items: center;
}

.report-block .content {
  display: flex;
  flex-direction: column;
  place-content: start;
  align-items: stretch;
  max-width: 500px;
  width: 100%;
}

.report-block .content .emoji {
  display: flex;
  flex-direction: column;
  place-content: start;
  align-items: center;
}
.report-block .content .emoji img {
  width: 100px;
  height: 100px;
}

.report-block .content .content-body {
  display: flex;
  flex-direction: column;
  place-content: start;
  align-items: stretch;
}

.report-block .content .content-body p {
  padding: 40px 0 65px;
  margin: 0;
  text-align: center;
  font-size: 18px;
}

.report-block .content .content-footer {
  display: flex;
  flex-direction: column;
  place-content: start;
  align-items: center;
}

.report-block .content .content-footer img {
  width: 150px;
  margin-bottom: 20px;
}

.report-block .content .content-footer a {
  font-size: 12px;
  margin-bottom: 20px;
  color: #505050;
  text-decoration: none;
}

.report-block .content .content-footer p {
  font-size: 10px;
  margin-bottom: 20px;
}

.receipt-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  place-content: center;
  max-width: 700px;
  margin: 0 auto;
  color: #3e3e3e;
}

.receipt-container .header .logo {
  max-width: 200px;
  width: 100%;
  margin-bottom: 10px;
}

.receipt-container .body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  place-content: center;
  padding: 20px;
}

.receipt-container .body .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
}

.receipt-container .body .content .check,
.receipt-container .body .content .cancel {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1;
}

.receipt-container .body .content .check {
  color: #00b906;
}

.receipt-container .body .content .cancel {
  color: #c54242;
}

.receipt-container .body .content h1 {
  margin-bottom: 10px;
}

.receipt-container .body .content p {
  margin-bottom: 10px;
}

.receipt-container .body .content .receipt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  place-content: center;
  border: 1px solid #7f7f7f;
  border-radius: 10px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  margin-top: 30px;
}

.receipt-container .body .content .receipt .info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  place-content: start;
  font-size: 14px;
}

.receipt-container .body .content .receipt .info:not(:last-child) {
  margin-bottom: 25px;
}

.receipt-container .body .content .receipt .info > lable {
  margin-bottom: 10px;
}

.receipt-container .body .content .receipt .info .rows {
  display: flex;
  flex-direction: row;
  align-items: start;
  place-content: space-between;
}

.receipt-container .body .content .receipt .info .rows:not(:last-child) {
  margin-bottom: 15px;
}

.receipt-container .body .content .receipt .info .rows .column {
  display: flex;
  flex-direction: column;
  align-items: start;
  place-content: start;
}

.receipt-container .body .content .receipt .info .rows .column small {
  margin-top: 5px;
  font-size: 10px;
}

.receipt-container .footer {
  display: flex;
  flex-direction: row;
  align-items: start;
  place-content: center;
  padding: 20px;
}

.receipt-container .footer button {
  padding: 5px 30px;
  background: #7f0795;
  outline: none;
  color: #fff;
  border: none;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
}

.payment-receipt {
  padding: 0;
  border: 1px solid #eee;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  word-break: break-all;
}

.payment-receipt li {
  list-style: none;
  padding: 10px;
  border: 1px solid #646464;
  margin: 1px;
}

.payment-receipt li:not(:last-child) {
  /* border-bottom: 1px solid #eee; */
}

.payment-receipt li p {
  margin: 0;
}

@media print {
  .disable-print {
    display: none !important;
    visibility: hidden !important;
  }
}
