@font-face {
  font-family: Montserrat-Regular, sans-serif;
  src: url('../fonts/Montserrat-Regular.ttf');
}
@font-face {
  font-family: Montserrat-SemiBold, sans-serif;
  src: url('../fonts/Montserrat-SemiBold.ttf');
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  outline: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  font-family: Montserrat-Regular, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  text-decoration: none;
  list-style: none;
}
a,
.transition,
input[type='submit'],
.menuBtn .line {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
a {
  color: #000;
  cursor: pointer;
  font-size: 15px;
}
p {
  font-size: 15px;
  line-height: 25px;
}
html,
body {
  height: 100%;
  margin: 0;
  background-color: #e6e6e6;
}

p {
  margin: 0;
}

.navbarsmarthub {
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
}
.navbarsmarthub img {
  width: 180px;
}

.navbar {
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #40b649 0%, #75c142 100%);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
}
.navbar img {
  width: 180px;
}

.ticket-system {
  max-width: 385px;
  margin: auto;
  margin-top: 10px;
}
.ticket-system .top {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ticket-system .top .title {
  font-weight: normal;
  font-size: 1.6em;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 50px;
  color: #fff;
}
.ticket-system .top .printer {
  width: 90%;
  height: 18px;
  border: 5px solid #fff;
  /* border-radius: 10px; */
  box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2);
  background-color: #000;
  /* box-shadow: 0 0 0 13px #333; */
  border-radius: 10px;
}
.ticket-system .receipts-wrapper {
  overflow: hidden;
  margin-top: -11px;
  padding-bottom: 10px;
}
.ticket-system .receipts {
  width: 100%;
  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;
}
.ticket-system .receipts .receipt {
  padding: 25px 30px;
  text-align: left;
  min-height: 200px;
  width: 87.2%;
  background-color: #fff;
  border-radius: 0px 0px 5px 5px;
  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;
  text-align: center;
  margin: 20px 0;
}
.ticket-system .receipts .receipt .route .plane-icon {
  width: 30px;
  height: 30px;
  transform: rotate(90deg);
}
.ticket-system .receipts .receipt .route h3 {
  font-weight: 300;
  font-size: 24px;
  margin: 0;
  padding-top: 10px;
}

.ticket-system .receipts .receipt .route p {
  font-size: 14;
  color: rgba(28, 28, 28, 0.7);
  font-weight: 500;
}
.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: 0.7em;
  color: rgba(28, 28, 28, 0.7);
  font-weight: 500;
}
.ticket-system .receipts .receipt .details .item h3 {
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 900;
}
.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: 20px;
}
.ticket-system .receipts .receipt.qr-code .description h2 {
  margin: 0 0 5px 0;
  font-weight: 500;
}
.ticket-system .receipts .receipt.qr-code .description p {
  margin: 0;
  font-weight: 400;
}

@keyframes print {
  0% {
    transform: translateY(-510px);
  }
  35% {
    transform: translateY(-395px);
  }
  70% {
    transform: translateY(-140px);
  }
  100% {
    transform: translateY(0);
  }
}

.border {
  height: 1px;
  border: transparent;
  background-image: linear-gradient(90deg, #000, #000 75%, transparent 75%, transparent 100%);
  background-size: 20px 1px;
  /* border: none; */
  /* margin-bottom: 15px; */
}

.item-1 {
  text-align: right;
}

h4 {
  margin: 0;
}

.route img {
  width: 180px;
  margin-bottom: 10px;
}

.inner-shadow-bottom {
  box-shadow: inset 0 8px 10px -6px #ccc;
}

.Success {
  color: #75c142;
}

.Failed {
  color: #c12524;
}

.receipt {
  box-shadow: inset 0 16px 15px -1px rgba(0, 0, 0, 0.1);
}
.item-1 h4 {
  font-size: 20px;
}

.item-1 i {
  font-size: 17px;
}

.item-3 h3 {
  margin-bottom: 0px !important;
}
/* style="box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4);" */
