#content {
    width: 80% !important;
    margin-top: 100px;
}

/* search */

.search-form-holder {
    margin: 2% auto !important;
}

/* search end */

/* listings */

.no-results {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: 112%;
}

.result-title {
    font-size: 165%;
    font-weight: 600;
    margin: 2% 0 0 0;
}

.result-subtitle{
    color: gray;
    font-size: 100%;
    font-weight: 400;
    margin: 1% 0 3% 0;
}

.listing-results {display: flex;flex-direction: row;flex-wrap: wrap;grid-row-gap: 15px;flex-grow: 1;}
.listing-results.community_list {
    display: grid;
    grid-gap: 30px 0px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
/* listings end */

.paginator{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7%;
}

.current-page{
    margin: 0 18px;
    font-weight: 500;
    font-size: 110%;
}

.pagination-arrow-holder{
    display: flex;
}

.pagination-arrow{
    width: 30px;
}

@media only screen and (max-width: 800px) {
    #content {
        width: 92% !important;
    }
    .result-title {
        margin: 8% 0 0 0;
    }

    .result-subtitle{
        margin: 4% 0 8% 0;
    }

    .listing-results {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .paginator{
        margin-top: 16%;
    }
}

a.btn-edit {
    box-shadow: -3px -3px 1px 1px #d9d9d9;
    padding: 5px 11px;
    background: #fe93a4;
    margin-right: 10px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}
/*Filter */

.explore_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 35px;
    justify-content: space-around;
}

.filter_container {
    flex: 22%;
    display: flex;
    flex-direction: column;
    background: var(--circleBackground);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

.listing-results.event_list_container {
    width: 61%;
    flex: 61%;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.explore_container .filter_head {
    color: var(--primaryColor);
    font-size: var(--primaryFontSize);
    font-weight: 500;
}

.explore_container hr {
    background: transparent;
    border: 0.5px dashed var(--subColor);
    width: 100%;
}

.filter_container .filter_check_section {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px auto;
    row-gap: 40px;
}

.filter_container .filter_check_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.filter_check_item .filter_check_label {
    color: var(--grayColor);
    font-weight: 400;
    font-size: var(--titleFontSize);
}

.filter_dropdown {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0px;
    row-gap: 20px;
    margin-bottom: 40px;
}

.filter_input input {
    box-sizing: border-box;
}

.filter_container button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 15px 0px;
    font-size: var(--titleFontSize);
    column-gap: 10px;
    background: var(--blueColor);
    color: white;
    box-shadow: 0px 0px 5px 1px var(--shadowColor);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-shadow: none;
}

.explore_container .profile-listing-holder {
    width: 43%;
}

.filter_dropdown input {
    box-sizing: border-box;
}

input#EventStartDate {}