@charset "UTF-8";
/*!
 * ----------------------------------------------------------------------------
 * DO NOT MODIFY THIS FILE DIRECTLY. THIS IS A MANANGED, COMPILED FILE.
 * ----------------------------------------------------------------------------
 * This file is compiled Sass. Please read the documentation in Github for
 * instructions how to set up the repo locally to make any CSS edits.
 * ----------------------------------------------------------------------------
 */
:root {
  --font-default: benton-sans, sans-serif;
}

/**
 * Variables are defined and inserted into the root var to prevent having to
 * namespace the variable in the actual selector declaration values
 */
:root, [data-theme=default] {
  --color-accent: #009dbf;
  --color-white: #fff;
  --color-black: #222;
  --color-grey-100: #333;
  --color-grey-200: #3a3a3a;
  --color-grey-300: #656565;
  --color-grey-400: #999;
  --color-grey-500: #a3a3a3;
  --color-grey-600: #cfcfcf;
  --color-grey-700: #ddd;
  --color-grey-800: #eee;
  --color-grey-900: #f5f5f5;
  --color-blue-100: #1588bd;
  --color-blue-300: #278ebf;
  --color-blue-400: #3b98c5;
  --color-blue-600: #b6daeb;
  --color-blue-900: #ebf4fb;
  --color-green: #97c203;
  --color-green-200: #1ab16c;
  --color-red: #cd0a0a;
  --color-orange: #e4bf81;
  --rgb-white: 255, 255, 255;
  --rgb-black: 34, 34, 34;
  --rgb-dark-grey: 51, 51, 51;
  --rgb-blue: 59, 152, 197;
}

:root, [data-theme=default] {
  --text-color: var(--color-grey-100);
  --text-dark: var(--color-grey-100);
  --text-medium: var(--color-grey-400);
  --text-light: var(--color-grey-600);
  --text-note: var(--color-grey-400);
  --text-table-heading: var(--color-grey-100);
  --text-table: var(--color-grey-100);
  --color-body: var(--color-grey-900);
  --color-content: var(--color-white);
  --color-panel: var(--color-white);
  --color-sidebar: var(--color-grey-900);
  --color-header: var(--color-grey-100);
  --color-mobile-nav: var(--color-grey-100);
  --color-note-block: var(--color-blue-900);
  --color-top-nav: var(--color-grey-900);
  --color-nav--hover: var(--color-grey-300);
  --link-text: var(--color-accent);
  --link-text--hover: var(--color-grey-100);
  --button-primary: var(--color-blue-400);
  --button-primary-hover: var(--color-blue-300);
  --button-grey: var(--color-grey-500);
  --button-grey-light: var(--color-grey-800);
  --button-grey-dark: var(--color-grey-200);
  --button-green: var(--color-green);
  --button-green-hover: var(--color-green);
  --button-light-blue: var(--color-blue-600);
  --button-light-blue-hover: var(--color-blue-400);
  --button-grey-hollow: var(--color-grey-300);
  --border-default: var(--color-grey-600);
  --border-dark: var(--color-grey-300);
  --border-medium: var(--color-grey-700);
  --border-light: var(--color-grey-800);
  --border-error: var(--color-red);
  --form-text-color: var(--color-grey-100);
  --form-border: var(--color-grey-600);
  --form-section-border: var(--color-grey-800);
  --form-background: var(--color-grey-900);
  --form-controls: var(--color-grey-100);
}

:root {
  --text-default: 16px;
  --line-height-base: 1.6;
  --table-text: 15px;
  --form-text: 16px;
  --form-field: 16px;
  --form-label: 15px;
  --form-label-weight: 600;
  --button-text: 17px;
}

@media screen and ( min-width: 768px ) {
  :root {
    --text-default: 15px;
    --form-text: 15px;
    --button-text: 16px;
  }
}
:root {
  --header-height: 60px;
  --logo-width: 180px;
  --logo-height: 60px;
  --border-radius: 4px;
  --icon-size: 50px;
  --icon-size-md: 85px;
  --icon-img-sm: 24px;
  --icon-img-md: 40px;
  --margin-text: 14px;
  --margin-section: 30px;
  --margin-section--small: 20px;
  --margin-section--large: 40px;
  --margin-nav: 14px;
  --margin-form: 14px;
  --margin-form-label: 8px;
  --margin-grantee-card: 14px;
  --charity-image-full: 60px;
  --charity-image-space: 80px;
  --label-inline-width: 17%;
  --modal-scaled: 85%;
  --modal-wide: 850px;
  --modal-large: 740px;
  --modal-medium: 670px;
  --modal-small: 500px;
  --box-shadow-button: 0 7px 15px 0 rgba(var(--rgb-dark-grey), 0.3);
  --box-shadow-icon: 0 2px 7px 0 rgba(var(--rgb-black), 0.3);
  --box-shadow-dialog: 0 0 20px rgba(var(--rgb-black), 0.4);
  --box-shadow-tooltip: 0 0 25px rgba(var(--rgb-dark-grey), 0.3);
}

