/*!
 * bootScore custom styles
 */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* apprentices slice */
#apprentices .apprentices-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}
#apprentices .apprentices-group .apprentices-individual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 10px);
          flex: 0 1 calc(33.333% - 10px);
  gap: 2px;
}
@media (max-width: 991px) {
  #apprentices .apprentices-group .apprentices-individual {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(49.9% - 10px);
            flex: 0 1 calc(49.9% - 10px);
    gap: 2px;
  }
}
@media (max-width: 767px) {
  #apprentices .apprentices-group .apprentices-individual {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(98% - 10px);
            flex: 0 1 calc(98% - 10px);
    gap: 2px;
  }
}
#apprentices .apprentices-group .apprentices-individual .apprentices-individual-image {
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 28vw;
}
@media (min-width: 1280px) {
  #apprentices .apprentices-group .apprentices-individual .apprentices-individual-image {
    height: 400px;
  }
}
@media (max-width: 991px) {
  #apprentices .apprentices-group .apprentices-individual .apprentices-individual-image {
    height: 48vw;
  }
}
@media (max-width: 767px) {
  #apprentices .apprentices-group .apprentices-individual .apprentices-individual-image {
    height: 84vw;
  }
}
#apprentices .apprentices-group .apprentices-individual .apprentice-more .apprentices-individual-info {
  color: #ffffff;
}
#apprentices .apprentices-group .apprentices-individual .apprentice-more .apprentices-individual-info h6 {
  line-height: 130%;
}
#apprentices .apprentices-group .apprentices-individual .apprentice-more .apprentices-individual-info h6:hover, #apprentices .apprentices-group .apprentices-individual .apprentice-more .apprentices-individual-info h6:focus {
  color: #DEEDF0;
}

/* The Modal (background) */
.modal.unique-apprentice-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  /* Modal Content/Box */
}
.modal.unique-apprentice-modal .modal-content {
  margin: 14% auto; /* 15% from the top and centered */
  padding: 30px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  position: relative;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .modal.unique-apprentice-modal .modal-content {
    background-color: #fefefe;
    margin: 105px auto 0 auto;
    padding: 30px;
    border: 1px solid #888;
    width: 100%;
  }
}
.modal.unique-apprentice-modal .modal-content h2 {
  text-align: left;
  font-weight: 400;
  padding-left: 20px;
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal {
  margin-top: 10px;
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-individual-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100%) */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: black; /* Optional: Sets a background color for the container */
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-individual-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-individual-video iframe {
    width: 100%;
    max-width: 100%;
    height: 58vw;
  }
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content > div {
  width: 50%;
  min-height: 56vw;
}
@media (max-width: 991px) {
  .modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content > div {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content .apprentice-modal-left {
    margin-bottom: 20px;
    background-image: none !important;
  }
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content .apprentice-modal-left .apprentice-individual-image {
  min-height: 56vw;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
}
@media (max-width: 991px) {
  .modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content .apprentice-modal-left .apprentice-individual-image {
    margin-bottom: 20px;
    background-image: none !important;
  }
}
.modal.unique-apprentice-modal .modal-content .apprentice-modal .apprentice-modal-main-content .apprentice-modal-right {
  padding-left: 18px;
}

@media (min-width: 991px) {
  .mobile-apprentice-image {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-apprentice-image {
    display: block;
  }
  .apprentice-modal-right {
    padding-left: 0;
  }
}
/* trainers slice */
#trainers .trainers-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}
#trainers .trainers-group .trainers-individual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 10px);
          flex: 0 1 calc(33.333% - 10px);
  gap: 2px;
}
@media (max-width: 991px) {
  #trainers .trainers-group .trainers-individual {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(49.9% - 10px);
            flex: 0 1 calc(49.9% - 10px);
    gap: 2px;
  }
}
@media (max-width: 767px) {
  #trainers .trainers-group .trainers-individual {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(98% - 10px);
            flex: 0 1 calc(98% - 10px);
    gap: 2px;
  }
}
#trainers .trainers-group .trainers-individual .trainers-individual-image {
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 22vw;
}
@media (min-width: 1280px) {
  #trainers .trainers-group .trainers-individual .trainers-individual-image {
    height: 300px;
  }
}
@media (max-width: 991px) {
  #trainers .trainers-group .trainers-individual .trainers-individual-image {
    height: 33vw;
  }
}
@media (max-width: 767px) {
  #trainers .trainers-group .trainers-individual .trainers-individual-image {
    height: 60vw;
  }
}
#trainers .trainers-group .trainers-individual .trainer-more .trainers-individual-info {
  color: #ffffff;
}
#trainers .trainers-group .trainers-individual .trainer-more .trainers-individual-info h6 {
  line-height: 130%;
}
#trainers .trainers-group .trainers-individual .trainer-more .trainers-individual-info h6:hover, #trainers .trainers-group .trainers-individual .trainer-more .trainers-individual-info h6:focus {
  color: #DEEDF0;
}

