/* === Legacy Content Block === */
.modalImages .memberImage {
  position: relative;
  overflow: hidden;
  cursor: help;
}

.modalImages .memberImage .hoverContainer {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    color-stop(33%, rgba(0, 0, 0, 0.55))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 33%
  );
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modalImages .memberImage .hoverContainer .inner {
  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: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modalImages .memberImage .hoverContainer .inner img {
  max-width: 50px;
  height: auto;
}

.modalImages .memberImage .hoverContainer .inner * {
  color: #fff;
}

.modalImages .memberImage:hover .hoverContainer {
  top: 0%;
  opacity: 1;
}

.modalImages .memberInfo {
  padding-top: 16px;
  padding-bottom: 16px;
}

.modalImages .memberInfo h3 {
  text-align: center;
  font-size: 24px;
}

.modalImages .memberInfo .memberSep {
  border: none;
  height: 4px;
  background-color: var(--fc-primary-color);
  opacity: 1;
  max-width: 25%;
  margin: auto;
  margin-bottom: 8px;
  margin-top: 8px;
}

.modalImages .memberContact {
  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;
}

.modalImages .memberContact .contactItem {
  margin: 0 8px;
}

.memberModalBg {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
  display: none;
  -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;
  -webkit-animation: fadeIn 0.25s ease-out forwards;
  animation: fadeIn 0.25s ease-out forwards;
}

.memberModalBg .modalContainer {
  display: none;
  -webkit-box-shadow: 0px 3px 9px 3px rgba(0, 0, 0, 0.33);
  box-shadow: 0px 3px 9px 3px rgba(0, 0, 0, 0.33);
  -webkit-animation: fadeInUp 0.25s ease-out forwards;
  animation: fadeInUp 0.25s ease-out forwards;
  overflow-y: auto;
  max-height: 75vh;
  max-width: calc(100vw - 48px);
  margin: 24px;
}

.memberModalBg .modalContainer .modalInner {
  max-width: 768px;
  margin: auto;
  background-color: #efefef;
  position: relative;
  display: flex;
}
.memberModalBg .modalContainer .modalInner .modalImgWrapper {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  height: 256px;
}
.memberModalBg .modalContainer .modalInner img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.memberModalBg .modalContainer .modalContentWrapper {
  padding: 16px;
}
.memberModalBg .modalContainer .modalInner p {
  margin: 0;
  padding-top: 16px;
}

.memberModalBg .modalContainer .modalInner .closeOut {
  height: 24px;
  width: 24px;
  background-color: lightcoral;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}

.memberModalBg .modalContainer.open {
  display: block;
}

.memberModalBg.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991.98px) {
  .modalImages .memberInfo h3 {
    text-align: left;
  }
  .modalImages .memberImage .hoverContainer {
    top: 100% !important;
  }
}
@media screen and (max-width: 767.98px) {
  .memberModalBg .modalContainer .modalInner {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .memberModalBg .modalContainer .modalInner {
    overflow: hidden;
  }
  .memberModalBg .modalContainer .modalInner img {
    position: relative;
    left: -16px;
    right: -16px;
    max-width: calc(100% + 32px) !important;
    height: auto;
    float: none;
  }
  .memberModalBg .modalContainer .modalInner .closeOut {
    height: 24px;
    width: 24px;
    background-color: lightcoral;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
  }
  .memberModalBg.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

.site-footer,
.footer-widgets,
.header-top,
.navbar,
.footer-top {
  position: relative;
  z-index: 9000;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  z-index: 90000;
}

.mobile--donate-cta {
  z-index: 9000;
}

.navbar:hover {
  z-index: 21;
}
