
.flex-container-body-content {
    display: flex;
    /*border:10px solid goldenrod;*/
    flex-wrap: wrap;
    justify-content: center;
}

.flex-container-body-content > div {
    /*border: 10px solid red;*/
}

.flex-item-left {
    /*Flex-grow one makes the page jump around a little*/
    /*bit when the filter group is opened and closed*/
    /*but we may want to add it when on mobile*/
    /*flex-grow: 1;*/
    display:flex;
    flex-direction: column;
    min-width: 170px;
    max-width: 240px;
    margin-right: 25px;
}

.flex-item-right {
    width: 70%;
    display: grid;
    flex-grow: 1;
}

.pagination {
    /*border: 10px solid yellowgreen;*/
    justify-self: center;
}

.filter-group-container {
    display: flex;
    flex-direction: column;
    border-bottom-style: solid;
    border-bottom-color: #e2e2e2;
    margin: 15px 15px 15px 0;
    padding: 15px 15px 15px 0;
    font-size: 1.2rem;
}

.filter-group-header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
    font-weight: bold;
    color: #b02747;
}

.filter-group-header-right-item{
    padding-right: 5px;
}

.filter-links {
    text-decoration: none;
    color: grey;
}

.filter-value{
    margin-bottom: 4px;
}

.mobile-filter-container{
    background-color: #f2f2f2;
    padding: 0.5em;
    margin-bottom: 5px;
}

.mobile-filter-button {
    display:flex;
}

.mobile-nav-container {
    background-color:#b02747;
    color: white;
    padding: 0.5em;
    display:flex;
    flex-direction: column;
    margin: 0 0 5px 0;
    font-size: unset;
    text-transform: capitalize;
}

.mobile-nav-title {
    margin: 0 0 0 0;
    font-size: unset;
    font-weight: unset;
    display: flex;
}

.mobile-nav-link-container{
    display: flex;
    flex-direction: column;
}

.mobileNavLink {
    text-decoration: none;
    padding-left: 8px;
    color: white;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    align-self: center;
    margin-left: auto;
}