/*
 * Main portal stylesheet.
 *
 * This file contains the page-shell, form, opportunity list, map/calendar, modal,
 * history, and responsive rules used by the custom volunteer portal templates.
 */
/* Shared theme tokens used across the custom portal UI. */
:root {
  --bg: #ffffff;
  --bgAccent: #e9eefb;
  --text: #0f172a;
  --muted: #475569;
  --card: rgba(255, 255, 255, 0.92);
  --surface: rgba(255, 255, 255, 0.72);
  --surface2: rgba(255, 255, 255, 0.55);
  --field: rgba(255, 255, 255, 0.92);
  --border: rgba(15, 23, 42, 0.14);
  --borderStrong: rgba(15, 23, 42, 0.18);
  --headerBg: rgba(255, 255, 255, 0.80);
  --footerBg: #ffffff;
  --shadow: 0 25px 60px rgba(2, 6, 23, 0.12);
  --primary: #285f74;
  --btn: rgba(15, 23, 42, 0.06);
  --btnHoverBorder: rgba(37, 99, 235, 0.55);
  --oppCardBg: #c3edef;
  --oppCardSelectedBg: #00c0ca;
}


/* Dark-mode token overrides. */
html[data-ja-theme="dark"] {
  --bg: #0f172a;
  --bgAccent: #111827;
  --text: #e5eef7;
  --muted: #cbd5e1;
  --card: rgba(15, 23, 42, 0.94);
  --surface: rgba(30, 41, 59, 0.9);
  --surface2: rgba(30, 41, 59, 0.72);
  --field: rgba(15, 23, 42, 0.96);
  --border: rgba(148, 163, 184, 0.24);
  --borderStrong: rgba(148, 163, 184, 0.34);
  --headerBg: rgba(15, 23, 42, 0.9);
  --footerBg: rgba(15, 23, 42, 0.86);
  --shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
  --primary: #28708b;
  --btn: rgba(255, 255, 255, 0.08);
  --btnHoverBorder: rgba(118, 205, 221, 0.65);

  --oppCardBg: #5f8790;
  --oppCardSelectedBg: #008b9c;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

html {
  overflow-y: scroll;
}

body.page-template-page-portal,
body.page-template-page-profile,
body.page-slug-profile,
body.page-template-page-volunteer-registration-ninja,
body.page-template-page-volunteer-registration-ninja-php,
body.page-template-page-volunteer-registration {
  min-height: 100vh;
}

body.page-template-page-portal .site,
body.page-template-page-portal .site-main,
body.page-template-page-portal .entry-content,
body.page-template-page-portal .post,
body.page-template-page-portal article,
body.page-template-page-profile .site,
body.page-template-page-profile .site-main,
body.page-template-page-profile .entry-content,
body.page-template-page-profile .post,
body.page-template-page-profile article,
body.page-slug-profile .site,
body.page-slug-profile .site-main,
body.page-slug-profile .entry-content,
body.page-slug-profile .post,
body.page-slug-profile article,
body.page-template-page-volunteer-registration-ninja .site,
body.page-template-page-volunteer-registration-ninja .site-main,
body.page-template-page-volunteer-registration-ninja .entry-content,
body.page-template-page-volunteer-registration-ninja .post,
body.page-template-page-volunteer-registration-ninja article,
body.page-template-page-volunteer-registration-ninja-php .site,
body.page-template-page-volunteer-registration-ninja-php .site-main,
body.page-template-page-volunteer-registration-ninja-php .entry-content,
body.page-template-page-volunteer-registration-ninja-php .post,
body.page-template-page-volunteer-registration-ninja-php article,
body.page-template-page-volunteer-registration .site,
body.page-template-page-volunteer-registration .site-main,
body.page-template-page-volunteer-registration .entry-content,
body.page-template-page-volunteer-registration .post,
body.page-template-page-volunteer-registration article {
  margin: 0;
  padding: 0;
  max-width: none;
}

/* Core page shell, header, and card primitives reused by the templates. */
.ja-portal-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ja-opp-card {
  overflow: visible;
  background: var(--oppCardBg);
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(40, 95, 116, 0.25);
  padding: 8px 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.ja-opp-card.is-selected {
  background: var(--oppCardSelectedBg);
  box-shadow: 0 6px 14px rgba(40, 95, 116, 0.35);
}

.ja-opp-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(40, 95, 116, 0.35);
}

.ja-opp-card__body p {
  margin: 3px 0;
  font-size: 0.9rem;
}

.ja-opp-card__title {
  margin: 0 0 4px 0;
  font-size: 1rem;
  line-height: 1.2;
}

.ja-role-hover-popover {
  position: fixed;
  z-index: 9999;
  width: 420px;
  max-width: min(420px, calc(100vw - 16px));
  padding: 12px;
  border: 1px solid var(--borderStrong);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.22);
  color: var(--text);
  pointer-events: auto;
box-sizing: border-box;
overflow-x: hidden;
}

