@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;
  }
}
/**
 * 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
 */
/* Icon Fonts */
/* Z-index list */
/* user for a bird's eye view of components based on z-axis */
/* for example, if you want to put a button in header, just assign z-index of that button to @zindexHeader */
/* these will overwrite the bootstrap pre defined variables */
/* TODO: check the clean the non-needed modal styles in bootstrap */
/* the same as bootstrap one, just overwrite */
/* what about larger phones like gs3? what about phablets like the note?
/* responsive breakpoints */
/* Setting for Sidepanel */
/* This is not used by all side panels, only for the default one */
/* Navigation */
/* Spinner */
@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;
}
/**
 * THIS ICONS COMPONENT IS BEING DEPRECATED. USE THE ICONOGRAPHY COMPONENT INSTEAD.
 */
/**
 * 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
 */
.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;
}
.icon:before {
  display: table-cell;
  width: 100%;
  height: 100%;
}
.icon-xlarge,
.icon-large {
  height: 1.04em;
  width: 1.04em;
}
.icon-xlarge:before,
.icon-large:before {
  line-height: 0.9em;
}
.icon-xlarge {
  font-size: 3.75rem;
}
.icon-large {
  font-size: 2.5rem;
}
.icon-medium {
  font-size: 1.5rem;
  height: 1.05em;
  width: 1.05em;
}
.icon-medium:before {
  line-height: 0.9em;
}
.icon-small {
  font-size: 1.125rem;
  height: 1.05em;
  width: 1.05em;
}
.icon-small:before {
  line-height: 0.9em;
}
.icon-slider-small:before {
  content: "\205E";
}
.icon-slider-xsmall:before,
.icon-slider-half-small:before {
  content: "\205D";
}
.icon-close-small:before {
  content: "\2716";
}
.icon-add-small:before {
  content: "\002B";
}
.icon-arrow-down-small:before {
  content: "\2193";
}
.icon-arrow-up-small:before {
  content: "\2191";
}
.icon-arrow-left-small:before {
  content: "\2190";
}
.icon-arrow-right-small:before {
  content: "\2192";
}
.icon-arrow-down-half-small:before {
  content: "\21E3";
}
.icon-arrow-up-half-small:before {
  content: "\21E1";
}
.icon-arrow-left-half-small:before {
  content: "\21E0";
}
.icon-arrow-right-half-small:before {
  content: "\21E2";
}
.icon-arrow-back-small:before {
  content: "\21E6";
}
.icon-clear-half-small:before,
.icon-cancel-small:before {
  content: "\274E";
}
.icon-checkmark-large:before,
.icon-checkmark-small:before {
  content: "\2705";
}
.icon-checkmark-sm:before,
.icon-checkmark-small-bold:before {
  content: "\2611";
}
.icon-action-xsmall:before,
.icon-action-arrow-half-small:before {
  content: "\25BA";
}
.icon-open-list-small:before,
.icon-action-arrow-down-half-small:before {
  content: "\25BC";
}
.icon-close-list-small:before,
.icon-action-arrow-up-half-small:before {
  content: "\25B2";
}
.icon-help-xsmall:before,
.icon-tooltip-outline-small:before,
.icon-tooltip-small:before {
  content: "\FE16";
}
.icon-circled-info-xsmall:before,
.icon-info-small:before,
.icon-info-outline-small:before {
  content: "\2139";
}
.icon-positive-xsmall:before,
.icon-positive-small:before,
.icon-circled-checkmark-small:before {
  content: "\2714";
}
.icon-attention-xsmall:before,
.icon-attention-small:before,
.icon-attention-outline-small:before {
  content: "\FE15";
}
.icon-critical-xsmall:before,
.icon-critical-small:before {
  content: "\26A0";
}
.icon-info-large:before {
  content: "\24D8";
}
.icon-positive-large:before,
.icon-circled-checkmark-large:before {
  content: "\2713";
}
.icon-attention-large:before {
  content: "\2762";
}
.icon-critical-large:before {
  content: "\2757";
}
.icon-settings-small:before,
.icon-gear:before {
  content: "\2699";
}
.icon-search-small:before,
.icon-magnifying-glass:before {
  content: "\1F50D";
}
.icon-notification-small:before,
.icon-bell-small:before,
.icon-bell:before {
  content: "\1F514";
}
.icon-link-xsmall:before,
.icon-chain-link-xsmall:before,
.icon-chain-link:before,
.icon-link-small:before {
  content: "\1F517";
}
.icon-calendar-small:before {
  content: "\1F4C5";
}
.icon-calendar:before {
  content: "\1F4C6";
}
.icon-photo-small:before,
.icon-camera:before,
.icon-camera-small:before {
  content: "\1F4F7";
}
.icon-photo-add-small:before,
.icon-camera-add:before {
  content: "\E614";
}
.icon-profile-large:before,
.icon-avatar:before {
  content: "\1F468";
}
.icon-profile-add-large:before {
  content: "\1F469";
}
.icon-pp-logo:before,
.icon-pp-logo-half:before,
.icon-pp-logo-outline:before {
  content: "\E499";
}
.vx_embeddedIcon .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 .icon,
.vx_embeddedIcon:focus .icon,
.vx_embeddedIcon:active .icon {
  background-color: #003087;
  box-shadow: 0 0 0 0.09375rem #003087 inset;
}
.vx_embeddedIcon_reversed .icon {
  background-color: #ffffff;
  color: #0070ba;
  box-shadow: 0 0 0 0.09375rem #ffffff inset;
}
.vx_embeddedIcon_reversed:hover .icon,
.vx_embeddedIcon_reversed:focus .icon,
.vx_embeddedIcon_reversed:active .icon {
  background-color: #f5f7fa;
  box-shadow: 0 0 0 0.125rem #f5f7fa inset;
  color: #003087;
}
.vx_embeddedIcon-secondary .icon {
  background: none;
  color: #0070ba;
  box-shadow: 0 0 0 0.09375rem #0070ba inset;
}
.vx_embeddedIcon-secondary:hover .icon,
.vx_embeddedIcon-secondary:focus .icon,
.vx_embeddedIcon-secondary:active .icon {
  background: none;
  box-shadow: 0 0 0 0.125rem #003087 inset;
  color: #003087;
}
.vx_embeddedIcon-secondary_reversed .icon {
  background: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.09375rem #ffffff inset;
}
.vx_embeddedIcon-secondary_reversed:hover .icon,
.vx_embeddedIcon-secondary_reversed:focus .icon,
.vx_embeddedIcon-secondary_reversed:active .icon {
  background: none;
  box-shadow: 0 0 0 0.125rem #ffffff inset;
  color: #ffffff;
}
.vx_embeddedIcon-simple .icon {
  background: none;
  color: #0070ba;
  box-shadow: none;
}
.vx_embeddedIcon-simple:hover .icon,
.vx_embeddedIcon-simple:focus .icon,
.vx_embeddedIcon-simple:active .icon {
  background: none;
  color: #003087;
}
.vx_embeddedIcon-simple_reversed .icon {
  background: none;
  color: #ffffff;
  box-shadow: none;
}
.vx_embeddedIcon-simple_reversed:hover .icon,
.vx_embeddedIcon-simple_reversed:focus .icon,
.vx_embeddedIcon-simple_reversed:active .icon {
  background: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.09375rem #ffffff inset;
}
/*
*	CSS for Overflow Menu
*/
.vx_overflowMenu-container {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.vx_overflowMenu-btn {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.25rem;
  border: none;
  background-color: transparent;
}
.vx_overflowMenu-btn:hover,
.vx_overflowMenu-btn.active {
  background: #eeeeee;
  border-radius: 50%;
}
.vx_overflowMenu-btn:focus {
  outline: 0;
  background: #cbd2d6;
  border-radius: 50%;
}
.vx_overflowMenu {
  visibility: hidden;
  opacity: 0;
  color: #ffffff;
}
.vx_overflowMenu ul {
  display: block;
}
.vx_overflowMenuIsOpen {
  visibility: visible;
  opacity: 1;
}
.vx_overflowMenu-list {
  position: absolute;
  padding: 0.75rem 0;
  border: 0.0625rem solid #cbd2d6;
  border-radius: 0.3125rem;
  box-shadow: 0rem 0.1875rem 0.625rem 0rem rgba(0, 0, 0, 0.15);
  list-style-type: none;
  right: 0.75rem;
  background-color: #ffffff;
}
.vx_overflowMenu-list a {
  text-decoration: none;
  color: #2c2e2f;
}
.vx_overflowMenu-item {
  display: block;
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  font-weight: 300;
}
.vx_overflowMenu-item:hover,
.vx_overflowMenu-item:focus {
  background-color: #e4f1fb;
  cursor: pointer;
  outline: 0;
}
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;
}
/*
 * This implementation is based on:
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *
 * The gutter widths, padding and precise breakpoints have been changed
 * to reflect the PayPal design system.
 */
