@charset 'UTF-8';
html {
  box-sizing: border-box;
}
/* csslint ignore:start */
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* csslint ignore:end */
/* Setting these elements to height of 100% ensures that
 * .vx_foreground-container fully covers the whole viewport
 */
html,
body {
  height: 100%;
}
/* This is for mounting your React application to,
 * it should be the direct child of the body element.
 * Yes, this has an ID, but that is mostly because I
 * want the ID option for those that want perf. Don't
 * normally do this.
 */
#vx_root,
.vx_root {
  height: 100%;
}
/* This wraps the foreground or main part of the app.
 * It's purpose is to provide the "front" layer of the app and
 * allow the "back" layer to exist behind it.
 */
.vx_foreground-container {
  position: relative;
  min-height: 100%;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  z-index: 800;
  background: #f5f7fa;
  -webkit-transition: left 250ms, right 250ms;
  -o-transition: left 250ms, right 250ms;
  transition: left 250ms, right 250ms;
}
.vx_mainContent {
  max-width: 1024px;
  margin: 0 auto;
  padding: 72px 0 9rem;
  position: relative;
}
.vx_a11yText {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vx_hidden-phone {
    display: none !important;
  }
  .vx_foreground-container {
    width: 100%;
    min-height: 100%;
  }
  .vx_foreground-container.vx_hasNavAlert {
    padding-top: 0;
  }
  .vx_mainContent {
    padding-top: 0;
  }
}
@font-face {
  font-family: 'paypal-vx-icons';
  src: url('https://www.paypalobjects.com/ui-web/vx-icons/2-0-2/PayPalVXIcons-Regular.eot');
  src: url('https://www.paypalobjects.com/ui-web/vx-icons/2-0-2/PayPalVXIcons-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://www.paypalobjects.com/ui-web/vx-icons/2-0-2/PayPalVXIcons-Regular.woff2') format('woff2'), /* Super Modern Browsers */ url('https://www.paypalobjects.com/ui-web/vx-icons/2-0-2/PayPalVXIcons-Regular.woff') format('woff'), /* Modern Browsers */ url('https://www.paypalobjects.com/ui-web/vx-icons/2-0-2/PayPalVXIcons-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('https://www.paypalobjects.com/ui-web/vx-icons/2-0-2/PayPalVXIcons-Regular.svg#69ac2c9fc1e0803e59e06e93859bed03') format('svg');
  font-style: normal;
  font-weight: 400;
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
/* Styles for checkbox widget */
.vx_checkbox,
.vx_radio {
  width: 100%;
  position: relative;
}
.vx_checkbox input,
.vx_radio input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.vx_checkbox input:focus + label:before,
.vx_radio input:focus + label:before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.vx_checkbox input:checked + label:before,
.vx_radio input:checked + label:before {
  content: "\2611";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-color: #005ea6;
  color: #ffffff;
  background-color: #005ea6;
}
.vx_checkbox label,
.vx_radio label {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  line-height: 2em;
}
.vx_checkbox label:before,
.vx_radio label:before {
  font-family: 'paypal-vx-icons';
  display: inline-block;
  vertical-align: top;
  height: 1em;
  width: 1em;
  margin: 0 12px 0 0;
  padding: 0.4em 0;
  border: 1px solid #b7bcbf;
  content: '';
  font-size: 28px;
  font-weight: bolder;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
}
.vx_checkbox.vx_has-error input:checked + label:before,
.vx_radio.vx_has-error input:checked + label:before {
  border-color: #d20000;
  background: #d20000;
}
.vx_checkbox.vx_has-error label:before,
.vx_radio.vx_has-error label:before {
  border-color: #d20000;
}
.vx_checkbox.vx_has-error:after,
.vx_radio.vx_has-error:after {
  font-family: 'paypal-vx-icons';
  display: inline-block;
  vertical-align: middle;
  content: "\26A0";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.75em;
  line-height: 0;
  position: relative;
  top: 2px;
  padding-left: 5px;
}
.vx_checkbox.vx_is-disabled,
.vx_radio.vx_is-disabled {
  cursor: not-allowed;
}
.vx_checkbox.vx_is-disabled input:checked + label:before,
.vx_radio.vx_is-disabled input:checked + label:before {
  border-color: #6c7378;
  background: #6c7378;
}
.vx_checkbox.vx_is-disabled label:before,
.vx_radio.vx_is-disabled label:before {
  border-color: #b7bcbf;
  cursor: not-allowed;
}
.vx_checkbox.vx_is-disabled label,
.vx_radio.vx_is-disabled label {
  color: #6c7378;
  cursor: not-allowed;
}
.vx_radio input:checked + label:before {
  content: '';
  border-color: #005ea6;
  background-color: #005ea6;
  box-shadow: inset 0 0 0 5px #ffffff;
}
.vx_radio label:before {
  border-radius: 100%;
}
/**
 * DO NOT EDIT THIS FILE AS IT'S GENERATED CODE.
 * Design: PayPal UI (formerly Foundations UED), San Jose, CA
 * Engineering: Consumer Web, Austin, Tx
 * Note: If modifications are needed, don't modify this file! Either override or make a PR to:
 * https://github.paypal.com/jlowery/paypal-vxpattern-lib
 */
.vx_icon {
  font-family: 'paypal-vx-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 0;
  position: relative;
  display: inline-table;
  text-align: center;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.vx_icon:before {
  display: table-cell;
  width: 100%;
  height: 100%;
}
.vx_icon-xlarge,
.vx_icon-large {
  height: 1.04em;
  width: 1.04em;
}
.vx_icon-xlarge:before,
.vx_icon-large:before {
  line-height: 0.9em;
}
.vx_icon-xlarge {
  font-size: 3.75rem;
}
.vx_icon-large {
  font-size: 2.5rem;
}
.vx_icon-medium {
  font-size: 1.5rem;
  height: 1.05em;
  width: 1.05em;
}
.vx_icon-medium:before {
  line-height: 0.9em;
}
.vx_icon-small {
  font-size: 1.125rem;
  height: 1.05em;
  width: 1.05em;
}
.vx_icon-small:before {
  line-height: 0.9em;
}
.vx_icon-slider-small:before {
  content: "\205E";
}
.vx_icon-slider-xsmall:before,
.vx_icon-slider-half-small:before {
  content: "\205D";
}
.vx_icon-close-small:before {
  content: "\2716";
}
.vx_icon-add-small:before {
  content: "\002B";
}
.vx_icon-arrow-down-small:before {
  content: "\2193";
}
.vx_icon-arrow-up-small:before {
  content: "\2191";
}
.vx_icon-arrow-left-small:before {
  content: "\2190";
}
.vx_icon-arrow-right-small:before {
  content: "\2192";
}
.vx_icon-arrow-down-half-small:before {
  content: "\21E3";
}
.vx_icon-arrow-up-half-small:before {
  content: "\21E1";
}
.vx_icon-arrow-left-half-small:before {
  content: "\21E0";
}
.vx_icon-arrow-right-half-small:before {
  content: "\21E2";
}
.vx_icon-arrow-back-small:before {
  content: "\21E6";
}
.vx_icon-clear-half-small:before,
.vx_icon-cancel-small:before {
  content: "\274E";
}
.vx_icon-checkmark-large:before,
.vx_icon-checkmark-small:before {
  content: "\2705";
}
.vx_icon-checkmark-sm:before,
.vx_icon-checkmark-small-bold:before {
  content: "\2611";
}
.vx_icon-action-xsmall:before,
.vx_icon-action-arrow-half-small:before {
  content: "\25BA";
}
.vx_icon-open-list-small:before,
.vx_icon-action-arrow-down-half-small:before {
  content: "\25BC";
}
.vx_icon-close-list-small:before,
.vx_icon-action-arrow-up-half-small:before {
  content: "\25B2";
}
.vx_icon-help-xsmall:before,
.vx_icon-tooltip-outline-small:before,
.vx_icon-tooltip-small:before {
  content: "\FE16";
}
.vx_icon-circled-info-xsmall:before,
.vx_icon-info-small:before,
.vx_icon-info-outline-small:before {
  content: "\2139";
}
.vx_icon-positive-xsmall:before,
.vx_icon-positive-small:before,
.vx_icon-circled-checkmark-small:before {
  content: "\2714";
}
.vx_icon-attention-xsmall:before,
.vx_icon-attention-small:before,
.vx_icon-attention-outline-small:before {
  content: "\FE15";
}
.vx_icon-critical-xsmall:before,
.vx_icon-critical-small:before {
  content: "\26A0";
}
.vx_icon-info-large:before {
  content: "\24D8";
}
.vx_icon-positive-large:before,
.vx_icon-circled-checkmark-large:before {
  content: "\2713";
}
.vx_icon-attention-large:before {
  content: "\2762";
}
.vx_icon-critical-large:before {
  content: "\2757";
}
.vx_icon-settings-small:before,
.vx_icon-gear:before {
  content: "\2699";
}
.vx_icon-search-small:before,
.vx_icon-magnifying-glass:before {
  content: "\1F50D";
}
.vx_icon-notification-small:before,
.vx_icon-bell-small:before,
.vx_icon-bell:before {
  content: "\1F514";
}
.vx_icon-link-xsmall:before,
.vx_icon-chain-link-xsmall:before,
.vx_icon-chain-link:before,
.vx_icon-link-small:before {
  content: "\1F517";
}
.vx_icon-calendar-small:before {
  content: "\1F4C5";
}
.vx_icon-calendar:before {
  content: "\1F4C6";
}
.vx_icon-photo-small:before,
.vx_icon-camera:before,
.vx_icon-camera-small:before {
  content: "\1F4F7";
}
.vx_icon-photo-add-small:before,
.vx_icon-camera-add:before {
  content: "\E614";
}
.vx_icon-profile-large:before,
.vx_icon-avatar:before {
  content: "\1F468";
}
.vx_icon-profile-add-large:before {
  content: "\1F469";
}
.vx_icon-pp-logo:before,
.vx_icon-pp-logo-half:before,
.vx_icon-pp-logo-outline:before {
  content: "\E499";
}
.vx_embeddedIcon .vx_icon {
  background-color: #0070ba;
  border-radius: 100%;
  box-shadow: 0 0 0 0.09375rem #0070ba inset;
  color: #ffffff;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.vx_embeddedIcon:hover .vx_icon,
.vx_embeddedIcon:focus .vx_icon,
.vx_embeddedIcon:active .vx_icon {
  background-color: #003087;
  box-shadow: 0 0 0 0.09375rem #003087 inset;
}
.vx_embeddedIcon_reversed .vx_icon {
  background-color: #ffffff;
  color: #0070ba;
  box-shadow: 0 0 0 0.09375rem #ffffff inset;
}
.vx_embeddedIcon_reversed:hover .vx_icon,
.vx_embeddedIcon_reversed:focus .vx_icon,
.vx_embeddedIcon_reversed:active .vx_icon {
  background-color: #f5f7fa;
  box-shadow: 0 0 0 0.125rem #f5f7fa inset;
  color: #003087;
}
.vx_embeddedIcon-secondary .vx_icon {
  background: none;
  color: #0070ba;
  box-shadow: 0 0 0 0.09375rem #0070ba inset;
}
.vx_embeddedIcon-secondary:hover .vx_icon,
.vx_embeddedIcon-secondary:focus .vx_icon,
.vx_embeddedIcon-secondary:active .vx_icon {
  background: none;
  box-shadow: 0 0 0 0.125rem #003087 inset;
  color: #003087;
}
.vx_embeddedIcon-secondary_reversed .vx_icon {
  background: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.09375rem #ffffff inset;
}
.vx_embeddedIcon-secondary_reversed:hover .vx_icon,
.vx_embeddedIcon-secondary_reversed:focus .vx_icon,
.vx_embeddedIcon-secondary_reversed:active .vx_icon {
  background: none;
  box-shadow: 0 0 0 0.125rem #ffffff inset;
  color: #ffffff;
}
.vx_embeddedIcon-simple .vx_icon {
  background: none;
  color: #0070ba;
  box-shadow: none;
}
.vx_embeddedIcon-simple:hover .vx_icon,
.vx_embeddedIcon-simple:focus .vx_icon,
.vx_embeddedIcon-simple:active .vx_icon {
  background: none;
  color: #003087;
}
.vx_embeddedIcon-simple_reversed .vx_icon {
  background: none;
  color: #ffffff;
  box-shadow: none;
}
.vx_embeddedIcon-simple_reversed:hover .vx_icon,
.vx_embeddedIcon-simple_reversed:focus .vx_icon,
.vx_embeddedIcon-simple_reversed:active .vx_icon {
  background: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.09375rem #ffffff inset;
}
/*
*	CSS for Tiles
*/
.vx_tile {
  padding: 1.5rem;
  background-color: transparent;
  position: relative;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (min-width: 47rem) {
  .vx_tile {
    margin-bottom: 0;
  }
}
.vx_tile_secondary {
  box-shadow: 0rem 0.125rem 0.25rem 0rem rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #ffffff;
  border-top: 0.0625rem solid rgba(183, 188, 191, 0.15);
}
.vx_tile_divider {
  border-top: 0.0625rem solid #b7bcbf;
}
.vx_tile-header {
  margin-bottom: 1.5rem;
}
.vx_tile-header-title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin: 0;
  width: 100%;
  text-transform: none;
  font-family: 'PayPal-Sans', Helvetica Neue, Arial, sans-serif;
  padding: 0.375rem 0;
}
.vx_tile-header-title {
  display: table-cell;
  vertical-align: middle;
}
.vx_tile-footer {
  margin-top: 1.5rem;
}
.vx_tile-footer button,
.vx_tile-footer a {
  margin: 0;
}
.vx_tile-footer a:not(:last-child),
.vx_tile-footer button:not(:last-child) {
  margin-right: 1.5rem;
}
@keyframes vx_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes vx_fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes vx_fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.vx_spinner-small,
.vx_has-spinner-small:after {
  height: 18px;
  opacity: 0.56;
  width: 18px;
  animation: vx_spin 620ms infinite linear;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'100%25'%20height%3D'100%25'%20viewBox%3D'0%200%2038%2038'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%0A%09%3Cdefs%3E%0A%09%09%3ClinearGradient%20id%3D'gradient'%20x1%3D'0'%20y1%3D'0'%20x2%3D'1'%20y2%3D'0'%3E%0A%09%09%09%3Cstop%20offset%3D'0'%20stop-color%3D'%23000000'%20stop-opacity%3D'0'%2F%3E%0A%09%09%09%3Cstop%20offset%3D'1'%20stop-color%3D'%23000000'%20stop-opacity%3D'1'%2F%3E%0A%09%09%3C%2FlinearGradient%3E%0A%09%3C%2Fdefs%3E%0A%09%3Cpath%20stroke%3D'url(%23gradient)'%20vector-effect%3D'non-scaling-stroke'%20stroke-width%3D'1px'%20fill%3D'none'%20fill-rule%3D'evenodd'%20d%3D'M2%2C19a17%2C17%200%201%2C1%2034%2C0'%3E%3C%2Fpath%3E%0A%09%3Cpath%20stroke%3D'%23000000'%20vector-effect%3D'non-scaling-stroke'%20stroke-width%3D'1px'%20fill%3D'none'%20fill-rule%3D'evenodd'%20d%3D'M2%2C19a17%2C17%200%201%2C0%2034%2C0'%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E%0A");
  content: '';
  display: block;
}
.vx_spinner-medium,
.vx_has-spinner-medium:after {
  height: 24px;
  opacity: 0.56;
  width: 24px;
  animation: vx_spin 620ms infinite linear;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'100%25'%20height%3D'100%25'%20viewBox%3D'0%200%2038%2038'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%0A%09%3Cdefs%3E%0A%09%09%3ClinearGradient%20id%3D'gradient'%20x1%3D'0'%20y1%3D'0'%20x2%3D'1'%20y2%3D'0'%3E%0A%09%09%09%3Cstop%20offset%3D'0'%20stop-color%3D'%23000000'%20stop-opacity%3D'0'%2F%3E%0A%09%09%09%3Cstop%20offset%3D'1'%20stop-color%3D'%23000000'%20stop-opacity%3D'1'%2F%3E%0A%09%09%3C%2FlinearGradient%3E%0A%09%3C%2Fdefs%3E%0A%09%3Cpath%20stroke%3D'url(%23gradient)'%20vector-effect%3D'non-scaling-stroke'%20stroke-width%3D'2px'%20fill%3D'none'%20fill-rule%3D'evenodd'%20d%3D'M2%2C19a17%2C17%200%201%2C1%2034%2C0'%3E%3C%2Fpath%3E%0A%09%3Cpath%20stroke%3D'%23000000'%20vector-effect%3D'non-scaling-stroke'%20stroke-width%3D'2px'%20fill%3D'none'%20fill-rule%3D'evenodd'%20d%3D'M2%2C19a17%2C17%200%201%2C0%2034%2C0'%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E%0A");
  content: '';
  display: block;
}
.vx_spinner-large,
.vx_has-spinner-large:after {
  height: 128px;
  opacity: 0.56;
  width: 128px;
  animation: vx_spin 620ms infinite linear;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'100%25'%20height%3D'100%25'%20viewBox%3D'0%200%2038%2038'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%0A%09%3Cdefs%3E%0A%09%09%3ClinearGradient%20id%3D'gradient'%20x1%3D'0'%20y1%3D'0'%20x2%3D'1'%20y2%3D'0'%3E%0A%09%09%09%3Cstop%20offset%3D'0'%20stop-color%3D'%2300cf92'%20stop-opacity%3D'0'%2F%3E%0A%09%09%09%3Cstop%20offset%3D'1'%20stop-color%3D'%2300cf92'%20stop-opacity%3D'1'%2F%3E%0A%09%09%3C%2FlinearGradient%3E%0A%09%3C%2Fdefs%3E%0A%09%3Cpath%20stroke%3D'url(%23gradient)'%20vector-effect%3D'non-scaling-stroke'%20stroke-width%3D'2px'%20fill%3D'none'%20fill-rule%3D'evenodd'%20d%3D'M2%2C19a17%2C17%200%201%2C1%2034%2C0'%3E%3C%2Fpath%3E%0A%09%3Cpath%20stroke%3D'%2300cf92'%20vector-effect%3D'non-scaling-stroke'%20stroke-width%3D'2px'%20fill%3D'none'%20fill-rule%3D'evenodd'%20d%3D'M2%2C19a17%2C17%200%201%2C0%2034%2C0'%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E%0A");
  content: '';
  display: block;
}
.vx_has-spinner-small,
.vx_has-spinner-medium,
.vx_has-spinner-large {
  position: relative;
}
.vx_has-spinner-small:before,
.vx_has-spinner-medium:before,
.vx_has-spinner-large:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1000;
  animation: vx_fade-in 0.3s ease-out 0s both;
}
.vx_has-spinner-small:after,
.vx_has-spinner-medium:after,
.vx_has-spinner-large:after {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1001;
}
button,
hr,
input {
  overflow: visible;
}
progress,
sub,
sup {
  vertical-align: baseline;
}
[type=checkbox],
[type=radio],
legend {
  box-sizing: border-box;
  padding: 0;
}
@font-face {
  font-family: PayPalSansSmall-Regular;
  font-style: normal;
  font-display: swap;
  src: url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff2) format('woff2'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.woff) format('woff'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.eot?#iefix) format('embedded-opentype'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansSmall-Regular.svg) format('svg');
}
@font-face {
  font-family: PayPalSansBig-Light;
  font-style: normal;
  font-display: swap;
  src: url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff2) format('woff2'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.woff) format('woff'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.eot?#iefix) format('embedded-opentype'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Light.svg) format('svg');
}
@font-face {
  font-family: PayPalSansBig-Medium;
  font-style: normal;
  font-display: swap;
  src: url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Medium.woff2) format('woff2'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Medium.woff) format('woff'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Medium.eot?#iefix) format('embedded-opentype'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/fonts/PayPalSansBig-Medium.svg) format('svg');
}
@font-face {
  font-family: PPUI-Icons;
  src: url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/icons/font_icon/0-0-14/PPUI-Icons.woff2) format('woff2'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/icons/font_icon/0-0-14/PPUI-Icons.woff) format('woff'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/icons/font_icon/0-0-14/PPUI-Icons.eot?#iefix) format('embedded-opentype'), url(https://www.paypalobjects.com/digitalassets/c/paypal-ui/icons/font_icon/0-0-14/PPUI-Icons.svg) format('svg');
  font-style: normal;
  font-weight: 400;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
details,
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
select {
  text-transform: none;
}
[type=submit],
[type=button],
[type=reset],
button {
  -webkit-appearance: button;
}
[type=submit]::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type=submit]:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}
/* stylelint-disable */
/* Icon base class */
.ppvx_icon {
  /* using !important to prevent issues with browser extensions that change fonts */
  font-family: 'PPUI-Icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.ppvx_icon--size_xs {
  font-size: 1.125rem;
}
.ppvx_icon--size_sm {
  font-size: 1.5rem;
}
.ppvx_icon--size_md {
  font-size: 1.875rem;
}
.ppvx_icon--size_lg {
  font-size: 2.25rem;
}
.ppvx_icon--size_xl {
  font-size: 2.5rem;
}
.ppvx_icon--size_xl2 {
  font-size: 3rem;
}
/* Icon list */
.ppvx_icon-disaster-relief:before {
  content: '\e97b';
}
.ppvx_icon-add-payment-method:before {
  content: '\e97c';
}
.ppvx_icon-arrow-down:before {
  content: '\e97d';
}
.ppvx_icon-credit-debit-cards:before {
  content: '\e97e';
}
.ppvx_icon-activity:before {
  content: '\e97f';
}
.ppvx_icon-refund:before {
  content: '\e980';
}
.ppvx_icon-auto-top-up:before {
  content: '\e979';
}
.ppvx_icon-world:before {
  content: '\e97a';
}
.ppvx_icon-money-delivery:before {
  content: '\e975';
}
.ppvx_icon-face-id:before {
  content: '\e96e';
}
.ppvx_icon-special-financing:before {
  content: '\e96f';
}
.ppvx_icon-achievement:before {
  content: '\e970';
}
.ppvx_icon-add-image:before {
  content: '\e971';
}
.ppvx_icon-copy-to-clipboard:before {
  content: '\e972';
}
.ppvx_icon-decline:before {
  content: '\e973';
}
.ppvx_icon-location:before {
  content: '\e974';
}
.ppvx_icon-number-pad:before {
  content: '\e976';
}
.ppvx_icon-share:before {
  content: '\e977';
}
.ppvx_icon-split-bill:before {
  content: '\e978';
}
.ppvx_icon-overflow:before {
  content: '\e96d';
}
.ppvx_icon-calculator:before {
  content: '\e96a';
}
.ppvx_icon-subtract:before {
  content: '\e96c';
}
.ppvx_icon-sort-ascending-alt:before {
  content: '\e969';
}
.ppvx_icon-sort-descending-alt:before {
  content: '\e96b';
}
.ppvx_icon-microphone:before {
  content: '\e968';
}
.ppvx_icon-attach:before {
  content: '\e966';
}
.ppvx_icon-light-bulb:before {
  content: '\e967';
}
.ppvx_icon-download:before {
  content: '\e964';
}
.ppvx_icon-upload:before {
  content: '\e965';
}
.ppvx_icon-fingerprint:before {
  content: '\e963';
}
.ppvx_icon-rocket:before {
  content: '\e962';
}
.ppvx_icon-clear-alt:before {
  content: '\e95a';
}
.ppvx_icon-cash:before {
  content: '\e95b';
}
.ppvx_icon-contact-info:before {
  content: '\e95c';
}
.ppvx_icon-home:before {
  content: '\e95d';
}
.ppvx_icon-insights:before {
  content: '\e95e';
}
.ppvx_icon-invoice:before {
  content: '\e95f';
}
.ppvx_icon-shipping:before {
  content: '\e960';
}
.ppvx_icon-transfer:before {
  content: '\e961';
}
.ppvx_icon-withdraw-cash:before {
  content: '\e959';
}
.ppvx_icon-add-cash:before {
  content: '\e952';
}
.ppvx_icon-pp-cash-card:before {
  content: '\e953';
}
.ppvx_icon-gift:before {
  content: '\e950';
}
.ppvx_icon-lock:before {
  content: '\e951';
}
.ppvx_icon-money-pools:before {
  content: '\e954';
}
.ppvx_icon-photo:before {
  content: '\e955';
}
.ppvx_icon-print:before {
  content: '\e956';
}
.ppvx_icon-trash:before {
  content: '\e957';
}
.ppvx_icon-scan-to-send:before {
  content: '\e958';
}
.ppvx_icon-acorns:before {
  content: '\e93d';
}
.ppvx_icon-cash-check:before {
  content: '\e93e';
}
.ppvx_icon-donate:before {
  content: '\e948';
}
.ppvx_icon-goals:before {
  content: '\e949';
}
.ppvx_icon-offers-rewards:before {
  content: '\e94a';
}
.ppvx_icon-order-ahead:before {
  content: '\e94b';
}
.ppvx_icon-ppc-rocket:before {
  content: '\e94c';
}
.ppvx_icon-request:before {
  content: '\e94d';
}
.ppvx_icon-send:before {
  content: '\e94e';
}
.ppvx_icon-transfer-money:before {
  content: '\e94f';
}
.ppvx_icon-add:before {
  content: '\e900';
}
.ppvx_icon-arrow-left:before {
  content: '\e901';
}
.ppvx_icon-arrow-right:before {
  content: '\e902';
}
.ppvx_icon-warning:before {
  content: '\e903';
}
.ppvx_icon-bank:before {
  content: '\e904';
}
.ppvx_icon-browser:before {
  content: '\e905';
}
.ppvx_icon-calendar-paused:before {
  content: '\e906';
}
.ppvx_icon-calendar:before {
  content: '\e907';
}
.ppvx_icon-camera-add:before {
  content: '\e908';
}
.ppvx_icon-camera:before {
  content: '\e909';
}
.ppvx_icon-card:before {
  content: '\e90a';
}
.ppvx_icon-cart:before {
  content: '\e90b';
}
.ppvx_icon-chat:before {
  content: '\e90c';
}
.ppvx_icon-check-alt:before {
  content: '\e90d';
}
.ppvx_icon-check-circle-alt:before {
  content: '\e90e';
}
.ppvx_icon-check-circle:before {
  content: '\e90f';
}
.ppvx_icon-check:before {
  content: '\e910';
}
.ppvx_icon-chevron-circle-down:before {
  content: '\e911';
}
.ppvx_icon-chevron-circle-up:before {
  content: '\e912';
}
.ppvx_icon-chevron-down:before {
  content: '\e913';
}
.ppvx_icon-chevron-left:before {
  content: '\e914';
}
.ppvx_icon-chevron-right-alt:before {
  content: '\e915';
}
.ppvx_icon-chevron-right:before {
  content: '\e916';
}
.ppvx_icon-chevron-up:before {
  content: '\e917';
}
.ppvx_icon-clear:before {
  content: '\e918';
}
.ppvx_icon-close:before {
  content: '\e919';
}
.ppvx_icon-critical-alt:before {
  content: '\e91a';
}
.ppvx_icon-desktop:before {
  content: '\e91b';
}
.ppvx_icon-edit:before {
  content: '\e91c';
}
.ppvx_icon-elipsis-vertical:before {
  content: '\e91d';
}
.ppvx_icon-email:before {
  content: '\e91e';
}
.ppvx_icon-error:before {
  content: '\e91f';
}
.ppvx_icon-external-alt:before {
  content: '\e920';
}
.ppvx_icon-faq:before {
  content: '\e921';
}
.ppvx_icon-filter:before {
  content: '\e922';
}
.ppvx_icon-heart:before {
  content: '\e923';
}
.ppvx_icon-hide-alt:before {
  content: '\e924';
}
.ppvx_icon-info-alt:before {
  content: '\e925';
}
.ppvx_icon-info:before {
  content: '\e926';
}
.ppvx_icon-laptop:before {
  content: '\e927';
}
.ppvx_icon-link:before {
  content: '\e928';
}
.ppvx_icon-list-detailed:before {
  content: '\e929';
}
.ppvx_icon-list-simple:before {
  content: '\e92a';
}
.ppvx_icon-lock-alt:before {
  content: '\e92b';
}
.ppvx_icon-logo-paypal:before {
  content: '\e92c';
}
.ppvx_icon-menu:before {
  content: '\e92d';
}
.ppvx_icon-mobile:before {
  content: '\e92e';
}
.ppvx_icon-notification:before {
  content: '\e92f';
}
.ppvx_icon-pending-paused:before {
  content: '\e930';
}
.ppvx_icon-pending:before {
  content: '\e931';
}
.ppvx_icon-phone:before {
  content: '\e932';
}
.ppvx_icon-play-sm:before {
  content: '\e933';
}
.ppvx_icon-play:before {
  content: '\e934';
}
.ppvx_icon-question-alt:before {
  content: '\e935';
}
.ppvx_icon-recurring-paused:before {
  content: '\e936';
}
.ppvx_icon-recurring:before {
  content: '\e937';
}
.ppvx_icon-refresh:before {
  content: '\e938';
}
.ppvx_icon-search:before {
  content: '\e939';
}
.ppvx_icon-settings:before {
  content: '\e93a';
}
.ppvx_icon-shield:before {
  content: '\e93b';
}
.ppvx_icon-show-alt:before {
  content: '\e93c';
}
.ppvx_icon-star-alt:before {
  content: '\e93f';
}
.ppvx_icon-store:before {
  content: '\e940';
}
.ppvx_icon-support:before {
  content: '\e941';
}
.ppvx_icon-trash-alt:before {
  content: '\e942';
}
.ppvx_icon-unlock-alt:before {
  content: '\e943';
}
.ppvx_icon-user-add:before {
  content: '\e944';
}
.ppvx_icon-user:before {
  content: '\e945';
}
.ppvx_icon-wallet:before {
  content: '\e946';
}
.ppvx_icon-warning-alt:before {
  content: '\e947';
}
/* stylelint-enable */
.ppvx_selection-group {
  box-sizing: border-box;
  border-style: none;
  padding: 0;
  text-align: initial;
}
.ppvx_selection-group__buttons {
  display: flex;
  position: relative;
  height: 3rem;
}
.ppvx_selection-group__label {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  color: #687173;
  display: block;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.ppvx_selection-group__label .ppvx_icon {
  color: #2c2e2f;
  position: relative;
  top: 0.125rem;
  margin-left: 0.5625rem;
}
.ppvx_selection-group__helper-text {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  text-align: initial;
  display: flex;
  margin: 0.375rem 0 0;
  color: #687173;
  margin-top: 0.5625rem;
}
.ppvx_selection-group__error-text {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  text-align: initial;
  display: flex;
  margin: 0.375rem 0 0;
  margin-top: 0.5rem;
  color: #d20000;
  margin-top: 0.5625rem;
}
.ppvx_selection-group__error-text:before {
  content: '\e91a';
}
.ppvx_selection-group__error-text:before {
  /* using !important to prevent issues with browser extensions that change fonts */
  font-family: 'PPUI-Icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.125rem;
  margin-right: 0.375rem;
  margin-left: initial;
}
.ppvx_selection-group__buttons--center {
  justify-content: center;
}
.ppvx_selection-group__buttons--justify {
  justify-content: stretch;
}
.ppvx_selection__control {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  /* We're hiding these so no need to use rems */
  width: 1px;
  height: 1px;
}
.ppvx_selection__label {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  background-color: #ffffff;
  color: #0070ba;
  padding: 0.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border-style: solid;
  border-color: #b7bcbf;
  border-width: 0.0625rem;
}
.ppvx_selection__label:focus {
  outline-offset: -0.1875rem;
}
.ppvx_selection__label:hover {
  background-color: #e4f1fb;
}
.ppvx_selection-group__buttons--justify .ppvx_selection__label {
  flex: 1 0 auto;
}
.ppvx_selection__control:focus + .ppvx_selection__label {
  position: relative;
  z-index: 1;
  color: #0070ba;
  box-shadow: 0 0 0 0.1875rem #bfdbee, 0 0 0.25rem;
}
.ppvx_selection__control:checked + .ppvx_selection__label {
  background-color: #0070ba;
  color: #ffffff;
  border-color: #0070ba;
}
/* stylelint-disable no-descending-specificity */
.ppvx_field--error .ppvx_selection-group__label {
  color: #d20000;
}
.ppvx_field--error .ppvx_selection__label {
  border-color: #d20000;
}
.ppvx_field--error .ppvx_selection__control:checked + .ppvx_selection__label {
  border-color: #d20000;
}
.ppvx_selection__control[type='checkbox'] + .ppvx_selection__label {
  border-radius: 4px;
}
/*
 * Multi select is easy: just don't add a margin after the last item
 */
/*
 * Single is trickier: neighbors share a border, which means that
 * only the first item rounds its left corners and only the last one
 * rounds its right ones.
 */
:not([dir='rtl']) .ppvx_selection__control[type='checkbox'] + .ppvx_selection__label:not(:last-of-type) {
  margin-right: 0.5625rem;
}
:not([dir='rtl']) .ppvx_selection__control[type='radio'] + .ppvx_selection__label:not(:first-of-type) {
  margin-left: -0.0625rem;
}
:not([dir='rtl']) .ppvx_selection__control[type='radio'] + .ppvx_selection__label:first-of-type {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
:not([dir='rtl']) .ppvx_selection__control[type='radio'] + .ppvx_selection__label:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
[dir='rtl'] .ppvx_selection__control[type='checkbox'] + .ppvx_selection__label:not(:last-of-type) {
  margin-left: 0.5625rem;
}
[dir='rtl'] .ppvx_selection__control[type='radio'] + .ppvx_selection__label:not(:first-of-type) {
  margin-right: -0.0625rem;
}
[dir='rtl'] .ppvx_selection__control[type='radio'] + .ppvx_selection__label:first-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
[dir='rtl'] .ppvx_selection__control[type='radio'] + .ppvx_selection__label:last-of-type {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
/* stylelint-enable no-descending-specificity */
/* stylelint-disable */
/* DO NOT USE THESE VARIABLES. THESE ARE TEMPORARY VARIABLES, SOON WILL BE REPLACED BY TOKENS */
.ppvx_modal {
  background-color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ppvx_modal:not(.ppvx_modal--overpanel) {
  min-height: 8rem;
  border-radius: 0.25rem;
  max-height: 100vh;
  width: 75%;
  max-width: 54rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0.4rem 1.25rem 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(183, 188, 191, 0.15);
  padding-bottom: 4rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.ppvx_modal.ppvx_modal--overpanel {
  position: relative;
  height: 100vh;
  top: 100vh;
  width: 75%;
  max-width: 54rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: top 0.3s ease-in-out 0.3s;
  padding-bottom: 4rem;
}
@media screen and (max-width: 47rem) {
  .ppvx_modal.ppvx_modal--overpanel,
  .ppvx_modal:not(.ppvx_modal--overpanel) {
    width: 100%;
  }
}
.ppvx_modal-backdrop {
  background-color: rgba(108, 115, 120, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1050;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.ppvx_modal-backdrop[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.ppvx_modal-backdrop[aria-hidden='false'] .ppvx_modal:not(.ppvx_modal--overpanel) {
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0.3s;
}
.ppvx_modal-backdrop[aria-hidden='false'] .ppvx_modal--overpanel {
  transition: top 0.3s ease-in-out 0.3s;
  top: 0;
}
.ppvx_modal__contents {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 calc(9.0833%);
}
.ppvx_modal__contents--center {
  text-align: center;
}
.ppvx_modal:not(.ppvx_modal--overpanel) .ppvx_modal__contents {
  max-height: 70vh;
}
.ppvx_modal__screenreader {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ppvx_modal-header--scrolled {
  box-shadow: 0 0.4rem 1.25rem 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(183, 188, 191, 0.15);
}
.ppvx_modal-header {
  min-height: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -ms-flex: 0 0;
  flex: 0 0;
}
.ppvx_modal-header__action {
  min-height: 4rem;
  -ms-flex: 1 0 4rem;
  flex: 1 0 4rem;
  padding: 1rem 0 0 1rem;
}
.ppvx_modal-header__close {
  min-height: 4rem;
  -ms-flex: 0 0 4rem;
  flex: 0 0 4rem;
  text-align: right;
  padding: 1rem 1rem 0 0;
}
.ppvx_modal-header__close-btn {
  /* using !important to prevent issues with browser extensions that change fonts */
  font-family: 'PPUI-Icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.5rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  background-color: #ffffff;
  color: #2c2e2f;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  text-indent: 0.0625rem;
}
.ppvx_modal-header__close-btn:before {
  content: '\e919';
}
.ppvx_modal-header__close-btn:hover {
  background-color: #eaeced;
}
.ppvx_modal-header__close-btn:focus {
  outline: none;
  background-color: #cbd2d6;
}
.ppvx_modal--overpanel .ppvx_modal-header:not(.ppvx_modal-header--no-logo) {
  background: url("https://www.paypalobjects.com/digitalassets/c/website/logo/monogram/pp_fc_mg_2x.png") no-repeat 50% 1.5rem;
  background-size: 1.5rem;
}
/* stylelint-enable */
header.pp-header,
footer.global-footer .footer-secondary a,
footer.global-footer .footer-tertiary,
footer.global-footer .footer-tertiary a {
  font-size: 0.875rem;
}
header.pp-header .pypl-btn.pypl-btn--small {
  font-size: 0.75rem;
}
header.pp-header a.pypl-btn {
  font-size: 0.875rem;
}
footer.global-footer .container {
  width: 100%;
}
@media screen and (min-width: 1152px) {
  header.pp-header .pp-header__wrapper.container {
    width: auto;
  }
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-width: 320px;
  overflow-x: hidden;
}
.hide {
  display: none !important;
}
.landingPage_viewport {
  height: auto;
}
.landingPage_viewport.singleCharity {
  min-height: 0;
}
.hero {
  width: 100%;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  min-height: 300px;
}
.hero .heroVideo {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -100;
}
.hero .heroVideo .videoPlay {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  /* overflow: hidden; */
}
.hero .hero_parent {
  display: table;
  width: 100%;
  height: 100%;
}
.hero .hero_content {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.hero .intro {
  position: relative;
  z-index: 500;
  width: 90%;
  margin: 103px auto 0;
  bottom: 20px;
}
.hero .intro .campaign_header {
  object-fit: contain;
  color: #ffffff;
  text-align: center;
  margin-top: 28px;
}
.hero .intro .campaign_amount {
  color: #ffffff;
}
.hero .intro h2,
.hero .intro h4 {
  margin-bottom: 10px;
  word-wrap: normal;
  color: white;
  font-size: 22px;
}
.hero .intro .center {
  text-align: center;
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
}
.hero .intro .center .number {
  font-size: 4em;
  line-height: 1;
  color: #ffffff;
}
.hero .intro .center .numbertext {
  height: 19px;
  padding-top: 0;
  font-size: 0.9em;
  line-height: 1.1;
  color: #ffffff;
}
.hero .intro .center .numberBodyText {
  padding-top: 8px;
}
.hero .intro .heroPara {
  color: #ffffff;
  width: 63%;
  text-align: center;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.hero .intro .heroPara.marginHeroPara {
  padding-bottom: 36px;
  padding-top: 36px;
}
.hero .intro .heroPara.paraLinkStyling a {
  color: white;
  text-decoration: none;
}
.hero .intro .heroPara.paraLinkStyling a:hover {
  text-decoration: underline;
}
.hero .donate {
  margin: auto;
  position: relative;
  margin-top: 20px;
}
.hero .donate .amount {
  display: inline-block;
}
.hero .donate.desktopDonateView {
  width: 100%;
}
.hero .donate.removeMarginTop {
  margin-top: 0 !important;
}
.hero .donate .editableDropdown {
  width: 100%;
  display: inline-block;
}
.hero .donate .editableDropdown.desktopDonateEditableView {
  display: inline-block;
  width: 28%;
}
.hero .donate .editableDropdown input {
  line-height: normal;
  font-size: 16px;
}
.hero .donate .scrollLink {
  outline: none;
}
.hero .donate .scrollLink.desktopDonateView {
  float: right;
  width: 35%;
}
.hero .donate .scrollLink.pointer {
  cursor: default;
}
.hero .donate .btn1 {
  height: 34px;
}
.hero .donate .btn.btn-primary.btn_primary {
  outline: none;
  width: 100%;
  border-radius: 25px;
  height: 50px;
  font-size: 15px;
}
.hero .donate .btn.btn-primary.btn_primary.desktopDonateView {
  margin-top: 0;
}
.hero .donate .btn.btn-primary.btn_primary.desktopDonateViewSingleCharity {
  margin-top: 0;
  margin-left: 10px;
  width: 158px;
  height: 45px;
}
.hero .donate .inp-grp-adn {
  background-color: white;
}
.hero .donate .customInput {
  width: 85%;
  padding-left: 5px;
  border-radius: 5px;
  position: absolute;
  margin-top: -43px;
  border: 0;
  height: 42px;
}
.hero .donate .impactStmt {
  color: #ffffff;
  margin-top: 10px;
  font-size: 15px;
  position: absolute;
}
.imageStyle {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  width: 10%;
}
.imageStyle.singleCharity {
  width: 12%;
}
.imageStyle.navigationOff {
  width: 12%;
}
.logos {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.logos .scrollLink {
  outline: none;
}
.logos .imageShow {
  max-height: 52px;
  max-width: 70%;
  margin: 0.5em;
}
.logos .imageShow.singleCharity {
  max-height: 76px;
  max-width: 76px;
}
.logos .imageShow.navigationOff {
  max-height: 76px;
  max-width: 100px;
}
.logos .imageShow.uploadedImage {
  max-height: 76px;
  max-width: 76px;
}
.h-r {
  margin-top: 28px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
  width: 93%;
  height: 1px;
  border: none;
  clear: both;
  background-color: #eaeced;
}
.h-r.h-r1 {
  margin-top: 0;
  margin-bottom: 28px;
}
.navbar-fixed {
  top: 0;
  z-index: 100;
  position: fixed !important;
  width: 100%;
}
.nav_linksMobile {
  display: none;
}
.mobileLi {
  list-style: none;
  text-align: center !important;
}
#nav_bar {
  margin: 0 auto;
  height: 50px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1000;
  background-color: #ffffff;
}
.nav_links {
  -webkit-padding-start: 0;
}
.nav_links .nav_link_clicked {
  font-weight: 500;
}
.nav_links li {
  display: inline-block;
}
.nav_links li a {
  padding: 0 15.5px;
  text-decoration: none;
  outline: none;
}
.module1 {
  width: 100%;
  text-align: center;
}
.module2 .campaign .moduleTitle {
  font-size: 1.65rem;
  line-height: 1.1;
  color: #2c2e2f;
  text-align: center;
}
.module2 .campaign .modulePara {
  padding-top: 20px;
  line-height: 1.4;
  color: #000000;
  font-size: 1rem;
  text-align: left;
}
.module2 .campaign .modulePara.paraLinkStyling a {
  color: #0079AD;
  text-decoration: none;
}
.module2 .campaign .modulePara.paraLinkStyling a:hover {
  text-decoration: underline;
}
.col-centered {
  float: none;
  margin: 0 auto;
}
.campaign {
  clear: both;
  text-align: left;
  height: auto;
  max-width: 1024px;
  width: 65%;
  margin: 0 auto;
  margin-top: 48px;
}
.module3 {
  margin-top: 48px;
}
.module3 .about {
  clear: both;
  text-align: left;
  height: auto;
  max-width: 1024px;
  margin: 0 auto;
  overflow-wrap: break-word;
}
.module3 .about .moduleTitle {
  font-size: 1.65rem;
  line-height: 1.1;
  color: #2c2e2f;
  text-align: center;
}
.module3 .about .modulePara {
  padding-top: 20px;
  line-height: 1.4;
  color: #000000;
  font-size: 1rem;
}
.module3 .about .modulePara.paraLinkStyling a {
  color: #0079AD;
  text-decoration: none;
}
.module3 .about .modulePara.paraLinkStyling a:hover {
  text-decoration: underline;
}
.share-social {
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 40px;
}
.share-social ul {
  display: flex;
}
.card_container {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 10px 0 20px 0;
}
.card_container .card_heading {
  height: 55px;
  font-size: 1.65rem;
  line-height: 1.1;
  color: #2c2e2f;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cards {
  margin: 0 auto;
  text-align: center;
  max-width: 1380px;
  width: 87%;
  display: inline-block;
  height: 100%;
}
.cards .outer_imgContainer {
  height: 144px;
}
.cards .imgContainer {
  margin: 0 auto;
  text-align: center;
  width: 135px;
  height: 100%;
  display: table;
}
.cards .imgContainer .imgInnerContainer {
  display: table-cell;
  vertical-align: middle;
}
.cards img {
  display: block;
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 135px;
  max-height: 100px;
}
.cards img.active {
  margin-top: 10px;
}
.inner_card_container {
  -webkit-perspective: 800px;
  transform-style: preserve-3d;
}
.inner_card_container.cardInputDrop {
  z-index: 2000;
}
.card {
  width: 298px;
  height: 312px;
  margin: 10px auto;
  position: relative;
  display: block;
  border-radius: 10px;
  border: solid 1px #eaeced;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 50% 50%;
}
.card a {
  color: #9da3a6;
}
.card a.info {
  text-decoration: none;
  margin: 5px 5px 0 -25px;
  line-height: 16px;
  float: right;
  text-align: center;
  outline: none;
}
.card p {
  display: inline-block;
}
.card .charityTilePara p {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  color: #0070ba;
  margin: 0 auto;
  width: 70%;
  height: 40px;
  text-align: center;
  font-weight: bold;
  word-wrap: break-word;
}
.card .card_form {
  overflow: visible;
  width: 100%;
  height: 150px;
  padding-left: 15px;
  padding-right: 15px;
}
.card .front,
.card .back {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  position: absolute;
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.card .front img {
  text-align: center;
}
.card .front .cardbuttons {
  width: 100%;
}
.card .back {
  background-color: #f7f9fa;
  border-radius: 10px;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.card .back .backTitle {
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 29px;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.3;
  color: #6c7378;
  margin-left: 15px;
  margin-right: 15px;
  height: 3.8em;
  /* white-space: nowrap; */
}
.card .back .backText {
  font-size: 15px;
  line-height: 1.7;
  color: #6c7378;
  text-align: left;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
}
.card .front.flipped {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.card .back.flipped {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.btn.btn-primary.btn_prim {
  outline: none;
  width: 80%;
  position: relative;
  top: 20px;
  margin: 0 auto;
  border-radius: 25px;
  height: 50px;
}
.btnnew {
  vertical-align: middle;
  touch-action: manipulation;
  outline: none;
}
.btn.btn-primary.btn-cause {
  width: 27%;
  position: relative;
  top: 20px;
  margin: 0 auto;
  border-radius: 25px;
  height: 50px;
}
.amountBoxStyling {
  display: inline-block;
  float: left;
}
.btnCustDonate {
  width: 86px;
  height: 45px;
  background-color: #009cde !important;
  border-color: transparent !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
  font-size: 17px !important;
}
.btnCustDonate:hover {
  border-color: #2e6da4 !important;
  border-width: 2px !important;
}
.btnCustDonateIsActive {
  background-color: #003087 !important;
}
.inputStyling {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 45px;
  border: 1px solid #d4d9dc;
  box-shadow: none;
  padding: 0 0 0 16px;
  font-size: 16px;
}
.currencyStyling {
  display: inline-block;
  float: left;
  position: relative;
  top: 15px;
  left: 11px;
  height: 0px;
  font-size: 16px;
  line-height: 1;
  color: #2c2e2f;
}
.currencyStyling.currencyIEStyling {
  top: -31px;
  left: 6px;
}
/* responsive text queries */
@media screen and (min-width: 481px) and (max-width: 992px) {
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 906px) {
  .hero .heroVideo .videoPlay {
    height: 100%;
    width: auto;
  }
}
@media screen and (min-width: 1500px) and (max-width: 2560px) {
  .landingPage_viewport {
    height: auto;
  }
  .landingPage_viewport.singleCharity {
    min-height: 0;
  }
  .hero {
    width: 100%;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    min-height: 480px;
  }
  .hero .hero_parent {
    min-height: 480px;
  }
  .hero .hero_content {
    font-size: 17px;
  }
  .hero .intro {
    width: 70%;
  }
}
@media screen and (max-width: 546px) {
  .hero .hero_content .heroPara {
    width: 87%;
  }
}
@media screen and (min-width: 547px) and (max-width: 640px) {
  .hero .hero_content {
    font-size: 10px;
  }
  .hero .hero_content .heroPara {
    width: 85%;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .logos {
    width: 100%;
  }
}
@media screen and (min-width: 641px) and (max-width: 798px) {
  .hero .hero_content {
    width: calc(96vw);
    font-size: 11px;
  }
  .hero .hero_content .heroPara {
    width: 88%;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .logos {
    width: 100%;
  }
}
@media screen and (min-device-width: 547px) and (max-device-width: 798px) {
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .logos {
    width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 590px) {
  .logos .imageStyle {
    width: 13%;
  }
  .logos .imageStyle.singleCharity {
    width: 25%;
  }
  .logos .imageStyle.navigationOff {
    width: 25%;
  }
  .logos .imageStyle .imageShow.singleCharity {
    max-height: 76px;
    max-width: 76px;
  }
  .logos .imageStyle .imageShow.uploadedImage {
    max-height: 76px;
    max-width: 76px;
  }
}
@media screen and (min-width: 591px) and (max-width: 798px) {
  .logos .imageStyle {
    width: 13%;
  }
  .logos .imageStyle.singleCharity {
    width: 15%;
  }
  .logos .imageStyle.navigationOff {
    width: 15%;
  }
  .logos .imageStyle .imageShow.singleCharity {
    max-height: 76px;
    max-width: 76px;
  }
  .logos .imageStyle .imageShow.uploadedImage {
    max-height: 76px;
    max-width: 76px;
  }
}
@media screen and (min-device-width: 547px) and (max-device-width: 798px) {
  .hero .hero_content {
    width: calc(96vw);
    font-size: 14px;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .hero .hero_parent {
    top: 170px;
  }
  .logos {
    width: 100%;
  }
  .logos .imageStyle {
    width: 13%;
  }
  .logos .imageStyle.singleCharity {
    width: 15%;
  }
  .logos .imageStyle.navigationOff {
    width: 15%;
  }
}
@media screen and (min-width: 911px) and (max-width: 1166px) {
  .hero .hero_content .heroPara {
    width: 75%;
  }
}
@media screen and (min-width: 799px) and (max-width: 910px) {
  .hero .hero_content .heroPara {
    width: 85%;
  }
}
@media screen and (min-width: 799px) and (max-width: 1166px) {
  .hero .hero_content {
    width: calc(96vw);
    font-size: 14px;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .logos {
    width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 546px) {
  .hero .hero_content {
    width: calc(97vw);
    font-size: 11px;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
}
@media screen and (min-width: 481px) and (max-width: 519px) {
  .hero .hero_content {
    width: calc(97vw);
    font-size: 12px;
  }
  .hero .hero_content .donate {
    width: 62%;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .landingPage_viewport {
    height: auto;
    min-height: 0;
  }
  .hero .intro .center {
    display: none;
  }
  .card_container .card_heading {
    font-size: 1.65rem;
    margin-top: 5px;
  }
  .hero .hero_content {
    width: calc(84vw);
    font-size: 12px;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .hero .hero_content .intro .campaign_header {
    bottom: 291px;
  }
  .hero .intro .heroPara {
    width: 86%;
    bottom: 105px;
  }
  #nav_bar {
    display: none;
  }
  .nav_linksMobile {
    display: block;
    width: 100%;
    z-index: 1000;
    background: white;
    opacity: 0.95;
    overflow: hidden;
    margin-top: 16px;
  }
  .nav_linksMobile.nav_linksMobile_fixed {
    position: fixed;
    top: 0;
    margin-top: 0;
  }
  .mobileNavDropDown {
    height: 55px;
    border-bottom: 1px solid #d4d9dc;
    border-top: 1px solid #d4d9dc;
    -webkit-transition: height 500ms;
    -moz-transition: height 500ms;
    -ms-transition: height 500ms;
    -o-transition: height 500ms;
    transition: height 500ms;
  }
  .mobileNavDropDown.mobileDropDownMultiCharity {
    height: 190px;
  }
  .mobileNavDropDown.mobileSingleCharity {
    height: 142px;
  }
  .nav_mobileHandle {
    width: 100%;
    height: 55px;
  }
  .navListMobile {
    padding-left: 15px;
  }
  .navListMobile .listMobileElement {
    margin-bottom: 10px;
    line-height: 2;
  }
  .navListMobile .listMobileElement .listOption {
    color: #2c2e2f;
    display: block;
  }
  .navListMobile .listMobileElement:hover {
    text-decoration: underline;
  }
  .navListMobile .listMobileElement:first-of-type {
    margin-top: 10px;
  }
  .logos {
    text-align: inherit;
  }
  .logos .borderBottom {
    padding-left: 20px;
  }
  .logos .imageStyle {
    width: 31%;
  }
  .logos .imageShow {
    max-width: 75%;
  }
  .logos .imageShow.singleCharity {
    max-width: 58px;
    max-height: 58px;
  }
  .logos .imageShow.navigationOff {
    max-width: 80px;
    max-height: 58px;
  }
  .logos .imageShow.uploadedImage {
    max-width: 58px;
    max-height: 58px;
  }
  .select-menu .select-menu-options {
    font-size: 12px;
  }
}
@media screen and (orientation: landscape) {
  .mobileNavDropDown.mobileDropDownMultiCharity {
    height: 190px;
  }
}
@media screen and (min-device-width: 360px) and (max-device-width: 736px) and (max-aspect-ratio: 13/9) {
  .donate .amount .amountBoxStyling {
    float: left;
  }
  .inputDiv {
    width: 86px;
    margin-right: 10px;
    float: left;
  }
  .inputDiv .inputStyling {
    width: 119px;
    font-size: 15px;
  }
  .inputDiv .currencyStyling {
    top: -29px;
    left: 8px;
  }
  .inputDiv .errorMessage.open {
    display: none !important;
  }
  .inputDiv .errorMessage .help-error .error-empty.open {
    display: none !important;
  }
}
.panel {
  width: 100%;
  height: auto;
  background: white;
  border-radius: 5px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 10px 30px 30px 30px;
  line-height: 1.5;
}
.panel p {
  margin-bottom: 0px;
}
.mainIndexPanel {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 30px;
}
.npo-logo-container {
  text-align: center;
  margin-top: -133px;
}
.npo-logo-title {
  padding: 25px 0px 40px 0px;
  margin: 0px;
}
.npo-title {
  font-weight: normal;
}
.npo-avatar-container {
  text-align: center;
  overflow: hidden;
  width: 100px;
  cursor: pointer;
  height: 100px;
  border-radius: 68px;
  background-color: white;
  box-shadow: 0 8px 11px 0 rgba(0, 0, 0, 0.08), 0 2px 5px 0 rgba(0, 0, 0, 0.08);
  margin: auto;
}
.npo-avatar {
  max-width: 75px;
  max-height: 75px;
  margin: 15px;
}
.npo-name {
  margin: 0px;
}
.logo-container {
  display: inline-block;
  position: relative;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.logo-container .logoCharity:hover {
  transform: scale(1.1);
}
.logo-container .charityName {
  width: 148px;
  margin-top: 10px;
  line-height: 1.5em;
  display: table;
  height: 3em;
  word-wrap: break-word;
}
.logo-container .charityName .charitytext {
  height: 44px;
  text-align: center;
  vertical-align: bottom;
  margin: 0 auto;
  font-weight: bold;
}
.logo-container .charityPopover {
  position: absolute;
  top: -126px;
  left: -90px;
  z-index: 9999;
  width: 305px;
  height: 180px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.logo-container .charityPopover .charityNamePop {
  font-size: 20px;
  width: 80%;
  color: #2c2e2f;
  text-align: left;
  margin-left: 10px;
  margin-top: 10px;
}
.logo-container .charityPopover .charityMission {
  margin-top: 10px;
  margin-left: 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  color: #2c2e2f;
}
.logo-container .charityPopover .npoLinkContainer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 10px;
}
.logo-container .charityPopover .visitNpoLink {
  font-size: 15px;
  line-height: 1.4;
  color: #0070ba;
}
.mobileCharityPanel {
  height: 90%;
  width: 85%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.mobileCharityPanel .inner_container {
  width: 100%;
  float: none;
  text-align: center;
  margin: 30px auto 0px;
}
.mobileCharityPanel .inner_container.stateChange .slick-dots {
  display: none !important;
}
.mobileCharityPanel .inner_container.stateChange .slick-dots li button:before {
  display: none !important;
}
.backDivStyling {
  display: inline-block;
  float: left;
}
.backspanarrow {
  margin-top: -3px;
  margin-right: 5px;
}
.back {
  cursor: pointer;
  font-weight: bold;
  float: left;
  margin-top: 16px;
  color: #0070ba;
}
.card_heading {
  margin-bottom: 5px !important;
  margin-top: 10px !important;
  font-size: 28px;
}
.infoIcon {
  display: inline-block;
  cursor: pointer;
}
.donateButtonsDiv {
  display: inline-block;
}
.amountBoxStyling {
  display: inline-block;
}
.inputStyling {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 45px;
  border: 1px solid #d4d9dc;
  box-shadow: none;
  padding: 0 0 0 16px;
  font-size: 16px;
}
.currencyStyling {
  display: inline-block;
  float: left;
  position: relative;
  top: 15px;
  left: 11px;
  height: 0px;
  font-size: 16px;
  line-height: 1;
  color: #2c2e2f;
}
.currencyStyling.currencyIEStyling {
  top: -31px;
  left: 6px;
}
.btnDonateModule {
  width: 131px;
  margin-bottom: 5px !important;
  border-radius: 50px !important;
  height: 45px;
  font-size: 15px;
  margin-left: 10px;
  outline-style: none;
}
.btnDonateModule:focus {
  outline: none !important;
}
.donationAmount {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  animation-duration: 0.5s;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.mobileTooltip {
  -webkit-transition: height 0.45s;
  -moz-transition: height 0.45s;
  -ms-transition: height 0.45s;
  -o-transition: height 0.45s;
  transition: height 0.45s;
  background: #fff;
  overflow: hidden;
  height: 0;
  width: 100%;
  position: fixed;
  bottom: 0;
  display: block;
  z-index: 100000;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.mobileTooltip.tooltipActive {
  height: 180px;
  transition: height 0.45s ease-in;
}
.mobileTooltip .charityNamePop {
  font-size: 20px;
  width: 80%;
  color: #2c2e2f;
  text-align: left;
  margin-left: 10px;
  margin-top: 10px;
}
.mobileTooltip .charityMission {
  margin-top: 10px;
  margin-left: 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  color: #2c2e2f;
}
.mobileTooltip .npoLinkContainer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 10px;
}
.mobileTooltip .visitNpoLink {
  font-size: 15px;
  line-height: 1.4;
  color: #0070ba;
}
.charitytitle_container {
  text-align: left;
  margin: 0 0 0 10px;
  color: inherit !important;
}
.charity_slogan {
  padding-top: 0px;
  font-size: 13px;
  line-height: normal;
  color: #6c7378;
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
.showError {
  border-color: #d20000;
}
@media screen and (max-device-width: 480px), screen and (min-device-width: 320px) and (max-device-width: 780px) and (min-aspect-ratio: 14/9) {
  .landingPage_viewport {
    height: auto;
    min-height: 0;
  }
  .card_container .card_heading {
    font-size: 1.65rem;
    margin-top: 5px;
  }
  .hero .donate {
    margin-top: 20px;
  }
  .hero .hero_content {
    font-size: 16px;
  }
  .hero .hero_content .intro .campaign_header {
    bottom: 291px;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .hero .intro .heroPara {
    width: 86%;
    bottom: 105px;
    margin-top: 30px;
  }
  .hero .intro .heroPara.marginHeroPara {
    padding-bottom: 10px;
    padding-top: 0px;
  }
  #nav_bar {
    display: none;
  }
  .nav_linksMobile {
    display: block;
    width: 100%;
    z-index: 2001;
    background: white;
    opacity: 0.95;
    overflow: hidden;
    margin-top: 0;
  }
  .nav_linksMobile.nav_linksMobile_fixed {
    position: fixed;
    top: 0;
    margin-top: 0;
  }
  .mobileNavDropDown {
    height: 55px;
    border-bottom: 1px solid #d4d9dc;
    border-top: 1px solid #d4d9dc;
    -webkit-transition: height 500ms;
    -moz-transition: height 500ms;
    -ms-transition: height 500ms;
    -o-transition: height 500ms;
    transition: height 500ms;
  }
  .mobileNavDropDown.mobileDropDownRevert {
    height: 190px;
  }
  .mobileNavDropDown.mobileSingleCharity {
    height: 142px;
  }
  .nav_mobileHandle {
    width: 100%;
    height: 55px;
  }
  .navListMobile {
    padding-left: 15px;
  }
  .navListMobile .listMobileElement {
    margin-bottom: 10px;
    line-height: 2;
  }
  .navListMobile .listMobileElement .listOption {
    color: #2c2e2f;
    display: block;
  }
  .navListMobile .listMobileElement:hover {
    text-decoration: underline;
  }
  .navListMobile .listMobileElement:first-of-type {
    margin-top: 10px;
  }
  .nav_linksMobile input {
    width: 80%;
    margin-top: 20px;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 480px) and (min-aspect-ratio: 14/9) {
  .landingPage_viewport {
    height: auto;
    min-height: 0;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 767px) and (min-aspect-ratio: 14/9) {
  .hero .donate {
    font-size: 12px;
  }
  .hero .intro {
    width: 83%;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (min-aspect-ratio: 14/9) {
  .hero .donate {
    font-size: 14px;
  }
  .hero .intro {
    width: 75%;
  }
}
@media screen and (min-device-width: 400px) and (max-device-width: 480px) and (orientation: portrait) {
  .logos {
    text-align: inherit;
  }
  .logos .borderBottom {
    padding-left: 20px;
  }
  .logos .imageStyle {
    width: 31%;
  }
  .logos .imageShow {
    max-width: 75%;
  }
}
@media screen and (min-device-width: 321px) and (max-device-width: 399px) {
  .logos {
    width: 90%;
  }
}
@media screen and (min-device-width: 400px) and (max-device-width: 480px) and (min-aspect-ratio: 14/9) {
  .logos {
    width: 90%;
  }
}
@media screen and (max-device-width: 320px) {
  .hero .hero_content {
    width: calc(93vw);
    font-size: 12.9px;
  }
  .hero .donate .editableDropdown input {
    font-size: 16px;
  }
  .logos {
    width: 97%;
  }
  .logos .imageShow.singleCharity {
    max-width: 52px;
    max-height: 52px;
  }
  .logos .imageShow.navigationOff {
    max-width: 70px;
    max-height: 52px;
  }
  .logos .imageShow.uploadedImage {
    max-width: 52px;
    max-height: 52px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .donate .amount .amountBoxStyling .btnCustDonate {
    width: 72px;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 480px) and (max-aspect-ratio: 13/9) {
  .donate .amount {
    text-align: left;
    margin-left: 43px;
    margin-right: 20px;
  }
  .donate .amount .amountBoxStyling {
    float: left;
  }
  .inputDiv {
    width: 69px;
    margin-right: 10px;
  }
  .inputDiv .inputStyling {
    width: 117px;
    font-size: 15px;
  }
  .inputDiv .currencyStyling {
    top: -29px;
    left: 7px;
    font-size: 15px;
  }
  .inputDiv .errorMessage.open {
    display: none !important;
  }
  .inputDiv .errorMessage .help-error .error-empty.open {
    display: none !important;
  }
  .mobileCharityPanel {
    width: 100%;
  }
  .donation-terms-container {
    margin-left: 10px;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 375px) and (max-aspect-ratio: 13/9) {
  .donate .amount .amountBoxStyling {
    float: left;
  }
  .donate .amount .amountBoxStyling .btnCustDonate {
    width: 65px;
  }
  .mobileCharityPanel {
    width: 100%;
  }
  .donation-terms-container {
    margin-left: 10px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .donate .amount .amountBoxStyling {
    float: left;
  }
  .donate .amount .amountBoxStyling .btnCustDonate {
    width: 77px;
  }
}
@media screen and (max-device-width: 320px) and (orientation: portrait) {
  .card .front .editableDropdown .currencyStyling {
    left: 31px !important ;
  }
  .donation-terms-container {
    margin-left: 10px;
  }
}
.select_menu {
  list-style-type: none;
  border-top: 1px solid #d4d9dc;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 100%;
  margin: -1px 0px 0px 0px;
  padding: 0px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  max-height: 227px;
  overflow-y: auto;
  background-color: white;
  position: absolute;
  z-index: 10;
}
.select-menu-options {
  margin: 0px;
  padding: 12px 10px 12px 10px;
  color: #2c2e2f;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
  text-align: left;
  font-size: 16px;
  line-height: 1;
}
.select-menu-options:hover {
  background-color: #f1f8fc;
  color: #2c2e2f;
}
.select-menu-options-focused {
  background-color: #009cde;
  color: white;
}
.select-menu-show {
  display: inline-block;
}
.select-menu-hide {
  display: none;
}
.bag {
  background-color: grey;
}
.editableDropdown.displayFlip {
  display: none;
}
.clipBtn {
  border: 0;
  width: 19%;
  color: #2c2e2f;
  font-size: 14px;
  float: right;
  height: 42px;
  position: relative;
  background-color: #eaeced;
}
.clipBtn.clipBtnMobile {
  width: 25%;
}
.btn.btn-primary.btn_overlay {
  width: 73.4%;
  height: 50px;
  border-radius: 25px;
  background-color: #0070ba;
}
#myModal {
  z-index: 9999;
}
#myModal.singleCharityModal .modal-dialog {
  width: 750px;
}
#myModal .modal-dialog .modal-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
#myModal.singleCharityModal .modal-dialog .modal-content {
  border-radius: 4px;
}
#myModal.singleCharityModal .modal-header {
  position: absolute;
  right: 0px;
  z-index: 2;
}
.modalStyles .modalStyle .overlay_input {
  width: 60%;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  #myModal .modal-dialog {
    width: 60%;
    max-width: 673px;
  }
}
@media screen and (min-width: 1141px) and (max-width: 1280px) {
  #myModal .modal-dialog {
    width: 31%;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1140px) {
  #myModal .modal-dialog {
    width: 36%;
  }
}
@media screen and (min-width: 1280px) {
  #myModal .modal-dialog {
    width: 30%;
  }
}
.modal-backdrop.fade.in {
  background-color: black;
}
h2 .modalHead {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.1;
  color: #2c2e2f;
}
input:-moz-read-only {
  outline: none;
  text-shadow: 0 0 0 #000;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
@media screen and (min-device-width: 480px) and (max-device-width: 780px) and (min-aspect-ratio: 14/9) {
  .logos .imageShow.singleCharity {
    max-width: 58px;
    max-height: 58px;
  }
  .logos .imageShow.navigationOff {
    max-width: 80px;
    max-height: 58px;
  }
  .logos .imageShow.uploadedImage {
    max-width: 58px;
    max-height: 58px;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
.hideCursorInput {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.floatField {
  display: flex;
  position: relative;
}
.floatField.desktopDonateView {
  display: inline-block;
  width: 60%;
}
.control-label {
  font-size: 16px;
  position: absolute;
  font-weight: 400;
  opacity: 0.4;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(1);
  transform-origin: left top;
  transition: 350ms;
  z-index: 100;
}
.control-label.floatHeroModule {
  top: -8px;
  left: 18px;
}
.control-label.floatCharityCard {
  top: -12px;
  left: 47px;
}
.control-label.isSamsungNative {
  bottom: -1px;
  left: 50px;
}
@media screen and (max-width: 320px) {
  .control-label.floatCharityCard {
    top: -12px;
    left: 41px;
  }
  .control-label.isSamsungNative {
    bottom: -1px;
    left: 45px;
  }
}
.floatField.focused .control-label {
  opacity: 1;
  color: #0070ba;
}
.floatField.focused .control-label.floatHeroModule {
  -webkit-transform: translate(1px, 10px) scale(0.7);
  -moz-transform: translate(1px, 10px) scale(0.7);
  -ms-transform: translate(1px, 10px) scale(0.7);
  -o-transform: translate(1px, 10px) scale(0.7);
  transform: translate(1px, 10px) scale(0.7);
}
.floatField.focused .control-label.floatCharityCard {
  -webkit-transform: translate(0px, 12px) scale(0.7);
  -moz-transform: translate(0px, 12px) scale(0.7);
  -ms-transform: translate(0px, 12px) scale(0.7);
  -o-transform: translate(0px, 12px) scale(0.7);
  transform: translate(0px, 12px) scale(0.7);
}
.floatField.focused .control-label.isSamsungNative {
  -webkit-transform: translate(-20px, -12px) scale(0.7);
  -moz-transform: translate(-20px, -12px) scale(0.7);
  -ms-transform: translate(-20px, -12px) scale(0.7);
  -o-transform: translate(-20px, -12px) scale(0.7);
  transform: translate(-20px, -12px) scale(0.7);
}
.floatField.focused .control-label.colorChanged {
  color: #000000;
}
@media screen and (max-width: 768px) {
  .hero .donate .impactStmt {
    display: none;
  }
}
@media screen and (max-device-width: 320px) and (orientation: portrait) {
  .inner_card_container {
    height: 328px;
    width: 92% !important;
    margin: 0 auto;
    text-align: center;
    float: none !important;
  }
  .card {
    width: 100%;
  }
}
@media screen and (max-width: 1204px) and (min-width: 992px) {
  .cards {
    width: 104%;
  }
}
@media screen and (max-width: 991px) and (min-width: 692px) {
  .cards {
    width: 91%;
  }
}
@media screen and (max-width: 510px) and (min-width: 481px) {
  .cards {
    width: 92%;
  }
}
@media screen and (max-width: 600px) and (min-width: 400px) {
  .donation-terms-container {
    margin-left: 10px;
  }
}
.slick-dots,
.slick-next,
.slick-prev {
  position: absolute;
  display: block;
  padding: 0;
}
.slick-dots li button:before,
.slick-next:before,
.slick-prev:before {
  font-family: slick;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-loading .slick-list {
  background: url(lib/slick/ajax-loader.gif) center center no-repeat #ffffff;
}
@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
  
  /*src: url(fonts/slick.eot);*/
  /*src: url(fonts/slick.eot?#iefix) format('embedded-opentype'), url(fonts/slick.woff) format('woff'), url(fonts/slick.ttf) format('truetype'), url(fonts/slick.svg#slick) format('svg')*/
}
.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0;
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: 0.25;
}
.slick-next:before,
.slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #ffffff;
}
.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
.slick-next:before,
[dir=rtl] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
[dir=rtl] .slick-next:before {
  content: '←';
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  bottom: -25px;
  width: 100%;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}
.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: 0;
}
.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #000000;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000000;
}
/*# sourceMappingURL=slick-theme.min.css.map */
.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}
.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  top: 0;
  left: 0;
}
.slick-track:after,
.slick-track:before {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/*# sourceMappingURL=slick.min.css.map */
.faq-banner {
  color: #2c2e2f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 35px;
}
.faq-banner .faq-banner-label {
  margin-right: 19px;
}
.faq-banner .faq-banner-button {
  color: #006ebd;
}
.faq-banner .faq-banner-button:hover {
  color: #006ebd;
}
@media (max-width: 415px) {
  .faq-banner {
    flex-direction: column;
    text-align: center;
  }
  .faq-banner .faq-banner-label {
    margin: 0 0 20px 0;
    width: 252px;
  }
}
.slick-dots li button:before {
  font-size: 33px;
}
.btn-row {
  width: 85%;
  display: flex;
}
.btn-row .btn-row-btn {
  border-radius: 0;
}
.btn-row button:first-of-type {
  border-radius: 4px 0 0 4px;
}
.btn-row button:last-of-type {
  border-radius: 0 4px 4px 0;
}
.btn-row-btn:only-child {
  border-radius: 4px;
}
.btn-row button:not(:last-child) {
  margin-right: -1px;
}
.btn-row > .inputStyling {
  width: 85%;
  height: 50px;
  position: absolute;
  z-index: -1;
  left: 6px;
}
.btn-row-btn {
  background-color: white;
  border: 1px solid #d8d8d8;
  color: #0070ba;
  padding: 12px 0px;
  flex-grow: 1;
}
.btn-row-btn:hover {
  background-color: #f5fbfe;
  color: #0070ba;
}
.btnSelected {
  background-color: #0070ba;
  color: white;
}
.btnSelected:hover {
  background-color: #0070ba;
  color: white;
}
.redBorder {
  border-color: #d20000;
}
.missing-input-error:before {
  content: '\e026';
  color: #d20000;
}
.slide {
  animation-name: slide;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
@keyframes slide {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate(-350%, 0);
    transform: translate(-350%, 0);
    opacity: 0;
  }
}
.amount-appear {
  animation: appear 1000ms forwards;
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    z-index: 2;
  }
}
.donation-form-button {
  margin-top: 10px;
  outline: none !important;
  text-decoration: none !important;
}
.amount-input-back {
  color: #0070ba;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  text-decoration: none;
  height: 20px;
  cursor: pointer;
  margin-bottom: 5px;
}
.blank {
  height: 20px;
  margin-bottom: 5px;
}
.modal-dialog .npo-avatar {
  margin: 0;
}
.modal-dialog .charitytitle_container {
  padding: 0;
}
.single-charity-donation-form {
  width: 100%;
}
.single-charity-identity-checkbox {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  width: 100%;
}
.single-charity-identity-checkbox label {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  line-height: 1.75em;
  padding-left: 2.375rem;
  text-align: left;
}
.single-charity-identity-checkbox label:before {
  position: absolute;
  left: 0;
  padding: 0.4em 0.1em;
  height: 1.5rem;
  width: 1.5rem;
  content: '';
  font-size: 1.3rem;
  line-height: 0;
  border-radius: 0.125rem;
  border: 0.0625rem solid #b7bcbf;
}
.single-charity-identity-checkbox input {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  padding: 0;
}
.single-charity-identity-checkbox input:checked + label:before {
  content: "\e015";
  border-color: #0092d1;
  color: #ffffff;
  background-color: #0092d1;
}
.single-charity-identity-checkbox input:focus + label:before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
@media screen and (min-width: 320px) and (max-width: 881px) {
  #myModal.singleCharityModal .modal-dialog {
    width: auto;
  }
  .btn-row {
    width: 100%;
  }
  .btn-row > .inputStyling {
    width: 98%;
    left: 3px;
  }
}
