/* 
 *
 * / Variables
------------------------------------------------*/
/* Colors */
/* dark grey */
/* darker grey */
/* red */
/* green */
/* orange */
/* blue */
/* Widths */
/* Breakpoints */
/* 600px */
/* 1000px */
/* 1280px */
/* Fonts */
/*----------------------------------------------*\
    RESET
	=====
\*----------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

* { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #fff;
}

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

figure {
  margin: 0;
}

ol, ul {
  list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
  outline: 0;
}

img {
  border: 0 none;
  height: auto;
  max-width: 100%;
}

a img {
  border: 0;
}

/* Text meant only for screen readers */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
}

/* Clearing */
.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clear:after {
  clear: both;
}

/* Webkit specific */
input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* Global */
body {
  background-color: #E4E8ED;
  color: #333;
  font-family: "Crimson Text", serif;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrapper-padding {
  padding: 0 2rem; /* rem because the typography class makes it weird */
}

.text-width {
  max-width: 900px;
  margin: 0 auto;
}

.home .wrapper,
.about .wrapper,
.contact .wrapper,
.mailinglist .wrapper,
.thankyou .wrapper,
.licensed-merch .wrapper {
  background-color: #000000;
}

/* Header */
.header {
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 1em 1em;
  background-color: #000000;
}
@media only screen and (min-width: 37.5em) {
  .header {
    font-size: 1.125em;
    padding: 2em 1em 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
  }
}
@media only screen and (min-width: 62.5em) {
  .header {
    font-size: 1.125em;
    text-align: left;
  }
}
@media only screen and (min-width: 80em) {
  .header {
    font-size: 1.5em;
  }
}

/* Logo */
.logo {
  margin-top: 0.5em;
}
@media only screen and (min-width: 37.5em) {
  .logo {
    margin-top: 0.125em;
  }
}
.logo a {
  color: #eee;
}
.logo img {
  width: 10em;
}
@media only screen and (min-width: 62.5em) {
  .logo img {
    width: 12em;
  }
}

/* Nav */
.primary-nav {
  margin-top: 1.25em;
}
@media only screen and (min-width: 37.5em) {
  .primary-nav {
    margin-top: 0;
    text-align: right;
  }
}
.primary-nav li {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 37.5em) {
  .primary-nav li {
    margin-right: 1em;
  }
}
.primary-nav a {
  color: #eee;
  text-decoration: none;
  font-family: "Crimson Text", serif;
  position: relative;
}
.primary-nav a:hover:before, .primary-nav a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1em;
  height: 1em;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../../images/heart.svg");
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.primary-nav a:hover:before {
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}

/* Highlight active menu items */
.about a.about,
.books a.books,
.mailinglist a.mailinglist,
.licensed-merch a.licensed-merch,
.faq a.faq,
.events a.events,
.contact a.contact {
  border-bottom: solid 1px;
  padding-bottom: 2px;
}

.latest {
  font-style: italic;
  color: #ffbf5c !important;
}

/* Footer */
.footer {
  padding: 1em 2em;
  background-color: #000000;
  text-align: center;
}
@media only screen and (min-width: 62.5em) {
  .footer {
    text-align: right;
  }
}
.footer p {
  opacity: 0.4;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 0.9em;
  color: #C5C7CB;
}
.footer p a {
  color: #C5C7CB;
}

/* Home */
.section-hero {
  max-height: 130vh;
  overflow: hidden;
  position: relative;
}
.section-hero img {
  display: block;
}

.section-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em 1em;
  background-color: #eee;
}
@media only screen and (min-width: 37.5em) {
  .section-cta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 62.5em) {
  .section-cta__cover {
    width: 50%;
  }
}
.section-cta__cover a {
  display: block;
}
.section-cta__cover img {
  max-width: 25vw;
  display: block;
  margin: 0 1em 0 auto;
}
@media only screen and (min-width: 37.5em) {
  .section-cta__cover img {
    margin-right: 2em;
  }
}
.section-cta__info {
  text-align: center;
}
@media only screen and (min-width: 37.5em) {
  .section-cta__info {
    width: 50%;
  }
}
.section-cta__info p {
  color: #333;
  margin: 0 auto 1em 0;
  padding-right: 1em;
  max-width: 28rem;
}
.section-cta__info p:first-child {
  font-weight: bold;
  letter-spacing: 2px;
  color: #446a67;
  margin-bottom: 1em;
}
@media screen and (min-width: 37.5em) {
  .section-cta__info p:first-child {
    margin-bottom: 2em;
  }
}
.section-cta__info__intro {
  font-size: 1em;
}
@media only screen and (min-width: 37.5em) {
  .section-cta__info__intro {
    font-size: 1.1em;
  }
}
.section-cta__info__summary {
  font-style: italic;
  font-size: 1.2em;
}
@media only screen and (min-width: 37.5em) {
  .section-cta__info__summary {
    font-size: 1.7em;
  }
}
.section-cta__info__link a {
  background-color: #333;
  color: #eee;
  display: inline-block;
  margin: 0.25em;
}

