{# ============================== #}
{#            CARD BASE           #}
{# ============================== #}

.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  padding-bottom: 25px;
}

.flexi-card-outer {
  height: 100%;
}

.c-card img {
  display: block;
  margin: auto;
}

.c-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-card-content blockquote {
  margin: 0 0 25px 0;
  padding-left: 0;
  border-left: 0;
}

{# ============================== #}
{#        TEAM CARD LAYOUT        #}
{# ============================== #}

.c-card-mod {
  position: relative;
  z-index: 1;
}

.c-card-mod .c-social-team-con {
  position: absolute;
  bottom: 25px;
  display: inline-flex;
}

.c-card-mod .c-social-team-con a {
  padding-left: 0;
  padding-right: 10px;
}

{# ============================== #}
{#            BUTTONS             #}
{# ============================== #}

.c-card-btn-con {
  padding-top: 30px;
  margin-top: auto;
}

.load-more-row {
  margin-top: 25px;
}

.load-more-btn {
  cursor: pointer;
}

{# ============================== #}
{#         FILTER + SEARCH        #}
{# ============================== #}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  flex-flow: nowrap !important;
  margin-bottom: 15px;
}

.search-bar {
  margin-left: 15px;
  width: 360px;
}

{# ============================== #}
{#        MOBILE RESPONSIVE       #}
{# ============================== #}

@media (max-width: 575px) {
  .filter-row {
    flex-direction: column;
    flex-flow: wrap !important;
    width: 100%;
    padding-right: 15px;
  }

  .filter-container {
    width: auto !important;
    flex-direction: column;
  }

  .filter-container .select-container {
    width: 100%;
  }

  .search-bar {
    width: auto;
    margin-bottom: 10px;
  }
}