.pyro-show-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pyro-show-tile {
  display: flex;
  border-radius: 12px;
  padding: 20px;
  justify-content: space-between;
  background: var(--bricks-color-iekwwl);
}

.pyro-show-tile.finale{
  background: var(--color-6);
}

.pyro-show-tile.finale .left{
  color: var(--bricks-color-wfdsii);
}

.pyro-show-tile .left {
  padding: 20px;
  padding: 60px;
  position: relative;
}

.label {
  position: absolute;
  top: -20px;
  left: 0;
  background: #e05838;
  color: var(--bricks-color-wfdsii);
  padding: 0 20px;
  font-weight: bold;
  border-radius: 6px;
  transform: translateY(-50%);
  font-family: "Manuka";
  font-size: 28px;
}

.finale-label {
  background: #255c94;
}

.extra-label {
  left: 170px;
  background: #1770bb;
}

.pyro-show-tile h2 {
  font-size: 60px;
  font-family: "Manuka";
  line-height: 1;
}

.pyro-show-tile.finale h2 {
  color: var(--bricks-color-wfdsii);
}

.show-date {
  margin: 0 0 30px;
  font-size: 18px;
}

.pyro-show-tile.finale .show-date {
  color: var(--bricks-color-wfdsii);
}

.tickets-button {
  display: inline-block;
  background: #255c94;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.pyro-show-tile .right {
  background: var(--bricks-color-wfdsii);
  padding: 20px;
  border-radius: 4px;
  width: 70%;
  max-height: 300px; 
  overflow-y: auto;
}

.tracklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tracklist li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.tracklist-empty {
  margin: 0;
  font-size: 18px;
}

.pyro-show-tile .bricks-button {
  white-space: nowrap;
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.pyro-show-tile.finale .bricks-button {
  background-color: var(--bricks-color-wfdsii) !important;
  color: var(--color-6) !important;
}

.pyro-show-tile.finale .bricks-button:hover {
  color: var(--bricks-color-wfdsii) !important;
  box-shadow: 0 0 0 2px var(--bricks-color-wfdsii);
}

.pyro-show-tile.finale .bricks-button:hover::after, .pyro-show-tile.finale .bricks-button::after,
.pyro-show-tile.finale .bricks-button:hover::before{
  background: var(--color-6) !important;
}

@media all and (max-width: 991px) {
  .pyro-show-tile {
    flex-direction: column;
    padding: 30px;
  }
  .pyro-show-tile .left{
    padding: 0;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .pyro-show-tile .right{
    width: 100%
  }
}

@media (max-width: 767px) {
  .pyro-show-tile.finale .bricks-button:hover {
    color: var(--color-6) !important;
    box-shadow: none;
  }
}