@media only screen and (min-width: 820px) {
    .eventilla-event-container {
        width: 100% !important;
        max-width: 1440px !important;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -1%;
    }

    .eventilla-event {
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        background-color: #f0f2f3;
        width: 23%;
        margin: 10px 1%;
        box-sizing: border-box;
        float: left;
    }

    .eventFilter {
        width: 100% !important;
        max-width: 1440px !important;
        text-align: center;
        margin: auto;
        margin-bottom: 15px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
    }
    .eventFilter .filter {
        width: 25%;
        padding: 0 2px;
    }
    .eventFilter select {
        width: 100%;
        appearance: menulist;
        -webkit-appearance: menulist;
        -moz-appearance: menulist;
        border-radius: 5px;
        height: 50px;
    }
}

.eventilla-event.hidden {
    display: none;
}

.eventilla-event a {
    text-decoration: none !important;
    cursor: pointer;
    color: #11335a;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}
.eventilla-event .organization {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    color: white;
    background: #000;
}
.eventilla-event .image-container {
    position: relative;
    width: 100%;
    max-height: 100px;
    overflow: hidden;
}
.eventilla-event .image-container img {
    width: 100%;
}
.eventilla-event .event-info {
    padding: 10px;
    text-align: center;
    color: #000;
    font-weight: 500;
}
.eventilla-event .event-info .headline {
    font-family: AvertaBold, sans-serif;
}
.eventilla-event .date,
.eventilla-event .location {
    display: block;
    font-size: 15px;
    margin: 8px 0;
}
.eventilla-event .fa {
    margin-right: 10px;
}

.eventFilter .filter > select {
    width: 100%;
    margin-bottom: 10px;
}
