[tor-commits] [donate/master] Result of squashed commits:

peterh at torproject.org peterh at torproject.org
Mon Dec 31 18:59:48 UTC 2018


commit a9be6e9359586774ecbcc24edae7760ce90cb86a
Author: Stephanie Kirtiadi <skirtiadi at giantrabbit.com>
Date:   Tue Dec 18 16:27:13 2018 -0800

    Result of squashed commits:
    
    Apply 60USD Shirt promo for Dec 2018.
    Steven of Tor would like a 60USD promo for tor ($15 off) that can
    be easily switched on the server site so that / will land to the
    promo version of the page. He also wants easy switch back to the
    old page.
    Make $15OFF red label grey when perk is disabled.
    Relabel the promo price to make clear it's $15 off of $75, not of $60.
    Stephanie of Tor pointed this out in a new comp.
    Adjust .pot file accordingly.
    
    Implement automated switch for the Dec 2018 promo:
    The automation mechanism depends on the time. Promo starts on
    Dec 26 midnight Eastern Time, ends on Dec 29 end of day Eastern
    Time.
    
    Allow prod and nonprod environment for promo viewing on /H on
    non prod environment before and after the promo time window.
    
    Issue #37989
    Issue #38038
---
 public/css/style.css            |   56 ++
 public/js/payment_controller.js |   40 +-
 public/maps/style.css.map       |    2 +-
 sass/components/_donate.scss    |   53 +-
 src/DonateController.php        |   24 +-
 src/js/payment_controller.js    |   40 +-
 src/routes.php                  |    6 +
 templates/h.twig                |  292 +++++++
 translation/out/messages.pot    | 1702 +++++++++++++++++++++------------------
 9 files changed, 1395 insertions(+), 820 deletions(-)

diff --git a/public/css/style.css b/public/css/style.css
index e6a17880..7e99c3e7 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -1325,6 +1325,26 @@ div {
   }
 }
 
+.donation-selection-area .donate-buttons a.price-btn.promo {
+  position: relative;
+}
+
+.donation-selection-area .donate-buttons a.price-btn.promo::before {
+  position: absolute;
+  display: block;
+  background-color: #68b030;
+  color: #fff;
+  content: 'LIMITED OFFER';
+  width: 80px;
+  height: 20px;
+  font-size: 12px;
+  top: -9px;
+  left: 13px;
+  padding: 0px 8px;
+  border-radius: 16px;
+  font-weight: 300;
+}
+
 .donation-selection-area .donate-buttons a.selected {
   background-color: #68b030;
 }
@@ -1459,7 +1479,16 @@ div {
   font-style: italic;
 }
 
+.donation-selection-area .perks .perk.disabled .promo-red-dot {
+  background-color: #aeaeae;
+}
+
+.donation-selection-area .perks .perk.disabled .promo-price {
+  color: #aeaeae;
+}
+
 .donation-selection-area .perks .perk .slides {
+  position: relative;
   -ms-flex-item-align: center;
       align-self: center;
   display: none;
@@ -1491,6 +1520,19 @@ div {
   }
 }
 
+.donation-selection-area .perks .perk .promo-red-dot {
+  position: absolute;
+  background: red;
+  top: 45px;
+  right: 15px;
+  color: #fff;
+  padding: 10px 20px;
+  font-size: 28px;
+  line-height: 31px;
+  font-weight: bold;
+  border-radius: 40px;
+}
+
 .donation-selection-area .perks .perk .price-tag-group {
   margin: 20px 0 20px 20px;
   font-size: 21px;
@@ -1508,6 +1550,20 @@ div {
   }
 }
 
