/* BLOQUES - TICKETS */

.container-tickets>div {
  padding-right: 24px;
  padding-left: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1248px;
}

.ticket-card {
  padding: 16px;
  width: 322px;
  max-width: 322px !important;
  position: relative;
}

.ticket-card.swiper-slide {
  width: 322px !important;
  max-width: 322px !important;
}

.tickets-title {
  text-align: center;
  margin-bottom: 40px;
}

.tickets-title h6 {
  color: var(--primary) !important;
  margin-bottom: 8px !important;
}

.ticket-card-image {
  height: 250px;
}

.ticket-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ticket-card-body {
  margin-top: 16px;
}

.ticket-card-body h3 span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-card-body h3 span .icon {
  display: inline-flex;
  padding: 4px;
  border-radius: 40px;
  background-color: var(--primary-lighter);
}

.ticket-card-price {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  align-items: self-end;
}

.ticket-card-price div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ticket-card-price div h3 {
  color: var(--primary) !important;
}

.ticket-card-price a {
  position: relative;
  z-index: 10;
}

.link-absolute {
  position: absolute !important;
  inset: 0;
}

@media (max-width: 768px) {
  .container-tickets>div {
    padding-right: 16px;
    padding-left: 16px;
  }

  .ticket-card.swiper-slide {
    /* max-width: 288px !important; */
    width: 288px !important;
  }
}

/* FIN BLOQUES TICKETS */