#views-exposed-form-events-listing-block
{
    display: flex;
    width: 100%;
    border: 1px solid var(--light-gray);
}

.form-item-title
{
    flex-basis: 100%;
    margin-right: 0.5rem;
    display: flex;
}

.form-item-title::before
{
    font-family: var(--font-awesome);
    content: "\f002";
    padding-left: 0.75rem;
    align-self: center;
    font-weight: 600;
    color: var(--md-gray);
}


#edit-title
{
    margin-left: 0.5rem;
    padding: 1.25rem;
    border: 0;
    width: 100%;
}

#edit-actions
{
    display: flex;
    padding-right: 1.25rem;
}

#edit-submit-events-listing
{
    height: 70%;
    align-self: center;
    border-color: var(--primary-color);
    padding-inline: 1.25rem;
    color: white;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
    transition: all .3s ease-in-out;
    font-weight: 600;
}

#edit-submit-events-listing:hover
{
    color: var(--primary-color);
    background-color: white;
}

.month-heading
{
    width: 100%;
    display: flex;
    align-items: center;
}

.month-heading::after
{
    background-color: var(--light-gray);
    content: "";
    display: block;
    flex: auto;
    height: 1px;
    margin-left: 1.25rem;
}

.month-heading time
{
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-roboto);
}

.events-row
{
    display: grid;
    grid-template-columns: 100px auto;
    font-family: var(--font-roboto);
    gap: 0.5rem;
}

.events-row .views-field-field-event-date-value-3
{
    grid-column: 1;
    grid-row: 1 / 4;
}

.day-date
{
    text-align: center;
}

.day-date .day
{
    text-transform: uppercase;
    font-size: 0.68rem;
    columns: var(--light-gray);
}

.day-date .date,
.events-row .views-field-title
{
    font-size: 1.5rem;
    font-weight: 700;
}

.events-row .views-field-title a
{
    text-decoration: none;
    color: black;
}

.events-row .views-field-title a:hover
{
    text-decoration: underline;
}

.events-row .views-field-field-event-date-end-value
{
    font-size: 0.87rem;
}

.events-row .views-field-field-location
{
    font-size: 0.87rem;
    font-weight: 700;
}