/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 #searchResult {
    max-width: unset;
 }
.member-search{
    max-width: 900px !important;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}
.member-search__form-title{
    text-align: center;
    font-size: 34px;
    font-weight: 100;
}
.member-search__intro-text {
    margin: 30px 0 10px 0;
    font-weight: 500;
    font-size: 18px;
    color: #050d30;
}
.member-search__intro-title {
    font-weight: 500;
    font-size: 18px;
    color: #050d30;
}
.member-search__form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-group{
    width: 42%;
    position: relative;
    text-align: left;
    margin: 0 0 32px 0;
    border: none;
    padding: 0;
}
.form-group.form-group--fullwidth{
    width: 100%;
}
.form-group label {
    font-size: 12px;
    font-weight: bold;
    text-transform: initial;
    color: #000000;
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 500;
}
.certification-text p {
    font-weight: 500;
    font-size: 18px;
    color: #050d30;
}

.member-search__form input[type="text"],
.member-search__form input[type="email"],
.member-search__form input[type="url"],
.member-search__form input[type="password"],
.member-search__form input[type="search"],
.member-search__form input[type="number"],
.member-search__form textarea {
    display: block;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 0 15px;
    color: #555555;
    height: 40px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
}
.member-search__form input[type="text"]:focus,
.member-search__form input[type="email"]:focus,
.member-search__form input[type="url"]:focus,
.member-search__form input[type="password"]:focus,
.member-search__form input[type="search"]:focus,
.member-search__form input[type="number"]:focus,
.member-search__form input[type="text"]:hover,
.member-search__form input[type="email"]:hover,
.member-search__form input[type="url"]:hover,
.member-search__form input[type="password"]:hover,
.member-search__form input[type="search"]:hover,
.member-search__form input[type="number"]:hover,
.member-search__form textarea{
     outline: none;
     color: #555555;
     background-color: #FFFFFF;
     border-color: #66afe9;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
 }

