@import url(https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono|Share);@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*
 File:  base/base.scss

 Reset layout and styles to be built on

 http://meyerweb.com/eric/tools/css/reset/ 
 v2.0 | 20110126
 License: none (public domain)
*/

* {
  box-sizing: border-box;
}

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,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background-color: inherit;
  font-size: inherit;
  line-height: inherit;
  vertical-align: inherit;
  font-weight: inherit;
  font-family: inherit;
  font-style: inherit;
  text-decoration: inherit;
  text-align: inherit;
}

/* HTML5 display-role reset for older browsers */

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bolder;
}

em {
  font-style: italic;
}

body {
  color: #333333;
  font-family: "Roboto", "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Share", "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
}

h1 {
  color: #40485c;
}

h2 {
  color: #532e1b;
}

pre,
code,
kbd {
  font-family: "Roboto Mono", "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Monaco", monospace;
}

b {
  font-weight: bolder;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.5em;
  margin-bottom: 0.25em;
}

p,
li,
pre,
code,
kbd {
  margin-bottom: 0.5em;
}

@media print {
  body {
    font-size: 12pt;
    line-height: 1.25em;
  }
}

@media (max-width: 50rem) {
  body {
    line-height: 1.375em;
  }
}

@media (max-width: 420px) {
  body {
    line-height: 1.25em;
  }
}

header h1 {
  font-size: 3rem;
  line-height: 1.05em;
}

@media print {
  header h1 {
    font-size: 36pt;
    line-height: 1.25em;
  }
}

@media (max-width: 50rem) {
  header h1 {
    font-size: 2.5rem;
    line-height: 1.125em;
  }
}

@media (max-width: 420px) {
  header h1 {
    font-size: 2rem;
    line-height: 1.25em;
  }
}

h1 {
  font-size: 2.25rem;
  line-height: 1.25em;
}

@media print {
  h1 {
    font-size: 24pt;
  }
}

@media (max-width: 50rem) {
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.625rem;
    line-height: 1.15384615em;
  }
}

h2 {
  font-size: 1.75rem;
  line-height: 1.25em;
}

@media print {
  h2 {
    font-size: 18pt;
  }
}

@media (max-width: 50rem) {
  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 420px) {
  h2 {
    font-size: 1.75rem;
    line-height: 1.13636364em;
  }
}

h3 {
  font-size: 1.125rem;
  line-height: 1.22222222em;
}

@media print {
  h3 {
    font-size: 18pt;
    line-height: 1.25em;
  }
}

@media (max-width: 420px) {
  h3 {
    line-height: 1.11111111em;
  }
}

body > header {
  vertical-align: top;
  background-color: #c0d3e4;
}

@supports (grid-template-areas: none) {
  body > header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 5rem 40rem 5rem auto;
        grid-template-columns: auto 5rem 40rem 5rem auto;
    -ms-grid-rows: 5rem auto;
        grid-template-rows: 5rem auto;
    grid-template-areas: "left-gutter left center right right-gutter" "menu menu menu menu menu";
  }

@media (max-width: 50rem) {
    body > header {
      -ms-grid-columns: 0.5rem 3rem auto 3rem 0.5rem;
          grid-template-columns: 0.5rem 3rem auto 3rem 0.5rem;
      -ms-grid-rows: 3rem auto;
          grid-template-rows: 3rem auto;
    }
}
}

body > header a {
  text-decoration: none;
}

body > header a.logo {
  display: inline-block;
}

@supports (grid-template-areas: none) {
  body > header a.logo {
    display: block;
    grid-area: left;
  }
}

body > header a.logo img {
  margin: 1rem;
  height: 3rem;
}

@media (max-width: 50rem) {
  body > header a.logo img {
    margin: 0.5em;
    height: 2rem;
  }
}

body > header a.title {
  display: inline-block;
}

@supports (grid-template-areas: none) {
  body > header a.title {
    display: block;
    grid-area: center;
  }
}

body > header a.title h1 {
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
}

@media (max-width: 50rem) {
  body > header a.title h1 {
    padding: 0.5rem 0;
    font-size: 2rem;
  }
}

body > header a.title h1 span.savvy {
  color: #40485c;
}

body > header a.title h1 span.wombat {
  color: #532e1b;
}

body > header nav.menu {
  grid-area: menu;
}

body > footer {
  background-color: #c0d3e4;
}

body > footer p {
  margin: 0;
  padding: 0.33333333em 0;
  text-align: center;
  vertical-align: middle;
}

body > footer p span.savvy {
  color: #40485c;
}

body > footer p span.wombat {
  color: #532e1b;
}