@media screen and ( min-width: 768px ) {
  :root {
    --header-height: 85px;
    --logo-width: 201px;
    --logo-height: 85px;
    --charity-image-full: 80px;
    --charity-image-space: 100px;
  }
}
html {
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

@-ms-viewport {
  width: device-width;
}
body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

progress {
  vertical-align: baseline;
}

[hidden],
template {
  display: none;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

a {
  background-color: transparent;
}
a:hover, a:active {
  outline-width: 0;
}

strong,
b {
  font-weight: inherit;
}

strong,
b {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  color: #000;
  background-color: #ff0;
}

ol,
ul {
  padding: 0;
}

ol,
ul,
li {
  list-style: none;
}

abbr[title],
acronym[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: none;
}

code,
pre,
kbd,
samp {
  font-family: monospace, monospace;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
}

p {
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

[src=""] {
  visibility: hidden;
}

input,
textarea,
select,
optgroup,
button {
  color: inherit;
  font: inherit;
  font-size: 100%;
  margin: 0;
  display: inline-block;
  outline: 0;
}

input,
select,
button {
  vertical-align: middle;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
input[disabled],
button[disabled] {
  cursor: default;
}

input {
  line-height: normal;
}
input[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
input[type=checkbox], input[type=radio] {
  padding: 0;
}

button {
  overflow: visible;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

legend {
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
}

.ncf-page .nx-page {
  position: relative;
}
.ncf-page .nx-page,
.ncf-page .nx-page .nx-page-content {
  padding: 0;
  background: transparent;
}
.ncf-page .blockOverlay {
  background-color: var(--color-white) !important;
  opacity: 0.7 !important;
}
.ncf-page .blockMsg {
  color: var(--color-white) !important;
  font-family: var(--font-default) !important;
  font-size: var(--text-default) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  padding: 10px 15px !important;
  border-radius: var(--border-radius) !important;
  width: auto !important;
  background-color: var(--color-grey-400);
  opacity: 0.75 !important;
}
.ncf-page .ui-block--full.blockMsg {
  width: 30% !important;
  top: 200px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ncf-page .ui-block--box.blockMsg {
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ncf-page .ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: none;
  background-color: var(--color-black);
}
.ncf-page .ui-datepicker select {
  padding: 0;
  width: 45%;
  display: inline-block;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
  background: none;
  background-color: var(--color-white);
}
.ncf-page .nx-buttonset .ui-button {
  padding: 5px 6px;
  display: inline-block;
  cursor: pointer;
}
.ncf-page .nx-buttonset .ui-button.first, .ncf-page .nx-buttonset .ui-button.last {
  display: none;
}
.ncf-page .nx-editor .required textarea,
.ncf-page .nx-editor .required input,
.ncf-page .nx-editor .required select,
.ncf-page .nx-editor .required button.ui-multiselect {
  border: 1px solid var(--border-default);
}
.ncf-page .nx-editor-header {
  display: none !important;
}
.ncf-page .nx-field {
  position: relative;
}
.ncf-page .nx-field .flex-text-wrap {
  height: auto;
}
.ncf-page .nx-field .flex-text-wrap pre {
  display: none;
}
.ncf-page .nx-field .flex-text-wrap textarea {
  position: relative;
}
.ncf-page .nx-field textarea {
  min-height: auto;
}
.ncf-page .nx-field select {
  max-width: none;
}
.ncf-page .nx-radio {
  float: none !important;
}
.ncf-page .nx-page {
  margin-top: 0;
}
@media screen and ( max-width: 767px ) {
  .ncf-page .nx-page .nx-panel {
    width: 100% !important;
  }
}
.ncf-page .nx-template {
  word-break: break-word;
}
.ncf-page .nx-template .nx-field,
.ncf-page .nx-template .nx-fieldtext {
  display: inline;
}
.ncf-page .nx-error {
  color: var(--color-white);
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 9px;
  border-radius: var(--border-radius);
  clear: both;
  cursor: pointer;
  background-color: var(--color-red);
}
.ncf-page .nx-error p {
  margin: 0;
}
.ncf-page .nx-status {
  display: none !important;
}
.ncf-page .nx-editor.sk-buttonset .nx-messages,
.ncf-page .nx-editor.sk-buttonset .nx-editor-contents {
  margin: 0 !important;
}
.ncf-page .button-container .nx-editor-header {
  margin: 0;
  display: block !important;
}
.ncf-page .nx-basicfieldeditor-column {
  display: block;
}
.ncf-page .nx-basicfieldeditor-section {
  margin: 0 !important;
  background: transparent;
}
.ncf-page .nx-basicfieldeditor-section-header {
  display: none;
}
.ncf-page .nx-basicfieldeditor-section-body {
  padding-bottom: 0;
}
.ncf-page .nx-basicfieldeditor-section-body > .nx-field {
  margin: 0 !important;
}
.ncf-page .nx-basicfieldeditor-item {
  padding: 0;
  border: 0;
  background: none;
}
.ncf-page .nx-basicfieldeditor-item > .nx-field {
  margin: 0 !important;
}
.ncf-page .nx-basicfieldeditor-item-label {
  padding: 0;
}
.ncf-page .nx-skootable-data {
  margin: 0;
  width: 100%;
}
.ncf-page .nx-skootable-data thead td {
  border: 0;
  background-color: var(--color-white);
}
.ncf-page .nx-skootable-data thead td:first-child div {
  margin: 0 !important;
}
.ncf-page .nx-skootable-data .nx-skootable-rowselect {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.ncf-page .nx-skootable-data .sk-drawer-handle {
  display: none;
  background-color: transparent;
}
.ncf-page .nx-skootable-data .nx-item-drawer,
.ncf-page .nx-skootable-data tr:nth-child(odd) td.nx-item-drawer {
  border-bottom: none;
}
.ncf-page .nx-skootable-data .nx-skootable-buttonicon {
  display: none !important;
}
.ncf-page table .deleted {
  display: none;
}

body {
  color: var(--color-black);
  font-family: var(--font-default);
  font-size: var(--text-default);
  font-style: normal;
  font-weight: normal;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a:hover {
  color: var(--color-grey-100);
  text-decoration: none;
}

p {
  line-height: var(--line-height-base);
  margin-bottom: var(--margin-text);
}

ul {
  line-height: var(--line-height-base);
  margin: 0 0 var(--margin-text) 0;
}

address {
  font-style: normal;
  line-height: var(--line-height-base);
  margin-bottom: var(--margin-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-weight: 400;
}

h5 {
  font-size: 17px;
  font-weight: 500;
}

h6 {
  font-size: 15px;
}

.page-title {
  margin-bottom: var(--margin-section);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-default);
}

.page-title__heading {
  color: var(--text-color);
  font-weight: 300;
  margin-bottom: 0 !important;
}

.page-title__date {
  color: var(--text-medium);
  font-size: 13px;
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
}

.block-heading {
  font-weight: 600;
  margin-bottom: var(--margin-form-label);
}
.block-heading a,
.block-heading span {
  font-weight: 400;
}

.block-heading--inline {
  margin: 0 var(--margin-form-label) 0 0;
  display: inline-block;
}
@media screen and ( max-width: 767px ) {
  .block-heading--inline {
    margin-bottom: var(--margin-form-label);
  }
}

.section-heading {
  margin-bottom: var(--margin-text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
}
.section-heading.no-border {
  margin-bottom: 0;
  border-bottom: 0;
}
.section-heading.is-hidden {
  display: none;
}
.section-heading h2 {
  font-size: 21px;
  font-weight: 400;
  display: inline-block;
}

.section-heading--box {
  padding: 9px 13px 5px 13px;
  border: 0;
  background-color: var(--color-grey-900);
}

@media screen and ( max-width: 767px ) {
  .section-heading--mobile-box {
    padding: 9px 13px 5px 13px;
    border: 0;
    background-color: var(--color-grey-900);
  }
  .section-heading--mobile-box h2 {
    font-size: 17px;
    font-weight: 500;
  }
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-body);
}
@media screen and ( max-width: 767px ) {
  body {
    background: var(--color-black);
  }
}

canvas {
  image-rendering: optimizeQuality;
  -ms-interpolation-mode: bicubic;
}

.ncf-main {
  padding-bottom: 40px;
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and ( min-width: 1025px ) {
  .ncf-main {
    padding-bottom: 63px;
  }
}

body:after {
  content: "";
  position: fixed; /* stretch a fixed position to the whole screen */
  top: 0;
  height: 100vh; /* fix for mobile browser address bar appearing disappearing */
  left: 0;
  right: 0;
  z-index: -1; /* needed to keep in the background */
  background-color: var(--color-grey-800);
  background-image: url(/resource/gximages/page-background.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-container {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media screen and ( min-width: 768px ) {
  .page-container {
    max-width: 1080px;
  }
}
.page-container .nx-page {
  padding: 0;
}

.page-container--content,
.page-container--account {
  margin-bottom: var(--margin-section--small);
  padding: 40px 14px 0 14px;
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .page-container--content,
.page-container--account {
    padding: 40px 24px 0 24px;
  }
}
@media screen and ( min-width: 1025px ) {
  .page-container--content,
.page-container--account {
    padding: 40px 0 0 0;
  }
}

.page-container__group {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and ( min-width: 768px ) {
  .page-container__group {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.page-container--login {
  padding: 40px 20px 0 20px;
}
@media screen and ( min-width: 768px ) {
  .page-container--login {
    padding: 80px 0 0 0;
  }
}

@media screen and ( min-width: 768px ) {
  .page-container--login,
.page-container--login-footer {
    max-width: 450px;
  }
}

.page-content {
  padding: 25px 20px 20px 20px;
  width: 100%;
  background-color: var(--color-content);
}
@media screen and ( min-width: 1025px ) {
  .page-content {
    padding: 40px;
  }
}

@media screen and ( min-width: 1025px ) {
  .page-panel__primary {
    width: 63%;
  }
}
@media screen and ( max-width: 1024px ) {
  .has-sidebar .page-panel__primary {
    margin-bottom: var(--margin-section);
  }
}

@media screen and ( max-width: 1024px ) {
  .page-panel__secondary {
    display: none;
  }
}
@media screen and ( min-width: 1025px ) {
  .page-panel__secondary {
    margin-left: auto;
    width: 33%;
  }
}
.has-sidebar .page-panel__secondary {
  display: block;
}

.page-panel__section {
  margin-bottom: var(--margin-section);
}
.page-panel__section.is-last {
  margin: 0;
}

.page-panel--tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and ( max-width: 1024px ) {
  .page-panel--tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and ( min-width: 1025px ) {
  .page-panel--tabs > .ui-tabs-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
.page-panel--tabs > .ui-tabs-panel {
  min-height: 450px;
}
@media screen and ( max-width: 1024px ) {
  .page-panel--tabs > .ui-tabs-panel {
    padding: 0;
    border: 0;
  }
}
@media screen and ( min-width: 1025px ) {
  .page-panel--tabs > .ui-tabs-panel {
    padding: 0 0 0 30px;
    border-left: 1px solid var(--border-default);
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.group::before, .group::after {
  content: "";
  line-height: 0;
  display: table;
}
.group::after {
  clear: both;
}

.text-block {
  margin-bottom: var(--margin-section--small);
}

@media screen and ( min-width: 1025px ) {
  .sidebar-column__container {
    padding: 25px;
    background-color: var(--color-sidebar);
  }
}

.sidebar-column__snippet p:last-child {
  margin: 0;
}

.stories-sidebar {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and ( max-width: 767px ) {
  .stories-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .stories-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.stories-sidebar__item {
  margin-bottom: 25px;
}
@media screen and ( min-width: 1025px ) {
  .stories-sidebar__item {
    margin-bottom: 32px;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .stories-sidebar__item {
    margin: 0;
  }
  .stories-sidebar__item:nth-child(3) {
    display: none;
  }
}
.stories-sidebar__item:last-child {
  margin: 0;
}

.stories-sidebar__card {
  display: grid;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
}
.stories-sidebar__card .stories-sidebar__image {
  grid-column: 1/2;
}
.stories-sidebar__card:hover .title {
  text-decoration: underline;
}
.stories-sidebar__card .title {
  line-height: 1.2;
}

.stories-sidebar__hero-card {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.stories-sidebar__hero-card .stories-sidebar__image,
.stories-sidebar__hero-card .stories-sidebar__item-info {
  grid-row: 1/2;
}
.stories-sidebar__hero-card .stories-sidebar__image {
  aspect-ratio: initial;
}
.stories-sidebar__hero-card .stories-sidebar__image-overlay {
  display: block;
}
.stories-sidebar__hero-card .stories-sidebar__item-info {
  height: auto;
  grid-column: 1/2;
  align-self: flex-end;
}
.stories-sidebar__hero-card .title {
  color: var(--color-white);
  font-size: 20px;
  padding: 16px;
  display: block;
}
@media screen and ( min-width: 1025px ) {
  .stories-sidebar__hero-card .title {
    font-size: 18px;
  }
}
.stories-sidebar__hero-card .author {
  display: none;
}

.stories-sidebar__small-card {
  grid-template-columns: 40% 1fr;
}
.stories-sidebar__small-card .stories-sidebar__image,
.stories-sidebar__small-card .stories-sidebar__item-info {
  grid-row: 1/3;
}
.stories-sidebar__small-card .stories-sidebar__image {
  aspect-ratio: 1/1;
}
.stories-sidebar__small-card .stories-sidebar__item-info {
  height: 100%;
  grid-column: 2/3;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stories-sidebar__small-card .title {
  color: var(--link-text);
  font-size: 18px;
}
@media screen and ( min-width: 1025px ) {
  .stories-sidebar__small-card .title {
    font-size: 16px;
  }
}
.stories-sidebar__small-card .author {
  color: var(--text-medium);
  display: block;
  font-size: 14px;
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .stories-sidebar__small-card:first-child {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .stories-sidebar__small-card:first-child .stories-sidebar__image,
.stories-sidebar__small-card:first-child .stories-sidebar__item-info {
    grid-row: 1/2;
  }
  .stories-sidebar__small-card:first-child .stories-sidebar__image {
    aspect-ratio: initial;
  }
  .stories-sidebar__small-card:first-child .stories-sidebar__image-overlay {
    display: block;
  }
  .stories-sidebar__small-card:first-child .stories-sidebar__item-info {
    height: auto;
    grid-column: 1/2;
    align-self: flex-end;
  }
  .stories-sidebar__small-card:first-child .title {
    color: var(--color-white);
    font-size: 20px;
    padding: 16px;
    display: block;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) and ( min-width: 1025px ) {
  .stories-sidebar__small-card:first-child .title {
    font-size: 18px;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .stories-sidebar__small-card:first-child .author {
    display: none;
  }
}

.stories-sidebar__image {
  padding: 33% 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.stories-sidebar__image-overlay {
  width: 100%;
  height: 100%;
  display: none;
  grid-column: 1/2;
  grid-row: 1/2;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(30%, hsla(0deg, 0%, 0%, 0.7)), color-stop(70%, transparent));
  background-image: linear-gradient(to top, hsla(0deg, 0%, 0%, 0.7) 30%, transparent 70%);
}

.stories-sidebar__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar-column__image {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sidebar-column__sub-title {
  font-size: 20px;
  line-height: 28px;
}
.sidebar-column__sub-title a {
  color: var(--color-accent);
}
.sidebar-column__sub-title a:hover {
  color: var(--text-color);
}

.page-header {
  border: 0;
  height: var(--header-height);
  background-color: var(--color-header);
}
@media screen and ( max-width: 1024px ) {
  .page-header .page-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-header--link {
  color: var(--color-white);
  font-size: 17px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-header--link:hover {
  color: var(--link-text) !important;
}
@media screen and ( max-width: 767px ) {
  .page-header--link {
    display: none;
  }
}

.ncf-logo-container {
  position: relative;
}

.ncf-logo {
  width: var(--logo-width);
  height: var(--logo-height);
  display: block;
  background-image: url(/resource/gximages/ncf-logo.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-footer {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  padding: 30px 14px 20px 14px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(var(--rgb-black), 1)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(var(--rgb-black), 1) 100%);
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .page-footer {
    padding: 30px 24px 20px 24px;
  }
}
@media screen and ( min-width: 1025px ) {
  .page-footer {
    padding: 30px 0 20px 0;
  }
}
.page-footer p {
  line-height: 1;
  margin: 0;
}

.page-footer__body {
  color: var(--color-white);
  font-size: 13px;
}
.page-footer__body a {
  color: var(--color-white);
}
.page-footer__body a:hover {
  color: var(--color-grey-600);
}

.ncf-quicknav {
  height: 44px;
  background-color: var(--color-top-nav);
}
@media screen and ( max-width: 767px ) {
  .ncf-quicknav {
    display: none;
  }
}
.ncf-quicknav a {
  cursor: pointer;
}

.ncf-quicknav__container {
  color: var(--color-black);
  font-size: 14px;
  line-height: 44px;
}
.ncf-quicknav__container a {
  color: var(--color-grey-300);
  margin: 0;
}
.ncf-quicknav__container a:hover {
  color: var(--link-text);
}

.ncf-quicknav__contact {
  position: relative;
}

.ncf-quicknav__settings {
  margin-left: auto;
}
.ncf-quicknav__settings .profile-logout {
  display: inline-block;
}
.ncf-quicknav__settings .profile-logout a {
  color: var(--link-text);
  font-weight: 700;
}
.ncf-quicknav__settings .profile-logout a:hover {
  color: var(--link-text--hover);
}

.ncf-quicknav__divider {
  margin: 0 8px;
  width: 1px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  background-color: var(--color-grey-400);
}

.ncf-quicknav__column {
  position: absolute;
  top: 0;
}

.ncf-quicknav__column--contact {
  left: 40px;
}

.ncf-quicknav__column--settings {
  right: 40px;
}

.ncf-navigation {
  margin-left: auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and ( max-width: 1024px ) {
  .ncf-navigation {
    display: none;
  }
}

.ncf-navigation__item {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 22px 0 0 0;
  width: 105px;
  height: 85px;
  display: block;
  float: left;
  position: relative;
  cursor: pointer;
  background-repeat: no-repeat;
}
.ncf-navigation__item:hover, .ncf-navigation__item.is-active {
  background-color: var(--color-nav--hover);
}
.ncf-navigation__item::before {
  content: "";
  border-left: 1px solid rgba(var(--rgb-white), 0.2);
  width: 1px;
  height: 85px;
  position: absolute;
  top: 0;
  left: 0;
}
.ncf-navigation__item img {
  margin-bottom: 7px;
  height: 22px;
}
.ncf-navigation__item span {
  color: var(--color-white);
  display: block;
}

.ncf-navigation__item--search::after {
  content: "";
  border-left: 1px solid rgba(var(--rgb-white), 0.2);
  width: 1px;
  height: 85px;
  position: absolute;
  top: 0;
  right: 0;
}

.mobile-nav__icon {
  margin-left: auto;
  padding: 10px 0;
  display: block;
  cursor: pointer;
  z-index: 1;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
}
@media screen and ( min-width: 1025px ) {
  .mobile-nav__icon {
    display: none;
  }
}
.mobile-nav__icon .box {
  width: 25px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.mobile-nav__icon.is-active .inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and ( max-width: 767px ) {
  .mobile-nav__icon.is-active .inner {
    top: 27px;
  }
}
.mobile-nav__icon.is-active .inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.mobile-nav__icon.is-active .inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-nav__icon .inner,
.mobile-nav__icon .inner::before,
.mobile-nav__icon .inner::after {
  width: 25px;
  height: 2px;
  position: absolute;
  background-color: var(--color-white);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.mobile-nav__icon .inner {
  margin-top: -1px;
  display: block;
  top: 50%;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
}
.mobile-nav__icon .inner::before, .mobile-nav__icon .inner::after {
  content: "";
  display: block;
}
.mobile-nav__icon .inner::before {
  top: -8px;
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.mobile-nav__icon .inner::after {
  bottom: -8px;
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.ncf-page .mobile-nav__container {
  display: none;
}
.ncf-page .mobile-nav {
  border-radius: 0;
  width: 349px !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  -webkit-transform: initial;
          transform: initial;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.81);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.81);
}
@media screen and ( min-width: 768px ) {
  .ncf-page .mobile-nav {
    top: 44px !important;
  }
}
.ncf-page .mobile-nav .ui-dialog-titlebar {
  display: none;
}
.ncf-page .mobile-nav .mobile-nav__container {
  padding-top: 29px;
  padding-bottom: 42px;
  padding-left: 32px;
  padding-right: 32px;
  height: 100% !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-mobile-nav);
}
.ncf-page .mobile-nav .mobile-nav__column {
  padding-top: 10px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ncf-page .mobile-nav .mobile-nav__close-icon {
  position: absolute;
  top: 42px;
  right: 32px;
  width: 30px;
  height: 30px;
  padding: 10px 0;
  display: block;
  cursor: pointer;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
}
.ncf-page .mobile-nav .mobile-nav__close-icon .inner,
.ncf-page .mobile-nav .mobile-nav__close-icon .inner::before,
.ncf-page .mobile-nav .mobile-nav__close-icon .inner::after {
  width: 32px;
  height: 2px;
  position: absolute;
  background-color: var(--color-white);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.ncf-page .mobile-nav .mobile-nav__close-icon .inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ncf-page .mobile-nav .mobile-nav__close-icon .inner::before, .ncf-page .mobile-nav .mobile-nav__close-icon .inner::after {
  content: "";
  display: block;
}
.ncf-page .mobile-nav .mobile-nav__close-icon .inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.ncf-page .mobile-nav .mobile-nav__close-icon .inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ncf-page .mobile-nav .mobile-nav__grid {
  margin-top: var(--margin-nav);
  margin-bottom: var(--margin-nav);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ncf-page .mobile-nav .mobile-nav__grid-item {
  color: var(--color-grey-900);
  font-size: 16px;
  text-decoration: none !important;
  padding: 24px;
  width: 50%;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.73px;
  gap: 8px;
}
.ncf-page .mobile-nav .mobile-nav__grid-item:hover, .ncf-page .mobile-nav .mobile-nav__grid-item:focus {
  color: var(--color-white) !important;
}
.ncf-page .mobile-nav .mobile-nav__grid-item:hover {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.ncf-page .mobile-nav .mobile-nav__grid-item img {
  width: 24px;
  height: 22px;
  margin-right: 8px;
}
.ncf-page .mobile-nav .mobile-nav__grid-item.give, .ncf-page .mobile-nav .mobile-nav__grid-item.transfer {
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.ncf-page .mobile-nav .mobile-nav__grid-item.discover {
  border-right: 1px solid var(--border-dark);
}
.ncf-page .mobile-nav .mobile-nav__grid-item.grant, .ncf-page .mobile-nav .mobile-nav__grid-item.activity {
  border-bottom: 1px solid var(--border-dark);
}
.ncf-page .mobile-nav .mobile-nav__grid-item.give, .ncf-page .mobile-nav .mobile-nav__grid-item.transfer, .ncf-page .mobile-nav .mobile-nav__grid-item.discover {
  padding-left: 0px;
}
.ncf-page .mobile-nav .mobile-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 36px;
  letter-spacing: 0.76px;
}
.ncf-page .mobile-nav .mobile-nav__links a:hover,
.ncf-page .mobile-nav .mobile-nav__links a:focus {
  color: var(--color-accent) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.ncf-page .mobile-nav .mobile-nav__footer {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: var(--margin-section);
  letter-spacing: 0.76px;
}
.ncf-page .mobile-nav .mobile-nav__footer p:last-child {
  margin: 0;
}
.ncf-page .mobile-nav .mobile-nav__footer a:hover {
  color: var(--color-accent) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.ncf-page .mobile-nav .mobile-nav__logout-button {
  color: var(--color-black);
  width: 100%;
  letter-spacing: 0.5px;
  font-size: 17px;
  margin-bottom: 20px;
}

.button {
  font-size: var(--button-text);
  text-align: center;
  text-decoration: none;
  line-height: 15px;
  padding: 16px 25px 14px 25px;
  border: 0;
  display: inline-block;
  border-radius: var(--border-radius);
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.button.is-null {
  cursor: default;
}
@media screen and ( min-width: 768px ) {
  .button {
    min-width: 154px;
  }
}

.button--small {
  font-size: 14px;
  padding: 9px 10px 7px 10px;
  min-width: 95px;
}

.button--medium {
  font-size: 15px;
  padding: 12px 25px 10px 25px;
}

.button--large {
  padding: 20px 25px 19px 25px;
}

.button--auto {
  width: auto;
}

.button--primary,
a.button--primary {
  color: var(--color-white);
  background-color: var(--button-primary);
}
.button--primary:active, .button--primary:hover,
a.button--primary:active,
a.button--primary:hover {
  color: var(--color-white);
  background-color: var(--button-primary-hover);
}

.button--blue-light {
  color: var(--color-grey-100);
  background-color: var(--button-light-blue);
}
.button--blue-light:active, .button--blue-light:hover {
  background-color: var(--button-light-blue-hover);
}

.button--black,
a.button--black {
  color: var(--color-white);
  background-color: var(--color-black);
}
.button--black:active, .button--black:hover,
a.button--black:active,
a.button--black:hover {
  opacity: 0.9;
}

.button--grey,
a.button--grey {
  color: var(--color-white);
  background-color: var(--button-grey);
}
.button--grey:active, .button--grey:hover,
a.button--grey:active,
a.button--grey:hover {
  color: var(--color-white);
  background-color: var(--button-grey-dark);
}
.button--grey.is-null:active, .button--grey.is-null:hover,
a.button--grey.is-null:active,
a.button--grey.is-null:hover {
  color: var(--color-white);
  background-color: var(--button-grey);
}

.button--grey-dark {
  color: var(--color-white);
  background-color: var(--color-grey-500);
}

.button--grey-light {
  background-color: var(--color-grey-900);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(var(--color-grey-900)));
  background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-grey-900) 100%);
}
.button--grey-light.has-border {
  border: 1px solid var(--border-default);
}

.button--grey-hollow {
  color: var(--button-grey-hollow);
  border: 1px solid var(--button-grey-hollow);
  background-color: transparent;
}
.button--grey-hollow:active, .button--grey-hollow:hover {
  color: var(--color-white);
  background-color: var(--button-grey-hollow);
}

.button--green,
a.button--green {
  color: var(--color-white);
  background-color: var(--button-green);
}
.button--green:active, .button--green:hover,
a.button--green:active,
a.button--green:hover {
  color: var(--color-white);
  background-color: var(--button-green-hover);
}

.button--white,
a.button--white {
  color: var(--color-grey-200);
  background-color: var(--color-white);
}
.button--white:active, .button--white:hover,
a.button--white:active,
a.button--white:hover {
  color: var(--color-white);
  background-color: var(--color-grey-700);
}

.has-shadow {
  -webkit-box-shadow: var(--box-shadow-button);
          box-shadow: var(--box-shadow-button);
}

.is-inactive {
  cursor: default;
  background-color: var(--color-grey-800);
}

.is-action {
  text-transform: none;
}
.is-action:active, .is-action:hover {
  color: var(--color-white);
  background-color: var(--color-accent);
}

.button--favorite {
  color: var(--color-white);
  background-color: var(--button-grey);
}
.button--favorite:active, .button--favorite:hover {
  background-color: var(--button-primary);
}
.button--favorite.is-favorite {
  background-color: var(--color-green);
}
.button--favorite.is-favorite:active, .button--favorite.is-favorite:hover {
  background-color: var(--button-grey-dark);
}

.button--load-more.nx-list-loadmore {
  color: var(--color-white);
  margin: 0;
  padding: 6px 6px 5px 6px;
  min-width: none;
  background-color: var(--color-green);
}
.button--load-more.nx-list-loadmore:active, .button--load-more.nx-list-loadmore:hover {
  color: var(--color-white);
  background-color: var(--color-green);
}

@media screen and ( min-width: 768px ) {
  .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.button-container.section {
  margin-bottom: var(--margin-section);
}
.button-container.section-small {
  margin-bottom: var(--margin-section);
}
.button-container.has-border {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.button-container .button {
  margin: 0 0 12px 0;
}
@media screen and ( min-width: 768px ) {
  .button-container .button {
    margin: 0 12px 0 0;
  }
}
@media screen and ( max-width: 767px ) {
  .button-container .button {
    width: 100%;
  }
}
.button-container .button:last-child {
  margin: 0;
}

.ui-dialog {
  border-radius: var(--border-radius);
  outline: 0;
  display: none;
  position: absolute;
  left: 50% !important;
  z-index: 600;
  background-color: var(--color-panel);
  -webkit-box-shadow: var(--box-shadow-dialog);
          box-shadow: var(--box-shadow-dialog);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and ( max-width: 767px ) {
  .ui-dialog {
    width: 85% !important;
  }
}
.ui-dialog .ui-dialog-titlebar {
  padding: 0;
  height: 0;
  min-height: 0;
  position: relative;
}
.ui-dialog .ui-dialog-titlebar > button > .ui-icon {
  background: none;
}
.ui-dialog .ui-dialog-titlebar > button > .ui-icon:before {
  content: none;
}
.ui-dialog .ui-dialog-title {
  display: none;
}
.ui-dialog .ui-dialog-content {
  padding: 25px;
  position: relative;
}
.ui-dialog .ui-dialog-titlebar-close,
.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close {
  border: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 26px;
  right: 25px;
  z-index: 700;
  background: transparent url(/resource/gxicons/icon-close.svg) no-repeat;
}
.ui-dialog .ui-dialog-titlebar-close span,
.ui-dialog .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close span {
  display: none;
}
.ui-dialog .popup-content-padding {
  padding: 0;
}

.dialog__heading {
  margin-bottom: var(--margin-section--small);
  padding-right: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-default);
}
@media screen and ( max-width: 767px ) {
  .dialog__heading {
    display: block;
  }
}
.dialog__heading h2,
.dialog__heading h3 {
  font-size: 23px;
  font-weight: 400;
}
@media screen and ( max-width: 767px ) {
  .dialog__heading span {
    padding-top: 8px;
    display: block;
  }
}

@media screen and ( max-width: 767px ) {
  .ncf-search__add-charity {
    padding-top: 8px;
  }
  .ncf-search__add-charity span {
    font-size: 15px;
    padding: 0;
    display: inline;
  }
}

.dialog__body {
  margin-bottom: var(--margin-section--small);
}

.dialog__subheading {
  font-weight: 600;
  margin-bottom: var(--margin-form-label);
}

.ncf-dialog__notice {
  max-width: var(--modal-small);
}

.ncf-dialog__wide {
  max-width: var(--modal-wide);
}

.ncf-dialog__medium .ui-dialog-content {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .ncf-dialog__medium .ui-dialog-content {
    width: var(--modal-medium) !important;
  }
}

@media screen and ( max-width: 767px ) {
  .ncf-dialog__fund-settings {
    top: 70px !important;
  }
}
.ncf-dialog__fund-settings .ui-dialog-content {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .ncf-dialog__fund-settings .ui-dialog-content {
    width: var(--modal-large);
  }
}

@media screen and ( max-width: 767px ) {
  .ncf-dialog__giving-option {
    top: 70px !important;
  }
}

.ncf-dialog__welcome {
  top: 100px !important;
}
@media screen and ( max-width: 767px ) {
  .ncf-dialog__welcome {
    width: 95% !important;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .ncf-dialog__welcome {
    width: 85% !important;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-dialog__welcome {
    width: 100% !important;
    top: 230px !important;
    left: 0 !important;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.ncf-dialog__welcome .ui-dialog-titlebar,
.ncf-dialog__welcome .ui-dialog-content {
  width: 100%;
  background-color: var(--color-panel);
}
@media screen and ( min-width: 1025px ) {
  .ncf-dialog__welcome .ui-dialog-titlebar,
.ncf-dialog__welcome .ui-dialog-content {
    border-radius: var(--border-radius);
    max-width: 960px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: var(--box-shadow-dialog);
            box-shadow: var(--box-shadow-dialog);
  }
}
.ncf-dialog__welcome .ui-dialog-titlebar {
  z-index: 10;
}
@media screen and ( max-width: 1024px ) {
  .ncf-dialog__welcome .dialog__heading {
    margin-bottom: var(--margin-section);
  }
}

.dialog__welcome {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and ( min-width: 1025px ) {
  .dialog__welcome {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.dialog__welcome .embed-container {
  padding-bottom: 56.25%;
  max-width: 100%;
  height: 0;
  height: auto;
  position: relative;
  overflow: hidden;
}
.dialog__welcome .embed-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and ( min-width: 1025px ) {
  .dialog__welcome .welcome-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.dialog__welcome .welcome-video {
  margin-bottom: var(--margin-section);
}
@media screen and ( min-width: 1025px ) {
  .dialog__welcome .welcome-video {
    margin-bottom: 0;
    margin-left: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 67%;
            flex: 0 0 67%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.dialog__welcome ul {
  padding-left: 40px;
  list-style-type: disc;
}
.dialog__welcome ul li {
  list-style-type: disc;
}

.ncf-activity__table-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ncf-activity__table-header .ncf-activity__search-container {
  margin-bottom: var(--margin-form);
}

.ncf-activity__table-row {
  padding-bottom: var(--margin-form);
}

.ncf-activity__filter-container.is-leading {
  padding-bottom: var(--margin-form);
}
.ncf-activity__filter-container .spinner-container {
  position: relative;
  top: 5px;
}

.ncf-activity__filter-select,
.ncf-activity__filter-search {
  font-size: 15px !important;
}

.ncf-activity__filter-select {
  margin-right: 12px;
  width: 125px;
}
.ncf-activity__filter-select select {
  padding: 10px 8px 7px 8px;
}

.ncf-activity__filter-search {
  color: var(--text-dark);
  padding: 10px 8px 7px 8px;
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  width: 180px;
  position: relative;
  cursor: pointer;
  background-color: var(--color-grey-900);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(var(--color-grey-900)));
  background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-grey-900) 100%);
}
.ncf-activity__filter-search.has-icon {
  padding-right: 40px;
}

.ncf-activity__filter-search--icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 10px;
  right: 8px;
  opacity: 0.4;
  background-image: url(/resource/gximages/searchicon.png);
}

.ncf-activity__summary-wrapper {
  margin-left: auto;
}

.ncf-activity__summary-number {
  display: inline-block;
  vertical-align: middle;
}

.ncf-activity__summary-amount {
  color: var(--text-light);
  font-size: 25px;
  padding-right: 8px;
}

.ncf-activity__summary-count {
  color: var(--text-medium);
  padding: 6px 0 3px 0;
}

.ncf-activity__search-container {
  padding: 12px;
  position: relative;
  background-color: var(--color-grey-800);
}
.ncf-activity__search-container::before {
  content: "";
  padding-top: 8px;
  border: 15px solid transparent;
  border-top: 0;
  border-bottom: 15px solid var(--border-light);
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: 100%;
  left: 210px;
  background-color: transparent;
}
.ncf-activity__search-container .ncf-activity__label {
  font-size: 14px;
  font-weight: 500;
  padding-right: 8px;
}
.ncf-activity__search-container .button {
  min-width: initial;
}
@media screen and ( min-width: 768px ) {
  .ncf-activity__search-container .button {
    margin: 0;
  }
}
.ncf-activity__search-container .button--search {
  margin-right: 8px;
}

.ncf-activity__search-container.is-leading .ncf-activity__search-row {
  margin-bottom: 12px;
}

.ncf-activity__search-row {
  margin-bottom: 8px;
}

.ncf-activity__search-field {
  padding-right: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ncf-activity__search-field.is-last, .ncf-activity__search-field:last-child {
  padding-right: 0;
}
.ncf-activity__search-field.is-last {
  margin-left: auto;
}

.ncf-activity__search--select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
}

.ncf-activity__search--end {
  padding-right: 25px;
}

.ncf-activity__search--start,
.ncf-activity__search--end {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
}

.fund-selector {
  position: relative;
}

.fund-selector__container {
  cursor: pointer;
}
.fund-selector__container::before {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  background-size: 19px;
}
.fund-selector__container .fund-selector__dropdown.tooltipContent {
  border: 0;
  width: 100%;
  display: none;
  position: absolute;
  background-color: var(--color-white);
  -webkit-box-shadow: var(--box-shadow-tooltip);
          box-shadow: var(--box-shadow-tooltip);
}
.fund-selector__container .fund-selector__item {
  color: var(--text-color);
  font-size: 14px;
  padding: 15px;
  border-bottom: 1px solid var(--border-default);
}
.fund-selector__container .fund-selector__item:hover {
  background-color: var(--color-grey-900);
}
.fund-selector__container .fund-selector__item:nth-of-type(odd) {
  background-color: var(--color-grey-900);
}
.fund-selector__container .fund-selector__item:last-child {
  border: 0;
}
.fund-selector__container .fund-selector__fund-name {
  font-weight: 700;
  margin-bottom: 5px;
}
.fund-selector__container .fund-selector__fund-amounts {
  margin-bottom: 5px;
}
.fund-selector__container.is-read-only {
  cursor: default;
}
.fund-selector__container.is-read-only::before {
  display: none;
}

.fund-selector__current-fund {
  text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

.fund-selector__number {
  display: inline;
}

.fund-selector--desktop {
  margin-left: auto;
}
@media screen and ( max-width: 767px ) {
  .fund-selector--desktop {
    display: none;
  }
}
.fund-selector--desktop .fund-selector__container {
  padding: 8px 0 0 25px;
}
.fund-selector--desktop .fund-selector__container::before {
  top: 7px;
  left: 0;
  background-image: url(/resource/gxicons/icon-circle-arrow--black.svg);
}
.fund-selector--desktop .fund-selector__dropdown.tooltipContent {
  border-radius: var(--border-radius);
  min-width: 300px;
  max-height: 500px;
  top: 38px !important;
  right: 0;
  left: auto !important;
  z-index: 9999;
  overflow-y: auto;
  visibility: visible;
}

.fund-selector--mobile {
  margin-bottom: var(--margin-nav);
}
.fund-selector--mobile .fund-selector__container {
  font-size: 14px;
  color: var(--color-grey-900);
  border-radius: var(--border-radius);
  width: 200px;
  min-width: inherit;
  height: 100%;
  background-color: var(--color-grey-100);
}
.fund-selector--mobile .fund-selector__current-fund-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  gap: 3px;
}
.fund-selector--mobile .fund-selector__current-fund-container .fund-selector__current-name-and-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fund-selector--mobile .fund-selector__current-fund-container .fund-selector__current-name-and-icon .fund-selector__current-fund {
  letter-spacing: 0.35px;
  max-width: 185px;
}
.fund-selector--mobile .fund-selector__current-fund-container .fund-selector__current-name-and-icon .fund-selector__current-fund .truncate {
  width: 185px;
}
.fund-selector--mobile .fund-selector__current-fund-container .fund-selector__current-name-and-icon .fund-selector__icon {
  margin-left: 7px;
}
.fund-selector--mobile .fund-selector__current-fund-container .fund-selector__number {
  opacity: 0.64;
  letter-spacing: 1.75px;
}
.fund-selector--mobile .fund-selector__dropdown.tooltipContent {
  position: absolute;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 80vh;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transform: translateY(-45px);
          transform: translateY(-45px);
  z-index: 9999;
  top: 35px !important;
  left: -15px !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.81);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.81);
  background-color: var(--color-grey-200);
}
.fund-selector--mobile .fund-selector__dropdown-header {
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.fund-selector--mobile .fund-selector__fund-detail {
  color: var(--color-grey-600);
}
.fund-selector--mobile .fund-selector__fund-amounts {
  color: var(--color-blue-600);
  margin-bottom: 5px;
}
.fund-selector--mobile .fund-selector__fund-amounts .fund-selector__separator {
  color: var(--color-grey-900);
}
.fund-selector--mobile .fund-selector__fund-name {
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 2px;
}
.fund-selector--mobile .fund-selector__item {
  color: var(--color-grey-900);
  font-size: 14px;
  letter-spacing: 0.35px;
  line-height: 19px;
  padding: 15px;
  background-color: var(--color-grey-200);
  border: 0;
}
.fund-selector--mobile .fund-selector__item:hover, .fund-selector--mobile .fund-selector__item:nth-of-type(odd):hover {
  background-color: var(--color-grey-400);
}
.fund-selector--mobile .fund-selector__item:nth-of-type(odd) {
  background-color: var(--color-grey-200);
}

.grantee-card {
  margin-bottom: var(--margin-grantee-card);
  padding-bottom: 12px;
  padding-left: 3px;
  border-bottom: 1px solid var(--border-default);
}
@media screen and ( min-width: 768px ) {
  .grantee-card {
    padding-bottom: 13px;
  }
}
.grantee-card.is-faded {
  opacity: 0.2;
}

.grantee-card__image {
  margin-right: var(--margin-grantee-card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grantee-card__image .grantee-card__image-src,
.grantee-card__image .grantee-card__image-icon {
  border-radius: 50%;
  max-width: var(--icon-size);
  width: var(--icon-size);
  height: var(--icon-size);
  -webkit-box-shadow: var(--box-shadow-icon);
          box-shadow: var(--box-shadow-icon);
}
.grantee-card__image .grantee-card__image-src {
  display: block;
}
.grantee-card__image .grantee-card__image-icon {
  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;
          justify-content: center;
  background-color: var(--color-white);
}
.grantee-card__image .grantee-card__image-icon img {
  width: var(--icon-img-sm);
  height: var(--icon-img-sm);
  display: block;
}

.grantee-card__info {
  line-height: 1.5;
  overflow: hidden;
}
@media screen and ( min-width: 768px ) {
  .grantee-card__info {
    padding: 3px 0;
  }
}

@media screen and ( max-width: 767px ) {
  .grantee-card__status-space,
.grantee-card__status-link {
    display: none;
  }
}

.grantee-card__name {
  font-weight: 500;
  display: block;
}
.grantee-card__name a:hover {
  color: var(--link-text) !important;
}
.grantee-card__name.is-truncated {
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.grantee-card__name-link {
  color: var(--link-text--hover) !important;
}
.grantee-card__name-link:hover {
  color: var(--link-text) !important;
}

.grantee-card__grant {
  color: var(--link-text--hover) !important;
}
.grantee-card__grant:hover {
  color: var(--link-text) !important;
}

.grantee-card__detail {
  color: var(--text-medium);
}
.grantee-card__detail a {
  color: var(--text-medium) !important;
}
.grantee-card__detail a:hover {
  color: var(--link-text) !important;
}
.grantee-card__detail .nx-field,
.grantee-card__detail .nx-text {
  display: inline-block;
}
.grantee-card__detail .contact-address {
  display: block;
}

.grantee-card__link {
  cursor: pointer;
}
.grantee-card__link img {
  cursor: pointer;
}
.grantee-card__link .grantee-card__link--remove {
  margin: 0 auto;
  width: 21px;
  height: 21px;
  display: none;
}
.grantee-card__link .grantee-card__link--remove:hover {
  opacity: 0.5;
}
@media screen and ( min-width: 768px ) {
  .grantee-card__link .grantee-card__link--remove {
    display: block;
  }
}
@media screen and ( max-width: 549px ) {
  .grantee-card__link .button {
    width: 100%;
  }
}
@media screen and ( min-width: 768px ) {
  .grantee-card__link .button {
    display: none;
  }
}

.grantee-card__status-container {
  color: var(--color-black);
  line-height: normal;
  padding: 8px;
  border-radius: var(--border-radius);
  width: 350px;
  max-width: 350px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: var(--color-white);
  -webkit-box-shadow: var(--box-shadow-tooltip);
          box-shadow: var(--box-shadow-tooltip);
}
.grantee-card__status-container p {
  font-size: 13px;
  margin: 0;
}

.ncf-icon {
  border-radius: 50%;
  width: var(--icon-size);
  height: var(--icon-size);
  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;
          justify-content: center;
  -webkit-box-shadow: var(--box-shadow-icon);
          box-shadow: var(--box-shadow-icon);
}
.ncf-icon svg {
  width: 24px;
  height: 24px;
}
.ncf-icon.is-inline {
  display: inline-block;
}

.ncf-icon--play {
  width: 57px;
  height: 57px;
  opacity: 0.75;
  background-image: url(/resource/gxicons/ncf-icon--play.png);
}

.ncf-icon--add {
  color: var(--color-white);
  font-size: 21px;
  margin-right: 8px;
  padding-top: 2px;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-blue-400);
}

.ncf-icon--add-label {
  padding-top: 2px;
}

.ncf-icon--greencheck {
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-image: url(/resource/gximages/GreenCheckmark.png);
  background-repeat: no-repeat;
  background-size: 30px;
}

.spinner-container--dashboard {
  position: absolute;
  top: 5px;
  right: 0;
}
.spinner-container--dashboard .spinner {
  margin: 0;
}

.spinner-container--inline {
  margin-left: 10px;
  display: inline-block;
}
.spinner-container--inline .spinner {
  display: inline-block;
  vertical-align: middle;
}

.spinner-container--stories .spinner {
  display: inline-block;
  vertical-align: middle;
}

.spinner-label {
  color: var(--color-accent);
  font-size: 18px;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

.spinner {
  height: 20px;
  width: 20px;
  margin: 0 auto;
  position: relative;
  -webkit-animation: rotation 2s infinite linear;
          animation: rotation 2s infinite linear;
  border: 4px solid rgba(var(--rgb-blue), 0.15);
  border-radius: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.spinner:before {
  content: "";
  border: 4px solid transparent;
  border-top: 4px solid rgba(var(--rgb-blue), 0.8);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: -4px;
  top: -4px;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
.ui-tabs {
  position: relative;
}
.ui-tabs li {
  position: relative;
}
.ui-tabs .ui-tabs-panel {
  display: block;
}

@media screen and ( max-width: 1024px ) {
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav {
    white-space: nowrap;
    margin-bottom: var(--margin-section--large);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav::-webkit-scrollbar {
    width: 0px;
    display: none;
    background: transparent;
  }
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav::-webkit-scrollbar-thumb {
    background: transparent;
  }
}
@media screen and ( max-width: 1024px ) {
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav li {
    margin-right: 25px;
    display: block;
  }
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav li:last-child {
    margin-right: 0;
  }
}
@media screen and ( max-width: 1024px ) {
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav .ui-tabs-active a {
    border-bottom-color: var(--color-accent);
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav .ui-tabs-active a {
    background-color: var(--color-grey-800);
  }
}
.ncf-tab-section .nx-lefttabs > .ui-tabs-nav .ui-tabs-active div {
  font-weight: 600;
}
.ncf-tab-section .nx-lefttabs > .ui-tabs-nav .ui-tabs-selected div {
  cursor: default;
}
.ncf-tab-section .nx-lefttabs > .ui-tabs-nav a {
  color: var(--color-black);
  display: block;
}
@media screen and ( max-width: 1024px ) {
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav a {
    padding: 0 0 5px 0;
    border-bottom: 2px solid var(--color-white);
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-tab-section .nx-lefttabs > .ui-tabs-nav a {
    padding: 17px 16px 14px 16px;
  }
}
.ncf-tab-section .nx-lefttabs > .ui-tabs-nav div {
  color: var(--text-color);
  font-size: 15px;
}

.note-block {
  margin: 0;
  border-radius: var(--border-radius);
  background-color: var(--color-note-block);
}
.note-block ul {
  margin: 0;
  padding: 20px;
}
.note-block p {
  margin: 0;
}

.notice-bar {
  text-align: center;
  line-height: 44px;
  height: 44px;
}
.notice-bar p {
  line-height: 44px;
}

.notice-bar--red {
  color: var(--color-white);
  background-color: var(--color-red);
}

.payment-notice p {
  margin: 0;
}

@media screen and ( min-width: 768px ) {
  .recent-activity {
    display: none;
  }
}
.recent-activity .nx-editor-header,
.recent-activity .nx-list-footer {
  display: none;
}

.recent-activity__container {
  margin-bottom: var(--margin-section--small);
  border-bottom: 1px solid var(--border-default);
  height: 382px;
  position: relative;
  overflow: hidden !important;
}

.ncf-search__form {
  margin-bottom: var(--margin-section--small);
}
@media screen and ( min-width: 768px ) {
  .ncf-search__form {
    margin-bottom: var(--margin-section);
  }
}
.ncf-search__form .ncf-form__inline-controls {
  margin-bottom: var(--margin-form);
}
.ncf-search__form .ncf-field--search-field {
  width: 100%;
}
@media screen and ( max-width: 767px ) {
  .ncf-search__form .ncf-field--search-field {
    margin-bottom: 10px;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-search__form .ncf-field--search-field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.ncf-search__form .ncf-form__row {
  margin: 0;
}

@media screen and ( max-width: 767px ) {
  .ncf-dialog__charity-search {
    top: 60px !important;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-dialog__charity-search .ncf-dialog__container {
    overflow: auto;
  }
}
.ncf-dialog__charity-search .ncf-field--search-field,
.ncf-dialog__charity-search .ncf-select--cause-select {
  padding: 0;
}
@media screen and ( min-width: 768px ) {
  .ncf-dialog__charity-search .ncf-field--search-field,
.ncf-dialog__charity-search .ncf-select--cause-select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.ncf-dialog__charity-search .ncf-search__results,
.ncf-dialog__charity-search .ncf-cause__results {
  border-bottom: 1px solid var(--border-default);
  overflow: hidden;
}
@media screen and ( min-width: 768px ) {
  .ncf-dialog__charity-search .ncf-search__results,
.ncf-dialog__charity-search .ncf-cause__results {
    height: 350px;
  }
}
.ncf-dialog__charity-search .nx-editor-contents {
  margin: 0;
}

.ncf-search__footer {
  padding-top: 15px;
}
.ncf-search__footer a {
  font-size: 16px;
}
@media screen and ( min-width: 768px ) {
  .ncf-search__footer a {
    font-size: 20px;
  }
}

.ncf-form__dialog--add-charity .ncf-form__field {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__dialog--add-charity .ncf-form__field--city {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ncf-form__dialog--add-charity .ncf-select--state,
.ncf-form__dialog--add-charity .ncf-form__field--province {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .ncf-form__dialog--add-charity .ncf-form__field--zip {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .ncf-form__dialog--add-charity .ncf-form__field--phone {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ncf-form__dialog--add-charity .ncf-form__field--website {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.ncf-table__header {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.ncf-table__heading {
  color: var(--text-table-heading);
  font-size: var(--table-text);
  font-weight: 600;
}
.ncf-table__heading.is-centered {
  text-align: center;
  padding: 0;
}

.ncf-table__row {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--border-default);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.ncf-table__row.is-hidden {
  display: none;
}
.ncf-table__row .ncf-table__column:last-child {
  padding-right: 0;
}

.ncf-table__column {
  color: var(--text-table);
  font-size: var(--table-text);
  padding: 0 20px 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.ncf-table__column.is-centered {
  text-align: center;
  padding: 0;
}
.ncf-table__column .nx-basicfieldeditor-item-label {
  display: none !important;
}

@media screen and ( max-width: 767px ) {
  .ncf-table.mobile-stack .ncf-table__header {
    display: none;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table.mobile-stack .ncf-table__row {
    border: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .ncf-table.mobile-stack .ncf-table__row:nth-child(odd) {
    background-color: var(--color-grey-800);
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table.mobile-stack .ncf-table__column {
    padding: 14px 20px 12px 10px;
    border-bottom: 1px solid var(--border-default);
    width: 100%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table.mobile-stack .ncf-table__column .nx-field {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ncf-table.no-border .ncf-table__row {
  padding: 0 0 12px 0;
  border: 0;
}
.ncf-table.section {
  margin-bottom: var(--margin-section--small);
}

.ncf-table,
.ncf-table.nx-skootable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ncf-table.has-footer .nx-list-footer,
.ncf-table.nx-skootable.has-footer .nx-list-footer {
  display: block;
}
.ncf-table thead tr,
.ncf-table tbody tr,
.ncf-table.nx-skootable thead tr,
.ncf-table.nx-skootable tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ncf-table thead th,
.ncf-table tbody td,
.ncf-table.nx-skootable thead th,
.ncf-table.nx-skootable tbody td {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-white);
}
.ncf-table thead th:last-child,
.ncf-table tbody td:last-child,
.ncf-table.nx-skootable thead th:last-child,
.ncf-table.nx-skootable tbody td:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and ( max-width: 767px ) {
  .ncf-table thead,
.ncf-table.nx-skootable thead {
    display: none;
  }
}
.ncf-table thead th,
.ncf-table.nx-skootable thead th {
  color: var(--text-table-heading);
  font-size: var(--table-text);
  font-weight: 600;
  text-align: left;
  padding: 0 20px 12px 0;
  border: 0;
}
.ncf-table thead th:last-child,
.ncf-table.nx-skootable thead th:last-child {
  padding-right: 0;
}
@media screen and ( max-width: 767px ) {
  .ncf-table tbody tr,
.ncf-table.nx-skootable tbody tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .ncf-table tbody tr:nth-child(odd) td,
.ncf-table.nx-skootable tbody tr:nth-child(odd) td {
    background-color: var(--color-grey-800);
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-table tbody tr td:last-child,
.ncf-table.nx-skootable tbody tr td:last-child {
    padding-right: 0;
  }
}
.ncf-table tbody td,
.ncf-table.nx-skootable tbody td {
  color: var(--text-table);
  font-size: var(--table-text);
  padding: 12px 20px 12px 10px;
  border-bottom: 1px solid var(--border-default);
}
@media screen and ( min-width: 768px ) {
  .ncf-table tbody td,
.ncf-table.nx-skootable tbody td {
    padding: 14px 20px 12px 0;
    border-top: 1px solid var(--border-default);
    border-bottom: 0;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table tbody .nx-field,
.ncf-table.nx-skootable tbody .nx-field {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ncf-table .nx-item-drawer,
.ncf-table.nx-skootable .nx-item-drawer {
  display: block !important;
}
.ncf-table .sk-drawer-content .ncf-table,
.ncf-table.nx-skootable .sk-drawer-content .ncf-table {
  margin-bottom: 0;
}
.ncf-table .actioncolumn,
.ncf-table.nx-skootable .actioncolumn {
  display: none;
}
.ncf-table .ncf-table__mobile-label,
.ncf-table.nx-skootable .ncf-table__mobile-label {
  min-width: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and ( min-width: 768px ) {
  .ncf-table .ncf-table__mobile-label,
.ncf-table.nx-skootable .ncf-table__mobile-label {
    display: none;
  }
}
.ncf-table .ncf-table__mobile-label + .nx-fieldtext,
.ncf-table.nx-skootable .ncf-table__mobile-label + .nx-fieldtext {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ncf-table .nx-list-footer,
.ncf-table.nx-skootable .nx-list-footer {
  display: none;
}

.nx-skootable-data .sk-drawer-content {
  padding: 24px;
  background-color: var(--color-grey-900);
}
.nx-skootable-data tr.nx-item-has-drawer td {
  border-top: 1px solid var(--border-default);
  background-color: var(--color-white);
}

.nx-list-footer {
  font-size: 15px;
  padding: 20px 0 0 0;
}
@media screen and ( min-width: 768px ) {
  .nx-list-footer {
    border-top: 1px solid var(--border-default);
  }
}
.nx-list-footer .nx-list-footer-left,
.nx-list-footer .nx-list-footer-center,
.nx-list-footer .nx-list-footer-right {
  text-align: center;
  margin: 0;
  padding: 0 !important;
  display: block;
}
@media screen and ( min-width: 550px ) {
  .nx-list-footer .nx-list-footer-left,
.nx-list-footer .nx-list-footer-center,
.nx-list-footer .nx-list-footer-right {
    display: inline-block;
  }
}
@media screen and ( max-width: 549px ) {
  .nx-list-footer .nx-list-footer-left {
    margin-bottom: 12px;
  }
}
@media screen and ( min-width: 550px ) {
  .nx-list-footer .nx-list-footer-left {
    text-align: left;
    width: 33%;
  }
}
@media screen and ( max-width: 767px ) {
  .nx-list-footer .nx-list-footer-left span + select + span {
    display: none;
  }
}
.nx-list-footer .nx-list-footer-center {
  text-align: center;
}
@media screen and ( min-width: 768px ) {
  .nx-list-footer .nx-list-footer-center {
    white-space: nowrap;
    width: 34%;
    display: inline-block;
  }
}
.nx-list-footer .nx-list-footer-center span {
  display: block;
  text-transform: lowercase;
}
.nx-list-footer .nx-list-footer-center span:first-letter {
  text-transform: uppercase;
}
@media screen and ( min-width: 550px ) {
  .nx-list-footer .nx-list-footer-right {
    text-align: right;
  }
}
@media screen and ( min-width: 550px ) and ( max-width: 767px ) {
  .nx-list-footer .nx-list-footer-right {
    width: 67%;
  }
}
@media screen and ( min-width: 768px ) {
  .nx-list-footer .nx-list-footer-right {
    width: 33%;
  }
}
.nx-list-footer .nx-list-footer-right .ui-buttonset {
  margin-right: 0;
}
.nx-list-footer .ui-button {
  color: var(--color-accent);
}
.nx-list-footer .ui-button-disabled {
  color: var(--text-medium);
}
.nx-list-footer select {
  width: 62px;
  display: inline-block;
}

@media screen and ( min-width: 768px ) {
  .nx-list-footer.hide-center .nx-list-footer-left,
.nx-list-footer.hide-center .nx-list-footer-right {
    width: 50%;
  }
}
.nx-list-footer.hide-center .nx-list-footer-center {
  display: none;
}

.nx-footer-second-line {
  text-align: left;
  padding-top: 20px;
}

.ncf-load-more-message {
  color: var(--text-color);
  font-style: italic;
  padding-left: 12px;
}

.ncf-activity-table {
  position: static !important;
}
.ncf-activity-table .nx-skootable-data {
  -webkit-transform: none !important;
          transform: none !important;
}
.ncf-activity-table .nx-skootable-data thead tr td:first-child,
.ncf-activity-table .nx-skootable-data tbody tr td:first-child {
  max-width: 445px;
}
.ncf-activity-table .nx-skootable-data thead tr td:first-child,
.ncf-activity-table .nx-skootable-data tbody tr td:first-child,
.ncf-activity-table .nx-skootable-data tr th:first-child {
  border-left: 0;
}
.ncf-activity-table .nx-skootable-data tbody td:last-child,
.ncf-activity-table .nx-skootable-data thead td:last-child,
.ncf-activity-table .nx-skootable-data tbody th:last-child,
.ncf-activity-table .nx-skootable-data thead th:last-child {
  padding-right: 0;
}
.ncf-activity-table .nx-skootable-data thead td,
.ncf-activity-table .nx-skootable-data tbody td {
  color: var(--text-dark);
  font-size: 14px;
  padding: 13px 25px 10px 0;
  border-top: 1px solid var(--border-default);
  border-right: 0;
  border-bottom: 0;
  background-color: var(--color-white);
}
.ncf-activity-table .nx-skootable-data th {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding: 12px 25px 6px 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  background-color: var(--color-white);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.ncf-activity-table .nx-skootable-data th.text-right {
  text-align: right;
}
.ncf-activity-table .nx-skootable-data.short-stack tbody td, .ncf-activity-table .nx-skootable-data.short-stack thead td, .ncf-activity-table .nx-skootable-data.short-stack tfoot th {
  padding: 8px 12px 8px 0;
}
.ncf-activity-table .nx-skootable-data tbody .nx-field,
.ncf-activity-table .nx-skootable-data tfoot .nx-field {
  margin: 0;
}
.ncf-activity-table .nx-skootable-data tbody tr:nth-child(odd) td {
  background-color: var(--color-white);
}
@media screen and ( max-width: 767px ) {
  .ncf-activity-table .nx-skootable-data tbody .ncf-link {
    color: var(--text-dark);
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}
.ncf-activity-table .nx-skootable-data .sk-drawer-content .ncf-table {
  padding: 0;
}
.ncf-activity-table .ui-tooltip.ui-widget {
  display: none !important;
}
.ncf-activity-table .nx-skootable-has-ordering {
  margin-right: 0;
  display: block;
  float: left;
}
.ncf-activity-table .ui-icon-carat-2-n-s.ui-state-disabled::after {
  border-top: 3px solid var(--border-medium);
}
.ncf-activity-table .ui-icon-carat-2-n-s.ui-state-disabled::before {
  border-bottom: 3px solid var(--border-medium);
}
.ncf-activity-table .nx-skootable-order-number {
  display: none !important;
}
.ncf-activity-table .nx-footer-btns {
  margin: 0;
  position: absolute;
  top: -48px;
  right: 0;
}
.ncf-activity-table .nx-footer-btns.disabled {
  opacity: 0.3;
}
.ncf-activity-table .nx-footer-btns .sk-icon-export {
  text-indent: 0;
  width: auto;
  height: 23px;
  display: inline-block;
  background-image: url(/resource/gximages/excelexport.png) !important;
  background-position: 0 0;
  background-repeat: no-repeat;
  cursor: pointer;
}
.ncf-activity-table .nx-footer-btns .sk-icon-export::after {
  content: "Export to Excel";
  color: var(--color-grey-100);
  margin-left: 30px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.ncf-activity-table .nx-footer-btns .sk-icon-export:hover::after {
  color: var(--color-accent);
}

.ncf-activity-table.hide-actions .nx-skootable-data thead th.checkcolumn,
.ncf-activity-table.hide-actions .nx-skootable-data thead th.actioncolumn,
.ncf-activity-table.hide-actions .nx-skootable-data tbody td:first-child,
.ncf-activity-table.hide-actions .nx-skootable-data tbody td:nth-child(2) {
  padding: 0;
  background-color: transparent;
}
.ncf-activity-table.hide-actions .nx-skootable-data thead th.checkcolumn div,
.ncf-activity-table.hide-actions .nx-skootable-data thead th.actioncolumn div,
.ncf-activity-table.hide-actions .nx-skootable-data tbody td:first-child div,
.ncf-activity-table.hide-actions .nx-skootable-data tbody td:nth-child(2) div {
  margin: 0 !important;
}
.ncf-activity-table.hide-actions .nx-skootable-data thead th.checkcolumn input,
.ncf-activity-table.hide-actions .nx-skootable-data tbody td:first-child input {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ncf-activity-table.is-small .nx-footer-btns {
  top: 26px;
  right: 65px;
}

.ncf-table--charities {
  margin-bottom: 0;
}
@media screen and ( max-width: 767px ) {
  .ncf-table--charities .ncf-table__row {
    padding: 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .ncf-table--charities .ncf-table__row {
    place-content: space-between;
  }
}
@media screen and ( max-width: 1024px ) {
  .ncf-table--charities .ncf-table__header .ncf-table__column--action,
.ncf-table--charities .ncf-table__header .ncf-table__column--remove {
    display: none;
  }
}
.ncf-table--charities .ncf-table__column--charity {
  padding-left: 4px;
}
@media screen and ( max-width: 767px ) {
  .ncf-table--charities .ncf-table__column--charity {
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .ncf-table--charities .ncf-table__column--charity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities .ncf-table__column--charity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
@media screen and ( max-width: 1024px ) {
  .ncf-table--charities .ncf-table__column--grants {
    display: none;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities .ncf-table__column--grants {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11%;
            flex: 0 0 11%;
  }
}
@media screen and ( max-width: 1024px ) {
  .ncf-table--charities .ncf-table__column--grants-all {
    display: none;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities .ncf-table__column--grants-all {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14%;
            flex: 0 0 14%;
  }
}
.ncf-table--charities .ncf-table__column--action {
  padding-right: 0;
}
@media screen and ( max-width: 549px ) {
  .ncf-table--charities .ncf-table__column--action {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table--charities .ncf-table__column--action {
    padding-top: 20px;
    padding-left: calc(var(--icon-size) + var(--margin-grantee-card));
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities .ncf-table__column--action {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
  }
}
.ncf-table--charities .ncf-table__column--action .button {
  margin-right: 10px;
}
.ncf-table--charities .ncf-table__column--action .button:last-child {
  margin-right: 0;
}
@media screen and ( max-width: 549px ) {
  .ncf-table--charities .ncf-table__column--action .button {
    width: 100%;
  }
  .ncf-table--charities .ncf-table__column--action .button.button--profile, .ncf-table--charities .ncf-table__column--action .button.is-null {
    display: none;
  }
  .ncf-table--charities .ncf-table__column--action .button.button--favorite {
    margin-right: 0;
  }
  .ncf-table--charities .ncf-table__column--action .button.button--auto {
    width: auto;
  }
}

@media screen and ( min-width: 1025px ) {
  .ncf-table--charities.is-search-list .ncf-table__column--charity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43%;
            flex: 0 0 43%;
  }
}

@media screen and ( max-width: 767px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--charity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--charity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43%;
            flex: 0 0 43%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--action {
    width: auto;
  }
}
@media screen and ( max-width: 1024px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--action {
    padding-right: 10px;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--action {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
  }
}
@media screen and ( max-width: 549px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--action .button.button--grant {
    margin-right: 0;
  }
}
@media screen and ( max-width: 549px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--remove {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--remove {
    padding-top: 20px;
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-table--charities.is-favorites-list .ncf-table__column--remove {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.ncf-table--charities.is-favorites-list .nx-list-footer .nx-list-footer-right {
  display: none;
}

@media screen and ( min-width: 1025px ) {
  .ncf-table--charities.is-dialog-list .ncf-table__column--action {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-table--fund-access thead th:first-child,
.ncf-table--fund-access tbody td:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
  }
  .ncf-table--fund-access thead th:nth-of-type(2),
.ncf-table--fund-access tbody td:nth-of-type(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
  .ncf-table--fund-access thead th:nth-of-type(3),
.ncf-table--fund-access tbody td:nth-of-type(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

.ncf-table--investment-options span,
.ncf-table--catalyst-options span {
  display: inline-block;
}
.ncf-table--investment-options .column-field,
.ncf-table--catalyst-options .column-field {
  width: 50px;
}
.ncf-table--investment-options p,
.ncf-table--catalyst-options p {
  margin-bottom: 0;
}
@media screen and ( max-width: 767px ) {
  .ncf-table--investment-options .ncf-table__row,
.ncf-table--catalyst-options .ncf-table__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.ncf-table--investment-options .ncf-table__row.totals-row,
.ncf-table--catalyst-options .ncf-table__row.totals-row {
  padding-top: 20px;
}
.ncf-table--investment-options .ncf-table__row.totals-row .ncf-table__column--description,
.ncf-table--catalyst-options .ncf-table__row.totals-row .ncf-table__column--description {
  border: 0;
}
.ncf-table--investment-options .ncf-table__column--current,
.ncf-table--catalyst-options .ncf-table__column--current {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
@media screen and ( min-width: 768px ) {
  .ncf-table--investment-options .ncf-table__column--current,
.ncf-table--catalyst-options .ncf-table__column--current {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
  }
}
.ncf-table--investment-options .ncf-table__column--requested,
.ncf-table--catalyst-options .ncf-table__column--requested {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
}
@media screen and ( min-width: 768px ) {
  .ncf-table--investment-options .ncf-table__column--requested,
.ncf-table--catalyst-options .ncf-table__column--requested {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table--investment-options .ncf-table__column--description,
.ncf-table--catalyst-options .ncf-table__column--description {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-default);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-table--investment-options .ncf-table__column--description,
.ncf-table--catalyst-options .ncf-table__column--description {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.ncf-table--investment-options-pools .ncf-table__header {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
}
.ncf-table--investment-options-pools .ncf-table__header .ncf-table__column--description {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.ncf-table--investment-options-pools .ncf-table__heading-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ncf-table--investment-options-pools .ncf-table__heading-label:last-child {
  margin-left: var(--margin-text);
}
.ncf-table--investment-options-pools .ncf-table__row .ncf-table__column--requested {
  padding: 0;
}
.ncf-table--investment-options-pools .ncf-table__row .ncf-table__column-field {
  border-bottom: 1px solid var(--border-default);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ncf-table--investment-options-pools .ncf-table__column--current {
  padding-left: 10px;
}
.ncf-table--investment-options-pools .ncf-field {
  padding-left: 0;
  border: 0;
  border-radius: 0;
  background: none;
}
.ncf-table--investment-options-pools .is-faith-driven .ncf-table__column--requested input {
  color: var(--color-green-200);
}
.ncf-table--investment-options-pools .is-faith-driven .ncf-table__column--description .text-bold {
  color: var(--color-green-200);
}
.ncf-table--investment-options-pools .is-traditional .ncf-table__column--requested input {
  color: var(--color-accent);
}
.ncf-table--investment-options-pools .is-traditional .ncf-table__column--description .text-bold {
  color: var(--color-accent);
}

.ncf-table--succession thead th:first-child,
.ncf-table--succession tbody td:first-child {
  padding: 0;
  border-bottom: 0;
}
.ncf-table--succession thead th:first-child div,
.ncf-table--succession tbody td:first-child div {
  margin: 0 !important;
}
@media screen and ( min-width: 768px ) {
  .ncf-table--succession thead th:nth-of-type(2),
.ncf-table--succession tbody td:nth-of-type(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
  .ncf-table--succession thead th:nth-of-type(3),
.ncf-table--succession tbody td:nth-of-type(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
  }
  .ncf-table--succession thead th:nth-of-type(4),
.ncf-table--succession tbody td:nth-of-type(4) {
    text-align: right;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8%;
            flex: 0 0 8%;
  }
  .ncf-table--succession thead th:nth-of-type(5),
.ncf-table--succession tbody td:nth-of-type(5) {
    text-align: right;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
  }
  .ncf-table--succession thead th:nth-of-type(6),
.ncf-table--succession tbody td:nth-of-type(6) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-table--succession .ncf-table .ncf-table__row {
    border-top: 0;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-table--succession .ncf-table .ncf-table__column__allocated {
    margin-left: 12%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
  }
  .ncf-table--succession .ncf-table .ncf-table__column__percentage {
    margin-left: 56%;
    width: 8%;
  }
  .ncf-table--succession .ncf-table .ncf-table__column__amount {
    width: 18%;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-table--donate-buttons thead th:first-child,
.ncf-table--donate-buttons tbody td:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .ncf-table--donate-buttons thead th:nth-of-type(2),
.ncf-table--donate-buttons tbody td:nth-of-type(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
  }
  .ncf-table--donate-buttons thead th:nth-of-type(3),
.ncf-table--donate-buttons tbody td:nth-of-type(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
  }
  .ncf-table--donate-buttons thead th:nth-of-type(4),
.ncf-table--donate-buttons tbody td:nth-of-type(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
  .ncf-table--donate-buttons thead th:nth-of-type(5),
.ncf-table--donate-buttons tbody td:nth-of-type(5) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
  }
}

.ncf-table__communication-preferences .ncf-table__column--comm-type {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64%;
          flex: 0 0 64%;
}
@media screen and ( min-width: 768px ) {
  .ncf-table__communication-preferences .ncf-table__column--comm-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
.ncf-table__communication-preferences .ncf-table__column--examples {
  display: none;
}
@media screen and ( min-width: 768px ) {
  .ncf-table__communication-preferences .ncf-table__column--examples {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.ncf-table__communication-preferences .ncf-table__column--print,
.ncf-table__communication-preferences .ncf-table__column--email,
.ncf-table__communication-preferences .ncf-table__column--none {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
}
@media screen and ( min-width: 768px ) {
  .ncf-table__communication-preferences .ncf-table__column--print,
.ncf-table__communication-preferences .ncf-table__column--email,
.ncf-table__communication-preferences .ncf-table__column--none {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
  }
}
.ncf-table__communication-preferences.hide-print .ncf-table__column--print {
  display: none;
}

@media screen and ( min-width: 768px ) {
  .ncf-table__saved-giving-options .ncf-table__column--nickname {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ncf-table__saved-giving-options .ncf-table__column--type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .ncf-table__saved-giving-options .ncf-table__column--action {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

.ncf-table--info-table .ncf-table__column--label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
}
.ncf-table--info-table .ncf-table__column--description {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.nx-skootable-order-icon-wrapper {
  margin: 0 0 0 10px;
  width: 6px;
  height: 12px;
  display: inline-block;
  position: relative;
  top: 0;
  cursor: pointer;
}

.nx-skootable-order-icon.ui-icon {
  margin: 0;
  width: auto;
  height: auto;
  display: block;
  position: relative;
}
.nx-skootable-order-icon.ui-icon::before, .nx-skootable-order-icon.ui-icon::after {
  content: "";
  border-left: 3px solid transparent !important;
  border-right: 3px solid transparent !important;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
}
.nx-skootable-order-icon.ui-icon::before {
  border-bottom: 4px solid var(--color-accent) !important;
  top: 0;
}
.nx-skootable-order-icon.ui-icon::after {
  border-top: 4px solid var(--color-accent) !important;
  top: 8px;
}

.tooltip {
  border: none;
  display: block !important;
  z-index: 9999999;
  background: transparent;
}

.iframeTooltip {
  position: absolute;
  z-index: 1010;
}

#sprytooltip_ql.tooltipContent {
  padding: 25px;
  width: 700px;
  left: 165px !important;
  background-color: var(--color-white);
}

.tooltipContent {
  line-height: normal;
  text-align: left;
  border: 1px solid var(--border-default);
  width: 275px;
  background-color: var(--color-grey-900);
  -webkit-box-shadow: 0 0 5px rgba(var(--rgb-black), 0.2);
          box-shadow: 0 0 5px rgba(var(--rgb-black), 0.2);
}

.menu-container__heading {
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.ncf-status-field-popup {
  color: var(--color-black);
  line-height: normal;
  padding: 8px;
  border-radius: var(--border-radius);
  width: 350px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: var(--color-white);
  -webkit-box-shadow: var(--box-shadow-tooltip);
          box-shadow: var(--box-shadow-tooltip);
}
.ncf-status-field-popup p {
  font-size: 14px;
  margin: 0;
}

.ncf-status-field-popup-title {
  font-weight: 700;
  padding-bottom: 16px;
}

.ncf-search__results .ncf-status-field-popup {
  top: -10px;
  left: 5px;
  width: 225px;
}
@media screen and ( min-width: 768px ) {
  .ncf-search__results .ncf-status-field-popup {
    left: 20px;
    width: 350px;
  }
}

.menu-container__contact {
  width: 285px;
  display: none;
  top: 44px !important;
  z-index: 99999999;
  -webkit-box-shadow: var(--box-shadow-tooltip);
          box-shadow: var(--box-shadow-tooltip);
}
.menu-container__contact .contact-details {
  padding: 25px;
}

.mobile-nav__contact {
  z-index: 601;
}

.contact-details {
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  border: 0;
  visibility: visible;
  background-color: var(--color-white);
}
.contact-details .button-create-case {
  color: var(--link-text);
  margin: 0 0 var(--margin-section) 0;
  width: 100%;
}
.contact-details .contact-details__item {
  margin-bottom: var(--margin-section);
  display: block;
}
.contact-details .contact-details__item:last-child {
  margin: 0;
}
.contact-details .contact-details__item span {
  margin-bottom: 5px;
  display: block;
}
.contact-details .contact-details__item .affiliate-email {
  margin: 10px 0;
}
.contact-details .contact-details__link {
  color: var(--color-accent);
}

.tooltipContent.case {
  margin-top: 44px;
  width: 567px;
  min-height: 320px;
  position: absolute;
  z-index: 9999;
  visibility: visible;
  display: none;
  background-color: var(--color-white);
}
.tooltipContent.case .ncf-case-container {
  padding: 20px;
}
.tooltipContent.case .ncf-select--case-topic,
.tooltipContent.case .ncf-form__field--case-notes {
  margin-right: 0;
  margin-bottom: var(--margin-form);
}

.ncf-case-container p {
  font-size: var(--text-default);
}

.ncf-form__field--case-notes {
  width: 100%;
}

.menu-container__settings {
  border: 0;
  width: 380px;
  display: none;
  visibility: visible;
  top: 44px !important;
  right: 0 !important;
  left: auto !important;
  z-index: 999999999;
  background-color: var(--color-white);
}
.menu-container__settings .column {
  padding: 16px 0 23px 0;
  width: 190px;
  height: 251px;
}
.menu-container__settings .column a {
  padding: 9px 0 9px 25px;
  width: 100%;
  display: block;
}
.menu-container__settings .column a:hover {
  color: var(--color-accent);
}
.menu-container__settings .menu-container__heading {
  color: var(--color-accent);
  margin: 0 0 10px 0;
  padding: 9px 0 9px 25px;
  border-top: 0;
  border-bottom: 1px solid var(--color-grey-900);
}

.tooltipContent.goalpicker {
  padding: 1px 0 0 0;
  width: 100%;
  display: none;
  visibility: visible;
  right: 0;
  z-index: 9999;
  background-color: var(--color-white);
}
.tooltipContent.goalpicker div {
  font-weight: 800;
  padding: 15px;
  border-bottom: 1px solid var(--border-default);
  cursor: pointer;
  background-color: var(--color-white);
}
.tooltipContent.goalpicker div:hover {
  background-color: var(--color-grey-900);
}

.ncf-form__container {
  padding: var(--margin-form) 0 0 0;
}
.ncf-dialog__container .ncf-form__container {
  padding: 0;
}

.ncf-form__section {
  margin-bottom: var(--margin-section);
  border-bottom: 1px solid var(--form-section-border);
}
.ncf-form__section.no-border {
  border: 0;
}
.ncf-form__section.no-margin {
  margin: 0;
}
.ncf-form__section.has-border {
  padding-top: var(--margin-section);
  border-top: 1px solid var(--form-section-border);
}
.ncf-form__section .ncf-form__row:last-child {
  margin-bottom: 0;
}

.ncf-form__sub-section {
  margin-bottom: var(--margin-section);
}
.ncf-form__sub-section .ncf-form__row:last-child {
  margin-bottom: 0;
}
.ncf-form__sub-section .ncf-form__row:last-child .ncf-form__field:last-child {
  margin-bottom: 0;
}

.ncf-form__inline-section-detail {
  margin-bottom: 0;
  display: inline-block;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__inline-section-detail.is-indented {
    margin-left: var(--label-inline-width);
    padding: 0 calc(var(--margin-form) / 2);
  }
}
@media screen and ( min-width: 1025px ) {
  .ncf-form__inline-section-detail.is-indented {
    width: 450px;
  }
}

.ncf-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__row {
    margin-bottom: var(--margin-form);
  }
}
.ncf-form__row.is-last {
  margin-bottom: 0;
}
.ncf-form__row.is-hidden {
  display: none;
}
.ncf-form__row .ncf-form__field:first-child {
  padding-left: 0;
}
.ncf-form__row .ncf-form__field:last-child {
  padding-right: 0;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__row .ncf-radiowrapper {
    display: block;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__row .ncf-radiowrapper {
    margin-right: var(--margin-form);
  }
}
.ncf-form__row .ncf-radiowrapper:last-child {
  margin-right: 0;
}

@media screen and ( min-width: 768px ) {
  .ncf-form__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.5%;
            flex: 0 0 48.5%;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__column--right {
    margin-left: auto;
  }
}

.ncf-form__field {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__field {
    margin-bottom: var(--margin-form);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__field {
    padding: 0 calc(var(--margin-form) / 2);
  }
}
.ncf-form__field.is-hidden {
  display: none;
}
.ncf-form__field.is-visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ncf-form__field .nx-field {
  width: 100%;
}

@media screen and ( min-width: 768px ) {
  .ncf-form__inline-controls {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.ncf-form__inline-controls .ncf-radiowrapper,
.ncf-form__inline-controls .nx-radiowrapper {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__inline-controls .ncf-radiowrapper,
.ncf-form__inline-controls .nx-radiowrapper {
    margin-right: var(--margin-form);
    margin-bottom: 0;
  }
  .ncf-form__inline-controls .ncf-radiowrapper:last-child,
.ncf-form__inline-controls .nx-radiowrapper:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__inline-controls .ncf-radiowrapper label,
.ncf-form__inline-controls .nx-radiowrapper label {
    padding-top: 2px;
  }
}

.ncf-form__block-controls .ncf-radiowrapper,
.ncf-form__block-controls .nx-radiowrapper {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ncf-form__block-controls .ncf-radiowrapper:last-child,
.ncf-form__block-controls .nx-radiowrapper:last-child {
  margin: 0;
}

.ncf-form__address-block {
  line-height: var(--line-height-base);
  padding-top: 20px;
}
.ncf-form__address-block .nx-template {
  margin-bottom: var(--margin-form);
}

.ncf-form__footer h4 {
  margin-bottom: var(--margin-section);
}
.ncf-form__footer .note-block {
  margin-bottom: var(--margin-section);
}

.ncf-saved-message {
  color: var(--color-green);
  font-size: 18px;
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.ncf-saved-message .ncf-icon--greencheck {
  margin-right: 8px;
}
.ncf-saved-message .ncf-saved-message__label {
  padding-top: 4px;
}

.form-field__label {
  font-size: var(--form-label);
  font-weight: var(--form-label-weight);
  margin-bottom: var(--margin-form-label);
  display: block;
}

label,
.nx-radiolabel {
  color: var(--text-color);
  font-size: var(--form-label);
  line-height: 1;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.ncf-form__label {
  color: var(--text-color);
  font-size: var(--form-label);
  font-weight: var(--form-label-weight);
}

.ncf-form__inline-label {
  font-size: var(--form-label);
  font-weight: var(--form-label-weight);
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 2px;
}

@media screen and ( max-width: 767px ) {
  .ncf-form__inline-block-label {
    margin-bottom: var(--margin-form-label);
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__inline-block-label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--label-inline-width);
            flex: 0 0 var(--label-inline-width);
  }
}

.ncf-form__step-label {
  font-size: 21px;
  padding-bottom: var(--margin-form);
}
.ncf-form__step-label span {
  color: var(--text-dark);
  font-size: 17px;
}

.amount-label,
.percent-label {
  font-size: 24px;
  line-height: 24px;
  position: relative;
  top: 1px;
}

.amount-label--small,
.percent-label--small {
  font-size: 15px;
  line-height: 15px;
}

.amount-label {
  padding-right: 5px;
}

.percent-label {
  padding-left: 5px;
}

.balance-label {
  color: var(--text-dark);
  display: block;
}
@media screen and ( max-width: 767px ) {
  .balance-label {
    padding-left: 15px;
  }
}
@media screen and ( min-width: 768px ) {
  .balance-label {
    padding-left: 10px;
    display: inline-block;
  }
}

input,
select,
input[type=text],
input[type=email] input[type=password],
input[type=submit],
input[type=button],
textarea,
.textarea,
button {
  font-family: var(--font-default);
}

textarea,
.textarea {
  vertical-align: auto;
  height: auto;
}

textarea {
  resize: none;
}

/*
.nx-editor-contents input[type="text"],
.nx-field input.ncf-field,
.nx-field textarea
*/
input[type=text],
input[type=email] input[type=password],
input.ncf-field,
textarea,
textarea.ncf-field,
.egrants-form__field input {
  color: var(--form-text-color);
  font-size: var(--form-text);
  line-height: 1.23;
  margin: 0;
  width: 100%;
  padding: 10px 8px 6px 10px;
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  outline: none;
  background-color: var(--form-background);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(var(--color-grey-900)));
  background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-grey-900) 100%);
}
input[type=text]:disabled,
input[type=email] input[type=password]:disabled,
input.ncf-field:disabled,
textarea:disabled,
textarea.ncf-field:disabled,
.egrants-form__field input:disabled {
  opacity: 0.6;
}
input[type=text]::-webkit-input-placeholder,
input[type=email] input[type=password]::-webkit-input-placeholder,
input.ncf-field::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
textarea.ncf-field::-webkit-input-placeholder,
.egrants-form__field input::-webkit-input-placeholder {
  font-size: var(--form-text);
  line-height: 1.23;
}
input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus, input[type=text]:-webkit-autofill:active, input[type=text]:-webkit-autofill::first-line,
input[type=email] input[type=password]:-webkit-autofill,
input[type=email] input[type=password]:-webkit-autofill:hover,
input[type=email] input[type=password]:-webkit-autofill:focus,
input[type=email] input[type=password]:-webkit-autofill:active,
input[type=email] input[type=password]:-webkit-autofill::first-line,
input.ncf-field:-webkit-autofill,
input.ncf-field:-webkit-autofill:hover,
input.ncf-field:-webkit-autofill:focus,
input.ncf-field:-webkit-autofill:active,
input.ncf-field:-webkit-autofill::first-line,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
textarea:-webkit-autofill::first-line,
textarea.ncf-field:-webkit-autofill,
textarea.ncf-field:-webkit-autofill:hover,
textarea.ncf-field:-webkit-autofill:focus,
textarea.ncf-field:-webkit-autofill:active,
textarea.ncf-field:-webkit-autofill::first-line,
.egrants-form__field input:-webkit-autofill,
.egrants-form__field input:-webkit-autofill:hover,
.egrants-form__field input:-webkit-autofill:focus,
.egrants-form__field input:-webkit-autofill:active,
.egrants-form__field input:-webkit-autofill::first-line {
  font-size: var(--form-text);
  -webkit-box-shadow: 0 0 0 30px white inset !important;
          box-shadow: 0 0 0 30px white inset !important;
}

.ncf-field--nostyle,
input.ncf-field.ncf-field--nostyle {
  border: 0;
  border-radius: 0;
  background: transparent;
  background-color: var(--color-white);
}

input.placeholder,
textarea.placeholder {
  color: var(--text-medium);
}

textarea,
.flex-text-wrap,
.flex-text-wrap textarea {
  height: 125px;
  overflow: hidden;
}

.form-field {
  color: var(--text-dark);
  font-size: var(--form-field);
  margin-top: 0;
  padding: 10px 0 6px 0;
  border: 0;
  width: 100%;
  outline: none;
}
.form-field::-webkit-input-placeholder {
  font-size: var(--form-field);
}
.form-field:-webkit-autofill, .form-field:-webkit-autofill:hover, .form-field:-webkit-autofill:focus, .form-field:-webkit-autofill:active, .form-field:-webkit-autofill::first-line {
  font-size: var(--form-field);
  -webkit-box-shadow: 0 0 0 30px white inset !important;
          box-shadow: 0 0 0 30px white inset !important;
}

.form-field--line {
  border-bottom: 1px solid var(--form-border);
}

.has-error .form-field--line {
  border: 0;
  border-bottom: 1px solid var(--border-error);
}

input.has-error,
.has-error input,
.nx-field .ncf-field.has-error,
.nx-field.has-error .ncf-field,
.nx-editor-contents.has-error .ncf-field {
  color: var(--color-white);
  border: 1px solid var(--border-error);
  background-color: var(--color-red);
  background-image: url(/resource/gximages/ui-bg_diagonals-thick_18_b81900_40x40.png);
  background-position: 50% 50%;
  background-repeat: repeat;
}

.textfieldFlashText input,
input.textfieldFlashText {
  color: var(--color-red) !important;
}

.textfieldHintState input,
input.textfieldHintState {
  color: var(--text-color) !important;
}

.textfieldRequiredState input .textfieldHintState input,
input.textfieldHintState input.textfieldRequiredState {
  color: var(--color-white) !important;
}

.textfieldRequiredMsg,
.textfieldInvalidFormatMsg,
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
  display: none;
}

.textfieldRequiredState .textfieldRequiredMsg,
.textfieldInvalidFormatState .textfieldInvalidFormatMsg,
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg {
  color: var(--color-red);
  display: inline;
}

:focus {
  outline: none;
}

::-moz-focus-inner {
  border: 0;
}

::-webkit-input-placeholder {
  color: var(--text-medium);
}

:-moz-placeholder {
  color: var(--text-medium);
}

::-moz-placeholder {
  color: var(--text-medium);
}

:-ms-input-placeholder {
  color: var(--text-medium);
}

input::-ms-clear {
  display: none;
}

.textfieldRequiredState input::-webkit-input-placeholder,
.confirmRequiredState input::-webkit-input-placeholder {
  color: var(--color-white);
}
.textfieldRequiredState input:-moz-placeholder,
.confirmRequiredState input:-moz-placeholder {
  color: var(--color-white);
}
.textfieldRequiredState input::-moz-placeholder,
.confirmRequiredState input::-moz-placeholder {
  color: var(--color-white);
}
.textfieldRequiredState input:-ms-input-placeholder,
.confirmRequiredState input:-ms-input-placeholder {
  color: var(--color-white);
}

input.textfieldRequiredState::-webkit-input-placeholder,
input.confirmRequiredState::-webkit-input-placeholder {
  color: var(--color-white);
}
input.textfieldRequiredState:-moz-placeholder,
input.confirmRequiredState:-moz-placeholder {
  color: var(--color-white);
}
input.textfieldRequiredState::-moz-placeholder,
input.confirmRequiredState::-moz-placeholder {
  color: var(--color-white);
}
input.textfieldRequiredState:-ms-input-placeholder,
input.confirmRequiredState:-ms-input-placeholder {
  color: var(--color-white);
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  border: 1px solid var(--form-controls) !important;
  outline: none;
  width: 21px !important;
  height: 21px !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=checkbox]:checked::before,
input[type=radio]:checked::before {
  display: block;
  position: absolute;
}
@media screen and ( min-width: 768px ) {
  input[type=checkbox] + label.mobile-only,
input[type=radio] + label.mobile-only {
    display: none;
  }
}

input[type=checkbox] {
  border-radius: var(--border-radius);
}
input[type=checkbox]:checked::before {
  content: "";
  border-bottom: 3px solid var(--form-controls);
  border-right: 3px solid var(--form-controls);
  width: 7px;
  height: 11px;
  display: block;
  top: 3px;
  left: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked::before {
  content: "";
  border-radius: 50%;
  width: 9px;
  height: 9px;
  top: 5px;
  left: 5px;
  background-color: var(--form-controls);
}

.ncf-radiowrapper,
.ncf-checkboxwrapper,
.nx-radiowrapper,
.nx-checkboxwrapper,
.nx-tabset-header > div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ncf-radiowrapper,
.ncf-checkboxwrapper,
.nx-radiowrapper,
.nx-checkboxwrapper {
  margin: 0;
}

.ncf-radiowrapper input[type=checkbox],
.ncf-radiowrapper input[type=radio],
.ncf-checkboxwrapper input[type=checkbox],
.ncf-checkboxwrapper input[type=radio],
.nx-radiowrapper input[type=checkbox],
.nx-radiowrapper input[type=radio],
.nx-checkboxwrapper input[type=checkbox],
.nx-checkboxwrapper input[type=radio],
.nx-tabset-header input[type=checkbox],
.nx-tabset-header input[type=radio] {
  margin-right: 8px;
}

.nx-tabset-header {
  margin: 0 0 25px 0;
}
.nx-tabset-header > div {
  margin: 0 5px 0 0;
  padding: 8px 16px 8px 10px;
  background-color: var(--color-grey-900);
}
.nx-tabset-header label {
  padding-top: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

select {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.23;
  padding: 10px 8px 6px 8px;
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  outline: none;
  display: block;
  width: 100%;
  max-width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: var(--color-grey-900);
  background-image: url(/resource/gximages/downarrow.png), -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(var(--color-grey-900)));
  background-image: url(/resource/gximages/downarrow.png), linear-gradient(to bottom, var(--color-white) 0%, var(--color-grey-900) 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 8px top 50%, 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and ( min-width: 768px ) {
  select {
    font-size: 15px;
  }
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
}
select:disabled {
  opacity: 0.6;
}
select option {
  font-weight: normal;
}
select.is-text-style {
  line-height: 1;
  padding: 0;
  border: 0;
  background: none;
}
select.ncf-select--box-style {
  border: 0;
  border-radius: 0;
  background: none;
  background-color: var(--color-white);
  background-image: url(/resource/gximages/downarrow.png);
  background-repeat: no-repeat;
  background-position: right 8px top 50%;
}
select.ncf-grantto-select {
  color: var(--color-white);
  font-weight: 500;
  padding: 12px 12px 9px 12px;
  border: 0;
  background: none;
}
select.ncf-grantto-select option {
  font-weight: normal;
}

.js-select-width {
  visibility: hidden;
  opacity: 0;
  position: relative;
  z-index: 0;
}

.selectRequiredState select,
.selectInvalidState select {
  color: var(--color-white);
  border: 1px solid var(--border-error);
  background-color: var(--color-red);
  background-image: url(/resource/gximages/downarrow_white.png), url(/resource/gximages/ui-bg_diagonals-thick_18_b81900_40x40.png);
}

.ncf-form__amount-section .ncf-form__field--amount {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__amount-section .ncf-form__field--amount {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}
.ncf-form__amount-section .ncf-form__field--amount-small {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__amount-section .ncf-form__field--amount-small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.75%;
            flex: 0 0 31.75%;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__bank-section .ncf-form__field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__credit-card-section .ncf-form__field--credit-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
  }
}
.ncf-form__credit-card-section .ncf-form__field--cc-code {
  min-width: 145px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__credit-card-section .ncf-form__field--cc-code {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
}
.ncf-form__credit-card-section .ncf-form__field--expiration {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__credit-card-section .ncf-form__field--expiration {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__credit-card-section .ncf-form__field--expiration {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37%;
            flex: 0 0 37%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__credit-card-section .ncf-form__field--expiration .ncf-form__inline-label {
    margin-bottom: var(--margin-form-label);
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__credit-card-section .ncf-form__field--expiration .ncf-form__inline-label {
    padding-left: 18px;
  }
}
.ncf-form__credit-card-section .ncf-select--expiration-field {
  margin-bottom: 0;
  min-width: 60px;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__credit-card-section .ncf-select--expiration-field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__credit-card-section .ncf-select--expiration-month {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__credit-card-section .ncf-select--expiration-year {
    padding-left: calc(var(--margin-form) / 2);
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__credit-card-section .ncf-select--expiration-year {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__contact-section .ncf-form__field--phone {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .ncf-form__contact-section .ncf-form__field--phone-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14%;
            flex: 0 0 14%;
  }
  .ncf-form__contact-section .ncf-form__field--email {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
  .ncf-form__contact-section .ncf-form__field--recipient {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__billing-section .ncf-form__field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}
.ncf-form__billing-section .ncf-select--salutation {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__billing-section .ncf-select--salutation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__billing-section .ncf-form__field--first-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
.ncf-form__billing-section .ncf-form__field--city {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 59%;
          flex: 0 0 59%;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__billing-section .ncf-form__field--city {
    padding-right: calc(var(--margin-form) / 2);
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__billing-section .ncf-form__field--city {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}
.ncf-form__billing-section .ncf-select--state,
.ncf-form__billing-section .ncf-form__field--province {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__billing-section .ncf-select--state,
.ncf-form__billing-section .ncf-form__field--province {
    padding-left: calc(var(--margin-form) / 2);
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__billing-section .ncf-select--state,
.ncf-form__billing-section .ncf-form__field--province {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.5%;
            flex: 0 0 23.5%;
  }
}
.ncf-form__billing-section .ncf-form__field--zip {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__billing-section .ncf-form__field--zip {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.5%;
            flex: 0 0 23.5%;
  }
}

@media screen and ( max-width: 767px ) {
  .ncf-form__recurrence-section {
    -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;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__recurrence-section {
    padding-top: 6px;
  }
}
.ncf-form__recurrence-section.ncf-form__recurrence-section--grant {
  display: none;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__recurrence-section .ncf-form__recurrence-container {
    padding-top: var(--margin-form);
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__recurrence-section .ncf-select--recurrence {
    margin: 0;
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__recurrence-section .ncf-select--recurrence {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__recurrence-section .ncf-form__inline-label {
    margin-bottom: var(--margin-form-label);
    display: block;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__recurrence-section .ncf-form__inline-label {
    padding-right: calc(var(--margin-form) / 2);
  }
}
.ncf-form__recurrence-section .ncf-form__field--recurrence-date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
@media screen and ( max-width: 767px ) {
  .ncf-form__recurrence-section .ncf-form__field--recurrence-date {
    margin-bottom: var(--margin-form);
    display: block;
  }
  .ncf-form__recurrence-section .ncf-form__field--recurrence-date:last-child {
    margin-bottom: 0;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__recurrence-section .ncf-form__field--recurrence-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

.ncf-form__dialog-form .ncf-form__section {
  margin-bottom: var(--margin-section--small);
  border: 0;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__dialog-form .ncf-form__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.ncf-form__login .ncf-form__field {
  width: 100%;
}
.ncf-form__login .button-container .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*
 * This naming convention is not modular and results in repeated styles for
 * buttons of other sizes and variants.
 * Current approach is using BEM where the variant of the button would be
 * handled with a modifier.
 *
 * This will need to be removed after a search through declarative can be
 * conducted.
 */
@media screen and ( max-width: 767px ) {
  .page--gxactivity .ui-tabs-nav {
    display: none !important;
  }
}
@media screen and ( max-width: 767px ) {
  .page--gxactivity .ui-tabs-panel#overview {
    display: block !important;
  }
  .page--gxactivity .ui-tabs-panel#gifts, .page--gxactivity .ui-tabs-panel#grants, .page--gxactivity .ui-tabs-panel#transfers, .page--gxactivity .ui-tabs-panel#statements, .page--gxactivity .ui-tabs-panel#investmentreports {
    display: none !important;
  }
}
.page--gxactivity .ncf-activity__balance-group {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and ( min-width: 768px ) {
  .page--gxactivity .ncf-activity__balance-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page--gxactivity .ncf-activity__balance-group .ncf-activity__balance--item {
  margin-bottom: 15px;
}
@media screen and ( min-width: 768px ) {
  .page--gxactivity .ncf-activity__balance-group .ncf-activity__balance--item {
    width: 46%;
  }
}
.page--gxactivity .ncf-activity__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and ( min-width: 768px ) {
  .page--gxactivity .ncf-activity__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page--gxactivity .ncf-activity__column {
  margin-bottom: var(--margin-section);
}
@media screen and ( min-width: 768px ) {
  .page--gxactivity .ncf-activity__column {
    width: 46%;
    margin-bottom: 0;
  }
}
.page--gxactivity .ncf-activity__column .ncf-activity__filter-search {
  width: 150px;
}
.page--gxactivity .ncf-activity__column .ncf-activity__search-container::before {
  left: 200px;
}
@media screen and ( max-width: 767px ) {
  .page--gxactivity .ncf-activity__report {
    margin-bottom: 0;
  }
}
.page--gxactivity .ncf-report-link {
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-default);
  cursor: pointer;
}
.page--gxactivity .ncf-report-link__label {
  color: var(--link-text);
}
.page--gxactivity .ncf-report-link__label:hover {
  color: var(--link-text--hover);
}
.page--gxactivity .ncf-activity__summary-holdings {
  width: 100%;
}
@media screen and ( max-width: 767px ) {
  .page--gxactivity .ncf-activity__summary-holdings {
    display: none;
  }
}
.page--gxactivity .ncf-table__gifts-completed [data-field=KeyDate__c] {
  width: 85px;
}
.page--gxactivity .ncf-table__gifts-completed [data-field=Amount__c] {
  width: 169px;
}
.page--gxactivity .ncf-table__gifts-completed [data-field=UI_Status__c] {
  width: 90px;
}
.page--gxactivity .ncf-activity__holdings {
  min-height: 75px;
  position: relative;
}

@media screen and ( max-width: 767px ) {
  .page--gxcharityprofile .page-panel__primary {
    margin-bottom: var(--margin-section);
  }
}
.page--gxcharityprofile .ncf-charity__header {
  margin-bottom: var(--margin-section);
}
.page--gxcharityprofile .ncf-charity__cover-container {
  margin-bottom: var(--margin-section);
}
@media screen and ( min-width: 768px ) {
  .page--gxcharityprofile .ncf-charity__cover-container {
    margin-bottom: var(--margin-section);
  }
}
.page--gxcharityprofile .ncf-charity__cover-image {
  border: 1px solid var(--border-default);
  height: 200px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and ( min-width: 768px ) {
  .page--gxcharityprofile .ncf-charity__cover-image {
    height: 244px;
  }
}
.page--gxcharityprofile .ncf-charity__thumbnail {
  width: var(--charity-image-full);
  min-height: var(--charity-image-full);
  float: left;
}
.page--gxcharityprofile .ncf-charity__thumbnail .ncf-charity__thumbnail-src,
.page--gxcharityprofile .ncf-charity__thumbnail .ncf-charity__thumbnail-icon {
  border-radius: 50%;
  width: var(--charity-image-full);
  min-height: var(--charity-image-full);
  display: block;
  -webkit-box-shadow: var(--box-shadow-icon);
          box-shadow: var(--box-shadow-icon);
}
.page--gxcharityprofile .ncf-charity__thumbnail .ncf-charity__thumbnail-icon {
  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;
          justify-content: center;
  background-color: var(--color-white);
}
.page--gxcharityprofile .ncf-charity__thumbnail .ncf-charity__thumbnail-icon img {
  width: var(--icon-img-md);
  height: var(--icon-img-md);
  display: block;
}
.page--gxcharityprofile .ncf-charity__heading {
  margin-left: var(--charity-image-space);
}
.page--gxcharityprofile .ncf-charity__heading h3 {
  color: var(--color-accent);
  font-size: 35px;
  font-weight: 400;
  line-height: 37px;
  margin-bottom: 4px;
}
.page--gxcharityprofile .ncf-charity__heading span {
  color: var(--text-medium);
  font-size: 16px;
  display: block;
}
.page--gxcharityprofile .ncf-charity__summary {
  border-bottom: 1px solid var(--border-light);
}
.page--gxcharityprofile .ncf-charity__summary__header {
  line-height: 40px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-default);
}
@media screen and ( max-width: 767px ) {
  .page--gxcharityprofile .ncf-charity__summary__header {
    display: none;
  }
}
.page--gxcharityprofile .ncf-charity__contact-section {
  margin-bottom: var(--margin-section);
}
.page--gxcharityprofile .ncf-charity__contact-section p:last-child {
  margin: 0;
}
.page--gxcharityprofile .ncf-charity__detail-row {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}
@media screen and ( min-width: 768px ) {
  .page--gxcharityprofile .ncf-charity__detail-row {
    padding: 20px 0;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page--gxcharityprofile .ncf-charity__detail-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page--gxcharityprofile .ncf-charity__detail-column span {
  color: var(--text-medium);
}
@media screen and ( min-width: 768px ) {
  .page--gxcharityprofile .ncf-charity__detail-column--label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
.page--gxcharityprofile .ncf-charity__detail-column--label .block-heading {
  line-height: var(--line-height-base);
  margin: 0;
}
@media screen and ( max-width: 767px ) {
  .page--gxcharityprofile .ncf-charity__detail-column--label .block-heading {
    margin-bottom: 10px;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxcharityprofile .ncf-charity__detail-column--body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.page--gxcharityprofile .ncf-charity__detail-column--body p {
  margin: 0;
}
.page--gxcharityprofile .ncf-charity__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page--gxcharityprofile .ncf-charity__description_row {
  padding-bottom: 0;
  border-bottom: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page--gxcharityprofile .ncf-charity__description_row .ncf-charity__detail-column--body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page--gxcharityprofile .ncf-charity__description_row p {
  margin-bottom: 10px;
}
.page--gxcharityprofile .ncf-charity__description_row p:last-child {
  margin-bottom: 0;
}
.page--gxcharityprofile .sidebar-column {
  margin-bottom: var(--margin-section);
}
.page--gxcharityprofile .sidebar-column p:last-child {
  margin: 0;
}
.page--gxcharityprofile .ncf-charity__actions {
  margin-bottom: var(--margin-section);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and ( min-width: 768px ) {
  .page--gxcharityprofile .ncf-charity__actions {
    margin-bottom: var(--margin-section--small);
  }
}
.page--gxcharityprofile .ncf-charity__actions .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page--gxcharityprofile .ncf-charity__actions .button:first-child {
  margin-right: 12px;
}
.page--gxcharityprofile .ncf-charity__actions--desktop {
  display: none;
}
@media screen and ( min-width: 1025px ) {
  .page--gxcharityprofile .ncf-charity__actions--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page--gxcharityprofile .ncf-charity__actions--mobile {
  margin-bottom: var(--margin-section);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and ( min-width: 1025px ) {
  .page--gxcharityprofile .ncf-charity__actions--mobile {
    display: none;
  }
}
.page--gxcharityprofile .ncf-charity__actions--mobile .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page--gxcharityprofile .ncf-charity__giver-count span {
  color: var(--color-accent);
  display: inline-block;
}
.page--gxcharityprofile .ncf-charity__giver-count .number {
  font-size: 51px;
  line-height: 48px;
  margin-right: 6px;
}
.page--gxcharityprofile .ncf-charity__giver-count .label {
  font-size: 19px;
  text-transform: uppercase;
}
.page--gxcharityprofile .ncf-charity--stats-row.is-first {
  margin-bottom: var(--margin-section--small);
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--border-default);
}
.page--gxcharityprofile .ncf-charity--stats-dollar {
  color: var(--color-accent);
  font-size: 32px;
  margin-bottom: 2px;
  display: block;
}
.page--gxcharityprofile .ncf-charity--stats-label {
  color: var(--text-dark);
  font-size: 14px;
  text-transform: uppercase;
}
.page--gxcharityprofile .sidebar-column--charity-about {
  margin: 0;
}
.page--gxcharityprofile .ncf-charity__news-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-default);
}
.page--gxcharityprofile .ncf-charity__news-item:first-child {
  padding-top: 0;
}
.page--gxcharityprofile .ncf-charity__news-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.page--gxcharityprofile .ncf-charity__news-thumbnail {
  margin-right: 10px;
  border: 1px solid var(--border-default);
  float: left;
}
.page--gxcharityprofile .ncf-charity__news-thumbnail a {
  margin: 0;
  border: 3px solid var(--color-white);
  width: 56px;
  height: 56px;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page--gxcharityprofile .ncf-charity__news-detail {
  color: var(--text-color);
  font-size: 14px;
  line-height: 20px;
}
.page--gxcharityprofile .ncf-charity__news-detail a {
  color: var(--text-color) !important;
}
.page--gxcharityprofile .ncf-charity__news-detail a span {
  color: var(--color-accent) !important;
}
.page--gxcharityprofile .ncf-charity__dialog-text {
  width: 275px;
  float: left;
}
.page--gxcharityprofile .ncf-dialog-image {
  float: right;
}
.page--gxcharityprofile .ncf-dialog-image img,
.page--gxcharityprofile .ncf-dialog-image iframe {
  max-width: 650px;
}
.page--gxcharityprofile .ncf-dialog-image iframe {
  height: 350px;
}
.page--gxcharityprofile #selectedgrantee td {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.page--gxcharityprofile #selectedgrantee .nx-editor-header,
.page--gxcharityprofile #selectedgrantee .nx-list-footer {
  display: none;
}
.page--gxcharityprofile #selectedgrantee .nx-editor-contents {
  margin-top: 0;
}

.ncf-confirm__heading {
  margin-bottom: var(--margin-section);
}

.ncf-table--confirm-detail {
  margin-bottom: var(--margin-section);
  padding-top: 20px;
}
.dialog__body .ncf-table--confirm-detail {
  margin-bottom: var(--margin-section--small);
  padding: 0;
}
.ncf-table--confirm-detail .ncf-table__column:first-child {
  font-weight: 600;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.ncf-table--confirm-detail .ncf-table__column:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and ( max-width: 767px ) {
  .grant-schedule {
    display: none;
  }
}

.ncf-table--grant-schedule {
  margin-bottom: var(--margin-section);
}
.ncf-table--grant-schedule thead th:first-child,
.ncf-table--grant-schedule tbody td:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}
.ncf-table--grant-schedule thead th:nth-of-type(2),
.ncf-table--grant-schedule tbody td:nth-of-type(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
.ncf-table--grant-schedule thead th:nth-of-type(3),
.ncf-table--grant-schedule tbody td:nth-of-type(3) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ncf-table--grant-schedule .nx-fieldtext {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ncf-table--grant-schedule .nx-fieldtext span {
  display: block;
}

@media screen and ( max-width: 549px ) {
  .ncf-confirm__footer .button-container {
    display: block;
  }
  .ncf-confirm__footer .button {
    margin: 0 0 12px 0;
    width: 100%;
  }
  .ncf-confirm__footer .button:last-child {
    margin-bottom: 0;
  }
}

.page--gxdashboard .dashboard__balance {
  margin-bottom: var(--margin-section);
}
@media screen and ( min-width: 768px ) {
  .page--gxdashboard .dashboard__balance .balance-values__available {
    padding-left: 10px;
  }
}
.page--gxdashboard .dashboard__container {
  padding-top: 13px;
  position: relative;
}
@media screen and ( max-width: 767px ) {
  .page--gxdashboard .dashboard__container {
    display: none;
  }
}
.page--gxdashboard .dashboard__column {
  border-bottom: 1px solid var(--border-default);
  height: 391px !important;
  position: relative;
  overflow: hidden;
}
.page--gxdashboard .dashboard__column .nx-list-contents .nx-item:last-child .grantee-card {
  margin-bottom: 0;
  border-bottom: 0;
}
.page--gxdashboard .dashboard__activity {
  width: 100%;
  display: none;
  position: relative;
}
@media screen and ( min-width: 768px ) {
  .page--gxdashboard .dashboard__activity {
    padding-right: 24px;
    width: 50%;
    display: block;
  }
}
.page--gxdashboard .dashboard__activity .nx-editor-header,
.page--gxdashboard .dashboard__activity .nx-list-footer {
  display: none !important;
}
.page--gxdashboard .dashboard__history {
  padding-left: 24px;
  border-left: 1px solid var(--border-default);
  width: 50%;
  display: none;
}
@media screen and ( min-width: 768px ) {
  .page--gxdashboard .dashboard__history {
    display: block;
  }
}
.page--gxdashboard .dashboard__history .ncf-activity-table .nx-skootable-data tbody td {
  line-height: 25px;
  padding: 10px 12px 6px 0;
}
.page--gxdashboard .dashboard__history .ncf-activity-table:first-child td {
  border: none;
}
.page--gxdashboard .ncf-activity__filter-search {
  width: 115px;
}
.page--gxdashboard .ncf-activity__search-container::before {
  left: 180px;
}
.page--gxdashboard .ncf-activity__search-container .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page--gxdashboard .dashboard__favorite-charities {
  margin-bottom: var(--margin-section--large);
  border-radius: var(--border-radius);
  width: 150px;
  position: relative;
  background-color: var(--button-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.page--gxdashboard .dashboard__favorite-charities:hover {
  background-color: var(--button-primary-hover);
}
.page--gxdashboard .dashboard__favorite-charities::before {
  content: "❯";
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 1;
  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and ( min-width: 768px ) {
  .page--gxdashboard .dashboard__favorite-charities {
    display: none;
  }
}
.page--gxdashboard .dashboard__favorite-charities .ncf-select--favorites {
  position: relative;
  z-index: 2;
}

.page--gxdiscover .ncf-cause-select {
  line-height: 1;
  margin-left: auto;
  position: relative;
}
@media screen and ( max-width: 767px ) {
  .page--gxdiscover .ncf-cause-select {
    position: absolute;
    top: 45px;
    left: 13px;
  }
}
.page--gxdiscover .ncf-cause-select .select-label,
.page--gxdiscover .ncf-cause-select select {
  font-size: 15px;
  position: absolute;
  top: 10px;
}
.page--gxdiscover .ncf-cause-select .select-label {
  color: var(--color-accent);
  left: 0;
  z-index: 1;
}
.page--gxdiscover .ncf-cause-select .js-select-width,
.page--gxdiscover .ncf-cause-select select {
  padding-left: 42px;
}
.page--gxdiscover .ncf-cause-select select {
  color: var(--color-accent);
  width: 75px;
  display: block;
  right: 0;
  z-index: 2;
  background-color: transparent;
}
.page--gxdiscover .ncf-discover__section-heading {
  position: relative;
  top: -3px;
}
.page--gxdiscover .ncf-discover__column-body {
  border: 0;
  height: auto;
  min-height: 100px;
}
.page--gxdiscover .ncf-discover__column-list {
  margin-bottom: var(--margin-section--small);
}
@media screen and ( max-width: 767px ) {
  .page--gxdiscover .ncf-discover__column-list {
    padding-top: 35px;
  }
}
.page--gxdiscover .ncf-discover-list__item {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-default);
}
.page--gxdiscover .ncf-discover-list__image {
  margin-right: 20px;
}
.page--gxdiscover .ncf-discover-list__image a {
  margin: 0;
  border-radius: 50%;
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page--gxdiscover .ncf-discover-list__image .ncf-discover-list__image-src,
.page--gxdiscover .ncf-discover-list__image .ncf-discover-list__image-icon {
  border-radius: 50%;
  max-width: var(--icon-size-md);
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  -webkit-box-shadow: var(--box-shadow-icon);
          box-shadow: var(--box-shadow-icon);
}
.page--gxdiscover .ncf-discover-list__image .ncf-discover-list__image-icon {
  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;
          justify-content: center;
  background-color: var(--color-white);
}
.page--gxdiscover .ncf-discover-list__image .ncf-discover-list__image-icon img {
  width: var(--icon-img-md);
  height: var(--icon-img-md);
  display: block;
}
.page--gxdiscover .ncf-discover-list__content {
  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;
}
.page--gxdiscover .ncf-discover-list__title {
  font-weight: 500;
}
.page--gxdiscover .ncf-discover-list__title a {
  color: var(--text-color);
  text-decoration: none;
}
.page--gxdiscover .ncf-discover-list__title a:hover {
  color: var(--color-accent);
}
.page--gxdiscover .ncf-discover-list__main__title {
  font-size: 31px;
  line-height: 38px;
  margin-bottom: 3px;
}
.page--gxdiscover .ncf-discover-list__item__title {
  font-size: 18px;
  margin-bottom: 2px;
}
.page--gxdiscover .ncf-discover-list__note {
  margin-bottom: 4px;
}
.page--gxdiscover .ncf-discover-list__note span {
  color: var(--text-medium);
  display: block;
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-discover-list__note span {
    display: inline-block;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-discover-list__main__cause::before,
.page--gxdiscover .ncf-discover-list__item__cause::before {
    content: "|";
    margin: 0 5px;
  }
}
.page--gxdiscover .ncf-discover-main__item__text p,
.page--gxdiscover .ncf-discover-list__item__text p {
  display: none;
}
.page--gxdiscover .ncf-discover-main__item__text a,
.page--gxdiscover .ncf-discover-list__item__text a {
  color: var(--color-accent);
}
.page--gxdiscover .ncf-discover-main__item__text a:hover,
.page--gxdiscover .ncf-discover-list__item__text a:hover {
  color: var(--text-color);
}
.page--gxdiscover .ncf-discover-main__item__text {
  margin-bottom: 14px;
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-discover-main__item__text p {
    display: block;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-discover-list__item__text p {
    display: inline;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .discover-favorites-main {
    display: none;
  }
}
@media screen and ( max-width: 767px ) {
  .page--gxdiscover .discover-favorites-sidebar {
    display: none;
  }
}
.page--gxdiscover .ncf-select--favorites-sort {
  margin-left: auto;
  padding-top: 3px;
  display: block;
  position: relative;
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-select--favorites-sort {
    padding-top: 6px;
  }
}
.page--gxdiscover .ncf-select--favorites-sort select {
  font-size: 15px;
}
.page--gxdiscover .ncf-favorites-list {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-default);
  height: 282px;
  overflow: hidden;
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-favorites-list {
    height: auto;
    max-height: 392px;
    overflow: auto;
  }
}
.page--gxdiscover .ncf-favorites-list .grantee-card:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.page--gxdiscover .ncf-favorites-list__load-more {
  display: block;
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-favorites-list__load-more {
    display: none;
  }
}
.page--gxdiscover .ncf-favorites-list__manage {
  color: var(--color-accent);
  display: none;
}
.page--gxdiscover .ncf-favorites-list__manage:hover {
  color: var(--text-color);
}
@media screen and ( min-width: 768px ) {
  .page--gxdiscover .ncf-favorites-list__manage {
    display: block;
  }
}

.page--gxdonatenow .donatebutton--purpose-section {
  line-height: 1.7;
  margin-bottom: 24px;
}
@media screen and ( min-width: 768px ) {
  .page--gxdonatenow .donatebutton--form {
    width: 700px;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxdonatenow .ncf-select--payment-type {
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
.page--gxdonatenow .ncf-form__field--additional-comments {
  padding-top: 8px;
  width: 100%;
  display: block;
}
@media screen and ( max-width: 767px ) {
  .page--gxdonatenow .ncf-form__field--additional-comments {
    padding-top: 10px;
  }
}
.page--gxdonatenow .ncf-form__field--additional-comments textarea {
  height: 100px;
}

.succession-pending-label {
  color: red;
  font-style: italic;
  display: block;
}

.ncf-form__succession-form .ncf-form__field,
.ncf-form__pending-contact .ncf-form__field {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.ncf-form__succession-form .ncf-select--state,
.ncf-form__succession-form .ncf-form__field--province,
.ncf-form__succession-form .ncf-form__field--zip,
.ncf-form__pending-contact .ncf-select--state,
.ncf-form__pending-contact .ncf-form__field--province,
.ncf-form__pending-contact .ncf-form__field--zip {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__succession-form .ncf-select--salutation,
.ncf-form__pending-contact .ncf-select--salutation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
  }
  .ncf-form__succession-form .ncf-form__field--first-name,
.ncf-form__pending-contact .ncf-form__field--first-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39%;
            flex: 0 0 39%;
  }
  .ncf-form__succession-form .ncf-form__field--last-name,
.ncf-form__pending-contact .ncf-form__field--last-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39%;
            flex: 0 0 39%;
  }
  .ncf-form__succession-form .ncf-form__field--city,
.ncf-form__pending-contact .ncf-form__field--city {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ncf-form__succession-form .ncf-select--state,
.ncf-form__succession-form .ncf-form__field--province,
.ncf-form__succession-form .ncf-form__field--zip,
.ncf-form__pending-contact .ncf-select--state,
.ncf-form__pending-contact .ncf-form__field--province,
.ncf-form__pending-contact .ncf-form__field--zip {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .ncf-form__succession-form .ncf-form__field--phone,
.ncf-form__pending-contact .ncf-form__field--phone {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ncf-form__succession-form .ncf-select--phone-type,
.ncf-form__pending-contact .ncf-select--phone-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .ncf-form__succession-form .ncf-form__field--birthdate-picker,
.ncf-form__pending-contact .ncf-form__field--birthdate-picker {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__succession-form .ncf-select--state,
.ncf-form__succession-form .ncf-form__field--province,
.ncf-form__pending-contact .ncf-select--state,
.ncf-form__pending-contact .ncf-form__field--province {
    padding-right: calc(var(--margin-form) / 2);
  }
}
.ncf-form__succession-form .ncf-form__field--special-notes div,
.ncf-form__pending-contact .ncf-form__field--special-notes div {
  width: 100%;
}
.ncf-form__succession-form .ncf-form__field--special-notes textarea,
.ncf-form__pending-contact .ncf-form__field--special-notes textarea {
  height: 36px;
}

@media screen and ( max-width: 767px ) {
  .ncf-form__succession-type {
    margin-bottom: var(--margin-form);
    display: block;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__succession-new-fund .ncf-select--new-fund {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__succession-new-fund .ncf-select--new-fund {
    margin-bottom: 8px;
  }
}

@media screen and ( min-width: 768px ) {
  .ncf-form__succession-fund-amount .ncf-select--fund-amount-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
  }
}
@media screen and ( min-width: 768px ) {
  .ncf-form__succession-fund-amount .ncf-form__field-succession-value {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22.5%;
            flex: 0 0 22.5%;
  }
}
.ncf-form__succession-fund-amount .ncf-form__field--percentage,
.ncf-form__succession-fund-amount .ncf-form__field--amount {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media screen and ( min-width: 768px ) {
  .ncf-form__succession-fund-amount .ncf-form__field--percentage,
.ncf-form__succession-fund-amount .ncf-form__field--amount {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__succession-fund-amount .ncf-form__field--percentage,
.ncf-form__succession-fund-amount .ncf-form__field--amount {
    margin-bottom: 0;
  }
}
@media screen and ( max-width: 767px ) {
  .ncf-form__succession-fund-amount .ncf-form__field--percentage {
    padding-right: calc(var(--margin-form) / 2);
  }
}

.ncf-tooltip--succession-learn {
  display: block;
  position: relative;
}
@media screen and ( max-width: 767px ) {
  .ncf-tooltip--succession-learn {
    margin-bottom: var(--margin-form);
  }
}
.ncf-tooltip--succession-learn .succession-pending-label {
  color: var(--color-red);
  font-style: italic;
  display: block;
}
.ncf-tooltip--succession-learn .tooltipContent {
  text-transform: none;
  white-space: normal;
  padding: 10px;
  width: 250px;
  top: 20px !important;
}

.ncf-form__donate-buttons {
  margin-bottom: var(--margin-section--small);
}
.ncf-form__donate-buttons .nx-field {
  margin-bottom: var(--margin-form-label);
}
.ncf-form__donate-buttons textarea {
  overflow: auto;
}

.ncf-form__button-select-section {
  margin-bottom: var(--margin-form-label);
}
@media screen and ( min-width: 768px ) {
  .ncf-form__button-select-section .nx-radiowrapper:first-child {
    margin-right: var(--margin-form-label);
  }
}

.ncf-form__embed-code-section {
  margin-bottom: var(--margin-section);
}
.ncf-form__embed-code-section .ncf-field--embed-code {
  height: 120px;
}

.page--gxmakegift .ncf-form__saved-section {
  padding-bottom: var(--margin-section);
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegift .ncf-select--recipient {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}
@media screen and ( max-width: 767px ) {
  .page--gxmakegift .ncf-form__store-section label {
    line-height: var(--line-height-base);
  }
}
@media screen and ( max-width: 767px ) {
  .page--gxmakegift .ncf-form__payment-type-section {
    margin-bottom: var(--margin-form);
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegift .ncf-select--payment-type {
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegift .ncf-form__advisor-fields .ncf-form__field--advisor-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26%;
            flex: 0 0 26%;
  }
  .page--gxmakegift .ncf-form__advisor-fields .ncf-form__field--advisor-company {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
  }
  .page--gxmakegift .ncf-form__advisor-fields .ncf-form__field--advisor-email {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
  }
}
.page--gxmakegift .ncf-form__advisors-section .ncf-form__field--amount {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegift .ncf-form__advisors-section .ncf-form__field--amount {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
}
.page--gxmakegift .ncf-form__securities-list {
  margin-bottom: var(--margin-section--small);
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegift .ncf-form__field--security-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .page--gxmakegift .ncf-form__field--security-symbol {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
  }
  .page--gxmakegift .ncf-form__field--security-shares {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .page--gxmakegift .ncf-form__field--security-value {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
.page--gxmakegift .ncf-form__securities-addrow {
  color: var(--color-accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.page--gxmakegift .ncf-form__recipient-section {
  padding-top: 12px;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegift .ncf-form__recipient-section .ncf-form__field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
  .page--gxmakegift .ncf-form__recipient-section .ncf-form__field:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
  }
}
.page--gxmakegift .ncf-form__nickname-section {
  padding-top: 12px;
  display: none;
}
.page--gxmakegift .ncf-form__nickname-section .ncf-form__field--nickname {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-select--favorite-grantee {
    margin-right: var(--margin-form);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 57%;
            flex: 0 0 57%;
  }
}
.page--gxmakegrant .ncf-form__selected-grantee .ncf-table {
  margin: 0;
}
.page--gxmakegrant .ncf-form__selected-grantee .ncf-table__row {
  padding-bottom: 0;
  border: 0;
}
.page--gxmakegrant .ncf-form__selected-grantee .nx-list-footer {
  display: none;
}
.page--gxmakegrant .ncf-form__field--grant-date {
  padding-top: var(--margin-form);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__field--grant-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.75%;
            flex: 0 0 31.75%;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__purpose-notes-section .ncf-form__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page--gxmakegrant .ncf-form__purpose-notes-section .ncf-select--purpose-select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 57%;
          flex: 0 0 57%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__purpose-notes-section .ncf-select--purpose-select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
  }
}
.page--gxmakegrant .ncf-form__purpose-notes-section .ncf-select--purpose-select div {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__purpose-notes-section .ncf-form__field--purpose-notes {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
.page--gxmakegrant .ncf-form__purpose-notes-section .ncf-form__field--purpose-notes div {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__delivery-section .ncf-form__row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page--gxmakegrant .ncf-form__delivery-section .ncf-select--delivery-mode {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 57%;
          flex: 0 0 57%;
  -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;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__delivery-section .ncf-select--delivery-mode {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
  }
}
.page--gxmakegrant .ncf-form__delivery-section .ncf-select--delivery-mode .nx-field {
  margin-bottom: var(--margin-form-label);
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__delivery-section .ncf-form__field--delivery-notes {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
.page--gxmakegrant .ncf-form__delivery-section .ncf-form__field--delivery-notes span {
  margin-bottom: var(--margin-form-label);
  display: block;
}
.page--gxmakegrant .ncf-form__delivery-section .ncf-form__field--delivery-notes div {
  width: 100%;
}
@media screen and ( min-width: 768px ) {
  .page--gxmakegrant .ncf-form__field--additional-notes {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 94%;
            flex: 0 0 94%;
  }
}
.page--gxmakegrant .ncf-form__field--additional-notes div {
  width: 100%;
}

.page--gxprofile .ncf-form__profile .ncf-form__section {
  padding-bottom: var(--margin-section);
}
@media screen and ( min-width: 768px ) {
  .page--gxprofile .ncf-form__profile .ncf-select--primary-fund {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--username {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--password {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36%;
            flex: 0 0 36%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--preferred-salutation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36%;
            flex: 0 0 36%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--birthdate {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .page--gxprofile .ncf-form__profile .ncf-select--salutation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--first-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--last-name {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
  }
  .page--gxprofile .ncf-form__profile .ncf-select--suffix {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
  .page--gxprofile .ncf-form__profile .ncf-form__field--suffix-other {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.25%;
            flex: 0 0 23.25%;
  }
  .page--gxprofile .ncf-form__profile .ncf-select--gender {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
  .page--gxprofile .ncf-form__profile .ncf-select--timezone {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
.page--gxprofile .ncf-form__contact-information .ncf-form__section {
  padding-bottom: var(--margin-section);
}
@media screen and ( min-width: 768px ) {
  .page--gxprofile .ncf-form__contact-information .ncf-form__field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .page--gxprofile .ncf-form__contact-information .ncf-form__field--city {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .page--gxprofile .ncf-form__contact-information .ncf-select--state,
.page--gxprofile .ncf-form__contact-information .ncf-form__field--province {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
  }
  .page--gxprofile .ncf-form__contact-information .ncf-form__field--zip {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxprofile .ncf-select--fund-picker {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.page--gxprofile .ncf-form__giving-method .ncf-form__field--nickname {
  width: 100%;
}
@media screen and ( max-width: 767px ) {
  .page--gxprofile .ncf-form__giving-method .ncf-form__field--editbox {
    margin-bottom: var(--margin-form);
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxprofile .ncf-form__giving-method .ncf-form__field--payment-select {
    width: 30%;
  }
}

.page--gxsearch .ncf-search__add-charity {
  padding-top: 8px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.ncf-page--terms .gx-heading--secondary {
  margin: 0 0 19px 0;
}
.ncf-page--terms a:hover {
  color: var(--color-accent) !important;
}

.gx-terms--disclaimer {
  margin-bottom: 40px;
}
.gx-terms--disclaimer p {
  margin: 0;
}

.gx-terms--scroll-pane {
  margin-bottom: 15px;
  padding: 12px 0 12px 12px;
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(var(--color-grey-900)));
  background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-grey-900) 100%);
}
.gx-terms--scroll-pane .nx-template {
  padding-right: 12px;
  height: 277px;
  overflow: auto;
}
.gx-terms--scroll-pane .nx-template p:last-child {
  margin: 0;
}

.gx-terms--scroll-pane > div:nth-of-type(1) {
  line-height: 0;
}

@media screen and ( max-width: 767px ) {
  .page--gxf2f .ncf-form__other-fund-section {
    padding-top: var(--margin-form);
  }
}
@media screen and ( max-width: 767px ) {
  .page--gxf2f .ncf-select--fund-select {
    margin-bottom: 0;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxf2f .ncf-select--fund-select {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 57%;
            flex: 0 0 57%;
  }
}
.page--gxf2f .ncf-form__field--fund-id {
  width: 65%;
}
@media screen and ( max-width: 767px ) {
  .page--gxf2f .ncf-form__field--fund-id {
    display: block;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxf2f .ncf-form__field--fund-id {
    width: 165px;
  }
}
.page--gxf2f .ncf-form__field--transfer-timing {
  margin-bottom: 0;
  padding-top: var(--margin-form);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
@media screen and ( min-width: 768px ) {
  .page--gxf2f .ncf-form__field--transfer-timing {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.75%;
            flex: 0 0 31.75%;
  }
}

.page--gxlogin .page-title {
  margin-bottom: var(--margin-section);
  border-bottom: 0;
}
.page--gxlogin .page-form__field {
  margin-bottom: 26px;
}
.page--gxlogin .page-form__remember {
  margin-bottom: 34px;
}
.page--gxlogin .button-container {
  margin-bottom: 24px;
}
.page--gxlogin .cookie-notice {
  color: var(--color-white);
  margin: 0 0 var(--margin-form) 0;
  padding: 8px 10px;
  border-radius: var(--border-radius);
  width: 330px;
  display: none;
  background-color: var(--color-grey-300);
}
.page--gxlogin .cookie-notice p {
  font-weight: 500;
  margin: 0;
}
.page--gxlogin .has-error input#username::-webkit-input-placeholder, .page--gxlogin .has-error input#password::-webkit-input-placeholder {
  padding-right: 10px;
  padding-left: 10px;
}
.page--gxlogin .has-error input#username::-moz-placeholder, .page--gxlogin .has-error input#password::-moz-placeholder {
  padding-right: 10px;
  padding-left: 10px;
}
.page--gxlogin .has-error input#username:-ms-input-placeholder, .page--gxlogin .has-error input#password:-ms-input-placeholder {
  padding-right: 10px;
  padding-left: 10px;
}
.page--gxlogin .has-error input#username::-ms-input-placeholder, .page--gxlogin .has-error input#password::-ms-input-placeholder {
  padding-right: 10px;
  padding-left: 10px;
}
.page--gxlogin .has-error input#username::placeholder,
.page--gxlogin .has-error input#password::placeholder {
  padding-right: 10px;
  padding-left: 10px;
}

@media screen and ( min-width: 768px ) {
  .page--gxverify .ncf-form__field--email-address {
    width: 305px;
  }
}
@media screen and ( min-width: 768px ) {
  .page--gxverify .ncf-form__field--password {
    margin-right: 2%;
    width: 48.5%;
  }
  .page--gxverify .ncf-form__field--password:last-child {
    margin-right: 0;
  }
}
.page--gxverify .ncf-form_field__terms-scroll {
  margin-bottom: var(--margin-form);
  height: 225px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.page--gxverify .verify-detail {
  margin-bottom: var(--margin-form);
}
.page--gxverify .verify-detail__content {
  line-height: 28px;
}

.page--egrants .egrants--header .nx-editor-header,
.page--egrants .egrants--banking-controls .nx-editor-header {
  display: block !important;
}
.page--egrants .egrants--header {
  position: relative;
}
.page--egrants .egrants--header .button--container {
  position: absolute;
  top: 0;
  right: 0;
}
.page--egrants .egrants--header .note-block {
  margin-bottom: var(--margin-section);
}
.page--egrants .egrants--banking-controls {
  margin-bottom: var(--margin-form);
}
.page--egrants .ncf-activity-table .nx-footer-btns {
  top: 0;
}
.page--egrants .ncf-form__inline-block-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
          flex: 0 0 28%;
}
.page--egrants .egrants-form__container {
  margin: 0 !important;
}
.page--egrants .egrants-form__section {
  padding-top: var(--margin-form);
}
.page--egrants .egrants-form__section .nx-visuallyhidden,
.page--egrants .egrants-form__section .nx-basicfieldeditor-item-label {
  display: none;
}
.page--egrants .egrants-form__row {
  margin-bottom: var(--margin-form);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page--egrants .egrants-form__row .nx-basicfieldeditor-item-label {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 35% !important;
          flex: 0 0 35% !important;
}
.page--egrants .egrants-form__row .nx-field {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 65% !important;
          flex: 0 0 65% !important;
}
.page--egrants .egrants-form__row-label {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 35% !important;
          flex: 0 0 35% !important;
}
.page--egrants .egrants-form__row-fields {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 65% !important;
          flex: 0 0 65% !important;
}
.page--egrants .egrants-form__row-group .nx-basicfieldeditor-columngroup,
.page--egrants .egrants-form__row-group .nx-basicfieldeditor-section-body {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page--egrants .egrants-form__row-group .egrants-form__row-label,
.page--egrants .egrants-form__row-group .egrants-form__row-fields {
  width: auto !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.page--egrants .egrants-form__row-group .egrants-form__field {
  padding: calc(var(--margin-form) / 2);
}
.page--egrants .egrants-form__row-group .egrants-form__field-city {
  padding-left: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53%;
          flex: 0 0 53%;
}
.page--egrants .egrants-form__row-group .egrants-form__field-state {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23.5%;
          flex: 0 0 23.5%;
}
.page--egrants .egrants-form__row-group .egrants-form__field-zip {
  padding-right: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23.5%;
          flex: 0 0 23.5%;
}
.page--egrants .egrants-form__field.hidden-label .nx-basicfieldeditor-item-label {
  display: none;
}
.page--egrants .nx-basicfieldeditor-item-label .sk-icon-help {
  display: none;
}
.page--egrants .ncf-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.page--egrants .ncf-loader__spinner {
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.block {
  display: block;
}

@media screen and ( max-width: 767px ) {
  .sm\:block {
    display: block;
  }
}

.inline {
  display: inline;
}
.inline .nx-template {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.is-visible {
  display: block;
}

.sm\:is-visible {
  display: block;
}
@media screen and ( min-width: 768px ) {
  .sm\:is-visible {
    display: none;
  }
}

.hidden,
.is-hidden {
  display: none;
}

@media screen and ( max-width: 767px ) {
  .sm\:is-hidden {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media screen and ( min-width: 768px ) {
  .md\:inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-push {
  margin-left: auto;
}

@media screen and ( min-width: 768px ) {
  .md\:justify-push {
    margin-left: auto;
  }
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and ( max-width: 767px ) {
  .sm\:flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and ( min-width: 768px ) and ( max-width: 1024px ) {
  .md\:flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ncf-link {
  color: var(--color-accent);
  cursor: pointer;
}
.ncf-link:hover {
  text-decoration: underline;
}
.ncf-link.is-disabled {
  color: var(--text-light);
  cursor: not-allowed;
}
.ncf-link.is-disabled:hover {
  color: var(--text-light);
  text-decoration: none;
}

.ncf-load-more {
  cursor: pointer;
}
.ncf-load-more:hover {
  color: var(--color-accent);
}

.list-note {
  padding-left: 30px;
}
.list-note li {
  list-style-type: disc;
}

.is-disabled {
  cursor: not-allowed;
}

.text-blue {
  color: var(--color-accent);
}

.text-red {
  color: var(--color-red);
}

.text-green {
  color: var(--color-green);
}

.text-green--medium {
  color: var(--color-green-200);
}

.text-grey--medium {
  color: var(--text-medium);
}

.text-small {
  font-size: 14px;
}

.text-xxlarge {
  font-size: 45px;
}

.text-spacing {
  line-height: var(--line-height-base);
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 600;
}

.text-initialcase {
  text-transform: initial;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-right {
  text-align: right;
}

.text-nowrap {
  white-space: nowrap;
}