.custom_select {
    font-size: 14px;
    color: #555555;
    background-color: #FFFFFF;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 40px;
    border-radius: 0;
    padding: 0 15px !important;
    border: 1px solid #ccc;
    position: relative;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg height='8' viewBox='0 0 12 8' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m376.35 34-4.6 4.6-4.6-4.6-1.4 1.4 6 6 6-6z' fill='%23002B5C' fill-rule='evenodd' transform='translate(-365.75 -34)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
}
.custom_select:hover,
.custom_select:focus{
    border-color: #66afe9;
    background-color: #FFFFFF;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}
.custom_select::-ms-expand {
    display: none;
}
.fieldset-wrapper{
    padding: 0;
    margin: 0;
    list-style: none;
}
.fieldset-wrapper li{
    list-style: none;
}
.checkbox-wrap{
    display: flex;
    align-items: flex-start;
    margin-bottom: 2px;
}
.checkbox-wrap input[type="checkbox"]{
    margin: 3px 8px 0 0;
}
.form-group .checkbox-wrap label{
    margin-bottom: 0;
}
.form-actions{
    text-align: center;
}
.form-group sup {
    bottom: 0.2em;
}
.form-actions button{
    text-align: center;
    color: #FFFFFF;
    background-color: #000000;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    padding: 16px 40px 16px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    outline: none;
}
.form-actions button:hover,
.form-actions button:focus{
    opacity: 0.8;
}

/* Search Result Style */
.member-row{
    max-width: 900px;
    margin: 0 auto;
}
.member-row__inner{
    border: 1px solid #b3b3b3;
    -webkit-box-shadow: 1px 2px 5px #cdcdcd;
    box-shadow: 1px 2px 5px #cdcdcd;
    margin-top: 30px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 30px 0;
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 600px) {
    .member-row__inner{
        flex-direction: column;
    }
    .member-row__detail-inner {
        flex-direction: column;
    }
    .member-results-pages {
        flex-wrap: wrap;
    }
}

.clearfix:before,
.clearfix:after{
    content: "";
    display: table;
    clear: both;
}
.member-row__img-holder{
    width: 33.33333%;
    padding: 0 30px;
    margin: 0;
}
.member-row__img-holder img{
    display: block;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 100%;
}
.member-row__detail{
    width: 66.66667%;
    padding-left: 30px;
    padding-right: 30px;
}
.member-row__detail-full-width {
    width: auto;
}
.member-row__detail-col{
    float: left;
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
}
.member-row__detail-item{
    margin-bottom: 20px;
}
.member-row__name{
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-decoration: none;
    padding-left: 30px;
    padding-right: 30px;
}
.member-row__item-label{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42857;
    text-transform: uppercase;
}
.member-row__item-phone{
    text-decoration: none;
    color: inherit;
}
.member-row__item-phone:hover,
.member-row__item-phone:focus{
    color: inherit;
}
.member-row__item-phone:hover{
    text-decoration: underline;
}
.member-row__item-external-link{
    text-decoration: none;
    font-size: inherit;
    display: inline-block;
}
.member-row__item-external-link svg{
    width: 14px;
    height: 14px;
    padding-left: 0.2em;
    display: inline-block;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    position: relative;
    top: 2px;
}
.member-row__item-external-link:hover{
    text-decoration: underline;
}
.visually-hidden{
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
}
nav.pager{
    display: block;
    clear: both;
    text-align: center;
}
nav.pager ul.pager__items {
    display: table;
    list-style-type: none;
    margin: 0 auto;
}

nav.pager ul.pager__items li.pager__item {
    display: none;
    font-size: 26px;
    padding-right: 30px;
}
@media (min-width: 1000px){
    nav.pager{
        margin-top: 140px;
    }
    nav.pager ul.pager__items li.pager__item{
        display: table-cell;
        vertical-align: middle;
    }
}
nav.pager ul.pager__items li.pager__item--first,
nav.pager ul.pager__items li.pager__item--previous,
nav.pager ul.pager__items li.pager__item--next,
nav.pager ul.pager__items li.pager__item--last {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
}
nav.pager ul.pager__items a {
    color: #0f6cb6;
    text-decoration: underline;
}
nav.pager ul.pager__items a:hover{
    text-decoration: none;
}
nav.pager ul.pager__items .is-active {
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    .form-group {
        width: 47%;
    }
    .member-search{
        padding: 0;
    }
}
@media screen and (max-width: 767px) {
    .member-row__img-holder{
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    .member-row__detail{
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    .member-row__name{
        padding-left: 10px;
        padding-right: 10px;
    }
    .member-row__detail-col{
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 600px) {
    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    .form-actions{
       margin-top: 20px;
    }
}

.member-row__detail-inner {
    display: flex;
}

.member-row__contact-button {
    text-align: center;
    margin-top: 20px;
}

.member-row__contact-button a.button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: 'Rubik', sans-serif;
    text-align: center;
    box-sizing: border-box;
    background-color: #f16477;
    box-shadow: 0 5px 10px #cacaca;
    /* color: #050d30; */
    color: #fff;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 13px 30px;
    text-transform: uppercase;
    border: 0;
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.member-row__profile-link {
    text-align: center;
    margin-top: 10px;
}

.member-row__profile-link a,
.contact-form-member-link {
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.member-row__item-phone {
    text-decoration: none;
}
.member-search-no-results {
    text-align: center;
}

.member-company-logo {
    width: 120px;
}

.member-company-logo-wrapper {
    text-align: center;
}

.nar-search-modal {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nar-search-modal[data-visible=true] {
    pointer-events: all;
    opacity: 1;
}

.nar-search-modal-inner {
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: 100%;
    max-width: 900px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 0;
    transform: translateX(-1000px);
    transition: transform 0.5s ease;
    top: 94px;
}


.nar-search-modal[data-visible=true] .nar-search-modal-inner {
    transform: translateX(0);
}

.nar-search-modal-header {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #888;
    letter-spacing: 2px;
}

.nar-search-modal-close {
    position: absolute;
    top: 11px;
    right: 15px;
    margin: 0;
    border: 0;
    padding: 0;
    background: #888;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 150ms;
  }
  .nar-search-modal-close .icon-cross {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    position: relative;
    width: 20px;
    height: 20px;
  }
  .nar-search-modal-close .icon-cross:before, .nar-search-modal-close .icon-cross:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
    border-radius: 3px;
  }
  .nar-search-modal-close .icon-cross:before {
    transform: rotate(45deg);
  }
  .nar-search-modal-close .icon-cross:after {
    transform: rotate(-45deg);
  }
  .nar-search-modal-close .icon-cross span {
    display: block;
  }
  .nar-search-modal-close:hover, .nar-search-modal-close:focus {
    background: #888;
  }
  
.nar-search-modal-content {
    padding: 30px;
    overflow: auto;
    height: 100%;
}

.nar-search-modal-content .member-row__inner {
    border: none;
    box-shadow: none;
    margin-top: 0;
    padding-top: 0;
}

.member-search-ellipsis-wrapper {
    text-align: center;
}

.member-search-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }

  .member-search-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ddd;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }

  .member-search-ellipsis div:nth-child(1) {
    left: 8px;
    animation: member-search-ellipsis1 0.6s infinite;
  }

  .member-search-ellipsis div:nth-child(2) {
    left: 8px;
    animation: member-search-ellipsis2 0.6s infinite;
  }

  .member-search-ellipsis div:nth-child(3) {
    left: 32px;
    animation: member-search-ellipsis2 0.6s infinite;
  }

  .member-search-ellipsis div:nth-child(4) {
    left: 56px;
    animation: member-search-ellipsis3 0.6s infinite;
  }

  .member-results-pages {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 26px;
  }

  .member-results-pages span  {
    display: block;
    padding: 10px;
  }
  .member-results-pages a {
    display: block;
    padding: 10px;
    color: #0f6cb6;
  }

  .member-results-pages a.member-search-page-current {
    font-weight: bold;
  }

  .member-results-pages a.member-search-page-relative {
    font-size: 18px;
  }

  #searchResult h2 {
    font-family: Rubik, sans-serif;
    font-weight: 100;
    color: #484848;
    font-size: 35px;
    font-weight: 100;
    line-height: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 22px;
  }

  #contact-modal-content h2 {
    font-size: 48px;
    font-weight: 100;
    line-height: 55px;
    margin-bottom: 30px;
    color: #050d30;
    margin: 0.67em 0;
    font-family: Rubik, sans-serif;
    margin-top: 0;
  }

  #contact-modal-content .contact-modal-input-wrapper {
    margin-bottom: 10px;
  }

  #contact-modal-content .contact-modal-input-wrapper input[type="text"],
  #contact-modal-content .contact-modal-input-wrapper input[type="email"] {
    width: 60%;
    height: 36px;
    font-family: Rubik, sans-serif;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  }

  #contact-modal-content .contact-modal-input-wrapper input[type="text"]:invalid,
  #contact-modal-content .contact-modal-input-wrapper input[type="email"]:invalid,
  #contact-modal-content .contact-modal-input-wrapper textarea:invalid {
    border-color: #f00;
  }

  #contact-modal-content .contact-modal-input-wrapper textarea {
    width: 60%;
    height: 120px;
    font-family: Rubik, sans-serif;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  }

  #contact-modal-content .contact-modal-input-wrapper button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: 'Rubik', sans-serif;
    text-align: center;
    box-sizing: border-box;
    background-color: #f16477;
    box-shadow: 0 5px 10px #cacaca;
    /* color: #050d30; */
    color: #fff;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 13px 30px;
    text-transform: uppercase;
    border: 0;
    text-decoration: none;
    letter-spacing: 2px;
    line-height: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  #contact-modal-content label {
    font-family: Rubik, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
  }

  #contact-modal-content label span.required-indicator {
    color: #f00;
  }

  #contact-form-error {
    display: none;
    background-color: #fdd;
    border: 1px solid #f00;
    color: #600;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: -20px;
  }

  @media screen and (max-width: 600px) {
    .nar-search-modal-inner {
        top: 0;
    }
}



  @keyframes member-search-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes member-search-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }

  @keyframes member-search-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }

  .military-base-toggle {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 30px;
    margin-top: 20px;
    overflow: hidden;
  }

  .military-base-toggle button {
    flex-grow: 1;
    max-width: 50%;
    appearance: none;
    border: none;
    background: none;
    font-size: 16px;
    padding: 10px;
  }