/* The Modal (background) */
.modal.unique-trainer-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  /* Modal Content/Box */
}
.modal.unique-trainer-modal .modal-content {
  margin: 14% auto; /* 15% from the top and centered */
  padding: 30px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  position: relative;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .modal.unique-trainer-modal .modal-content {
    background-color: #fefefe;
    margin: 105px auto 0 auto;
    padding: 30px;
    border: 1px solid #888;
    width: 100%;
  }
}
.modal.unique-trainer-modal .modal-content h2 {
  text-align: left;
  font-weight: 400;
  padding-left: 20px;
}
.modal.unique-trainer-modal .modal-content .trainer-modal {
  margin-top: 10px;
}
.modal.unique-trainer-modal .modal-content .trainer-modal .trainer-individual-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100%) */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: black; /* Optional: Sets a background color for the container */
}
.modal.unique-trainer-modal .modal-content .trainer-modal .trainer-individual-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .modal.unique-trainer-modal .modal-content .trainer-modal .trainer-individual-video iframe {
    width: 100%;
    max-width: 100%;
    height: 58vw;
  }
}
.modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content > div {
  width: 50%;
  min-height: 56vw;
}
@media (max-width: 991px) {
  .modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content > div {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content .trainer-modal-left {
    margin-bottom: 20px;
    background-image: none !important;
  }
}
.modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content .trainer-modal-left .trainer-individual-image {
  min-height: 56vw;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
}
@media (max-width: 991px) {
  .modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content .trainer-modal-left .trainer-individual-image {
    margin-bottom: 20px;
    background-image: none !important;
  }
}
.modal.unique-trainer-modal .modal-content .trainer-modal .trainer-modal-main-content .trainer-modal-right {
  padding-left: 18px;
}

@media (min-width: 991px) {
  .mobile-trainer-image {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-trainer-image {
    display: block;
  }
  .trainer-modal-right {
    padding-left: 0;
  }
}
/* The Close Button */
.modal-close {
  font-size: 48px;
  line-height: 48px;
  font-weight: bold;
  position: absolute;
  top: 16px;
  right: 18px;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* video page styles */
.play-button {
  position: absolute;
  z-index: 2;
  background: url(../img/play-button.webp) no-repeat;
  background-position: center center;
  background-size: contain;
}

/* clergy page */
.clergy * {
  font-family: "Noto Serif", Sans-serif;
}

/* search form */
.clergy-search {
  padding-bottom: 60px;
}
.clergy-search .clergy-search-form .clergy-search-form-row {
  position: relative;
}
.clergy-search .clergy-search-form .clergy-search-form-row .clergy-search-form-input-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
}
.clergy-search .clergy-search-form .clergy-search-form-row .clergy-search-form-input-column input[type=text] {
  width: 100%;
  border-radius: 0px;
  background-color: #ebebeb;
  border: solid 1px #b7b7b7;
  margin-bottom: 0px;
  height: 39px;
  padding: 6px 6px 6px 6px;
  text-indent: 0px;
  display: inline-block;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .currently-in-ministry {
  padding-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes .pretty .state label::before {
  border-color: #b7b7b7;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes .pretty input:checked ~ .state.p-primary-o label::before, .clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes .pretty.p-toggle .state.p-primary-o label::before {
  border-color: #b7b7b7;
  border-width: 2px;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes .pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label::after {
  background-color: #b7b7b7 !important;
}
.clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes .pretty .state label:after, .clergy-search .clergy-search-form .clergy-search-form-row.checkboxes .clergy-checkboxes .pretty-checkboxes .pretty .state label:before {
  top: 2px;
}
.clergy-search .clergy-search-form .clergy-search-form-submit {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.clergy-search .clergy-search-form .clergy-search-form-submit #clear-clergy-form {
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 10px;
  color: #ffffff;
  text-decoration: none;
}
.clergy-search .clergy-search-form .clergy-search-form-submit input {
  display: inline-block;
  font-size: 16px;
  font-family: "Noto Serif", Sans-serif;
  line-height: 16px;
  font-weight: 400;
  color: #ffffff;
  background-color: #9cadb7;
  border-radius: 3px;
  border-radius: 50px 50px 50px 50px;
  padding: 16px 16px 16px 16px;
  text-transform: lowercase;
  width: 124px;
  border: solid 1px #333333;
}
.clergy-search .clergy-search-form .clergy-search-form-submit input:hover, .clergy-search .clergy-search-form .clergy-search-form-submit input:focus {
  color: #efefef;
}

@media (max-width: 767px) {
  .currently-in-ministry .p-curve {
    width: 60px;
  }
  .form-disclaimer {
    margin-top: 20px;
  }
}
/* clergy search results */
@media (min-width: 768px) {
  .clergy-desktop-results {
    display: block;
  }
  .clergy-mobile-results {
    display: none;
  }
}
@media (max-width: 767px) {
  .clergy-desktop-results {
    display: none;
  }
  .clergy-mobile-results {
    display: block;
  }
}
.clergy-search-results .clergy-desktop-results tr {
  background-color: #ffffff;
  color: #333333;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 12px;
  font-family: "Noto Serif", Sans-serif;
  cursor: pointer;
  border-bottom: solid 1px #efefef;
}
.clergy-search-results .clergy-desktop-results tr:nth-child(odd) {
  background-color: #f8f8f8;
}
.clergy-search-results .clergy-desktop-results tr:first-child {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 10px;
  font-weight: 700;
  border-width: 0px 0px 0px 0px;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 12px;
  line-height: 12px;
  font-family: "Noto Serif", Sans-serif;
}
.clergy-search-results .clergy-desktop-results tr td:last-child {
  text-align: center;
}
.clergy-search-results .clergy-desktop-results .clergy-search-results .clergy-details-button {
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #ffffff;
  background-color: #9cadb7;
  border-radius: 3px;
  padding: 12px 20px 10px 20px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  text-decoration: none;
}
.clergy-search-results .clergy-mobile-results .clergy-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #b7b7b7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.clergy-search-results .clergy-mobile-results .clergy-row .clergy-column {
  font-size: 16px;
  line-height: 120%;
  padding: 5px 6px 4px 0px;
}
.clergy-search-results .clergy-mobile-results .clergy-row .clergy-column > p {
  padding-bottom: 4px;
  margin-bottom: 0;
}

.clergy-mobile-results .clergy-column.top {
  padding-bottom: 5px;
}

.clergy-mobile-results .clergy-column.bottom, .clergy-mobile-results .clergy-column.bottom .clergy-column-details {
  text-align: right;
  width: 100%;
}

.clergy-mobile-results .clergy-column h3 {
  font-size: 18px;
  padding: 0px 0px 6px 0px;
  margin: 0px 0px 0px 0px;
}

@media (max-width: 767px) {
  .clergy-mobile-results .clergy-details-button {
    font-size: 15px;
    line-height: 15px;
    padding: 10x 12px 10px 12px;
  }
}
/* single clergy page */
.single-search-result {
  background-color: #ebebeb;
  min-height: 400px;
}

.clergy-info-table, .clergy-info-table tbody, .clergy-info-table tr, .clergy-info-table td {
  border: 0px transparent !important;
  border-style: none;
}

.clergy-info-table td {
  padding: 16px;
  vertical-align: top;
  font-size: 15px;
  line-height: 140%;
  font-weight: 400;
}

.clergy-info-table td p {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}

.clergy-info-table tr td:first-child {
  font-weight: 700;
  text-transform: uppercase;
}

.clergy-info-table tr td:last-child {
  width: 62%;
  font-size: 16px;
}

.clergy-info-table td.indent {
  padding-left: 32px;
}

.clergy-form-results {
  padding-top: 30px;
}

@media (max-width: 767px) {
  .clergy-info-table {
    display: block;
    margin-top: 24px;
  }
  .clergy-info-table tr {
    display: block;
    padding-bottom: 12px;
  }
  .clergy-info-table td, .clergy-info-table td p {
    line-height: 140%;
    font-weight: 400;
  }
  .clergy-info-table tr td:last-child {
    width: 100%;
    font-size: 16px;
  }
  .clergy-info-table td:first-child {
    display: block;
    width: 100%;
    padding: 5px 5px 0px 0px;
  }
  .clergy-info-table td:last-child {
    display: block;
    padding: 0px 5px 5px 0px;
  }
}
/* clergy manager */
.clergy-manager .clergy-form #edit-profile label {
  display: block;
}

.clergy-manager .clergy-form .pods-field__container {
  padding-bottom: 24px;
}

.clergy-manager .clergy-form .pods-field-option input {
  max-width: 500px;
  height: 30px;
  border: 1px solid #333 !important;
  background-color: white;
  border-radius: 0.25rem;
}

.clergy-manager .clergy-form .pods-field__container .description {
  color: #333333;
  font-size: 60%;
  font-style: italic;
}

.clergy-manager .clergy-form .pods-checkbox-pick__option__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.clergy-manager .clergy-form .pods-checkbox-pick__option__label input {
  margin-right: 16px;
}

.clergy-list .clergy-list-member:nth-child(odd) {
  background-color: #efefef;
}

.clergy-list .clergy-list-member {
  margin: 0px;
  padding: 12px;
}

.clergy-list .clergy-list-member span {
  display: block;
}

.clergy-list .clergy-list-member span a {
  display: inline-block;
  font-size: 14px;
  padding: 5px 5px 5px 20px;
}

.clergy-email-button {
  border: solid 1px #888888;
  border-radius: 4px;
}

/* hide the nav toolbar on this page */
.wrapper-navbar {
  display: none !important;
}/*# sourceMappingURL=main.css.map */