.section-posters {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 37.5em) {
  .section-posters {
    max-width: 85em;
    margin-left: auto;
    margin-right: auto;
  }
}

.poster {
  position: relative;
  padding: 0.5em 1em;
  width: 50%;
}
@media only screen and (min-width: 800px) {
  .poster {
    width: 25%;
  }
}
.poster > a {
  display: block;
}
.poster .poster-image {
  display: block;
  width: 100%;
}

/* Generic Home Section */
.home-section {
  padding: 2em 1em;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 62.5em) {
  .home-section {
    font-size: 1.15em;
  }
}
@media only screen and (min-width: 80em) {
  .home-section {
    font-size: 1.3em;
  }
}

.section-divider {
  /*background-image: linear-gradient(to right, #262261 0%, #971f63 100%);*/
  height: 0; /* disable for now */
}

.section-darker-bg {
  background-color: #C5C7CB;
}

.section-header {
  display: inline-block;
  padding: 0 0.25em 0.25em;
  border-bottom: 1px solid #eee;
  margin-bottom: 1em;
  font-family: "Crimson Text", serif;
  font-size: 1.3em;
  color: #eee;
}

@media only screen and (min-width: 25em) {
  .icons-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.icons-wrapper li {
  margin: 0 auto 1.5em;
  width: 80%;
}
@media only screen and (min-width: 25em) {
  .icons-wrapper li {
    margin-left: 0.5em;
    margin-right: 0.5em;
    width: auto;
  }
}
.icons-wrapper li a {
  display: inline-block;
  color: #eee;
  border: 1px solid #eee;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 1.2em;
  text-decoration: none;
  padding: 0.75em 1.5em;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  width: 100%;
}
.icons-wrapper li a:hover {
  background-color: #eee;
  color: #333;
}

/* Secondary Pages */
.article {
  padding-bottom: 2em;
  min-height: 25em;
}
@media only screen and (min-width: 37.5em) {
  .article {
    min-height: 40em;
  }
}
.article header h1 {
  border-bottom: 1px solid #333;
  color: #333;
  display: inline-block;
  font-size: 2em;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.125em;
}
@media only screen and (min-width: 62.5em) {
  .article header h1 {
    font-size: 3.5em;
  }
}
@media only screen and (min-width: 80em) {
  .article header h1 {
    font-size: 5em;
  }
}
.article header h1.header-on-dark {
  color: #eee;
  border-bottom: 1px solid #eee;
}
.article .banner {
  margin-top: 1em;
  margin-bottom: 2em;
}

.typography {
  font-size: 1.1em;
}
@media only screen and (min-width: 37.5em) {
  .typography {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 62.5em) {
  .typography {
    font-size: 1.35em;
  }
}
@media only screen and (min-width: 80em) {
  .typography {
    font-size: 1.5em;
  }
}
.typography p, .typography ul {
  line-height: 1.5;
  margin-bottom: 1em;
}
.typography li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.typography a {
  color: #333;
  text-decoration: none;
  padding-bottom: 0.125em;
  border-bottom: 1px solid #333;
}
.touch .typography a:hover {
  color: #873D19;
  border-color: #873D19;
}
.torn .typography a:hover {
  color: #873D19;
  border-color: #873D19;
}
.tempt .typography a:hover {
  color: #873D19;
  border-color: #873D19;
}
.transcend .typography a:hover {
  color: #873D19;
  border-color: #873D19;
}
.trick .typography a:hover {
  color: #a90426;
  border-color: #a90426;
}
.dare .typography a:hover {
  color: #49742A;
  border-color: #49742A;
}
.lie .typography a:hover {
  color: #b95335;
  border-color: #b95335;
}
.dream .typography a:hover {
  color: #3E949B;
  border-color: #3E949B;
}
.kissthefae .typography a:hover {
  color: #a64d00;
  border-color: #a64d00;
}
.typography h2 {
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0.75em;
}
.typography h4 {
  letter-spacing: 1px;
  margin-top: 1.5em;
  margin-bottom: 1em;
  text-transform: uppercase;
  color: #333;
}
.trick .typography h4 {
  color: #e93434;
}
.dare .typography h4 {
  color: #49742A;
}
.lie .typography h4 {
  color: #b95335;
}
.dream .typography h4 {
  color: #3E949B;
}
.touch .typography h4 {
  color: #873D19;
}
.torn .typography h4 {
  color: #873D19;
}
.tempt .typography h4 {
  color: #873D19;
}
.transcend .typography h4 {
  color: #873D19;
}
.kissthefae .typography h4 {
  color: #a64d00;
}

.typography--on-dark {
  color: #eee;
}
.typography--on-dark a {
  color: #eee;
  border-bottom-color: #eee;
}
.typography--on-dark a:hover {
  color: #fff;
  border-color: #fff;
}

/* About */
.portrait {
  margin-top: 2em;
}

/* Books */
.books-title {
  margin-bottom: 3em;
  padding: 1em 0;
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "Arapey", serif;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.85);
}
@media only screen and (min-width: 62.5em) {
  .books-title {
    padding: 4.25em 0;
  }
}
.books-title:before {
  content: "";
  height: 0.5em;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.books-title__title {
  display: block;
  font-size: 3em;
  letter-spacing: 0.1em;
}
.books-title__sub-title {
  display: block;
  font-size: 1.3em;
  margin-top: 1em;
  letter-spacing: 0.1em;
}

/* Touch */
.touch-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#4d270e), to(#873D19));
  background-image: linear-gradient(to right, #4d270e 0%, #873D19 100%);
  color: #fff;
}
.touch-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#873D19), to(#4d270e));
  background-image: linear-gradient(to right, #873D19 0%, #4d270e 100%);
}

/* Torn */
.torn-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#4d270e), to(#873D19));
  background-image: linear-gradient(to right, #4d270e 0%, #873D19 100%);
  color: #fff;
}
.torn-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#873D19), to(#4d270e));
  background-image: linear-gradient(to right, #873D19 0%, #4d270e 100%);
}

/* Tempt */
.tempt-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#4d270e), to(#873D19));
  background-image: linear-gradient(to right, #4d270e 0%, #873D19 100%);
  color: #fff;
}
.tempt-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#873D19), to(#4d270e));
  background-image: linear-gradient(to right, #873D19 0%, #4d270e 100%);
}

/* Transcend */
.transcend-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#4d270e), to(#873D19));
  background-image: linear-gradient(to right, #4d270e 0%, #873D19 100%);
  color: #fff;
}
.transcend-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#873D19), to(#4d270e));
  background-image: linear-gradient(to right, #873D19 0%, #4d270e 100%);
}

/* Trick  */
.trick .wrapper {
  background-color: #000000;
}

.trick-title {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a90426), to(#6d0117));
  background-image: linear-gradient(to bottom, #a90426 0%, #6d0117 100%);
}
.trick-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#373551), to(#b8b7bd));
  background-image: linear-gradient(to right, #373551 0%, #b8b7bd 100%);
}

/* Dare  */
.dare .wrapper {
  background-color: #000000;
}

.dare-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#264211), to(#0A2F0D));
  background-image: linear-gradient(to right, #264211 0%, #0A2F0D 100%);
}
.dare-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#0A2F0D), to(#264211));
  background-image: linear-gradient(to right, #0A2F0D 0%, #264211 100%);
}

/* Lie  */
.lie .wrapper {
  background-color: #000000;
}

.lie-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#5D2A09), to(#b95335));
  background-image: linear-gradient(to right, #5D2A09 0%, #b95335 100%);
}
.lie-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#b95335), to(#5D2A09));
  background-image: linear-gradient(to right, #b95335 0%, #5D2A09 100%);
}

/* Dream  */
.dream .wrapper {
  background-color: #000000;
}

.dream-title {
  background-image: -webkit-gradient(linear, left top, right top, from(#3E949B), to(#a2cad4));
  background-image: linear-gradient(to right, #3E949B 0%, #a2cad4 100%);
}
.dream-title:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#a2cad4), to(#3E949B));
  background-image: linear-gradient(to right, #a2cad4 0%, #3E949B 100%);
}

/* Vicious Faeries */
.kissthefae-title {
  background-color: #000000;
  color: #fff;
  text-shadow: none;
}
.kissthefae-title:before {
  background-image: -webkit-gradient(linear, right top, left top, from(#793801), to(#efc028));
  background-image: linear-gradient(to left, #793801 0%, #efc028 100%);
}
.kissthefae-title .books-title__sub-title {
  color: white;
}

.trick-quote, .lie-quote {
  margin-bottom: 2em !important;
}

.trick-quote-author, .lie-quote-author {
  font-size: 0.85em;
  color: #ed5f35;
  display: inline-block;
}

.trick-quote-author {
  color: #d9002c;
}

.cover {
  margin-bottom: 2em;
}
.cover__credits {
  font-family: pt sans narrow;
  font-size: 0.6em;
  opacity: 0.6;
}
.cover__credits a {
  border: 0;
}
.cover__credits:hover {
  opacity: 1;
}

.cover-wrapper {
  margin-bottom: 2em;
}

.reviews p {
  margin-bottom: 1.5em;
}
.touch .reviews a, .touch .reviews [class^=icon-]::before {
  color: #873D19;
}
.trick .reviews a, .trick .reviews [class^=icon-]::before {
  color: #a90426;
}
.trick .reviews a {
  border-bottom-color: rgba(238, 238, 238, 0.5);
}
.trick .reviews a:hover {
  border-bottom-color: #a90426;
}

@media only screen and (min-width: 37.5em) {
  .cover-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cover {
    margin-bottom: 0;
    margin-right: 5%;
    width: 45%;
  }
  .buy {
    width: 50%;
  }
}
.amazon {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.5em;
}

.amazon-links {
  text-indent: 0;
  font-size: 0.85em;
}
.amazon-links a {
  margin-right: 0.25em;
}

.contributors {
  font-size: 0.9em;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
@media only screen and (min-width: 37.5em) {
  .contributors {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
}
@media only screen and (min-width: 62.5em) {
  .contributors {
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
  }
}
.contributors li {
  margin-bottom: 0.75em;
  line-height: 1;
  margin-left: 0;
}
@media only screen and (min-width: 37.5em) {
  .contributors li {
    margin-left: 2em;
  }
}

/* Accordions */
.sub-heading {
  font-family: "Crimson Text", serif;
  margin-top: 3em;
  margin-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5em;
}
@media only screen and (min-width: 62.5em) {
  .sub-heading {
    font-size: 2em;
  }
}
.trick .sub-heading, .dare .sub-heading, .lie .sub-heading, .dream .sub-heading {
  color: #eee;
}
.sub-heading span {
  border-bottom: 1px solid #333;
}
.trick .sub-heading span, .dare .sub-heading span, .lie .sub-heading span, .dream .sub-heading span {
  border-bottom-color: #eee;
}

.fun { /* accordion wrappers */
  margin-top: 0.5em;
  padding: 1.5em 0;
}

.touch .fun-1 {
  background-color: #873D19;
}
.touch .fun-1 .accordion-trigger span {
  color: white;
}
.touch .fun-2 {
  background-color: #873D19;
}
.touch .fun-2 .accordion-trigger span {
  color: white;
}
.touch .fun-3 {
  background-color: #873D19;
}
.touch .fun-3 .accordion-trigger span {
  color: white;
}
.touch .fun-4 {
  background-color: #873D19;
}
.touch .fun-4 .accordion-trigger span {
  color: white;
}

.trick .fun .accordion-trigger span {
  color: #eee;
}
.trick .fun-1 {
  background-color: #a90426;
}
.trick .fun-2 {
  background-color: #900320;
}
.trick .fun-3 {
  background-color: #77031b;
}
.trick .fun-4 {
  background-color: #5e0215;
}
.trick .fun-5 {
  background-color: #450210;
}

.accordion-trigger {
  color: #fff;
  position: relative;
  cursor: pointer;
  -webkit-transition: padding-bottom 0.4s ease;
  transition: padding-bottom 0.4s ease;
  font-size: 1.5em;
}
@media only screen and (min-width: 62.5em) {
  .accordion-trigger {
    font-size: 2.5em;
  }
}
.open .accordion-trigger {
  padding-bottom: 0.25em;
}

.icon-down-open-1 {
  position: absolute;
  right: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: margin 0.15s ease, -webkit-transform 0.3s ease;
  transition: margin 0.15s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, margin 0.15s ease;
  transition: transform 0.3s ease, margin 0.15s ease, -webkit-transform 0.3s ease;
}
.open .icon-down-open-1 {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion-trigger:hover .icon-down-open-1 {
  margin-right: -0.1em;
}

.payload {
  background-color: #E4E8ED;
  padding: 2em 0;
}

.credit {
  margin-top: 2em;
  font-size: 0.7em;
}

.fun h5 {
  margin-top: 1em;
}
.fun h5 span {
  font-size: 0.8em;
  margin-left: 0.25em;
}

.order-box {
  border: 1px solid #ccc;
  margin-top: 2em;
  padding: 0.75em;
}

.order-price {
  font-size: 0.8em;
}

.order-button {
  border: 0 none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5em 1em;
  background-color: #eee;
  color: #333;
  font-family: "Crimson Text", serif;
  text-decoration: none;
  display: inline-block;
}
.touch .order-button {
  background-color: #333;
  color: #eee;
}

/* Email Sign Up */
.section-signup {
  color: #eee;
  max-width: 30em;
  margin: 0 auto;
}
.section-signup a {
  color: #eee;
}
.section-signup #mc_embed_signup input {
  background-color: transparent;
  color: white;
  border-radius: 0;
  font-size: 1em;
}
.section-signup #mc_embed_signup .mc-field-group input {
  text-indent: 0;
  padding: 0.8em 1em;
}
.section-signup #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  background-color: transparent;
}
.section-signup #mc_embed_signup #mce-success-response,
.section-signup #mc_embed_signup #mce-error-response {
  color: white;
}
.section-signup #mc_embed_signup .button {
  background-color: #eee;
  color: #333;
  font-family: "PT Sans Narrow", sans-serif;
  padding: 0.5em 1.25em;
  height: auto;
}

/* Thank You */
.section-thankyou {
  color: #eee;
  max-width: 30em;
  margin: 0 auto;
}
.section-thankyou p {
  margin-bottom: 0.8em;
}
.section-thankyou a {
  color: currentColor;
}

/* Writing (for outtakes, etc.) */
.section-writing {
  background-color: #E4E8ED;
  color: #333;
  max-width: 30em;
  margin: 0 auto;
  padding: 2em 1em;
  font-size: 1.3em;
}
.section-writing h1 {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 0.5em;
}
.section-writing .subtitle {
  text-align: center;
  margin-bottom: 2em;
}
.section-writing p {
  margin-bottom: 0.8em;
}
.section-writing a {
  color: #333;
}

/* Fade in elements on load */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: opacity 0.5s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 0.5s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 0.5s ease 0s, transform 1s ease 0s;
  transition: opacity 0.5s ease 0s, transform 1s ease 0s, -webkit-transform 1s ease 0s;
}
.fade-in:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.fade-in.loaded {
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

small {
  font-size: 0.6em;
}