.ja-role-hover-popover[hidden] {
  display: none !important;
}

.ja-role-hover-popover__title {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.ja-role-hover-popover__table {
  display: grid;
  gap: 6px;
}

.ja-role-hover-popover__head,
.ja-role-hover-popover__row {
  display: grid;
  grid-template-columns: minmax(140px, 1.25fr) 72px minmax(0, 2fr);
  gap: 8px;
  align-items: start;
}

.ja-role-hover-popover__head {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.ja-role-hover-popover__row {
  padding-top: 6px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.85rem;
}

html[data-ja-theme="dark"] .ja-role-hover-popover__row {
  border-top-color: rgba(148, 163, 184, 0.18);
}

@media (max-width: 900px) {
  .ja-role-hover-popover {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .ja-role-hover-popover {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 10px;
    box-sizing: border-box;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .ja-role-hover-popover__head,
  .ja-role-hover-popover__row {
    grid-template-columns: 1fr;
  }
}


.ja-opp-card:hover .ja-opp-card__role-popover,
.ja-opp-card:focus-within .ja-opp-card__role-popover,
.ja-opp-card.is-selected .ja-opp-card__role-popover {
  display: block;
}

.ja-opp-card__role-popover-title {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.ja-opp-card__role-table {
  display: grid;
  gap: 6px;
}

.ja-opp-card__role-table-head,
.ja-opp-card__role-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.3fr) 72px minmax(0, 2fr);
  gap: 8px;
  align-items: start;
}

.ja-opp-card__role-table-head {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.ja-opp-card__role-row {
  padding-top: 6px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

html[data-ja-theme="dark"] .ja-opp-card__role-row {
  border-top-color: rgba(148, 163, 184, 0.18);
}

@media (max-width: 768px) {
  .ja-opp-card__role-popover {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 10px;
    box-shadow: none;
  }

  .ja-opp-card__role-table-head,
  .ja-opp-card__role-row {
    grid-template-columns: 1fr;
  }
}




.ja-portal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--headerBg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

body.admin-bar .ja-portal-header {
  top: 32px;
}

.ja-portal-nav {
  max-width: 98vw;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ja-brand {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.2px;
  line-height: 95%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #285f74;
  text-decoration: none;
  white-space: nowrap;
}

.ja-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ja-brand-text--charter {
  line-height: 0.95;
}

.ja-brand-logo {
  width: 64px;
  height: 64px;
  display: block;
  flex: 0 0 18px;
  object-fit: contain;
}

html[data-ja-theme="dark"] .ja-brand {
  color: #ffffff;
}

html[data-ja-theme="dark"] .ja-brand-logo {
  filter: brightness(0) invert(1);
}

.ja-brand-text--member {
  font-size: 0.5em;
  line-height: 1.1;
}

.ja-brand-divider {
  display: block;
  width: 1px;
  min-width: 1px;
  height: 3.2rem;
  background: currentColor;
  opacity: 0.5;
}

.ja-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.15);
}

.ja-form-message {
  margin-top: 16px;
  font-size: 0.95rem;
}

.ja-form-message.is-success {
  color: #15803d;
}

.ja-form-message.is-error {
  color: #b91c1c;
}

/* Header actions, buttons, and shared container styles. */
.ja-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.ja-header-preferences {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.ja-btn-link,
.ja-btn,
button.ja-btn-link,
button.ja-btn {
  appearance: none;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--borderStrong);
  background: var(--btn);
  color: var(--text);
  transition: 0.15s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
}

.ja-btn-link:hover,
.ja-btn:hover {
  border-color: var(--btnHoverBorder);
}

.ja-btn-link.primary,
.ja-btn.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}



.ja-page-wrap {
  flex: 1;
  width: 70vw;
  max-width: 70vw;
  margin: 0 auto;
  padding: 54px 18px 32px;
  box-sizing: border-box;
}

.ja-card {
  width: 100%;
  max-width: none;
  background: var(--card);
  border: 1px solid var(--borderStrong);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.ja-card.wide {
  width: 100%;
  max-width: none;
}

.ja-view {
  display: block;
  margin-bottom: 40px;
}

.ja-view:last-child {
  margin-bottom: 0;
}

.ja-view h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.15;
}

.ja-view h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.ja-sub {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.ja-section-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--borderStrong);
  background: var(--surface2);
}

.ja-derived-value {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: #000000;
  font-size: 0.95rem;
}

.ja-derived-value.is-populated {
  font-weight: 600;
  color: #1f2937;
  border-style: solid;
}

.ja-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ja-split2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  margin-top: 14px;
}

.ja-op-list,
.ja-map-box {
  border: 1px solid var(--borderStrong);
  background: var(--surface2);
  border-radius: 16px;
  padding: 12px;
  min-height: 520px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.ja-map-frame-wrap iframe,
#mapFrameGuest {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0 0 16px 16px;
}

.ja-map-frame-wrap {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}


/* Shared form controls and page footer styling. */
label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
input[type="number"],
input[type="range"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--borderStrong);
  background: var(--field);
  color: var(--text);
  outline: none;
  box-sizing: border-box;
}

