.ticket-card {
  box-shadow: -10px 10px 10px 0px rgba(0, 0, 0, 0.15);
  width: 376px;
  height: 188px;
  overflow: hidden;
  border-radius: 9px 9px 9px 9px;
  background: linear-gradient(106deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%);
  backdrop-filter: blur(6px);
}
.ticket-card span {
  color: var(--White, #fff);
  font-family: Libre Franklin;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.15px;
}
.ticket-card .header {
  width: 100%;
  height: 68px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  border-radius: 9px 9px 0 0;
}
.ticket-card .header h4 {
  width: 50%;
  border-right: 1px white solid;
  margin: 0;
}
.ticket-card .header .date {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
}
.ticket-card .content {
        display: flex;
        padding: 12px 24px;
        height: 120px;
        align-items:center
}
.ticket-card .content .price {
  width: 50%;
  border-right: 1px white solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ticket-card .content .price strong {
  color: var(--White, #fff);
  font-family: Libre Franklin;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
}
.ticket-card .content .info {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  gap: 12px;
}
.ticket-card .content .info .time {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .ticket-card {
    height: 336px;
    width: 182px;
    overflow: visible;
  }
  .ticket-card .header {
    height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
  }
  .ticket-card .header h4 {
    font-size: 30px;
    width: unset;
    border-right: none !important;
    padding: 0;
  }
  .ticket-card .header .date {
    width: unset;
    padding: 0;
  }
  .ticket-card .content {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    height: unset;
  }
  .ticket-card .content .price {
    width: 100%;
    border-right: none !important;
  }
  .ticket-card .content .info {
    padding-left: 0;
    gap: 12px;
  }
  .ticket-card .content .info a {
    margin-top: 38px;
  }
  .ticket-card .content .info a pos .button.book-now {
    min-width: 130px;
    width: fit-content;
    min-height: 48px;
  }
}

/*# sourceMappingURL=ticketCard.css.map */
