.tour-container {
    width: 100%;
}

.seated-events-table {
    border-top: none;
}

.seated-event-description-cells {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.seated-event-venue-cell {
    width: 100%;
    align-items: center;
}

.seated-event-date-cell {
    white-space: nowrap;
    color: var(--secondary);
    text-transform: uppercase;
    font-family: dm, Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 500;
    display: inline;
    background-color: var(--primary);
    height: fit-content;
    padding: 0.1rem 0.1rem;
    margin-right: 1vw;
    margin-left: 20vw;
}

.seated-no-events {
    color: var(--primary);
    text-underline-offset: 5px;
    text-transform: uppercase;
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1rem;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    width: 100%;
    text-align: center;
    padding-top: 2rem;
}

.seated-event-venue-name {
    color: var(--primary);
    /* letter-spacing: -0.01rem; */
    text-underline-offset: 5px;
    text-transform: uppercase;
    font-family: helvetica-neue-lt-pro, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1rem;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    word-spacing: 1vw;
    width: 100%;
    margin-right: 1vw;
    
}

.seated-event-details-cell {
    color: var(--primary);
    /* letter-spacing: -0.01rem; */
    text-underline-offset: 5px;
    text-transform: uppercase;
    font-family: dm, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2rem;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    word-spacing: 1vw;
    width: auto;
}

.seated-event-venue-location {
    color: var(--primary);
    /* letter-spacing: -0.01rem; */
    text-underline-offset: 5px;
    text-transform: uppercase;
    font-family: dm, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2rem;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    /* word-spacing: 1vw; */
    width: 100%;
    
}

.seated-event-link,
.seated-follow-link {
    color: var(--primary);
    border: none;
    background: none;
    border-radius: none;
    display: block;
    font-size: 1rem;
    font-family: helvetica-neue-lt-pro, sans-serif;
    margin: none;
    overflow: hidden;
    padding: none;
    text-align: center;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    min-width: none;
    text-transform: uppercase !important;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    margin-right: 20vw;
    width: auto;
}

.seated-event-link:hover,
.seated-follow-link:hover {
    color: black;
    border: none;
    background: none;
    border-radius: none;
    display: block;
    font-size: 1rem;
    font-family: helvetica-neue-lt-pro, sans-serif;
    margin: none;
    overflow: hidden;
    padding: none;
    text-align: center;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    min-width: none;
    text-transform: uppercase !important;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.seated-event-row {
    border-bottom: none;
}

.seated-follow-text {
    color: var(--primary);
    /* letter-spacing: -0.01rem; */
    text-underline-offset: 5px;
    text-transform: uppercase;
    font-family: dm, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2rem;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    word-spacing: 1vw;
    width: 100%;
}

.seated-follow-link {
    margin-right: 0;
}



@media screen and (max-width: 767px) {


    .seated-event-date-cell {
        margin-left: 0;
    }

    .seated-event-row {
        padding: 0;
    }

    .seated-event-description-cells {
        flex-direction: column;
        gap: 1rem;
        align-items: start;
    }

    .seated-event-venue-cell {
        gap: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }

    .seated-event-venue-name {

        text-align: justify;
        text-align-last: justify;
        width: 40%;
        /* padding-left: 10% */
    }

    .seated-event-venue-location {

        text-align: right;
        text-align-last: right;
        /* padding-left: 0%; */
        width: 60%;
        /* padding-right: 40%; */
    }

    .seated-event-link {
        text-align: right;
        padding: 0;
        margin: 0;
        min-width: auto;
    }

    .seated-event-link:hover {
        text-align: right;
        padding: 0;
        margin: 0;

    }

    .seated-event-link-cells {
        margin: 0;
    }

    .seated-event-row {
        margin-bottom: 1rem;
    }

    .seated-events-table {
        margin-top: 2rem;
    }


}