input[type="range"] {
  padding: 0;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

.ja-btn-row {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ja-msg {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 1.2em;
}

#gOppListContainer {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.ja-portal-footer {
  border-top: 1px solid var(--border);
  background: var(--footerBg);
  backdrop-filter: blur(6px);
  margin-top: 24px;
}

.ja-footer-inner {
  max-width: 80vw;
  margin: 0 auto;
  padding: 24px 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}


/* Desktop-specific login layout adjustments. */
@media (min-width: 901px) {
  .ja-portal-root--login {
    min-height: calc(100vh - 100px);
    box-sizing: border-box;
  }

  .ja-page-wrap--login {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 32px;
  }

  .ja-page-wrap--login .ja-card {
    margin-bottom: 0;
  }

  .ja-portal-footer--login-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 0;
    z-index: 1000;
  }

  .ja-portal-footer--login-fixed .ja-footer-inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 900px) {
  body.admin-bar .ja-portal-header {
    top: 46px;
  }
.ja-brand-lockup {
  align-items: flex-start;
  flex-wrap: wrap;
}
.ja-brand {
  white-space: normal;
  align-items: flex-start;
}
.ja-brand-lockup {
  align-items: center;
}

.ja-brand-divider {
  align-self: center;
}
  .ja-grid2,
  .ja-split2 {
    grid-template-columns: 1fr;
  }

  .ja-actions {
    flex-wrap: wrap;
  }

  .ja-page-wrap {
    padding-top: 32px;
  }

  .ja-login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ja-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ja-form-group label {
    font-weight: 700;
    color: var(--text);
  }

  .ja-form-group input[type="text"],
  .ja-form-group input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--borderStrong);
    border-radius: 10px;
    background: var(--field);
    box-sizing: border-box;
    font: inherit;
  }

  .ja-remember label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
  }
}

.ja-registration-card {
  width: 75%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .ja-registration-card {
    width: 90%;
  }
}

@media (max-width: 640px) {
  .ja-registration-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  body.page-template-page-volunteer-registration .ja-registration-card,
  body.page-template-page-volunteer-registration-ninja .ja-registration-card,
  body.page-template-page-volunteer-registration-ninja-php
    .ja-registration-card {
    width: 90%;
  }
}

@media (max-width: 640px) {
  body.page-template-page-volunteer-registration .ja-registration-card,
  body.page-template-page-volunteer-registration-ninja .ja-registration-card,
  body.page-template-page-volunteer-registration-ninja-php
    .ja-registration-card {
    width: 100%;
  }
}

body.page-template-page-volunteer-registration .ja-name-row {
  display: grid;
  grid-template-columns: 10fr 45fr 45fr;
  gap: 16px;
  align-items: end;
}

body.page-template-page-volunteer-registration .ja-name-row .ja-field {
  margin-bottom: 0;
  min-width: 0;
}

@media (max-width: 768px) {
  body.page-template-page-volunteer-registration .ja-name-row {
    grid-template-columns: 1fr;
  }
}

body.page-template-page-volunteer-registration .ja-two-col-row,
body.page-template-page-volunteer-registration .ja-four-col-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