div.page-content {
  max-width: 50rem;
}

article {
  padding: 0 1em 2em 1em;
}

div.form-group {
  max-width: 80%;
  margin: 0 auto 2em 0;
}

@media (max-width: 50rem) {
  div.form-group {
    max-width: 100%;
    margin: 0 0 2em 0;
  }
}

label {
  display: block;
  margin-bottom: 0.5em;
}

textarea {
  height: 8em;
}

div.clear {
  margin: 0;
  padding: 0;
  height: 0;
  width: 100%;
  clear: both;
}

nav.menu {
  font-family: "Share", "Open Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding-top: 1em;
  background-color: #a02917;
  color: #c0d3e4;
}

@media print {
  nav.menu {
    display: none;
  }
}

nav.menu li {
  list-style-type: none;
  margin-left: 0;
}

nav.menu a {
  text-decoration: none;
  color: inherit;
}

nav.menu > ul {
  max-width: 50rem;
  margin: 0 auto;
}

nav.menu > ul > li {
  display: inline-block;
  vertical-align: top;
}

nav.menu a {
  display: block;
  padding-left: 1em;
  padding-right: 1em;
}

nav.menu a:hover {
  color: #532e1b;
  text-shadow: -1px -1px 3px white, -1px 1px 3px white, 1px -1px 3px white, 1px 1px 3px white;
}

nav.menu li.menu-primary > a {
  font-size: 1.125em;
  padding-bottom: 0.16666667em;
}

nav.menu li.menu-secondary a::before {
  content: ">";
  padding: 0 0.25em;
}

nav.menu li.menu-toggle {
  display: none;
  padding-bottom: 1em;
}

@media (max-width: 50rem) {
  nav.menu > ul > li {
    display: block;
    margin-bottom: 0;
    margin-top: 0.5em;
  }

  nav.menu > ul > li:first-child {
    margin-top: 0;
  }

  nav.menu li.menu-toggle {
    display: block;
  }

  nav.menu li.collapsed {
    display: none;
  }

  nav.menu li.menu-primary {
    border-bottom: 1px solid #532e1b;
  }
}

ul.shop-cart-items {
  width: 100%;
  margin-bottom: 2em;
}

li.shop-cart-line {
  list-style-type: none;
  margin: 0;
  padding-bottom: 0.5em;
  vertical-align: middle;
}

@supports (grid-template-areas: none) {
  li.shop-cart-line {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "description number price total";
    -ms-grid-columns: auto 10rem 6rem 6rem;
        grid-template-columns: auto 10rem 6rem 6rem;
    -ms-grid-rows: max-content;
        grid-template-rows: max-content;
  }

@media (max-width: 50rem) {
    li.shop-cart-line {
      -ms-grid-columns: auto 5rem 5rem 5rem;
          grid-template-columns: auto 5rem 5rem 5rem;
    }
}

@media (max-width: 420px) {
    li.shop-cart-line {
      grid-template-areas: "description description description" "number price total";
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
      -ms-grid-rows: max-content max-content;
          grid-template-rows: max-content max-content;
    }
}
}

li.shop-cart-line:nth-child(odd) {
  background-color: #d0e0e9;
}

li.shop-cart-line > span {
  margin: auto 0;
  padding: 0.5em 0.25em;
}

li.shop-cart-totals > span {
  text-align: right;
}

span.shop-cart-item {
  display: inline-block;
  width: calc(12.5% - 0.25em);
}

@supports (grid-template-areas: none) {
  span.shop-cart-item {
    display: block;
    width: 100%;
  }
}

span.shop-cart-item-description {
  width: calc(55% - 0.25em);
}

@supports (grid-template-areas: none) {
  span.shop-cart-item-description {
    width: 100%;
    grid-area: description;
  }
}

span.shop-cart-item-number {
  width: calc(20% - 0.25em);
  text-align: right;
}

@supports (grid-template-areas: none) {
  span.shop-cart-item-number {
    width: 100%;
    grid-area: number;
  }
}

span.shop-cart-item-unit-price {
  grid-area: price;
  text-align: right;
}

span.shop-cart-item-total-price {
  grid-area: total;
  text-align: right;
}

li.shop-cart-item-compact {
  display: block;
  margin: 0;
  padding: 0.5em;
}

li.shop-cart-item-compact p {
  margin: 0;
  padding: 0;
}

li.shop-cart-item-compact .shop-cart-item-price {
  text-align: right;
}

li.shop-cart-subtotal {
  border-top: 1px solid #40485c;
}

li.shop-cart-total {
  border-top: 3px double #40485c;
}

