/*
* strip-unit - Unit stripper [10px = 10]
* param - $num : the value with a unit suffix, E.g: 10px
* return - $result : the value without any suffix, E.g: 10
* E.g. strip-unit(100px) = 100
*/
/*
* pxToEM - Convert PX value to EM value [100px = 6.25em]
* param - $target : the value in px without 'px' suffix, E.g: 100
* return - $result : the value in em with 'em' suffix, E.g: 6.25em
* E.g. pxToEM(100) = 6.25em
*/
/*
* u - PX and REM constrictor
* param - $property : css property, E.g: padding
* param - $values... : list of values for the property, note values are multiplied by $pixelBase, E.g.: 10, 20, 30, 40
* return - $result : the css property with values applied in pixels
* E.g. @include u(padding, 10, 20, 30, 40) = padding: 100px, 200px, 300px, 400px;
*/
/*! _member-summary */
.resultlist ._results {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; }
  .resultlist ._results .member-listing__item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-width: 280px;
    position: relative; }
    .resultlist ._results .member-listing__item:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 8px;
      width: 100%; }
    .resultlist ._results .member-listing__item:nth-child(3n + 1):before {
      background-color: #00a9b7; }
    .resultlist ._results .member-listing__item:nth-child(3n + 2):before {
      background-color: #c6d400; }
    .resultlist ._results .member-listing__item:nth-child(3n):before {
      background-color: #f05a28; }
    .resultlist ._results .member-listing__item .item-inner {
      padding: 22px; }
    .resultlist ._results .member-listing__item h2 {
      margin: 0 0 12px;
      font-size: 28px;
      line-height: 1.15;
      color: #44555b; }
    .resultlist ._results .member-listing__item .member-listing__worktypes h3,
    .resultlist ._results .member-listing__item .member-listing__age h3,
    .resultlist ._results .member-listing__item .member-listing__areas h3 {
      margin: 0 0 8px;
      font-size: 13px;
      font-weight: 700;
      color: #44555b; }
    .resultlist ._results .member-listing__item .member-listing__categories {
      margin-bottom: 8px; }
    .resultlist ._results .member-listing__item .member-listing__activities {
      margin: 12px 0 0;
      font-size: 15px;
      line-height: 1.7;
      color: #66757a; }
    .resultlist ._results .member-listing__item .member-listing__worktypes {
      margin-top: 18px; }
    .resultlist ._results .member-listing__item .member-listing__age {
      margin-top: 18px; }
    .resultlist ._results .member-listing__item .member-listing__areas {
      margin-top: 18px; }
    .resultlist ._results .member-listing__item .member-listing__contact {
      margin-top: 18px; }
      .resultlist ._results .member-listing__item .member-listing__contact .contact-email a {
        display: inline-block;
        margin: 0 10px 10px 0;
        padding: 10px 14px;
        border-radius: 999px;
        background: #eef4f5;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        color: #005a63;
        text-decoration: none; }
      .resultlist ._results .member-listing__item .member-listing__contact .contact-phone {
        display: inline-block;
        margin: 0 10px 10px 0;
        padding: 10px 14px;
        border-radius: 999px;
        background: #eef4f5;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        color: #005a63;
        text-decoration: none; }
    .resultlist ._results .member-listing__item span.tag {
      display: inline-block;
      margin: 0 8px 8px 0;
      padding: 7px 12px;
      border: 1px solid #d9e0e2;
      border-radius: 999px;
      background: #ffffff;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
      color: #44555b; }

/*! _member-search */
.c2form_container {
  padding: 2rem !important;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  margin-top: 18px; }
  .c2form_container .c2form_title {
    margin: 0 0 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937; }
  .c2form_container .c2form_fields {
    display: grid;
    gap: 1.75rem; }
  .c2form_container .c2form_row {
    display: flex;
    flex-direction: column;
    gap: .75rem; }
  .c2form_container .c2form_fldname {
    font-size: .95rem;
    font-weight: 600;
    color: #374151; }
  .c2form_container .c2form_input select {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-size: .95rem;
    transition: .2s ease; }
    .c2form_container .c2form_input select:focus {
      outline: 0;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
  .c2form_container .FormCodesScroll {
    max-height: 280px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa; }
  .c2form_container .c2form_codes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: .75rem 1rem; }
  .c2form_container .c2form_code {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .35rem 0; }
    .c2form_container .c2form_code input[type="checkbox"] {
      margin-top: .2rem;
      accent-color: #2563eb;
      flex-shrink: 0;
      float: unset;
      margin-left: unset; }
    .c2form_container .c2form_code label {
      margin: 0;
      line-height: 1.4;
      color: #4b5563;
      cursor: pointer; }
    .c2form_container .c2form_code:hover label {
      color: #111827; }
  .c2form_container .c2form_footer {
    margin-top: 2rem; }
  .c2form_container .c2btnsearch {
    min-width: 220px;
    padding: .95rem 2rem;
    border: 0;
    border-radius: 10px;
    background: #f05a28;
    color: #fff;
    font-weight: 600;
    transition: .2s ease; }
    .c2form_container .c2btnsearch:hover {
      background: rgba(240, 90, 40, 0.9);
      transform: translateY(-1px); }
    .c2form_container .c2btnsearch:focus {
      outline: 0;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2); }
  @media (min-width: 768px) {
    .c2form_container .c2form_row {
      display: grid;
      grid-template-columns: 240px 1fr;
      align-items: start;
      gap: 1.5rem; }
    .c2form_container .c2form_fldname {
      padding-top: .9rem; } }
  @media (max-width: 767px) {
    .c2form_container {
      padding: 1.5rem;
      margin: 1rem; }
      .c2form_container .c2form_title {
        font-size: 1.6rem; }
      .c2form_container .c2form_codes {
        grid-template-columns: 1fr; }
      .c2form_container .FormCodesScroll {
        max-height: 220px; }
      .c2form_container .c2btnsearch {
        width: 100%; } }

/*! _pagination */
table:has(.PageLinks) {
  margin: 2rem auto;
  border-collapse: separate;
  border-spacing: .5rem 0; }
  table:has(.PageLinks) h1 {
    display: none; }
  table:has(.PageLinks) tbody,
  table:has(.PageLinks) tr {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
    width: 100%; }
  table:has(.PageLinks) td {
    padding: 0; }
  table:has(.PageLinks) .PageLinks {
    padding-right: .5rem;
    font-size: .95rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap; }
  table:has(.PageLinks) .PageLink a,
  table:has(.PageLinks) .PageLink b,
  table:has(.PageLinks) .PageLinkCurrent a,
  table:has(.PageLinks) .PageLinkCurrent b {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .9rem;
    border-radius: .625rem;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease; }
  table:has(.PageLinks) .PageLink a {
    background: #fff;
    border: 1px solid #e76941;
    color: #374151; }
    table:has(.PageLinks) .PageLink a:hover {
      background: #f9fafb;
      border-color: #d1d5db;
      color: #111827; }
    table:has(.PageLinks) .PageLink a:focus-visible {
      outline: 0;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
  table:has(.PageLinks) .PageLinkCurrent b {
    background: #e76941;
    border: 1px solid #e76941;
    color: #fff; }
  @media (max-width: 768px) {
    table:has(.PageLinks) {
      display: block;
      overflow-x: auto; }
      table:has(.PageLinks) tbody,
      table:has(.PageLinks) tr {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content; } }