body.page-template-page-volunteer-registration .ja-two-col-row__col {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}

body.page-template-page-volunteer-registration .ja-four-col-row__col {
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
}

body.page-template-page-volunteer-registration .ja-two-col-row .ja-field,
body.page-template-page-volunteer-registration .ja-four-col-row .ja-field {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  body.page-template-page-volunteer-registration .ja-two-col-row,
  body.page-template-page-volunteer-registration .ja-four-col-row {
    display: block;
  }

  body.page-template-page-volunteer-registration .ja-two-col-row__col,
  body.page-template-page-volunteer-registration .ja-four-col-row__col {
    max-width: 100%;
  }
}

.ja-brand-text {
  display: inline-block;
}

.ja-pill-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--borderStrong);
  border-radius: 999px;
  background: var(--surface);
}

.ja-pill-toggle__btn,
.ja-theme-toggle {
  appearance: none;
  border: 1px solid var(--borderStrong);
  background: var(--btn);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.15s ease;
}

.ja-pill-toggle__btn {
  min-width: 42px;
  padding: 9px 12px;
  border-radius: 999px;
}

.ja-pill-toggle__btn:hover,
.ja-pill-toggle__btn[aria-pressed="true"],
.ja-theme-toggle:hover {
  border-color: var(--btnHoverBorder);
}

.ja-pill-toggle__btn[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
}

.ja-theme-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  justify-content: center;
  font-size: 18px;
}

.ja-notice {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--borderStrong);
  background: var(--surface);
  color: var(--text);
}