article.shop-checkout {
  margin: 1rem;
}

@supports (grid-template-areas: none) {
  article.shop-checkout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 15rem;
        grid-template-columns: auto 15rem;
    grid-template-areas: "title title" "main aside" "main blank";
    grid-column-gap: 1rem;
  }

@media (max-width: 50rem) {
    article.shop-checkout {
      -ms-grid-columns: 100%;
          grid-template-columns: 100%;
      -ms-grid-rows: auto;
          grid-template-rows: auto;
      grid-template-areas: "title" "aside" "main";
      grid-column-gap: 1rem;
      grid-row-gap: 1rem;
    }
}
}

article.shop-checkout h1 {
  grid-area: title;
}

aside.shop-checkout-items {
  float: right;
  width: 15rem;
  background-color: #c0d3e4;
  padding: 0 1rem;
  border-radius: 1rem;
}

@supports (grid-template-areas: none) {
  aside.shop-checkout-items {
    float: none;
    width: 100%;
    grid-area: aside;
  }
}

aside.shop-checkout-items .buttons {
  margin: 1em 0;
  text-align: right;
}

form.shop-checkout {
  float: left;
  width: calc(100% - 16rem);
}

@supports (grid-template-areas: none) {
  form.shop-checkout {
    float: none;
    width: 100%;
    grid-area: main;
  }
}

article.shop-checkout .form-group {
  max-width: 100%;
}

aside.shop-checkout-items p.shop-checkout-summary {
  display: none;
}

@media (max-width: 50rem) {
  aside.shop-checkout-items ul {
    display: none;
  }

  aside.shop-checkout-items p.shop-checkout-summary {
    display: block;
  }
}

article.shop-home-highlight {
  border-radius: 1em;
  background-color: #c0d3e4;
  margin: 0 1em 1em 1em;
}

@supports (grid-template-areas: none) {
  article.shop-home-highlight {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "title title" "blank description" "image description";
    -ms-grid-columns: 20% auto;
        grid-template-columns: 20% auto;
    grid-column-gap: 1em;
  }
}

article.shop-home-highlight h1 {
  grid-area: title;
  color: #532e1b;
}

a.shop-home-highlight {
  display: inline-block;
  max-width: 15%;
}

@supports (grid-template-areas: none) {
  a.shop-home-highlight {
    display: block;
    max-width: 100%;
    grid-area: image;
  }
}

a.shop-home-highlight img {
  width: 100%;
}

div.shop-home-highlight {
  display: inline-block;
  width: 80%;
  padding-left: 1em;
}

@supports (grid-template-areas: none) {
  div.shop-home-highlight {
    display: block;
    width: 100%;
    grid-area: description;
    padding-left: 0;
  }
}

.ui-action {
  height: 2em;
}

.ui-action img {
  height: 100%;
}

div.modal-layer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

