/*-----Breakpoints-----*/
/*-----iPhone X-----*/
/*----------Webkit safe area (iPhones with notches)----------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: white;
  font-weight: 400;
}

::selection {
  background: #592B8A;
  color: white;
}

::-moz-selection {
  background: #592B8A;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
p,
strong,
a {
  color: currentColor;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  width: 0;
  height: 0;
  text-indent: -1000em;
  overflow: hidden;
  margin: 0;
}

.main-header {
  background: #211c5b;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  padding-left: 20px;
}
.main-header .title {
  flex-grow: 1;
  padding: 20px 0;
}
.main-header i {
  display: flex;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
}
.main-header i path {
  fill: white;
}
.main-header i img {
  width: 19px;
  margin: auto;
}

.main-footer {
  background: white;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 7.5px 10px;
}

.main {
  padding: 55px 10px 45px 10px;
}

.main-title {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 10px 0;
  font-weight: 500;
  font-size: 16px;
}
.tab-nav {
  display: flex;
  margin: 10px 0;
  border-radius: 8px;
}
.tab-nav .tab-button {
  display: block;
  background: white;
  border: none;
  width: 50%;
  font-size: 14px;
  padding: 16px;
  border: 2px solid #0061c5;
  line-height: 1;
  color: #0061c5;
  font-weight: 600;
  letter-spacing: 1px;
}
.tab-nav .tab-button.active {
  border-color: #0061c5;
  background-color: #0061c5;
  color: white;
}
.tab-nav .tab-button:nth-child(1) {
  border-radius: 8px 0 0 8px;
}
.tab-nav .tab-button:nth-child(2) {
  border-radius: 0 8px 8px 0;
}

.tab-panels {
  margin: 10px 0;
  margin-bottom: 30px;
}
.tab-panels .tab-panel {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 10px 10px 16px 10px;
}

.order-details {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 20px 10px 20px;
}
.order-details i img {
  width: 25px;
}
.order-details .description {
  flex-grow: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
.order-details .description .date {
  color: #0061c5;
  font-size: 28px;
}
.order-details .description > div {
  line-height: 1.5;
}
.order-details .description > div + div {
  margin-top: 5px;
}
.order-details .description .name {
  color: #0061c5;
  font-size: 37px;
  line-height: 1;
}

.barcode {
  padding: 20px 0 0 0;
}
.barcode img {
  display: block;
  margin: 0 auto;
}
.barcode .barcode-img {
  width: 90%;
  min-width: 241px;
  max-width: 350px;
}
.barcode .barcode-number {
  text-align: center;
  margin-top: 10px;
}

.btn {
  color: white;
  background-color: #0061c5;
  display: block;
  border: 2px solid #0061c5;
  width: 100%;
  border-radius: 8px;
  padding: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
}
.btn.btn-success {
  background-color: #49a942;
  border-color: #377f31;
}

.v2 {
  background: #f2f2f2;
}
.v2 .v2-header {
  background: #3b2e7b;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 16px;
  color: white;
  justify-content: space-between;
  font-weight: 400;
}
.v2 .v2-header div {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  display: block;
}
.v2 .v2-header img {
  display: block;
}
.v2 .tab-panel {
  padding: 16px;
}
.v2 .main {
  padding: 69px 25px 45px 25px;
}
.v2 .barcode {
  padding-top: 0;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d8d8d8;
}
.v2 .barcode .barcode-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}
.v2 .barcode .barcode-img {
  width: 240px;
  min-width: auto;
  max-width: 100%;
  margin-top: 15px;
}
.v2 .barcode .barcode-number {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 14px;
}
.v2 .tab-panels .tab-panel {
  border-color: #d8d8d8;
}
.v2 .v2-details {
  font-size: 16px;
  font-weight: 400;
}
.v2 .v2-details > div {
  line-height: 1;
}
.v2 .v2-details > div + div {
  margin-top: 10px;
}
.v2 .small-title {
  text-transform: uppercase;
  font-size: 10px;
  margin-top: 20px !important;
}
.v2 .small-title + div {
  font-size: 14px;
  margin-top: 5px !important;
}
.v2 .v2-ticket-button {
  margin-top: 20px;
  font-size: 16px;
}

/*# sourceMappingURL=site.css.map */