/* DO NOT USE THESE VARIABLES. THESE ARE TEMPORARY VARIABLES, SOON WILL BE REPLACED BY TOKENS */
/* stylelint-disable */
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
.ppvx_container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 36rem) {
  .ppvx_container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    max-width: 36rem;
  }
}
@media (min-width: 47rem) {
  .ppvx_container {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
    max-width: 47rem;
  }
}
@media (min-width: 64rem) {
  .ppvx_container {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
    max-width: 64rem;
  }
}
@media (min-width: 72rem) {
  .ppvx_container {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
    max-width: 72rem;
  }
}
.ppvx_row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.ppvx_container-fluid {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
.ppvx_no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.ppvx_no-gutters > .ppvx_col,
.ppvx_no-gutters > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}
.ppvx_col-1,
.ppvx_col-2,
.ppvx_col-3,
.ppvx_col-4,
.ppvx_col-5,
.ppvx_col-6,
.ppvx_col-7,
.ppvx_col-8,
.ppvx_col-9,
.ppvx_col-10,
.ppvx_col-11,
.ppvx_col-12,
.ppvx_col,
.ppvx_col-auto,
.ppvx_col-sm-1,
.ppvx_col-sm-2,
.ppvx_col-sm-3,
.ppvx_col-sm-4,
.ppvx_col-sm-5,
.ppvx_col-sm-6,
.ppvx_col-sm-7,
.ppvx_col-sm-8,
.ppvx_col-sm-9,
.ppvx_col-sm-10,
.ppvx_col-sm-11,
.ppvx_col-sm-12,
.ppvx_col-sm,
.ppvx_col-sm-auto,
.ppvx_col-md-1,
.ppvx_col-md-2,
.ppvx_col-md-3,
.ppvx_col-md-4,
.ppvx_col-md-5,
.ppvx_col-md-6,
.ppvx_col-md-7,
.ppvx_col-md-8,
.ppvx_col-md-9,
.ppvx_col-md-10,
.ppvx_col-md-11,
.ppvx_col-md-12,
.ppvx_col-md,
.ppvx_col-md-auto,
.ppvx_col-lg-1,
.ppvx_col-lg-2,
.ppvx_col-lg-3,
.ppvx_col-lg-4,
.ppvx_col-lg-5,
.ppvx_col-lg-6,
.ppvx_col-lg-7,
.ppvx_col-lg-8,
.ppvx_col-lg-9,
.ppvx_col-lg-10,
.ppvx_col-lg-11,
.ppvx_col-lg-12,
.ppvx_col-lg,
.ppvx_col-lg-auto,
.ppvx_col-xl-1,
.ppvx_col-xl-2,
.ppvx_col-xl-3,
.ppvx_col-xl-4,
.ppvx_col-xl-5,
.ppvx_col-xl-6,
.ppvx_col-xl-7,
.ppvx_col-xl-8,
.ppvx_col-xl-9,
.ppvx_col-xl-10,
.ppvx_col-xl-11,
.ppvx_col-xl-12,
.ppvx_col-xl,
.ppvx_col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.ppvx_col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.ppvx_col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.ppvx_col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.ppvx_col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.ppvx_col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.ppvx_col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.ppvx_col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.ppvx_col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.ppvx_col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.ppvx_col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.ppvx_col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.ppvx_col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.ppvx_col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.ppvx_col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.ppvx_order-first {
  -ms-flex-order: -1;
  order: -1;
}
.ppvx_order-last {
  -ms-flex-order: 13;
  order: 13;
}
.ppvx_order-0 {
  -ms-flex-order: 0;
  order: 0;
}
.ppvx_order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.ppvx_order-2 {
  -ms-flex-order: 2;
  order: 2;
}
.ppvx_order-3 {
  -ms-flex-order: 3;
  order: 3;
}
.ppvx_order-4 {
  -ms-flex-order: 4;
  order: 4;
}
.ppvx_order-5 {
  -ms-flex-order: 5;
  order: 5;
}
.ppvx_order-6 {
  -ms-flex-order: 6;
  order: 6;
}
.ppvx_order-7 {
  -ms-flex-order: 7;
  order: 7;
}
.ppvx_order-8 {
  -ms-flex-order: 8;
  order: 8;
}
.ppvx_order-9 {
  -ms-flex-order: 9;
  order: 9;
}
.ppvx_order-10 {
  -ms-flex-order: 10;
  order: 10;
}
.ppvx_order-11 {
  -ms-flex-order: 11;
  order: 11;
}
.ppvx_order-12 {
  -ms-flex-order: 12;
  order: 12;
}
.ppvx_offset-1 {
  margin-left: 8.333333%;
}
.ppvx_offset-2 {
  margin-left: 16.666667%;
}
.ppvx_offset-3 {
  margin-left: 25%;
}
.ppvx_offset-4 {
  margin-left: 33.333333%;
}
.ppvx_offset-5 {
  margin-left: 41.666667%;
}
.ppvx_offset-6 {
  margin-left: 50%;
}
.ppvx_offset-7 {
  margin-left: 58.333333%;
}
.ppvx_offset-8 {
  margin-left: 66.666667%;
}
.ppvx_offset-9 {
  margin-left: 75%;
}
.ppvx_offset-10 {
  margin-left: 83.333333%;
}
.ppvx_offset-11 {
  margin-left: 91.666667%;
}
@media (min-width: 36rem) {
  .ppvx_col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .ppvx_col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .ppvx_col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .ppvx_col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .ppvx_col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ppvx_col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .ppvx_col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .ppvx_col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ppvx_col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .ppvx_col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .ppvx_col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ppvx_col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .ppvx_col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .ppvx_col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ppvx_order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .ppvx_order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .ppvx_order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .ppvx_order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .ppvx_order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .ppvx_order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .ppvx_order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .ppvx_order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .ppvx_order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .ppvx_order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .ppvx_order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .ppvx_order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .ppvx_order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .ppvx_order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .ppvx_order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .ppvx_offset-sm-0 {
    margin-left: 0;
  }
  .ppvx_offset-sm-1 {
    margin-left: 8.333333%;
  }
  .ppvx_offset-sm-2 {
    margin-left: 16.666667%;
  }
  .ppvx_offset-sm-3 {
    margin-left: 25%;
  }
  .ppvx_offset-sm-4 {
    margin-left: 33.333333%;
  }
  .ppvx_offset-sm-5 {
    margin-left: 41.666667%;
  }
  .ppvx_offset-sm-6 {
    margin-left: 50%;
  }
  .ppvx_offset-sm-7 {
    margin-left: 58.333333%;
  }
  .ppvx_offset-sm-8 {
    margin-left: 66.666667%;
  }
  .ppvx_offset-sm-9 {
    margin-left: 75%;
  }
  .ppvx_offset-sm-10 {
    margin-left: 83.333333%;
  }
  .ppvx_offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 47rem) {
  .ppvx_col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .ppvx_col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .ppvx_col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .ppvx_col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .ppvx_col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ppvx_col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .ppvx_col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .ppvx_col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ppvx_col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .ppvx_col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .ppvx_col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ppvx_col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .ppvx_col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .ppvx_col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ppvx_order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .ppvx_order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .ppvx_order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .ppvx_order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .ppvx_order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .ppvx_order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .ppvx_order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .ppvx_order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .ppvx_order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .ppvx_order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .ppvx_order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .ppvx_order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .ppvx_order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .ppvx_order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .ppvx_order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .ppvx_offset-md-0 {
    margin-left: 0;
  }
  .ppvx_offset-md-1 {
    margin-left: 8.333333%;
  }
  .ppvx_offset-md-2 {
    margin-left: 16.666667%;
  }
  .ppvx_offset-md-3 {
    margin-left: 25%;
  }
  .ppvx_offset-md-4 {
    margin-left: 33.333333%;
  }
  .ppvx_offset-md-5 {
    margin-left: 41.666667%;
  }
  .ppvx_offset-md-6 {
    margin-left: 50%;
  }
  .ppvx_offset-md-7 {
    margin-left: 58.333333%;
  }
  .ppvx_offset-md-8 {
    margin-left: 66.666667%;
  }
  .ppvx_offset-md-9 {
    margin-left: 75%;
  }
  .ppvx_offset-md-10 {
    margin-left: 83.333333%;
  }
  .ppvx_offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 64rem) {
  .ppvx_col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .ppvx_col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .ppvx_col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .ppvx_col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .ppvx_col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ppvx_col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .ppvx_col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .ppvx_col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ppvx_col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .ppvx_col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .ppvx_col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ppvx_col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .ppvx_col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .ppvx_col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ppvx_order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .ppvx_order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .ppvx_order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .ppvx_order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .ppvx_order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .ppvx_order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .ppvx_order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .ppvx_order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .ppvx_order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .ppvx_order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .ppvx_order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .ppvx_order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .ppvx_order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .ppvx_order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .ppvx_order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .ppvx_offset-lg-0 {
    margin-left: 0;
  }
  .ppvx_offset-lg-1 {
    margin-left: 8.333333%;
  }
  .ppvx_offset-lg-2 {
    margin-left: 16.666667%;
  }
  .ppvx_offset-lg-3 {
    margin-left: 25%;
  }
  .ppvx_offset-lg-4 {
    margin-left: 33.333333%;
  }
  .ppvx_offset-lg-5 {
    margin-left: 41.666667%;
  }
  .ppvx_offset-lg-6 {
    margin-left: 50%;
  }
  .ppvx_offset-lg-7 {
    margin-left: 58.333333%;
  }
  .ppvx_offset-lg-8 {
    margin-left: 66.666667%;
  }
  .ppvx_offset-lg-9 {
    margin-left: 75%;
  }
  .ppvx_offset-lg-10 {
    margin-left: 83.333333%;
  }
  .ppvx_offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 72rem) {
  .ppvx_col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .ppvx_col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .ppvx_col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .ppvx_col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .ppvx_col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ppvx_col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .ppvx_col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .ppvx_col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ppvx_col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .ppvx_col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .ppvx_col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ppvx_col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .ppvx_col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .ppvx_col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ppvx_order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .ppvx_order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .ppvx_order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .ppvx_order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .ppvx_order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .ppvx_order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .ppvx_order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .ppvx_order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .ppvx_order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .ppvx_order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .ppvx_order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .ppvx_order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .ppvx_order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .ppvx_order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .ppvx_order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .ppvx_offset-xl-0 {
    margin-left: 0;
  }
  .ppvx_offset-xl-1 {
    margin-left: 8.333333%;
  }
  .ppvx_offset-xl-2 {
    margin-left: 16.666667%;
  }
  .ppvx_offset-xl-3 {
    margin-left: 25%;
  }
  .ppvx_offset-xl-4 {
    margin-left: 33.333333%;
  }
  .ppvx_offset-xl-5 {
    margin-left: 41.666667%;
  }
  .ppvx_offset-xl-6 {
    margin-left: 50%;
  }
  .ppvx_offset-xl-7 {
    margin-left: 58.333333%;
  }
  .ppvx_offset-xl-8 {
    margin-left: 66.666667%;
  }
  .ppvx_offset-xl-9 {
    margin-left: 75%;
  }
  .ppvx_offset-xl-10 {
    margin-left: 83.333333%;
  }
  .ppvx_offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.ppvx_d-none {
  display: none !important;
}
.ppvx_d-inline {
  display: inline !important;
}
.ppvx_d-inline-block {
  display: inline-block !important;
}
.ppvx_d-block {
  display: block !important;
}
.ppvx_d-table {
  display: table !important;
}
.ppvx_d-table-row {
  display: table-row !important;
}
.ppvx_d-table-cell {
  display: table-cell !important;
}
.ppvx_d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.ppvx_d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 36rem) {
  .ppvx_d-sm-none {
    display: none !important;
  }
  .ppvx_d-sm-inline {
    display: inline !important;
  }
  .ppvx_d-sm-inline-block {
    display: inline-block !important;
  }
  .ppvx_d-sm-block {
    display: block !important;
  }
  .ppvx_d-sm-table {
    display: table !important;
  }
  .ppvx_d-sm-table-row {
    display: table-row !important;
  }
  .ppvx_d-sm-table-cell {
    display: table-cell !important;
  }
  .ppvx_d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .ppvx_d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 47rem) {
  .ppvx_d-md-none {
    display: none !important;
  }
  .ppvx_d-md-inline {
    display: inline !important;
  }
  .ppvx_d-md-inline-block {
    display: inline-block !important;
  }
  .ppvx_d-md-block {
    display: block !important;
  }
  .ppvx_d-md-table {
    display: table !important;
  }
  .ppvx_d-md-table-row {
    display: table-row !important;
  }
  .ppvx_d-md-table-cell {
    display: table-cell !important;
  }
  .ppvx_d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .ppvx_d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 64rem) {
  .ppvx_d-lg-none {
    display: none !important;
  }
  .ppvx_d-lg-inline {
    display: inline !important;
  }
  .ppvx_d-lg-inline-block {
    display: inline-block !important;
  }
  .ppvx_d-lg-block {
    display: block !important;
  }
  .ppvx_d-lg-table {
    display: table !important;
  }
  .ppvx_d-lg-table-row {
    display: table-row !important;
  }
  .ppvx_d-lg-table-cell {
    display: table-cell !important;
  }
  .ppvx_d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .ppvx_d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 72rem) {
  .ppvx_d-xl-none {
    display: none !important;
  }
  .ppvx_d-xl-inline {
    display: inline !important;
  }
  .ppvx_d-xl-inline-block {
    display: inline-block !important;
  }
  .ppvx_d-xl-block {
    display: block !important;
  }
  .ppvx_d-xl-table {
    display: table !important;
  }
  .ppvx_d-xl-table-row {
    display: table-row !important;
  }
  .ppvx_d-xl-table-cell {
    display: table-cell !important;
  }
  .ppvx_d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .ppvx_d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .ppvx_d-print-none {
    display: none !important;
  }
  .ppvx_d-print-inline {
    display: inline !important;
  }
  .ppvx_d-print-inline-block {
    display: inline-block !important;
  }
  .ppvx_d-print-block {
    display: block !important;
  }
  .ppvx_d-print-table {
    display: table !important;
  }
  .ppvx_d-print-table-row {
    display: table-row !important;
  }
  .ppvx_d-print-table-cell {
    display: table-cell !important;
  }
  .ppvx_d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .ppvx_d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.ppvx_flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.ppvx_flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.ppvx_flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.ppvx_flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.ppvx_flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.ppvx_flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.ppvx_flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.ppvx_flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.ppvx_flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.ppvx_flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.ppvx_flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.ppvx_flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.ppvx_justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.ppvx_justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.ppvx_justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.ppvx_justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.ppvx_justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.ppvx_align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.ppvx_align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.ppvx_align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.ppvx_align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.ppvx_align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.ppvx_align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.ppvx_align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.ppvx_align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.ppvx_align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.ppvx_align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.ppvx_align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.ppvx_align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.ppvx_align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.ppvx_align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.ppvx_align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.ppvx_align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.ppvx_align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}
