/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.16.0.1
*/

body #main {
    background-color: #F0F0F1;
}


.search-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
}
.search-wrap div {
    padding: 15px 7.5px;
}
.search-wrap div input,
.search-wrap div select {
    min-width: 120px;
}

.event-cards {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    flex-direction: row;
}
.event-cards div {
    margin: 7px;
    padding: 15px 15px 30px;
    position: relative;
    width: 16%;
    border: 1px solid #c3c4c7;
    border-radius: 0px;
    background-color: #fff;
    
}
.event-cards div a {
    display: block;
    width: 100%;
    font-size: 100%;
    color: #2271b1;
}
.event-cards div .event-cat {
	padding-bottom: 15px;
    width: 100%;
    font-size: 80%;
}
.event-cards div .event-score {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 90%;
}
.event-cards div .event-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 76%;
}

.tbl-event-gap {
    margin-left: 7px;
    margin-right: 7px;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
}

.tbl-event tbody tr:nth-child(odd) td {
    background-color: #F6F7F7;
}
.tbl-event tbody tr td {
    border: 0px;
}
.tbl-event thead tr th {
    text-align: center;
}
.tbl-event tbody tr td:nth-child(1),
.tbl-event tbody tr td:nth-child(4),
.tbl-event tbody tr td:last-child{
    text-align: center;
}
.tbl-event tbody tr td:nth-child(2){
    color: #2271b1;
}


h3.title {
    margin-left: 7px;
}

@media screen and (max-width:600px) {
    .search-wrap {
        flex-direction: column;
    }
    .event-cards {
        flex-direction: column;
    }
    .event-cards div {
        width: 100%;
    }
}