.pk-eachevent {
  background: white;
  /*box-shadow: 5px 5px 10px #bbbbbb;*/
  padding-bottom: 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pk-eachevent > * {
  padding-left: 10px;
  padding-right: 10px;
}

.pk-image { 
  padding: 0px; 
}

@supports (aspect-ratio: 1 / 1) {
  .pk-image img {
    width: 100%;
    height: unset;
    aspect-ratio: 1 / 1;
  }
}

.pk-titles { padding-top: 10px; }
.pk-headline {
  font-size: 1.2em;
}

.pk-date-day:after {
  content: ',';
}

.pk-venue-separator, .pk-venue-citystate, .pk-location { display:none; }

.pk-buttons {
  display: flex;
  margin-top: 10px;
  flex-grow: 1;
  justify-content: flex-end;
  flex-direction: column;
  order: 10;
}

.pk-link {
  background: #252525;
  color: white;
  border-radius: 2px;
  text-decoration: none;
  width: 100%;
  display: block;
  cursor: pointer;
}

.pklinktext {
  padding: 10px 20px;
  display: block;
  text-align: center;
}

.pk-sold-out {
  position: relative;
  background: red;
  color: white;
  display: inline-block;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 10px 30px;
  box-sizing: border-box;
}

.pk-sold-out:before
{
    content: ' ';
    position: absolute;
    width: 2px;
    height: 0;
    left: -15px;
    top: 0px;
    border-width: 15px 10px;
    border-style: solid;
    border-color: red red red transparent;
}

.pk-sold-out:after
{
    content: ' ';
    position: absolute;
    width: 2px;
    height: 0;
        right: -20px;
    top: 0px;
    border-width: 15px 10px;
    border-style: solid;
    border-color: red transparent red red;
}

.pk-times {
  display: none;
}

.pkmoreinfo {
  display: block !important;
  color: black;
  font-weight: bold;
}

.pkmoreinfo p {
  text-align: left !important;
  color: black !important;
}

.pkmoreinfo > * {
  font-size: 14px !important;
}

.pkmoreinfo strong {
  font-weight: normal !important;
}

.pkmoreinfo p + p {
  display: none;
}

.pk-org-button-selected {
  background: #333333 !important;
}


@media only screen and (min-width : 0px) and (min-width : 1500px) { 
  .pk-event-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 50px;
  }