.ja-notice-success {
  border-color: rgba(22, 163, 74, 0.32);
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.ja-notice-error {
  border-color: rgba(220, 38, 38, 0.32);
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
}

.ja-notice-warning,

/* Signup/profile warning treatment for charter-specific notices. */
.ja-charter-warning {
  border: 2px solid #e3e24f;
  background: linear-gradient(180deg, #285f74 0%, #22404d 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(34, 64, 77, 0.28), 0 0 0 1px rgba(227, 226, 79, 0.24) inset;
}

.ja-charter-warning h3,
.ja-charter-warning p,
.ja-charter-warning label,
.ja-charter-warning span,
.ja-charter-warning strong {
  color: inherit;
}

.ja-charter-warning h3 {
  color: #22404d;
}

.ja-charter-warning .ja-btn-link.primary {
  background: #e3e24f;
  border-color: #e3e24f;
  color: #22404d;
}

.ja-charter-warning .ja-btn-link.primary:hover,
.ja-charter-warning .ja-btn-link.primary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #22404d;
}

.ja-charter-warning--success {
  border-color: #00763d;
  background: linear-gradient(180deg, #ffffff 0%, #edf8f2 100%);
  color: #22404d;
  box-shadow: 0 18px 40px rgba(0, 118, 61, 0.14), 0 0 0 1px rgba(0, 118, 61, 0.16) inset;
}

.ja-charter-warning--success h3 {
  color: #00763d;
}

.ja-charter-warning--success .ja-btn-link.primary {
  background: #00763d;
  border-color: #00763d;
  color: #ffffff;
}

.ja-charter-warning--success .ja-btn-link.primary:hover,
.ja-charter-warning--success .ja-btn-link.primary:focus-visible {
  background: #285f74;
  border-color: #285f74;
  color: #ffffff;
}

html[data-ja-theme="dark"] .ja-notice-warning,
html[data-ja-theme="dark"] .ja-charter-warning {
  border-color: #e3e24f;
  background: linear-gradient(180deg, #285f74 0%, #22404d 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(227, 226, 79, 0.22) inset;
}

html[data-ja-theme="dark"] .ja-charter-warning h3 {
  color: #e3e24f;
}

html[data-ja-theme="dark"] .ja-charter-warning .ja-btn-link.primary {
  background: #e3e24f;
  border-color: #e3e24f;
  color: #22404d;
}

html[data-ja-theme="dark"] .ja-charter-warning .ja-btn-link.primary:hover,
html[data-ja-theme="dark"] .ja-charter-warning .ja-btn-link.primary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #22404d;
}

html[data-ja-theme="dark"] .ja-charter-warning--success {
  border-color: #00a0af;
  background: linear-gradient(180deg, #22404d 0%, #1f4f5f 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(0, 160, 175, 0.18) inset;
}

html[data-ja-theme="dark"] .ja-charter-warning--success h3 {
  color: #00a0af;
}

html[data-ja-theme="dark"] .ja-charter-warning--success .ja-btn-link.primary {
  background: #00a0af;
  border-color: #00a0af;
  color: #ffffff;
}

html[data-ja-theme="dark"] .ja-charter-warning--success .ja-btn-link.primary:hover,
html[data-ja-theme="dark"] .ja-charter-warning--success .ja-btn-link.primary:focus-visible {
  background: #e3e24f;
  border-color: #e3e24f;
  color: #22404d;
}

html[data-ja-theme="dark"] .ja-notice-success {
  color: #bbf7d0;
}

html[data-ja-theme="dark"] .ja-notice-error {
  color: #fecaca;
}

.ja-registration-panel[hidden] {
  display: none !important;
}

.ja-registration-block-notice {
  margin-top: 18px;
}

.ja-modal__title {
  margin: 0 0 8px;
}


.ja-field-full {
  grid-column: 1 / -1;
}

.ja-form-grid {
  display: block;
}

input[readonly],
textarea[readonly] {
  background: var(--surface);
  color: var(--muted);
}

@media (max-width: 1200px) {
  .ja-page-wrap {
    width: min(100%, 1100px);
    max-width: min(100%, 1100px);
  }

  .ja-portal-nav,
  .ja-footer-inner {
    max-width: min(100%, 1100px);
  }
}

@media (max-width: 900px) {
  .ja-portal-nav {
    max-width: 100%;
    padding: 12px 16px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ja-brand {
    white-space: normal;
    align-items: flex-start;
  }

  .ja-brand-logo {
    width: 56px;
    height: 56px;
  }

  .ja-header-preferences {
    margin-right: 0;
  }

  .ja-actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .ja-page-wrap {
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 24px;
  }

  .ja-card {
    padding: 20px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .ja-portal-nav {
    gap: 14px;
  }

  .ja-brand {
    font-size: 18px;
    gap: 12px;
  }

  .ja-actions {
    gap: 10px;
  }

  .ja-header-preferences {
    width: 100%;
    justify-content: flex-start;
  }

  .ja-pill-toggle__btn,
  .ja-btn-link,
  .ja-btn,
  button.ja-btn-link,
  button.ja-btn {
    min-height: 44px;
  }

  .ja-card {
    padding: 16px;
    border-radius: 16px;
  }

  .ja-section-box {
    padding: 12px;
    border-radius: 14px;
  }

  .ja-view {
    margin-bottom: 28px;
  }

  .ja-view h1 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .ja-sub,
  .ja-footer-inner {
    font-size: 0.95rem;
  }
}

/* Opportunity filtering controls. */
/* Opportunity filters layout */
.ja-opportunity-filters-grid {
  grid-template-columns: 1fr 2fr 1fr 1fr;
  align-items: start;
}

.ja-opportunity-filters-grid > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ja-opportunity-filters-grid > div label {
  margin: 0 0 6px;
}

.ja-opportunity-filters-grid input[type="range"] {
  width: 100%;
}


/* Map/calendar tab layout and custom calendar styling. */
/* Map and calendar tabs */
.ja-map-box {
  padding-top: 8px;
}

.ja-map-tabs {
  display: flex;
  gap: 8px;
  min-height: 36px;
  width: 100%;
}

.ja-map-tab {
  flex: 1 1 0;
  width: calc(50% - 4px);
  appearance: none;
  border-top: 1px solid var(--borderStrong);
  border-left: 1px solid var(--borderStrong);
  border-right: 1px solid var(--borderStrong);
  border-bottom: none;
  background: var(--btn);
  color: var(--text);
  border-radius: 10px 10px 0 0;
  padding: 4px 12px;
  min-height: 28px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.1;
}

.ja-map-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.ja-map-panel {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
}

.ja-map-panel.is-active {
  display: flex;
  flex-direction: column;
}

.ja-map-panel.is-active#jaCalendarPanel {
  display: flex;
  flex-direction: column;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--border);
}

.ja-calendar-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ja-calendar-month {
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
}

.ja-calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 18px repeat(5, 160px);
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
  align-content: start;
}

.ja-calendar-weekday {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.ja-calendar-day {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2px;
  height: 160px;
  box-sizing: border-box;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  background: var(--surface);
  min-height: 0;
  overflow-x: hidden;
}

.ja-calendar-day-number {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 0.9rem;
}

.ja-calendar-day-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/*.ja-calendar-day {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2px;
  max-height: 160px;
  box-sizing: border-box;
  display: flex;
  background: var(--surface);
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.ja-calendar-day-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
*/

@media (max-width: 768px) {
  .ja-calendar-toolbar {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "month month"
      "prev next";
    gap: 10px;
  }

  .ja-calendar-toolbar #jaCalendarMonthLabel {
    grid-area: month;
    text-align: center;
  }

  .ja-calendar-toolbar #jaCalendarPrev {
    grid-area: prev;
    justify-content: center;
  }

  .ja-calendar-toolbar #jaCalendarNext {
    grid-area: next;
    justify-content: center;
  }

  .ja-calendar-grid {
    display: block;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 0;
  }

  .ja-calendar-weekday,
  .ja-calendar-day.is-empty {
    display: none;
  }

  .ja-calendar-day {
    min-height: 240px;
    height: auto;
    padding: 10px;
    overflow: hidden;
  }

  .ja-calendar-day--mobile {
    width: 100%;
  }

  .ja-calendar-day-number {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .ja-calendar-day-items {
    gap: 8px;
  }

  .ja-calendar-item,
  .ja-calendar-empty {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .ja-calendar-item {
    padding: 8px 10px;
  }
}

.ja-calendar-day.is-empty {
  background: transparent;
  border: none;
}

.ja-calendar-day-number {
  font-weight: 700;
  font-size: 0.9rem;
}

.ja-calendar-day-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ja-calendar-item {
  appearance: none;
  border: 1px solid var(--borderStrong);
  background: #c3edef;
  color: var(--text);
  border-radius: 8px;
  padding: 4px 6px;
  text-align: left;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.ja-calendar-item.is-selected {
  background: var(--oppCardSelectedBg);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(40, 95, 116, 0.18);
}

.ja-calendar-empty {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .ja-opportunity-filters-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .ja-opportunity-filters-grid {
    grid-template-columns: 1fr;
  }

  .ja-map-panel {
    overflow-x: hidden;
  }
}

.ja-opp-card {
  position: relative;
}

.ja-opp-card__body {
  /*  padding-bottom: 58px;*/
}

.ja-opp-card__actions {
  position: absolute;
  right: 24px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}
.ja-opp-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

#gOppListContainer {
  overflow-x: hidden;
}

html[data-ja-theme="dark"] .gm-style .gm-style-iw-d,
html[data-ja-theme="dark"] .gm-style .gm-style-iw-d > div,
html[data-ja-theme="dark"] .gm-style .gm-style-iw-d > div > div,
html[data-ja-theme="dark"] .gm-style .gm-style-iw-c,
html[data-ja-theme="dark"] .gm-style .gm-style-iw-c > div,
html[data-ja-theme="dark"] .gm-style .gm-style-iw-c > div > div {
  color: #111827 !important;
}

/* Additional list controls, modal styles, and profile history components. */
.ja-opportunity-name-filter {
  margin: 0 0 12px;
}

.ja-opportunity-name-filter label {
  margin: 0 0 6px;
}

.ja-opportunity-name-filter select {
  width: 100%;
}

[data-ninja-form-lang][hidden] {
  display: none !important;
}

body.ja-modal-open {
  overflow: hidden;
}

.ja-modal[hidden] {
  display: none !important;
}

.ja-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ja-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ja-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--borderStrong);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ja-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ja-modal__content {
  margin-top: 12px;
}

.ja-modal__content > :first-child {
  margin-top: 0;
}

.ja-modal__content > :last-child {
  margin-bottom: 0;
}

.ja-btn-row--end {
  justify-content: flex-end;
}
.ja-history-groups {
  display: grid;
  gap: 16px;
}

.ja-history-group {
  padding: 14px;
  border: 1px solid var(--borderStrong);
  border-radius: 16px;
  background: var(--surface2);
}

.ja-history-group__title {
  margin: 0 0 12px;
}

.ja-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ja-history-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

.ja-history-item__main {
  flex: 1 1 auto;
  min-width: 0;
}

.ja-history-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}


