.tickets-wrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 1rem;
}

.tickets{
  width: 100%;
  max-width: 520px;
  background: rgba(0 0 0 / .2);
  padding: 1rem;
  border-radius: 10px;
  display: grid;
  margin-bottom: 2em;
}

.prices .icon{
  align-items: start !important;
}

.price{
  width: 100%;
  overflow-x: auto;
  margin: 0;
}

.price table{
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 0.95rem;
}

.price thead th{
  padding: 0.75em;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

/* alternating body rows
.price tbody tr:nth-child(odd){ background: #333; }
.price tbody tr:nth-child(even){ background: #444; } */

.price tbody td{
  padding: 0.75em;
  white-space: nowrap;
}

/* Price column */
.price td:last-child,
.price th:last-child{
  text-align: right;
}

.event-date, .event-doors, .presale, .onsale{
  color: #eaeaea;
  line-height: 1.2;
}

.event-date{
  font-size: 1.5rem;
  font-weight: 900;
}

.event-time{
  font-size: 1.2rem;
  font-weight: 500;
}

.sale-details{
  display: grid;
  gap: .5rem;
}

.event-location, .sale-date, .prices{
  display: flex;
  flex-direction: row;
  gap: 1em;
  margin: .5em 0;
  align-items: center;
  background: rgba(26 26 26 / .5);
  border-radius: 10px;
  padding: 1em;
}

.tickets .alert-bar{
  margin: 1em 0 .5em;
}

.prices{
  align-items: flex-start;
}

.prices .icon{
  margin-top: 10px;
}

.event-location .icon, .sale-date .icon{
  min-width: 30px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.event-location .address{
  display: flex;
  align-items: center;
}

.event-location .address .heading{
  display: block;
  font-size: 1.3rem;
  margin-bottom: .2em;
}

.event-location a{
  color: #fff;
  text-decoration: none;
}

.event-location a:hover{
  text-decoration: underline;
}

.tickets .btn.buy{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  flex: 0 !important;
  margin: 0 !important;
}

@media (max-width: 600px){
  .event-location,
  .sale-date,
  .prices{
    align-items: flex-start;
    gap: .75rem;
    padding: .875rem;
  }

  .event-date{
    font-size: 1.25rem;
  }

  .event-time{
    font-size: 1rem;
  }
}