div.modal-layer img.loading {
  position: absolute;
  height: 100px;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  background-color: transparent;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

div.messages {
  margin: 1em;
  padding: 1em;
  border: 1px solid #40485c;
  border-radius: 0.5em;
  background-color: #c0d3e4;
}

div.messages p:last-child {
  margin-bottom: 0;
}

link,
a {
  text-decoration: underline;
  color: #40485c;
}

link:hover,
a:hover {
  color: #532e1b;
}

.form-help {
  display: block;
  font-size: 0.9em;
  line-height: 1.3em;
  margin-bottom: 1em;
  font-style: italic;
}

.form-help-highlight {
  border: 1px solid #999999;
  background-color: #eeeeee;
  padding: 0.5em;
}

.form-error {
  padding: 0.25em;
  border: 1px solid #cc9999;
  background-color: #ffeeee;
  color: #ff3333;
}

input,
button,
.button,
.button-primary,
textarea,
select {
  font-size: 1.125em;
  line-height: 1.22222222em;
  display: block;
  width: 100%;
  padding: 0.5em;
  margin: 0 0 0.5em 0;
  border: #40485c solid 1px;
  border-radius: 0.5em;
  vertical-align: middle;
}

input:focus,
button:focus,
.button:focus,
.button-primary:focus,
textarea:focus,
select:focus {
  outline: none;
  padding: calc(0.5em - 1px);
  border: #a0bdd6 solid 2px;
}

input:hover,
button:hover,
.button:hover,
.button-primary:hover,
textarea:hover,
select:hover {
  outline: none;
  padding: calc(0.5em - 1px);
  border: #40485c solid 2px;
}

input[type=number]::-webkit-inner-spin-button,
button[type=number]::-webkit-inner-spin-button,
[type=number].button::-webkit-inner-spin-button,
[type=number].button-primary::-webkit-inner-spin-button,
textarea[type=number]::-webkit-inner-spin-button,
select[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
button[type=number]::-webkit-outer-spin-button,
[type=number].button::-webkit-outer-spin-button,
[type=number].button-primary::-webkit-outer-spin-button,
textarea[type=number]::-webkit-outer-spin-button,
select[type=number]::-webkit-outer-spin-button {
  height: 2em;
}

input[type=number],
button[type=number],
[type=number].button,
[type=number].button-primary,
textarea[type=number],
select[type=number] {
  -moz-appearance: textfield;
  text-align: right;
}

button,
.button,
.button-primary {
  display: inline-block;
  width: auto;
  background-color: #c0d3e4;
  color: #333333;
  text-decoration: none;
}

button:focus,
.button:focus,
.button-primary:focus {
  background-color: #fcfcfc;
  color: #333333;
}

button:hover,
.button:hover,
.button-primary:hover {
  background-color: #fcfcfc;
  color: #333333;
  cursor: pointer;
}

button + button,
.button + button,
.button-primary + button,
button + .button,
.button + .button,
.button-primary + .button,
button + .button-primary,
.button + .button-primary,
.button-primary + .button-primary {
  margin-left: 0.5rem;
}

.button-primary {
  background-color: #40485c;
  color: #fcfcfc;
}

.vcard {
  margin-left: 2em;
}

body {
  background-color: #c0d3e4;
}

div.page-content {
  padding: 1px 0;
  margin: -1px auto;
  background-color: #fcfcfc;
}

ul > li {
  list-style-type: disc;
  margin-left: 1.5em;
}

ol > li {
  list-style-type: decimal;
  margin-left: 1.75em;
}

ol ol > li {
  list-style-type: lower-alpha;
  margin-left: 1.75em;
}

article.shop-product-detail {
  padding-bottom: 0;
}

@supports (grid-template-areas: none) {
  article.shop-product-detail {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto max-content;
        grid-template-columns: auto max-content;
    -ms-grid-rows: max-content min-content auto max-content;
        grid-template-rows: max-content min-content auto max-content;
    grid-template-areas: "title title" "image aside" "main aside" "main .";
    grid-column-gap: 1rem;
  }

@media (max-width: 50rem) {
    article.shop-product-detail {
      -ms-grid-columns: auto min-content;
          grid-template-columns: auto min-content;
      -ms-grid-rows: auto;
          grid-template-rows: auto;
      grid-template-areas: "title title" "image aside" "main main";
      grid-column-gap: 1rem;
      grid-row-gap: 1rem;
    }
}

@media (max-width: 420px) {
    article.shop-product-detail {
      -ms-grid-columns: 100%;
          grid-template-columns: 100%;
      -ms-grid-rows: auto;
          grid-template-rows: auto;
      grid-template-areas: "title" "image" "aside" "main";
    }
}
}

h1.shop-product-detail {
  grid-area: title;
}

section.shop-product-detail {
  float: left;
  clear: left;
  width: 75%;
}

@supports (grid-template-areas: none) {
  section.shop-product-detail {
    float: none;
    grid-area: main;
    width: 100%;
  }
}

img.shop-product-detail {
  float: left;
  width: 20%;
  margin: 1rem;
}

@supports (grid-template-areas: none) {
  img.shop-product-detail {
    float: none;
    grid-area: image;
    width: 50%;
  }

@media (max-width: 50rem) {
    img.shop-product-detail {
      margin: 1rem auto;
    }
}
}

aside.shop-product-panel {
  float: right;
  width: 20%;
  text-align: center;
}

@supports (grid-template-areas: none) {
  aside.shop-product-panel {
    float: none;
    grid-area: aside;
    width: 100%;
  }
}

aside.shop-product-panel div.shop-product-panel {
  background-color: #a0bdd6;
  border: 1px solid #40485c;
  border-radius: 1rem;
  padding: 1rem;
}

@media (max-width: 50rem) {
  aside.shop-product-panel div.shop-product-panel {
    display: inline-block;
    padding: 0.5rem 2rem;
  }
}

aside.shop-product-panel div.shop-product-panel p.shop-product-panel {
  padding-bottom: 2rem;
}

@media (max-width: 50rem) {
  aside.shop-product-panel div.shop-product-panel p.shop-product-panel {
    padding-bottom: 0.5rem;
  }
}

aside.shop-product-panel div.shop-product-panel p.shop-product-panel-price {
  font-size: 1.5rem;
}