.ja-history-item__title {
  display: block;
  margin-bottom: 8px;
}

.ja-history-item__meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.ja-history-item__actions {
  flex: 0 0 auto;
}

.ja-history-empty {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .ja-history-item {
    flex-direction: column;
  }

  .ja-history-item__actions {
    display: flex;
    width: 100%;
  }

  .ja-history-item__calendar-link {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    padding: 10px 12px;
  }
}

/* Profile-page account-status badge styles. */
.ja-profile-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.ja-profile-header-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 0 1 auto;
	margin-inline: auto;
}

.ja-profile-header-status__label {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	color: #22404D; /* Immersive Blue-Black */
	white-space: nowrap;
}

.ja-account-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(34, 64, 77, 0.08);
	text-align: center;
}

.ja-account-status-badge__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.ja-account-status-badge__icon svg {
	display: block;
	width: 22px;
	height: 22px;
}

.ja-account-status-badge__text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* Pending = grey */
.ja-account-status-badge--pending {
	color: #475569;
	background: #F1F5F9;
	border-color: #CBD5E1;
}

.ja-account-status-badge--pending .ja-account-status-badge__icon {
	color: #64748B;
}

.ja-account-status-badge--pending .ja-account-status-badge__text {
	color: #475569;
}

/* Approved = JA Boundless Blue */
.ja-account-status-badge--approved {
	color: #285F74;
	background: #EAF2F5;
	border-color: #285F74;
}

