/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.0.1
* Docs at http://davidtheclark.github.io/scut
*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline
  /* 2 */
}

/*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 8/9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
}

@-webkit-keyframes eye-flicker {
  0% {
    opacity: 1;
  }
  0.1% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  10.1% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  30.1% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  80.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes eye-flicker {
  0% {
    opacity: 1;
  }
  0.1% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  10.1% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  30.1% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  80.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mustache-wiggle-left {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  80% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes mustache-wiggle-left {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  80% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  90% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes light-flicker {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  10.5% {
    opacity: 0;
  }
  10.8% {
    opacity: 1;
  }
  11.8% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  21.9% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  23% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  80.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes light-flicker {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  10.5% {
    opacity: 0;
  }
  10.8% {
    opacity: 1;
  }
  11.8% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  21.9% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  23% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  80.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mouth-animation {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  10% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  15% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  40% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  45% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  60% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  65% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  68% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  72% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  75% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  78% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  81% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  83% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes mouth-animation {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  10% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  15% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  40% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  45% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  60% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  65% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  68% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  72% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  75% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  78% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  81% {
    -webkit-transform: scaleY(0.2);
            transform: scaleY(0.2);
  }
  83% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes santa-tracking-path {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 24;
  }
}
@keyframes santa-tracking-path {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 24;
  }
}
@-webkit-keyframes ping-animation {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes ping-animation {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@font-face {
  font-family: "acme";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/acmesa-webfont.eot");
  src: url("../fonts/acmesa-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/acmesa-webfont.woff") format("woff"), url("../fonts/acmesa-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Neuze Itslt Book";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/neuzeitsltstd-book-webfont.woff") format("woff"), url("../fonts/neuzeitsltstd-book-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "Neuze Itslt Book Heavy";
  font-weight: bold;
  font-style: normal;
  src: url("../fonts/neuzeitsltstd-bookheavy-webfont.woff") format("woff"), url("../fonts/neuzeitsltstd-bookheavy-webfont.ttf") format("truetype");
}
body {
  background: #282828;
  color: white;
  font-family: 'Neuze Itslt Book';
  margin: auto;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.full-width {
  width: 100%;
  text-align: center;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.eyes-1 {
  -webkit-animation: eye-flicker 4s 0.5s infinite;
          animation: eye-flicker 4s 0.5s infinite;
}

.eyes-2 {
  -webkit-animation: eye-flicker 5s 1s infinite;
          animation: eye-flicker 5s 1s infinite;
}

.eyes-3 {
  -webkit-animation: eye-flicker 6s 1.5s infinite;
          animation: eye-flicker 6s 1.5s infinite;
}

.eyes-4 {
  -webkit-animation: eye-flicker 7s 2s infinite;
          animation: eye-flicker 7s 2s infinite;
}

.eyes-5 {
  -webkit-animation: eye-flicker 8s 2.5s infinite;
          animation: eye-flicker 8s 2.5s infinite;
}

.light-1 {
  -webkit-animation: light-flicker 11s 0.5s infinite;
          animation: light-flicker 11s 0.5s infinite;
}

.light-2 {
  -webkit-animation: light-flicker 12s 1s infinite;
          animation: light-flicker 12s 1s infinite;
}

.mustache-1 {
  -webkit-animation: mustache-wiggle-left 4s infinite ease-in;
          animation: mustache-wiggle-left 4s infinite ease-in;
  -webkit-transform-origin: 300px 210px;
      -ms-transform-origin: 300px 210px;
          transform-origin: 300px 210px;
}

.mustache-2 {
  -webkit-animation: mustache-wiggle-left 4s infinite ease-in;
          animation: mustache-wiggle-left 4s infinite ease-in;
  -webkit-transform-origin: 300px 208px;
      -ms-transform-origin: 300px 208px;
          transform-origin: 300px 208px;
}

.mouth {
  -webkit-animation: mouth-animation 2s infinite ease-out;
          animation: mouth-animation 2s infinite ease-out;
  -webkit-transform-origin: 300px 215px;
      -ms-transform-origin: 300px 215px;
          transform-origin: 300px 215px;
}

.button-donate {
  background: #dc2524;
  border: none;
  border-radius: 3px;
  color: white;
  padding: .6em 1.3em .6em 1.3em;
  line-height: 1.3em;
}
@media only screen and (max-width: 600px) {
  .button-donate {
    font-size: .9em;
  }
}

.donate-icon {
  background: url("/img/icon_donate.png") no-repeat;
  background-size: 100% auto;
  width: 1.6em;
  margin-left: .5em;
  height: 1em;
  display: inline-block;
  position: relative;
  top: .1em;
}

header {
  display: block;
  position: absolute;
  padding: 30px;
  width: 100%;
  z-index: 10;
}
header .button-donate {
  position: absolute;
  right: 30px;
  text-decoration: none;
}
@media only screen and (max-width: 600px) {
  header .button-donate {
    right: 0px;
  }
}
header .header-wrap {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.text-header {
  position: absolute;
  top: 100px;
  width: 100%;
  text-align: center;
  font-family: 'Neuze Itslt Book Heavy';
  line-height: 1.6;
  font-size: 3.5vw;
}
@media only screen and (min-width: 1200px) {
  .text-header {
    font-size: 2.5em;
  }
}
.text-header span {
  display: block;
  font-family: 'Neuze Itslt Book';
  font-size: .8em;
}

.text-center-white {
  font-family: 'Neuze Itslt Book Heavy';
  font-size: 1.2em;
}

.subscribe-wrapper {
  display: block;
}
.subscribe-wrapper input[type=email] {
  border: none;
  padding: .5em 1em;
  text-align: left;
  width: 340px;
  height: 50px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: inline-block;
  color: black;
}
@media only screen and (max-width: 600px) {
  .subscribe-wrapper input[type=email] {
    width: 180px;
    margin-top: 1em;
  }
}
.subscribe-wrapper input[type=submit] {
  border: none;
  padding: none;
  display: inline-block;
  height: 50px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: white;
  background: #dc2524;
  padding: 0 1.5em;
}

.big-sub-head {
  font-size: 2em;
  font-family: 'Neuze Itslt Book Heavy';
}

.will-you-help {
  margin-top: 2em;
  padding-top: 2em;
}
.will-you-help:before {
  content: '';
  display: block;
  width: 70px;
  border-top: 4px solid #999999;
  margin: auto;
  position: relative;
  top: -2em;
}

.donation-wrapper {
  width: auto;
  text-align: left;
  margin: auto;
  max-width: 690px;
  padding: 0 1em;
}

.donate-header {
  font-size: 1.5em;
}

.follow-santas-story {
  margin-top: 2em;
}

.privacy-checkbox-wrapper {
  color: #999999;
  padding: .5em 0;
}
.privacy-checkbox-wrapper input[type=checkbox] {
  border: none;
  margin: .3em;
}

.messages.crm-error {
  background: #dc2524;
  border-radius: 3px;
  padding: .5em 1em;
  color: white;
}

.crm-error {
  color: #dc2524;
}

.crm-form-radio {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.price-set-row {
  margin: 1em 0;
}
.price-set-row label {
  padding: 10px;
  padding-left: 50px;
  font-size: 1em;
  background: #3C3C3B;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  border: 1px solid #3C3C3B;
  position: relative;
}
.price-set-row label:before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  position: absolute;
  background: white;
  left: 16px;
  top: 50%;
  margin-top: -8px;
}

.crm-form-radio:checked + label {
  color: white;
  background: #dc2524;
  border: none;
}
.crm-form-radio:checked + label:before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  position: absolute;
  background: #282828;
  border: 5px solid white;
  left: 16px;
  top: 50%;
  margin-top: -8px;
}

.logo-wrapper {
  width: 270px;
  position: absolute;
}
@media only screen and (max-width: 600px) {
  .logo-wrapper {
    width: 130px;
    top: 4px;
  }
}
.logo-wrapper img {
  width: 100%;
}

.intro {
  background: #3C3C3B;
}

.header-image-wrapper {
  padding-top: 50px;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.header-image-wrapper:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 46.58333%;
}
.header-image-wrapper .header-svg {
  position: absolute;
  bottom: 0px;
  left: 0;
}

.sub-head {
  text-align: center;
  font-size: 2.5vw;
  padding: 2em 2em;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  .sub-head {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 600px) {
  .sub-head {
    font-size: 1em;
    padding: 1em 1em 0 1em;
  }
}

.tryptic {
  overflow: hidden;
  position: relative;
  width: 33.3333333%;
  float: left;
}
.tryptic:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 118.86364%;
}
@media only screen and (max-width: 600px) {
  .tryptic {
    float: none;
    width: 100%;
    margin-top: 1em;
  }
}

.tryptic-footer {
  overflow: hidden;
  position: relative;
}
.tryptic-footer:before {
  content: "";
  display: block;
  height: 0;
  padding-top: 134.09091%;
}

.comic-container {
  position: absolute;
  top: 0;
  left: 2.5%;
  height: 100%;
  width: 95%;
  font-family: 'acme';
  overflow: hidden;
}

.tryptic-wrapper {
  padding: 1vw;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.comic-text {
  background: #3b3b3a;
  padding: 1.5em;
  font-size: 1.2vw;
  position: absolute;
  bottom: 0;
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  .comic-text {
    font-size: .9em;
  }
}
@media only screen and (max-width: 600px) {
  .comic-text {
    font-size: .8em;
  }
}

.tryptic-footer-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.signal-markers {
  width: 10%;
  height: 10%;
  position: absolute;
  top: 0%;
  left: 57%;
}

.not-active {
  display: none;
}

.tryptic-footer {
  cursor: pointer;
}
.tryptic-footer.disabled {
  cursor: default;
}
.tryptic-footer.disabled .comic-text {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}
.tryptic-footer.disabled .comic-footer-link {
  -webkit-filter: blur(4px);
          filter: blur(4px);
  background: #3b3b3a;
}
.tryptic-footer.disabled .not-active {
  display: block;
  background: rgba(59, 59, 58, 0.9);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.tryptic-footer.disabled .not-active p {
  top: 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tryptic-footer .comic-text {
  position: static;
}
.tryptic-footer .comic-footer-link {
  display: block;
  background: white;
  padding: 1em;
  color: #354476;
  font-family: "Neuze Itslt Book Heavy";
  font-size: .8em;
  width: 100%;
}
.tryptic-footer:hover a {
  color: #915c16;
}

.comic-container {
  background: #4e4e4e;
}

.tryptic-1 .comic-container {
  background-image: -webkit-linear-gradient(top, #472e0c 0%, #935e16 100%);
  background-image: linear-gradient(to bottom, #472e0c 0%, #935e16 100%);
}
.tryptic-1 .comic-text {
  background: transparent;
}
.tryptic-1 .comic-text:before {
  content: '';
  background: url("/img/speech-bubble-arm.svg") no-repeat;
  background-size: contain;
  width: 15%;
  height: 22%;
  position: absolute;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  display: block;
  top: -22%;
  right: 21%;
}

.tryptic-2 .comic-container:before {
  content: '';
  opacity: .4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background: url("/img/mountains-bg.png") no-repeat bottom center;
  background-size: cover;
}
.tryptic-2 .comic-text {
  bottom: auto;
  top: 0;
}
.tryptic-2 .tryptic-agent {
  position: absolute;
  top: 22%;
  width: 80%;
  left: -28%;
  height: 100%;
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
}
.tryptic-2 .tryptic-path {
  position: absolute;
  top: 49%;
  width: 81%;
  height: 100%;
  left: 5%;
  -webkit-transform: rotate(-29deg);
      -ms-transform: rotate(-29deg);
          transform: rotate(-29deg);
}
.tryptic-2 .tryptic-santa-icon {
  position: absolute;
  top: 52%;
  width: 10%;
  height: 10%;
  left: 60%;
}
.tryptic-2 .santa-path {
  -webkit-animation: santa-tracking-path 3s infinite linear;
          animation: santa-tracking-path 3s infinite linear;
}
.tryptic-2 .ping {
  border-radius: 100%;
  width: 29%;
  height: 22.826004%;
  position: absolute;
  top: 49%;
  left: 50%;
  background: -webkit-radial-gradient(center, ellipse, rgba(179, 22, 10, 0) 0%, rgba(179, 22, 10, 0) 52%, #b3160a 53%, #b3160a 100%);
  background: radial-gradient(ellipse at center, rgba(179, 22, 10, 0) 0%, rgba(179, 22, 10, 0) 52%, #b3160a 53%, #b3160a 100%);
}
.tryptic-2 .ping-1 {
  opacity: 0;
  -webkit-animation: ping-animation 6s 2s ease-out infinite;
          animation: ping-animation 6s 2s ease-out infinite;
}
.tryptic-2 .ping-2 {
  opacity: 0;
  -webkit-animation: ping-animation 6s 4s ease-out infinite;
          animation: ping-animation 6s 4s ease-out infinite;
}
.tryptic-2 .ping-3 {
  opacity: 0;
  -webkit-animation: ping-animation 6s 6s ease-out infinite;
          animation: ping-animation 6s 6s ease-out infinite;
}

footer {
  background: #131313;
  padding: 1em;
  text-align: center;
}
footer a {
  color: white;
  text-decoration: none;
}
footer ul {
  margin: 0;
}
footer ul li {
  margin: .5em 0;
  padding: .5em 0;
  list-style: none;
}
footer ul li:first-child:before {
  display: none;
}
footer ul li:before {
  content: '';
  border-top: #3C3C3B 3px solid;
  width: 40px;
  display: block;
  height: .5em;
  position: relative;
  left: 50%;
  top: -.5em;
  margin-left: -20px;
}
footer ul li a {
  color: #999999;
}

.santa-standing {
  position: absolute;
  left: 43%;
  top: 16%;
  width: 70%;
}

.security-cam-santa {
  width: 50%;
  left: -6%;
  position: absolute;
  top: 5%;
  -webkit-transform: rotateZ(10deg);
          transform: rotateZ(10deg);
}

.santa-arm {
  -webkit-transform: rotate(-20deg) translateX(10%) translateY(20%);
      -ms-transform: rotate(-20deg) translateX(10%) translateY(20%);
          transform: rotate(-20deg) translateX(10%) translateY(20%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -30%;
}

.tryptic-3 .comic-container {
  background-image: -webkit-linear-gradient(top, #58414a 0%, #eecbe9 100%);
  background-image: linear-gradient(to bottom, #58414a 0%, #eecbe9 100%);
}

.story-so-far {
  overflow: hidden;
}

.tryptic-spacer {
  margin-bottom: 1em;
  overflow: hidden;
}

.tryptic-4 .comic-container {
  background-image: -webkit-linear-gradient(top, #472e0c 0%, #935e16 100%);
  background-image: linear-gradient(to bottom, #472e0c 0%, #935e16 100%);
}

.tryptic-5 .santa-sleigh {
  position: absolute;
  height: 40%;
  width: 145%;
  top: 42%;
  left: -46%;
}
.tryptic-5 .comic-container {
  background: url("/img/mountains-bg-snow.png") no-repeat 0px 60px;
  background-size: cover;
}
.tryptic-5 .comic-text {
  top: 0;
}

.tryptic-6 .comic-container {
  background: url("/img/teddy-camera-tile-01.png") no-repeat 50% -20px;
  background-size: cover;
}

.tryptic-7 .comic-text {
  background: transparent;
}
.tryptic-7 .security-cam-santa {
  left: -12%;
  top: 18%;
}
.tryptic-7 .comic-container {
  background: url("/img/santa-cameras.png") no-repeat top center;
  background-size: cover;
}

.tryptic-8 .comic-container {
  background: url("/img/santa-judge-tile-01.png") no-repeat 50% -40px;
  background-size: cover;
}

.tryptic-9 .comic-text {
  background: transparent;
}
.tryptic-9 .comic-container {
  background: url("/img/present-set-01.png") no-repeat top center;
  background-size: cover;
}

.section-pricesetTotal {
  display: none;
}

.messages.crm-error {
  margin: 1em 0;
}

.santa-corporation-hand {
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
}

.content-page header {
  position: static;
  height: 240px;
}
.content-page .content-page-wrapper {
  width: 100%;
  max-width: 820px;
  text-align: center;
  margin: auto;
  top: -71px;
  position: relative;
  background: #282828;
  padding: 1em 2em;
  text-align: left;
}
.content-page .content-page-wrapper:before {
  content: '';
  background: url("/img/santa-icon-large.png");
  background-size: cover;
  width: 300px;
  height: 300px;
  right: -198px;
  position: absolute;
  top: 60px;
}
.content-page h1 {
  margin: 0.2em 0 1em;
  font-family: 'Neuze Itslt Book Heavy';
}
.content-page .section-title {
  font-size: 1.2em;
  font-family: 'Neuze Itslt Book Heavy';
}
.content-page .will-you-help {
  text-align: center;
}
.content-page p {
  color: #d5d5d5;
  line-height: 1.4em;
}
.content-page header.email-day-1 {
  background-image: url("/img/content-page-headers/naughty-nice-list.png");
  background-size: cover;
  background-position: 50% 50%;
}
.content-page header.email-day-2 {
  background-image: url("/img/content-page-headers/teddy-camera.png");
  background-size: cover;
  background-position: 50% 50%;
}
.content-page header.email-day-3 {
  background-image: url("/img/content-page-headers/santa-sleigh.png");
  background-size: cover;
  background-position: 50% 50%;
}
.content-page header.email-day-4 {
  background-image: url("/img/content-page-headers/santa-cameras.png");
  background-size: cover;
  background-position: 50% 50%;
}
.content-page header.email-day-5 {
  background-image: url("/img/content-page-headers/santa-agents.png");
  background-size: cover;
  background-position: 50% 50%;
}
.content-page header.email-day-6 {
  background-image: url("/img/content-page-headers/presents.png");
  background-size: cover;
  background-position: 50% 50%;
}

.is_recur-section {
  margin-bottom: 2em;
}

#recurHelp {
  padding: 1em 0;
}

label {
  display: inline;
}

input[type=text] {
  border: none;
  padding: .5em 1em;
  text-align: left;
  border-radius: 3px;
  margin: .5em 0;
  display: inline-block;
  color: black;
}
@media only screen and (max-width: 600px) {
  input[type=text] {
    width: 180px;
    margin-top: 1em;
  }
}

.billing_mode-group {
  border: none;
  padding: 0;
  margin-top: 1em;
}

.crm-credit_card_type-icons {
  padding: .5em 0;
}
.crm-credit_card_type-icons a {
  color: #dc2524;
  margin-right: 1em;
}

.crm-section .label {
  margin-top: 0.5em;
}

legend {
  font-size: 1.5em;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.billing_name_address-group {
  margin-top: 2em;
}
.billing_name_address-group a {
  color: #dc2524;
}

.crm-form-submit {
  background: #dc2524;
  border: none;
  border-radius: 3px;
  color: white;
  padding: .6em 1.3em .6em 1.3em;
  line-height: 1.3em;
}

.crm-submit-buttons {
  margin-top: 1em;
  margin-bottom: 2em;
}

/*# sourceMappingURL=main.css.map */
