.details >.item {width:50%;}
.center {text-align:center;}

.button.pagado {
    display: none !important;
}
.button.pendiente.anulado1 {
    display: none !important;
}

.ticket-system {
    width:58rem;
    max-width: 390px !important;
    background-color: #f1f1f5;
    padding-left: 5px;
    padding-right: 5px;
    margin:0 auto;
}
.ticket-system .top {
  display: flex;
  align-items: center;
  flex-direction: column;
  
}
    .ticket-system .top .title {
        font-weight: normal;
        font-size: 1.6rem;
        text-align: left;
        margin-left: 2rem;
        margin-bottom: 1rem;
        color: #a91515;
    }
    .ticket-system .top .printer {
        width: 58rem;
        max-width: 360px !important;
        height: 14px;
        border: 5px solid #ccc;
        border-radius: 10px;
        box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2);
    }
.ticket-system .receipts-wrapper {
  overflow: hidden;
  margin-top: -10px;
  padding-bottom: 10px;
}
.ticket-system .receipts {
  width: 97%;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateY(-510px);
  animation-duration: 2.5s;
  animation-delay: 500ms;
  animation-name: print;
  animation-fill-mode: forwards;
  margin:0 auto;
}
.ticket-system .receipts .receipt {
  padding: 15px 30px;
  text-align: left;
  min-height: 200px;
  width: 92%;
  background-color: #fff;
  border-radius: 10px 10px 20px 20px;
  box-shadow: 1px 3px 8px 3px rgba(0, 0, 0, 0.2);
}
.ticket-system .receipts .receipt .airliner-logo {
  max-width: 80px;
}
.ticket-system .receipts .receipt .route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2px 0;
}
.ticket-system .receipts .receipt .route .plane-icon {
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
}
.ticket-system .receipts .receipt .route h2 {
  font-weight: 300;
  font-size: 2.2rem;
  margin: 0;
}
.ticket-system .receipts .receipt .details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ticket-system .receipts .receipt .details .item {
  display: flex;
  flex-direction: column;
  min-width: 70px;
  
}
.ticket-system .receipts .receipt .details .item span {
  font-size: 1.0rem;
  color: rgba(28, 28, 28, 0.7);
  font-weight: 500;
}
    .ticket-system .receipts .receipt .details .item h3 {
        margin-top: 5px;
        margin-bottom: 15px;
        font-weight: 500;
        font-size: 1.2rem;
    }
    .ticket-system .receipts-wrapper h4 {
        margin-top: 5px;
        margin-bottom: 15px;
        font-weight: 400;
        font-size: 1.1rem;
    }
.ticket-system .receipts .receipt.qr-code {
  height: 110px;
  min-height: unset;
  position: relative;
  border-radius: 20px 20px 10px 10px;
  display: flex;
  align-items: center;
}
.ticket-system .receipts .receipt.qr-code::before {
  content: "";
  background: linear-gradient(to right, #fff 50%, #3f32e5 50%);
  background-size: 22px 4px, 100% 4px;
  height: 4px;
  width: 90%;
  display: block;
  left: 0;
  right: 0;
  top: -1px;
  position: absolute;
  margin: auto;
}
.ticket-system .receipts .receipt.qr-code .qr {
  width: 70px;
  height: 70px;
}
.ticket-system .receipts .receipt.qr-code .description {
  margin-left: 10px;
}
.ticket-system .receipts .receipt.qr-code .description h2 {
  margin: 0 0 5px 0;
  font-weight: 500;
}
    .ticket-system .receipts .receipt.qr-code .description p, h5 {
        margin: 0;
        font-weight: 500;
        font-size: 0.9rem;
    }
    .ticket-system .receipts .receipt.qr-code .description  h5 {
        margin: 0;
        font-weight: 400;
        font-size:1.0rem;
    }


@keyframes print {
    0% {
        transform: translateY(-510px);
    }
    /*
    35% {
        transform: translateY(-395px);
    }

    70% {
        transform: translateY(-140px);
    }
    */
    100% {
        transform: translateY(0);
    }
}