.ja-account-status-badge--approved .ja-account-status-badge__icon {
	color: #285F74;
}

.ja-account-status-badge--approved .ja-account-status-badge__text {
	color: #285F74;
}

.ja-account-status-badge--compact {
	min-height: 36px;
	padding: 0 12px;
	font-size: 0.88rem;
}

.ja-account-status-badge--interested {
	color: #475569;
	background: #F1F5F9;
	border-color: #CBD5E1;
}

.ja-account-status-badge--interested .ja-account-status-badge__icon,
.ja-account-status-badge--interested .ja-account-status-badge__text {
	color: #64748B;
}

.ja-account-status-badge--assigned {
	color: #285F74;
	background: #EAF2F5;
	border-color: #285F74;
}

.ja-account-status-badge--assigned .ja-account-status-badge__icon,
.ja-account-status-badge--assigned .ja-account-status-badge__text {
	color: #285F74;
}

.ja-account-status-badge--cancelled {
	color: #9F1239;
	background: #FFF1F2;
	border-color: #FDA4AF;
}

.ja-account-status-badge--cancelled .ja-account-status-badge__icon,
.ja-account-status-badge--cancelled .ja-account-status-badge__text {
	color: #9F1239;
}


@media (max-width: 900px) {
	.ja-profile-title-row {
		justify-content: center;
	}

	.ja-profile-title-row > h1,
	.ja-profile-title-row > .ja-btn-link,
	.ja-profile-header-status {
		width: 100%;
	}

	.ja-profile-title-row > h1 {
		text-align: center;
	}

	.ja-profile-header-status {
		justify-content: center;
		flex-wrap: wrap;
	}

	.ja-profile-title-row > .ja-btn-link {
		text-align: center;
	}
}

.ja-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ja-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.ja-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 0;
}

/* Okta widget centering */
#okta-login-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

#okta-login-container .okta-sign-in,
#okta-login-container .auth-container.main-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto !important;
  box-sizing: border-box;
}

/* Keep widget centered inside the login box */
.ja-page-wrap--login .ja-section-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ja-page-wrap--login #okta-login-container,
.ja-page-wrap--login #okta-login-error {
  width: 100%;
  max-width: 420px;
}

/* Mobile tuning */
@media (max-width: 640px) {
  .ja-page-wrap--login .ja-section-box {
    padding-left: 0;
    padding-right: 0;
  }

  #okta-login-container .okta-sign-in,
  #okta-login-container .auth-container.main-container {
    max-width: 100%;
    margin: 0 auto !important;
  }

  #okta-login-container .okta-form-title,
  #okta-login-container .o-form-head {
    text-align: center;
  }
}

/* Okta widget primary button */
#okta-login-container #okta-sign-in.auth-container .button.button-primary,
#okta-login-container #okta-sign-in.auth-container input.button.button-primary,
#okta-login-container #okta-sign-in.auth-container .o-form-button-bar .button.button-primary {
  background: var(--primary) !important;
  background-image: none !important;
  border: 1px solid var(--primary) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* Okta Hover / focus */
