.ds-events {
    font-family: 'Oswald';
}

.ds-events button.more {
    background-color: #99cc00;
    color: #000000;
    margin-top: 20px;
}

.ds-events button:hover,
.ds-events button:active {
    background-color: #b3ff00;
}

.ds-events .legend {
    color: #ffffff;
    display: flex;
    font-size: 14px;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.ds-events .legend > div {
    align-items: center;
    display: flex;
    gap: 5px;
}

.ds-events .legend .circle {
    background: #ffff00;
    border-radius: 100%;
    height: 16px;
    width: 16px;
}

.ds-events .legend .circle.theater {
    background: #cc99ff;
}

.ds-events.preview ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.ds-events.preview li.event {
    align-items: start;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
}

.ds-events.preview li.event .line-1,
.ds-events.preview li.event .line-2 {
    width: 100%;
}

.ds-events.preview li.event .schedule,
.ds-events.preview li.event .location,
.ds-events.preview li.event .title,
.ds-events.preview li.event .actions {
    width: 100%;
}

.ds-events.preview li.event:last-child
{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ds-events.preview li.event .date {
    font-weight: bold;
}

.ds-events.preview li.event .type {
    color: #ffff00;
    font-weight: bold;
}

.ds-events.preview li.event.theater .type {
    color: #99cc00;
}

.ds-events.preview li.event .title > span {
    color: #ffff00;
    font-weight: bold;
}

.ds-events.preview li.event.theater .title > span {
    color: #cc99ff;
    font-weight: bold;
}

.ds-events.preview li.event .notes,
.ds-events.preview li.event .sold-out {
    font-weight: bold;
}

.ds-events.preview li.event .sold-out {
    color: #ff6600;
}

.ds-events.preview li.event a.tickets {
    color: #ff00ff;
    text-decoration: underline;
}

@media screen and (min-width: 480px) {
    .ds-events.preview li.event .line-1,
    .ds-events.preview li.event .line-2 {
        align-items: start;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .ds-events.preview li.event .schedule,
    .ds-events.preview li.event .location,
    .ds-events.preview li.event .title,
    .ds-events.preview li.event .actions {
        width: auto;
    }

    .ds-events.preview li.event .title
    {
        align-items: start;
        display: flex;
        gap: 10px;
    }
}

@media screen and (min-width: 768px) {
    .ds-events .legend {
        justify-content: start;
    }

    .ds-events.preview ul {
        max-width: 700px;
        text-align: left;
    }

    .ds-events.preview {
        margin: 0 auto;
        max-width: 760px;
    }

    .ds-events.preview li.event {
        gap: 10px;
    }

    .ds-events.preview li.event .line-1 {
        width: 300px;
        justify-content: start;
    }

    .ds-events.preview li.event .line-1 .schedule {
        width: 145px;
    }

    .ds-events.preview li.event .line-1 .location {
        width: 155px;
    }

    .ds-events.preview li.event .line-2 {
        flex: 1;
        width: auto;
        justify-content: space-between;
    }
}