.ticketing-section > h1 {
    padding-top: 140px;
    margin-bottom: 20px;
    font-size: var(--medium-h1);
    line-height: 4rem;
}

.ticketing-filters {
    display: flex;
    margin-bottom: 26px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper > select {
    width: 130px;
    border: none;
    border-bottom: 1px solid var(--yellow);
    outline: none;
    appearance: none;
    cursor: pointer;
    margin-right: 30px;
    padding-bottom: 6px;
    background-color: transparent;
    color: var(--white);
    font-size: var(--big-text);
    font-weight: 100;
    font-family: "CodecPro", sans-serif;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 30px;
    top: calc(50% - 8px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--yellow);
    pointer-events: none;
}

#reset-filter.my-primary-button {
    padding-top: 4px;
    padding-bottom: 2px;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 7px;
}

.date-list-no-result > span {
    color: var(--white);
    line-height: 1.2rem;
    font-size: var(--big-text);
    font-weight: 300;
}

.date-list-no-result.hidden {
    display: none;
}

.date-list-wrapper {
    max-height: 800px;
    overflow-y: scroll;
    margin-bottom: 48px;
}

.date-list {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
    font-size: var(--big-text);
}

.date-list tr {
    height: 48px;
}

.date-list tr.filtered-out {
    display: none;
}

.date-list tr:nth-child(odd of :not(.filtered-out)) {
    background-color: var(--purple);
}

.date-list tr:nth-child(even of :not(.filtered-out)) {
    background-color: var(--dark-purple);
}

.date-list td {
    padding-right: 4px;
    padding-left: 4px;
}

.date-list td:nth-child(1) {
    padding-left: 24px;
}

.date-list td:nth-child(2),
.date-list td:nth-child(3) {
    font-weight: 300;
}

.date-list td:nth-child(5) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 48px;
}

.date-list td > a {
    margin-right: 24px;
    color: var(--white);
    text-decoration: none;
}

.date-list td > a:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .ticketing-section > h1 {
        margin-bottom: 32px;
        line-height: 3.2rem;
    }

    .ticketing-filters {
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .select-wrapper {
        margin-bottom: 22px;
        margin-left: 6px;
        margin-right: 6px;
    }

    .select-wrapper::after {
        right: 0px;
        top: calc(50% - 7px);
    }

    .select-wrapper > select {
        width: 150px;
        margin-right: 0px;
        font-size: calc(var(--big-text) - 4px);
    }

    #reset-filter.my-primary-button {
        padding-top: 5px;
        padding-bottom: 3px;
        padding-right: 22px;
        padding-left: 22px;
        height: 100%;
        border-radius: 7px;
        font-size: calc(var(--big-text) - 4px);
    }

    .date-list-no-result {
        margin-top: 25px;
        margin-bottom: 45px;
    }

    .date-list-wrapper {
        margin-right: -8.4vw;
        margin-left: -8.4vw;
        margin-bottom: 0;
    }

    .date-list {
        font-size: calc(var(--big-text) - 6px);
    }

    .date-list tr {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: initial;
        padding-top: 30px;
    }

    .date-list td {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .date-list td > a {
        margin-right: 0px;
        text-decoration: underline;
    }
}