.event-page-filters {
    display: flex;
    flex-direction: column;
}

.events-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.events-table-header-row,
.events-table-content-row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.events-table-title {
    font-family: 'Days One', uppercase, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #35003D;
}

.events-table-header-row {
    background: #35003D;
    color: #FFFFFF;
}

.events-table-content-group {
    display: flex;
    flex-direction: column;
}

.events-table-content-group-title {
    font-weight: 600;
    font-size: 14px;
    color: #35003D;
    line-height: 140%;
    vertical-align: middle;
    padding: 5px 8px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.events-table-header-row-cell,
.events-table-content-row-cell {
    display: flex;
    flex: 1 1;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
    padding: 10px;
}

.events-table-header-row-cell {
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
}

.events-table-content-row {
    border-top: 1px solid #DBDBDB;
    border-left: 1px solid #DBDBDB;
    border-right: 1px solid #DBDBDB;
}

.events-table-content-row:last-child {
    border-bottom: 1px solid #DBDBDB;
}

.events-table-content-row-cell {
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
}

.events-table-content-row-cell:not(:last-child) {
    border-right: 1px solid #DBDBDB;
}

.large {
    flex: 2 1;
    min-width: 140px;
}

.middle {
    flex: 1 1;
    min-width: 110px;
}

.small {
    flex: 1 2;
    min-width: 90px;
}

.events-table-content-row-cell a {
    text-decoration: none;
    color: #35003D;
}

.events-table-content-row-cell a:hover {
    text-decoration: underline;
    color: #76527a;
}

.events-table-content-row-cell--title {
    color: #35003D;
}

.event-page-filters-form .recaptcha-message {
    position: unset;
    color: #505050;
}

.event-attributes {
    display: flex;
    flex-direction: column;
    line-height: 140%;
    gap: 20px;
}

.event-attribute-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.event-attribute-item-title {
    font-weight: 600;
    font-size: 14px;
    color: #35003D;
}

.event-attribute-item-value {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-weight: 500;
    font-size: 12px;
}

.event-attribute-item-value a {
    text-decoration: none;
    color: #35003D;
}

.event-attribute-item-value a:hover  {
    text-decoration: underline;
    color: #76527a;
}