#okta-login-container #okta-sign-in.auth-container .button.button-primary:hover,
#okta-login-container #okta-sign-in.auth-container .button.button-primary:focus,
#okta-login-container #okta-sign-in.auth-container input.button.button-primary:hover,
#okta-login-container #okta-sign-in.auth-container input.button.button-primary:focus,
#okta-login-container #okta-sign-in.auth-container .o-form-button-bar .button.button-primary:hover,
#okta-login-container #okta-sign-in.auth-container .o-form-button-bar .button.button-primary:focus {
  background: var(--primary) !important;
  background-image: none !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  filter: brightness(0.92);
  box-shadow: none !important;
}
/* Ninja Forms 5/6 registration rows: keep same-row labels and controls top-aligned. */
#nf-form-5-cont .nf-row,
#nf-form-6-cont .nf-row {
  align-items: flex-start;
}

#nf-form-5-cont .nf-row .nf-cell,
#nf-form-6-cont .nf-row .nf-cell {
  align-self: flex-start;
  vertical-align: top;
}

#nf-form-5-cont .field-wrap,
#nf-form-6-cont .field-wrap,
#nf-form-5-cont .nf-field-container,
#nf-form-6-cont .nf-field-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#nf-form-5-cont .nf-field-label,
#nf-form-6-cont .nf-field-label {
  display: flex;
  align-items: flex-start;
  min-height: 5.75rem;
}

#nf-form-5-cont .nf-field-label label,
#nf-form-6-cont .nf-field-label label {
  margin-top: 0;
}

#nf-form-5-cont .nf-field-element,
#nf-form-6-cont .nf-field-element {
  align-self: stretch;
  margin-top: 0;
  vertical-align: top;
}

#nf-form-5-cont .nf-field-element ul,
#nf-form-6-cont .nf-field-element ul,
#nf-form-5-cont .list-select-wrap .nf-field-element,
#nf-form-6-cont .list-select-wrap .nf-field-element,
#nf-form-5-cont .list-checkbox-wrap .nf-field-element,
#nf-form-6-cont .list-checkbox-wrap .nf-field-element,
#nf-form-5-cont .list-radio-wrap .nf-field-element,
#nf-form-6-cont .list-radio-wrap .nf-field-element {
  margin-top: 0;
}

/* JA Campus-inspired Ninja Forms multi-part breadcrumbs and part titles. */
body.page-template-page-volunteer-registration-ninja .nf-mp-header > div,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div,
body.page-slug-volunteer-registration .nf-mp-header > div,
body.page-id-34 .nf-mp-header > div {
  display: flex;
  flex-direction: column;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div h3,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div h3,
body.page-slug-volunteer-registration .nf-mp-header > div h3,
body.page-id-34 .nf-mp-header > div h3 {
  order: 0;
  margin: 2rem 0 1.25rem;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--text);
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs {
  order: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 2rem !important;
  padding: 0 !important;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs::after,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs::after,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs::after,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs::after {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  z-index: 0;
  width: calc(100% + 2rem);
  height: 5px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #285f74 0 14px, transparent 14px 24px);
  opacity: 0.55;
  pointer-events: none;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li.nf-breadcrumb,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li.nf-breadcrumb,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li.nf-breadcrumb,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li.nf-breadcrumb {
  flex: 1 1 0;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li a,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li a,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li a,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin: 0 !important;
  padding: 10px;
  border: 2px solid #285f74;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li a:hover,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li a:hover,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li a:hover,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li a:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), #e3e368;
  text-decoration: none;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li.active a,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li.active a,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li.active a,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li.active a {
  border-color: #262626;
  background: #285f74;
  color: #fff;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li.active ~ li a,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li.active ~ li a,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li.active ~ li a,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li.active ~ li a {
  border-color: #262626;
  background: #ebebeb;
  color: #262626;
}

body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li.errors a,
body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li.errors a,
body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li.errors a,
body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li.errors a {
  cursor: default;
}

@media (max-width: 760px) {
  body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs,
  body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs,
  body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs,
  body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs::after,
  body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs::after,
  body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs::after,
  body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs::after {
    content: none;
  }

  body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li,
  body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li,
  body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li,
  body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li {
    width: calc(50% - 0.375rem);
  }

  body.page-template-page-volunteer-registration-ninja .nf-mp-header > div ul.nf-breadcrumbs li a,
  body.page-template-page-volunteer-registration-ninja-php .nf-mp-header > div ul.nf-breadcrumbs li a,
  body.page-slug-volunteer-registration .nf-mp-header > div ul.nf-breadcrumbs li a,
  body.page-id-34 .nf-mp-header > div ul.nf-breadcrumbs li a {
    width: 100%;
  }
}