@media (min-width: 36rem) {
  .ppvx_flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .ppvx_flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .ppvx_flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .ppvx_flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .ppvx_flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .ppvx_flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .ppvx_flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .ppvx_flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .ppvx_flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .ppvx_flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .ppvx_flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .ppvx_flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .ppvx_justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .ppvx_justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .ppvx_justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .ppvx_justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .ppvx_justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .ppvx_align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .ppvx_align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .ppvx_align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .ppvx_align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .ppvx_align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .ppvx_align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .ppvx_align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .ppvx_align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .ppvx_align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .ppvx_align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .ppvx_align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .ppvx_align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .ppvx_align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .ppvx_align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .ppvx_align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .ppvx_align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .ppvx_align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 47rem) {
  .ppvx_flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .ppvx_flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .ppvx_flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .ppvx_flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .ppvx_flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .ppvx_flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .ppvx_flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .ppvx_flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .ppvx_flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .ppvx_flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .ppvx_flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .ppvx_flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .ppvx_justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .ppvx_justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .ppvx_justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .ppvx_justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .ppvx_justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .ppvx_align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .ppvx_align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .ppvx_align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .ppvx_align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .ppvx_align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .ppvx_align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .ppvx_align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .ppvx_align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .ppvx_align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .ppvx_align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .ppvx_align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .ppvx_align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .ppvx_align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .ppvx_align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .ppvx_align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .ppvx_align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .ppvx_align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 64rem) {
  .ppvx_flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .ppvx_flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .ppvx_flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .ppvx_flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .ppvx_flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .ppvx_flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .ppvx_flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .ppvx_flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .ppvx_flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .ppvx_flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .ppvx_flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .ppvx_flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .ppvx_justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .ppvx_justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .ppvx_justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .ppvx_justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .ppvx_justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .ppvx_align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .ppvx_align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .ppvx_align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .ppvx_align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .ppvx_align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .ppvx_align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .ppvx_align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .ppvx_align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .ppvx_align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .ppvx_align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .ppvx_align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .ppvx_align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .ppvx_align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .ppvx_align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .ppvx_align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .ppvx_align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .ppvx_align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 72rem) {
  .ppvx_flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .ppvx_flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .ppvx_flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .ppvx_flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .ppvx_flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .ppvx_flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .ppvx_flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .ppvx_flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .ppvx_flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .ppvx_flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .ppvx_flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .ppvx_flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .ppvx_justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .ppvx_justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .ppvx_justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .ppvx_justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .ppvx_justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .ppvx_align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .ppvx_align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .ppvx_align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .ppvx_align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .ppvx_align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .ppvx_align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .ppvx_align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .ppvx_align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .ppvx_align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .ppvx_align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .ppvx_align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .ppvx_align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .ppvx_align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .ppvx_align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .ppvx_align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .ppvx_align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .ppvx_align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/* stylelint-enable */
/* 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_btn {
  background-color: #0070ba;
  border-radius: 1.5rem;
  border: 0.0625rem solid #0070ba;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-weight: 700;
  min-width: 6rem;
  padding: 0.6875rem 1.4375rem;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ppvx_btn:hover,
.ppvx_btn:focus,
.ppvx_btn:active,
.ppvx_btn:visited {
  color: #ffffff;
}
.ppvx_btn:hover,
.ppvx_btn:focus,
.ppvx_btn:active {
  background-color: #003087;
  border-color: #003087;
}
.ppvx_btn:hover {
  text-decoration: none;
}
.ppvx_btn:focus,
.ppvx_btn:active {
  outline: none;
  text-decoration: underline;
}
.ppvx_btn--inverse {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0070ba;
}
.ppvx_btn--inverse:visited {
  color: #0070ba;
}
.ppvx_btn--inverse:hover,
.ppvx_btn--inverse:focus,
.ppvx_btn--inverse:active {
  background-color: #f5f7fa;
  border-color: #f5f7fa;
  color: #003087;
}
.ppvx_btn--secondary {
  background: rgba(0, 0, 0, 0);
  border-color: #0070ba;
  color: #0070ba;
}
.ppvx_btn--secondary:visited {
  color: #0070ba;
}
.ppvx_btn--secondary:hover,
.ppvx_btn--secondary:focus,
.ppvx_btn--secondary:active {
  background: rgba(0, 0, 0, 0);
  border-color: #003087;
  box-shadow: 0 0 0 0.0625rem #003087 inset;
  color: #003087;
}
.ppvx_btn--secondary.ppvx_btn--inverse {
  border-color: #ffffff;
  color: #ffffff;
}
.ppvx_btn--secondary.ppvx_btn--inverse:visited {
  color: #ffffff;
}
.ppvx_btn--secondary.ppvx_btn--inverse:hover,
.ppvx_btn--secondary.ppvx_btn--inverse:focus,
.ppvx_btn--secondary.ppvx_btn--inverse:active {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 0 0.0625rem #ffffff inset;
}
.ppvx_btn--icon {
  background: rgba(0, 0, 0, 0);
  border-color: #0070ba;
  color: #0070ba;
  padding-left: 0.5625rem;
}
.ppvx_btn--icon:visited {
  color: #0070ba;
}
.ppvx_btn--icon:hover,
.ppvx_btn--icon:focus,
.ppvx_btn--icon:active {
  background: rgba(0, 0, 0, 0);
  border-color: #003087;
  box-shadow: 0 0 0 0.0625rem #003087 inset;
  color: #003087;
}
.ppvx_btn--icon.ppvx_btn--inverse {
  border-color: #ffffff;
  color: #ffffff;
}
.ppvx_btn--icon.ppvx_btn--inverse:visited {
  color: #ffffff;
}
.ppvx_btn--icon.ppvx_btn--inverse:hover,
.ppvx_btn--icon.ppvx_btn--inverse:focus,
.ppvx_btn--icon.ppvx_btn--inverse:active {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 0 0.0625rem #ffffff inset;
}
.ppvx_btn--icon > span {
  vertical-align: top;
  padding-right: 0.375rem;
  display: inline-block;
}
.ppvx_btn--icon.ppvx_btn--size_md,
.ppvx_btn--icon.ppvx_btn--size_sm {
  padding-left: 0.375rem;
}
/*
  Buttons are large by default
  Class for medium size button
*/
.ppvx_btn--size_md {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-weight: 700;
  border-radius: 1.125rem;
  min-width: 4.5rem;
  padding: 0.5rem 1.0625rem;
}
/* Class for small size button */
.ppvx_btn--size_sm {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-family: PayPalSansSmall-Regular, Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-weight: 700;
  min-width: 3.75rem;
  padding: 0.3125rem 0.875rem;
}
/* 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 */
.no-js .captcha-container .captcha-inputs .refresh.small.light {
  display: none;
}
.captcha-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.captcha-container {
  width: 100%;
  margin: 0;
  /** method responsible for loading the background image set in CSS **/
  /* light button for header and footer */
}
.captcha-container .container {
  width: 95%;
  background-image: none;
  background-color: transparent;
}
.captcha-container .corral {
  margin: 0 auto;
  width: 460px;
}
.captcha-container .contentContainer {
  position: relative;
  margin: 50px auto 0;
  padding: 5% 10%;
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}
.captcha-container .contentContainer .modal-overlay {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FAFAFA;
  z-index: 16;
  opacity: 1;
}
.captcha-container .contentContainer .modal-animate {
  z-index: 17;
  position: absolute;
  width: 100px;
  margin: 0 auto;
  top: 120px;
  left: 38%;
  min-height: 100px;
  overflow: hidden;
}
.captcha-container .contentContainer .rotate {
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  margin: -15px auto auto -15px;
  -webkit-animation: rotation .7s infinite linear;
  -moz-animation: rotation .7s infinite linear;
  -o-animation: rotation .7s infinite linear;
  animation: rotation .7s infinite linear;
  border-left: 8px solid rgba(0, 0, 0, 0.2);
  border-right: 8px solid rgba(0, 0, 0, 0.2);
  border-bottom: 8px solid rgba(0, 0, 0, 0.2);
  border-top: 8px solid #2180c0;
  border-radius: 100%;
}
.captcha-container .contentContainer .paypal-logo {
  margin: 0 auto;
  background: transparent url("https://www.paypalobjects.com/images/shared/monogram@2x.png") top center no-repeat;
  -webkit-background-size: 30px 37px;
  -moz-background-size: 30px 37px;
  -o-background-size: 30px 37px;
  background-size: 30px 37px;
  width: 30px;
  height: 37px;
  display: block;
  text-indent: -999em;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.captcha-container .headerText {
  text-align: center;
  margin: 0 10px 0 0;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 5px;
  font-size: 30px;
  font-weight: normal;
}
.captcha-container .headerText .notYou {
  color: #6c7378;
  font-size: 15px;
  padding-bottom: 10px;
}
.captcha-container .captcha-paypal-logo {
  margin: 0 auto 30px;
  background: transparent url("https://www.paypalobjects.com/images/shared/paypal-logo-129x32.svg") top center no-repeat;
  background-size: 129px 32px;
  width: 129px;
  height: 32px;
  display: block;
  text-indent: -999em;
}
.lower-than-ie9 .captcha-container .captcha-paypal-logo {
  background: transparent url("https://www.paypalobjects.com/images/shared/paypal-logo-129x32.png") top center no-repeat;
}
.captcha-container .captcha-image {
  height: 85px;
  width: 100%;
  text-align: center;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  margin: 0 0 5px 0;
}
.captcha-container .captcha-image img {
  width: 100%;
  height: 81px;
  border-radius: 4px;
}
.captcha-container .captcha-inputs {
  display: table;
  width: 100%;
  height: 50px;
}
.captcha-container .captcha-inputs .textInput {
  display: table-cell;
  min-width: 100px;
}
.captcha-container .captcha-inputs .refresh,
.captcha-container .captcha-inputs .audio {
  display: table-cell;
  vertical-align: middle;
  width: 36px;
}
.lower-than-ie9 .captcha-container .captcha-inputs .refresh,
.lower-than-ie9 .captcha-container .captcha-inputs .audio,
.lower-than-ie10 .captcha-container .captcha-inputs .refresh,
.lower-than-ie10 .captcha-container .captcha-inputs .audio {
  vertical-align: bottom;
}
.captcha-container .captcha-inputs .refresh {
  padding: 0 8px;
}
.captcha-container .captcha-inputs .captchaPlay,
.captcha-container .captcha-inputs .captchaRefresh {
  display: block;
  width: 36px;
  height: 36px;
}
.captcha-container .captcha-inputs .captchaPlay:after,
.captcha-container .captcha-inputs .captchaRefresh:after {
  width: 36px;
  height: 36px;
}
.captcha-container .captcha-inputs .captchaPlay:after {
  background-position: -32px -3489px;
}
.captcha-container .captcha-inputs .captchaRefresh:after {
  background-position: -33px -3389px;
}
.captcha-container .captcha-inputs .audio a {
  background-position: -32px -3489px;
}
.captcha-container .captcha-inputs .refresh a {
  background-position: -33px -3389px;
}
.captcha-container .captcha-inputs .buttonLight {
  border: 1px solid;
  border-color: #ddd #d9d9d9 #bdbdbd;
  background-color: #dedede;
  text-shadow: 0 1px #efefef;
  color: #333;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 1px #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.2);
}
.captcha-container .captcha-inputs .buttonLight:hover {
  background-color: #d1d1d1;
  text-decoration: none;
  -webkit-box-shadow: 0 1px #f5f5f5 inset, 0 1px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 1px #f5f5f5 inset, 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px #f5f5f5 inset, 0 1px rgba(255, 255, 255, 0.2);
}
.captcha-container .captcha-inputs .buttonLight:active {
  background-color: #c8c8c8;
  border-color: #c2c2c2 #bcbcbc #adadad;
  -webkit-box-shadow: 0 2px 4px #999999 inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 2px 4px #999999 inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px #999999 inset, 0 1px 0 rgba(255, 255, 255, 0.2);
}
.captcha-container .captcha-inputs .onboardingSpritePseudo:after {
  content: '';
  display: block;
  background-image: url('https://www.paypalobjects.com/webstatic/mktg/consumer/onboarding/ui-sprite.png');
  background-repeat: no-repeat;
}
.captcha-container .light,
.captcha-container .light:link,
.captcha-container .light:visited {
  border-color: #dddddd #d9d9d9 #bdbdbd;
  background-color: #dedede;
  background: -moz-linear-gradient(center bottom, #dedede 0%, #dedede 20%, #f5f5f5 100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #dedede), color-stop(20%, #dedede), color-stop(100%, #f5f5f5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(bottom, #dedede 0%, #dedede 20%, #f5f5f5 100%);
  background: -ms-linear-gradient(bottom, #dedede 0%, #dedede 20%, #f5f5f5 100%);
  background: -o-linear-gradient(bottom, #dedede 0%, #dedede 20%, #f5f5f5 100%);
  background: linear-gradient(bottom, #dedede 0%, #dedede 20%, #f5f5f5 100%);
  -webkit-box-shadow: 0 1px #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 1px #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px #ffffff inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px #efefef;
  color: #333;
}
.captcha-container .light:hover {
  background-color: #d1d1d1;
  background: -moz-linear-gradient(center bottom, #d1d1d1 0%, #d1d1d1 20%, #ebebeb 100%);
  background: -webkit-linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #ebebeb 100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #d1d1d1), color-stop(20%, #d1d1d1), color-stop(100%, #ebebeb));
  /* Chrome,Safari4+ */
  background: -ms-linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #ebebeb 100%);
  background: -o-linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #ebebeb 100%);
  background: linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #ebebeb 100%);
  -webkit-box-shadow: 0 1px #f5f5f5 inset, 0 1px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 1px #f5f5f5 inset, 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px #f5f5f5 inset, 0 1px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.captcha-container .light:active {
  background-color: #c8c8c8;
  border-color: #c2c2c2 #bcbcbc #adadad;
  background: -moz-linear-gradient(center bottom, #d1d1d1 0%, #d1d1d1 20%, #dedede 100%);
  background: -webkit-linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #dedede 100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #d1d1d1), color-stop(20%, #d1d1d1), color-stop(100%, #dedede));
  /* Chrome,Safari4+ */
  background: -ms-linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #dedede 100%);
  background: -o-linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #dedede 100%);
  background: linear-gradient(bottom, #d1d1d1 0%, #d1d1d1 20%, #dedede 100%);
  -moz-box-shadow: 0 2px 4px #999999 inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 2px 4px #999999 inset, 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px #999999 inset, 0 1px 0 rgba(255, 255, 255, 0.2);
}
.captcha-container a.button,
.captcha-container a.button:link,
.captcha-container a.button:visited,
.captcha-container .button,
.captcha-container button {
  width: 100%;
  height: 45px;
  padding-top: 4px;
  border: 0;
  display: block;
  background: #009cde;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-webkit-appearance: none;
  -ms-webkit-appearance: none;
  -o-webkit-appearance: none;
  webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  color: #ffffff;
  background: #0070A7;
  -webkit-border-radius: 5px;
  font-size: 1em;
  text-align: center;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: none;
  text-decoration: none;
  -webkit-transition: background-color 0.4s ease-out;
  -moz-transition: background-color 0.4s ease-out;
  -o-transition: background-color 0.4s ease-out;
  -ms-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out;
}
.captcha-container a.button:hover,
.captcha-container a.button:link:hover,
.captcha-container a.button:visited:hover,
.captcha-container .button:hover,
.captcha-container button:hover,
.captcha-container a.button:focus,
.captcha-container a.button:link:focus,
.captcha-container a.button:visited:focus,
.captcha-container .button:focus,
.captcha-container button:focus {
  background: #008ac5;
}
.captcha-container a.button.active,
.captcha-container a.button:link.active,
.captcha-container a.button:visited.active,
.captcha-container .button.active,
.captcha-container button.active,
.captcha-container a.button:active,
.captcha-container a.button:link:active,
.captcha-container a.button:visited:active,
.captcha-container .button:active,
.captcha-container button:active {
  background: #00598e;
}
.captcha-container a.button.secondary,
.captcha-container a.button:link.secondary,
.captcha-container a.button:visited.secondary,
.captcha-container .button.secondary,
.captcha-container button.secondary {
  background: #E1E7EB;
  color: #2C2E2F;
}
.captcha-container a.button.secondary:hover,
.captcha-container a.button:link.secondary:hover,
.captcha-container a.button:visited.secondary:hover,
.captcha-container .button.secondary:hover,
.captcha-container button.secondary:hover,
.captcha-container a.button.secondary:focus,
.captcha-container a.button:link.secondary:focus,
.captcha-container a.button:visited.secondary:focus,
.captcha-container .button.secondary:focus,
.captcha-container button.secondary:focus {
  background: #d2dbe1;
}
.captcha-container a.button,
.captcha-container a.button:link,
.captcha-container a.button:visited {
  padding-top: 14px;
}
.captcha-container button.asLink {
  display: inline;
  width: auto;
  padding: 0;
  background: none;
  color: #0079c1;
  font-weight: normal;
}
.captcha-container .fieldWrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}
.captcha-container .errorMessage {
  position: absolute;
  top: 1px;
  opacity: 0;
  z-index: 1;
  width: 100%;
  text-align: left;
  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  border-radius: 0px 0px 5px 5px;
  -webkit-transition: top 0.3s ease-out;
  -moz-transition: top 0.3s ease-out;
  -o-transition: top 0.3s ease-out;
  -ms-transition: top 0.3s ease-out;
  transition: top 0.3s ease-out;
  transition-property: max-height, opacity, top, padding-top, background;
}
.captcha-container .errorMessage.show {
  opacity: 1;
  top: 36px;
  height: auto;
  background: #fff7f7;
  border: 1px solid #e00200;
  border-top: hidden;
}
.captcha-container .errorMessage p {
  margin: 0;
  color: #2c2e2f;
}
.captcha-container .z100 {
  z-index: 100;
}
.captcha-container .textInput {
  position: relative;
  margin: 0 0 10px 0;
  /* For IE 11: the errorMessage div can be seen from under the input div, so using this to hide it */
}
.captcha-container .textInput .fieldWrapper:before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
}
.captcha-container .textInput.hasError input {
  border: 1px solid #e00200;
  background: url("https://www.paypalobjects.com/webstatic/i/consumer/onboarding/sprite_form.png") no-repeat top -409.9px right 10px;
  background-size: 25px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2) {
  .captcha-container .textInput.hasError input {
    background: url("https://www.paypalobjects.com/webstatic/i/consumer/onboarding/sprite_form_2x.png") no-repeat top -409.9px right 10px;
    background-size: 25px;
  }
}
.captcha-container .textInput.hasError input:-moz-placeholder {
  color: #c72e2e;
}
.captcha-container .textInput.hasError input::-moz-placeholder {
  color: #c72e2e;
}
.captcha-container .textInput.hasError input:-ms-input-placeholder {
  color: #c72e2e;
}
.captcha-container .textInput.hasError input::-webkit-input-placeholder {
  color: #c72e2e;
}
.captcha-container .textInput.hasError input:focus,
.captcha-container .textInput.hasError input:active {
  border: 1px solid #e00200;
}
.captcha-container .textInput.hasError input:focus:-moz-placeholder,
.captcha-container .textInput.hasError input:active:-moz-placeholder {
  color: #9b989b;
}
.captcha-container .textInput.hasError input:focus::-moz-placeholder,
.captcha-container .textInput.hasError input:active::-moz-placeholder {
  color: #9b989b;
}
.captcha-container .textInput.hasError input:focus:-ms-input-placeholder,
.captcha-container .textInput.hasError input:active:-ms-input-placeholder {
  color: #9b989b;
}
.captcha-container .textInput.hasError input:focus::-webkit-input-placeholder,
.captcha-container .textInput.hasError input:active::-webkit-input-placeholder {
  color: #9b989b;
}
.captcha-container .textInput .fieldLabel {
  width: 100%;
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  display: none;
}
.captcha-container .textInput .fieldLabel .errorMessage {
  width: inherit;
  z-index: -1;
  top: 40px;
}
.captcha-container .textInput input {
  height: 44px;
  width: 100%;
  padding: 0 10px 0 10px;
  border: 1px solid #aaaaaa;
  background: #ffffff;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #2c2e2f;
  font-size: 1em;
}
.captcha-container .textInput input:focus {
  outline: 0;
  border: 1px solid #009cde;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff;
}
.captcha-container .textInput input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.captcha-container .combinedFields .textInput {
  width: 70%;
  float: left;
}
.captcha-container .combinedFields .textInput input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.captcha-container .textInput {
  position: relative;
}
.captcha-container .textInput .inputAction {
  position: absolute;
  z-index: 2;
  color: #0070ba;
  font-size: 13px;
  top: 16px;
  right: 15px;
}
.captcha-container .textInput.hasError .inputAction {
  position: absolute;
  top: 16px;
  right: 50px;
}
.captcha-container .accessAid {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.captcha-container footer {
  display: none;
}
@media all and (max-width: 440px) {
  .captcha-container .corral {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .captcha-container .combinedFields .textInput {
    width: 65%;
  }
}
/* Landscape mobile */
@media all and (max-width: 767px) and (orientation: landscape) {
  .captcha-container .contentContainer {
    margin: 5px auto 0;
    padding: 0% 10% 1%;
  }
}
/**
 * DO NOT EDIT THIS FILE AS IT'S GENERATED CODE.
 * PLEASE NOTE: If you have specific icon needs, place them in your project's own Less file.
*/
@font-face {
  font-family: 'paypal-icons';
  src: url('https://www.paypalobjects.com/webstatic/fnt/cweb/paypal-icons_2-1-0/PayPalIcons-Regular.eot');
  src: url('https://www.paypalobjects.com/webstatic/fnt/cweb/paypal-icons_2-1-0/PayPalIcons-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://www.paypalobjects.com/webstatic/fnt/cweb/paypal-icons_2-1-0/PayPalIcons-Regular.woff') format('woff'), /* Modern Browsers */ url('https://www.paypalobjects.com/webstatic/fnt/cweb/paypal-icons_2-1-0/PayPalIcons-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('https://www.paypalobjects.com/webstatic/fnt/cweb/paypal-icons_2-1-0/PayPalIcons-Regular.svg#69ac2c9fc1e0803e59e06e93859bed03') format('svg');
  font-style: normal;
  font-weight: 400;
  
  /* IE9 Compat Modes */
  /* Legacy iOS */
}
.icon {
  font-family: 'paypal-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 0;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-small:before {
  font-size: 1.58rem;
}
.icon-medium:before {
  font-size: 2.6rem;
}
.icon-large:before {
  font-size: 7.8rem;
}
.icon-burger-small:before {
  content: "\e000";
}
.icon-slider-small:before {
  content: "\e001";
}
.icon-slider-half-small:before {
  content: "\e002";
}
.icon-close-small:before {
  content: "\e003";
}
.icon-add-small:before {
  content: "\e004";
}
.icon-arrow-down-small:before {
  content: "\e005";
}
.icon-arrow-up-small:before {
  content: "\e006";
}
.icon-arrow-left-small:before {
  content: "\e007";
}
.icon-arrow-right-small:before {
  content: "\e008";
}
.icon-arrow-down-half-small:before {
  content: "\e009";
}
.icon-arrow-up-half-small:before {
  content: "\e010";
}
.icon-arrow-left-half-small:before {
  content: "\e011";
}
.icon-arrow-right-half-small:before {
  content: "\e012";
}
.icon-clear-half-small:before {
  content: "\e013";
}
.icon-checkmark-small:before {
  content: "\e014";
}
.icon-checkmark-small-bold:before {
  content: "\e015";
}
.icon-action-arrow-half-small:before {
  content: "\e016";
}
.icon-tooltip-outline-small:before {
  content: "\e017";
}
.icon-tooltip-small:before {
  content: "\e018";
}
.icon-info-small:before {
  content: "\e019";
}
.icon-positive-small:before {
  content: "\e020";
}
.icon-attention-small:before {
  content: "\e021";
}
.icon-critical-small:before {
  content: "\e022";
}
.icon-info-large:before {
  content: "\e023";
}
.icon-positive-large:before {
  content: "\e024";
}
.icon-attention-large:before {
  content: "\e025";
}
.icon-critical-large:before {
  content: "\e026";
}
.icon-paypal-select-logo:before {
  content: "\e027";
}
.icon-select-logo:before {
  content: "\e028";
}
.icon-pp-logo:before {
  content: "\e029";
}
.icon-visa-logo:before {
  content: "\e030";
}
.icon-mastercard-logo:before {
  content: "\e031";
}
.icon-maestro-logo:before {
  content: "\e032";
}
.icon-amex-logo:before {
  content: "\e033";
}
.icon-discover-logo:before {
  content: "\e034";
}
.icon-card-half-solid:before {
  content: "\e035";
}
.icon-bank-half-solid:before {
  content: "\e036";
}
.icon-profile-large:before {
  content: "\e037";
}
.icon-profile-add-large:before {
  content: "\e038";
}
.icon-notification-small:before {
  content: "\e039";
}
.icon-settings-small:before {
  content: "\e040";
}
.icon-profile-small:before {
  content: "\e041";
}
.icon-funnel-small:before {
  content: "\e042";
}
.icon-delete-small:before {
  content: "\e043";
}
.icon-edit-small:before {
  content: "\e044";
}
.icon-lock-small:before {
  content: "\e045";
}
.icon-pdf-small:before {
  content: "\e046";
}
.icon-contact-small:before {
  content: "\e047";
}
.icon-undo-small:before {
  content: "\e048";
}
.icon-cancel-small:before {
  content: "\e049";
}
.icon-simple-list-small:before {
  content: "\e050";
}
.icon-detailed-list-small:before {
  content: "\e051";
}
.icon-print-small:before {
  content: "\e052";
}
.icon-camera-small:before {
  content: "\e053";
}
.icon-info-outline-small:before {
  content: "\e054";
}
.icon-us-dollar-outline-small:before {
  content: "\e055";
}
.icon-send-money:before {
  content: "\e500";
}
.icon-request-money:before {
  content: "\e501";
}
.icon-photo:before {
  content: "\e502";
}
.icon-gift-cards:before {
  content: "\e503";
}
.icon-credit-card:before {
  content: "\e504";
}
.icon-truck:before {
  content: "\e505";
}
.icon-email:before {
  content: "\e506";
}
.icon-email-solid:before {
  content: "\e507";
}
.icon-bank-check:before {
  content: "\e508";
}
.icon-calendar:before {
  content: "\e509";
}
.icon-holiday:before {
  content: "\e510";
}
.icon-gift:before {
  content: "\e511";
}
.icon-wallet:before {
  content: "\e512";
}
.icon-play-video:before {
  content: "\e513";
}
.icon-heart:before {
  content: "\e514";
}
.icon-shield:before {
  content: "\e515";
}
.icon-tunes:before {
  content: "\e516";
}
.icon-invoice:before {
  content: "\e517";
}
.icon-shopping-bag:before {
  content: "\e518";
}
.icon-phone:before {
  content: "\e519";
}
.icon-phone-solid:before {
  content: "\e520";
}
.icon-tag:before {
  content: "\e521";
}
.icon-delivery:before {
  content: "\e522";
}
.icon-questionmark:before {
  content: "\e523";
}
.icon-cut-coupons:before {
  content: "\e524";
}
.icon-register:before {
  content: "\e525";
}
.icon-house:before {
  content: "\e526";
}
.icon-gift-card:before {
  content: "\e527";
}
.icon-messages:before {
  content: "\e528";
}
.icon-add-money:before {
  content: "\e529";
}
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 {
  background-color: #f4f6f9;
  line-height: 1.6em;
  min-width: 320px;
  overflow-x: hidden;
}
@media screen and (min-width: 600px) {
  .pp-header {
    z-index: 0 !important;
  }
}
.pp-header--submenu-open {
  z-index: 20 !important;
}
.header-buttons > div {
  width: auto;
}
.global_nav__container {
  min-height: 5.5rem;
}
.mainHeroImageBg {
  margin: 0 auto;
  background-color: #013088;
}
.mainHeroImage {
  height: 350px;
  margin-left: auto;
  margin-right: auto;
}
div:active {
  outline: none;
}
li:active {
  outline: none;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.hasSpinner:before {
  content: "";
  left: 50%;
  top: auto;
  height: 30px;
  width: 30px;
  margin: 0px 0px 0px -15px;
  position: absolute;
  z-index: 99999;
  border-width: 8px;
  border-style: solid;
  border-color: #2180c0 rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2);
  -webkit-animation: rotation 0.7s infinite linear;
  -moz-animation: rotation 0.7s infinite linear;
  -ms-animation: rotation 0.7s infinite linear;
  animation: rotation 0.7s infinite linear;
  border-radius: 100%;
}
.hasSpinner:after {
  content: "";
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  opacity: 0.6;
  z-index: 99998;
}
.cause-charity-hero {
  background: linear-gradient(315deg, #1546a0 0%, #0070ba 100%);
  height: 230px;
}
.panel {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 10px 30px 30px 30px;
  line-height: 1.5;
}
.aboutHelp {
  line-height: 1.7;
}
.aboutHelp p {
  padding: 0;
}
.right-panel {
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  .panel {
    margin-bottom: 10px;
    margin-right: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  header.pp-header {
    padding-top: 10px;
  }
}
@media screen and (max-width: 751px) {
  .global_nav__container {
    min-height: 56px;
  }
}
.display-box {
  font-size: 18px;
  line-height: 26px;
  font-weight: normal;
  margin: 5px 10px 30px 0px;
}
.display-box h3 {
  color: #333;
  font-size: 1.5em;
}
.nonprofit-logo {
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  text-align: center;
}
.nonprofit-logo img {
  max-width: 150px;
  max-height: 150px;
}
.donate-box {
  max-width: 300px;
  padding: 25px;
}
.donate-box .btn_prim {
  outline: none;
  width: 100%;
  border-radius: 20px;
}
.px-footer-container {
  background: none !important;
}
.recieptInfo {
  color: #687173;
  margin: auto;
  margin-bottom: 30px;
  font-size: 11px;
  line-height: 1.8;
}
.innerHeroContainer {
  height: 100% !important;
  text-align: center;
  margin: 0 48px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
}
.innerHeroContainer .heroContent {
  color: white !important;
  text-align: left;
  width: 100%;
}
.innerHeroContainer .heroContent h1,
.innerHeroContainer .heroContent h3 {
  color: white !important;
}
.innerHeroContainer .heroContent h1 {
  font-size: 44px !important;
  line-height: 50px !important;
}
.innerHeroContainer .heroContent h3 {
  font-size: 18px !important;
  line-height: 25px !important;
}
.innerHeroContainer .heroContent a {
  color: white !important;
}
.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;
}
.feeStrip {
  display: table;
  height: 102px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  width: 434px;
}
.feeStrip .feeStripInner {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
}
.feeStrip .feeStripInner .donationCent {
  width: 30%;
  float: left;
  height: 54px;
  font-size: 3.75em;
  margin-top: 6px;
  line-height: 0.65;
  color: #2c2e2f;
}
.feeStrip .feeStripInner .donationPara {
  width: 68%;
  height: 50px;
  float: right;
  text-align: left;
  font-size: 15px;
  line-height: 19px;
  color: #0c0c0c;
}
.feeStrip .feeStripInner .donationPara a {
  cursor: pointer;
}
.feeStrip .feeStripInner .donationPara.donationParaLess {
  margin-top: 10px;
}
.nav_linksMobile {
  display: none;
}
.btnCustDonate {
  width: 78px;
  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;
}
.donateButtonsDiv {
  display: inline-block;
  text-align: left;
}
.amountBoxStyling {
  display: inline-block;
  float: left;
}
.npo-inputDiv {
  width: 26%;
  margin-right: 10px;
}
.npo_currencyStyling {
  display: inline-block;
  float: left;
  position: relative;
  top: -28px;
  left: 5px;
  height: 0px;
  font-size: 13px;
  line-height: 1;
  color: #2c2e2f;
}
.npo_currencyStyling.currencyIEStyling {
  top: -29px;
  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;
}
.btn.btn-small.btn-primary.btn_prim.npo_donate {
  width: 60%;
  margin: 10px 0px 15px 0px;
}
@media screen and (min-width: 410px) and (max-width: 600px) {
  .donateButtonsDiv {
    width: 80%;
  }
}
.step-text {
  text-align: justify;
  padding-top: unset;
}
.share-social {
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 48px;
}
.share-social ul {
  display: flex;
}
.clipBtn {
  border: 0;
  width: 19%;
  color: #0070ba;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 14px;
  float: right;
  height: 42px;
  position: relative;
  background-color: #eaeced;
}
.clipBtn.clipBtnMobile {
  width: 25%;
  text-align: center;
  margin: 0 auto;
}
.clipBtn:focus {
  outline: none;
}
.btn_overlay {
  width: 50%;
}
.panel {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 10px 30px 30px 30px;
  line-height: 1.5;
}
.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;
  margin: auto;
}
.npo-name {
  margin: 0px;
}
.logo-container {
  display: inline-block;
  height: 200px;
  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;
  /* white-space: nowrap; */
  /* width: 99%; */
  height: 3em;
  word-wrap: break-word;
}
.logo-container .charityName .charitytext {
  display: table-cell;
  padding: 0 20px;
  vertical-align: bottom;
  text-align: center;
}
.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%;
  /* height: 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: 24px;
}
.infoIcon {
  display: inline-block;
  cursor: pointer;
  text-decoration: none !important;
  position: relative;
  top: 6px;
}
.donateButtonsDiv {
  display: inline-block;
}
.amountBoxStyling {
  display: inline-block;
}
.donation-amount-input {
  border-radius: 5px;
  width: 110px;
  height: 45px;
  border: 1px solid #d4d9dc;
  box-shadow: none;
  padding: 0 0 0 5px;
  font-size: 16px;
}
.donation-charity-container {
  text-align: right;
}
.donation-terms-container {
  text-align: left;
  padding-left: 0px;
}
.donation-terms {
  text-align: left;
  padding-left: 50px;
  border-left: 1px solid #DBDBDB;
}
.donation-terms ul {
  list-style-type: disc;
  text-indent: -5px;
}
.donation-terms ul li {
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .donation-charity-container {
    text-align: center;
    margin-bottom: 20px;
  }
  .donation-terms {
    text-align: left;
    padding-left: 50px;
    border: none;
  }
}
.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;
}
.delayed-text {
  -webkit-animation: delay-animation 1s;
  -moz-animation: delay-animation 1s;
  -o-animation: delay-animation 1s;
  animation: delay-animation 1s;
  opacity: 1;
}
@keyframes delay-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes delay-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes delay-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.donationAmount {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate(20%, 0);
    transform: translate(20%, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
.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%;
  /* height: 100%; */
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 10px;
}
.mobileTooltip .visitNpoLink {
  font-size: 15px;
  line-height: 1.4;
  color: #0070ba;
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
.reco-border {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  background: linear-gradient(to right, #009cde, #003087);
  height: 1px;
}
.reco-container {
  width: 100%;
  height: 160px;
  text-align: center;
  background: white;
}
.reco-container .reco-inner-container {
  width: 75%;
  margin: 0 auto;
  height: 160px;
  text-align: center;
  background: #ffffff;
}
.reco-container .reco-inner-container2 {
  width: 82%;
  text-align: center;
  margin: 0 auto;
}
.reco-container .reco-title {
  display: table;
  width: 40%;
  float: left;
  height: 160px;
}
.reco-container .reco-title p {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}
.reco-container .reco-logo-outerdiv {
  width: 60%;
  height: 160px;
  display: table;
}
.reco-container .reco-logo-innerdiv {
  height: auto;
  display: table-cell;
  vertical-align: middle;
}
.reco-container .reco-logo-container {
  display: inline-block;
  position: relative;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 10px;
  float: right;
  margin-top: 10px;
}
.reco-container .reco-logo-container .reco-logo-charity:hover {
  transform: scale(1.1);
}
.reco-container .reco-logo-container .reco-avatar-div {
  margin: auto;
  position: relative;
}
.reco-container .reco-logo-container .reco-avatar-container {
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  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;
  width: 85px;
  height: 85px;
}
.reco-container .reco-logo-container .reco-avatar {
  width: 65px;
  height: 65px;
  margin: 11px;
}
.reco-container .reco-logo-container .reco-charity-name {
  width: 148px;
  line-height: 1.5em;
  display: table;
  word-wrap: break-word;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.reco-container .reco-logo-container .reco-charity-name .reco-charity-text {
  text-align: center;
  display: table-cell;
  padding: 0 20px;
  vertical-align: bottom;
  margin: 0 auto;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .recieptInfo {
    margin-left: 23px;
    margin-right: 23px;
  }
  .cause-charity-hero {
    background: linear-gradient(315deg, #1546a0 0%, #0070ba 100%);
    height: 160px;
  }
}
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  .mainHeroImage {
    height: 285px;
    width: 100%;
    margin: 0;
    max-width: 100%;
    border-radius: 0;
  }
  .mainHeroImageBg {
    max-width: 100%;
    margin: 0;
  }
  .innerHeroContainer {
    padding-bottom: 24px;
    width: auto;
    margin: 0;
  }
  .innerHeroContainer .heroContent {
    width: auto;
    font-size: 22px;
    margin-bottom: 16px;
    margin-left: 24px;
    margin-right: 24px;
  }
  .innerHeroContainer .heroContent h1 {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .innerHeroContainer .heroContent h1 a {
    color: white !important;
  }
  .innerHeroContainer .heroContent h3 {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .innerHeroContainer .heroContent h3 a {
    color: white !important;
  }
  .innerHeroContainer .searchBoxDiv {
    bottom: 0px;
  }
  .feeStrip {
    width: 90%;
  }
  .feeStrip .feeStripInner .donationCent {
    font-size: 3.3em;
    margin-top: 14px;
  }
  .feeStrip .feeStripInner .donationPara {
    width: 64%;
    line-height: 19px;
    height: 64px;
    font-size: 14px;
  }
  .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;
  }
  #myModal .modalInputDiv {
    width: 69% !important;
  }
  .btn.btn-small.btn-primary.btn_prim.npo_donate {
    width: 100%;
  }
}
@media screen and (max-device-width: 360px) and (orientation: portrait) {
  .innerHeroContainer .heroContent {
    font-size: 20px;
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
  }
  .innerHeroContainer .heroContent h1 {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .innerHeroContainer .heroContent h1 a {
    color: white !important;
  }
  .innerHeroContainer .heroContent h3 {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .innerHeroContainer .heroContent h3 a {
    color: white !important;
  }
  .feeStrip {
    width: 97%;
  }
  .feeStrip .feeStripInner .donationCent {
    font-size: 3em;
    margin-top: 13px;
    width: 34%;
  }
  .feeStrip .feeStripInner .donationPara {
    width: 65%;
  }
  .btnCustDonate {
    width: 74px;
  }
  .banner {
    font-size: 12px !important;
  }
  .btn.btn-small.btn-primary.btn_prim.npo_donate {
    width: 100%;
  }
  .donateButtonsDiv {
    margin-left: -17px;
  }
}
#myModal {
  z-index: 9999;
}
#myModal .modal-dialog .modal-content {
  background-color: white !important;
  border-radius: 10px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.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: 3000px) {
  #myModal .modal-dialog {
    width: 589px;
    height: 742px;
  }
}
.modal-backdrop.fade.in {
  background-color: black;
}
h2 .modalHead {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.1;
  color: #2c2e2f;
}
.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;
}
@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;
    float: left;
  }
  .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%;
  }
}
@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%;
  }
}
.npo-chkout-error-msg {
  height: auto;
  clear: both;
  border: solid 1px #d20000;
  border-radius: 5px;
  padding: 5px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.npo-chkout-error-msg .iconStyling {
  float: left;
}
.npo-chkout-error-msg .errStyling {
  float: right;
  width: 89%;
}
.npo-chkout-error-msg br {
  clear: both;
}
.landing-chkout-error-msg {
  display: inline-block;
}
.landing-chkout-error-msg .iconStyling {
  float: left;
  margin-top: 2px;
  margin-right: 4px;
}
.landing-chkout-error-msg .errStyling {
  margin-bottom: 0;
  float: left;
}
.landing-chkout-error-msg-mobile {
  display: inline-block;
  width: 98%;
}
.landing-chkout-error-msg-mobile .iconStylingMobile {
  float: left;
  margin-top: 2px;
  margin-right: 4px;
}
.landing-chkout-error-msg-mobile .errStylingMobile {
  margin-bottom: 0;
  float: left;
  width: 90%;
}
@media screen and (max-device-width: 320px) and (orientation: portrait) {
  .landing-chkout-error-msg-mobile .iconStylingMobile {
    margin-right: -7px;
  }
}
.invitation-container {
  background-color: white;
  text-align: center;
  padding: 48px;
  min-height: 500px;
  margin-bottom: 50px;
}
.invitation-container .invite-button {
  margin-top: 30px;
}
#page {
  background-color: white;
}
.round-logo {
  box-shadow: 0 8px 11px 0 rgba(0, 0, 0, 0.08), 0 2px 5px 0 rgba(0, 0, 0, 0.08);
  background-size: cover;
  background-position: 50%;
}
.list {
  width: 100%;
  background-color: white;
  padding: 0px 30px 0px 30px;
}
.item {
  position: relative;
  width: 100%;
  height: 100%;
  border: solid 1px #0c0c0d1a;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 16px;
}
.position-initial {
  position: initial !important;
}
.item-avatar {
  position: absolute;
  left: 10px;
}
.avatar-container {
  text-align: center;
  overflow: hidden;
  width: 145px;
  height: 145px;
  background-color: white;
}
.avatar {
  width: 100%;
  height: 100%;
  min-height: 108px;
  margin: 0;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.avatar:hover {
  cursor: pointer;
}
.item-title {
  position: absolute;
  left: 150px;
  right: 250px;
  top: 32px;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 40px;
}
.item-title a {
  color: rgba(44, 46, 47, 0.85);
  text-decoration: none;
}
.item-title a:visited {
  color: rgba(44, 46, 47, 0.85);
}
.item-title a:hover {
  color: rgba(44, 46, 47, 0.85);
}
.tapable-field,
.tapable-field:active,
.tapable-field:hover,
.tapable-field:focus {
  color: initial;
}
.item-button {
  position: absolute !important;
  border-radius: 20px !important;
  top: 75px !important;
  right: 0px !important;
  margin: 10px 0px 10px 0px;
  color: #ffffff !important;
}
.item-button a:visited {
  color: #337ab7 !important;
}
.category-badge {
  white-space: nowrap !important;
}
.category-row {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  padding-top: 4px !important;
}
.pagination-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 32px 12px 116px -12px;
}
.select-page-size {
  width: 130px;
  float: right;
}
.total-results-container {
  transform: translateY(10%);
}
.sort-by-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0px 11px 32px -11px;
  min-height: 50px;
}
.select-sort-by {
  width: 200px;
  float: right;
}
.itemCampaign {
  padding-top: 0px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
}
.hasSpinner {
  text-align: center;
  padding: 15px 0 10px 0;
  width: 200px;
  height: 60px;
  margin: auto;
}
.hasSpinner:before {
  content: "";
  left: 50%;
  top: auto;
  height: 30px;
  width: 30px;
  margin: 0px 0px 0px -15px;
  position: absolute;
  z-index: 99999;
  border-width: 8px;
  border-style: solid;
  border-color: #2180c0 rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2);
  -webkit-animation: rotation 0.7s infinite linear;
  -moz-animation: rotation 0.7s infinite linear;
  -ms-animation: rotation 0.7s infinite linear;
  animation: rotation 0.7s infinite linear;
  border-radius: 100%;
}
.hasSpinner:after {
  content: "";
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  opacity: 0.6;
  z-index: 99998;
}
.show-more-fundraisers-container {
  padding-bottom: 36px;
}
@media (max-width: 768px) {
  .round-logo {
    box-shadow: 0 8px 11px 0 rgba(0, 0, 0, 0.08), 0 2px 5px 0 rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: 50%;
  }
  .list {
    width: 100%;
    background-color: white;
    padding: 0px 10px 0px 10px;
  }
  .item {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom: solid 1px #c8c8c8;
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding: 16px;
  }
  .item-avatar {
    left: 0px;
  }
  .avatar-container {
    width: 60px;
    height: 60px;
    top: 20px;
  }
  .item-title {
    position: absolute;
    left: 70px;
    right: 0px;
    top: 5px;
    margin: 10px 0px 10px 0px;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
  }
  .item-button-mobile {
    position: absolute;
    right: 0;
    top: 25px;
    width: 90px;
    text-align: center;
    vertical-align: middle;
    line-height: 57px;
    color: initial;
    color: black !important;
    text-decoration: none;
  }
  .item-button {
    position: absolute;
    width: 80px !important;
    min-width: 70px !important;
    min-height: 30px !important;
    top: 50px !important;
    right: 0px !important;
    margin: 10px 0px 10px 0px;
    font-size: 13px !important;
  }
  .pagination-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 32px 12px 116px -12px;
    overflow-x: scroll;
    min-height: 50px;
  }
  .total-results-container {
    transform: translateY(0%);
  }
  .sort-by-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 2px 0px 14px 2px;
    min-height: 50px;
  }
  .select-sort-by {
    width: auto;
    margin-top: 32px;
  }
  .itemCampaign {
    padding-top: 14px;
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 10px;
  }
}
.npo-logo-container {
  text-align: center;
  margin-top: -75px;
}
.npo-logo-title {
  padding: 25px 0px 40px 0px;
  margin: 0px;
}
.npo-avatar-container {
  text-align: center;
  overflow: hidden;
  width: 140px;
  height: 140px;
  border-radius: 68px;
  background-color: white;
  margin: auto;
  position: relative;
}
.npo-avatar {
  max-width: 75px;
  max-height: 75px;
  margin: auto;
}
@media (max-width: 768px) {
  .npo-logo-container {
    margin-top: -50px;
  }
  .npo-logo-title {
    padding: 20px 0px 20px 0px;
  }
  .npo-avatar-container {
    width: 96px;
    height: 96px;
    border-radius: 50px;
  }
  .npo-avatar {
    max-width: 58px;
    max-height: 58px;
    margin: auto;
  }
}
.searchContainer .ppvx_text-input .ppvx_text-input__control {
  border: none;
  height: 40px;
  min-height: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.searchContainer .ppvx_text-input .ppvx_text-input__control:focus {
  box-shadow: inset 0 0 0 0.0999rem #009cde;
}
.searchContainer .ppvx_text-input .ppvx_text-input__label {
  text-align: left !important;
}
.formStyle {
  width: 100%;
  margin: auto;
  padding: 10px;
  display: table;
  height: 100%;
}
.searchContainer {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.searchContainer .innerSearchContainer {
  margin: 0 auto;
  padding-right: 1%;
  padding-left: 1%;
  display: flex;
}
.searchContainer .innerSearchContainer .searchBoxContainer {
  display: flex;
  width: 85%;
  margin-top: 7px;
  /* width: 788px; */
  height: 40px;
  border-radius: 5px;
}
.searchBox {
  width: 90% ;
  margin: 0 auto;
  float: left;
  display: inline-block;
  flex-grow: 1;
}
.searchIcon {
  display: none;
  height: 38px;
  width: 31px;
  margin-top: 1px;
}
.searchIcon .icon {
  border: none;
  outline: none;
}
.searchIcon .search-icon {
  background-color: transparent;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAFR2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMTIgMS4xNDk2MDIsIDIwMTIvMTAvMTAtMTg6MTA6MjQgICAgICAgICI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpkYW09Imh0dHA6Ly93d3cuZGF5LmNvbS9kYW0vMS4wIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczpwcmlzbT0iaHR0cDovL3ByaXNtc3RhbmRhcmQub3JnL25hbWVzcGFjZXMvYmFzaWMvMi4xLyIKICAgIHhtbG5zOlBheVBhbD0id3d3LnBheXBhbC5jb20vYmFzZS92MSIKICAgZGM6Zm9ybWF0PSJpbWFnZS9wbmciCiAgIGRjOm1vZGlmaWVkPSIyMDEzLTEwLTI4VDEyOjEwOjUyLjgyLTA3OjAwIgogICBkYW06c2l6ZT0iNDYzIgogICBkYW06UGh5c2ljYWx3aWR0aGluaW5jaGVzPSItMS4wIgogICBkYW06ZXh0cmFjdGVkPSIyMDEzLTEwLTI4VDEyOjEwOjUxLjk3Ny0wNzowMCIKICAgZGFtOnNoYTE9IjgxYjdmMWM5MWU2MDNiNDhkZWRhNjFhNmVkNGIwOWI0Mzg1M2IxZGIiCiAgIGRhbTpOdW1iZXJvZnRleHR1YWxjb21tZW50cz0iMCIKICAgZGFtOkZpbGVmb3JtYXQ9IlBORyIKICAgZGFtOlByb2dyZXNzaXZlPSJubyIKICAgZGFtOlBoeXNpY2FsaGVpZ2h0aW5kcGk9Ii0xIgogICBkYW06TUlNRXR5cGU9ImltYWdlL3BuZyIKICAgZGFtOk51bWJlcm9maW1hZ2VzPSIxIgogICBkYW06Qml0c3BlcnBpeGVsPSIzMiIKICAgZGFtOlBoeXNpY2FsaGVpZ2h0aW5pbmNoZXM9Ii0xLjAiCiAgIGRhbTpQaHlzaWNhbHdpZHRoaW5kcGk9Ii0xIgogICB0aWZmOkltYWdlTGVuZ3RoPSIyOCIKICAgdGlmZjpJbWFnZVdpZHRoPSIyOCIKICAgcHJpc206ZXhwaXJhdGlvbkRhdGU9IjIwMTgtMTEtMTJUMDE6MzAtMDg6MDAiCiAgIFBheVBhbDpzdGF0dXM9IlNvdXJjZUFwcHJvdmVkIgogICBQYXlQYWw6c291cmNlTm9kZVBhdGg9Ii9jb250ZW50L2RhbS9QYXlQYWxEaWdpdGFsQXNzZXRzL3NwYXJ0YUltYWdlcy9HbG9iYWxJbWFnZXMvbWt0Zy8yMDE0ZGVzaWduL3NlYXJjaF9nbGFzc19sYXJnZTJ4LnBuZyIKICAgUGF5UGFsOmlzU291cmNlPSJ0cnVlIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+1D5OBAAAAZZJREFUeNq11L8rhHEAx/GH5+RHiEkiAwbluM2/QCgRi8WiG00Gi8GvVUo2DKKblPWy+BEpZfDrZLhSUgy67kJxebyHG/QZvs/3eeoZXsv5fr7v+8lJJpN+XDQjUdIAJyzTH4dwgDw8cYVFNIUJqgTO4FkoYAEVYYPj+IIX0AkagwaHUYQHlUEap8jBg7pApW2wBe9yQRHraJNRDCO4g0bXbIM7MvxAv8+4BvvQJ9ntF2zGjwwn4ViowqVst/yC0zI4ghNAn+xzcE3BPRlMwQkoI3f0moLHcrgzRHBb7hg1Ba/lcGOI4Kp+B0zBczkcDxFMyR0DpuCmHJ4JGCvHq9zRbgpOyOFHxAIEx2X/5PezqEdBRiuWsRY8y3bJ5j/Nsox+MY8yw7gDt/BECq5fsBYP0PE5xlD3b9SDZXlX1J5EJQh0481wSR7f+rh9VINAHFkdq6BRDaoGbFi+mnu82EY1qFoxh0Nk8YkcbrCFQZSjyyK6C1eC4QWJyjDy6KyMIo2mUS2DiKKlmHyGEUQlJsFIojsoxYA/UaC7EdMjt6gAAAAASUVORK5CYII=');
  background-repeat: no-repeat;
  background-position: left 9px;
  background-size: 14px 14px;
  margin: 5px -16px 0 0;
  display: inline-block;
  overflow: hidden;
  text-indent: -999em;
  width: 30px;
  height: 36px;
  padding: 0;
  vertical-align: middle;
  min-width: 0;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
.selectContainer {
  display: flex;
  width: 52%;
}
.selectContainer:empty {
  display: none;
}
.selectCategory,
.searchBox {
  margin-right: 16px;
}
.selectCategory,
.selectState {
  width: 17.1%;
  height: 40px;
  display: inline-block;
  flex-grow: 1;
}
.searchBox label,
.selectCategory button,
.selectState button {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.searchbuttonContainer {
  display: inline-block;
  margin-left: 15px;
  margin-top: 15px;
}
.btnCust {
  width: 131px;
  margin-bottom: 5px !important;
  border-radius: 50px !important;
}
.btnCustModal {
  width: 66% ;
  margin-bottom: 5px !important;
  border-radius: 50px !important;
  height: 50px;
}
.btn.btn-primary.btnCust:focus {
  outline: none;
}
.btn.btn-primary.btnCustModal:focus {
  outline: none;
}
.modalbodyContent {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.modalbodyContent .searchBox.searchBoxMobileModal {
  text-align: center;
  float: none;
  border-radius: 5px;
}
.modalbodyContent .selectCategory.selectMobileModal,
.modalbodyContent .selectState.selectMobileModal {
  text-align: center;
  float: none;
  width: 90%;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.modalbodyContent .searchButtonModal {
  text-align: center;
  margin: 0 auto;
  display: block;
  float: none;
  margin-top: 30px;
}
@media screen and (min-width: 547px) and (max-width: 991px) {
  .searchContainer .innerSearchContainer .searchBoxContainer {
    width: 75%;
  }
}
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  .formStyle {
    padding: 0px;
  }
  .searchContainer .ppvx_text-input .ppvx_text-input__control {
    border: none;
    height: 55px;
  }
  .searchContainer .innerSearchContainer {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .searchContainer .innerSearchContainer .searchBoxContainer {
    border-radius: 0px;
    height: 48px;
    margin-top: 0px;
  }
  .searchContainer .innerSearchContainer .searchBoxContainer .searchBox {
    margin-top: 0px;
  }
  .searchContainer .innerSearchContainer .searchBoxContainer .searchBox .inputBox {
    height: 50px;
  }
  .searchContainer .innerSearchContainer .searchBoxContainer .searchIcon .search-icon {
    margin: 9px -15px 0 0;
  }
}
@media screen and (min-width: 100px) and (max-width: 712px) {
  .selectCategory,
  .searchBox {
    margin-right: 0px;
  }
  .searchContainer {
    margin: 0 auto;
    text-align: center;
  }
  .searchContainer .innerSearchContainer {
    padding-left: 0px;
    padding-right: 0px;
  }
  .searchBoxContainer {
    width: 100% !important;
  }
  .searchBoxContainer .searchBox {
    width: 88%;
  }
  .searchBoxContainer .searchIcon {
    display: inline-block;
  }
  .searchBoxContainer .selectContainer {
    width: 0px;
  }
  .selectCategory.changedisplay,
  .selectState.changedisplay {
    display: none;
  }
  .searchbuttonContainer {
    display: none;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .searchContainer .innerSearchContainer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .searchContainer .innerSearchContainer .searchBoxContainer {
    width: 100%;
  }
  .searchContainer .innerSearchContainer .searchBoxContainer .searchIcon {
    width: 28px;
  }
  .modalbodyContent {
    width: 100%;
  }
  .modalbodyContent .searchBox.searchBoxMobileModal {
    width: 85%;
  }
  .modalbodyContent .selectCategory.selectMobileModal,
  .modalbodyContent .selectState.selectMobileModal {
    width: 85%!important;
  }
  .searchbuttonContainer .btnCustModal {
    width: 85%!important;
  }
}
@media screen and (min-device-width: 547px) and (max-device-width: 800px) {
  .searchContainer .innerSearchContainer .searchBoxContainer {
    width: 100%;
  }
}
.selectDropdown {
  position: relative;
  z-index: 2;
  height: 41px;
}
select {
  margin: 50px;
  border: 1px solid #111;
  width: 100%;
  padding: 5px;
  font-size: 16px;
  height: 39px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: solid 1px #e9e9e9;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
select.selectMenu {
  color: rgba(255, 255, 255, 0);
  background: none;
  z-index: 2;
  width: 100%;
  height: 41px;
  position: relative;
}
select:focus {
  box-shadow: inset 0 0 0 0.0999rem #009cde !important;
  outline: none;
}
select:active {
  box-shadow: inset 0 0 0 0.0999rem #009cde !important;
  outline: none;
}
select::-ms-expand {
  /* for IE 11 */
  display: none;
}
.dropArrow {
  display: inline-block;
  float: right ;
  position: relative;
  left: 47px;
  padding-right: 52px;
  bottom: 20px;
  cursor: default;
  pointer-events: none;
}
.textViewport {
  position: absolute;
  width: 87%;
  height: 98%;
  text-align: left;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 14px;
  padding: 11px;
}
.cardCategorySelect:focus {
  outline: none;
  opacity: 0.7;
}
.cardCategoryTiles {
  width: 100%;
  height: auto;
  margin: 8px auto;
  position: relative;
  display: table;
  border-radius: 9px;
  background-size: cover;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
}
.cardCategoryTiles .cardCategoryContent {
  display: flex;
  margin-bottom: 14px;
}
.cardCategoryTiles .cardCategoryContent img {
  text-align: center;
  display: block;
  margin: 0 auto;
}
.cardCategoryTiles .cardCategoryContent .categoryName {
  height: 24px;
  margin-left: 2.2px;
  margin-right: 2.2px;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 1px #333333;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0px;
}
.cardCategoryTiles a.info {
  text-decoration: none;
  margin: 5px 5px 0 -25px;
  line-height: 16px;
  float: right;
  text-align: center;
  outline: none;
}
.cardCategoryTiles p {
  display: inline-block;
}
.cardCategoryTiles .card_form {
  overflow: visible;
  width: 100%;
  height: 150px;
  padding-left: 15px;
  padding-right: 15px;
}
.card div {
  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;
  width: 218px;
  font-size: 28px;
  line-height: 1.3;
  color: #6c7378;
  margin-left: 15px;
  margin-right: 15px;
  height: 3.8em;
}
.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);
}
@media screen and (max-width: 480px) {
  .cardCategoryTiles {
    height: 93px;
  }
  .cardCategoryTiles .cardCategoryContent .categoryName {
    font-size: 16px;
  }
}
@media screen and (min-width: 481px) and (max-width: 547px) {
  .cardCategoryTiles {
    height: 139px;
  }
}
@media screen and (min-width: 548px) and (max-width: 600px) {
  .cardCategoryTiles {
    height: 143px;
  }
}
@media screen and (min-width: 601px) and (max-width: 646px) {
  .cardCategoryTiles {
    height: 161px;
  }
}
@media screen and (min-width: 647px) and (max-width: 679px) {
  .cardCategoryTiles {
    height: 177px;
  }
}
@media screen and (min-width: 680px) and (max-width: 692px) {
  .cardCategoryTiles {
    height: 190px;
  }
}
@media screen and (max-device-width: 320px) {
  .cardCategoryTiles .cardCategoryContent .categoryName {
    font-size: 15px;
  }
}
.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;
  }
}
.containerTile {
  margin-bottom: 30px;
  margin-top: 30px;
}
.card_container {
  width: 56%;
  height: 100%;
  position: relative;
  text-align: center;
  display: inline-block;
}
.card_container .card_heading {
  margin-top: 20px;
  margin-bottom: 20px;
}
.cards {
  margin: 0 auto;
  text-align: center;
  max-width: 1380px;
  width: 100%;
  display: inline-block;
  height: 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: 480px) {
  .card_container {
    width: 75%;
  }
  .cards {
    width: 95%;
  }
  .cards.disPlayMoreLess {
    height: 750px;
    overflow: hidden;
  }
}
@media not all and (max-width: 767px) {
  .hasError .errorMessage {
    min-width: 48.6%;
    width: auto;
    float: left;
    left: 0;
  }
  .hasError .errorMessage {
    min-width: 48.6%;
    width: auto;
    float: right;
    right: 0;
  }
}
/** Hiding all the P tags inside the ErrorMessages div **/
.errorMessage p {
  display: none;
  margin: 0;
  color: black;
}
.errorMessage .help-error.error-empty.open {
  color: black;
}
/** Below Styling is the for the red error box shown when the field level error occurs **/
.hasError {
  /**Below is for the Checkbox error handling for showing the error Tool tip **/
  /** Below error is for showing up the error icon Next to the input text/textArea box **/
  /** Below is for showing up the red box and adding styles to the text inside error BOX **/
}
.hasError.checkbox .errorMessage.open {
  top: 23px;
  width: 60%;
  margin-top: -2px;
}
.hasError.textInput input,
.hasError.textInput textarea {
  border: 1px solid #c72e2e;
  background: url('https://www.paypalobjects.com/webstatic/i/consumer/onboarding/images/onboarding_form') !important;
  background-position: 98% 62%;
  background-color: white;
  color: #c72e2e;
}
.hasError.textInput input:hover,
.hasError.textInput textarea:hover,
.hasError.textInput input:focus,
.hasError.textInput textarea:focus {
  border: 1px solid #c72e2e;
}
.hasError.textInput input:focus,
.hasError.textInput textarea:focus {
  color: #000000;
}
.hasError.textInput textarea {
  background-size: 35px;
  background-position: 98% 63%;
}
@media not all and (max-width: 767px) {
  .hasError.textInput .fields.medium.right input {
    background-position: 96% 62%;
  }
}
.hasError.textInput .hasError.textInput textarea {
  border: 1px solid #c72e2e;
}
.hasError .errorMessage {
  width: 100%;
  max-height: 20em;
  box-sizing: border-box;
  top: -3px;
  position: absolute;
  display: none;
  z-index: 3;
  border: 1px solid #c72e2e;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  background: #FFF7F7;
  color: #2C2E2F;
  transition: all 0.3s ease-out;
}
.hasError .errorMessage.heroInput {
  top: 50px;
}
.hasError .errorMessage.open {
  display: block;
  z-index: 5;
}
.hasError .errorMessage p.open {
  padding: 10px;
  display: block;
  font-size: 0.8em;
}
.hasError.textArea .errorMessage.open {
  top: 110px;
}
/** help text tooltip content **/
/* ==================================
Component: PayPal-Sans.less
==================================== */
@font-face {
  font-family: "pp-sans-big-light";
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot");
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.eot?#iefix") format("embedded-opentype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.woff") format("woff"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Light.svg") format("svg");
}
@font-face {
  font-family: "pp-sans-big-medium";
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot");
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.eot?#iefix") format("embedded-opentype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.woff") format("woff"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Medium.svg") format("svg");
}
@font-face {
  font-family: "pp-sans-big-thin";
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.eot");
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.eot?#iefix") format("embedded-opentype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.woff") format("woff"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansBig-Thin.svg") format("svg");
}
@font-face {
  font-family: "pp-sans-small-light";
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.eot");
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.eot?#iefix") format("embedded-opentype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.woff") format("woff"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Light.svg") format("svg");
}
@font-face {
  font-family: "pp-sans-small-regular";
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.eot");
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.eot?#iefix") format("embedded-opentype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.woff") format("woff"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Regular.svg") format("svg");
}
@font-face {
  font-family: 'pp-sans-small-medium';
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.eot");
  src: url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.eot?#iefix") format("embedded-opentype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.woff") format("woff"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/headlinedark/festivo1.ttf") format("truetype"), url("https://www.paypalobjects.com/webstatic/mktg/2014design/font/PP-Sans/PayPalSansSmall-Medium.svg") format("svg");
}
.pp-sans-big-light {
  font-family: 'pp-sans-big-light', Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-variant: normal;
}
.pp-sans-big-medium {
  font-family: 'pp-sans-big-medium', Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-variant: normal;
}
.pp-sans-big-thin {
  font-family: 'pp-sans-big-thin', Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-variant: normal;
}
.pp-sans-small-light {
  font-family: 'pp-sans-small-light', Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-variant: normal;
}
.pp-sans-small-regular {
  font-family: 'pp-sans-small-regular', Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-variant: normal;
}
.pp-sans-small-medium {
  font-family: 'pp-sans-small-medium', Helvetica Neue, Arial, sans-serif;
  font-weight: normal;
  font-variant: normal;
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 1%;
  padding-right: 1%;
}
@media (min-width: 768px) {
  .container {
    width: 722px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 942px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1142px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 1%;
  padding-right: 1%;
}
.row {
  margin-left: -1%;
  margin-right: -1%;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 1%;
  padding-right: 1%;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: center;
  font-size: 14px;
  color: #767676;
}
.center-block .message {
  padding-top: 4px;
  padding-bottom: 14px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5em;
  color: #2c2e2f;
}
.center-block a {
  font-size: 1.14285714285714rem;
  line-height: 1.5em;
  font-weight: bold;
  color: #0070ba;
  text-decoration: none;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.errorMain {
  height: 60vh;
  width: 100%;
  background-color: #333;
}
.errortop {
  width: 100%;
  height: 72px;
  border-bottom: 1px solid white;
}
.errortop .container-fluid .header_donation_left {
  margin: 0;
}
.errorcontent {
  height: calc(60vh - 90px);
  width: 50%;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: table;
}
.errorcontent p {
  display: table-cell;
  vertical-align: middle;
}
.errorcontent .alertTitle {
  font-size: 2.875rem;
  line-height: 1.33;
}
.errorcontent .alertContent {
  font-size: 1.28rem;
}
.errorBlank {
  height: 20vh;
  bottom: 0;
  background: white;
  position: relative;
}
.errorFooter {
  bottom: 0;
  width: 100%;
}
.center-block {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: center;
  font-size: 14px;
  color: #767676;
}
.center-block .message {
  padding-top: 4px;
  padding-bottom: 14px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5em;
  color: #2c2e2f;
}
.center-block a {
  font-size: 1.14285714285714rem;
  line-height: 1.5em;
  font-weight: bold;
  color: #0070ba;
  text-decoration: none;
}
.termsMain {
  height: 60vh;
  width: 100%;
  background-color: white;
}
.termsHeader {
  width: 100%;
  height: 72px;
  background-image: linear-gradient(279deg, #1546a0, #0070ba);
  border-bottom: 1px solid black;
}
.termsHeader .container-fluid .header_donation_left {
  margin: 0;
}
.content {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 15px;
  margin-bottom: 150px;
}
.content .center {
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
}
.seetermsFooter {
  position: fixed;
}
.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 */
.round-logo {
  margin: auto;
  border-radius: 50%;
  box-shadow: 0 8px 11px 0 rgba(0, 0, 0, 0.08), 0 2px 5px 0 rgba(0, 0, 0, 0.08);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 50%;
}
.npo-gifts-do-more {
  max-width: 1024px;
  margin: 36px auto 30px auto;
}
@media screen and (max-width: 768px) {
  .npo-gifts-do-more {
    margin: 36px auto 30px auto;
    max-width: 1024px;
    width: 95%;
  }
}
.videoPlayStyle {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
}
.playPause {
  background-image: url(https://www.paypalobjects.com/images/Cause/ic_EnvrnAnml.svg);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  margin: auto;
  background-size: contain;
  background-position: center;
}
.slider.animated {
  margin-left: 0;
}
.carousel.carousel-slider {
  height: 480px !important;
}
.fullScreenVideo {
  position: fixed;
  z-index: -1000;
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
}
.fullScreenVideo.playVideo {
  z-index: 1000;
  display: block;
}
.fullScreenVideo .videoContainer {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: calc(124%);
}
.fullScreenVideo .videoContainer .videoContainerChild {
  display: table-cell;
  vertical-align: middle;
  float: none;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
.featured-slide {
  height: 480px;
  width: 100%;
}
.heroTitle {
  width: 721px;
  height: 96px;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
}
.herosubTitle {
  width: 671px;
  height: 60px;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
}
.banner {
  text-align: center;
  margin: 0 auto;
  padding: 15px;
  width: 100%;
  height: 50px;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stepsFix {
  height: 152px;
}
.loader {
  margin: auto;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #0070ba;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vx_globalFooter {
  position: relative !important;
  margin-top: 0 !important;
}
.consumer_header_shift {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .consumer_header_shift {
    margin-top: 0;
  }
}
/*  confirmation modal */
.ppvx_modal__contents {
  padding-bottom: 10px;
}
header.pp-header {
  z-index: 999 !important;
  line-height: 1.6 !important;
}
.link-override a {
  font-family: "PayPalSansBig-Medium", Helvetica Neue, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: normal;
}
