/* Wrapper */
.acf-dynamic-table-wrapper {
    width: 100%;
    border: 1px solid #e5e5e5;
    font-size: 15px;
}

/* Header */
.acf-dynamic-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1.5fr;
    background: #fff;
    font-weight: 700;
    text-align: center;
}

.acf-dynamic-table-header .acf-dynamic-cell {
    padding: 18px 16px;
    border-right: 1px solid #e5e5e5;
}

.acf-dynamic-table-header .acf-dynamic-cell:last-child {
    border-right: none;
}
.acf-dynamic-cell.col-cities {
    text-transform: uppercase;
}

/* Body rows */
.acf-dynamic-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1.5fr;
}

.acf-dynamic-table-row .acf-dynamic-cell {
    padding: 20px 16px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

/* Remove last column border */
.acf-dynamic-table-row .acf-dynamic-cell:last-child {
    border-right: none;
}

/* Zebra striping */
.acf-dynamic-table-row:nth-child(even) .acf-dynamic-cell {
    background: #f2f2f2;
}

/* Buttons */
.table-button {
    display: inline-block;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
	text-transform: uppercase;
}
/* Buy tickets */
.table-button.buy-tickets {
    background: #0b74c9;
    color: #fff;
}

.table-button.buy-tickets:hover {
    background: #095fa3;
}

/* More info */
.table-button.more-info {
    background: #ff8a00;
    color: #ffffff;
}

/* Sold out */
.table-button.sold-out {
    background: #f03838;
    color: #ffffff;
    cursor: not-allowed;
}

/* Date note */
.date-note {
    font-size: 13px;
    color: #666;
    margin-left: 4px;
}
@media (max-width: 768px) {

    .acf-dynamic-table-header {
        display: none;
    }

    .acf-dynamic-table-row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid #e5e5e5;
    }

    .acf-dynamic-table-row .acf-dynamic-cell {
        text-align: left;
        border-right: none;
        padding: 12px 16px;
    }

    .acf-dynamic-table-row .acf-dynamic-cell::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        margin-bottom: 4px;
        font-size: 13px;
    }

    .table-button {
        width: 100%;
        text-align: center;
    }
}