+.donation-selection-area .perks .perk .promo-strike-through {
+  text-decoration: line-through;
+}
+
+.donation-selection-area .perks .perk .promo-price {
+  color: #59316B;
+  font-weight: 700;
+}
+
+.donation-selection-area .perks .perk .promo-price.large {
+  font-size: 22px;
+  font-weight: 600;
+}
+
 .donation-selection-area .perks .perk .perk-label {
   font-size: 21px;
   font-weight: 700;
diff --git a/public/js/payment_controller.js b/public/js/payment_controller.js
index 9989e9e2..a302fc15 100644
--- a/public/js/payment_controller.js
+++ b/public/js/payment_controller.js
@@ -11221,7 +11221,7 @@ function PerkInfo(id, fieldIds, helpText, friendlyName, friendlyName2) {
   this.friendlyName2 = friendlyName2;
 }
 
-function PaymentController(paypalMerchantId, environmentName, stripePublishableKey) {
+function PaymentController(paypalMerchantId, environmentName, stripePublishableKey, promo = false) {
   this.country = 'US';
   this.priceSetName = 'once';
   this.amount = 7500;
@@ -11236,6 +11236,7 @@ function PaymentController(paypalMerchantId, environmentName, stripePublishableK
     'credit_card': '.credit-card-form-wrapper,#donate-submit-button',
     'paypal': '#paypal-container,#paypal-button-area',
   };
+  this.promo = promo;
   this.perkInfoMap = {
     't-shirt': new PerkInfo('t-shirt', ['perk-style-1', 'perk-fit-1', 'perk-size-1'], t('t-t-shirt__help-text'), t('t-t-shirt__friendly-name')),
     't-shirt-pack': new PerkInfo('t-shirt-pack', ['perk-style-1', 'perk-fit-1', 'perk-size-1', 'perk-fit-2', 'perk-size-2'], t('t-t-shirt-pack__help-text'), t('t-t-shirt-pack__friendly-name'), t('t-t-shirt-pack-2__friendly-name')),
@@ -11349,6 +11350,7 @@ function PaymentController(paypalMerchantId, environmentName, stripePublishableK
 
 PaymentController.prototype.init = function() {
   this.setupCampaignTotals();
+  this.setInitialPromoAdjustments();
   this.setPriceSet();
   this.setRecurring();
   this.setCurrentPrice();
@@ -11497,6 +11499,7 @@ PaymentController.prototype.monthlyButtonClicked = function(event) {
   this.setPriceSet();
   this.setCurrentPrice();
   this.setCurrentPerk();
+  this.setLimitedOfferLabelOnPriceLabel();
 }
 
 PaymentController.prototype.noPerkCheckboxClicked = function(event) {
@@ -11518,6 +11521,7 @@ PaymentController.prototype.onceButtonClicked = function(event) {
   this.setCurrentPrice();
   this.setRecurring();
   this.setCurrentPerk();
+  this.setLimitedOfferLabelOnPriceLabel();
 }
 
 PaymentController.prototype.onFormSubmit = function(event) {
@@ -11842,6 +11846,30 @@ PaymentController.prototype.setPriceSet = function() {
   });
 }
 
+PaymentController.prototype.setInitialPromoAdjustments = function() {
+  this.adjustPriceSetDueToPromo();
+  this.setDefaultOnceAmount();
+}
+
+PaymentController.prototype.setDefaultOnceAmount = function() {
+  if (this.promo) {
+    this.amount = 6000;
+  }
+}
+
+PaymentController.prototype.adjustPriceSetDueToPromo = function() {
+  if (this.promo) {
+    this.priceSets['once'] = [
+      [1000, undefined],
+      [2500, 'stickers'],
+      [6000, 't-shirt'],
+      [12500, 't-shirt-pack'],
+      [25000, 't-shirt-pack'],
+      [50000, 'sweatshirt'],
+    ];
+  }
+}
+
 PaymentController.prototype.setRequiredFields = function() {
   $('.field').removeClass('required');
   var requiredFields = this.getRequiredFields();
@@ -11862,6 +11890,16 @@ PaymentController.prototype.setRecurring = function() {
   inactiveButton.removeClass('selected');
 }
 
+PaymentController.prototype.setLimitedOfferLabelOnPriceLabel = function() {
+  if (this.recurring()) {
+    $('a[data-perk="t-shirt"]').removeClass('promo');
+  } else {
+    if (this.promo) {
+      $('a[data-perk="t-shirt"]').addClass('promo');
+    }
+  }
+}
+
 PaymentController.prototype.setupCountries = function() {
   var countrySelect = $('#country');
   countrySelect.html('');
diff --git a/public/maps/style.css.map b/public/maps/style.css.map
index f13c14f4..e4889003 100644
--- a/public/maps/style.css.map
+++ b/public/maps/style.css.map
@@ -1 +1 @@
-{"version":3,"sources":["../node_modules/node-normalize-scss/_normalize.scss","style.css","base/_defaults.scss","base/_variables.scss","base/_typography.scss","../node_modules/breakpoint-sass/stylesheets/_breakpoint.scss","base/_fields.scss","base/_buttons.scss","layouts/_html.scss","layouts/_header.scss","layouts/_content.scss","layouts/_footer.scss","components/_donate.scss","components/_dialog.scss","components/_donor-faq.scss","components/_errors.scss","components/_hepdata.scss","components/_privacy-policy.scss","components/_subscribe.scss","components/_thank-you.scss"],"names":[],"mappings":"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","file":"../sass/style.css","sourcesContent":["/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n   ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n *    IE on Windows Phone and in iOS.\n */\n\nhtml {\n  line-height: 1.15; /* 1 */\n  -ms-text-size-adjust: 100%; /* 2 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n  display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, 
 Firefox, and Safari.\n */\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/* Grouping content\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\n\nfigcaption,\nfigure,\nmain { /* 1 */\n  display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\n\nfigure {\n  margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n  box-sizing: content-box; /* 1 */\n  height: 0; /* 1 */\n  overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n   ========================================================================== */\n\n/**\n * 1. Remove the gray background on act
 ive links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\n\na {\n  background-color: transparent; /* 1 */\n  -webkit-text-decoration-skip: objects; /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n  border-bottom: none; /* 1 */\n  text-decoration: underline; /* 2 */\n  text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\n\nb,\nstrong {\n  font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the corr
 ect font style in Android 4.3-.\n */\n\ndfn {\n  font-style: italic;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\n\nmark {\n  background-color: #ff0;\n  color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n  font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\nsup {\n  top: -0.5em;\n}\n\n/* Embedded content\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n  border-style: none;\n}\n\n/**\n * Hide the overf
 low in IE.\n */\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n/* Forms\n   ========================================================================== */\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n  overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n  text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n *    controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\nhtml [type=\"button\"], /* 1 */\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::
 -moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *    `fieldset` elements in all browsers.\n */\n\nlegend {\n  box-sizing: border-box; /* 1 */\n  color: inherit; /* 2 */\n  display: table; /* 1 */\n  max-width: 100%; /* 1 */\n  padding: 0; /* 3 */\n  white-space: normal; /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n  disp
 lay: inline-block; /* 1 */\n  vertical-align: baseline; /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\n\ntextarea {\n  overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n  box-sizing: border-box; /* 1 */\n  padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: non
 e;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/* Interactive\n   ========================================================================== */\n\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\n\ndetails, /* 1 */\nmenu {\n  display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n  display: list-item;\n}\n\n/* Scripting\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\ncanvas {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\n\ntemplate {\n  display: none;\n}\n\n/* Hidden\n   ========================================================================== */\n\n/**\n * Add the correct displa
 y in IE 10-.\n */\n\n[hidden] {\n  display: none;\n}\n","/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n/* Document\n   ========================================================================== */\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n *    IE on Windows Phone and in iOS.\n */\nhtml {\n  line-height: 1.15;\n  /* 1 */\n  -ms-text-size-adjust: 100%;\n  /* 2 */\n  -webkit-text-size-adjust: 100%;\n  /* 2 */\n}\n\n/* Sections\n   ========================================================================== */\n/**\n * Add the correct display in IE 9-.\n */\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n  display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/* Grouping content\n   ================================
 ========================================== */\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\nfigcaption,\nfigure,\nmain {\n  /* 1 */\n  display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\nfigure {\n  margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\nhr {\n  box-sizing: content-box;\n  /* 1 */\n  height: 0;\n  /* 1 */\n  overflow: visible;\n  /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\npre {\n  font-family: monospace, monospace;\n  /* 1 */\n  font-size: 1em;\n  /* 2 */\n}\n\n/* Text-level semantics\n   ========================================================================== */\n/**\n * 1. Remove the gray background on active links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\na {\n  background-color: transparent;\n  
 /* 1 */\n  -webkit-text-decoration-skip: objects;\n  /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\nabbr[title] {\n  border-bottom: none;\n  /* 1 */\n  text-decoration: underline;\n  /* 2 */\n  text-decoration: underline dotted;\n  /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\nb,\nstrong {\n  font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\nb,\nstrong {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\ncode,\nkbd,\nsamp {\n  font-family: monospace, monospace;\n  /* 1 */\n  font-size: 1em;\n  /* 2 */\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\ndfn {\n  font-style: italic;\n}\n\n/**\n * Add the correct background and color i
 n IE 9-.\n */\nmark {\n  background-color: #ff0;\n  color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\nsmall {\n  font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\nsup {\n  top: -0.5em;\n}\n\n/* Embedded content\n   ========================================================================== */\n/**\n * Add the correct display in IE 9-.\n */\naudio,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\nimg {\n  border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n/* Forms\n   =============================================================
 ============= */\n/**\n * Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n  /* 1 */\n  overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n  /* 1 */\n  text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n *    controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button;\n  /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  border-style:
  none;\n  padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *    `fieldset` elements in all browsers.\n */\nlegend {\n  box-sizing: border-box;\n  /* 1 */\n  color: inherit;\n  /* 2 */\n  display: table;\n  /* 1 */\n  max-width: 100%;\n  /* 1 */\n  padding: 0;\n  /* 3 */\n  white-space: normal;\n  /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n  display: inline-block;\n  /* 1 */\n  vertical-align: baseline;\n  /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\nt
 extarea {\n  overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n  box-sizing: border-box;\n  /* 1 */\n  padding: 0;\n  /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n  -webkit-appearance: textfield;\n  /* 1 */\n  outline-offset: -2px;\n  /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit`
  in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button;\n  /* 1 */\n  font: inherit;\n  /* 2 */\n}\n\n/* Interactive\n   ========================================================================== */\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\ndetails,\nmenu {\n  display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\nsummary {\n  display: list-item;\n}\n\n/* Scripting\n   ========================================================================== */\n/**\n * Add the correct display in IE 9-.\n */\ncanvas {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\ntemplate {\n  display: none;\n}\n\n/* Hidden\n   ========================================================================== */\n/**\n * Add the correct display in IE 10-.\n */\n[hidden] {\n  display: none;\n}\n\nhr {\n  border-top: 1px solid #68b030;\n  margin: 40px auto;\n  max-width: 106px;\n}\n\nhtml
 ,\nbody,\ninput,\ntextarea {\n  color: #484848;\n  font-family: \"Source Sans Pro\", sans-serif;\n  font-size: 16px;\n  line-height: 20px;\n  font-weight: 300;\n}\n\nh1 {\n  font-size: 47px;\n  letter-spacing: 2px;\n  line-height: 50px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: capitalize;\n}\n\n at media (min-width: 767px) {\n  h1 {\n    font-size: 50px;\n    line-height: 60px;\n  }\n}\n\n at media (min-width: 991px) {\n  h1 {\n    font-size: 55px;\n  }\n}\n\nh2 {\n  font-size: 25px;\n  font-weight: 700;\n  line-height: 1;\n  margin-bottom: 1%;\n  margin-top: 0;\n}\n\n at media (min-width: 767px) {\n  h2 {\n    font-size: 34px;\n  }\n}\n\nh3 {\n  font-size: 27px;\n  font-weight: 700;\n  text-transform: uppercase;\n  margin-bottom: 1%;\n  margin-top: 0;\n}\n\nh4 {\n  font-size: 27px;\n  font-weight: 400;\n  letter-spacing: 0px;\n  line-height: normal;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: uppercase;\n}\n\nh5 {\n  font-size: 21px;\n  font-weight: 300;\n  
 line-height: 28px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  letter-spacing: 0.09px;\n}\n\n at media (min-width: 991px) {\n  h5 {\n    font-size: 22px;\n  }\n}\n\na {\n  color: #7D4698;\n  font-weight: 700;\n  text-decoration: none;\n}\n\na:hover {\n  color: #68b030;\n}\n\nb {\n  font-weight: 700;\n}\n\n.bold {\n  font-weight: 700;\n}\n\n.green {\n  color: #68b030;\n}\n\n.light {\n  font-weight: 200;\n}\n\n.email {\n  font-weight: 700;\n}\n\n.small {\n  font-size: 14px;\n}\n\n.strong {\n  color: #7D4698;\n  font-weight: 700;\n}\n\n.tiny {\n  font-size: 12px;\n}\n\n.background-grey {\n  color: #F1F1F3;\n  font-size: 80px;\n  font-weight: bold;\n}\n\ninput[type=\"checkbox\"] {\n  margin-top: auto;\n  margin-bottom: auto;\n  margin-right: 4px;\n}\n\ninput[type=\"text\"],\ntextarea {\n  border: 1px solid #848282;\n  color: #484848;\n  font-size: 16px;\n  height: 27px;\n  margin: 9px;\n  padding: 8px 12px;\n}\n\ninput[type=\"text\"].required,\ntextarea.required {\n  border-color: #68b030;\
 n}\n\ninput[type=\"text\"].error,\ntextarea.error {\n  border-color: red;\n}\n\ninput[type=\"text\"]::placeholder,\ntextarea::placeholder {\n  color: #aeaeae;\n}\n\ninput[type=\"text\"]:focus,\ntextarea:focus {\n  border-color: #59316B;\n  color: #7D4698;\n  outline: none;\n}\n\ntextarea {\n  box-sizing: border-box;\n  width: 60%;\n  height: 3em;\n  display: block;\n  padding: 8px 12px;\n}\n\nselect {\n  background: #fff;\n  border: 1px solid #848282;\n  color: #484848;\n  font-size: 16px;\n  height: 45px;\n  margin: 9px;\n  padding: 8px 12px;\n}\n\nselect.required {\n  border-color: #68b030;\n  color: #484848;\n}\n\nselect.error {\n  border-color: red;\n}\n\nselect:focus {\n  border-color: #59316B;\n  color: #7D4698;\n  outline: none;\n}\n\n.field-row {\n  align-items: center;\n  box-sizing: border-box;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .field-row {\n    flex-wrap: nowrap;\n  }\n}\n\n.required {\n  col
 or: #68b030;\n}\n\n.button {\n  background-color: #fff;\n  border: 1px solid #848282;\n  border-radius: 5px;\n  color: #484848;\n  display: inline-block;\n  font-size: 20px;\n  font-weight: normal;\n  margin: 7px;\n  padding: 14px 10px;\n  text-transform: uppercase;\n  width: 90%;\n}\n\n.button.purple {\n  background-color: #7D4698;\n  color: #fff;\n}\n\n.button.purple:hover {\n  background-color: #59316B;\n}\n\n.button:hover {\n  background-color: #68b030;\n  color: #fff;\n  cursor: pointer;\n}\n\n.button.selected {\n  background-color: #68b030;\n  color: #fff;\n  cursor: default;\n}\n\n at media (min-width: 479px) {\n  .button {\n    width: auto;\n  }\n}\n\na.button {\n  font-size: 16px;\n  font-weight: normal;\n  padding: 14px 10px;\n  text-decoration: none;\n}\n\n at media (min-width: 767px) {\n  a.button {\n    font-size: 20px;\n    width: auto;\n  }\n}\n\nbody {\n  margin: 0;\n}\n\ndiv {\n  box-sizing: border-box;\n}\n\n.header {\n  background-color: #59316B;\n  color: #fff;\n  widt
 h: 100%;\n  padding: 50px 50px 50px 10%;\n}\n\n at media (min-width: 767px) {\n  .header {\n    padding-right: 0px;\n    padding-bottom: 0px;\n  }\n}\n\n.header h1 {\n  margin-bottom: 30px;\n  font-size: 36px;\n  font-weight: 300;\n  line-height: 40px;\n}\n\n at media (min-width: 767px) {\n  .header h1 {\n    font-size: 40px;\n    line-height: 40px;\n  }\n}\n\n at media (min-width: 991px) {\n  .header h1 {\n    font-size: 60px;\n    line-height: 60px;\n  }\n}\n\n.header h4 {\n  text-transform: none;\n  font-size: 14px;\n  line-height: 14px;\n  font-weight: 400;\n}\n\n at media (min-width: 767px) {\n  .header h4 {\n    font-size: 16px;\n    line-height: 18px;\n  }\n}\n\n at media (min-width: 991px) {\n  .header h4 {\n    font-size: 20px;\n    line-height: 25px;\n  }\n}\n\n.header .content-wrapper {\n  width: 100%;\n}\n\n.header .content-wrapper .header-content {\n  display: flex;\n  align-items: flex-end;\n}\n\n.header .content-wrapper .header-content .left-column {\n  display: block;\n}\n\n at media 
 (min-width: 767px) {\n  .header .content-wrapper .header-content .left-column {\n    margin-right: 2%;\n    flex: 1 1 40%;\n    margin-bottom: 60px;\n    margin-right: 45%;\n  }\n}\n\n.header .tor-campaign-logo {\n  flex: 1 1 58%;\n  max-width: 750px;\n  display: none;\n  position: relative;\n}\n\n at media (min-width: 991px) {\n  .header .tor-campaign-logo {\n    display: block;\n  }\n}\n\n.header .tor-campaign-logo img {\n  width: 100%;\n  height: auto;\n  position: absolute;\n  bottom: 0px;\n  right: 0px;\n}\n\n.header .logo {\n  width: 81px;\n}\n\n.header .nav-bar {\n  margin-bottom: 30px;\n}\n\n at media (min-width: 767px) {\n  .header .nav-bar {\n    margin-bottom: 80px;\n  }\n}\n\n.content {\n  margin: 0 0 0 0;\n  padding: 0 0 0 0;\n}\n\n.content .fixed-width {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n at media (min-width: 767px) {\n  .content .fixed-width {\n    max-width: 728px;\n  }\n}\n\n at media (min-width: 991px) {\n  .content .fixed-width {\n    max-width: 940px;\n  }\n
 }\n\n.footer-container {\n  display: flex;\n  flex-direction: column;\n  flex-wrap: wrap;\n  justify-content: space-around;\n  background-color: #59316B;\n  color: #fff;\n  padding: 70px 30px 30px 30px;\n}\n\n.footer-container a {\n  color: #fff;\n}\n\n at media (min-width: 767px) {\n  .footer-container {\n    padding-top: 100px;\n  }\n}\n\n.footer-container .footer-content {\n  display: flex;\n  width: 100%;\n  max-width: 900px;\n  margin: 0 auto 30px auto;\n  flex-wrap: wrap;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-content {\n    flex-wrap: nowrap;\n  }\n}\n\n.footer-container .footer-content-left {\n  flex: 1 1 100%;\n  margin-bottom: 70px;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-content-left {\n    flex: 1 1 60%;\n    margin-right: 150px;\n    margin-bottom: 0px;\n  }\n}\n\n.footer-container .footer-content-right {\n  display: flex;\n  flex: 1 1 100%;\n  align-items: center;\n  flex-direction: column;\n}\n\n at media (min-width: 767px) {\n
   .footer-container .footer-content-right {\n    align-items: inherit;\n    flex: 1 1 auto;\n  }\n}\n\n.footer-container .footer-description {\n  margin-bottom: 70px;\n  font-size: 20px;\n  line-height: 24px;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-description {\n    margin-bottom: 100px;\n  }\n}\n\n.footer-container .footer-subscribe {\n  font-size: 17px;\n  line-height: 20px;\n}\n\n.footer-container .footer-subscribe .footer-subscribe-header {\n  margin-bottom: 5px;\n  font-weight: 600;\n  text-transform: uppercase;\n  color: rgba(255, 255, 255, 0.4);\n}\n\n.footer-container .footer-subscribe .footer-sign-up {\n  display: inline-block;\n  padding: 15px 30px;\n  border-radius: 4px;\n  border: 1px solid #fff;\n  font-weight: 700;\n  text-transform: uppercase;\n  margin-top: 15px;\n}\n\n.footer-container .footer-subscribe .footer-sign-up:hover {\n  background-color: #7D4698;\n}\n\n.footer-container .footer-menu {\n  display: flex;\n  flex-direction: row;\n  wid
 th: 100%;\n  margin-bottom: 70px;\n  justify-content: space-evenly;\n}\n\n.footer-container .footer-menu a {\n  display: block;\n  font-weight: 300;\n  line-height: 30px;\n}\n\n.footer-container .footer-menu a:hover {\n  color: #aeaeae;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-menu {\n    margin-bottom: 200px;\n    flex-direction: column;\n  }\n}\n\n.footer-container .footer-social {\n  display: flex;\n  flex-wrap: wrap;\n  width: 100%;\n  justify-content: center;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-social {\n    width: 155px;\n    justify-content: inherit;\n  }\n}\n\n.footer-container .footer-social a {\n  display: block;\n  text-indent: -999em;\n  background-size: cover;\n  background-repeat: no-repeat;\n  width: 20px;\n  height: 20px;\n  margin-right: 30px;\n}\n\n.footer-container .footer-social a.facebook, .footer-container .footer-social a.mastodon, .footer-container .footer-social a.twitter {\n  margin-bottom: 20px;\n}\n\n.foote
 r-container .footer-social a.facebook {\n  background-image: url(\"/images/facebook.svg\");\n}\n\n.footer-container .footer-social a.mastodon {\n  background-image: url(\"/images/mastodon.svg\");\n}\n\n.footer-container .footer-social a.twitter {\n  width: 24px;\n  background-image: url(\"/images/twitter.svg\");\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-social a.twitter {\n    margin-right: 0px;\n  }\n}\n\n.footer-container .footer-social a.instagram {\n  background-image: url(\"/images/instagram.svg\");\n}\n\n.footer-container .footer-social a.linkedin {\n  background-image: url(\"/images/linkedin.svg\");\n}\n\n.footer-container .footer-social a.github {\n  background-image: url(\"/images/github.svg\");\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-social a.github {\n    margin-right: 0px;\n  }\n}\n\n.gr-stamp-container {\n  display: block;\n  text-align: center;\n}\n\n.gr-stamp-container a:hover {\n  color: #68b030;\n}\n\n at media (min-width: 76
 7px) {\n  .front .header {\n    background-image: url(\"../images/tor-header-campaign-2018.svg\");\n    background-position: bottom right;\n    background-repeat: no-repeat;\n    background-size: 40%;\n  }\n  .front .header h4 {\n    padding-right: 10%;\n  }\n}\n\n.campaign-totals-area {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: center;\n}\n\n.campaign-totals-area .characters {\n  display: flex;\n  justify-content: center;\n  line-height: normal;\n  margin: 10px 30px;\n}\n\n.campaign-totals-area .characters .character {\n  position: relative;\n}\n\n.campaign-totals-area .characters .character .cover {\n  background: #68b030;\n  bottom: 0;\n  left: 0;\n  position: absolute;\n  visibility: hidden;\n  right: 0;\n  top: 0;\n  z-index: 1;\n}\n\n.campaign-totals-area .characters .character.covered .cover {\n  visibility: visible;\n}\n\n.campaign-totals-area .characters .character.resolved {\n  color: #68b030;\n}\n\n.campaign-totals-area .label {\n  font-size: 27px;\n  text
 -align: center;\n}\n\n.donate-options {\n  display: flex;\n  justify-content: center;\n  margin: 30px auto 2%;\n  width: 92vw;\n}\n\n.donate-options a {\n  background-color: #fff;\n  border: 2px solid #aeaeae;\n  color: #aeaeae;\n  font-weight: normal;\n  display: block;\n  text-align: center;\n  text-decoration: none;\n  text-transform: uppercase;\n}\n\n.donate-options a.once-button {\n  border-radius: 5px 0 0 5px;\n  margin-right: 0;\n  padding-left: 15px;\n  padding-right: 15px;\n  width: 150px;\n}\n\n.donate-options a.monthly-button {\n  border-left: 0;\n  border-radius: 0 5px 5px 0;\n  margin-left: 0;\n  padding-left: 15px;\n  padding-right: 15px;\n  width: 160px;\n}\n\n.donate-options a.selected, .donate-options a:hover {\n  background-color: #68b030;\n  color: #fff;\n}\n\n.payment-other-div {\n  text-align: center;\n  margin-bottom: 20px;\n}\n\n.perk-intro {\n  display: flex;\n  flex-wrap: wrap;\n  margin: 2% 5% 2% 5%;\n  justify-content: center;\n  text-align: center;\n}\n\n
 .perk-intro .perk-title {\n  font-size: 22px;\n  margin-bottom: 0px;\n}\n\n.price-change-warning {\n  color: red;\n}\n\n#donationForm {\n  margin: 0 auto 40px auto;\n  max-width: 1024px;\n}\n\n.donation-selection-area {\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  margin: auto 2% auto 2%;\n  max-width: 1024px;\n  justify-content: center;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area {\n    flex-direction: row;\n  }\n}\n\n.donation-selection-area .donate-buttons {\n  align-items: center;\n  align-self: center;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  justify-content: center;\n  margin: 5px;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .donate-buttons {\n    flex-direction: row;\n    margin-right: 5px;\n  }\n}\n\n.donation-selection-area .donate-buttons a.price-btn {\n  background-color: #59316B;\n  border-radius: 5px;\n  color: #fff;\n  display: block;\n  font-size: 23px;\n  font-weight: normal;\n  margin: 5
 px;\n  padding: 20px 0px;\n  text-align: center;\n  text-decoration: none;\n  width: 120px;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .donate-buttons a.price-btn {\n    font-size: 29px;\n  }\n}\n\n.donation-selection-area .donate-buttons a.selected {\n  background-color: #68b030;\n}\n\n.donation-selection-area .donate-buttons .other-amount-field {\n  align-items: center;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n}\n\n.donation-selection-area .donate-buttons .other-amount-field .error {\n  color: red;\n  display: block;\n  text-align: center;\n}\n\n.donation-selection-area .donate-buttons .other-amount-field .perk-amt {\n  background-color: #f1f1f3;\n  font-size: 23px;\n  font-weight: bold;\n  height: 42px;\n  margin: 5px;\n  min-width: 80px;\n  text-transform: capitalize;\n  text-align: center;\n  width: 94px;\n}\n\n.donation-selection-area .no-perk-area {\n  margin: 1% 1% 20px 1%;\n  width: 100%;\n  text-align: center;\n}\n\n.dona
 tion-selection-area label[for=\"no-perk-checkbox\"] {\n  font-size: 20px;\n  line-height: 24px;\n}\n\n.donation-selection-area .perks {\n  align-self: center;\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n  margin-top: 20px;\n  position: relative;\n  z-index: 2;\n  justify-content: space-evenly;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks {\n    border: none;\n    flex-direction: row;\n  }\n}\n\n.donation-selection-area .perks .perk {\n  border-color: #aeaeae;\n  border-style: solid;\n  border-width: 0px 1px 1px 1px;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n\n.donation-selection-area .perks .perk:first-child {\n  border-top-width: 1px;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk {\n    border: 1px solid #aeaeae;\n    flex-direction: column;\n    justify-content: flex-start;\n    margin: 0px 5px 20px 5px;\n    position: relative;\n    width: 30%;\n    to
 p: 0px;\n    flex-wrap: nowrap;\n  }\n}\n\n.donation-selection-area .perks .perk.disabled {\n  border-color: #F8F9FA;\n  color: #aeaeae;\n  font-style: italic;\n}\n\n.donation-selection-area .perks .perk.disabled img {\n  opacity: 0.2;\n}\n\n.donation-selection-area .perks .perk.disabled select {\n  color: #aeaeae;\n  font-style: italic;\n}\n\n.donation-selection-area .perks .perk .slides {\n  align-self: center;\n  display: none;\n  height: 175px;\n  overflow: hidden;\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .slides {\n    display: block;\n    order: 2;\n  }\n}\n\n.donation-selection-area .perks .perk img {\n  display: block;\n  margin: 0 auto;\n  max-width: 50%;\n  height: auto;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk img {\n    width: 85%;\n    max-width: none;\n  }\n}\n\n.donation-selection-area .perks .perk .price-tag-group {\n  margin: 20px 0 20px 20px;\n  font-size: 21px;\n  font-weight: 600;
 \n  width: 40%;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .price-tag-group {\n    font-size: 16px;\n    order: 1;\n    width: 100%;\n  }\n}\n\n.donation-selection-area .perks .perk .perk-label {\n  font-size: 21px;\n  font-weight: 700;\n  margin: 20px 20px 20px 0;\n  text-align: right;\n  text-transform: uppercase;\n  width: 40%;\n  box-sizing: border-box;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .perk-label {\n    margin: 0;\n    padding: 20px;\n    padding-bottom: 0;\n    font-size: 27px;\n    width: 100%;\n    order: 3;\n    text-align: center;\n  }\n}\n\n.donation-selection-area .perks .perk .perk-desc {\n  font-size: 16px;\n  font-weight: 300;\n  display: none;\n  padding: 20px;\n  width: 100%;\n  box-sizing: border-box;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .perk-desc {\n    display: block;\n    margin: 0 11px 0 11px;\n    order: 4;\n    padding-left: 4px;\n    padding-right
 : 4px;\n    width: auto;\n  }\n}\n\n.donation-selection-area .perks .perk .perk-sub-select {\n  display: none;\n  border-color: #aeaeae;\n  margin: 10px 10px 10px 10px;\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .perk-sub-select {\n    display: block;\n    order: 5;\n    width: 92%;\n  }\n}\n\n.donation-selection-area .perks .selected {\n  background-color: #68b030;\n  transition: all 0.5s;\n}\n\n.donation-selection-area .perks .selected .slides {\n  display: block;\n}\n\n.donation-selection-area .perks .selected .perk-desc {\n  display: block;\n}\n\n.donation-selection-area .perks .selected .perk-sub-select {\n  display: block;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .selected {\n    background-color: #fff;\n    box-shadow: 8px 8px #68b030;\n    position: relative;\n    top: -4px;\n  }\n}\n\n.donation-selection-area .totals-area {\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  justify-con
 tent: center;\n  margin-bottom: 4%;\n  position: relative;\n}\n\n.donation-selection-area .totals-area, .donation-selection-area .totals-area div, .donation-selection-area .totals-area input {\n  position: relative;\n  z-index: 1;\n}\n\n.donation-selection-area .totals-area .fist-bg {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 0;\n  height: auto;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .totals-area {\n    order: 4;\n    width: 100%;\n  }\n}\n\n.donation-selection-area .totals-area .matching-message {\n  color: #59316B;\n  font-size: 35px;\n  line-height: normal;\n  padding-top: 10px;\n  text-align: center;\n  width: 100%;\n}\n\n.donation-selection-area .totals-area .matched-amount {\n  color: #59316B;\n  font-size: 100px;\n  font-weight: bold;\n  line-height: normal;\n  text-align: center;\n  width: 100%;\n}\n\n.payment-method-area,\n.info-area {\n  position: relative;\n  z-index: 2;\n}\n\n.payment-method-area {\n  border-bottom: 2px solid #aeae
 ae;\n  border-top: 2px solid #aeaeae;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  margin-top: 20px;\n  padding: 4% 21px;\n  text-align: center;\n}\n\n.payment-method-area .button {\n  width: 160px;\n  vertical-align: top;\n}\n\n.payment-method-area .button.paypal {\n  padding-top: 8px;\n  padding-bottom: 5px;\n}\n\n.payment-method-area .paypal-png {\n  height: 32px;\n}\n\n.payment-method-area .payment-method-question {\n  margin-bottom: 3%;\n}\n\n.payment-method-area .payment-option {\n  margin-bottom: 2%;\n}\n\n.info-area {\n  padding-top: 4%;\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 600px;\n  text-align: center;\n}\n\n.info-area #firstName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #firstName {\n    width: 50%;\n  }\n}\n\n.info-area #lastName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #lastName {\n    width: 50%;\n  }\n}\n\n.info-area #streetAddress {\n  width: 100%;\n}\n\n at media (min-w
 idth: 767px) {\n  .info-area #streetAddress {\n    width: 80%;\n  }\n}\n\n.info-area #extendedAddress {\n  width: 20%;\n}\n\n.info-area #country {\n  width: 100%;\n}\n\n.info-area #locality {\n  width: 38%;\n}\n\n at media (min-width: 767px) {\n  .info-area #locality {\n    width: 33%;\n  }\n}\n\n.info-area #region {\n  width: 45%;\n}\n\n at media (min-width: 767px) {\n  .info-area #region {\n    width: 34%;\n  }\n}\n\n.info-area #postalCode {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #postalCode {\n    width: 33%;\n  }\n}\n\n.info-area #email {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #email {\n    width: 56%;\n  }\n}\n\n.info-area .receipt {\n  display: none;\n}\n\n at media (min-width: 767px) {\n  .info-area .receipt {\n    display: block;\n  }\n}\n\n.info-area #mailingListOptIn {\n  margin: 10px 4px 10px 10px;\n}\n\n.info-area #cardNumber {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #cardNumber {\n    width: 56%;\n  }\n}\n
 \n.info-area img.credit-cards {\n  display: none;\n}\n\n at media (min-width: 767px) {\n  .info-area img.credit-cards {\n    display: block;\n    height: 29px;\n    vertical-align: middle;\n  }\n}\n\n.info-area #expMonth {\n  width: 38%;\n}\n\n at media (min-width: 767px) {\n  .info-area #expMonth {\n    width: 33%;\n  }\n}\n\n.info-area #expYear {\n  width: 38.5%;\n}\n\n at media (min-width: 767px) {\n  .info-area #expYear {\n    width: 33%;\n  }\n}\n\n.info-area #cvc {\n  width: 38%;\n}\n\n at media (min-width: 767px) {\n  .info-area #cvc {\n    width: 33%;\n  }\n}\n\n.info-area #perk-fields {\n  display: block;\n  margin: 10px;\n  text-align: left;\n}\n\n.info-area #perk-fields #selected-perk-fields-label {\n  margin-top: 10px;\n}\n\n.info-area #perk-fields #perk-fit {\n  margin-left: 0px;\n}\n\n.info-area .donate-submit-area {\n  color: #848282;\n  font-size: 22px;\n  font-weight: bold;\n  padding: 20px 0;\n}\n\n.info-area .donate.button {\n  background-color: #68b030;\n  color: #fff;\n  te
 xt-transform: uppercase;\n  width: 300px;\n}\n\n#donate-comments-wrapper {\n  text-align: left;\n}\n\n#donate-comments-wrapper textarea {\n  width: 95%;\n}\n\n at media (min-width: 767px) {\n  #donate-comments-wrapper textarea {\n    width: 97%;\n  }\n}\n\n.no-close .ui-dialog-titlebar-close {\n  display: none;\n}\n\n.ui-dialog {\n  background-color: #fff;\n  text-align: center;\n  z-index: 100;\n}\n\n.ui-dialog .loading-message {\n  margin: 20px;\n}\n\n.ui-dialog .loading-dot-conatiner {\n  display: flex;\n  justify-content: center;\n}\n\n.ui-dialog .loading-circle {\n  display: block;\n  width: 15px;\n  height: 15px;\n  margin-right: 0.5%;\n  margin-left: 0.5%;\n  border-radius: 20px;\n  background-color: #8cd621;\n  opacity: 0.3;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+1) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 0;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+2) {\n  animation-name: moving-dot;\n
   animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 0.5s;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+3) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 1s;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+4) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 1.5s;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+5) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 2s;\n}\n\n at keyframes moving-dot {\n  from {\n    opacity: 0.3;\n  }\n  20% {\n    opacity: 1;\n  }\n  to {\n    opacity: 0.3;\n  }\n}\n\n#loading-overlay {\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: #484848;\n  z-index: 99;\n}\n\n.donor-faq {\n  margin: 40px auto;\n  width: 90%;\n}\n\n at media (min-width: 991px) {\n  .donor-faq {\n 
    width: 80%;\n  }\n}\n\n.donor-faq .questions {\n  list-style-position: inside;\n  padding-left: 0px;\n}\n\n.donor-faq .questions li {\n  color: #59316B;\n  font-size: 20px;\n  font-weight: 700;\n  line-height: 29px;\n}\n\n at media (min-width: 991px) {\n  .donor-faq .questions li {\n    font-size: 25px;\n    line-height: 34px;\n  }\n}\n\n.donor-faq .questions .question {\n  color: #59316B;\n  display: inline;\n  font-size: 20px;\n  margin-bottom: 10px;\n  margin-top: 10px;\n}\n\n at media (min-width: 991px) {\n  .donor-faq .questions .question {\n    font-size: 25px;\n  }\n}\n\n.donor-faq .questions .answer {\n  color: #484848;\n  font-family: \"Source Sans Pro\", sans-serif;\n  font-size: 16px;\n  line-height: 20px;\n  font-weight: 300;\n}\n\n.donor-faq .button-line {\n  width: 100%;\n}\n\n.button-line {\n  text-align: center;\n}\n\n.error-container {\n  display: block;\n  width: 50%;\n  min-height: 100px;\n  margin-right: auto;\n  margin-bottom: 5%;\n  margin-left: auto;\n  padding: 
 2% 5%;\n  border: 1px solid #aeaeae;\n  box-shadow: 11px 11px 0 0 #e70000;\n}\n\n.error-container .title {\n  margin-bottom: 3%;\n  color: #e70000;\n  font-size: 34px;\n  line-height: 40px;\n  text-align: center;\n}\n\n.donate-match-container,\n#company-profile-container,\n#hepdata-no-results-message {\n  text-align: center;\n  margin-bottom: 60px;\n}\n\n.donate-match-container input,\n.donate-match-container datalist,\n.donate-match-container .input-and-loader {\n  width: 300px;\n}\n\n.donate-match-container .input-and-loader {\n  margin: auto;\n  position: relative;\n}\n\n.donate-match-container .input-and-loader input {\n  height: 30px;\n  padding: 3px;\n  border-style: solid;\n  text-align: center;\n  font-weight: 600;\n}\n\n.donate-match-container .input-and-loader .load-container {\n  display: none;\n  height: 30px;\n  width: 30px;\n  overflow: hidden;\n  position: absolute;\n  top: 4px;\n  right: -6px;\n}\n\n.donate-match-container .input-and-loader .load-container .loader,\n
 .donate-match-container .input-and-loader .load-container .loader:before,\n.donate-match-container .input-and-loader .load-container .loader:after {\n  background: #59316B;\n  animation: load1 1s infinite ease-in-out;\n  width: 1em;\n  height: 4em;\n}\n\n.donate-match-container .input-and-loader .load-container .loader {\n  color: #59316B;\n  text-indent: -9999em;\n  margin: 10px auto;\n  position: relative;\n  font-size: 4px;\n  transform: translateZ(0);\n  animation-delay: -0.16s;\n}\n\n.donate-match-container .input-and-loader .load-container .loader:before,\n.donate-match-container .input-and-loader .load-container .loader:after {\n  position: absolute;\n  top: 0;\n  content: '';\n}\n\n.donate-match-container .input-and-loader .load-container .loader:before {\n  left: -1.5em;\n  animation-delay: -0.32s;\n}\n\n.donate-match-container .input-and-loader .load-container .loader:after {\n  left: 1.5em;\n}\n\n at -webkit-keyframes load1 {\n  0%,\n  80%,\n  100% {\n    box-shadow: 0 0;\n 
    height: 4em;\n  }\n  40% {\n    box-shadow: 0 -2em;\n    height: 5em;\n  }\n}\n\n at keyframes load1 {\n  0%,\n  80%,\n  100% {\n    box-shadow: 0 0;\n    height: 4em;\n  }\n  40% {\n    box-shadow: 0 -2em;\n    height: 5em;\n  }\n}\n\n.donate-match-container #company-option-list {\n  width: 300px;\n  margin: 0 auto;\n  max-height: 300px;\n  overflow-x: hidden;\n  overflow-y: auto;\n  background-color: #F8F9FA;\n  border: #7D4698 1px solid;\n  display: none;\n}\n\n.donate-match-container #company-option-list .company-option {\n  word-wrap: break-word;\n  padding: 5px 2px;\n}\n\n.donate-match-container #company-option-list .company-option:hover {\n  background-color: #68b030;\n  color: #fff;\n}\n\n.donate-error-message {\n  color: #aeaeae;\n  padding: 0 10%;\n  word-break: break-all;\n  text-align: center;\n}\n\n#company-profile-container .profile {\n  display: none;\n  width: 75%;\n  margin: auto;\n}\n\n#company-profile-container .profile .row {\n  margin: 20px 0;\n}\n\n#company-pro
 file-container .profile .row .company-property-label {\n  width: 30%;\n  text-align: right;\n  font-weight: 700;\n}\n\n#company-profile-container .profile .row .company-property-value {\n  text-align: left;\n  width: 60%;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value {\n  width: auto;\n  font-size: 25px;\n  line-height: 34px;\n  text-align: center;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value .company {\n  font-weight: 700;\n  color: #7D4698;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value .percent {\n  font-weight: 700;\n  color: #68b030;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value .match-amount {\n  font-weight: 700;\n  color: #59316B;\n}\n\n#company-profile-container .profile .row .company-property-value#matchingGiftForm-value {\n  width: auto;\n}\n\n#company-profile-container .profile .row .company-property-value#lastUpdated
 -value {\n  font-weight: 700;\n  color: #aeaeae;\n}\n\n#company-profile-container .profile .row .company-property-value#matchingConditions-value .ratio {\n  font-weight: 700;\n  color: #59316B;\n}\n\n#company-profile-container .profile .row .company-property-value#resources-value {\n  width: auto;\n}\n\n#company-profile-container ul {\n  margin-top: 0px;\n}\n\n#company-profile-container li {\n  margin-bottom: 10px;\n}\n\n.privacy-policy {\n  margin-left: auto;\n  margin-right: auto;\n  width: 70%;\n  margin-bottom: 40px;\n}\n\n.subscribe .fixed-width {\n  max-width: 600px;\n  text-align: center;\n}\n\n.subscribe .fixed-width #email {\n  width: 100%;\n}\n\n.subscribe .fixed-width #firstName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .subscribe .fixed-width #firstName {\n    width: 50%;\n  }\n}\n\n.subscribe .fixed-width #lastName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .subscribe .fixed-width #lastName {\n    width: 50%;\n  }\n}\n\n.subscribe .fixed-width .
 join {\n  width: 200px;\n}\n\n.subscribe .fixed-width .messages {\n  color: red;\n  text-align: left;\n}\n\n.header-content .thank-you {\n  width: 80%;\n}\n\n.header-content .thank-you h1 {\n  text-align: center;\n  text-transform: none;\n}\n\n.header-content .thank-you h5 {\n  text-align: center;\n}\n\n.header-content .thank-you img {\n  width: 50px;\n}\n\n.header-content .thank-you .share-icons {\n  margin: 20px 10px 0px 10px;\n  text-align: center;\n}\n\n at media (min-width: 767px) {\n  .header-content .thank-you {\n    margin-top: -120px;\n    margin-bottom: 30px;\n  }\n}\n\n.content {\n  margin-top: 20px;\n}\n\n.content .thank-you {\n  margin-bottom: 40px;\n}\n\n.content .thank-you h4 {\n  text-align: center;\n}\n\n.content .thank-you .volunteer-desc {\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 490px;\n  text-align: center;\n}\n\n.content .thank-you .volunteer-desc .skills-text {\n  margin-bottom: 20px;\n}\n","hr {\n  border-top: 1px solid $color-green;\n  margin:
  40px auto;\n  max-width: 106px;\n}\n","$screen-s: 479px;\n$screen-m: 767px;\n$screen-l: 991px;\n\n// Greyscale colors\n$color-white: #fff;\n$color-very-light-grey: #F8F9FA;\n$color-medium-light-grey: #F1F1F3;\n$color-light-grey: #aeaeae;\n$color-grey: #484848;\n$color-dark-grey: #848282;\n$color-white-opacity-40: rgba(255, 255, 255, 0.4);\n\n// Colors\n$color-green: #68b030;\n$color-purple: #7D4698;\n$color-dark-purple: #59316B;\n$color-very-dark-purple: #32173E;\n$color-red: red;\n\n$base-font-color: $color-grey;\n$base-font-family: 'Source Sans Pro', sans-serif;\n$base-font-size: 16px;\n$base-font-weight: 300;\n$base-line-height: 20px;\n\n$font-size-medium: 20px;\n","@mixin base-text() {\n  color: $base-font-color;\n  font-family: $base-font-family;\n  font-size: $base-font-size;\n  line-height: $base-line-height;\n  font-weight: $base-font-weight;\n}\n\nhtml,\nbody,\ninput,\ntextarea {\n  @include base-text();\n}\n\nh1 {\n  font-size: 47px;\n  letter-spacing: 2px;\n  line-height
 : 50px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: capitalize;\n\n  @include breakpoint($screen-m) {\n    font-size: 50px;\n    line-height: 60px;\n  }\n\n  @include breakpoint($screen-l) {\n    font-size: 55px;\n  }\n}\n\nh2 {\n  font-size: 25px;\n  font-weight: 700;\n  line-height: 1;\n  margin-bottom: 1%;\n  margin-top: 0;\n\n  @include breakpoint($screen-m) {\n    font-size: 34px;\n  }\n}\n\nh3 {\n  font-size: 27px;\n  font-weight: 700;\n  text-transform: uppercase;\n  margin-bottom: 1%;\n  margin-top: 0;\n}\n\nh4 {\n  font-size: 27px;\n  font-weight: 400;\n  letter-spacing: 0px;\n  line-height: normal;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: uppercase;\n}\n\nh5 {\n  font-size: 21px;\n  font-weight: 300;\n  line-height: 28px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  letter-spacing: 0.09px;\n\n  @include breakpoint($screen-l) {\n    font-size: 22px;\n  }\n}\n\na {\n  color: $color-purple;\n  font-weight: 700;\n  text-decoration: none;\n  &:hov
 er {\n    color: $color-green;\n  }\n}\n\nb {\n  font-weight: 700;\n}\n\n.bold {\n  font-weight: 700;\n}\n\n.green {\n  color: $color-green;\n}\n\n.light {\n  font-weight: 200;\n}\n\n.email {\n  font-weight: 700;\n}\n\n.small {\n  font-size: 14px;\n}\n\n.strong {\n  color: $color-purple;\n  font-weight: 700;\n}\n\n.tiny {\n  font-size: 12px;\n}\n\n.background-grey {\n  color: $color-medium-light-grey;\n  font-size: 80px;\n  font-weight: bold;\n}\n","//////////////////////////////\n// Default Variables\n//////////////////////////////\n$Breakpoint-Settings: (\n  'default media': all,\n  'default feature': min-width,\n  'default pair': width,\n\n  'force all media type': false,\n  'to ems': false,\n  'transform resolutions': true,\n\n  'no queries': false,\n  'no query fallbacks': false,\n\n  'base font size': 16px,\n\n  'legacy syntax': false\n);\n\n$breakpoint: () !default;\n\n//////////////////////////////\n// Imports\n//////////////////////////////\n at import \"breakpoint/settings\";
 \n at import 'breakpoint/context';\n at import 'breakpoint/helpers';\n at import 'breakpoint/parsers';\n at import 'breakpoint/no-query';\n\n at import 'breakpoint/respond-to';\n\n at import \"breakpoint/legacy-settings\";\n\n//////////////////////////////\n// Breakpoint Mixin\n//////////////////////////////\n\n at mixin breakpoint($query, $no-query: false) {\n  @include legacy-settings-warning;\n\n  // Reset contexts\n  @include private-breakpoint-reset-contexts();\n\n  $breakpoint: breakpoint($query, false);\n\n  $query-string: map-get($breakpoint, 'query');\n  $query-fallback: map-get($breakpoint, 'fallback');\n\n  $private-breakpoint-context-holder: map-get($breakpoint, 'context holder') !global;\n  $private-breakpoint-query-count: map-get($breakpoint, 'query count') !global;\n\n  // Allow for an as-needed override or usage of no query fallback.\n  @if $no-query != false {\n    $query-fallback: $no-query;\n  }\n\n  @if $query-fallback != false {\n    $context-setter: private-breakpoint-set-context('
 no-query', $query-fallback);\n  }\n\n  // Print Out Query String\n  @if not breakpoint-get('no queries') {\n    @media #{$query-string} {\n      @content;\n    }\n  }\n\n  @if breakpoint-get('no query fallbacks') != false or breakpoint-get('no queries') == true {\n\n    $type: type-of(breakpoint-get('no query fallbacks'));\n    $print: false;\n\n    @if ($type == 'bool') {\n      $print: true;\n    }\n    @else if ($type == 'string') {\n      @if $query-fallback == breakpoint-get('no query fallbacks') {\n        $print: true;\n      }\n    }\n    @else if ($type == 'list') {\n      @each $wrapper in breakpoint-get('no query fallbacks') {\n        @if $query-fallback == $wrapper {\n          $print: true;\n        }\n      }\n    }\n\n    // Write Fallback\n    @if ($query-fallback != false) and ($print == true) {\n      $type-fallback: type-of($query-fallback);\n\n      @if ($type-fallback != 'bool') {\n        #{$query-fallback} & {\n          @content;\n        }\n      }\n      @
 else {\n        @content;\n      }\n    }\n  }\n\n  @include private-breakpoint-reset-contexts();\n}\n\n\n at mixin mq($query, $no-query: false) {\n  @include breakpoint($query, $no-query) {\n    @content;\n  }\n}\n","input[type=\"checkbox\"] {\n  margin-top: auto;\n  margin-bottom: auto;\n  margin-right: 4px;\n}\n\ninput[type=\"text\"],\ntextarea {\n  border: 1px solid $color-dark-grey;\n  color: $color-grey;\n  font-size: 16px;\n  height: 27px;\n  margin: 9px;\n  padding: 8px 12px;\n  &.required {\n    border-color: $color-green;\n  }\n  &.error {\n    border-color: $color-red;\n  }\n  &::placeholder {\n    color: $color-light-grey;\n  }\n  &:focus {\n    border-color: $color-dark-purple;\n    color: $color-purple;\n    outline: none;\n  }\n}\ntextarea {\n  box-sizing: border-box;\n  width: 60%;\n  height: 3em;\n  display: block;\n  padding: 8px 12px;\n}\nselect {\n  background: $color-white;\n  border: 1px solid $color-dark-grey;\n  color: $color-grey;\n  font-size: 16px;\n  height:
  45px;\n  margin: 9px;\n  padding: 8px 12px;\n  &.required {\n    border-color: $color-green;\n    color: $color-grey;\n  }\n  &.error {\n    border-color: $color-red;\n  }\n  &:focus {\n    border-color: $color-dark-purple;\n    color: $color-purple;\n    outline: none;\n  }\n}\n\n.field-row {\n  align-items: center;\n  box-sizing: border-box;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  width: 100%;\n\n  @include breakpoint($screen-m) {\n    flex-wrap: nowrap;\n  }\n}\n\n.required {\n  color: $color-green;\n}\n",".button {\n  background-color: $color-white;\n  border: 1px solid $color-dark-grey;\n  border-radius: 5px;\n  color: $color-grey;\n  display: inline-block;\n  font-size: 20px;\n  font-weight: normal;\n  margin: 7px;\n  padding: 14px 10px;\n  text-transform: uppercase;\n  width: 90%;\n  &.purple {\n    background-color: $color-purple;\n    color: $color-white;\n    &:hover {\n      background-color: $color-dark-purple;\n    }\n  }\n  &:hover {\n    back
 ground-color: $color-green;\n    color: $color-white;\n    cursor: pointer;\n  }\n  &.selected {\n    background-color: $color-green;\n    color: $color-white;\n    cursor: default;\n  }\n\n  @include breakpoint($screen-s) {\n    width: auto;\n  }\n}\n\na.button {\n  font-size: 16px;\n  font-weight: normal;\n  padding: 14px 10px;\n  text-decoration: none;\n\n  @include breakpoint($screen-m) {\n    font-size: 20px;\n    width: auto;\n  }\n}\n","body {\n  margin: 0;\n}\n\ndiv {\n  box-sizing: border-box;\n}\n",".header {\n  background-color: $color-dark-purple;\n  color: $color-white;\n  width: 100%;\n  padding: 50px 50px 50px 10%;\n  @include breakpoint($screen-m) {\n    padding-right: 0px;\n    padding-bottom: 0px;\n  }\n\n  h1 {\n    margin-bottom: 30px;\n    font-size: 36px;\n    font-weight: 300;\n    line-height: 40px;\n    @include breakpoint($screen-m) {\n      font-size: 40px;\n      line-height: 40px;\n    }\n    @include breakpoint($screen-l) {\n      font-size: 60px;\n    
   line-height: 60px;\n    }\n  }\n\n  h4 {\n    text-transform: none;\n    font-size: 14px;\n    line-height: 14px;\n    font-weight: 400;\n    @include breakpoint($screen-m) {\n      font-size: 16px;\n      line-height: 18px;\n    }\n    @include breakpoint($screen-l) {\n      font-size: 20px;\n      line-height: 25px;\n    }\n  }\n\n  .content-wrapper {\n    width: 100%;\n\n    .header-content {\n      display: flex;\n      align-items: flex-end;\n      .left-column {\n        display: block;\n        @include breakpoint($screen-m) {\n          margin-right: 2%;\n          flex: 1 1 40%;\n          margin-bottom: 60px;\n          margin-right: 45%;\n        }\n      }\n    }\n  }\n\n  .tor-campaign-logo {\n    flex: 1 1 58%;\n    max-width: 750px;\n    display: none;\n    position: relative;\n    @include breakpoint($screen-l) {\n      display: block;\n    }\n    img {\n      width: 100%;\n      height: auto;\n      position: absolute;\n      bottom: 0px;\n      right: 0px;\n    }
 \n  }\n\n  .logo {\n    width: 81px;\n  }\n\n  .nav-bar {\n    margin-bottom: 30px;\n    @include breakpoint($screen-m) {\n      margin-bottom: 80px;\n    }\n  }\n}\n",".content {\n  margin: 0 0 0 0;\n  padding: 0 0 0 0;\n\n  .fixed-width {\n    margin-left: auto;\n    margin-right: auto;\n\n    @include breakpoint($screen-m) {\n      max-width: 728px;\n    }\n\n    @include breakpoint($screen-l) {\n      max-width: 940px;\n    }\n  }\n}\n",".footer-container {\n  display: flex;\n  flex-direction: column;\n  flex-wrap: wrap;\n  justify-content: space-around;\n  background-color: $color-dark-purple;\n  color: $color-white;\n  padding: 70px 30px 30px 30px;\n  a {\n    color: $color-white;\n  }\n  @include breakpoint($screen-m) {\n    padding-top: 100px;\n  }\n  .footer-content {\n    display: flex;\n    width: 100%;\n    max-width: 900px;\n    margin: 0 auto 30px auto;\n    flex-wrap: wrap;\n    @include breakpoint($screen-m) {\n      flex-wrap: nowrap;\n    }\n  }\n  .footer-content-
 left {\n    flex: 1 1 100%;\n    margin-bottom: 70px;\n    @include breakpoint($screen-m) {\n      flex: 1 1 60%;\n      margin-right: 150px;\n      margin-bottom: 0px;\n    }\n  }\n  .footer-content-right {\n    display: flex;\n    flex: 1 1 100%;\n    align-items: center;\n    flex-direction: column;\n    @include breakpoint($screen-m) {\n      align-items: inherit;\n      flex: 1 1 auto;\n    }\n  }\n  .footer-description {\n    margin-bottom: 70px;\n    font-size: 20px;\n    line-height: 24px;\n    @include breakpoint($screen-m) {\n      margin-bottom: 100px;\n    }\n  }\n  .footer-subscribe {\n    font-size: 17px;\n    line-height: 20px;\n    .footer-subscribe-header {\n      margin-bottom: 5px;\n      font-weight: 600;\n      text-transform: uppercase;\n      color: $color-white-opacity-40;\n    }\n    .footer-sign-up {\n      display: inline-block;\n      padding: 15px 30px;\n      border-radius: 4px;\n      border: 1px solid $color-white;\n      font-weight: 700;\n      text
 -transform: uppercase;\n      margin-top: 15px;\n      &:hover {\n        background-color: $color-purple;\n      }\n    }\n  }\n  .footer-menu {\n    display: flex;\n    flex-direction: row;\n    width: 100%;\n    margin-bottom: 70px;\n    justify-content: space-evenly;\n    a {\n      display: block;\n      font-weight: 300;\n      line-height: 30px;\n      &:hover {\n        color: $color-light-grey;\n      }\n    }\n    @include breakpoint($screen-m) {\n      margin-bottom: 200px;\n      flex-direction: column;\n    }\n  }\n  .footer-social {\n    display: flex;\n    flex-wrap: wrap;\n    width: 100%;\n    justify-content: center;\n    @include breakpoint($screen-m) {\n      width: 155px;\n      justify-content: inherit;\n    }\n    a {\n      display: block;\n      text-indent: -999em;\n      background-size: cover;\n      background-repeat: no-repeat;\n      width: 20px;\n      height: 20px;\n      margin-right: 30px;\n      &.facebook,\n      &.mastodon,\n      &.twitter {\n 
        margin-bottom: 20px;\n      }\n      &.facebook {\n        background-image: url('/images/facebook.svg');\n      }\n      &.mastodon {\n        background-image: url('/images/mastodon.svg');\n      }\n      &.twitter {\n        width: 24px;\n        background-image: url('/images/twitter.svg');\n        @include breakpoint($screen-m) {\n          margin-right: 0px;\n        }\n      }\n      &.instagram {\n        background-image: url('/images/instagram.svg');\n      }\n      &.linkedin {\n        background-image: url('/images/linkedin.svg');\n      }\n      &.github {\n        background-image: url('/images/github.svg');\n        @include breakpoint($screen-m) {\n          margin-right: 0px;\n        }\n      }\n    }\n  }\n}\n\n.gr-stamp-container {\n  display: block;\n  text-align: center;\n  a:hover {\n    color: $color-green;\n  }\n}\n",".front .header {\n  @include breakpoint($screen-m) {\n    background-image: url('../images/tor-header-campaign-2018.svg');\n    backg
 round-position: bottom right;\n    background-repeat: no-repeat;\n    background-size: 40%;\n\n    h4 {\n      padding-right: 10%;\n    }\n  }\n}\n\n.campaign-totals-area {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: center;\n\n  .characters {\n    display: flex;\n    justify-content: center;\n    line-height: normal;\n    margin: 10px 30px;\n\n    .character {\n      position: relative;\n\n      .cover {\n        background: $color-green;\n        bottom: 0;\n        left: 0;\n        position: absolute;\n        visibility: hidden;\n        right: 0;\n        top: 0;\n        z-index: 1;\n      }\n\n      &.covered .cover {\n        visibility: visible;\n      }\n\n      &.resolved {\n        color: $color-green;\n      }\n    }\n  }\n\n  .label {\n    font-size: 27px;\n    text-align: center;\n  }\n\n}\n\n.donate-options {\n  display: flex;\n  justify-content: center;\n  margin: 30px auto 2%;\n  width: 92vw;\n\n  a {\n    background-color: $color-white;\n    border:
  2px solid $color-light-grey;\n    color: $color-light-grey;\n    font-weight: normal;\n    display: block;\n    text-align: center;\n    text-decoration: none;\n    text-transform: uppercase;\n  }\n\n  a.once-button {\n    border-radius: 5px 0 0 5px;\n    margin-right: 0;\n    padding-left: 15px;\n    padding-right: 15px;\n    width: 150px;\n  }\n\n  a.monthly-button {\n    border-left: 0;\n    border-radius: 0 5px 5px 0;\n    margin-left: 0;\n    padding-left: 15px;\n    padding-right: 15px;\n    width: 160px;\n  }\n\n  a.selected, a:hover {\n    background-color: $color-green;\n    color: $color-white;\n  }\n}\n.payment-other-div {\n  text-align: center;\n  margin-bottom: 20px;\n}\n.perk-intro {\n  display: flex;\n  flex-wrap: wrap;\n  margin: 2% 5% 2% 5%;\n  justify-content: center;\n  text-align: center;\n\n  .perk-title {\n    font-size: 22px;\n    margin-bottom: 0px;\n  }\n}\n\n.price-change-warning {\n  color: red;\n}\n\n#donationForm {\n  margin: 0 auto 40px auto;\n  max-wi
 dth: 1024px;\n}\n\n.donation-selection-area {\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  margin: auto 2% auto 2%;\n  max-width: 1024px;\n  justify-content: center;\n\n  @include breakpoint($screen-m) {\n    flex-direction: row;\n  }\n\n  .donate-buttons {\n    align-items: center;\n    align-self: center;\n    display: flex;\n    flex-direction: row;\n    flex-wrap: wrap;\n    justify-content: center;\n    margin: 5px;\n\n    @include breakpoint($screen-m) {\n      flex-direction: row;\n      margin-right: 5px;\n    }\n\n    a.price-btn {\n      background-color: $color-dark-purple;\n      border-radius: 5px;\n      color: $color-white;\n      display: block;\n      font-size: 23px;\n      font-weight: normal;\n      margin: 5px;\n      padding: 20px 0px;\n      text-align: center;\n      text-decoration: none;\n      width: 120px;\n\n      @include breakpoint($screen-m) {\n        font-size: 29px;\n      }\n    }\n\n    a.selected {\n      background-color: $c
 olor-green;\n    }\n\n    .other-amount-field {\n      .error {\n        color: $color-red;\n        display: block;\n        text-align: center;\n      }\n\n      align-items: center;\n      display: flex;\n      flex-direction: column;\n      justify-content: center;\n      .perk-amt {\n        background-color: #f1f1f3;\n        font-size: 23px;\n        font-weight: bold;\n        height: 42px;\n        margin: 5px;\n        min-width: 80px;\n        text-transform: capitalize;\n        text-align: center;\n        width: 94px;\n      }\n    }\n  }\n\n  .no-perk-area {\n    margin: 1% 1% 20px 1%;\n    width: 100%;\n    text-align: center;\n  }\n\n  label[for=\"no-perk-checkbox\"] {\n    font-size: 20px;\n    line-height: 24px;\n  }\n\n  .perks {\n    align-self: center;\n    display: flex;\n    flex-direction: column;\n    width: 100%;\n    margin-top: 20px;\n    position: relative;\n    z-index: 2;\n\n    justify-content: space-evenly;\n\n    @include breakpoint($screen-m) {\n 
      border: none;\n      flex-direction: row;\n    }\n\n    .perk {\n      border-color: $color-light-grey;\n      border-style: solid;\n      border-width: 0px 1px 1px 1px;\n      display: flex;\n      flex-direction: row;\n      flex-wrap: wrap;\n      justify-content: space-between;\n\n      &:first-child {\n        border-top-width: 1px;\n      }\n\n      @include breakpoint($screen-m) {\n        border: 1px solid $color-light-grey;\n        flex-direction: column;\n        justify-content: flex-start;\n        margin: 0px 5px 20px 5px;\n        position: relative;\n        width: 30%;\n        top: 0px;\n        flex-wrap: nowrap;\n      }\n\n      &.disabled {\n        border-color: $color-very-light-grey;\n        color: $color-light-grey;\n        font-style: italic;\n\n        img {\n          opacity: 0.2;\n        }\n\n        select {\n          color: $color-light-grey;\n          font-style: italic;\n        }\n      }\n\n      .slides {\n        align-self: center;\n
         display: none;\n        height: 175px;\n        overflow: hidden;\n        width: 100%;\n\n        @include breakpoint($screen-m) {\n          display: block;\n          order: 2;\n        }\n      }\n\n      img {\n        display: block;\n        margin: 0 auto;\n        max-width: 50%;\n        height: auto;\n        @include breakpoint($screen-m) {\n          width: 85%;\n          max-width: none;\n        }\n      }\n\n      .price-tag-group {\n        margin: 20px 0 20px 20px;\n        font-size: 21px;\n        font-weight: 600;\n        width: 40%;\n        @include breakpoint($screen-m) {\n          font-size: 16px;\n          order: 1;\n          width: 100%;\n        }\n      }\n\n      .perk-label {\n        font-size: 21px;\n        font-weight: 700;\n        margin: 20px 20px 20px 0;\n        text-align: right;\n        text-transform: uppercase;\n        width: 40%;\n        box-sizing: border-box;\n\n        @include breakpoint($screen-m) {\n          margin:
  0;\n          padding: 20px;\n          padding-bottom: 0;\n          font-size: 27px;\n          width: 100%;\n          order: 3;\n          text-align: center;\n        }\n      }\n\n      .perk-desc {\n        font-size: 16px;\n        font-weight: 300;\n        display: none;\n        padding: 20px;\n        width: 100%;\n        box-sizing: border-box;\n\n        @include breakpoint($screen-m) {\n          display: block;\n          margin: 0 11px 0 11px;\n          order: 4;\n          padding-left: 4px;\n          padding-right: 4px;\n          width: auto;\n        }\n      }\n\n      .perk-sub-select {\n        display: none;\n        border-color: #aeaeae;\n        margin: 10px 10px 10px 10px;\n        width: 100%;\n\n        @include breakpoint($screen-m) {\n          display: block;\n          order: 5;\n          width: 92%;\n        }\n      }\n    }\n\n    .selected {\n      background-color: $color-green;\n      transition: all 0.5s;\n\n      .slides {\n        dis
 play: block;\n      }\n\n      .perk-desc {\n        display: block;\n      }\n\n      .perk-sub-select {\n        display: block;\n      }\n\n      @include breakpoint($screen-m) {\n        background-color: $color-white;\n        box-shadow: 8px 8px $color-green;\n        position: relative;\n        top: -4px;\n      }\n    }\n  }\n\n  .totals-area {\n    display: flex;\n    flex-direction: row;\n    flex-wrap: wrap;\n    justify-content: center;\n    margin-bottom: 4%;\n    position: relative;\n\n    &, div, input {\n      position: relative;\n      z-index: 1;\n    }\n\n    .fist-bg {\n      position: absolute;\n      top: 0;\n      right: 0;\n      z-index: 0;\n      height: auto;\n    }\n\n    @include breakpoint($screen-m) {\n      order: 4;\n      width: 100%;\n    }\n\n    .matching-message {\n      color: $color-dark-purple;\n      font-size: 35px;\n      line-height: normal;\n      padding-top: 10px;\n      text-align: center;\n      width: 100%;\n    }\n\n    .matched-a
 mount {\n      color: $color-dark-purple;\n      font-size: 100px;\n      font-weight: bold;\n      line-height: normal;\n      text-align: center;\n      width: 100%;\n    }\n\n  }\n}\n\n.payment-method-area,\n.info-area {\n  position: relative;\n  z-index: 2;\n}\n\n.payment-method-area {\n  border-bottom: 2px solid $color-light-grey;\n  border-top: 2px solid $color-light-grey;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  margin-top: 20px;\n  padding: 4% 21px;\n  text-align: center;\n\n  .button {\n    width: 160px;\n    vertical-align: top;\n  }\n\n  .button.paypal {\n    padding-top: 8px;\n    padding-bottom: 5px;\n  }\n\n  .paypal-png {\n    height: 32px;\n  }\n\n  .payment-method-question {\n    margin-bottom: 3%;\n  }\n\n  .payment-option {\n    margin-bottom: 2%;\n  }\n}\n\n.info-area {\n  padding-top: 4%;\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 600px;\n  text-align: center;\n\n\n  #firstName {\n    width: 100%;\n    @include 
 breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n  #lastName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n  #streetAddress {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 80%;\n    }\n  }\n  #extendedAddress {\n    width: 20%;\n  }\n  #country {\n    width: 100%;\n  }\n  #locality {\n    width: 38%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #region {\n    width: 45%;\n    @include breakpoint($screen-m) {\n      width: 34%;\n    }\n  }\n  #postalCode {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #email {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 56%;\n    }\n  }\n  .receipt {\n    display: none;\n    @include breakpoint($screen-m) {\n      display: block;\n    }\n  }\n  #mailingListOptIn {\n    margin: 10px 4px 10px 10px;\n  }\n  #cardNumber {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      w
 idth: 56%;\n    }\n  }\n  img.credit-cards {\n    display: none;\n\n    @include breakpoint($screen-m) {\n      display: block;\n      height: 29px;\n      vertical-align: middle;\n    }\n  }\n  #expMonth {\n    width: 38%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #expYear {\n    width: 38.5%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #cvc {\n    width: 38%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #perk-fields {\n    display: block;\n    margin: 10px;\n    text-align: left;\n\n    #selected-perk-fields-label {\n      margin-top: 10px;\n    }\n\n    #perk-fit {\n      margin-left: 0px;\n    }\n  }\n\n  .donate-submit-area {\n    color: $color-dark-grey;\n    font-size: 22px;\n    font-weight: bold;\n    padding: 20px 0;\n  }\n\n  .donate.button {\n    background-color: $color-green;\n    color: $color-white;\n    text-transform: uppercase;\n    width: 300px;\n  }\n}\n\n#donate-comments-wrappe
 r {\n  text-align: left;\n\n  textarea {\n    width: 95%;\n\n    @include breakpoint($screen-m) {\n      width: 97%;\n    }\n  }\n}\n",".no-close .ui-dialog-titlebar-close {\n  display: none;\n}\n\n.ui-dialog {\n  background-color: $color-white;\n  text-align: center;\n  z-index: 100;\n\n  .loading-message {\n    margin: 20px;\n  }\n\n  .loading-dot-conatiner {\n    display: flex;\n    justify-content: center;\n  }\n\n  .loading-circle {\n    display: block;\n    width: 15px;\n    height: 15px;\n    margin-right: 0.5%;\n    margin-left: 0.5%;\n    border-radius: 20px;\n    background-color: #8cd621;\n    opacity: 0.3;\n  }\n\n  @mixin moving-dot($delay) {\n    animation-name: moving-dot;\n    animation-duration: 2.5s;\n    animation-iteration-count: infinite;\n    animation-delay: $delay;\n  }\n\n  .loading-circle:nth-child(0n+1) {\n    @include moving-dot(0);\n  }\n\n  .loading-circle:nth-child(0n+2) {\n    @include moving-dot(0.5s);\n  }\n\n  .loading-circle:nth-child(0n+3) {\n   
  @include moving-dot(1s);\n  }\n\n  .loading-circle:nth-child(0n+4) {\n    @include moving-dot(1.5s);\n  }\n\n  .loading-circle:nth-child(0n+5) {\n    @include moving-dot(2s);\n  }\n\n  @keyframes moving-dot {\n    from {\n      opacity: 0.3;\n    }\n\n    20% {\n      opacity: 1;\n    }\n\n    to {\n      opacity: 0.3;\n    }\n  }\n}\n\n#loading-overlay {\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: $color-grey;\n  z-index: 99;\n}\n",".donor-faq {\n  margin: 40px auto;\n  width: 90%;\n  @include breakpoint($screen-l) {\n    width: 80%;\n  }\n\n  .questions {\n    list-style-position: inside;\n    padding-left: 0px;\n\n    li {\n      color: $color-dark-purple;\n      font-size: 20px;\n      font-weight: 700;\n      line-height: 29px;\n\n      @include breakpoint($screen-l) {\n        font-size: 25px;\n        line-height: 34px;\n      }\n    }\n\n    .question {\n      color: $color-dark-purple;\n      display: inline;\n      font-size:
  20px;\n      margin-bottom: 10px;\n      margin-top: 10px;\n\n      @include breakpoint($screen-l) {\n        font-size: 25px;\n      }\n    }\n\n    .answer {\n      @include base-text();\n    }\n  }\n\n  .button-line {\n    width: 100%;\n  }\n}\n\n.button-line {\n  text-align: center;\n}\n",".error-container {\n  display: block;\n  width: 50%;\n  min-height: 100px;\n  margin-right: auto;\n  margin-bottom: 5%;\n  margin-left: auto;\n  padding: 2% 5%;\n  border: 1px solid #aeaeae;\n  box-shadow: 11px 11px 0 0 #e70000;\n\n  .title {\n    margin-bottom: 3%;\n    color: #e70000;\n    font-size: 34px;\n    line-height: 40px;\n    text-align: center;\n  }\n}\n",".donate-match-container,\n#company-profile-container,\n#hepdata-no-results-message {\n  text-align: center;\n  margin-bottom: 60px;\n}\n\n.donate-match-container {\n  input,\n  datalist,\n  .input-and-loader {\n    width: 300px;\n  }\n  .input-and-loader {\n    margin: auto;\n    position: relative;\n\n    input {\n      height:
  30px;\n      padding: 3px;\n      border-style: solid;\n      text-align: center;\n      font-weight: 600;\n    }\n    .load-container {\n      display: none;\n      height: 30px;\n      width: 30px;\n      overflow: hidden;\n      position: absolute;\n      top: 4px;\n      right: -6px;\n\n      .loader,\n      .loader:before,\n      .loader:after {\n        background: $color-dark-purple;\n        animation: load1 1s infinite ease-in-out;\n        width: 1em;\n        height: 4em;\n      }\n      .loader {\n        color: $color-dark-purple;\n        text-indent: -9999em;\n        margin: 10px auto;\n        position: relative;\n        font-size: 4px;\n        transform: translateZ(0);\n        animation-delay: -0.16s;\n      }\n      .loader:before,\n      .loader:after {\n        position: absolute;\n        top: 0;\n        content: '';\n      }\n      .loader:before {\n        left: -1.5em;\n        animation-delay: -0.32s;\n      }\n      .loader:after {\n        left: 1.5e
 m;\n      }\n      @-webkit-keyframes load1 {\n        0%,\n        80%,\n        100% {\n          box-shadow: 0 0;\n          height: 4em;\n        }\n        40% {\n          box-shadow: 0 -2em;\n          height: 5em;\n        }\n      }\n      @keyframes load1 {\n        0%,\n        80%,\n        100% {\n          box-shadow: 0 0;\n          height: 4em;\n        }\n        40% {\n          box-shadow: 0 -2em;\n          height: 5em;\n        }\n      }\n    }\n  }\n  #company-option-list {\n    width: 300px;\n    margin: 0 auto;\n    max-height: 300px;\n    overflow-x: hidden;\n    overflow-y: auto;\n    background-color: $color-very-light-grey;\n    border: $color-purple 1px solid;\n    display: none;\n    .company-option {\n      word-wrap: break-word;\n      padding: 5px 2px;\n      &:hover {\n        background-color: $color-green;\n        color: $color-white;\n      }\n    }\n  }\n}\n\n.donate-error-message {\n  color: $color-light-grey;\n  padding: 0 10%;\n  word-break
 : break-all;\n  text-align: center;\n}\n\n#company-profile-container {\n  .profile {\n    display: none;\n    width: 75%;\n    margin: auto;\n\n\n    .row {\n      margin: 20px 0;\n\n      .company-property-label {\n        width: 30%;\n        text-align: right;\n        font-weight: 700;\n\n      }\n      .company-property-value {\n        text-align: left;\n        width: 60%;\n\n        &#summary-value {\n          width: auto;\n          font-size: 25px;\n          line-height: 34px;\n          text-align: center;\n          .company {\n            font-weight: 700;\n            color: $color-purple;\n          }\n          .percent {\n            font-weight: 700;\n            color: $color-green;\n          }\n          .match-amount {\n            font-weight: 700;\n            color: $color-dark-purple;\n          }\n        }\n\n        &#matchingGiftForm-value {\n          width: auto;\n        }\n\n        &#lastUpdated-value {\n          font-weight: 700;\n          col
 or: $color-light-grey;\n        }\n\n        &#matchingConditions-value {\n          .ratio {\n            font-weight: 700;\n            color: $color-dark-purple;\n          }\n        }\n        &#resources-value {\n          width: auto;\n        }\n      }\n    }\n  }\n  ul {\n    margin-top: 0px;\n  }\n  li {\n    margin-bottom: 10px;\n  }\n}\n",".privacy-policy {\n  margin-left: auto;\n  margin-right: auto;\n  width: 70%;\n  margin-bottom: 40px;\n}\n",".subscribe .fixed-width {\n  max-width: 600px;\n  text-align: center;\n\n  #email {\n    width: 100%;\n  }\n\n  #firstName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n\n  #lastName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n\n  .join {\n    width: 200px;\n  }\n\n  .messages {\n    color: red;\n    text-align: left;\n  }\n}\n",".header-content {\n  .thank-you {\n    width: 80%;\n\n    h1 {\n      text-align: center;\n      text-transform
 : none;\n    }\n\n    h5 {\n      text-align: center;\n    }\n\n    img {\n      width: 50px;\n    }\n\n    .share-icons {\n      margin: 20px 10px 0px 10px;\n      text-align: center;\n    }\n    @include breakpoint($screen-m) {\n      margin-top: -120px;\n      margin-bottom: 30px;\n    }\n  }\n}\n\n.content {\n  margin-top: 20px;\n\n  .thank-you {\n    margin-bottom: 40px;\n\n    h4 {\n      text-align: center;\n    }\n\n    .volunteer-desc {\n      margin-left: auto;\n      margin-right: auto;\n      max-width: 490px;\n      text-align: center;\n\n      .skills-text {\n\t      margin-bottom: 20px;\n      }\n    }\n  }\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["../node_modules/node-normalize-scss/_normalize.scss","style.css","base/_defaults.scss","base/_variables.scss","base/_typography.scss","../node_modules/breakpoint-sass/stylesheets/_breakpoint.scss","base/_fields.scss","base/_buttons.scss","layouts/_html.scss","layouts/_header.scss","layouts/_content.scss","layouts/_footer.scss","components/_donate.scss","components/_dialog.scss","components/_donor-faq.scss","components/_errors.scss","components/_hepdata.scss","components/_privacy-policy.scss","components/_subscribe.scss","components/_thank-you.scss"],"names":[],"mappings":"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","file":"../sass/style.css","sourcesContent":["/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n   ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n *  
   IE on Windows Phone and in iOS.\n */\n\nhtml {\n  line-height: 1.15; /* 1 */\n  -ms-text-size-adjust: 100%; /* 2 */\n  -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n  display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/* Grouping content\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\n\nfigcaption,\nfigure,\nmain { /* 1 */\n  display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\n\nfigure {\n  margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow
  in Edge and IE.\n */\n\nhr {\n  box-sizing: content-box; /* 1 */\n  height: 0; /* 1 */\n  overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n   ========================================================================== */\n\n/**\n * 1. Remove the gray background on active links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\n\na {\n  background-color: transparent; /* 1 */\n  -webkit-text-decoration-skip: objects; /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n  border-bottom: none; /* 1 */\n  text-decoration: underline; /* 2 */\n  text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * P
 revent the duplicate application of `bolder` by the next rule in Safari 6.\n */\n\nb,\nstrong {\n  font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n  font-family: monospace, monospace; /* 1 */\n  font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\n\ndfn {\n  font-style: italic;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\n\nmark {\n  background-color: #ff0;\n  color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n  font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n
 \nsub {\n  bottom: -0.25em;\n}\n\nsup {\n  top: -0.5em;\n}\n\n/* Embedded content\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n  border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n/* Forms\n   ========================================================================== */\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n  overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. R
 emove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n  text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n *    controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\nhtml [type=\"button\"], /* 1 */\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color i
 nheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *    `fieldset` elements in all browsers.\n */\n\nlegend {\n  box-sizing: border-box; /* 1 */\n  color: inherit; /* 2 */\n  display: table; /* 1 */\n  max-width: 100%; /* 1 */\n  padding: 0; /* 3 */\n  white-space: normal; /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n  display: inline-block; /* 1 */\n  vertical-align: baseline; /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\n\ntextarea {\n  overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n  box-sizing: border-box; /* 1 */\n  padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-bu
 tton,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n  -webkit-appearance: textfield; /* 1 */\n  outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n  -webkit-appearance: button; /* 1 */\n  font: inherit; /* 2 */\n}\n\n/* Interactive\n   ========================================================================== */\n\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\n\ndetails, /* 1 */\nmenu {\n  display: 
 block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n  display: list-item;\n}\n\n/* Scripting\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\ncanvas {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\n\ntemplate {\n  display: none;\n}\n\n/* Hidden\n   ========================================================================== */\n\n/**\n * Add the correct display in IE 10-.\n */\n\n[hidden] {\n  display: none;\n}\n","/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n/* Document\n   ========================================================================== */\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n *    IE on Windows Phone and in iOS.\n */\nhtml {\n  line-height: 1.15;\n  /* 1 */\n  -ms-text-size-adjust: 100%;\n  /* 2 */\n  -webkit-text
 -size-adjust: 100%;\n  /* 2 */\n}\n\n/* Sections\n   ========================================================================== */\n/**\n * Add the correct display in IE 9-.\n */\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n  display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/* Grouping content\n   ========================================================================== */\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\nfigcaption,\nfigure,\nmain {\n  /* 1 */\n  display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\nfigure {\n  margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\nhr {\n  box-sizing: content-box;\n  /* 1 */\n  height: 0;\n  /* 1 */\n  overflow: visible;\n  /* 2 */\n}\n\n/**\n * 
 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\npre {\n  font-family: monospace, monospace;\n  /* 1 */\n  font-size: 1em;\n  /* 2 */\n}\n\n/* Text-level semantics\n   ========================================================================== */\n/**\n * 1. Remove the gray background on active links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\na {\n  background-color: transparent;\n  /* 1 */\n  -webkit-text-decoration-skip: objects;\n  /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\nabbr[title] {\n  border-bottom: none;\n  /* 1 */\n  text-decoration: underline;\n  /* 2 */\n  text-decoration: underline dotted;\n  /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\nb,\nstrong {\n  font-weight: inherit;\
 n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\nb,\nstrong {\n  font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\ncode,\nkbd,\nsamp {\n  font-family: monospace, monospace;\n  /* 1 */\n  font-size: 1em;\n  /* 2 */\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\ndfn {\n  font-style: italic;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\nmark {\n  background-color: #ff0;\n  color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\nsmall {\n  font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\nsup {\n  top: -0.5em;\n}\n\n/* Embedded content\n   =========================================
 ================================= */\n/**\n * Add the correct display in IE 9-.\n */\naudio,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\nimg {\n  border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n/* Forms\n   ========================================================================== */\n/**\n * Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n  /* 1 */\n  overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n  /* 1 */\n  text-transform: none;\n}\n\n/**\n * 1. Prevent a W
 ebKit bug where (2) destroys native `audio` and `video`\n *    controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button;\n  /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *    `fieldset` elements in
  all browsers.\n */\nlegend {\n  box-sizing: border-box;\n  /* 1 */\n  color: inherit;\n  /* 2 */\n  display: table;\n  /* 1 */\n  max-width: 100%;\n  /* 1 */\n  padding: 0;\n  /* 3 */\n  white-space: normal;\n  /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n  display: inline-block;\n  /* 1 */\n  vertical-align: baseline;\n  /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\ntextarea {\n  overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n  box-sizing: border-box;\n  /* 1 */\n  padding: 0;\n  /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and S
 afari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n  -webkit-appearance: textfield;\n  /* 1 */\n  outline-offset: -2px;\n  /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button;\n  /* 1 */\n  font: inherit;\n  /* 2 */\n}\n\n/* Interactive\n   ========================================================================== */\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\ndetails,\nmenu {\n  display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\nsummary {\n  display: list-item;\n}\n\n/* Scripting\n   =============
 ============================================================= */\n/**\n * Add the correct display in IE 9-.\n */\ncanvas {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\ntemplate {\n  display: none;\n}\n\n/* Hidden\n   ========================================================================== */\n/**\n * Add the correct display in IE 10-.\n */\n[hidden] {\n  display: none;\n}\n\nhr {\n  border-top: 1px solid #68b030;\n  margin: 40px auto;\n  max-width: 106px;\n}\n\nhtml,\nbody,\ninput,\ntextarea {\n  color: #484848;\n  font-family: \"Source Sans Pro\", sans-serif;\n  font-size: 16px;\n  line-height: 20px;\n  font-weight: 300;\n}\n\nh1 {\n  font-size: 47px;\n  letter-spacing: 2px;\n  line-height: 50px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: capitalize;\n}\n\n at media (min-width: 767px) {\n  h1 {\n    font-size: 50px;\n    line-height: 60px;\n  }\n}\n\n at media (min-width: 991px) {\n  h1 {\n    font-size: 55px;\n  }\n}\n\nh2 {\n  font-size
 : 25px;\n  font-weight: 700;\n  line-height: 1;\n  margin-bottom: 1%;\n  margin-top: 0;\n}\n\n at media (min-width: 767px) {\n  h2 {\n    font-size: 34px;\n  }\n}\n\nh3 {\n  font-size: 27px;\n  font-weight: 700;\n  text-transform: uppercase;\n  margin-bottom: 1%;\n  margin-top: 0;\n}\n\nh4 {\n  font-size: 27px;\n  font-weight: 400;\n  letter-spacing: 0px;\n  line-height: normal;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: uppercase;\n}\n\nh5 {\n  font-size: 21px;\n  font-weight: 300;\n  line-height: 28px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  letter-spacing: 0.09px;\n}\n\n at media (min-width: 991px) {\n  h5 {\n    font-size: 22px;\n  }\n}\n\na {\n  color: #7D4698;\n  font-weight: 700;\n  text-decoration: none;\n}\n\na:hover {\n  color: #68b030;\n}\n\nb {\n  font-weight: 700;\n}\n\n.bold {\n  font-weight: 700;\n}\n\n.green {\n  color: #68b030;\n}\n\n.light {\n  font-weight: 200;\n}\n\n.email {\n  font-weight: 700;\n}\n\n.small {\n  font-size: 14px;\n}\n\n.strong {\n  c
 olor: #7D4698;\n  font-weight: 700;\n}\n\n.tiny {\n  font-size: 12px;\n}\n\n.background-grey {\n  color: #F1F1F3;\n  font-size: 80px;\n  font-weight: bold;\n}\n\ninput[type=\"checkbox\"] {\n  margin-top: auto;\n  margin-bottom: auto;\n  margin-right: 4px;\n}\n\ninput[type=\"text\"],\ntextarea {\n  border: 1px solid #848282;\n  color: #484848;\n  font-size: 16px;\n  height: 27px;\n  margin: 9px;\n  padding: 8px 12px;\n}\n\ninput[type=\"text\"].required,\ntextarea.required {\n  border-color: #68b030;\n}\n\ninput[type=\"text\"].error,\ntextarea.error {\n  border-color: red;\n}\n\ninput[type=\"text\"]::placeholder,\ntextarea::placeholder {\n  color: #aeaeae;\n}\n\ninput[type=\"text\"]:focus,\ntextarea:focus {\n  border-color: #59316B;\n  color: #7D4698;\n  outline: none;\n}\n\ntextarea {\n  box-sizing: border-box;\n  width: 60%;\n  height: 3em;\n  display: block;\n  padding: 8px 12px;\n}\n\nselect {\n  background: #fff;\n  border: 1px solid #848282;\n  color: #484848;\n  font-size: 16px
 ;\n  height: 45px;\n  margin: 9px;\n  padding: 8px 12px;\n}\n\nselect.required {\n  border-color: #68b030;\n  color: #484848;\n}\n\nselect.error {\n  border-color: red;\n}\n\nselect:focus {\n  border-color: #59316B;\n  color: #7D4698;\n  outline: none;\n}\n\n.field-row {\n  align-items: center;\n  box-sizing: border-box;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .field-row {\n    flex-wrap: nowrap;\n  }\n}\n\n.required {\n  color: #68b030;\n}\n\n.button {\n  background-color: #fff;\n  border: 1px solid #848282;\n  border-radius: 5px;\n  color: #484848;\n  display: inline-block;\n  font-size: 20px;\n  font-weight: normal;\n  margin: 7px;\n  padding: 14px 10px;\n  text-transform: uppercase;\n  width: 90%;\n}\n\n.button.purple {\n  background-color: #7D4698;\n  color: #fff;\n}\n\n.button.purple:hover {\n  background-color: #59316B;\n}\n\n.button:hover {\n  background-color: #68b030;\n  color: #fff;\n  cursor: poin
 ter;\n}\n\n.button.selected {\n  background-color: #68b030;\n  color: #fff;\n  cursor: default;\n}\n\n at media (min-width: 479px) {\n  .button {\n    width: auto;\n  }\n}\n\na.button {\n  font-size: 16px;\n  font-weight: normal;\n  padding: 14px 10px;\n  text-decoration: none;\n}\n\n at media (min-width: 767px) {\n  a.button {\n    font-size: 20px;\n    width: auto;\n  }\n}\n\nbody {\n  margin: 0;\n}\n\ndiv {\n  box-sizing: border-box;\n}\n\n.header {\n  background-color: #59316B;\n  color: #fff;\n  width: 100%;\n  padding: 50px 50px 50px 10%;\n}\n\n at media (min-width: 767px) {\n  .header {\n    padding-right: 0px;\n    padding-bottom: 0px;\n  }\n}\n\n.header h1 {\n  margin-bottom: 30px;\n  font-size: 36px;\n  font-weight: 300;\n  line-height: 40px;\n}\n\n at media (min-width: 767px) {\n  .header h1 {\n    font-size: 40px;\n    line-height: 40px;\n  }\n}\n\n at media (min-width: 991px) {\n  .header h1 {\n    font-size: 60px;\n    line-height: 60px;\n  }\n}\n\n.header h4 {\n  text-transform: non
 e;\n  font-size: 14px;\n  line-height: 14px;\n  font-weight: 400;\n}\n\n at media (min-width: 767px) {\n  .header h4 {\n    font-size: 16px;\n    line-height: 18px;\n  }\n}\n\n at media (min-width: 991px) {\n  .header h4 {\n    font-size: 20px;\n    line-height: 25px;\n  }\n}\n\n.header .content-wrapper {\n  width: 100%;\n}\n\n.header .content-wrapper .header-content {\n  display: flex;\n  align-items: flex-end;\n}\n\n.header .content-wrapper .header-content .left-column {\n  display: block;\n}\n\n at media (min-width: 767px) {\n  .header .content-wrapper .header-content .left-column {\n    margin-right: 2%;\n    flex: 1 1 40%;\n    margin-bottom: 60px;\n    margin-right: 45%;\n  }\n}\n\n.header .tor-campaign-logo {\n  flex: 1 1 58%;\n  max-width: 750px;\n  display: none;\n  position: relative;\n}\n\n at media (min-width: 991px) {\n  .header .tor-campaign-logo {\n    display: block;\n  }\n}\n\n.header .tor-campaign-logo img {\n  width: 100%;\n  height: auto;\n  position: absolute;\n  bottom: 0p
 x;\n  right: 0px;\n}\n\n.header .logo {\n  width: 81px;\n}\n\n.header .nav-bar {\n  margin-bottom: 30px;\n}\n\n at media (min-width: 767px) {\n  .header .nav-bar {\n    margin-bottom: 80px;\n  }\n}\n\n.content {\n  margin: 0 0 0 0;\n  padding: 0 0 0 0;\n}\n\n.content .fixed-width {\n  margin-left: auto;\n  margin-right: auto;\n}\n\n at media (min-width: 767px) {\n  .content .fixed-width {\n    max-width: 728px;\n  }\n}\n\n at media (min-width: 991px) {\n  .content .fixed-width {\n    max-width: 940px;\n  }\n}\n\n.footer-container {\n  display: flex;\n  flex-direction: column;\n  flex-wrap: wrap;\n  justify-content: space-around;\n  background-color: #59316B;\n  color: #fff;\n  padding: 70px 30px 30px 30px;\n}\n\n.footer-container a {\n  color: #fff;\n}\n\n at media (min-width: 767px) {\n  .footer-container {\n    padding-top: 100px;\n  }\n}\n\n.footer-container .footer-content {\n  display: flex;\n  width: 100%;\n  max-width: 900px;\n  margin: 0 auto 30px auto;\n  flex-wrap: wrap;\n}\n\n at media 
 (min-width: 767px) {\n  .footer-container .footer-content {\n    flex-wrap: nowrap;\n  }\n}\n\n.footer-container .footer-content-left {\n  flex: 1 1 100%;\n  margin-bottom: 70px;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-content-left {\n    flex: 1 1 60%;\n    margin-right: 150px;\n    margin-bottom: 0px;\n  }\n}\n\n.footer-container .footer-content-right {\n  display: flex;\n  flex: 1 1 100%;\n  align-items: center;\n  flex-direction: column;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-content-right {\n    align-items: inherit;\n    flex: 1 1 auto;\n  }\n}\n\n.footer-container .footer-description {\n  margin-bottom: 70px;\n  font-size: 20px;\n  line-height: 24px;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-description {\n    margin-bottom: 100px;\n  }\n}\n\n.footer-container .footer-subscribe {\n  font-size: 17px;\n  line-height: 20px;\n}\n\n.footer-container .footer-subscribe .footer-subscribe-header {\n  margin-bottom: 5p
 x;\n  font-weight: 600;\n  text-transform: uppercase;\n  color: rgba(255, 255, 255, 0.4);\n}\n\n.footer-container .footer-subscribe .footer-sign-up {\n  display: inline-block;\n  padding: 15px 30px;\n  border-radius: 4px;\n  border: 1px solid #fff;\n  font-weight: 700;\n  text-transform: uppercase;\n  margin-top: 15px;\n}\n\n.footer-container .footer-subscribe .footer-sign-up:hover {\n  background-color: #7D4698;\n}\n\n.footer-container .footer-menu {\n  display: flex;\n  flex-direction: row;\n  width: 100%;\n  margin-bottom: 70px;\n  justify-content: space-evenly;\n}\n\n.footer-container .footer-menu a {\n  display: block;\n  font-weight: 300;\n  line-height: 30px;\n}\n\n.footer-container .footer-menu a:hover {\n  color: #aeaeae;\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-menu {\n    margin-bottom: 200px;\n    flex-direction: column;\n  }\n}\n\n.footer-container .footer-social {\n  display: flex;\n  flex-wrap: wrap;\n  width: 100%;\n  justify-content: center;\n}
 \n\n at media (min-width: 767px) {\n  .footer-container .footer-social {\n    width: 155px;\n    justify-content: inherit;\n  }\n}\n\n.footer-container .footer-social a {\n  display: block;\n  text-indent: -999em;\n  background-size: cover;\n  background-repeat: no-repeat;\n  width: 20px;\n  height: 20px;\n  margin-right: 30px;\n}\n\n.footer-container .footer-social a.facebook, .footer-container .footer-social a.mastodon, .footer-container .footer-social a.twitter {\n  margin-bottom: 20px;\n}\n\n.footer-container .footer-social a.facebook {\n  background-image: url(\"/images/facebook.svg\");\n}\n\n.footer-container .footer-social a.mastodon {\n  background-image: url(\"/images/mastodon.svg\");\n}\n\n.footer-container .footer-social a.twitter {\n  width: 24px;\n  background-image: url(\"/images/twitter.svg\");\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-social a.twitter {\n    margin-right: 0px;\n  }\n}\n\n.footer-container .footer-social a.instagram {\n  background-i
 mage: url(\"/images/instagram.svg\");\n}\n\n.footer-container .footer-social a.linkedin {\n  background-image: url(\"/images/linkedin.svg\");\n}\n\n.footer-container .footer-social a.github {\n  background-image: url(\"/images/github.svg\");\n}\n\n at media (min-width: 767px) {\n  .footer-container .footer-social a.github {\n    margin-right: 0px;\n  }\n}\n\n.gr-stamp-container {\n  display: block;\n  text-align: center;\n}\n\n.gr-stamp-container a:hover {\n  color: #68b030;\n}\n\n at media (min-width: 767px) {\n  .front .header {\n    background-image: url(\"../images/tor-header-campaign-2018.svg\");\n    background-position: bottom right;\n    background-repeat: no-repeat;\n    background-size: 40%;\n  }\n  .front .header h4 {\n    padding-right: 10%;\n  }\n}\n\n.campaign-totals-area {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: center;\n}\n\n.campaign-totals-area .characters {\n  display: flex;\n  justify-content: center;\n  line-height: normal;\n  margin: 10px 30px;\n}\n
 \n.campaign-totals-area .characters .character {\n  position: relative;\n}\n\n.campaign-totals-area .characters .character .cover {\n  background: #68b030;\n  bottom: 0;\n  left: 0;\n  position: absolute;\n  visibility: hidden;\n  right: 0;\n  top: 0;\n  z-index: 1;\n}\n\n.campaign-totals-area .characters .character.covered .cover {\n  visibility: visible;\n}\n\n.campaign-totals-area .characters .character.resolved {\n  color: #68b030;\n}\n\n.campaign-totals-area .label {\n  font-size: 27px;\n  text-align: center;\n}\n\n.donate-options {\n  display: flex;\n  justify-content: center;\n  margin: 30px auto 2%;\n  width: 92vw;\n}\n\n.donate-options a {\n  background-color: #fff;\n  border: 2px solid #aeaeae;\n  color: #aeaeae;\n  font-weight: normal;\n  display: block;\n  text-align: center;\n  text-decoration: none;\n  text-transform: uppercase;\n}\n\n.donate-options a.once-button {\n  border-radius: 5px 0 0 5px;\n  margin-right: 0;\n  padding-left: 15px;\n  padding-right: 15px;\n  wid
 th: 150px;\n}\n\n.donate-options a.monthly-button {\n  border-left: 0;\n  border-radius: 0 5px 5px 0;\n  margin-left: 0;\n  padding-left: 15px;\n  padding-right: 15px;\n  width: 160px;\n}\n\n.donate-options a.selected, .donate-options a:hover {\n  background-color: #68b030;\n  color: #fff;\n}\n\n.payment-other-div {\n  text-align: center;\n  margin-bottom: 20px;\n}\n\n.perk-intro {\n  display: flex;\n  flex-wrap: wrap;\n  margin: 2% 5% 2% 5%;\n  justify-content: center;\n  text-align: center;\n}\n\n.perk-intro .perk-title {\n  font-size: 22px;\n  margin-bottom: 0px;\n}\n\n.price-change-warning {\n  color: red;\n}\n\n#donationForm {\n  margin: 0 auto 40px auto;\n  max-width: 1024px;\n}\n\n.donation-selection-area {\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  margin: auto 2% auto 2%;\n  max-width: 1024px;\n  justify-content: center;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area {\n    flex-direction: row;\n  }\n}\n\n.donation-selection-area .donate
 -buttons {\n  align-items: center;\n  align-self: center;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  justify-content: center;\n  margin: 5px;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .donate-buttons {\n    flex-direction: row;\n    margin-right: 5px;\n  }\n}\n\n.donation-selection-area .donate-buttons a.price-btn {\n  background-color: #59316B;\n  border-radius: 5px;\n  color: #fff;\n  display: block;\n  font-size: 23px;\n  font-weight: normal;\n  margin: 5px;\n  padding: 20px 0px;\n  text-align: center;\n  text-decoration: none;\n  width: 120px;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .donate-buttons a.price-btn {\n    font-size: 29px;\n  }\n}\n\n.donation-selection-area .donate-buttons a.price-btn.promo {\n  position: relative;\n}\n\n.donation-selection-area .donate-buttons a.price-btn.promo::before {\n  position: absolute;\n  display: block;\n  background-color: #68b030;\n  color: #fff;\n  content: 'LIMITED OFFER';\
 n  width: 80px;\n  height: 20px;\n  font-size: 12px;\n  top: -9px;\n  left: 13px;\n  padding: 0px 8px;\n  border-radius: 16px;\n  font-weight: 300;\n}\n\n.donation-selection-area .donate-buttons a.selected {\n  background-color: #68b030;\n}\n\n.donation-selection-area .donate-buttons .other-amount-field {\n  align-items: center;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n}\n\n.donation-selection-area .donate-buttons .other-amount-field .error {\n  color: red;\n  display: block;\n  text-align: center;\n}\n\n.donation-selection-area .donate-buttons .other-amount-field .perk-amt {\n  background-color: #f1f1f3;\n  font-size: 23px;\n  font-weight: bold;\n  height: 42px;\n  margin: 5px;\n  min-width: 80px;\n  text-transform: capitalize;\n  text-align: center;\n  width: 94px;\n}\n\n.donation-selection-area .no-perk-area {\n  margin: 1% 1% 20px 1%;\n  width: 100%;\n  text-align: center;\n}\n\n.donation-selection-area label[for=\"no-perk-checkbox\"] {\n  font-s
 ize: 20px;\n  line-height: 24px;\n}\n\n.donation-selection-area .perks {\n  align-self: center;\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n  margin-top: 20px;\n  position: relative;\n  z-index: 2;\n  justify-content: space-evenly;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks {\n    border: none;\n    flex-direction: row;\n  }\n}\n\n.donation-selection-area .perks .perk {\n  border-color: #aeaeae;\n  border-style: solid;\n  border-width: 0px 1px 1px 1px;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n\n.donation-selection-area .perks .perk:first-child {\n  border-top-width: 1px;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk {\n    border: 1px solid #aeaeae;\n    flex-direction: column;\n    justify-content: flex-start;\n    margin: 0px 5px 20px 5px;\n    position: relative;\n    width: 30%;\n    top: 0px;\n    flex-wrap: nowrap;\n  }\n}\n\n.donation-selection-
 area .perks .perk.disabled {\n  border-color: #F8F9FA;\n  color: #aeaeae;\n  font-style: italic;\n}\n\n.donation-selection-area .perks .perk.disabled img {\n  opacity: 0.2;\n}\n\n.donation-selection-area .perks .perk.disabled select {\n  color: #aeaeae;\n  font-style: italic;\n}\n\n.donation-selection-area .perks .perk.disabled .promo-red-dot {\n  background-color: #aeaeae;\n}\n\n.donation-selection-area .perks .perk.disabled .promo-price {\n  color: #aeaeae;\n}\n\n.donation-selection-area .perks .perk .slides {\n  position: relative;\n  align-self: center;\n  display: none;\n  height: 175px;\n  overflow: hidden;\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .slides {\n    display: block;\n    order: 2;\n  }\n}\n\n.donation-selection-area .perks .perk img {\n  display: block;\n  margin: 0 auto;\n  max-width: 50%;\n  height: auto;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk img {\n    width: 85%;\n    max-wid
 th: none;\n  }\n}\n\n.donation-selection-area .perks .perk .promo-red-dot {\n  position: absolute;\n  background: red;\n  top: 45px;\n  right: 15px;\n  color: #fff;\n  padding: 10px 20px;\n  font-size: 28px;\n  line-height: 31px;\n  font-weight: bold;\n  border-radius: 40px;\n}\n\n.donation-selection-area .perks .perk .price-tag-group {\n  margin: 20px 0 20px 20px;\n  font-size: 21px;\n  font-weight: 600;\n  width: 40%;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .price-tag-group {\n    font-size: 16px;\n    order: 1;\n    width: 100%;\n  }\n}\n\n.donation-selection-area .perks .perk .promo-strike-through {\n  text-decoration: line-through;\n}\n\n.donation-selection-area .perks .perk .promo-price {\n  color: #59316B;\n  font-weight: 700;\n}\n\n.donation-selection-area .perks .perk .promo-price.large {\n  font-size: 22px;\n  font-weight: 600;\n}\n\n.donation-selection-area .perks .perk .perk-label {\n  font-size: 21px;\n  font-weight: 700;\n  margin: 20
 px 20px 20px 0;\n  text-align: right;\n  text-transform: uppercase;\n  width: 40%;\n  box-sizing: border-box;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .perk-label {\n    margin: 0;\n    padding: 20px;\n    padding-bottom: 0;\n    font-size: 27px;\n    width: 100%;\n    order: 3;\n    text-align: center;\n  }\n}\n\n.donation-selection-area .perks .perk .perk-desc {\n  font-size: 16px;\n  font-weight: 300;\n  display: none;\n  padding: 20px;\n  width: 100%;\n  box-sizing: border-box;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .perk-desc {\n    display: block;\n    margin: 0 11px 0 11px;\n    order: 4;\n    padding-left: 4px;\n    padding-right: 4px;\n    width: auto;\n  }\n}\n\n.donation-selection-area .perks .perk .perk-sub-select {\n  display: none;\n  border-color: #aeaeae;\n  margin: 10px 10px 10px 10px;\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .perk .perk-sub-select {\n  
   display: block;\n    order: 5;\n    width: 92%;\n  }\n}\n\n.donation-selection-area .perks .selected {\n  background-color: #68b030;\n  transition: all 0.5s;\n}\n\n.donation-selection-area .perks .selected .slides {\n  display: block;\n}\n\n.donation-selection-area .perks .selected .perk-desc {\n  display: block;\n}\n\n.donation-selection-area .perks .selected .perk-sub-select {\n  display: block;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .perks .selected {\n    background-color: #fff;\n    box-shadow: 8px 8px #68b030;\n    position: relative;\n    top: -4px;\n  }\n}\n\n.donation-selection-area .totals-area {\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  justify-content: center;\n  margin-bottom: 4%;\n  position: relative;\n}\n\n.donation-selection-area .totals-area, .donation-selection-area .totals-area div, .donation-selection-area .totals-area input {\n  position: relative;\n  z-index: 1;\n}\n\n.donation-selection-area .totals-area .fist-b
 g {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 0;\n  height: auto;\n}\n\n at media (min-width: 767px) {\n  .donation-selection-area .totals-area {\n    order: 4;\n    width: 100%;\n  }\n}\n\n.donation-selection-area .totals-area .matching-message {\n  color: #59316B;\n  font-size: 35px;\n  line-height: normal;\n  padding-top: 10px;\n  text-align: center;\n  width: 100%;\n}\n\n.donation-selection-area .totals-area .matched-amount {\n  color: #59316B;\n  font-size: 100px;\n  font-weight: bold;\n  line-height: normal;\n  text-align: center;\n  width: 100%;\n}\n\n.payment-method-area,\n.info-area {\n  position: relative;\n  z-index: 2;\n}\n\n.payment-method-area {\n  border-bottom: 2px solid #aeaeae;\n  border-top: 2px solid #aeaeae;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  margin-top: 20px;\n  padding: 4% 21px;\n  text-align: center;\n}\n\n.payment-method-area .button {\n  width: 160px;\n  vertical-align: top;\n}\n\n.payment-method-area .
 button.paypal {\n  padding-top: 8px;\n  padding-bottom: 5px;\n}\n\n.payment-method-area .paypal-png {\n  height: 32px;\n}\n\n.payment-method-area .payment-method-question {\n  margin-bottom: 3%;\n}\n\n.payment-method-area .payment-option {\n  margin-bottom: 2%;\n}\n\n.info-area {\n  padding-top: 4%;\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 600px;\n  text-align: center;\n}\n\n.info-area #firstName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #firstName {\n    width: 50%;\n  }\n}\n\n.info-area #lastName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #lastName {\n    width: 50%;\n  }\n}\n\n.info-area #streetAddress {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #streetAddress {\n    width: 80%;\n  }\n}\n\n.info-area #extendedAddress {\n  width: 20%;\n}\n\n.info-area #country {\n  width: 100%;\n}\n\n.info-area #locality {\n  width: 38%;\n}\n\n at media (min-width: 767px) {\n  .info-area #locality {\n    width: 33%
 ;\n  }\n}\n\n.info-area #region {\n  width: 45%;\n}\n\n at media (min-width: 767px) {\n  .info-area #region {\n    width: 34%;\n  }\n}\n\n.info-area #postalCode {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #postalCode {\n    width: 33%;\n  }\n}\n\n.info-area #email {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #email {\n    width: 56%;\n  }\n}\n\n.info-area .receipt {\n  display: none;\n}\n\n at media (min-width: 767px) {\n  .info-area .receipt {\n    display: block;\n  }\n}\n\n.info-area #mailingListOptIn {\n  margin: 10px 4px 10px 10px;\n}\n\n.info-area #cardNumber {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .info-area #cardNumber {\n    width: 56%;\n  }\n}\n\n.info-area img.credit-cards {\n  display: none;\n}\n\n at media (min-width: 767px) {\n  .info-area img.credit-cards {\n    display: block;\n    height: 29px;\n    vertical-align: middle;\n  }\n}\n\n.info-area #expMonth {\n  width: 38%;\n}\n\n at media (min-width: 767px) {\n  .info-area
  #expMonth {\n    width: 33%;\n  }\n}\n\n.info-area #expYear {\n  width: 38.5%;\n}\n\n at media (min-width: 767px) {\n  .info-area #expYear {\n    width: 33%;\n  }\n}\n\n.info-area #cvc {\n  width: 38%;\n}\n\n at media (min-width: 767px) {\n  .info-area #cvc {\n    width: 33%;\n  }\n}\n\n.info-area #perk-fields {\n  display: block;\n  margin: 10px;\n  text-align: left;\n}\n\n.info-area #perk-fields #selected-perk-fields-label {\n  margin-top: 10px;\n}\n\n.info-area #perk-fields #perk-fit {\n  margin-left: 0px;\n}\n\n.info-area .donate-submit-area {\n  color: #848282;\n  font-size: 22px;\n  font-weight: bold;\n  padding: 20px 0;\n}\n\n.info-area .donate.button {\n  background-color: #68b030;\n  color: #fff;\n  text-transform: uppercase;\n  width: 300px;\n}\n\n#donate-comments-wrapper {\n  text-align: left;\n}\n\n#donate-comments-wrapper textarea {\n  width: 95%;\n}\n\n at media (min-width: 767px) {\n  #donate-comments-wrapper textarea {\n    width: 97%;\n  }\n}\n\n.no-close .ui-dialog-titleba
 r-close {\n  display: none;\n}\n\n.ui-dialog {\n  background-color: #fff;\n  text-align: center;\n  z-index: 100;\n}\n\n.ui-dialog .loading-message {\n  margin: 20px;\n}\n\n.ui-dialog .loading-dot-conatiner {\n  display: flex;\n  justify-content: center;\n}\n\n.ui-dialog .loading-circle {\n  display: block;\n  width: 15px;\n  height: 15px;\n  margin-right: 0.5%;\n  margin-left: 0.5%;\n  border-radius: 20px;\n  background-color: #8cd621;\n  opacity: 0.3;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+1) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 0;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+2) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 0.5s;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+3) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 1s;\n}\n\n.ui-dia
 log .loading-circle:nth-child(0n+4) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 1.5s;\n}\n\n.ui-dialog .loading-circle:nth-child(0n+5) {\n  animation-name: moving-dot;\n  animation-duration: 2.5s;\n  animation-iteration-count: infinite;\n  animation-delay: 2s;\n}\n\n at keyframes moving-dot {\n  from {\n    opacity: 0.3;\n  }\n  20% {\n    opacity: 1;\n  }\n  to {\n    opacity: 0.3;\n  }\n}\n\n#loading-overlay {\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: #484848;\n  z-index: 99;\n}\n\n.donor-faq {\n  margin: 40px auto;\n  width: 90%;\n}\n\n at media (min-width: 991px) {\n  .donor-faq {\n    width: 80%;\n  }\n}\n\n.donor-faq .questions {\n  list-style-position: inside;\n  padding-left: 0px;\n}\n\n.donor-faq .questions li {\n  color: #59316B;\n  font-size: 20px;\n  font-weight: 700;\n  line-height: 29px;\n}\n\n at media (min-width: 991px) {\n  .donor-faq .questions li {
 \n    font-size: 25px;\n    line-height: 34px;\n  }\n}\n\n.donor-faq .questions .question {\n  color: #59316B;\n  display: inline;\n  font-size: 20px;\n  margin-bottom: 10px;\n  margin-top: 10px;\n}\n\n at media (min-width: 991px) {\n  .donor-faq .questions .question {\n    font-size: 25px;\n  }\n}\n\n.donor-faq .questions .answer {\n  color: #484848;\n  font-family: \"Source Sans Pro\", sans-serif;\n  font-size: 16px;\n  line-height: 20px;\n  font-weight: 300;\n}\n\n.donor-faq .button-line {\n  width: 100%;\n}\n\n.button-line {\n  text-align: center;\n}\n\n.error-container {\n  display: block;\n  width: 50%;\n  min-height: 100px;\n  margin-right: auto;\n  margin-bottom: 5%;\n  margin-left: auto;\n  padding: 2% 5%;\n  border: 1px solid #aeaeae;\n  box-shadow: 11px 11px 0 0 #e70000;\n}\n\n.error-container .title {\n  margin-bottom: 3%;\n  color: #e70000;\n  font-size: 34px;\n  line-height: 40px;\n  text-align: center;\n}\n\n.donate-match-container,\n#company-profile-container,\n#hepdata
 -no-results-message {\n  text-align: center;\n  margin-bottom: 60px;\n}\n\n.donate-match-container input,\n.donate-match-container datalist,\n.donate-match-container .input-and-loader {\n  width: 300px;\n}\n\n.donate-match-container .input-and-loader {\n  margin: auto;\n  position: relative;\n}\n\n.donate-match-container .input-and-loader input {\n  height: 30px;\n  padding: 3px;\n  border-style: solid;\n  text-align: center;\n  font-weight: 600;\n}\n\n.donate-match-container .input-and-loader .load-container {\n  display: none;\n  height: 30px;\n  width: 30px;\n  overflow: hidden;\n  position: absolute;\n  top: 4px;\n  right: -6px;\n}\n\n.donate-match-container .input-and-loader .load-container .loader,\n.donate-match-container .input-and-loader .load-container .loader:before,\n.donate-match-container .input-and-loader .load-container .loader:after {\n  background: #59316B;\n  animation: load1 1s infinite ease-in-out;\n  width: 1em;\n  height: 4em;\n}\n\n.donate-match-container .in
 put-and-loader .load-container .loader {\n  color: #59316B;\n  text-indent: -9999em;\n  margin: 10px auto;\n  position: relative;\n  font-size: 4px;\n  transform: translateZ(0);\n  animation-delay: -0.16s;\n}\n\n.donate-match-container .input-and-loader .load-container .loader:before,\n.donate-match-container .input-and-loader .load-container .loader:after {\n  position: absolute;\n  top: 0;\n  content: '';\n}\n\n.donate-match-container .input-and-loader .load-container .loader:before {\n  left: -1.5em;\n  animation-delay: -0.32s;\n}\n\n.donate-match-container .input-and-loader .load-container .loader:after {\n  left: 1.5em;\n}\n\n at -webkit-keyframes load1 {\n  0%,\n  80%,\n  100% {\n    box-shadow: 0 0;\n    height: 4em;\n  }\n  40% {\n    box-shadow: 0 -2em;\n    height: 5em;\n  }\n}\n\n at keyframes load1 {\n  0%,\n  80%,\n  100% {\n    box-shadow: 0 0;\n    height: 4em;\n  }\n  40% {\n    box-shadow: 0 -2em;\n    height: 5em;\n  }\n}\n\n.donate-match-container #company-option-list {
 \n  width: 300px;\n  margin: 0 auto;\n  max-height: 300px;\n  overflow-x: hidden;\n  overflow-y: auto;\n  background-color: #F8F9FA;\n  border: #7D4698 1px solid;\n  display: none;\n}\n\n.donate-match-container #company-option-list .company-option {\n  word-wrap: break-word;\n  padding: 5px 2px;\n}\n\n.donate-match-container #company-option-list .company-option:hover {\n  background-color: #68b030;\n  color: #fff;\n}\n\n.donate-error-message {\n  color: #aeaeae;\n  padding: 0 10%;\n  word-break: break-all;\n  text-align: center;\n}\n\n#company-profile-container .profile {\n  display: none;\n  width: 75%;\n  margin: auto;\n}\n\n#company-profile-container .profile .row {\n  margin: 20px 0;\n}\n\n#company-profile-container .profile .row .company-property-label {\n  width: 30%;\n  text-align: right;\n  font-weight: 700;\n}\n\n#company-profile-container .profile .row .company-property-value {\n  text-align: left;\n  width: 60%;\n}\n\n#company-profile-container .profile .row .company-prop
 erty-value#summary-value {\n  width: auto;\n  font-size: 25px;\n  line-height: 34px;\n  text-align: center;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value .company {\n  font-weight: 700;\n  color: #7D4698;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value .percent {\n  font-weight: 700;\n  color: #68b030;\n}\n\n#company-profile-container .profile .row .company-property-value#summary-value .match-amount {\n  font-weight: 700;\n  color: #59316B;\n}\n\n#company-profile-container .profile .row .company-property-value#matchingGiftForm-value {\n  width: auto;\n}\n\n#company-profile-container .profile .row .company-property-value#lastUpdated-value {\n  font-weight: 700;\n  color: #aeaeae;\n}\n\n#company-profile-container .profile .row .company-property-value#matchingConditions-value .ratio {\n  font-weight: 700;\n  color: #59316B;\n}\n\n#company-profile-container .profile .row .company-property-value#resources-value {
 \n  width: auto;\n}\n\n#company-profile-container ul {\n  margin-top: 0px;\n}\n\n#company-profile-container li {\n  margin-bottom: 10px;\n}\n\n.privacy-policy {\n  margin-left: auto;\n  margin-right: auto;\n  width: 70%;\n  margin-bottom: 40px;\n}\n\n.subscribe .fixed-width {\n  max-width: 600px;\n  text-align: center;\n}\n\n.subscribe .fixed-width #email {\n  width: 100%;\n}\n\n.subscribe .fixed-width #firstName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .subscribe .fixed-width #firstName {\n    width: 50%;\n  }\n}\n\n.subscribe .fixed-width #lastName {\n  width: 100%;\n}\n\n at media (min-width: 767px) {\n  .subscribe .fixed-width #lastName {\n    width: 50%;\n  }\n}\n\n.subscribe .fixed-width .join {\n  width: 200px;\n}\n\n.subscribe .fixed-width .messages {\n  color: red;\n  text-align: left;\n}\n\n.header-content .thank-you {\n  width: 80%;\n}\n\n.header-content .thank-you h1 {\n  text-align: center;\n  text-transform: none;\n}\n\n.header-content .thank-you h5 {\n  tex
 t-align: center;\n}\n\n.header-content .thank-you img {\n  width: 50px;\n}\n\n.header-content .thank-you .share-icons {\n  margin: 20px 10px 0px 10px;\n  text-align: center;\n}\n\n at media (min-width: 767px) {\n  .header-content .thank-you {\n    margin-top: -120px;\n    margin-bottom: 30px;\n  }\n}\n\n.content {\n  margin-top: 20px;\n}\n\n.content .thank-you {\n  margin-bottom: 40px;\n}\n\n.content .thank-you h4 {\n  text-align: center;\n}\n\n.content .thank-you .volunteer-desc {\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 490px;\n  text-align: center;\n}\n\n.content .thank-you .volunteer-desc .skills-text {\n  margin-bottom: 20px;\n}\n","hr {\n  border-top: 1px solid $color-green;\n  margin: 40px auto;\n  max-width: 106px;\n}\n","$screen-s: 479px;\n$screen-m: 767px;\n$screen-l: 991px;\n\n// Greyscale colors\n$color-white: #fff;\n$color-very-light-grey: #F8F9FA;\n$color-medium-light-grey: #F1F1F3;\n$color-light-grey: #aeaeae;\n$color-grey: #484848;\n$color-dark-grey: #
 848282;\n$color-white-opacity-40: rgba(255, 255, 255, 0.4);\n\n// Colors\n$color-green: #68b030;\n$color-purple: #7D4698;\n$color-dark-purple: #59316B;\n$color-very-dark-purple: #32173E;\n$color-red: red;\n\n$base-font-color: $color-grey;\n$base-font-family: 'Source Sans Pro', sans-serif;\n$base-font-size: 16px;\n$base-font-weight: 300;\n$base-line-height: 20px;\n\n$font-size-medium: 20px;\n","@mixin base-text() {\n  color: $base-font-color;\n  font-family: $base-font-family;\n  font-size: $base-font-size;\n  line-height: $base-line-height;\n  font-weight: $base-font-weight;\n}\n\nhtml,\nbody,\ninput,\ntextarea {\n  @include base-text();\n}\n\nh1 {\n  font-size: 47px;\n  letter-spacing: 2px;\n  line-height: 50px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: capitalize;\n\n  @include breakpoint($screen-m) {\n    font-size: 50px;\n    line-height: 60px;\n  }\n\n  @include breakpoint($screen-l) {\n    font-size: 55px;\n  }\n}\n\nh2 {\n  font-size: 25px;\n  font-weight: 70
 0;\n  line-height: 1;\n  margin-bottom: 1%;\n  margin-top: 0;\n\n  @include breakpoint($screen-m) {\n    font-size: 34px;\n  }\n}\n\nh3 {\n  font-size: 27px;\n  font-weight: 700;\n  text-transform: uppercase;\n  margin-bottom: 1%;\n  margin-top: 0;\n}\n\nh4 {\n  font-size: 27px;\n  font-weight: 400;\n  letter-spacing: 0px;\n  line-height: normal;\n  margin-bottom: 1%;\n  margin-top: 0;\n  text-transform: uppercase;\n}\n\nh5 {\n  font-size: 21px;\n  font-weight: 300;\n  line-height: 28px;\n  margin-bottom: 1%;\n  margin-top: 0;\n  letter-spacing: 0.09px;\n\n  @include breakpoint($screen-l) {\n    font-size: 22px;\n  }\n}\n\na {\n  color: $color-purple;\n  font-weight: 700;\n  text-decoration: none;\n  &:hover {\n    color: $color-green;\n  }\n}\n\nb {\n  font-weight: 700;\n}\n\n.bold {\n  font-weight: 700;\n}\n\n.green {\n  color: $color-green;\n}\n\n.light {\n  font-weight: 200;\n}\n\n.email {\n  font-weight: 700;\n}\n\n.small {\n  font-size: 14px;\n}\n\n.strong {\n  color: $color-p
 urple;\n  font-weight: 700;\n}\n\n.tiny {\n  font-size: 12px;\n}\n\n.background-grey {\n  color: $color-medium-light-grey;\n  font-size: 80px;\n  font-weight: bold;\n}\n","//////////////////////////////\n// Default Variables\n//////////////////////////////\n$Breakpoint-Settings: (\n  'default media': all,\n  'default feature': min-width,\n  'default pair': width,\n\n  'force all media type': false,\n  'to ems': false,\n  'transform resolutions': true,\n\n  'no queries': false,\n  'no query fallbacks': false,\n\n  'base font size': 16px,\n\n  'legacy syntax': false\n);\n\n$breakpoint: () !default;\n\n//////////////////////////////\n// Imports\n//////////////////////////////\n at import \"breakpoint/settings\";\n at import 'breakpoint/context';\n at import 'breakpoint/helpers';\n at import 'breakpoint/parsers';\n at import 'breakpoint/no-query';\n\n at import 'breakpoint/respond-to';\n\n at import \"breakpoint/legacy-settings\";\n\n//////////////////////////////\n// Breakpoint Mixin\n/////////////////////
 /////////\n\n at mixin breakpoint($query, $no-query: false) {\n  @include legacy-settings-warning;\n\n  // Reset contexts\n  @include private-breakpoint-reset-contexts();\n\n  $breakpoint: breakpoint($query, false);\n\n  $query-string: map-get($breakpoint, 'query');\n  $query-fallback: map-get($breakpoint, 'fallback');\n\n  $private-breakpoint-context-holder: map-get($breakpoint, 'context holder') !global;\n  $private-breakpoint-query-count: map-get($breakpoint, 'query count') !global;\n\n  // Allow for an as-needed override or usage of no query fallback.\n  @if $no-query != false {\n    $query-fallback: $no-query;\n  }\n\n  @if $query-fallback != false {\n    $context-setter: private-breakpoint-set-context('no-query', $query-fallback);\n  }\n\n  // Print Out Query String\n  @if not breakpoint-get('no queries') {\n    @media #{$query-string} {\n      @content;\n    }\n  }\n\n  @if breakpoint-get('no query fallbacks') != false or breakpoint-get('no queries') == true {\n\n    $type: type
 -of(breakpoint-get('no query fallbacks'));\n    $print: false;\n\n    @if ($type == 'bool') {\n      $print: true;\n    }\n    @else if ($type == 'string') {\n      @if $query-fallback == breakpoint-get('no query fallbacks') {\n        $print: true;\n      }\n    }\n    @else if ($type == 'list') {\n      @each $wrapper in breakpoint-get('no query fallbacks') {\n        @if $query-fallback == $wrapper {\n          $print: true;\n        }\n      }\n    }\n\n    // Write Fallback\n    @if ($query-fallback != false) and ($print == true) {\n      $type-fallback: type-of($query-fallback);\n\n      @if ($type-fallback != 'bool') {\n        #{$query-fallback} & {\n          @content;\n        }\n      }\n      @else {\n        @content;\n      }\n    }\n  }\n\n  @include private-breakpoint-reset-contexts();\n}\n\n\n at mixin mq($query, $no-query: false) {\n  @include breakpoint($query, $no-query) {\n    @content;\n  }\n}\n","input[type=\"checkbox\"] {\n  margin-top: auto;\n  margin-bottom: a
 uto;\n  margin-right: 4px;\n}\n\ninput[type=\"text\"],\ntextarea {\n  border: 1px solid $color-dark-grey;\n  color: $color-grey;\n  font-size: 16px;\n  height: 27px;\n  margin: 9px;\n  padding: 8px 12px;\n  &.required {\n    border-color: $color-green;\n  }\n  &.error {\n    border-color: $color-red;\n  }\n  &::placeholder {\n    color: $color-light-grey;\n  }\n  &:focus {\n    border-color: $color-dark-purple;\n    color: $color-purple;\n    outline: none;\n  }\n}\ntextarea {\n  box-sizing: border-box;\n  width: 60%;\n  height: 3em;\n  display: block;\n  padding: 8px 12px;\n}\nselect {\n  background: $color-white;\n  border: 1px solid $color-dark-grey;\n  color: $color-grey;\n  font-size: 16px;\n  height: 45px;\n  margin: 9px;\n  padding: 8px 12px;\n  &.required {\n    border-color: $color-green;\n    color: $color-grey;\n  }\n  &.error {\n    border-color: $color-red;\n  }\n  &:focus {\n    border-color: $color-dark-purple;\n    color: $color-purple;\n    outline: none;\n  }\n}\n\
 n.field-row {\n  align-items: center;\n  box-sizing: border-box;\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  width: 100%;\n\n  @include breakpoint($screen-m) {\n    flex-wrap: nowrap;\n  }\n}\n\n.required {\n  color: $color-green;\n}\n",".button {\n  background-color: $color-white;\n  border: 1px solid $color-dark-grey;\n  border-radius: 5px;\n  color: $color-grey;\n  display: inline-block;\n  font-size: 20px;\n  font-weight: normal;\n  margin: 7px;\n  padding: 14px 10px;\n  text-transform: uppercase;\n  width: 90%;\n  &.purple {\n    background-color: $color-purple;\n    color: $color-white;\n    &:hover {\n      background-color: $color-dark-purple;\n    }\n  }\n  &:hover {\n    background-color: $color-green;\n    color: $color-white;\n    cursor: pointer;\n  }\n  &.selected {\n    background-color: $color-green;\n    color: $color-white;\n    cursor: default;\n  }\n\n  @include breakpoint($screen-s) {\n    width: auto;\n  }\n}\n\na.button {\n  font-size: 16p
 x;\n  font-weight: normal;\n  padding: 14px 10px;\n  text-decoration: none;\n\n  @include breakpoint($screen-m) {\n    font-size: 20px;\n    width: auto;\n  }\n}\n","body {\n  margin: 0;\n}\n\ndiv {\n  box-sizing: border-box;\n}\n",".header {\n  background-color: $color-dark-purple;\n  color: $color-white;\n  width: 100%;\n  padding: 50px 50px 50px 10%;\n  @include breakpoint($screen-m) {\n    padding-right: 0px;\n    padding-bottom: 0px;\n  }\n\n  h1 {\n    margin-bottom: 30px;\n    font-size: 36px;\n    font-weight: 300;\n    line-height: 40px;\n    @include breakpoint($screen-m) {\n      font-size: 40px;\n      line-height: 40px;\n    }\n    @include breakpoint($screen-l) {\n      font-size: 60px;\n      line-height: 60px;\n    }\n  }\n\n  h4 {\n    text-transform: none;\n    font-size: 14px;\n    line-height: 14px;\n    font-weight: 400;\n    @include breakpoint($screen-m) {\n      font-size: 16px;\n      line-height: 18px;\n    }\n    @include breakpoint($screen-l) {\n      fon
 t-size: 20px;\n      line-height: 25px;\n    }\n  }\n\n  .content-wrapper {\n    width: 100%;\n\n    .header-content {\n      display: flex;\n      align-items: flex-end;\n      .left-column {\n        display: block;\n        @include breakpoint($screen-m) {\n          margin-right: 2%;\n          flex: 1 1 40%;\n          margin-bottom: 60px;\n          margin-right: 45%;\n        }\n      }\n    }\n  }\n\n  .tor-campaign-logo {\n    flex: 1 1 58%;\n    max-width: 750px;\n    display: none;\n    position: relative;\n    @include breakpoint($screen-l) {\n      display: block;\n    }\n    img {\n      width: 100%;\n      height: auto;\n      position: absolute;\n      bottom: 0px;\n      right: 0px;\n    }\n  }\n\n  .logo {\n    width: 81px;\n  }\n\n  .nav-bar {\n    margin-bottom: 30px;\n    @include breakpoint($screen-m) {\n      margin-bottom: 80px;\n    }\n  }\n}\n",".content {\n  margin: 0 0 0 0;\n  padding: 0 0 0 0;\n\n  .fixed-width {\n    margin-left: auto;\n    margin-right
 : auto;\n\n    @include breakpoint($screen-m) {\n      max-width: 728px;\n    }\n\n    @include breakpoint($screen-l) {\n      max-width: 940px;\n    }\n  }\n}\n",".footer-container {\n  display: flex;\n  flex-direction: column;\n  flex-wrap: wrap;\n  justify-content: space-around;\n  background-color: $color-dark-purple;\n  color: $color-white;\n  padding: 70px 30px 30px 30px;\n  a {\n    color: $color-white;\n  }\n  @include breakpoint($screen-m) {\n    padding-top: 100px;\n  }\n  .footer-content {\n    display: flex;\n    width: 100%;\n    max-width: 900px;\n    margin: 0 auto 30px auto;\n    flex-wrap: wrap;\n    @include breakpoint($screen-m) {\n      flex-wrap: nowrap;\n    }\n  }\n  .footer-content-left {\n    flex: 1 1 100%;\n    margin-bottom: 70px;\n    @include breakpoint($screen-m) {\n      flex: 1 1 60%;\n      margin-right: 150px;\n      margin-bottom: 0px;\n    }\n  }\n  .footer-content-right {\n    display: flex;\n    flex: 1 1 100%;\n    align-items: center;\n    fl
 ex-direction: column;\n    @include breakpoint($screen-m) {\n      align-items: inherit;\n      flex: 1 1 auto;\n    }\n  }\n  .footer-description {\n    margin-bottom: 70px;\n    font-size: 20px;\n    line-height: 24px;\n    @include breakpoint($screen-m) {\n      margin-bottom: 100px;\n    }\n  }\n  .footer-subscribe {\n    font-size: 17px;\n    line-height: 20px;\n    .footer-subscribe-header {\n      margin-bottom: 5px;\n      font-weight: 600;\n      text-transform: uppercase;\n      color: $color-white-opacity-40;\n    }\n    .footer-sign-up {\n      display: inline-block;\n      padding: 15px 30px;\n      border-radius: 4px;\n      border: 1px solid $color-white;\n      font-weight: 700;\n      text-transform: uppercase;\n      margin-top: 15px;\n      &:hover {\n        background-color: $color-purple;\n      }\n    }\n  }\n  .footer-menu {\n    display: flex;\n    flex-direction: row;\n    width: 100%;\n    margin-bottom: 70px;\n    justify-content: space-evenly;\n    a {\n
       display: block;\n      font-weight: 300;\n      line-height: 30px;\n      &:hover {\n        color: $color-light-grey;\n      }\n    }\n    @include breakpoint($screen-m) {\n      margin-bottom: 200px;\n      flex-direction: column;\n    }\n  }\n  .footer-social {\n    display: flex;\n    flex-wrap: wrap;\n    width: 100%;\n    justify-content: center;\n    @include breakpoint($screen-m) {\n      width: 155px;\n      justify-content: inherit;\n    }\n    a {\n      display: block;\n      text-indent: -999em;\n      background-size: cover;\n      background-repeat: no-repeat;\n      width: 20px;\n      height: 20px;\n      margin-right: 30px;\n      &.facebook,\n      &.mastodon,\n      &.twitter {\n        margin-bottom: 20px;\n      }\n      &.facebook {\n        background-image: url('/images/facebook.svg');\n      }\n      &.mastodon {\n        background-image: url('/images/mastodon.svg');\n      }\n      &.twitter {\n        width: 24px;\n        background-image: url('/i
 mages/twitter.svg');\n        @include breakpoint($screen-m) {\n          margin-right: 0px;\n        }\n      }\n      &.instagram {\n        background-image: url('/images/instagram.svg');\n      }\n      &.linkedin {\n        background-image: url('/images/linkedin.svg');\n      }\n      &.github {\n        background-image: url('/images/github.svg');\n        @include breakpoint($screen-m) {\n          margin-right: 0px;\n        }\n      }\n    }\n  }\n}\n\n.gr-stamp-container {\n  display: block;\n  text-align: center;\n  a:hover {\n    color: $color-green;\n  }\n}\n",".front .header {\n  @include breakpoint($screen-m) {\n    background-image: url('../images/tor-header-campaign-2018.svg');\n    background-position: bottom right;\n    background-repeat: no-repeat;\n    background-size: 40%;\n\n    h4 {\n      padding-right: 10%;\n    }\n  }\n}\n\n.campaign-totals-area {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: center;\n\n  .characters {\n    display: flex;\n   
  justify-content: center;\n    line-height: normal;\n    margin: 10px 30px;\n\n    .character {\n      position: relative;\n\n      .cover {\n        background: $color-green;\n        bottom: 0;\n        left: 0;\n        position: absolute;\n        visibility: hidden;\n        right: 0;\n        top: 0;\n        z-index: 1;\n      }\n\n      &.covered .cover {\n        visibility: visible;\n      }\n\n      &.resolved {\n        color: $color-green;\n      }\n    }\n  }\n\n  .label {\n    font-size: 27px;\n    text-align: center;\n  }\n\n}\n\n.donate-options {\n  display: flex;\n  justify-content: center;\n  margin: 30px auto 2%;\n  width: 92vw;\n\n  a {\n    background-color: $color-white;\n    border: 2px solid $color-light-grey;\n    color: $color-light-grey;\n    font-weight: normal;\n    display: block;\n    text-align: center;\n    text-decoration: none;\n    text-transform: uppercase;\n  }\n\n  a.once-button {\n    border-radius: 5px 0 0 5px;\n    margin-right: 0;\n    pad
 ding-left: 15px;\n    padding-right: 15px;\n    width: 150px;\n  }\n\n  a.monthly-button {\n    border-left: 0;\n    border-radius: 0 5px 5px 0;\n    margin-left: 0;\n    padding-left: 15px;\n    padding-right: 15px;\n    width: 160px;\n  }\n\n  a.selected, a:hover {\n    background-color: $color-green;\n    color: $color-white;\n  }\n}\n.payment-other-div {\n  text-align: center;\n  margin-bottom: 20px;\n}\n.perk-intro {\n  display: flex;\n  flex-wrap: wrap;\n  margin: 2% 5% 2% 5%;\n  justify-content: center;\n  text-align: center;\n\n  .perk-title {\n    font-size: 22px;\n    margin-bottom: 0px;\n  }\n}\n\n.price-change-warning {\n  color: red;\n}\n\n#donationForm {\n  margin: 0 auto 40px auto;\n  max-width: 1024px;\n}\n\n.donation-selection-area {\n  display: flex;\n  flex-direction: row;\n  flex-wrap: wrap;\n  margin: auto 2% auto 2%;\n  max-width: 1024px;\n  justify-content: center;\n\n  @include breakpoint($screen-m) {\n    flex-direction: row;\n  }\n\n  .donate-buttons {\n   
  align-items: center;\n    align-self: center;\n    display: flex;\n    flex-direction: row;\n    flex-wrap: wrap;\n    justify-content: center;\n    margin: 5px;\n\n    @include breakpoint($screen-m) {\n      flex-direction: row;\n      margin-right: 5px;\n    }\n\n    a.price-btn {\n      background-color: $color-dark-purple;\n      border-radius: 5px;\n      color: $color-white;\n      display: block;\n      font-size: 23px;\n      font-weight: normal;\n      margin: 5px;\n      padding: 20px 0px;\n      text-align: center;\n      text-decoration: none;\n      width: 120px;\n      @include breakpoint($screen-m) {\n        font-size: 29px;\n      }\n      &.promo {\n        position: relative;\n        &::before {\n          position: absolute;\n          display: block;\n          background-color: $color-green;\n          color: $color-white;\n          content: 'LIMITED OFFER';\n          width: 80px;\n          height: 20px;\n          font-size: 12px;\n          top: -9px;\n 
          left: 13px;\n          padding: 0px 8px;\n          border-radius: 16px;\n          font-weight: 300;\n        }\n      }\n    }\n\n    a.selected {\n      background-color: $color-green;\n    }\n\n    .other-amount-field {\n      .error {\n        color: $color-red;\n        display: block;\n        text-align: center;\n      }\n\n      align-items: center;\n      display: flex;\n      flex-direction: column;\n      justify-content: center;\n      .perk-amt {\n        background-color: #f1f1f3;\n        font-size: 23px;\n        font-weight: bold;\n        height: 42px;\n        margin: 5px;\n        min-width: 80px;\n        text-transform: capitalize;\n        text-align: center;\n        width: 94px;\n      }\n    }\n  }\n\n  .no-perk-area {\n    margin: 1% 1% 20px 1%;\n    width: 100%;\n    text-align: center;\n  }\n\n  label[for=\"no-perk-checkbox\"] {\n    font-size: 20px;\n    line-height: 24px;\n  }\n\n  .perks {\n    align-self: center;\n    display: flex;\n    fl
 ex-direction: column;\n    width: 100%;\n    margin-top: 20px;\n    position: relative;\n    z-index: 2;\n    justify-content: space-evenly;\n\n    @include breakpoint($screen-m) {\n      border: none;\n      flex-direction: row;\n    }\n\n    .perk {\n      border-color: $color-light-grey;\n      border-style: solid;\n      border-width: 0px 1px 1px 1px;\n      display: flex;\n      flex-direction: row;\n      flex-wrap: wrap;\n      justify-content: space-between;\n\n      &:first-child {\n        border-top-width: 1px;\n      }\n\n      @include breakpoint($screen-m) {\n        border: 1px solid $color-light-grey;\n        flex-direction: column;\n        justify-content: flex-start;\n        margin: 0px 5px 20px 5px;\n        position: relative;\n        width: 30%;\n        top: 0px;\n        flex-wrap: nowrap;\n      }\n\n      &.disabled {\n        border-color: $color-very-light-grey;\n        color: $color-light-grey;\n        font-style: italic;\n\n        img {\n         
  opacity: 0.2;\n        }\n\n        select {\n          color: $color-light-grey;\n          font-style: italic;\n        }\n\n        .promo-red-dot {\n          background-color: $color-light-grey;\n        }\n        .promo-price {\n          color: $color-light-grey;\n        }\n      }\n\n      .slides {\n        position: relative;\n        align-self: center;\n        display: none;\n        height: 175px;\n        overflow: hidden;\n        width: 100%;\n\n        @include breakpoint($screen-m) {\n          display: block;\n          order: 2;\n        }\n      }\n\n      img {\n        display: block;\n        margin: 0 auto;\n        max-width: 50%;\n        height: auto;\n        @include breakpoint($screen-m) {\n          width: 85%;\n          max-width: none;\n        }\n      }\n\n      .promo-red-dot {\n        position: absolute;\n        background: $color-red;\n        top: 45px;\n        right: 15px;\n        color: $color-white;\n        padding: 10px 20px;\n  
       font-size: 28px;\n        line-height: 31px;\n        font-weight: bold;\n        border-radius: 40px;\n      }\n\n      .price-tag-group {\n        margin: 20px 0 20px 20px;\n        font-size: 21px;\n        font-weight: 600;\n        width: 40%;\n        @include breakpoint($screen-m) {\n          font-size: 16px;\n          order: 1;\n          width: 100%;\n        }\n      }\n\n      .promo-strike-through {\n        text-decoration: line-through;\n      }\n      .promo-price {\n        color: $color-dark-purple;\n        font-weight: 700;\n        &.large {\n          font-size: 22px;\n          font-weight: 600;\n        }\n      }\n\n      .perk-label {\n        font-size: 21px;\n        font-weight: 700;\n        margin: 20px 20px 20px 0;\n        text-align: right;\n        text-transform: uppercase;\n        width: 40%;\n        box-sizing: border-box;\n\n        @include breakpoint($screen-m) {\n          margin: 0;\n          padding: 20px;\n          padding-bott
 om: 0;\n          font-size: 27px;\n          width: 100%;\n          order: 3;\n          text-align: center;\n        }\n      }\n\n      .perk-desc {\n        font-size: 16px;\n        font-weight: 300;\n        display: none;\n        padding: 20px;\n        width: 100%;\n        box-sizing: border-box;\n\n        @include breakpoint($screen-m) {\n          display: block;\n          margin: 0 11px 0 11px;\n          order: 4;\n          padding-left: 4px;\n          padding-right: 4px;\n          width: auto;\n        }\n      }\n\n      .perk-sub-select {\n        display: none;\n        border-color: #aeaeae;\n        margin: 10px 10px 10px 10px;\n        width: 100%;\n\n        @include breakpoint($screen-m) {\n          display: block;\n          order: 5;\n          width: 92%;\n        }\n      }\n    }\n\n    .selected {\n      background-color: $color-green;\n      transition: all 0.5s;\n\n      .slides {\n        display: block;\n      }\n\n      .perk-desc {\n        
 display: block;\n      }\n\n      .perk-sub-select {\n        display: block;\n      }\n\n      @include breakpoint($screen-m) {\n        background-color: $color-white;\n        box-shadow: 8px 8px $color-green;\n        position: relative;\n        top: -4px;\n      }\n    }\n  }\n\n  .totals-area {\n    display: flex;\n    flex-direction: row;\n    flex-wrap: wrap;\n    justify-content: center;\n    margin-bottom: 4%;\n    position: relative;\n\n    &, div, input {\n      position: relative;\n      z-index: 1;\n    }\n\n    .fist-bg {\n      position: absolute;\n      top: 0;\n      right: 0;\n      z-index: 0;\n      height: auto;\n    }\n\n    @include breakpoint($screen-m) {\n      order: 4;\n      width: 100%;\n    }\n\n    .matching-message {\n      color: $color-dark-purple;\n      font-size: 35px;\n      line-height: normal;\n      padding-top: 10px;\n      text-align: center;\n      width: 100%;\n    }\n\n    .matched-amount {\n      color: $color-dark-purple;\n      font
 -size: 100px;\n      font-weight: bold;\n      line-height: normal;\n      text-align: center;\n      width: 100%;\n    }\n\n  }\n}\n\n.payment-method-area,\n.info-area {\n  position: relative;\n  z-index: 2;\n}\n\n.payment-method-area {\n  border-bottom: 2px solid $color-light-grey;\n  border-top: 2px solid $color-light-grey;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  margin-top: 20px;\n  padding: 4% 21px;\n  text-align: center;\n\n  .button {\n    width: 160px;\n    vertical-align: top;\n  }\n\n  .button.paypal {\n    padding-top: 8px;\n    padding-bottom: 5px;\n  }\n\n  .paypal-png {\n    height: 32px;\n  }\n\n  .payment-method-question {\n    margin-bottom: 3%;\n  }\n\n  .payment-option {\n    margin-bottom: 2%;\n  }\n}\n\n.info-area {\n  padding-top: 4%;\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 600px;\n  text-align: center;\n\n\n  #firstName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  
 }\n  #lastName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n  #streetAddress {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 80%;\n    }\n  }\n  #extendedAddress {\n    width: 20%;\n  }\n  #country {\n    width: 100%;\n  }\n  #locality {\n    width: 38%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #region {\n    width: 45%;\n    @include breakpoint($screen-m) {\n      width: 34%;\n    }\n  }\n  #postalCode {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #email {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 56%;\n    }\n  }\n  .receipt {\n    display: none;\n    @include breakpoint($screen-m) {\n      display: block;\n    }\n  }\n  #mailingListOptIn {\n    margin: 10px 4px 10px 10px;\n  }\n  #cardNumber {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 56%;\n    }\n  }\n  img.credit-cards {\n    dis
 play: none;\n\n    @include breakpoint($screen-m) {\n      display: block;\n      height: 29px;\n      vertical-align: middle;\n    }\n  }\n  #expMonth {\n    width: 38%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #expYear {\n    width: 38.5%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #cvc {\n    width: 38%;\n    @include breakpoint($screen-m) {\n      width: 33%;\n    }\n  }\n  #perk-fields {\n    display: block;\n    margin: 10px;\n    text-align: left;\n\n    #selected-perk-fields-label {\n      margin-top: 10px;\n    }\n\n    #perk-fit {\n      margin-left: 0px;\n    }\n  }\n\n  .donate-submit-area {\n    color: $color-dark-grey;\n    font-size: 22px;\n    font-weight: bold;\n    padding: 20px 0;\n  }\n\n  .donate.button {\n    background-color: $color-green;\n    color: $color-white;\n    text-transform: uppercase;\n    width: 300px;\n  }\n}\n\n#donate-comments-wrapper {\n  text-align: left;\n\n  textarea {\n    width: 
 95%;\n\n    @include breakpoint($screen-m) {\n      width: 97%;\n    }\n  }\n}\n",".no-close .ui-dialog-titlebar-close {\n  display: none;\n}\n\n.ui-dialog {\n  background-color: $color-white;\n  text-align: center;\n  z-index: 100;\n\n  .loading-message {\n    margin: 20px;\n  }\n\n  .loading-dot-conatiner {\n    display: flex;\n    justify-content: center;\n  }\n\n  .loading-circle {\n    display: block;\n    width: 15px;\n    height: 15px;\n    margin-right: 0.5%;\n    margin-left: 0.5%;\n    border-radius: 20px;\n    background-color: #8cd621;\n    opacity: 0.3;\n  }\n\n  @mixin moving-dot($delay) {\n    animation-name: moving-dot;\n    animation-duration: 2.5s;\n    animation-iteration-count: infinite;\n    animation-delay: $delay;\n  }\n\n  .loading-circle:nth-child(0n+1) {\n    @include moving-dot(0);\n  }\n\n  .loading-circle:nth-child(0n+2) {\n    @include moving-dot(0.5s);\n  }\n\n  .loading-circle:nth-child(0n+3) {\n    @include moving-dot(1s);\n  }\n\n  .loading-circle:n
 th-child(0n+4) {\n    @include moving-dot(1.5s);\n  }\n\n  .loading-circle:nth-child(0n+5) {\n    @include moving-dot(2s);\n  }\n\n  @keyframes moving-dot {\n    from {\n      opacity: 0.3;\n    }\n\n    20% {\n      opacity: 1;\n    }\n\n    to {\n      opacity: 0.3;\n    }\n  }\n}\n\n#loading-overlay {\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: $color-grey;\n  z-index: 99;\n}\n",".donor-faq {\n  margin: 40px auto;\n  width: 90%;\n  @include breakpoint($screen-l) {\n    width: 80%;\n  }\n\n  .questions {\n    list-style-position: inside;\n    padding-left: 0px;\n\n    li {\n      color: $color-dark-purple;\n      font-size: 20px;\n      font-weight: 700;\n      line-height: 29px;\n\n      @include breakpoint($screen-l) {\n        font-size: 25px;\n        line-height: 34px;\n      }\n    }\n\n    .question {\n      color: $color-dark-purple;\n      display: inline;\n      font-size: 20px;\n      margin-bottom: 10px;\n      margin-top:
  10px;\n\n      @include breakpoint($screen-l) {\n        font-size: 25px;\n      }\n    }\n\n    .answer {\n      @include base-text();\n    }\n  }\n\n  .button-line {\n    width: 100%;\n  }\n}\n\n.button-line {\n  text-align: center;\n}\n",".error-container {\n  display: block;\n  width: 50%;\n  min-height: 100px;\n  margin-right: auto;\n  margin-bottom: 5%;\n  margin-left: auto;\n  padding: 2% 5%;\n  border: 1px solid #aeaeae;\n  box-shadow: 11px 11px 0 0 #e70000;\n\n  .title {\n    margin-bottom: 3%;\n    color: #e70000;\n    font-size: 34px;\n    line-height: 40px;\n    text-align: center;\n  }\n}\n",".donate-match-container,\n#company-profile-container,\n#hepdata-no-results-message {\n  text-align: center;\n  margin-bottom: 60px;\n}\n\n.donate-match-container {\n  input,\n  datalist,\n  .input-and-loader {\n    width: 300px;\n  }\n  .input-and-loader {\n    margin: auto;\n    position: relative;\n\n    input {\n      height: 30px;\n      padding: 3px;\n      border-style: soli
 d;\n      text-align: center;\n      font-weight: 600;\n    }\n    .load-container {\n      display: none;\n      height: 30px;\n      width: 30px;\n      overflow: hidden;\n      position: absolute;\n      top: 4px;\n      right: -6px;\n\n      .loader,\n      .loader:before,\n      .loader:after {\n        background: $color-dark-purple;\n        animation: load1 1s infinite ease-in-out;\n        width: 1em;\n        height: 4em;\n      }\n      .loader {\n        color: $color-dark-purple;\n        text-indent: -9999em;\n        margin: 10px auto;\n        position: relative;\n        font-size: 4px;\n        transform: translateZ(0);\n        animation-delay: -0.16s;\n      }\n      .loader:before,\n      .loader:after {\n        position: absolute;\n        top: 0;\n        content: '';\n      }\n      .loader:before {\n        left: -1.5em;\n        animation-delay: -0.32s;\n      }\n      .loader:after {\n        left: 1.5em;\n      }\n      @-webkit-keyframes load1 {\n      
   0%,\n        80%,\n        100% {\n          box-shadow: 0 0;\n          height: 4em;\n        }\n        40% {\n          box-shadow: 0 -2em;\n          height: 5em;\n        }\n      }\n      @keyframes load1 {\n        0%,\n        80%,\n        100% {\n          box-shadow: 0 0;\n          height: 4em;\n        }\n        40% {\n          box-shadow: 0 -2em;\n          height: 5em;\n        }\n      }\n    }\n  }\n  #company-option-list {\n    width: 300px;\n    margin: 0 auto;\n    max-height: 300px;\n    overflow-x: hidden;\n    overflow-y: auto;\n    background-color: $color-very-light-grey;\n    border: $color-purple 1px solid;\n    display: none;\n    .company-option {\n      word-wrap: break-word;\n      padding: 5px 2px;\n      &:hover {\n        background-color: $color-green;\n        color: $color-white;\n      }\n    }\n  }\n}\n\n.donate-error-message {\n  color: $color-light-grey;\n  padding: 0 10%;\n  word-break: break-all;\n  text-align: center;\n}\n\n#company-pr
 ofile-container {\n  .profile {\n    display: none;\n    width: 75%;\n    margin: auto;\n\n\n    .row {\n      margin: 20px 0;\n\n      .company-property-label {\n        width: 30%;\n        text-align: right;\n        font-weight: 700;\n\n      }\n      .company-property-value {\n        text-align: left;\n        width: 60%;\n\n        &#summary-value {\n          width: auto;\n          font-size: 25px;\n          line-height: 34px;\n          text-align: center;\n          .company {\n            font-weight: 700;\n            color: $color-purple;\n          }\n          .percent {\n            font-weight: 700;\n            color: $color-green;\n          }\n          .match-amount {\n            font-weight: 700;\n            color: $color-dark-purple;\n          }\n        }\n\n        &#matchingGiftForm-value {\n          width: auto;\n        }\n\n        &#lastUpdated-value {\n          font-weight: 700;\n          color: $color-light-grey;\n        }\n\n        &#matchi
 ngConditions-value {\n          .ratio {\n            font-weight: 700;\n            color: $color-dark-purple;\n          }\n        }\n        &#resources-value {\n          width: auto;\n        }\n      }\n    }\n  }\n  ul {\n    margin-top: 0px;\n  }\n  li {\n    margin-bottom: 10px;\n  }\n}\n",".privacy-policy {\n  margin-left: auto;\n  margin-right: auto;\n  width: 70%;\n  margin-bottom: 40px;\n}\n",".subscribe .fixed-width {\n  max-width: 600px;\n  text-align: center;\n\n  #email {\n    width: 100%;\n  }\n\n  #firstName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n\n  #lastName {\n    width: 100%;\n    @include breakpoint($screen-m) {\n      width: 50%;\n    }\n  }\n\n  .join {\n    width: 200px;\n  }\n\n  .messages {\n    color: red;\n    text-align: left;\n  }\n}\n",".header-content {\n  .thank-you {\n    width: 80%;\n\n    h1 {\n      text-align: center;\n      text-transform: none;\n    }\n\n    h5 {\n      text-align: center;
 \n    }\n\n    img {\n      width: 50px;\n    }\n\n    .share-icons {\n      margin: 20px 10px 0px 10px;\n      text-align: center;\n    }\n    @include breakpoint($screen-m) {\n      margin-top: -120px;\n      margin-bottom: 30px;\n    }\n  }\n}\n\n.content {\n  margin-top: 20px;\n\n  .thank-you {\n    margin-bottom: 40px;\n\n    h4 {\n      text-align: center;\n    }\n\n    .volunteer-desc {\n      margin-left: auto;\n      margin-right: auto;\n      max-width: 490px;\n      text-align: center;\n\n      .skills-text {\n\t      margin-bottom: 20px;\n      }\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/sass/components/_donate.scss b/sass/components/_donate.scss
index 67ba7c37..7b4d17a9 100644
--- a/sass/components/_donate.scss
+++ b/sass/components/_donate.scss
@@ -156,10 +156,27 @@
       text-align: center;
       text-decoration: none;
       width: 120px;
-
       @include breakpoint($screen-m) {
         font-size: 29px;
       }
+      &.promo {
+        position: relative;
+        &::before {
+          position: absolute;
+          display: block;
+          background-color: $color-green;
+          color: $color-white;
+          content: 'LIMITED OFFER';
+          width: 80px;
+          height: 20px;
+          font-size: 12px;
+          top: -9px;
+          left: 13px;
+          padding: 0px 8px;
+          border-radius: 16px;
+          font-weight: 300;
+        }
+      }
     }
 
     a.selected {
@@ -210,7 +227,6 @@
     margin-top: 20px;
     position: relative;
     z-index: 2;
-
     justify-content: space-evenly;
 
     @include breakpoint($screen-m) {
@@ -255,9 +271,17 @@
           color: $color-light-grey;
           font-style: italic;
         }
+
+        .promo-red-dot {
+          background-color: $color-light-grey;
+        }
+        .promo-price {
+          color: $color-light-grey;
+        }
       }
 
       .slides {
+        position: relative;
         align-self: center;
         display: none;
         height: 175px;
@@ -281,6 +305,19 @@
         }
       }
 
+      .promo-red-dot {
+        position: absolute;
+        background: $color-red;
+        top: 45px;
+        right: 15px;
+        color: $color-white;
+        padding: 10px 20px;
+        font-size: 28px;
+        line-height: 31px;
+        font-weight: bold;
+        border-radius: 40px;
+      }
+
       .price-tag-group {
         margin: 20px 0 20px 20px;
         font-size: 21px;
@@ -293,6 +330,18 @@
         }
       }
 
+      .promo-strike-through {
+        text-decoration: line-through;
+      }
+      .promo-price {
+        color: $color-dark-purple;
+        font-weight: 700;
+        &.large {
+          font-size: 22px;
+          font-weight: 600;
+        }
+      }
+
       .perk-label {
         font-size: 21px;
         font-weight: 700;
diff --git a/src/DonateController.php b/src/DonateController.php
index 6998f563..5801e2ba 100644
--- a/src/DonateController.php
+++ b/src/DonateController.php
@@ -11,19 +11,25 @@ class DonateController extends BaseController {
 
   public function index($request, $response, $args) {
     $campaignController = new CampaignController($this->container);
-    $now = new \DateTime('now', new \DateTimeZone('UTC'));
-    $endDate = \DateTime::createFromFormat(\DateTime::ATOM, '2018-01-01T00:00:0
-0+00:00');
-    $afterNewYear = $request->getQueryParam('afterNewYear');
-    if ($now > $endDate) {
-      $afterNewYear = TRUE;
-    }
     $uri = $request->getUri();
     $baseUrl = $uri->getBaseUrl();
+    $path = $uri->getPath();
+
+    $templateToRender = 'index.twig';
+    if ($path == '/H' && !$this->environment_info->is_prod()) {
+      $templateToRender = 'h.twig';
+    }
+
+    $now = new \DateTime('now', new \DateTimeZone('UTC'));
+    $dec2018CampaignStartDate = \DateTime::createFromFormat('Y-m-j-H:i:s', '2018-12-26-05:00:00', new \DateTimeZone('UTC'));
+    $dec2018CampaignEndDate = \DateTime::createFromFormat('Y-m-j-H:i:s', '2018-12-30-04:59:59', new \DateTimeZone('UTC'));
+    if ($now < $dec2018CampaignEndDate && $now > $dec2018CampaignStartDate) {
+      $templateToRender = 'h.twig';
+    }
+
     $config = PPConfigManager::getConfigWithDefaults();
     $stripeConfig = StripeConfig::setup();
     $this->vars = array(
-      'afterNewYear' => $afterNewYear,
       'baseUrl' => $baseUrl,
       'environmentName' => $this->environment_info->name(),
       'paypalMerchantId' => $config['acct1.MerchantID'],
@@ -32,7 +38,7 @@ class DonateController extends BaseController {
       'headerHasBgImg' => TRUE,
       'bodyClasses' => 'front',
     );
-    return $this->renderer->render($response, 'index.twig', $this->vars);
+    return $this->renderer->render($response, $templateToRender, $this->vars);
   }
 
   public function donor_faq($request, $response, $args) {
diff --git a/src/js/payment_controller.js b/src/js/payment_controller.js
index 2b48b394..9a7de2f7 100644
--- a/src/js/payment_controller.js
+++ b/src/js/payment_controller.js
@@ -18,7 +18,7 @@ function PerkInfo(id, fieldIds, helpText, friendlyName, friendlyName2) {
   this.friendlyName2 = friendlyName2;
 }
 
-function PaymentController(paypalMerchantId, environmentName, stripePublishableKey) {
+function PaymentController(paypalMerchantId, environmentName, stripePublishableKey, promo = false) {
   this.country = 'US';
   this.priceSetName = 'once';
   this.amount = 7500;
@@ -33,6 +33,7 @@ function PaymentController(paypalMerchantId, environmentName, stripePublishableK
     'credit_card': '.credit-card-form-wrapper,#donate-submit-button',
     'paypal': '#paypal-container,#paypal-button-area',
   };
+  this.promo = promo;
   this.perkInfoMap = {
     't-shirt': new PerkInfo('t-shirt', ['perk-style-1', 'perk-fit-1', 'perk-size-1'], t('t-t-shirt__help-text'), t('t-t-shirt__friendly-name')),
     't-shirt-pack': new PerkInfo('t-shirt-pack', ['perk-style-1', 'perk-fit-1', 'perk-size-1', 'perk-fit-2', 'perk-size-2'], t('t-t-shirt-pack__help-text'), t('t-t-shirt-pack__friendly-name'), t('t-t-shirt-pack-2__friendly-name')),
@@ -146,6 +147,7 @@ function PaymentController(paypalMerchantId, environmentName, stripePublishableK
 
 PaymentController.prototype.init = function() {
   this.setupCampaignTotals();
+  this.setInitialPromoAdjustments();
   this.setPriceSet();
   this.setRecurring();
   this.setCurrentPrice();
@@ -294,6 +296,7 @@ PaymentController.prototype.monthlyButtonClicked = function(event) {
   this.setPriceSet();
   this.setCurrentPrice();
   this.setCurrentPerk();
+  this.setLimitedOfferLabelOnPriceLabel();
 }
 
 PaymentController.prototype.noPerkCheckboxClicked = function(event) {
@@ -315,6 +318,7 @@ PaymentController.prototype.onceButtonClicked = function(event) {
   this.setCurrentPrice();
   this.setRecurring();
   this.setCurrentPerk();
+  this.setLimitedOfferLabelOnPriceLabel();
 }
 
 PaymentController.prototype.onFormSubmit = function(event) {
@@ -639,6 +643,30 @@ PaymentController.prototype.setPriceSet = function() {
   });
 }
 
+PaymentController.prototype.setInitialPromoAdjustments = function() {
+  this.adjustPriceSetDueToPromo();
+  this.setDefaultOnceAmount();
+}
+
+PaymentController.prototype.setDefaultOnceAmount = function() {
+  if (this.promo) {
+    this.amount = 6000;
+  }
+}
+
+PaymentController.prototype.adjustPriceSetDueToPromo = function() {
+  if (this.promo) {
+    this.priceSets['once'] = [
+      [1000, undefined],
+      [2500, 'stickers'],
+      [6000, 't-shirt'],
+      [12500, 't-shirt-pack'],
+      [25000, 't-shirt-pack'],
+      [50000, 'sweatshirt'],
+    ];
+  }
+}
+
 PaymentController.prototype.setRequiredFields = function() {
   $('.field').removeClass('required');
   var requiredFields = this.getRequiredFields();
@@ -659,6 +687,16 @@ PaymentController.prototype.setRecurring = function() {
   inactiveButton.removeClass('selected');
 }
 
+PaymentController.prototype.setLimitedOfferLabelOnPriceLabel = function() {
+  if (this.recurring()) {
+    $('a[data-perk="t-shirt"]').removeClass('promo');
+  } else {
+    if (this.promo) {
+      $('a[data-perk="t-shirt"]').addClass('promo');
+    }
+  }
+}
+
 PaymentController.prototype.setupCountries = function() {
   var countrySelect = $('#country');
   countrySelect.html('');
diff --git a/src/routes.php b/src/routes.php
index 5f88bcff..7b57635c 100644
--- a/src/routes.php
+++ b/src/routes.php
@@ -1,9 +1,15 @@
 <?php
+
 $app->get('/', function ($request, $response, $args) {
   $controller = new \Tor\DonateController($this);
   return $controller->index($request, $response, $args);
 })->setName('home');
 
+$app->get('/H', function ($request, $response, $args) {
+  $controller = new \Tor\DonateController($this);
+  return $controller->index($request, $response, $args);
+})->setName('home');
+
 $app->get('/campaign-totals', function($request, $response, $args) {
   $controller = new \Tor\CampaignController($this);
   return $controller->totals($request, $response, $args);
diff --git a/templates/h.twig b/templates/h.twig
new file mode 100644
index 00000000..3debe54b
--- /dev/null
+++ b/templates/h.twig
@@ -0,0 +1,292 @@
+{% extends("ubiquitous.twig") %}
+
+{% block title %}
+  {% trans %}Support the Tor Project Today!{% endtrans %}
+{% endblock %}
+
+{% block head %}
+  <meta property="og:url" content="{{ baseUrl }}" />
+  <meta property="og:type" content="article" />
+  <meta property="og:title" content="{% trans %}Tor: Strength in Numbers{% endtrans %}" />
+  <meta property="og:description" content="{% trans %}Donate to the Tor Project and protect the privacy of millions.{% endtrans %} {% trans %}Anonymity loves company.{% endtrans %}" />
+  <meta property="og:image" content="{{ baseUrl }}/images/og-image-strength-in-numbers.png" />
+
+  <meta name="twitter:card" content="{% trans %}summary_large_image{% endtrans %}" />
+  <meta name="twitter:site" content="{% trans %}@torproject{% endtrans %}" />
+  <meta name="twitter:title" content="{% trans %}Tor: Strength in Numbers{% endtrans %}" />
+  <meta name="twitter:description" content="{% trans %}Donate to the Tor Project and protect the privacy of millions.{% endtrans %} {% trans %}Anonymity loves company.{% endtrans %}" />
+  <meta name="twitter:image" content="{{ baseUrl }}/images/og-image-strength-in-numbers.png" />
+{% endblock %}
+
+{% block header %}
+  {% embed "header_with_image.twig" %}
+    {% block header_text %}
+      <h1>{% trans %}Tor: Strength in Numbers{% endtrans %}</h1>
+      <h4>{% trans %}Stand up for the universal human rights to privacy and freedom and help keep Tor robust and secure.{% endtrans %} <b>{% trans %}Mozilla will match your gift and double your impact.{% endtrans %}</b></h4>
+    {% endblock %}
+  {% endembed %}
+{% endblock %}
+
+{% block content %}
+  <noscript>
+    <div class="donate-options perk-title" style="padding: 20px;">
+      {% trans %}This page requires Javascript to do PayPal or credit card
+      donations, but it appears you have Javascript disabled.{% endtrans %}
+      {% trans %}If you wish to donate without enabling Javascript, please take a look at our <a href="https://www.torproject.org/donate/donate-options.html.en">other donations options page</a>.{% endtrans %}
+    </div>
+  </noscript>
+  <div class="campaign-totals-area">
+    <div class="supporters">
+      <div class="background-grey characters">
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>0</div>
+      </div>
+      <div class="label">
+        {% trans %}Number of Donations{% endtrans %}
+      </div>
+    </div>
+    <div class="total-donated">
+      <div class="background-grey characters">
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>0</div>
+      </div>
+      <div class="label">
+        {% trans %}Total Donated{% endtrans %}
+      </div>
+    </div>
+    <div class="total-matched">
+      <div class="background-grey characters">
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>1</div>
+        <div class="character"><div class="cover"></div>0</div>
+        <div class="character"><div class="cover"></div>0</div>
+      </div>
+      <div class="label">
+        {% trans %}Total Raised with Mozilla's Match{% endtrans %}
+      </div>
+    </div>
+  </div>
+  <div class="donate-options">
+    <a class="button once-button selected" data-recurring="once" href="#" id="donate-once-button">{% trans %}donate{% endtrans %} <span class="bold">{% trans %}once{% endtrans %}</span></a>
+    <a class="button monthly-button" href="#" id="donate-monthly-button">{% trans %}donate{% endtrans %} <span class="bold" data-recurring="monthly">{% trans %}monthly{% endtrans %}</span>
+    </a>
+  </div>
+  <div class="payment-other-div">
+    <a class="hyperlinks links" href="https://www.torproject.org/donate/donate-options.html.en">{% trans %}Want to donate Bitcoin, Stock, or via snail mail?{% endtrans %}</a>
+  </div>
+
+  <form action="/donate" method="POST" id="donationForm">
+    <div class="donation-selection-area">
+      <div class="donate-buttons">
+        <a class="price-btn" data-price-in-cents="1000" href="#">$10</a>
+        <a class="price-btn" data-price-in-cents="2500" href="#">$25</a>
+        <a class="price-btn promo" data-perk="stickers" data-price-in-cents="6000" href="#">$60</a>
+        <a class="price-btn selected" data-perk="t-shirt" data-price-in-cents="12500" href="#">$125</a>
+        <a class="price-btn" data-perk="t-shirt-pack" data-price-in-cents="25000" href="#">$250</a>
+        <a class="price-btn" data-perk="t-shirt-pack" data-price-in-cents="50000" href="#">$500</a>
+        <div class="other-amount-field">
+          <div class="error invalid-amount" style="display: none;">{% trans %}invalid amount{% endtrans %}</div>
+          <div class="error donate-amount-min" style="display: none;">{% trans %}$2 minimum donation{% endtrans %}</div>
+          <input class="perk-amt" data-name="Other Amount" id="otherAmount" maxlength="256" name="otherAmount" placeholder="{% trans %}$ other{% endtrans %}" type="text">
+        </div>
+      </div>
+      <div class="perk-intro">
+        <h2 class="perk-title">{% trans %}Choose your gift as a token of our thanks.{% endtrans %}</h2>
+      </div>
+      <div class="no-perk-area">
+        <input id="no-perk-checkbox" name="no-perk-checkbox" type="checkbox" checked="true">
+        <label for="no-perk-checkbox">{% trans %}No thanks, I don't want a gift.{% endtrans %} {% trans %}I would prefer 100% of my donation to go to the Tor Project's work.{% endtrans %}</label>
+      </div>
+      <div class="perks">
+        <div class="perk" data-perk="stickers" data-once-price-in-cents="2500" data-monthly-price-in-cents="1000">
+          <div class="price-tag-group">
+            <div class="price-tag">Once $25</div>
+            <div class="price-tag">Monthly $10</div>
+          </div>
+          <h4 class="perk-label">{% trans %}sticker Pack{% endtrans %}</h4>
+          <div class="slides">
+            <img src="/images/Stickerpack-1.png" width="300" height="225">
+          </div>
+          <div class="perk-desc">{% trans %}A collection of our favorite logo stickers for decorating your stuff and covering your cams.{% endtrans %}</div>
+        </div>
+        <div class="perk selected" data-perk="t-shirt" data-once-price-in-cents="6000" data-monthly-price-in-cents="2500">
+          <div class="price-tag-group">
+            <div class="price-tag"><span class="promo-strike-through">Once $75</span> <span class="promo-price">NOW</span> <span class="promo-price large">$60</span></div>
+            <div class="price-tag">Monthly $25</div>
+          </div>
+          <h4 class="perk-label t-shirt">{% trans %}t-shirt{% endtrans %}</h4>
+          <div class="slides">
+            <img class="perk-img wide-img" data-perk-image="strength-in-numbers" src="/images/tor-tshirt-strength-in-numbers.png" aria-hidden="true" width="214" height="179">
+            <div class="promo-red-dot">{% trans %}$15{% endtrans %}<br /><span class="light">{% trans %}OFF{% endtrans %}</span></div>
+          </div>
+          <div class="perk-desc">
+	          {% trans %}Get our limited edition Tor: Strength in Numbers shirt.{% endtrans %}
+          </div>
+        </div>
+        <div class="perk" data-perk="t-shirt-pack" data-once-price-in-cents="12500" data-monthly-price-in-cents="5000">
+          <div class="price-tag-group">
+            <div class="price-tag">Once $125</div>
+            <div class="price-tag">Monthly $50</div>
+          </div>
+          <h4 class="perk-label">{% trans %}t-shirt pack{% endtrans %}</h4>
+          <div class="slides">
+            <img class="perk-img" data-perk-image="heart-of-internet" src="/images/t-shirt-pack-strength-numbers-heart.png" width="198" height="140">
+            <img class="perk-img" data-perk-image="pdr" src="/images/t-shirt-pack-strength-numbers-pdr.png" width="198" style="display: none;">
+            <img class="perk-img" data-perk-image="ooni" src="/images/t-shirt-pack-strength-numbers-ooni.png" width="198" style="display: none;">
+          </div>
+          <div class="perk-desc">
+	          {% trans %}Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering the Digital Resistance, Open Observatory of Network Interference (OONI), or Tor at the Heart of Internet Freedom t-shirts.{% endtrans %}
+          </div>
+          <select class="perk-sub-select field input">
+            <option value="heart-of-internet">{% trans %}Tor at the Heart of Internet Freedom{% endtrans %}</option>
+            <option value="pdr">{% trans %}Powering the Digital Resistance{% endtrans %}</option>
+            <option value="ooni">{% trans %}Open Observatory of Network Interference{% endtrans %}</option>
+          </select>
+        </div>
+        <div class="perk" data-perk="sweatshirt" data-once-price-in-cents="50000" data-monthly-price-in-cents="10000">
+          <div class="price-tag-group">
+            <div class="price-tag">Once $500</div>
+            <div class="price-tag">Monthly $100</div>
+          </div>
+          <h4 class="perk-label">{% trans %}sweatshirt{% endtrans %}</h4>
+          <div class="slides">
+            <img src="/images/sweatshirt-strength-in-numbers.png" width="400" height="283">
+          </div>
+          <div class="perk-desc">{% trans %}Your generous support of Tor gets you this high-quality zip hoodie.{% endtrans %}</div>
+        </div>
+      </div>
+      <div class="totals-area"></div>
+    </div>
+    <div class="payment-method-area">
+      <h4 class="payment-method-question">
+        {% trans %}how do you want to <span class="green">DONATE</span>?{% endtrans %}
+      </h4>
+      <div class="payment-option">
+        <a class="button credit-card selected payment-method" data-payment-method="credit_card" href="#">{% trans %}Credit Card{% endtrans %}</a>
+        <div class="button paypal payment-method" data-payment-method="paypal">
+          <img class="paypal paypal-png" src="/images/PayPal.svg.png">
+        </div>
+      </div>
+      <div class="payment-other-div">
+        <a class="hyperlinks links" href="https://www.torproject.org/donate/donate-options.html.en">{% trans %}Want to donate Bitcoin, Stock, or via snail mail?{% endtrans %}</a>
+      </div>
+    </div>
+    <div class="info-area">
+      <h4 class="info-txt">{% trans %}Your Info{% endtrans %}</h4>
+      <div class="required">{% trans %}* required fields{% endtrans %}</div>
+      <div class="field-row">
+        <input class="field" data-name="firstName" id="firstName" maxlength="256" name="firstName" placeholder="{% trans %}First Name{% endtrans %}" type="text">
+        <input class="field" data-name="lastName" id="lastName" maxlength="256" name="lastName" placeholder="{% trans %}Last Name{% endtrans %}" type="text">
+      </div>
+      <div class="field-row">
+        <input class="field" data-name="streetAddress" id="streetAddress" maxlength="256" name="streetAddress" placeholder="{% trans %}Street Address{% endtrans %}" type="text" data-stripe="address_line1">
+        <input class="field" data-name="extendedAddress" id="extendedAddress" maxlength="256" name="extendedAddress" placeholder="{% trans %}Apt.{% endtrans %}" type="text">
+      </div>
+      <div class="field-row">
+        <select class="field" data-name="country" id="country" name="country" data-stripe="address_country">
+        </select>
+      </div>
+      <div class="field-row">
+        <input class="field" data-name="locality" id="locality" maxlength="256" name="locality" placeholder="{% trans %}City{% endtrans %}" type="text" data-stripe="address_city">
+        <select class="field" data-name="region" id="region" name="region" data-stripe="address_state" aria-label="{% trans %}State{% endtrans %}">
+        </select>
+        <input class="field" data-name="postalCode" id="postalCode" maxlength="256" name="postalCode" placeholder="{% trans %}Zip{% endtrans %}" type="text" data-stripe="address_zip">
+      </div>
+      <div class="field-row">
+        <input class="field" data-name="email" id="email" maxlength="256" name="email" placeholder="{% trans %}Enter email{% endtrans %}" type="text" data-stripe="name">
+        <div class="receipt light">{% trans %}We‘ll email you your receipt{% endtrans %}</div>
+      </div>
+      <div class="field-row">
+        <input data-name="mailingListOptIn" id="mailingListOptIn" name="mailingListOptIn" type="checkbox">
+        <label class="light" for="mailingListOptIn">{% trans %}Start sending me email updates about the Tor Project!{% endtrans %}</label>
+      </div>
+      <div class="credit-card-form-wrapper">
+        <div class="field-row">
+          <input class="field" type="text" size="20" data-stripe="number" placeholder="{% trans %}Card Number{% endtrans %}" id="cardNumber">
+          <img class="credit-cards" src="/images/credit-cards.png">
+        </div>
+        <div class="field-row">
+          <input class="field" class="input month" type="text" size="2" data-stripe="exp_month" placeholder="{% trans %}MM{% endtrans %}" id="expMonth">
+          <input class="field" class="input year" type="text" size="2" data-stripe="exp_year" placeholder="{% trans %}YY{% endtrans %}" id="expYear">
+          <input class="field" class="cvc input" type="text" size="4" data-stripe="cvc" placeholder="{% trans %}CVC{% endtrans %}" id="cvc">
+        </div>
+      </div>
+      <div id="perk-fields">
+        <div class="perk-fields-instructions strong">
+          {% trans %}Choose your size and fit.{% endtrans %}
+        </div>
+        <div id="selected-perk-fields-label">{% trans %}T-shirt:{% endtrans %}</div>
+        {{ include('shirt-options.twig', {id_suffix: '1', include_style: true}) }}
+        <div id="selected-perk-fields-label-2" style="display: none;">{% trans %}T-shirt:{% endtrans %}</div>
+        {{ include('shirt-options.twig', {id_suffix: '2'}) }}
+      </div>
+      <div id="donate-comments-wrapper">
+        <div class="strong">{% trans %}Comments{% endtrans %}</div>
+        <textarea id="donate-comments" name="comments"  aria-label="{% trans %}Comments{% endtrans %}" placeholder="{% trans %}Comments{% endtrans %}"></textarea>
+      </div>
+      <div class="donate-submit-area">
+        {% trans %}Donating:{% endtrans %}
+        <span id="donate-submit-amount"></span>
+      </div>
+      <div id="donate-submit-button">
+        <input class="donate button" type="submit" value="{% trans %}Donate{% endtrans %}">
+      </div>
+      <div class="donate" id="paypal-button-area">
+      </div>
+    </div>
+  </form>
+  <div class="js-translatable-strings" style="display: none;">
+    <div id="t-t-shirt__help-text">{% trans %}Choose your size and fit.{% endtrans %}</div>
+    <div id="t-t-shirt__friendly-name">{% trans %}T-Shirt{% endtrans %}</div>
+    <div id="t-t-shirt-pack__help-text">{% trans %}Choose your size and fit for each shirt.{% endtrans %}</div>
+    <div id="t-t-shirt-pack__friendly-name">{% trans %}Tor at the Heart of Internet, Powering Digital Resistance or Open Observvatory of Network Interference (OONI) T-Shirt{% endtrans %}</div>
+    <div id="t-t-shirt-pack-2__friendly-name">{% trans %}Strength in Numbers T-Shirt{% endtrans %}</div>
+    <div id="t-sweatshirt__help-text">{% trans %}Choose your size.{% endtrans %}</div>
+    <div id="t-sweatshirt__friendly-name">{% trans %}Sweatshirt{% endtrans %}</div>
+    <div id="t-missing-required-field-exception">{% trans %}A required field is missing from the form.{% endtrans %} {% trans %}Please reload the page and try again.{% endtrans %}</div>
+    <div id="t-payment-processor-failed">{% trans %}There was a problem submitting your request to the server:<br>{% endtrans %}</div>
+    <div id="t-validation-failed">{% trans %}validation failed{% endtrans %}</div>
+    <div id="t-field-required">
+      {% trans %}
+      __field_name__ must be filled out.
+      {% notes %}
+      __field_name__ will be replaced with the field name in the javascript.
+      {% endtrans %}
+    </div>
+    <div id="t-field-required-generic">{% trans %}This field is required{% endtrans %}</div>
+    <div id="t-invalid-email">{% trans %}Invalid email address.{% endtrans %}</div>
+    <div id="t-per-month">{% trans %}per month{% endtrans %}</div>
+  </div>
+  <div id="loading-dialog" class="loading-container" style="display: none;">
+    <div class="loading-dot-conatiner">
+      <div class="loading-circle"></div>
+      <div class="focus loading-circle"></div>
+      <div class="loading-circle"></div>
+      <div class="loading-circle"></div>
+      <div class="loading-circle"></div>
+    </div>
+    <h5 class="loading-message">
+      {% trans %}One moment while we shovel coal into our servers.{% endtrans %}
+    </h5>
+  </div>
+  <div id="loading-overlay" style="display: none;">
+  </div>
+  <script type="text/javascript" src="https://js.stripe.com/v2/"></script>
+  <script type="text/javascript" src="https://www.paypalobjects.com/api/checkout.js" data-version-4></script>
+  <script src="/js/payment_controller.js" type="text/javascript"></script>
+  <script type="text/javascript">
+    document.addEventListener("DOMContentLoaded", function(event) {
+      var paymentController = new tor.PaymentController('{{paypalMerchantId}}', '{{environmentName}}', '{{stripePublishableKey}}', true);
+    });
+  </script>
+{% endblock %}
diff --git a/translation/out/messages.pot b/translation/out/messages.pot
index a6fddc90..c5acc1c1 100644
--- a/translation/out/messages.pot
+++ b/translation/out/messages.pot
@@ -121,1402 +121,1492 @@ msgstr ""
 msgid "Back to Donate Page"
 msgstr ""
 
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
-msgid "See if your employer offers employee gift matching"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:35
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:35
+msgid "Support the Tor Project Today!"
 msgstr ""
 
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
-msgid "Company"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:48
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:71
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:640
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:48
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:71
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:634
+msgid "Tor: Strength in Numbers"
 msgstr ""
 
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
-msgid "Matching Conditions"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:52
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:75
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:52
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:75
+msgid "Donate to the Tor Project and protect the privacy of millions."
 msgstr ""
 
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
-msgid "Contact Information"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:54
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:77
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:54
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:77
+msgid "Anonymity loves company."
 msgstr ""
 
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
-msgid "Additional Notes"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:63
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:63
+msgid "summary_large_image"
 msgstr ""
 
-#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
-msgid "Procedure"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:67
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:67
+msgid "@torproject"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:34
-msgid "Tor Thanks You"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:102
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:102
+msgid ""
+"This page requires Javascript to do PayPal or credit card\n"
+"      donations, but it appears you have Javascript disabled."
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:44
-msgid "Thank you!"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:106
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:106
+msgid ""
+"If you wish to donate without enabling Javascript, please take a look at our "
+"<a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
+"donations options page</a>."
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:48
-msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:123
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:123
+msgid "Number of Donations"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:50
-msgid "You should receive an email receipt shortly."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:139
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:139
+msgid "Total Donated"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:52
-msgid ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, privacy-"
-"enhancing browser for mobile devices and making it easier for third-party "
-"developers to integrate Tor into their applications."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:155
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:155
+msgid "Total Raised with Mozilla's Match"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:56
-msgid ""
-"It's an incredible time to stand up for world-leading security and privacy "
-"software."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:163
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:169
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:163
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:169
+msgid "donate"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:58
-msgid ""
-"Tell family, friends, and colleagues that you're supporting privacy and "
-"security with Tor!"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:165
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:165
+msgid "once"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:62
-msgid "SHARE THE TOR PROJECT"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:171
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:171
+msgid "monthly"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:88
-msgid "Got Skills?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:178
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:338
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:178
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:332
+msgid "Want to donate Bitcoin, Stock, or via snail mail?"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:94
-msgid "The Tor network depends on volunteers."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:194
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:194
+msgid "invalid amount"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:100
-msgid ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:198
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:198
+msgid "$2 minimum donation"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:102
-msgid "Learn how you can help."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:202
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:202
+msgid "$ other"
 msgstr ""
 
-#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:110
-msgid "I Want To Volunteer"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:209
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:209
+msgid "Choose your gift as a token of our thanks."
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:25
-msgid ""
-"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
-"rights and freedoms by creating and deploying free and open source anonymity "
-"and privacy technologies, supporting their unrestricted availability and "
-"use, and furthering their scientific and popular understanding."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:216
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:216
+msgid "No thanks, I don't want a gift."
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
-msgid "Subscribe to Our Newsletter"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:218
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:218
+#, php-format
+msgid "I would prefer 100% of my donation to go to the Tor Project's work."
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:35
-msgid "Get monthly updates and opportunities from the Tor Project."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:229
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:229
+msgid "sticker Pack"
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
-msgid "Sign Up"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:236
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:236
+msgid ""
+"A collection of our favorite logo stickers for decorating your stuff and "
+"covering your cams."
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
-msgid "Donate FAQs"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:246
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:246
+msgid "t-shirt"
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
-msgid "Privacy Policy"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:252
+msgid "$15"
 msgstr ""
 
-#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:67
-msgid ""
-"Designed and built by <span class=\"stamp-bold\"><a href=\"https://www."
-"giantrabbit.com/\" class=\"stamp-bold\" target=\"_blank\">Giant Rabbit</a></"
-"span>"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:254
+msgid "OFF"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
-msgid "Tor Donor FAQ"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:260
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:254
+msgid "Get our limited edition Tor: Strength in Numbers shirt."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
-msgid "Questions?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:271
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:265
+msgid "t-shirt pack"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:59
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:281
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:275
 msgid ""
-"If your question isn’t answered below, email <span class=\"email"
-"\">frontdesk(at)rt.torproject.org</span> with general Tor inquiries, or "
-"<span class=\"email\">giving(at)torproject.org</span> with donor-specific "
-"questions."
+"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
+"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
+"Tor at the Heart of Internet Freedom t-shirts."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:66
-msgid "What is the Tor Project and what does it do?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:287
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:281
+msgid "Tor at the Heart of Internet Freedom"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:70
-msgid ""
-"The Tor Project’s mission is to advance human rights and freedoms by "
-"creating and deploying free and open anonymity and privacy technologies, "
-"supporting their unrestricted availability and use, and furthering their "
-"scientific and popular understanding."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:291
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:285
+msgid "Powering the Digital Resistance"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:72
-msgid ""
-"The main product of the Tor Project is <a href=\"https://www.torproject.org/"
-"download/download-easy.html.en\">Tor Browser</a>, which enables people to "
-"browse the internet anonymously."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:295
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:289
+msgid "Open Observatory of Network Interference"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:74
-msgid ""
-"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
-"Boston, Massachusetts."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:306
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:300
+msgid "sweatshirt"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
-msgid "It was founded in 2006."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:313
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:307
+msgid "Your generous support of Tor gets you this high-quality zip hoodie."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:82
-msgid "Who works for the Tor Project, and what do they do?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:323
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:317
+msgid "how do you want to <span class=\"green\">DONATE</span>?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:86
-msgid ""
-"Thousands of people around the world actively support the work of the Tor "
-"Project, including developers, designers, relay operators, researchers, "
-"cryptographers, computer scientists, and privacy advocates, and most are not "
-"paid by the Tor Project."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:329
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:323
+msgid "Credit Card"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:88
-msgid ""
-"The paid staff of the Tor Project is very small: about 47 people in total."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:345
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:339
+msgid "Your Info"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:90
-msgid ""
-"You can read about the core contributors to the Tor Project on our <a class="
-"\"hyperlinks\" target=\"_blank\" href=\"https://www.torproject.org/about/"
-"corepeople.html.en\"><span class=\"links\">Core People page</span></a>."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:349
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:343
+msgid "* required fields"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
-msgid "Who uses Tor?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:354
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:348
+msgid "First Name"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:99
-msgid ""
-"The vast majority of Tor users are ordinary people who want control of their "
-"privacy online or people whose internet use is censored."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:358
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:352
+msgid "Last Name"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:101
-msgid ""
-"Other Tor users are journalists, human rights defenders, domestic violence "
-"survivors, policymakers, diplomats, and academic and research institutions."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:364
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:358
+msgid "Street Address"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
-msgid "Can anyone use Tor?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:368
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:362
+msgid "Apt."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:111
-msgid "Yes! Tor is free, and anyone can use it."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:378
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:372
+msgid "City"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:113
-msgid ""
-"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span class="
-"\"links\">download Tor Browser</span></a>."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:382
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:376
+msgid "State"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:115
-msgid ""
-"We offer instructions on how to download for <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.torproject.org/projects/torbrowser.html."
-"en#windows\">Windows</a>, <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
-"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" href=\"https://"
-"www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:387
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:381
+msgid "Zip"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
-msgid "What kinds of people support Tor?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:393
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:387
+msgid "Enter email"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
-msgid "All kinds of people."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:397
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:391
+msgid "We‘ll email you your receipt"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:127
-msgid ""
-"Thousands of individuals have donated to support the Tor Project, and we "
-"have also received funding from a wide range of organizations including "
-"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
-"National Science Foundation, the Electronic Frontier Foundation, Human "
-"Rights Watch, the Swedish International Development Cooperation Agency, the "
-"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
-"Omidyar Network, SRI International, and Radio Free Asia."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:404
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:398
+msgid "Start sending me email updates about the Tor Project!"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:129
-msgid ""
-"People also support Tor in non-financial ways, for example by running Tor "
-"relays to help carry traffic for other users."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:411
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:405
+msgid "Card Number"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:131
-msgid ""
-"In addition, everybody who uses Tor is helping to keep other users safe and "
-"anonymous, because the more people using Tor, the harder it is to identify "
-"any single individual."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:418
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:412
+msgid "MM"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:137
-msgid "How does the Tor software work to protect people's anonymity?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:422
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:416
+msgid "YY"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:141
-msgid ""
-"Tor protects you by bouncing your communications around the Tor network, "
-"which is a distributed network of relays run by volunteers all around the "
-"world."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:426
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:420
+msgid "CVC"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:143
-msgid ""
-"If someone is watching your internet connection, Tor prevents them from "
-"finding out what sites you are visiting."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:434
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:486
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:428
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:480
+msgid "Choose your size and fit."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:145
-msgid "It also prevents sites you visit from finding out where you're located."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:439
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:447
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:433
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:441
+msgid "T-shirt:"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:147
-msgid ""
-"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.torproject.org/about/overview.html.en"
-"\">overview page."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:457
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:461
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:463
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:451
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:455
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:457
+msgid "Comments"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:154
-msgid ""
-"I would like to know more about how Tor works, what onion services are, or "
-"how to run a relay."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:469
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:463
+msgid "Donating:"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:158
-msgid ""
-"<a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www."
-"torproject.org/docs/faq.html.en\">This Tor Project FAQ</a> has answers to "
-"all those questions, and more."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:470
+msgid "Donate"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
-msgid "Does the Tor software work?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:490
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:484
+msgid "T-Shirt"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:168
-msgid ""
-"We believe Tor is the best solution available today, and we know that it "
-"does a better job of keeping you safely anonymous than other options such as "
-"VPNs, proxychains, or browser \"private browsing\" modes."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:494
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:488
+msgid "Choose your size and fit for each shirt."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:170
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:498
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:492
 msgid ""
-"We know that both the Russian government and the NSA have tried in the past "
-"to crack Tor, and failed."
+"Tor at the Heart of Internet, Powering Digital Resistance or Open "
+"Observvatory of Network Interference (OONI) T-Shirt"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:172
-msgid ""
-"The Electronic Frontier Foundation says that Tor offers <a class="
-"\"hyperlinks links\" target=\"_blank\" href=\"https://www.eff.org/"
-"deeplinks/2014/07/7-things-you-should-know-about-tor\">some of the strongest "
-"anonymity software that exists</a>, and in his book Data and Goliath, "
-"security expert Bruce Schneier wrote \"The current best tool to protect your "
-"anonymity when browsing the web is Tor.\""
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:502
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:496
+msgid "Strength in Numbers T-Shirt"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
-msgid "Is what Tor does legal? Can I get in trouble for using it?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:506
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:500
+msgid "Choose your size."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:182
-msgid ""
-"Downloading Tor Browser or using the Tor network is legal in nearly every "
-"country."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:510
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:504
+msgid "Sweatshirt"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:184
-msgid ""
-"A few web sites occasionally block Tor, but that doesn't mean you're doing "
-"anything wrong."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:514
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:508
+msgid "A required field is missing from the form."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:186
-msgid ""
-"Usually it means that site has had difficulties with visitors who've been "
-"using Tor in the past, or that they misunderstand what Tor is and how it "
-"works (we’re working to change this)."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:516
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:510
+msgid "Please reload the page and try again."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:188
-msgid ""
-"But it is not illegal to use Tor, and you shouldn't get in trouble for doing "
-"it."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:520
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:514
+msgid "There was a problem submitting your request to the server:<br>"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:190
-msgid ""
-"You can find more information about Tor's legal status on the <a class="
-"\"hyperlinks links\" target=\"_blank\" href=\"https://www.eff.org/"
-"torchallenge/faq.html\">EFF site</a>."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:524
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:518
+msgid "validation failed"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:196
-msgid ""
-"Where can I find out more about the Tor Project, especially financial "
-"information?"
+#. notes: __field_name__ will be replaced with the field name in the javascript.
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:530
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:524
+msgid "__field_name__ must be filled out."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:200
-msgid ""
-"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.torproject.org/about/financials.html.en\">financial "
-"statements, and its Form 990</a>."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:535
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:529
+msgid "This field is required"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:206
-msgid "Where does the Tor Project's money come from?"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:539
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:533
+msgid "Invalid email address."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:210
-msgid ""
-"Tor is supported by United States government funding agencies, NGOs, private "
-"foundations, research institutions, private companies, and over 20,000 "
-"personal donations from people like you."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:543
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:537
+msgid "per month"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:212
-msgid ""
-"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" href="
-"\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject."
-"org/about/sponsors</a> for more.)"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:557
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:551
+msgid "One moment while we shovel coal into our servers."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:214
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:644
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:638
 msgid ""
-"While we are grateful for this funding, we don't want the Tor Project to "
-"become too dependent on any single source."
+"Stand up for the universal human rights to privacy and freedom and help keep "
+"Tor robust and secure."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:216
-msgid ""
-"Crowdfunding allows us to diversify our donor base and is unrestricted -- it "
-"allows us to spend the money on the projects we think are most important and "
-"respond quickly to changing events."
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:646
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:640
+msgid "Mozilla will match your gift and double your impact."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:218
-msgid ""
-"And so, we are asking you to help financially support us, to increase the "
-"Tor Project's independence and ensure the sustainability of the products and "
-"services we provide."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
+msgid "See if your employer offers employee gift matching"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:224
-msgid ""
-"How much money does the Tor Project spend annually, and what is it used for?"
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
+msgid "Company"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
-msgid "The Tor Project spends about $4 million annually."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
+msgid "Matching Conditions"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
-#, php-format
-msgid ""
-"About 80% of the Tor Project's spending goes to staffing, mostly software "
-"engineers."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
+msgid "Contact Information"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:232
-msgid ""
-"About 10% goes towards administrative costs such as accounting and legal "
-"costs and bank fees."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
+msgid "Additional Notes"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:234
-msgid ""
-"The remaining 10% is spent on travel, meetings and conferences, which are "
-"important for Tor because the Tor community is global."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
+msgid "Procedure"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
-msgid "Is my donation tax-deductible?"
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:34
+msgid "Tor Thanks You"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:244
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:44
+msgid "Thank you!"
+msgstr ""
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:48
+msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+msgstr ""
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:50
+msgid "You should receive an email receipt shortly."
+msgstr ""
+
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:52
 msgid ""
-"If you pay taxes in the United States, your donation to Tor is tax "
-"deductible to the full extent required by law."
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, privacy-"
+"enhancing browser for mobile devices and making it easier for third-party "
+"developers to integrate Tor into their applications."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:246
-msgid "Following is information you may need for reporting purposes:"
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:56
+msgid ""
+"It's an incredible time to stand up for world-leading security and privacy "
+"software."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:251
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:58
 msgid ""
-"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
-"          <b>Address:</b><br>\n"
-"          The Tor Project, Inc.<br>\n"
-"          217 First Avenue South #4903<br>\n"
-"          Seattle, WA  98194<br>\n"
-"          <b>Phone number:</b> 206-420-3136<br>\n"
-"          <b>Contact person:</b> Isabela Bagueros, Executive Director<br>"
+"Tell family, friends, and colleagues that you're supporting privacy and "
+"security with Tor!"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:264
-msgid "If I am not in the United States, can I still donate?"
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:62
+msgid "SHARE THE TOR PROJECT"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
-msgid "Yes, definitely."
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:88
+msgid "Got Skills?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:270
-msgid ""
-"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
-"income) but we would very much appreciate your support."
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:94
+msgid "The Tor network depends on volunteers."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:276
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:100
 msgid ""
-"Can I donate to a specific project, or restrict my donation to a particular "
-"purpose?"
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:280
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:560
-msgid "No, sorry."
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:102
+msgid "Learn how you can help."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:282
-msgid ""
-"If we accept a donation from someone who has specified how they want it "
-"used, we're required by the IRS to track and report separately on that money."
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:110
+msgid "I Want To Volunteer"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:284
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:25
 msgid ""
-"That would be a big administrative burden for a small organization, and we "
-"don't think it's a good idea for us."
+"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
+"rights and freedoms by creating and deploying free and open source anonymity "
+"and privacy technologies, supporting their unrestricted availability and "
+"use, and furthering their scientific and popular understanding."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:286
-msgid ""
-"However, we would be very happy to hear your ideas and feedback about our "
-"work."
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
+msgid "Subscribe to Our Newsletter"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:288
-msgid ""
-"If you're donating using a mechanism that allows for comments, feel free to "
-"send your thoughts that way."
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:35
+msgid "Get monthly updates and opportunities from the Tor Project."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
-msgid "Can I donate while using Tor Browser?"
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
+msgid "Sign Up"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:298
-msgid "Yes! In our testing, donation works via Tor Browser."
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
+msgid "Donate FAQs"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:300
-msgid ""
-"If you run into problems, please contact <span class=\"email"
-"\">giving(at)torproject.org</span>."
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
+msgid "Privacy Policy"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:304
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:67
 msgid ""
-"For users logging in to Paypal: some people had no problem donating via "
-"PayPal while using Tor Browser."
+"Designed and built by <span class=\"stamp-bold\"><a href=\"https://www."
+"giantrabbit.com/\" class=\"stamp-bold\" target=\"_blank\">Giant Rabbit</a></"
+"span>"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:306
-msgid ""
-"In past years, some people couldn't complete the donation process, and one "
-"person had their PayPal account temporarily frozen."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
+msgid "Tor Donor FAQ"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:308
-msgid "If you run into any problems donating via PayPal, please let us know."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
+msgid "Questions?"
+msgstr ""
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:59
+msgid ""
+"If your question isn’t answered below, email <span class=\"email"
+"\">frontdesk(at)rt.torproject.org</span> with general Tor inquiries, or "
+"<span class=\"email\">giving(at)torproject.org</span> with donor-specific "
+"questions."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:314
-msgid "How can I donate via debit or credit card?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:66
+msgid "What is the Tor Project and what does it do?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:318
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:70
 msgid ""
-"To donate using a major credit card or debit card (VISA, MasterCard, "
-"Discover or American Express) or via PayPal, please visit our <a href="
-"\"https://donate.torproject.org\">donate page</a>."
+"The Tor Project’s mission is to advance human rights and freedoms by "
+"creating and deploying free and open anonymity and privacy technologies, "
+"supporting their unrestricted availability and use, and furthering their "
+"scientific and popular understanding."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:324
-msgid "Why do you ask for my address and similar information?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:72
+msgid ""
+"The main product of the Tor Project is <a href=\"https://www.torproject.org/"
+"download/download-easy.html.en\">Tor Browser</a>, which enables people to "
+"browse the internet anonymously."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:328
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:74
 msgid ""
-"If you donate by credit card, you will be asked for some information that's "
-"required to process your credit card payment, including your billing address."
+"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
+"Boston, Massachusetts."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:330
-msgid ""
-"This allows our payment processor to verify your identity, process your "
-"payment, and prevent fraudulent charges to your credit card."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
+msgid "It was founded in 2006."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:332
-msgid ""
-"We don't ask for information beyond what's required by the payment processor."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:82
+msgid "Who works for the Tor Project, and what do they do?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
-msgid "Why is there a minimum donation?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:86
+msgid ""
+"Thousands of people around the world actively support the work of the Tor "
+"Project, including developers, designers, relay operators, researchers, "
+"cryptographers, computer scientists, and privacy advocates, and most are not "
+"paid by the Tor Project."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:342
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:88
 msgid ""
-"People who have stolen credit card information often donate to nonprofits as "
-"a way of testing whether the card works."
+"The paid staff of the Tor Project is very small: about 47 people in total."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:344
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:90
 msgid ""
-"These people typically use a very small amount for their testing, and we've "
-"found that setting a $1 minimum donation seems to deter them."
+"You can read about the core contributors to the Tor Project on our <a class="
+"\"hyperlinks\" target=\"_blank\" href=\"https://www.torproject.org/about/"
+"corepeople.html.en\"><span class=\"links\">Core People page</span></a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
-msgid "Is there a maximum donation?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
+msgid "Who uses Tor?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:354
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:99
 msgid ""
-"No, no, no! More funding from you means we can do more things we are excited "
-"to do, like hire a person to monitor the Tor network full time, or research, "
-"test, and implement ideas we have for making the Tor network even stronger."
+"The vast majority of Tor users are ordinary people who want control of their "
+"privacy online or people whose internet use is censored."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
-msgid "Can I donate via bitcoin?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:101
+msgid ""
+"Other Tor users are journalists, human rights defenders, domestic violence "
+"survivors, policymakers, diplomats, and academic and research institutions."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:364
-msgid ""
-"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" href="
-"\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin via "
-"BitPay</a>."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
+msgid "Can anyone use Tor?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:370
-msgid ""
-"If I want my donation to be anonymous, what is the best way for me to donate?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:111
+msgid "Yes! Tor is free, and anyone can use it."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:374
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:113
 msgid ""
-"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" href="
-"\"https://www.torproject.org/donate/donate-options.html.en#cash\">sending us "
-"a postal money order</a>."
+"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span class="
+"\"links\">download Tor Browser</span></a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:376
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:115
 msgid ""
-"You can donate via bitcoin if you have bitcoin set up in a way that "
-"preserves your anonymity."
+"We offer instructions on how to download for <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.torproject.org/projects/torbrowser.html."
+"en#windows\">Windows</a>, <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/projects/torbrowser.html.en#macosx\">Mac "
+"OS X</a> and <a class=\"hyperlinks links\" target=\"_blank\" href=\"https://"
+"www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:378
-msgid "You can buy cash gift cards and mail them to us."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
+msgid "What kinds of people support Tor?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:380
-msgid ""
-"There are probably other ways to donate anonymously that we haven't thought "
-"of-- maybe you will :)"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
+msgid "All kinds of people."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:387
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:127
 msgid ""
-"Is the Tor Project required to identify me as a donor to the United States "
-"government, or to any other authority?"
+"Thousands of individuals have donated to support the Tor Project, and we "
+"have also received funding from a wide range of organizations including "
+"Google, the Ford Foundation, the Knight Foundation, Reddit, the U.S. "
+"National Science Foundation, the Electronic Frontier Foundation, Human "
+"Rights Watch, the Swedish International Development Cooperation Agency, the "
+"Federal Foreign Office of Germany, the U.S. Naval Research Laboratory, "
+"Omidyar Network, SRI International, and Radio Free Asia."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:391
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:129
 msgid ""
-"If you donate $5,000 or more to the Tor Project in a single year, we are "
-"required to report the donation amount and your name and address (if we have "
-"it) to the IRS, on Schedule B of the Form 990, which is filed annually."
+"People also support Tor in non-financial ways, for example by running Tor "
+"relays to help carry traffic for other users."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:393
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:131
 msgid ""
-"However, it's normal for nonprofits to redact individual donor information "
-"from the copy of the 990 that's made publicly-available, and that's what we "
-"do."
+"In addition, everybody who uses Tor is helping to keep other users safe and "
+"anonymous, because the more people using Tor, the harder it is to identify "
+"any single individual."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
-msgid ""
-"We are not required to identify donors to any other organization or "
-"authority, and we do not."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:137
+msgid "How does the Tor software work to protect people's anonymity?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:397
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:141
 msgid ""
-"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
-"early 2019.)"
+"Tor protects you by bouncing your communications around the Tor network, "
+"which is a distributed network of relays run by volunteers all around the "
+"world."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:403
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:143
 msgid ""
-"In your privacy policy, you say you will never publicly identify me as a "
-"donor without my permission."
-msgstr ""
-
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
-msgid "What does that mean?"
+"If someone is watching your internet connection, Tor prevents them from "
+"finding out what sites you are visiting."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
-msgid "Yes, that's right."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:145
+msgid "It also prevents sites you visit from finding out where you're located."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:411
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:147
 msgid ""
-"If you donate to the Tor Project, there will be some people at the Tor "
-"Project who know about your donation."
+"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.torproject.org/about/overview.html.en"
+"\">overview page."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:413
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:154
 msgid ""
-"However, we will never publicly identify you as a donor, unless you have "
-"given us permission to do so."
+"I would like to know more about how Tor works, what onion services are, or "
+"how to run a relay."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:415
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:158
 msgid ""
-"That means we won't post your name on our website, thank you on Twitter, or "
-"do anything else that would publicly identify you as someone who has donated."
+"<a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www."
+"torproject.org/docs/faq.html.en\">This Tor Project FAQ</a> has answers to "
+"all those questions, and more."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:417
-msgid ""
-"If we decide we would like to publicly name you as a donor, we will ask you "
-"first, and will not do it until and unless you say it's okay."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
+msgid "Does the Tor software work?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:423
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:168
 msgid ""
-"It's important to me that my donation be tax-deductible, but I don't pay "
-"taxes in the United States."
+"We believe Tor is the best solution available today, and we know that it "
+"does a better job of keeping you safely anonymous than other options such as "
+"VPNs, proxychains, or browser \"private browsing\" modes."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:427
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:170
 msgid ""
-"Right now, we can only offer tax-deductibility to donors who pay taxes in "
-"the United States."
+"We know that both the Russian government and the NSA have tried in the past "
+"to crack Tor, and failed."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:429
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:172
 msgid ""
-"If it's important to you that your donations be tax-deductible in a "
-"different country, let us know and we will try to offer tax-deductibility in "
-"your country in future."
+"The Electronic Frontier Foundation says that Tor offers <a class="
+"\"hyperlinks links\" target=\"_blank\" href=\"https://www.eff.org/"
+"deeplinks/2014/07/7-things-you-should-know-about-tor\">some of the strongest "
+"anonymity software that exists</a>, and in his book Data and Goliath, "
+"security expert Bruce Schneier wrote \"The current best tool to protect your "
+"anonymity when browsing the web is Tor.\""
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:431
-msgid ""
-"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
-"target=\"_blank\" href=\"https://www.torproject.org/docs/faq.html."
-"en#RelayDonations\">these organizations support the Tor network</a> and may "
-"be able to offer you tax-deductibility for your donation."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
+msgid "Is what Tor does legal? Can I get in trouble for using it?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:437
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:182
 msgid ""
-"What if I don't want to use credit card or PayPal? Is there another way I "
-"can donate?"
+"Downloading Tor Browser or using the Tor network is legal in nearly every "
+"country."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:441
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:184
 msgid ""
-"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
-"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
-"you can donate.</a>"
+"A few web sites occasionally block Tor, but that doesn't mean you're doing "
+"anything wrong."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
-msgid "What is your donor privacy policy?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:186
+msgid ""
+"Usually it means that site has had difficulties with visitors who've been "
+"using Tor in the past, or that they misunderstand what Tor is and how it "
+"works (we’re working to change this)."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:452
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:188
 msgid ""
-"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" href="
-"\"/%langcode%/privacy-policy\">donor privacy policy</a>."
+"But it is not illegal to use Tor, and you shouldn't get in trouble for doing "
+"it."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
-msgid "What is your refund policy?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:190
+msgid ""
+"You can find more information about Tor's legal status on the <a class="
+"\"hyperlinks links\" target=\"_blank\" href=\"https://www.eff.org/"
+"torchallenge/faq.html\">EFF site</a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:462
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:196
 msgid ""
-"If you want your donation refunded, please tell us by emailing <span class="
-"\"email\">giving(at)torproject.org</span>."
+"Where can I find out more about the Tor Project, especially financial "
+"information?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:464
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:200
 msgid ""
-"To process your refund we'll need to know the date of your donation, the "
-"amount you donated, your full name, the payment method you used and your "
-"country of origin."
+"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.torproject.org/about/financials.html.en\">financial "
+"statements, and its Form 990</a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:466
-msgid "Please also tell us why you're asking for a refund."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:206
+msgid "Where does the Tor Project's money come from?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:468
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:210
 msgid ""
-"Please note that some payment methods won't support refunds, or require them "
-"to be made in a specific way, so we may need additional information from you "
-"in order to process yours."
+"Tor is supported by United States government funding agencies, NGOs, private "
+"foundations, research institutions, private companies, and over 20,000 "
+"personal donations from people like you."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
-msgid "Can I donate by mail?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:212
+msgid ""
+"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" href="
+"\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject."
+"org/about/sponsors</a> for more.)"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:478
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:584
-msgid "Yes."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:214
+msgid ""
+"While we are grateful for this funding, we don't want the Tor Project to "
+"become too dependent on any single source."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:480
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:216
 msgid ""
-"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
-"Seattle WA 98194, USA"
+"Crowdfunding allows us to diversify our donor base and is unrestricted -- it "
+"allows us to spend the money on the projects we think are most important and "
+"respond quickly to changing events."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
-msgid "Do you accept cash donations?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:218
+msgid ""
+"And so, we are asking you to help financially support us, to increase the "
+"Tor Project's independence and ensure the sustainability of the products and "
+"services we provide."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
-msgid "Yes"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:224
+msgid ""
+"How much money does the Tor Project spend annually, and what is it used for?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
-msgid "Does Tor Project accept matching donations?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
+msgid "The Tor Project spends about $4 million annually."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:500
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
+#, php-format
 msgid ""
-"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
-"Verizon, Red Hat, many universities, and others-- will match donations made "
-"by their employees."
+"About 80% of the Tor Project's spending goes to staffing, mostly software "
+"engineers."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:502
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:232
 msgid ""
-"The fastest way to find out if your company matches donations is usually by "
-"checking with your HR department, or you can search for your company name at "
-"<a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www."
-"matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
+"About 10% goes towards administrative costs such as accounting and legal "
+"costs and bank fees."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:504
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:234
 msgid ""
-"If your company isn't currently set up to match donations to the Tor "
-"Project, we would be happy to help with the paperwork."
+"The remaining 10% is spent on travel, meetings and conferences, which are "
+"important for Tor because the Tor community is global."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:506
-msgid ""
-"If you want help figuring out the process, write us at <span class=\"email"
-"\">giving(at)torproject.org</a>."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
+msgid "Is my donation tax-deductible?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
-msgid "Can I become a Tor Project member?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:244
+msgid ""
+"If you pay taxes in the United States, your donation to Tor is tax "
+"deductible to the full extent required by law."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:516
-msgid ""
-"Right now, we don't have a membership program, but we may set one up in the "
-"future."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:246
+msgid "Following is information you may need for reporting purposes:"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:518
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:251
 msgid ""
-"If you want to get involved with the Tor Project, <a class=\"hyperlinks links"
-"\" target=\"_blank\" href=\"https://www.torproject.org/getinvolved/volunteer."
-"html.en\">this is a good place to start</a>."
+"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
+"          <b>Address:</b><br>\n"
+"          The Tor Project, Inc.<br>\n"
+"          217 First Avenue South #4903<br>\n"
+"          Seattle, WA  98194<br>\n"
+"          <b>Phone number:</b> 206-420-3136<br>\n"
+"          <b>Contact person:</b> Isabela Bagueros, Executive Director<br>"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:524
-msgid "How can I get a Tor t-shirt or stickers?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:264
+msgid "If I am not in the United States, can I still donate?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:528
-msgid ""
-"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
-"stickers, are presented on our main <a href=\"https://donate.torproject.org"
-"\">donation page</a>."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
+msgid "Yes, definitely."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:534
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:270
 msgid ""
-"If I want to stay in touch with the Tor Project, what's the best way for me "
-"to do that?"
+"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
+"income) but we would very much appreciate your support."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:538
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:276
 msgid ""
-"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a class="
-"\"hyperlinks links\" target=\"_blank\" href=\"https://blog.torproject.org/"
-"\">Tor Blog</a>, or <a class=\"hyperlinks links\" target=\"_blank\" href="
-"\"https://twitter.com/torproject\">follow us on Twitter</a>."
+"Can I donate to a specific project, or restrict my donation to a particular "
+"purpose?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:544
-msgid ""
-"Does the Tor Project participate in the Combined Federal Campaign program?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:280
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:560
+msgid "No, sorry."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:548
-msgid "No, Tor doesn't currently participate in the CFC program."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:282
+msgid ""
+"If we accept a donation from someone who has specified how they want it "
+"used, we're required by the IRS to track and report separately on that money."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:550
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:284
 msgid ""
-"If you'd like to get Tor added to the CFC program in your location, that "
-"would be great: please let us know if you need any help."
+"That would be a big administrative burden for a small organization, and we "
+"don't think it's a good idea for us."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:556
-msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:286
+msgid ""
+"However, we would be very happy to hear your ideas and feedback about our "
+"work."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:562
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:288
 msgid ""
-"We would like to accept your miles, vouchers and hotel points, and in the "
-"future we may be able to."
+"If you're donating using a mechanism that allows for comments, feel free to "
+"send your thoughts that way."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
-msgid "Can I donate hardware?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
+msgid "Can I donate while using Tor Browser?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:572
-msgid "Typically no, we don't encourage people to donate hardware."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:298
+msgid "Yes! In our testing, donation works via Tor Browser."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:574
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:300
 msgid ""
-"But if you want to make a hardware donation that you think might be "
-"especially useful for us, please mail <span class=\"email"
+"If you run into problems, please contact <span class=\"email"
 "\">giving(at)torproject.org</span>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
-msgid "Can I donate my time?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:304
+msgid ""
+"For users logging in to Paypal: some people had no problem donating via "
+"PayPal while using Tor Browser."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:586
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:306
 msgid ""
-"Here's a <a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www."
-"torproject.org/getinvolved/volunteer.html.en\">list of areas where we would "
-"love your help</a>."
+"In past years, some people couldn't complete the donation process, and one "
+"person had their PayPal account temporarily frozen."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
-msgid "I would like my company to support Tor."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:308
+msgid "If you run into any problems donating via PayPal, please let us know."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:594
-msgid "What can we do to help?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:314
+msgid "How can I donate via debit or credit card?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:598
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:318
 msgid ""
-"Your company could match donations made by its employees to the Tor Project--"
-"that would be wonderful."
+"To donate using a major credit card or debit card (VISA, MasterCard, "
+"Discover or American Express) or via PayPal, please visit our <a href="
+"\"https://donate.torproject.org\">donate page</a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:600
-msgid ""
-"Your company may operate a corporate foundation that gives out grants, and "
-"if so, you should encourage it to fund us."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:324
+msgid "Why do you ask for my address and similar information?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:328
 msgid ""
-"Maybe your company would be willing to <a class=\"hyperlinks links\" target="
-"\"_blank\" href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide"
-"\">operate a Tor relay</a>."
+"If you donate by credit card, you will be asked for some information that's "
+"required to process your credit card payment, including your billing address."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:604
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:330
 msgid ""
-"If your company sells cloud services, perhaps it could donate these to Tor: "
-"We use them in some anti-censorship projects."
-msgstr ""
-
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:610
-msgid "You don't support my preferred way to donate."
-msgstr ""
-
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:612
-msgid "Can I recommend a new donation method to you?"
+"This allows our payment processor to verify your identity, process your "
+"payment, and prevent fraudulent charges to your credit card."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
-msgid "Sure."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:332
+msgid ""
+"We don't ask for information beyond what's required by the payment processor."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:618
-msgid ""
-"Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
+msgid "Why is there a minimum donation?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:624
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:342
 msgid ""
-"Will the Tor Project accept donations from anybody, or do you reserve the "
-"right to reject support from specific organizations or individuals?"
+"People who have stolen credit card information often donate to nonprofits as "
+"a way of testing whether the card works."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:628
-msgid "We do reserve the right to reject a donation."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:344
+msgid ""
+"These people typically use a very small amount for their testing, and we've "
+"found that setting a $1 minimum donation seems to deter them."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:630
-msgid "To date though, we haven't exercised that right."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
+msgid "Is there a maximum donation?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:632
-msgid "We are happy that a broad range of people use and support Tor."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:354
+msgid ""
+"No, no, no! More funding from you means we can do more things we are excited "
+"to do, like hire a person to monitor the Tor network full time, or research, "
+"test, and implement ideas we have for making the Tor network even stronger."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
-msgid "I have more questions."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
+msgid "Can I donate via bitcoin?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
-msgid "How can I get answers?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:364
+msgid ""
+"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" href="
+"\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin via "
+"BitPay</a>."
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:644
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:370
 msgid ""
-"Feel free to send questions to <span class=\"email\">frontdesk(at)rt."
-"torproject.org</span>."
+"If I want my donation to be anonymous, what is the best way for me to donate?"
 msgstr ""
 
-#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:646
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:374
 msgid ""
-"We will try to answer you, and we'll also post your question (and the "
-"answer) here."
+"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" href="
+"\"https://www.torproject.org/donate/donate-options.html.en#cash\">sending us "
+"a postal money order</a>."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:29
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:376
 msgid ""
-"The European shirt fits run a little small so you might want to consider "
-"sizing up."
+"You can donate via bitcoin if you have bitcoin set up in a way that "
+"preserves your anonymity."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
-msgid "Fit"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:378
+msgid "You can buy cash gift cards and mail them to us."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
-msgid "Select Fit"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:380
+msgid ""
+"There are probably other ways to donate anonymously that we haven't thought "
+"of-- maybe you will :)"
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
-msgid "Slim"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:387
+msgid ""
+"Is the Tor Project required to identify me as a donor to the United States "
+"government, or to any other authority?"
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
-msgid "Classic"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:391
+msgid ""
+"If you donate $5,000 or more to the Tor Project in a single year, we are "
+"required to report the donation amount and your name and address (if we have "
+"it) to the IRS, on Schedule B of the Form 990, which is filed annually."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
-msgid "European"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:393
+msgid ""
+"However, it's normal for nonprofits to redact individual donor information "
+"from the copy of the 990 that's made publicly-available, and that's what we "
+"do."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
-msgid "Size"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
+msgid ""
+"We are not required to identify donors to any other organization or "
+"authority, and we do not."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
-msgid "Select Size"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:397
+msgid ""
+"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
+"early 2019.)"
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
-msgid "S"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:403
+msgid ""
+"In your privacy policy, you say you will never publicly identify me as a "
+"donor without my permission."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
-msgid "M"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
+msgid "What does that mean?"
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
-msgid "L"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
+msgid "Yes, that's right."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
-msgid "XL"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:411
+msgid ""
+"If you donate to the Tor Project, there will be some people at the Tor "
+"Project who know about your donation."
 msgstr ""
 
-#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
-msgid "XXL"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:413
+msgid ""
+"However, we will never publicly identify you as a donor, unless you have "
+"given us permission to do so."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:35
-msgid "Support the Tor Project Today!"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:415
+msgid ""
+"That means we won't post your name on our website, thank you on Twitter, or "
+"do anything else that would publicly identify you as someone who has donated."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:48
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:71
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:634
-msgid "Tor: Strength in Numbers"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:417
+msgid ""
+"If we decide we would like to publicly name you as a donor, we will ask you "
+"first, and will not do it until and unless you say it's okay."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:52
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:75
-msgid "Donate to the Tor Project and protect the privacy of millions."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:423
+msgid ""
+"It's important to me that my donation be tax-deductible, but I don't pay "
+"taxes in the United States."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:54
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:77
-msgid "Anonymity loves company."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:427
+msgid ""
+"Right now, we can only offer tax-deductibility to donors who pay taxes in "
+"the United States."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:63
-msgid "summary_large_image"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:429
+msgid ""
+"If it's important to you that your donations be tax-deductible in a "
+"different country, let us know and we will try to offer tax-deductibility in "
+"your country in future."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:67
-msgid "@torproject"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:431
+msgid ""
+"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
+"target=\"_blank\" href=\"https://www.torproject.org/docs/faq.html."
+"en#RelayDonations\">these organizations support the Tor network</a> and may "
+"be able to offer you tax-deductibility for your donation."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:102
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:437
 msgid ""
-"This page requires Javascript to do PayPal or credit card\n"
-"      donations, but it appears you have Javascript disabled."
+"What if I don't want to use credit card or PayPal? Is there another way I "
+"can donate?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:106
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:441
 msgid ""
-"If you wish to donate without enabling Javascript, please take a look at our "
-"<a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
-"donations options page</a>."
+"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
+"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
+"you can donate.</a>"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:123
-msgid "Number of Donations"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
+msgid "What is your donor privacy policy?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:139
-msgid "Total Donated"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:452
+msgid ""
+"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" href="
+"\"/%langcode%/privacy-policy\">donor privacy policy</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:155
-msgid "Total Raised with Mozilla's Match"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
+msgid "What is your refund policy?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:163
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:169
-msgid "donate"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:462
+msgid ""
+"If you want your donation refunded, please tell us by emailing <span class="
+"\"email\">giving(at)torproject.org</span>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:165
-msgid "once"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:464
+msgid ""
+"To process your refund we'll need to know the date of your donation, the "
+"amount you donated, your full name, the payment method you used and your "
+"country of origin."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:171
-msgid "monthly"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:466
+msgid "Please also tell us why you're asking for a refund."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:178
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:332
-msgid "Want to donate Bitcoin, Stock, or via snail mail?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:468
+msgid ""
+"Please note that some payment methods won't support refunds, or require them "
+"to be made in a specific way, so we may need additional information from you "
+"in order to process yours."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:194
-msgid "invalid amount"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
+msgid "Can I donate by mail?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:198
-msgid "$2 minimum donation"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:478
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:584
+msgid "Yes."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:202
-msgid "$ other"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:480
+msgid ""
+"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
+"Seattle WA 98194, USA"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:209
-msgid "Choose your gift as a token of our thanks."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
+msgid "Do you accept cash donations?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:216
-msgid "No thanks, I don't want a gift."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
+msgid "Yes"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:218
-#, php-format
-msgid "I would prefer 100% of my donation to go to the Tor Project's work."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
+msgid "Does Tor Project accept matching donations?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:229
-msgid "sticker Pack"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:500
+msgid ""
+"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
+"Verizon, Red Hat, many universities, and others-- will match donations made "
+"by their employees."
+msgstr ""
+
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:502
+msgid ""
+"The fastest way to find out if your company matches donations is usually by "
+"checking with your HR department, or you can search for your company name at "
+"<a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www."
+"matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:236
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:504
 msgid ""
-"A collection of our favorite logo stickers for decorating your stuff and "
-"covering your cams."
+"If your company isn't currently set up to match donations to the Tor "
+"Project, we would be happy to help with the paperwork."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:246
-msgid "t-shirt"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:506
+msgid ""
+"If you want help figuring out the process, write us at <span class=\"email"
+"\">giving(at)torproject.org</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:254
-msgid "Get our limited edition Tor: Strength in Numbers shirt."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
+msgid "Can I become a Tor Project member?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:265
-msgid "t-shirt pack"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:516
+msgid ""
+"Right now, we don't have a membership program, but we may set one up in the "
+"future."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:275
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:518
 msgid ""
-"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
-"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
-"Tor at the Heart of Internet Freedom t-shirts."
+"If you want to get involved with the Tor Project, <a class=\"hyperlinks links"
+"\" target=\"_blank\" href=\"https://www.torproject.org/getinvolved/volunteer."
+"html.en\">this is a good place to start</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:281
-msgid "Tor at the Heart of Internet Freedom"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:524
+msgid "How can I get a Tor t-shirt or stickers?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:285
-msgid "Powering the Digital Resistance"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:528
+msgid ""
+"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
+"stickers, are presented on our main <a href=\"https://donate.torproject.org"
+"\">donation page</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:289
-msgid "Open Observatory of Network Interference"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:534
+msgid ""
+"If I want to stay in touch with the Tor Project, what's the best way for me "
+"to do that?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:300
-msgid "sweatshirt"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:538
+msgid ""
+"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a class="
+"\"hyperlinks links\" target=\"_blank\" href=\"https://blog.torproject.org/"
+"\">Tor Blog</a>, or <a class=\"hyperlinks links\" target=\"_blank\" href="
+"\"https://twitter.com/torproject\">follow us on Twitter</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:307
-msgid "Your generous support of Tor gets you this high-quality zip hoodie."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:544
+msgid ""
+"Does the Tor Project participate in the Combined Federal Campaign program?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:317
-msgid "how do you want to <span class=\"green\">DONATE</span>?"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:548
+msgid "No, Tor doesn't currently participate in the CFC program."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:323
-msgid "Credit Card"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:550
+msgid ""
+"If you'd like to get Tor added to the CFC program in your location, that "
+"would be great: please let us know if you need any help."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:339
-msgid "Your Info"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:556
+msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:343
-msgid "* required fields"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:562
+msgid ""
+"We would like to accept your miles, vouchers and hotel points, and in the "
+"future we may be able to."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:348
-msgid "First Name"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
+msgid "Can I donate hardware?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:352
-msgid "Last Name"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:572
+msgid "Typically no, we don't encourage people to donate hardware."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:358
-msgid "Street Address"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:574
+msgid ""
+"But if you want to make a hardware donation that you think might be "
+"especially useful for us, please mail <span class=\"email"
+"\">giving(at)torproject.org</span>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:362
-msgid "Apt."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
+msgid "Can I donate my time?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:372
-msgid "City"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:586
+msgid ""
+"Here's a <a class=\"hyperlinks links\" target=\"_blank\" href=\"https://www."
+"torproject.org/getinvolved/volunteer.html.en\">list of areas where we would "
+"love your help</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:376
-msgid "State"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
+msgid "I would like my company to support Tor."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:381
-msgid "Zip"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:594
+msgid "What can we do to help?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:387
-msgid "Enter email"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:598
+msgid ""
+"Your company could match donations made by its employees to the Tor Project--"
+"that would be wonderful."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:391
-msgid "We‘ll email you your receipt"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:600
+msgid ""
+"Your company may operate a corporate foundation that gives out grants, and "
+"if so, you should encourage it to fund us."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:398
-msgid "Start sending me email updates about the Tor Project!"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
+msgid ""
+"Maybe your company would be willing to <a class=\"hyperlinks links\" target="
+"\"_blank\" href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide"
+"\">operate a Tor relay</a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:405
-msgid "Card Number"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:604
+msgid ""
+"If your company sells cloud services, perhaps it could donate these to Tor: "
+"We use them in some anti-censorship projects."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:412
-msgid "MM"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:610
+msgid "You don't support my preferred way to donate."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:416
-msgid "YY"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:612
+msgid "Can I recommend a new donation method to you?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:420
-msgid "CVC"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
+msgid "Sure."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:428
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:480
-msgid "Choose your size and fit."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:618
+msgid ""
+"Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:433
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:441
-msgid "T-shirt:"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:624
+msgid ""
+"Will the Tor Project accept donations from anybody, or do you reserve the "
+"right to reject support from specific organizations or individuals?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:451
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:455
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:457
-msgid "Comments"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:628
+msgid "We do reserve the right to reject a donation."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:463
-msgid "Donating:"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:630
+msgid "To date though, we haven't exercised that right."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:470
-msgid "Donate"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:632
+msgid "We are happy that a broad range of people use and support Tor."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:484
-msgid "T-Shirt"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
+msgid "I have more questions."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:488
-msgid "Choose your size and fit for each shirt."
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
+msgid "How can I get answers?"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:492
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:644
 msgid ""
-"Tor at the Heart of Internet, Powering Digital Resistance or Open "
-"Observvatory of Network Interference (OONI) T-Shirt"
+"Feel free to send questions to <span class=\"email\">frontdesk(at)rt."
+"torproject.org</span>."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:496
-msgid "Strength in Numbers T-Shirt"
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:646
+msgid ""
+"We will try to answer you, and we'll also post your question (and the "
+"answer) here."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:500
-msgid "Choose your size."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:29
+msgid ""
+"The European shirt fits run a little small so you might want to consider "
+"sizing up."
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:504
-msgid "Sweatshirt"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
+msgid "Fit"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:508
-msgid "A required field is missing from the form."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
+msgid "Select Fit"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:510
-msgid "Please reload the page and try again."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
+msgid "Slim"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:514
-msgid "There was a problem submitting your request to the server:<br>"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
+msgid "Classic"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:518
-msgid "validation failed"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
+msgid "European"
 msgstr ""
 
-#. notes: __field_name__ will be replaced with the field name in the javascript.
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:524
-msgid "__field_name__ must be filled out."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
+msgid "Size"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:529
-msgid "This field is required"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
+msgid "Select Size"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:533
-msgid "Invalid email address."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
+msgid "S"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:537
-msgid "per month"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
+msgid "M"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:551
-msgid "One moment while we shovel coal into our servers."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
+msgid "L"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:638
-msgid ""
-"Stand up for the universal human rights to privacy and freedom and help keep "
-"Tor robust and secure."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
+msgid "XL"
 msgstr ""
 
-#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:640
-msgid "Mozilla will match your gift and double your impact."
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
+msgid "XXL"
 msgstr ""





More information about the tor-commits mailing list