@import url("//hello.myfonts.net/count/2f5f54");
@font-face {
  font-family: 'Caitiff';
  src: url("/fonts/caitiff/caitiff.eot");
  src: url("/fonts/caitiff/caitiff.eot?#iefix") format("embedded-opentype"), url("/fonts/caitiff/caitiff.woff2") format("woff2"), url("/fonts/caitiff/caitiff.woff") format("woff"), url("/fonts/caitiff/caitiff.ttf") format("truetype"); }

@font-face {
  font-family: 'LMN-Icons';
  src: url("/fonts/lmn-icons/lmn-icons.eot");
  src: url("/fonts/lmn-icons/lmn-icons.eot?#iefix") format("embedded-opentype"), url("/fonts/lmn-icons/lmn-icons.woff") format("woff"), url("/fonts/lmn-icons/lmn-icons.ttf") format("truetype"), url("/fonts/lmn-icons/lmn-icons.svg#icons") format("svg"); }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased; }

body {
  background-color: #2fb096; }

body,
input,
button {
  font: 20px/1.75 'adelle-sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  color: #666; }

a {
  color: #666; }

.page-content {
  background-color: #eee9e6;
  background-image: url("/img/background.jpg");
  padding-bottom: 50px; }

.container {
  max-width: 970px;
  margin: 0 auto; }

@media only screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none; } }

.show-on-mobile {
  display: none; }
  @media only screen and (max-width: 767px) {
    .show-on-mobile {
      display: initial; } }

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/img/icons@2x.png");
  background-size: 20px 60px;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -4px; }

.icon--save {
  background-position: 0 0; }

.icon--share {
  background-position: 0 -20px; }

.icon--books {
  background-position: 0 -40px; }

.button {
  background-color: #c5c2b6;
  border: 0;
  padding: 0 16px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: middle;
  height: 2.6rem;
  line-height: 2.6rem;
  text-decoration: none; }
  @media only screen and (max-width: 767px) {
    .button {
      display: block;
      width: 100%; } }

.button--raised {
  box-shadow: inset 0 -4px rgba(0, 0, 0, 0.2), 4px 5px rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
  -webkit-transition: 0.1s ease all;
          transition: 0.1s ease all; }
  .button--raised:active {
    box-shadow: inset 0 -2px rgba(0, 0, 0, 0.2), 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate(0, 2px);
        -ms-transform: translate(0, 2px);
            transform: translate(0, 2px); }

.button--save {
  background-color: #01b69b; }

.button--save.button--raised:hover {
  background-color: #01a78e; }

.button--initial {
  background-color: #f16263; }

.button--initial.button--raised:hover {
  background-color: #f05455; }

.button--share {
  background-color: #2e4da7; }

.button--share.button--raised:hover {
  background-color: #2b479b; }

.control-group {
  position: relative;
  display: inline-block;
  margin: 0 14px; }
  @media only screen and (max-width: 999px) {
    .control-group {
      display: block;
      margin: 20px 0; } }

.control-group__error {
  position: absolute;
  top: -20px;
  left: 5%;
  right: 5%;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  z-index: 2;
  background-color: #f36563;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
  -webkit-animation: 0.3s control-group__error-in;
          animation: 0.3s control-group__error-in; }
  .control-group__error::before {
    content: '';
    border-left: 10px transparent solid;
    border-right: 10px transparent solid;
    border-top: 10px #f36563 solid;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    bottom: -10px; }

.control-group__label {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  font: italic 16px "freight-text-pro", serif;
  color: #c5c2b7;
  padding: 0 4px;
  z-index: 1; }

.control-group__input {
  border: 2px #c5c2b7 solid;
  border-radius: 3px;
  padding: 0 12px;
  line-height: 1;
  vertical-align: middle;
  height: 2.6rem; }
  @media only screen and (max-width: 767px) {
    .control-group__input {
      width: 100%; } }

@-webkit-keyframes control-group__error-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes control-group__error-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.panel {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  padding: 20px; }
  @media only screen and (max-width: 999px) {
    .panel {
      margin: 0 20px; } }

.header {
  padding: 20px 25px;
  text-align: center;
  background: #fff;
  margin-bottom: 40px;
  height: 75px; }
  @media only screen and (max-width: 767px) {
    .header {
      margin-bottom: 30px;
      padding: 20px 15px;
      font-size: 18px; } }

.header__logo {
  float: left; }

.header__books {
  float: right;
  color: #666;
  text-decoration: none;
  line-height: 35px; }

.headline {
  text-align: center;
  position: relative;
  overflow-y: hidden;
  font: 24px 'freight-text-pro', serif;
  padding-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .headline {
      font-size: 18px; } }

.headline__fox,
.headline__dino {
  position: absolute;
  bottom: 0;
  -webkit-animation: 1s ease headline__character-in;
          animation: 1s ease headline__character-in;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards; }
  @media only screen and (max-width: 767px) {
    .headline__fox,
    .headline__dino {
      display: none; } }

.headline__type {
  max-width: 90%; }

.headline__fox {
  left: 20px; }

.headline__dino {
  right: 20px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s; }

@-webkit-keyframes headline__character-in {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes headline__character-in {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.intro {
  margin-top: 100px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .intro {
      margin-top: 0; } }
  @media only screen and (max-width: 999px) and (min-width: 768px) {
    .intro {
      margin-top: 20px; } }

.characters {
  margin: 0 -40px;
  overflow: hidden; }
  .characters img {
    display: block;
    max-width: 100%; }

.caption {
  padding: 45px 20px;
  text-align: center;
  border-bottom: 1px #eee solid;
  color: #999; }
  .caption strong {
    color: #666; }
  @media only screen and (max-width: 767px) {
    .caption {
      padding: 25px 10px; } }

.actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-bottom: 15px; }
  @media only screen and (max-width: 999px) {
    .actions {
      display: block;
      text-align: center;
      margin: 0;
      padding-bottom: 0; } }

.actions--initial {
  margin-bottom: 100px;
  display: block;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .actions--initial {
      margin-bottom: 0; } }
  @media only screen and (max-width: 999px) and (min-width: 768px) {
    .actions--initial {
      margin-bottom: 20px; } }

.actions__selector,
.actions__share {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-top: 15px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }
  @media only screen and (max-width: 999px) {
    .actions__selector,
    .actions__share {
      display: block;
      -webkit-box-flex: 0;
      -webkit-flex: 0;
          -ms-flex: 0;
              flex: 0;
      padding-top: 0; } }

.actions__selector {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  .actions--initial .actions__selector {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0;
        -ms-flex: 0;
            flex: 0; }

.actions__share {
  margin-left: auto; }
  @media only screen and (max-width: 999px) {
    .actions__share {
      border-bottom: 1px #eee solid; } }

.footer {
  padding: 35px 10px 50px;
  text-align: center;
  color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding-bottom: 35px; } }

.footer__strap {
  font-size: 16px; }
  @media only screen and (max-width: 767px) {
    .footer__strap {
      font-size: 14px; } }

.lead-out {
  border-top: 1px #eee solid;
  padding: 15px 15px 0;
  text-align: center;
  font-size: 1rem; }
  @media only screen and (max-width: 767px) {
    .lead-out {
      padding: 15px 5px 0; } }

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