/*!
Theme Name: Chocolate Storybook
Theme URI: http://www.chocolatestory.com
Description: Chocolate Storybook Theme
Author: Happy Medium
Author URI: http://www.itsahappymedium.com
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Version: 1.0
*/
/*
$$$
$$$
$$$
$$$
$$$   ... ::.. .          . .=:... .         ..,=:  .
$$$  7$$$$$$$$$$..    ..$$$$$$$$$$$        $$$$$$$$$$$.
$$$$$$$$$. .:$$$$$,. .$$$$$$.. :$$$$$.   $$$$77 . ~$$$$$
$$$$$$..     . .$$$$ $$$$.       ..$$$$.$$$$.        ~$$$$
$$$$7.          .$$$$$$,          . $$$$$$.           .$$$?.
$$$?              $$$$..             $$$$.              $$$
$$$.              .$$$               .$$$               .$$~
.                   ..                . .                .

This is Happy Medium's logo. It is happy to see you.
http://www.itsahappymedium.com
 */
/*------------------------------------*    $TABLE OF CONTENTS
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * VARIABLES..............................Declarations of Sass variables
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*    $VARIABLES
\*------------------------------------*/
/*------------------------------------*    $MIXINS
\*------------------------------------*/
/* CSS Transition
	Usage: @include transition(width,0.3s,ease-out);
 */
/* Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
	Usage: @include font-size(1, large);
*/
/*------------------------------------*    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
* {
  box-sizing: border-box; }

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

header, footer, nav, section, article, hgroup, figure {
  display: block; }

/*------------------------------------*    $GLOBAL ELEMENTS
\*------------------------------------*/
/*------------------------------------*    $GLOBAL CLASSES
\*------------------------------------*/
/* Clearfix */
.cf, .l-two-col {
  *zoom: 1; }

.cf:before, .l-two-col:before, .cf:after, .l-two-col:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after, .l-two-col:after {
  clear: both; }

/* Completely remove from the flow and screen readers. */
.is-hidden {
  display: none !important;
  visibility: hidden !important; }

/* Completely remove from the flow but leave available to screen readers. */
.is-vishidden, [class*="icon-"] span {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/* Floats */
.right {
  float: right;
  padding: 0 0 1rem 1rem; }

.right-search {
  float: right;
  padding: 0 0 1rem 0; }

.left {
  float: left;
  padding: 0 1rem 1rem 0; }

/* Text-Align */
.align-right {
  text-align: right; }

.align-center {
  text-align: center; }

.align-left {
  text-align: left; }

/* Pull-floats */
@media all and (min-width: 24em) {
  .pull-left {
    float: left; }
  .pull-right {
    float: right; } }

/* Display Classes */
@media all and (max-width: 46.8em) {
  .hide-small {
    display: none; } }

@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none; } }

@media all and (min-width: 50em) {
  .hide-large {
    display: none; } }

.valid {
  color: #089e00; }

.error {
  color: #f00; }

#__bs_notify__ {
  top: auto !important;
  bottom: 0 !important;
  border-radius: 0 !important; }

body {
  background: #eee url(./img/bg.png) top left;
  font: 100%/1.5 "vollkorn", Georgia, Times, serif;
  -webkit-text-size-adjust: 100%;
  color: #555555;
  min-width: 20em; }

/* Links */
a {
  color: #B22A2A;
  text-decoration: none;
  outline: 0; }
  a:hover,
  a:focus {
    color: #808080; }

/* Headings */
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
h1, .alpha,
h2, .beta,
h3, .gamma,
h4, .delta,
h5, .epsilon,
h6, .zeta {
  line-height: 1.2;
  font-family: "Playfair Display", Georgia, Times, serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem; }

h1, .alpha {
  color: #B22A2A;
  font-size: 1.4rem; }
  @media all and (min-width: 24em) {
    h1, .alpha {
      font-size: 1.6rem; } }
  @media all and (min-width: 46.8em) {
    h1, .alpha {
      font-size: 1.8rem; } }

h2, .beta {
  font-size: 1.6rem; }

h3, .gamma {
  font-size: 1.4rem; }

h4, .delta {
  font-size: 1.2rem; }

h5, .epsilon {
  font-size: 1rem; }

h6, .zeta {
  font-size: 1rem; }

/* Subheadings */
.subheading {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal; }

/* Text-Related Elements */
p {
  margin-bottom: 1rem; }

/* Blockquote */
blockquote {
  font-style: italic;
  border-left: 1px solid #808080;
  color: #808080;
  padding-left: 1rem;
  margin-bottom: 1rem; }

/* Horizontal Rule */
hr {
  border: 0;
  height: 1px;
  background: #dcdcdc;
  margin: 2rem 0; }

abbr {
  border-bottom: 1px dotted #808080;
  cursor: help; }

.divider-dots {
  position: relative; }

.divider-dots,
.divider-dots:before,
.divider-dots:after {
  display: block;
  width: 4px;
  height: 4px;
  background: #ddd;
  margin: 0 auto;
  border-radius: 100%; }

.divider-dots:before,
.divider-dots:after {
  content: '';
  position: absolute;
  top: 0; }

.divider-dots:before {
  left: -10px; }

.divider-dots:after {
  right: -10px; }

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 1rem; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

ul, ol {
  padding-left: 1rem;
  margin-bottom: 1rem; }

nav ul,
nav ol {
  padding: 0;
  margin: 0;
  list-style: none; }

/*------------------------------------*    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
img, video, object {
  max-width: 100%;
  height: auto;
  border: none; }

iframe {
  margin-bottom: 1rem; }

figure {
  margin-bottom: 1rem; }
  figure img {
    margin-bottom: 0.25rem; }

figcaption {
  font-style: italic; }

/* =WordPress Core
-------------------------------------------------------------- */
.aligncenter,
div.aligncenter {
  display: block;
  margin: 0.5rem auto 0.5rem auto; }

.alignright {
  display: block;
  margin-bottom: 1rem; }
  @media (min-width: 46.8em) {
    .alignright {
      float: right;
      padding: 0 0 1rem 1rem;
      margin-bottom: 0; } }

.alignleft {
  display: block;
  margin-bottom: 1rem; }
  @media (min-width: 46.8em) {
    .alignleft {
      float: left;
      padding: 0 1rem 1rem 0;
      margin-bottom: 0; } }

a img.alignright {
  display: block;
  margin-bottom: 1rem; }
  @media (min-width: 46.8em) {
    a img.alignright {
      float: right;
      margin: 0.5rem 0 1.5rem 1.5rem;
      margin-bottom: 0; } }

a img.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0; }

a img.alignleft {
  display: block;
  margin-bottom: 1rem; }
  @media (min-width: 46.8em) {
    a img.alignleft {
      float: left;
      padding: 0 1rem 1rem 0;
      margin-bottom: 0; } }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 0.5rem;
  text-align: center;
  max-width: 100%; }

.wp-caption.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0; }

.wp-caption.alignleft {
  margin: 0.5rem 1.5rem 1.5rem 0; }

.wp-caption.alignright {
  margin: 0.5rem 0 1.5rem 1.5rem; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 0.9em;
  margin: 0;
  padding: 0 0.5rem 0.5rem; }

/* FORMS */
form > ol, form > ul {
  list-style: none;
  margin-left: 0; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }
  fieldset legend {
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1em;
    text-transform: uppercase; }

label,
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  display: block; }
  label.checkbox,
  body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label.checkbox {
    display: inline; }

textarea {
  overflow: auto;
  resize: none; }

input[type=text], input[type=search], input[type=url],
input[type=number], input[type=tel], input[type=email],
input[type=password], input[type=date], input[type=time], textarea, select,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield textarea,
body .gform_wrapper .gform_body .gform_fields .gfield select {
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #ffffff;
  padding: 0.5em 1em;
  width: 100%;
  display: inline-block;
  font-family: "vollkorn", Georgia, Times, serif;
  font-size: 1em;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0; }
  input[type=text]:hover, input[type=text]:focus, input[type=search]:hover, input[type=search]:focus, input[type=url]:hover,
  input[type=url]:focus,
  input[type=number]:hover, input[type=number]:focus, input[type=tel]:hover, input[type=tel]:focus, input[type=email]:hover,
  input[type=email]:focus,
  input[type=password]:hover, input[type=password]:focus, input[type=date]:hover, input[type=date]:focus, input[type=time]:hover, input[type=time]:focus, textarea:hover, textarea:focus, select:hover,
  select:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:hover,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:hover,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:hover,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield textarea:hover,
  body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield select:hover, body .gform_wrapper .gform_body .gform_fields .gfield select:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    outline: none; }

input[type=submit] {
  border: 1px solid #ddd;
  border-radius: 0; }

.select {
  position: relative;
  clear: both;
  overflow: hidden; }
  .select select {
    display: block;
    width: 100% !important; }
  .select.select--half {
    width: 49%;
    float: left;
    clear: none;
    margin-right: 2%; }
    .select.select--half:nth-child(odd) {
      margin-right: 0; }
    .select.select--half select {
      width: 100% !important; }
  .select:after {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    margin-top: -0.15rem;
    pointer-events: none;
    border-top: 0.35rem solid currentColor;
    border-right: 0.35rem solid transparent;
    border-bottom: 0.35rem solid transparent;
    border-left: 0.35rem solid transparent; }
  .select select::-ms-expand {
    display: none !important; }

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.3em; }

input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/* Validation */
.has-error {
  border-color: #f00; }

.is-valid {
  border-color: #089e00; }

/* Form Field Container */
.field-container,
body .gform_wrapper .gform_body .gform_fields .gfield {
  margin-bottom: 1em; }

.inline-form input {
  display: inline-block; }

.search-form {
  position: relative; }
  .search-form input[type=submit] {
    text-align: center;
    background: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-appearance: none; }
  .header .search-form {
    top: 50%;
    margin: 0 0.5rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .header .search-form input[type=search] {
      width: 200px;
      height: 25px;
      line-height: 25px;
      padding: 0 0.5rem 0 1.5rem;
      font-size: 0.8rem; }
      @media all and (max-width: 575px) {
        .header .search-form input[type=search] {
          display: none; } }
    .header .search-form input[type=submit] {
      width: 70px;
      height: 25px;
      line-height: 18px; }
      @media all and (min-width: 575px) {
        .header .search-form input[type=submit] {
          margin-left: -5px; } }
    @media all and (min-width: 1060px) {
      .header .search-form {
        margin: 0 1rem; } }
  .section--search .search-form {
    overflow: hidden;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 0; }
    .section--search .search-form input[type=search] {
      float: left;
      line-height: 1.5;
      width: 100%;
      height: 42px; }
      @media all and (min-width: 575px) {
        .section--search .search-form input[type=search] {
          padding-left: 1.5rem;
          width: 82%; } }
    .section--search .search-form input[type=submit] {
      display: block;
      line-height: 2;
      height: 42px;
      width: 100%; }
      @media all and (min-width: 575px) {
        .section--search .search-form input[type=submit] {
          float: left;
          margin-left: -1px;
          width: 18%; } }
    .section--search .search-form label {
      width: 80%; }
  .search-form .icon-search {
    position: absolute;
    left: 7px;
    line-height: 25px;
    font-size: 0.8rem;
    color: #ddd !important;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media all and (max-width: 575px) {
      .search-form .icon-search {
        display: none; } }

.woocommerce .choc-form {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 3;
  margin-top: 1rem; }
  .woocommerce .choc-form .choc-form {
    margin-top: 0; }
  .woocommerce .choc-form p {
    font-family: "vollkorn", Georgia, Times, serif;
    line-height: 1.5; }
  .woocommerce .choc-form label {
    text-transform: uppercase; }
  .woocommerce .choc-form .qty {
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 4rem;
    margin: 0 0.5rem; }
  .woocommerce .choc-form .single_add_to_cart_button,
  .woocommerce .choc-form .add-to-cart {
    padding: 0 1rem !important;
    line-height: 2.5 !important; }
  .woocommerce .choc-form .variation {
    padding: 1rem 0;
    border-top: 1px solid #dcdcdc; }
  .woocommerce .choc-form.choc-form--preorder .variations {
    margin-bottom: 0 !important; }
  .woocommerce .choc-form.choc-form--preorder .variation {
    border-top: none; }
  .woocommerce .choc-form.choc-form--preorder .form__row {
    border-top: none;
    padding: 0;
    clear: both;
    overflow: hidden; }
    .woocommerce .choc-form.choc-form--preorder .form__row .form__row {
      padding: 0;
      border-top: none; }
      .woocommerce .choc-form.choc-form--preorder .form__row .form__row.form__personalization {
        padding-bottom: 1rem; }
  @media (min-width: 24em) {
    .woocommerce .choc-form .form__left {
      float: left; }
    .woocommerce .choc-form .form__right {
      float: right; }
      .woocommerce .choc-form .form__right .variations_button,
      .woocommerce .choc-form .form__right .qty-label,
      .woocommerce .choc-form .form__right .button {
        float: left; } }

.form__personalization {
  margin-top: 1rem;
  padding-bottom: 1rem; }
  .form__personalization textarea {
    display: block;
    padding-top: 1rem; }

.notes textarea {
  padding-top: 1rem; }

.contact-form label {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 0.5rem; }

.contact-form textarea {
  height: 185px;
  margin-bottom: 0.5rem; }

.contact-form button {
  height: 33px;
  line-height: 33px;
  padding: 0 1rem;
  text-align: left; }

/*------------------------------------*    $Table
\*------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: none; }

th {
  text-align: left;
  border: 1px solid #808080;
  padding: 0.2em; }

td {
  border: 1px solid #808080;
  padding: 0.5em; }

.table {
  margin-bottom: 2em; }
  .table th, .table td {
    padding: 1em 0.5em; }
    @media all and (min-width: 73em) {
      .table th, .table td {
        padding: 0.5em; } }
  .table.table-hover tr {
    transition: background 0.2s ease-in-out; }
    .table.table-hover tr:hover {
      background: #dcdcdc !important; }
    .table.table-hover tr:nth-of-type(even) {
      background: #dcdcdc; }
      @media all and (min-width: 73em) {
        .table.table-hover tr:nth-of-type(even) {
          background: none; } }

.animate-fade {
  transition: opacity 0.3s ease-out; }
  .animate-fade:hover {
    opacity: 0; }

.animate-move > .demo-shape {
  transition: all 0.8s ease-in-out; }

@media print {
  .header,
  .footer,
  .attribution {
    display: none !important; }
  .gi {
    page-break-inside: avoid; } }

/*------------------------------------*    $LAYOUT
\*------------------------------------*/
/*------------------------------------*    $LAYOUT
\*------------------------------------*/
/* Layout Container */
.lc, .wrapper {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 2rem; }
  @media all and (min-width: 950px) {
    .lc, .wrapper {
      padding: 1rem; } }

/*------------------------------------*    $TEMPLATES
\*------------------------------------*/
/* Two Column Layout */
@media all and (min-width: 50em) {
  .l-two-col .l-main {
    float: left;
    width: 70%;
    padding-right: 1rem; } }

.l-two-col .l-sidebar {
  clear: both; }
  @media all and (min-width: 50em) {
    .l-two-col .l-sidebar {
      clear: none;
      float: left;
      width: 30%;
      padding-left: 1rem; } }

/*------------------------------------*    $GRIDS
\*------------------------------------*/
/* Grid Container */
.g {
  overflow: hidden;
  margin: 0 -1rem; }

.g-np > .gi {
  padding: 0; }

.gi-flex-grow {
  width: 100% !important; }
  @media (min-width: 48em) {
    .gi-flex-grow {
      width: 50% !important; } }

.flexbox .g-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .flexbox .g-flex > .gi {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .flexbox .g-flex > .gi > .block {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: column nowrap;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
      width: 100%; }
  .flexbox .g-flex > .gi-sticky .block > :last-child {
    margin-top: auto; }
  .flexbox .g-flex > .gi-flex-grow {
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

/* Grid Item */
.gi {
  padding: 1rem;
  width: 100%; }
  .gi img {
    display: block; }
  .gi .footer-logo {
    padding-top: 0; }
  @media all and (min-width: 46.8em) {
    .gi {
      float: left; } }

.gi-np {
  padding: 0; }

/* Grid 1up */
.g-1up .gi {
  width: 100%; }

/* Grid 2up */
@media all and (min-width: 48em) {
  .g-2up > .gi {
    float: left;
    width: 50%; }
    .g-2up > .gi:nth-of-type(odd) {
      clear: left; } }

@media all and (min-width: 24em) {
  .g-2up > .gi > .gi,
  .g-2up .g-2up > .gi {
    float: left;
    width: 50%; }
    .g-2up > .gi > .gi:nth-of-type(odd),
    .g-2up .g-2up > .gi:nth-of-type(odd) {
      clear: left; } }

/* Grid Half (Always displayed side by side) */
.g-half > .gi {
  float: left;
  width: 50%; }
  .g-half > .gi:nth-of-type(odd) {
    clear: left; }

/* Grid 3up */
@media all and (min-width: 46.8em) {
  .g-3up > .gi {
    float: left;
    width: 50%; }
    .g-3up > .gi:nth-of-type(2n+1) {
      clear: left; } }

@media all and (min-width: 50em) {
  .g-3up > .gi {
    width: 33.3333333%; }
    .g-3up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-3up > .gi:nth-of-type(3n+1) {
      clear: left; } }

/* Grid 4up */
@media all and (min-width: 24em) {
  .g-4up > .gi {
    float: left;
    width: 50%; }
    .g-4up > .gi:nth-of-type(2n+1) {
      clear: both; } }

@media all and (min-width: 48em) {
  .g-4up > .gi {
    width: 25%; }
    .g-4up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-4up > .gi:nth-of-type(4n+1) {
      clear: left; } }

/* Grid 5up */
.g-5up > .gi {
  float: left;
  width: 50%; }
  .g-5up > .gi:nth-of-type(2n+1) {
    clear: both; }

@media all and (min-width: 39.8em) {
  .g-5up > .gi {
    width: 33.3333333%; }
    .g-5up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-5up > .gi:nth-of-type(3n+1) {
      clear: left; } }

@media all and (min-width: 46.8em) {
  .g-5up > .gi {
    width: 25%; }
    .g-5up > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-5up > .gi:nth-of-type(4n+1) {
      clear: left; } }

@media all and (min-width: 48em) {
  .g-5up > .gi {
    width: 20%; }
    .g-5up > .gi:nth-of-type(4n+1) {
      clear: none; }
    .g-5up > .gi:nth-of-type(5n+1) {
      clear: left; } }

/* Grid Quarter (Always displayed side by side) */
.g-quarter > .gi {
  float: left;
  width: 24%; }
  .g-quarter > .gi:nth-of-type(4n+1) {
    clear: left; }

@media all and (min-width: 29.75em) {
  .g-max4 > .gi {
    float: left;
    width: 50%; }
    .g-max4 > .gi:nth-of-type(2n+1) {
      clear: both; } }

@media all and (min-width: 39.8em) {
  .g-max4 > .gi {
    width: 33.3333333%; }
    .g-max4 > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-max4 > .gi:nth-of-type(3n+1) {
      clear: left; } }

@media all and (min-width: 50em) {
  .g-max4 > .gi {
    width: 25%; }
    .g-max4 > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-max4 > .gi:nth-of-type(4n+1) {
      clear: left; } }

/* Grid 5up */
.g-max5 > .gi {
  float: left;
  width: 50%; }
  .g-max5 > .gi:nth-of-type(2n+1) {
    clear: both; }

@media all and (min-width: 39.8em) {
  .g-max5 > .gi {
    width: 33.3333333%; }
    .g-max5 > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(3n+1) {
      clear: left; } }

@media all and (min-width: 46.8em) {
  .g-max5 > .gi {
    width: 25%; }
    .g-max5 > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(4n+1) {
      clear: left; } }

@media all and (min-width: 48em) {
  .g-max5 > .gi {
    width: 20%; }
    .g-max5 > .gi:nth-of-type(4n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(5n+1) {
      clear: left; } }

/* Grid 2/3 */
@media all and (min-width: 46.8em) {
  .gi-2-3 {
    float: left;
    width: 66.666666%; } }

@media all and (min-width: 46.8em) {
  .gi-1-3 {
    float: left;
    width: 33.333333%; } }

@media (min-width: 50em) {
  .g-opposites.g-flex {
    -webkit-flex-flow: row-reverse wrap;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap; } }

@media (min-width: 50em) {
  .g-opposites > .gi {
    float: right; } }

/* Column Styling */
[class^="columns-"] {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem; }

.columns-2 {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2; }

.columns-3 {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3; }

.columns-4 {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4; }

.columns-5 {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5; }

/*------------------------------------*    $PAGE STRUCTURE
\*------------------------------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #f5f5f5;
  padding: 0;
  border-bottom: 1px solid #ddd;
  min-width: 20em;
  z-index: 99; }
  .admin-bar .header {
    top: 32px; }
    @media (max-width: 782px) {
      .admin-bar .header {
        top: 46px; } }
  .header:before,
  .header:after {
    content: '';
    display: table;
    width: 100%; }
  .header > .wrapper {
    position: relative; }
  .header .wrapper {
    padding: 0; }
    .header .wrapper:after {
      content: '';
      display: table;
      clear: both; }
  .header.headroom {
    transition: -webkit-transform 0.4s ease-in-out, background 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out; }
    .header.headroom.headroom--pinned {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
      .header.headroom.headroom--pinned .brand {
        -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
                transform: translateY(0%); }
    .header.headroom.headroom--unpinned {
      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%); }
      .header.headroom.headroom--unpinned .brand {
        -webkit-transform: translateY(-40%);
            -ms-transform: translateY(-40%);
                transform: translateY(-40%); }

.wholesale .header {
  background: #B22A2A; }

.header--secondary {
  background: #fff;
  border-top: 1px solid #ddd; }

.brand {
  position: absolute;
  left: 1rem;
  width: 30%;
  max-width: 30%;
  transition: 0.3s ease-in-out; }
  .brand .shape {
    width: 84px;
    height: 73px; }
    @media all and (min-width: 575px) {
      .brand .shape {
        width: 108px;
        height: 94px; } }
    @media all and (min-width: 975px) {
      .brand .shape {
        width: 141px;
        height: 123px; } }
  @media all and (min-width: 29.75em) {
    .brand {
      width: 100%;
      max-width: 9rem; } }
  @media all and (min-width: 975px) {
    .brand {
      max-width: 11rem; } }

.nav-toggle {
  display: block;
  text-align: right;
  padding: 0.4rem 1rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-family: "Playfair Display", Georgia, Times, serif;
  border-bottom: 1px solid #ddd;
  margin-bottom: -1px; }
  .nav-toggle .icon-menu {
    position: relative;
    top: 3px;
    font-size: 1.5rem; }
  @media all and (min-width: 29.75em) {
    .nav-toggle {
      text-align: center; } }
  @media all and (min-width: 975px) {
    .nav-toggle {
      display: none; } }

/* COVER */
.cover {
  min-height: 6em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  transition: opacity 1000ms ease-in-out; }
  @media all and (min-width: 48em) {
    .cover {
      min-height: 20em; } }
  @media all and (min-width: 73em) and (min-height: 50em) {
    .home .cover {
      min-height: 35em; } }

/*------------------------------------*    $NAVIGATION
\*------------------------------------*/
.nav {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  float: left;
  width: 100%; }
  .nav > ul {
    overflow: hidden;
    max-height: 0;
    transition: 0.3s ease-in-out; }
    @media all and (min-width: 975px) {
      .nav > ul {
        overflow: visible; } }
  .nav li {
    text-transform: uppercase; }
    .nav li.current-menu-item a {
      color: #bbb; }
    .nav li > a {
      display: block;
      padding: 0.5rem 1rem;
      color: #555555;
      border-bottom: 1px solid #ddd;
      transition: all 0.3s ease-in-out; }
      @media all and (min-width: 24em) {
        .nav li > a {
          padding: 1rem; } }
      @media all and (min-width: 975px) {
        .nav li > a {
          padding: 0 1rem;
          height: 50px;
          line-height: 52px;
          border: none; } }
      @media all and (min-width: 975px) and (max-width: 1060px) {
        .nav li > a {
          padding: 0 0.5rem; } }
      .nav li > a:hover {
        color: #bbb; }
  .nav.open ul {
    max-height: 40em; }
  @media all and (min-width: 975px) {
    .nav {
      float: none;
      width: auto;
      margin-left: 10rem; }
      .nav > ul {
        max-height: none;
        float: left;
        clear: none; }
      .nav li {
        float: left; } }

@media all and (max-width: 974px) {
  .nav--primary,
  .nav--secondary {
    float: right;
    width: 50%;
    text-align: center; } }

.nav--primary {
  position: static; }
  @media all and (min-width: 975px) {
    .nav--primary {
      font-size: 0.8rem;
      position: absolute;
      top: 0; }
      .nav--primary li {
        padding: 0 1rem; }
        .nav--primary li.current-menu-item a {
          color: #B22A2A;
          border-top-color: #B22A2A;
          border-bottom-color: #B22A2A; }
        .nav--primary li > a {
          height: auto;
          line-height: 1;
          margin-top: 0.9090909091rem;
          padding: 0.3333333333rem 0 0.25rem 0;
          border: 1px solid transparent; }
          .nav--primary li > a:hover {
            color: #B22A2A;
            border-top-color: #B22A2A;
            border-bottom-color: #B22A2A; } }
  @media all and (min-width: 975px) and (max-width: 72rem) {
    .nav--primary li {
      padding: 0 0.5rem; } }

@media all and (min-width: 975px) {
  .wholesale .nav--primary li.current-menu-item a {
    color: #fff;
    border-top-color: #fff;
    border-bottom-color: #fff; }
  .wholesale .nav--primary li > a {
    color: #fff; }
    .wholesale .nav--primary li > a:hover {
      color: #fff;
      border-top-color: #fff;
      border-bottom-color: #fff; } }

.nav--secondary {
  font-family: "Playfair Display", Georgia, Times, serif;
  letter-spacing: 1px; }
  @media all and (min-width: 975px) and (max-width: 72rem) {
    .nav--secondary {
      font-size: 0.8rem; } }
  .nav--secondary > ul > li {
    position: relative; }
    @media all and (max-width: 975px) {
      .nav--secondary > ul > li:last-of-type > a {
        border-bottom: none; } }
    @media all and (min-width: 975px) {
      .nav--secondary > ul > li.current-menu-item > a {
        border-top-color: #eccaca;
        border-bottom-color: #eccaca; } }
    .nav--secondary > ul > li > a {
      height: auto;
      border-right: 1px solid #ddd; }
      @media all and (min-width: 975px) {
        .nav--secondary > ul > li > a {
          line-height: 1;
          margin: 0.6666666667rem 0.9756097561rem;
          padding: 0.3333333333rem 0;
          border: 1px solid transparent; }
          .nav--secondary > ul > li > a:hover {
            border-top-color: #eccaca;
            border-bottom-color: #eccaca; } }
      @media all and (min-width: 975px) and (max-width: 1060px) {
        .nav--secondary > ul > li > a {
          margin: 0.5rem 0.5rem; } }
    .nav--secondary > ul > li:hover .sub-menu {
      max-height: 40em; }
  .nav--secondary .sub-menu {
    display: none;
    overflow: hidden;
    position: absolute;
    left: 0;
    max-height: 0;
    background-color: #fff;
    transition: 0.3s ease-in-out; }
    @media all and (min-width: 975px) {
      .nav--secondary .sub-menu {
        display: block; } }
    .nav--secondary .sub-menu li {
      float: none; }
      .nav--secondary .sub-menu li.current-menu-item a {
        color: #B22A2A !important; }
    .nav--secondary .sub-menu a {
      font-size: 0.8rem;
      color: #555555 !important;
      height: auto;
      line-height: 1.2;
      padding: 1rem;
      border-top: 1px solid #ddd; }
      .nav--secondary .sub-menu a:hover {
        color: #B22A2A !important; }

.nav--ecommerce {
  font-size: 0.8rem;
  float: right;
  width: auto; }
  @media all and (min-width: 975px) {
    .nav--ecommerce {
      border-right: 1px solid #ddd; }
      .wholesale .nav--ecommerce {
        border-right: 1px solid #950e08; } }
  .nav--ecommerce li {
    display: inline-block;
    float: left;
    height: 30px;
    border-left: 1px solid #ddd; }
    @media all and (min-width: 576px) {
      .nav--ecommerce li {
        height: 50px; } }
  .nav--ecommerce ul {
    max-height: none;
    float: left;
    clear: none; }
  .nav--ecommerce .login,
  .nav--ecommerce .price {
    line-height: 32px;
    padding: 0 1rem; }
    @media all and (min-width: 576px) {
      .nav--ecommerce .login,
      .nav--ecommerce .price {
        line-height: 52px; } }
    @media all and (min-width: 975px) and (max-width: 1060px) {
      .nav--ecommerce .login,
      .nav--ecommerce .price {
        padding: 0 0.5rem; } }
  .nav--ecommerce .price {
    float: left;
    width: auto; }
    .nav--ecommerce .price i {
      position: relative;
      top: 1px; }
    @media all and (max-width: 46.8em) {
      .nav--ecommerce .price span {
        display: none; } }
  .nav--ecommerce .shape {
    position: relative;
    top: 2px;
    width: 15px;
    height: 15px;
    fill: currentColor; }
    @media all and (min-width: 46.8em) {
      .nav--ecommerce .shape {
        margin-left: 0.5rem; } }
  .wholesale .nav--ecommerce a {
    color: #ffffff; }
  .wholesale .nav--ecommerce li {
    border-left: 1px solid #950e08; }

.pagination {
  overflow: hidden; }
  .pagination li {
    float: left;
    border-right: 1px solid #ddd; }
    .pagination li:last-child {
      border: 0; }
  .pagination a {
    padding: 1rem; }

.breadcrumbs {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem; }
  @media all and (min-width: 24em) {
    .breadcrumbs {
      font-size: 0.9rem; } }
  @media all and (min-width: 46.8em) {
    .breadcrumbs {
      font-size: 1rem; } }

/*------------------------------------*    $MAIN CONTENT AREA
\*------------------------------------*/
/*------------------------------------*    $FOOTER
\*------------------------------------*/
.footer {
  clear: both;
  overflow: hidden;
  background: #f5f5f5;
  line-height: 1.2;
  margin-top: 4rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ddd; }
  .section--contact-us + .footer {
    position: relative;
    box-shadow: none;
    z-index: 1; }
  .footer a {
    color: #333;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9rem; }
  .footer .wrapper {
    padding: 0 1rem; }
  .footer h5 {
    margin-top: 3rem; }
  .footer p {
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5; }
  @media all and (max-width: 66em) {
    .footer h5,
    .footer p {
      text-align: center; } }
  @media all and (max-width: 66em) {
    .footer .g-5up > .gi {
      width: 50%;
      text-align: center !important; }
      .footer .g-5up > .gi:first-of-type {
        width: 100%; } }
  @media all and (max-width: 39.8em) {
    .footer .g-5up > .gi {
      width: 100%;
      float: none; } }
  .footer .gi:nth-of-type(-n+2) {
    text-align: right; }
  .footer .footer-logo {
    padding-top: 0; }
    .footer .footer-logo .shape {
      width: 196px;
      height: 171px; }

.nav-footer {
  margin: -1rem -1rem 1rem; }
  .nav-footer li {
    border-bottom: 1px solid #333; }
    @media all and (min-width: 46.8em) {
      .nav-footer li {
        border: 0;
        float: left; } }
  .nav-footer a {
    display: block;
    padding: 1rem; }

.copyright {
  text-align: center;
  margin: 0;
  font-family: "vollkorn", Georgia, Times, serif !important; }

.attribution {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center; }
  .attribution a {
    color: #333; }

/*------------------------------------*    $TEXT Styles
\*------------------------------------*/
/* Global Font Classes */
.font-secondary {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.intro {
  font-size: 1.0625em;
  font-weight: bold; }

.pullquote {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4375em; }

.text ul {
  list-style: disc;
  margin: 0 0 1rem 1.2em; }
  .text ul ul {
    margin-bottom: 0; }

.text ol {
  list-style: decimal;
  margin: 0 0 1rem 1.2em; }
  .text ol ol {
    margin-bottom: 0; }

.success {
  color: #089e00; }

.error {
  color: #f00; }

/*------------------------------------*    $COMPONENTS
\*------------------------------------*/
/* Visually hide the span inside */
@font-face {
  font-family: 'hmicons';
  src: url("./fonts/hmicons.eot");
  src: url("./fonts/hmicons.eot?#iefix") format("embedded-opentype"), url("./fonts/hmicons.woff") format("woff"), url("./fonts/hmicons.ttf") format("truetype"), url("./fonts/hmicons.svg?#hmicons") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"],
[class*=" icon-"] {
  font-family: 'hmicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-google-plus:before {
  content: "\e604"; }

.icon-circle:before {
  content: "\ea56"; }

.icon-pinterest:before {
  content: "\ead0"; }

.icon-search:before {
  content: "\e605"; }

.icon-linkedin:before {
  content: "\e600"; }

.icon-twitter:before {
  content: "\e601"; }

.icon-facebook:before {
  content: "\e602"; }

.icon-arrow-btn:before {
  content: "\e603"; }

.icon-instagram:before {
  content: "\e606"; }

.icon-menu:before {
  content: "\e608"; }

/* SHAPES - SVG SPRITES */
.shape {
  display: inline-block;
  width: 250px;
  height: 250px;
  max-width: 100%; }

svg path.fill-override {
  fill: inherit; }

/*------------------------------------*    $BUTTONS
\*------------------------------------*/
.btn,
.woocommerce button.button.single_add_to_cart_button,
.woocommerce input.button,
.woocommerce button.button,
.woocommerce a.button,
.wpcf7-submit,
.button {
  display: inline-block;
  background-color: #B22A2A;
  background-image: url(./img/btn-bg.png);
  background-position: top left;
  color: #fff;
  line-height: 1;
  padding: 1rem;
  border: 0;
  font-weight: bold !important;
  text-align: center;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-font-smoothing: auto !important;
  border-radius: 0 !important;
  -webkit-appearance: none; }
  .btn a,
  .woocommerce button.button.single_add_to_cart_button a,
  .woocommerce input.button a,
  .woocommerce button.button a,
  .woocommerce a.button a,
  .wpcf7-submit a,
  .button a {
    color: #fff; }
    .btn a:hover,
    .btn a:focus,
    .woocommerce button.button.single_add_to_cart_button a:hover,
    .woocommerce button.button.single_add_to_cart_button a:focus,
    .woocommerce input.button a:hover,
    .woocommerce input.button a:focus,
    .woocommerce button.button a:hover,
    .woocommerce button.button a:focus,
    .woocommerce a.button a:hover,
    .woocommerce a.button a:focus,
    .wpcf7-submit a:hover,
    .wpcf7-submit a:focus,
    .button a:hover, .button a:focus {
      color: #fff;
      background-color: #B22A2A !important; }
  .btn:hover,
  .btn:focus,
  .woocommerce button.button.single_add_to_cart_button:hover,
  .woocommerce button.button.single_add_to_cart_button:focus,
  .woocommerce input.button:hover,
  .woocommerce input.button:focus,
  .woocommerce button.button:hover,
  .woocommerce button.button:focus,
  .woocommerce a.button:hover,
  .woocommerce a.button:focus,
  .wpcf7-submit:hover,
  .wpcf7-submit:focus,
  .button:hover, .button:focus {
    color: #fff !important;
    background-color: #B22A2A !important; }
  .btn.disabled,
  .woocommerce button.button.single_add_to_cart_button.disabled,
  .woocommerce input.button.disabled,
  .woocommerce button.button.disabled,
  .woocommerce a.button.disabled,
  .wpcf7-submit.disabled,
  .button.disabled {
    background: #eee;
    color: #bbb; }

.btn--deco {
  position: relative;
  top: 2px;
  font-family: "Playfair Display", Georgia, Times, serif;
  color: #B22A2A !important;
  letter-spacing: 1px;
  padding: 2.25rem 1rem 2.5rem; }
  .btn--deco span {
    position: relative;
    z-index: 1; }
  .btn--deco .glyph {
    position: relative;
    display: none;
    top: 2px;
    height: 18px;
    width: 40px;
    fill: #B22A2A;
    margin: 0 0.5rem; }
    @media all and (min-width: 39.8em) {
      .btn--deco .glyph {
        display: inline-block; } }
  .btn--deco .flip {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .btn--deco:after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 0;
    bottom: 1.5rem;
    left: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background: #fff; }

.btn--special-1 {
  background: url(../images/holiday-bg.jpg) top left repeat; }

.btn--light {
  background: #fff;
  border: 1px solid #ddd;
  color: #B22A2A; }
  .btn--light:hover {
    color: #eccaca; }

.btn--full {
  display: block;
  width: 100%; }

.btn-small {
  padding: 0.5rem; }

.btn-large {
  padding: 0.5rem;
  text-transform: uppercase;
  background: #808080;
  font-size: 1.4rem;
  font-weight: normal; }

.text-btn {
  font-style: italic; }

.arrow-btn:after {
  position: relative;
  top: 2px;
  font-family: 'hmicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e603";
  display: inline-block;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out; }

.arrow-btn:hover:after,
.arrow-btn:focus:after {
  -webkit-transform: translateX(0.25rem);
      -ms-transform: translateX(0.25rem);
          transform: translateX(0.25rem); }

/* Block */
.block {
  overflow: hidden; }
  .block p:last-child {
    margin-bottom: 0; }
  .block .block__thumb {
    margin-bottom: 1rem; }
    .block .block__thumb a,
    .block .block__thumb img {
      display: block;
      width: 100%; }
  .block .block__glyph .shape {
    height: 2px;
    fill: #B22A2A; }
  .block .block__title {
    margin-bottom: 1rem;
    font-family: "Playfair Display", Georgia, Times, serif; }
  .block .block__actions {
    margin-top: 1rem; }
  .block .block__price ins {
    text-decoration: none; }

.block--header {
  display: block;
  border: 10px solid #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-size: cover;
  min-height: 250px; }
  @media all and (min-width: 46.8em) {
    .block--header {
      min-height: 450px; } }
  .block--header ~ .text {
    margin: 2rem 0; }
  @media all and (min-width: 50em) {
    .g-flex > .gi > .block--header {
      min-height: 0; } }

.block--product {
  border: 1px solid #eccaca;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); }
  .block--product .block__thumb {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #eccaca;
    overflow: hidden; }
    .block--product .block__thumb a {
      position: relative; }
      .block--product .block__thumb a:before {
        content: '';
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        left: 0.5rem;
        border: 1px solid #eccaca; }
  .block--product .block__title {
    font-weight: normal;
    text-align: center;
    font-size: 1em;
    letter-spacing: normal;
    margin: 0;
    text-transform: none; }
    .block--product .block__title a {
      color: #555555; }
  .block--product .block__text {
    overflow: hidden;
    padding: 1rem;
    margin: auto;
    max-width: 100%; }
  .block--product .block__glyph {
    padding: 0.8rem 0 0.5rem; }
    .block--product .block__glyph .shape {
      display: block;
      margin: 0 auto;
      width: 24px; }
  .block--product .block__price {
    text-align: center; }
  .block--product .onsale {
    top: auto !important;
    right: auto !important;
    bottom: 0;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }

.product-single-image {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  display: block; }
  .product-single-image img {
    width: 100%; }

.block--product-single {
  overflow: visible; }
  .block--product-single .block__text {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
    overflow: hidden; }
    .block--product-single .block__text > [class^="block__"] {
      padding: 1.5rem 0;
      border-top: 1px solid #ddd; }
      .block--product-single .block__text > [class^="block__"]:last-child {
        padding-bottom: 0; }
      .block--product-single .block__text > [class^="block__"] ul {
        margin: 0; }
    .block--product-single .block__text .block__price h5 {
      font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: normal;
      margin-bottom: 0; }
    .block--product-single .block__text .block__description h5 {
      text-transform: none; }
    .block--product-single .block__text .block__inventory h5,
    .block--product-single .block__text .block__recommended h5 {
      font-weight: normal; }
    .block--product-single .block__text .block__recommended ul {
      padding: 0; }
    .block--product-single .block__text .block__recommended i {
      margin-right: 0.5rem; }
  .block--product-single .block__options ul {
    overflow: hidden;
    margin: 1.5rem 0 0 0;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #ddd; }
  .block--product-single .block__options li {
    display: block;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    @media all and (min-width: 24em) {
      .block--product-single .block__options li {
        float: left;
        width: 33.3333333333%; } }
  .block--product-single .block__actions {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #ddd;
    overflow: hidden; }
    .block--product-single .block__actions h5,
    .block--product-single .block__actions .epsilon {
      margin: 0;
      line-height: 3; }
      @media all and (min-width: 24em) {
        .block--product-single .block__actions h5,
        .block--product-single .block__actions .epsilon {
          float: left; } }
  .block--product-single .special-phone {
    text-transform: uppercase;
    line-height: 3;
    font-size: 1.2rem; }
    @media all and (min-width: 24em) {
      .block--product-single .special-phone {
        float: right; } }
  .block--product-single .block__contact {
    margin-top: 2rem; }

.block--product-preorder {
  margin-bottom: 1rem; }
  .block--product-preorder .preorder__item {
    width: 100%; }
  .block--product-preorder .preorder__text {
    background: #fff; }
  .block--product-preorder .preorder__text {
    padding: 2rem 2rem 0; }
    .block--product-preorder .preorder__text .preorder__description h5 {
      text-transform: none; }
  @media (min-width: 46.8em) {
    .block--product-preorder .preorder__image,
    .block--product-preorder .preorder__body {
      float: left; } }
  @media (min-width: 46.8em) {
    .block--product-preorder .preorder__image {
      width: 25%; } }
  @media (min-width: 46.8em) {
    .block--product-preorder .preorder__body {
      padding-left: 2rem;
      width: 75%; } }
  .block--product-preorder .preorder__price {
    padding: 0.5rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
    overflow: hidden; }
    .block--product-preorder .preorder__price h5 {
      margin: 0;
      line-height: 48px; }
      @media all and (min-width: 24em) {
        .block--product-preorder .preorder__price h5 {
          float: left; } }
  .block--product-preorder .preorder__inventory {
    line-height: 1.5;
    overflow: auto;
    margin-top: 1rem; }
    .block--product-preorder .preorder__inventory ul {
      margin-bottom: 0; }
    .block--product-preorder .preorder__inventory h5 {
      font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
      letter-spacing: normal; }
  .block--product-preorder .preorder__form {
    margin-top: 2rem; }
  .block--product-preorder .preorder__quantity {
    margin-top: 1rem;
    margin-bottom: 1rem;
    float: right; }

.block--product-special-order {
  margin-bottom: 1rem; }
  @media (min-width: 46.8em) {
    .block--product-special-order .special-order--column {
      border-top: 1px solid #dcdcdc;
      padding-top: 2rem; } }
  .block--product-special-order .special-order__item {
    width: 100%; }
    @media all and (min-width: 46.8em) {
      .block--product-special-order .special-order__item {
        display: table; } }
  .block--product-special-order .special-order__image,
  .block--product-special-order .special-order__text {
    background: #fff; }
    @media all and (min-width: 46.8em) {
      .block--product-special-order .special-order__image,
      .block--product-special-order .special-order__text {
        display: table-cell;
        vertical-align: top; } }
  .block--product-special-order .special-order__image {
    width: 100%;
    padding-bottom: 125%; }
    .block--product-special-order .special-order__image .section__wallpaper {
      z-index: 0; }
    @media all and (min-width: 46.8em) {
      .block--product-special-order .special-order__image {
        width: 35%;
        padding-bottom: 45%; } }
    @media all and (min-width: 50em) {
      .block--product-special-order .special-order__image {
        width: 22%;
        padding-bottom: 30%; } }
    .block--product-special-order .special-order__image a,
    .block--product-special-order .special-order__image img {
      display: block; }
  .block--product-special-order .special-order__text {
    padding: 2rem; }
    .block--product-special-order .special-order__text .special-order__description h5 {
      text-transform: none; }
  .block--product-special-order .special-order__price {
    padding: 0.5rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
    overflow: hidden; }
    .block--product-special-order .special-order__price h5 {
      margin: 0;
      line-height: 48px; }
      @media all and (min-width: 24em) {
        .block--product-special-order .special-order__price h5 {
          float: left; } }

.block--sales {
  max-width: 500px;
  background: #ffffff;
  text-align: center;
  position: relative;
  margin: 0 auto;
  z-index: 10; }
  .block--sales:before {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    border: 1px solid #eccaca; }
  .block--sales .block__title {
    text-transform: none;
    color: #B22A2A;
    letter-spacing: normal; }
  .block--sales .block__text {
    padding: 2rem; }
    @media (min-width: 46.8em) {
      .block--sales .block__text {
        padding-top: 3rem; } }
  .block--sales .block__description {
    position: relative;
    padding-top: 1rem; }
    .block--sales .block__description::before {
      content: '...';
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, -90%);
          -ms-transform: translate(-50%, -90%);
              transform: translate(-50%, -90%);
      font-size: 2em;
      color: #dcdcdc; }

.block--callout {
  background: #fff; }
  .block--callout .block__thumb {
    position: relative;
    margin: 0;
    overflow: hidden; }
  .block--callout .block__text {
    overflow: hidden;
    padding: 0;
    margin: auto 0;
    text-align: center;
    padding: 1rem 0; }
  .block--callout .block__glyph {
    height: 18px;
    -webkit-transform: translate(0, 30%);
        -ms-transform: translate(0, 30%);
            transform: translate(0, 30%); }
    .block--callout .block__glyph .shape {
      height: 18px; }
    .block--callout .block__glyph .flip {
      -webkit-transform: rotate(180deg) translate(0, 60%);
          -ms-transform: rotate(180deg) translate(0, 60%);
              transform: rotate(180deg) translate(0, 60%); }
  .block--callout .block__title {
    text-transform: uppercase;
    color: #B22A2A;
    font-size: 1.4375em;
    margin: 0;
    padding: 0.5rem 0;
    border-top: 1px solid #eccaca;
    border-bottom: 1px solid #eccaca; }

.inline-list li {
  display: inline-block; }

.list-2up {
  position: relative;
  float: left;
  padding-right: 1.5rem; }
  .no-js .list-2up {
    overflow: hidden; }
    @media all and (min-width: 39.8em) {
      .no-js .list-2up > li {
        float: left;
        width: 50%; }
        .no-js .list-2up > li:nth-of-type(odd) {
          clear: left;
          padding-right: 1.5rem; } }

.no-decoration {
  list-style: none; }

/* Social List */
.social-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .social-list li {
    display: inline-block;
    margin: 0 0.4rem 1rem 0; }
  .social-list a {
    font-size: 1.6em; }

/* Headline List */
.headline-list {
  margin-bottom: 1rem; }
  .headline-list.flush {
    margin: 0; }
  .headline-list h4 {
    font-weight: normal; }
  .headline-list li {
    padding: 0.25rem 0;
    border-top: 1px solid #ddd; }

/* Post List */
.post-list li {
  margin-bottom: 1rem; }

/* Bullet List */
.bullet-list {
  list-style: square;
  margin: 0 0 1em 1.2em;
  line-height: 1.3; }
  .bullet-list li {
    margin-bottom: 1rem; }

/* Text List */
.text-list {
  margin: 0 0 1em;
  line-height: 1.3; }
  .text-list li {
    margin-bottom: 1rem; }

.social-share-list li {
  display: inline-block; }

.social-share-list a {
  display: block; }

.date-list {
  padding: 0; }
  .date-list li {
    font-weight: bold; }

.tooltip-container {
  display: inline-block;
  position: relative; }
  .tooltip-container:hover .tooltip {
    display: block; }

.tooltip-link {
  background: #f9f9f9; }

.tooltip {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 18em;
  padding: 1rem;
  background: #fff;
  border: 1px solid #808080;
  box-shadow: 0.3em 0.3em 1em 0 rgba(0, 0, 0, 0.2); }
  .tooltip h2 {
    margin-top: 0; }
  @media all and (min-width: 24em) {
    .tooltip {
      width: 22em; } }
  @media all and (min-width: 29.75em) {
    .tooltip {
      width: 27em; } }
  @media all and (min-width: 39.8em) {
    .tooltip {
      width: 30em; } }

.accordion {
  margin-bottom: 1rem; }

.acc-handle {
  background: #131313;
  color: #fff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 0.5rem;
  border-bottom: 1px solid #ddd; }
  .acc-handle:after {
    content: "+";
    float: right; }
  .acc-handle:hover {
    color: #fff;
    background: #333; }
  .acc-handle.active {
    background: #333; }
    .acc-handle.active:after {
      content: "-"; }

.tabs {
  overflow: hidden; }
  .tabs ul {
    display: table;
    width: 100%; }
  .tabs li {
    display: table-cell;
    text-align: center;
    border-right: 1px solid #ddd; }
    .tabs li:last-child {
      border-right: 0; }
  .tabs a {
    display: block;
    padding: 0.5rem;
    background: #808080; }
    .tabs a:hover,
    .tabs a:focus {
      background: #ddd; }
    .tabs a.active {
      background: #333;
      color: #fff; }

@media (min-width: 46.8em) {
  .section .text {
    width: 75%; } }

.section .wrapper {
  padding-top: 0;
  padding-bottom: 0; }

.section--intro {
  padding-top: 6.25rem; }
  @media all and (min-width: 575px) {
    .section--intro {
      padding-top: 7.5rem; } }
  @media all and (min-width: 950px) {
    .section--intro {
      padding-top: 9.5rem; } }

.section--banner .wrapper {
  padding-top: 0.5rem;
  padding-bottom: 1rem; }

.section--divider {
  padding: 0; }
  .section--divider .wrapper {
    padding-top: 0;
    padding-bottom: 0; }
  .section--divider hr {
    margin: 1rem 0; }

.section--hero {
  min-height: 400px; }
  @media (min-width: 46.8em) {
    .section--hero {
      min-height: 600px; } }
  @media (min-width: 66em) {
    .section--hero {
      min-height: 700px; } }

.section--contact-us {
  background: #fff;
  overflow: hidden;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); }
  .section--contact-us .wrapper {
    max-width: 36rem; }
  .section--contact-us .border-wrap {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; }
  .section--contact-us h3 {
    text-align: center;
    color: #B22A2A; }
  .section--contact-us .gi:first-of-type p:first-of-type {
    text-align: right; }
  .section--contact-us .gi p:first-of-type {
    margin-bottom: 2rem; }
  .section--contact-us a {
    color: #B22A2A;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.section--bg {
  position: relative;
  overflow: hidden; }
  .section--bg .section__wallpaper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1; }

.section--sales {
  margin-bottom: 2rem; }
  .section--sales .block--sales {
    margin-top: -100px;
    margin-bottom: 2rem; }
  @media (max-width: 46.8em) {
    .section--sales .sales--columns .gi {
      padding-top: 0;
      padding-bottom: 0; } }
  @media (min-width: 46.8em) {
    .section--sales .sales--columns .gi:nth-of-type(-n+2) .sales--column {
      border-top: 1px solid #dcdcdc;
      padding-top: 2rem; }
    .section--sales .sales--columns .gi:nth-of-type(n+3) {
      padding-top: 0; } }
  .section--sales .sales__item {
    display: table;
    width: 100%; }
  .section--sales .sales__icon .shape {
    width: 100px;
    height: 100px; }
  @media all and (min-width: 46.8em) {
    .section--sales .sales__icon {
      width: 20%; } }
  .section--sales .sales__text {
    padding: 0 0 1rem; }
    @media all and (min-width: 46.8em) {
      .section--sales .sales__text {
        padding: 1rem 0 1rem 2rem; } }
  .section--sales .sales__icon,
  .section--sales .sales__text {
    text-align: center; }
    @media all and (min-width: 46.8em) {
      .section--sales .sales__icon,
      .section--sales .sales__text {
        display: table-cell;
        vertical-align: middle;
        text-align: left; } }

.section--btn {
  padding: 1rem 0; }
  .section--btn .btn--deco:hover {
    color: #B22A2A !important; }

.section--search article {
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .section--search article .thumbnail {
    float: left;
    margin-right: 1rem; }
    .section--search article .thumbnail img {
      display: block; }
    @media all and (max-width: 24em) {
      .section--search article .thumbnail {
        display: none; } }
  .section--search article h4 {
    margin: 0 0 0.5rem; }
  .section--search article p {
    margin: 0; }

.section--search .navigation {
  overflow: hidden; }

#section-map {
  z-index: -1; }

@media (min-width: 89em) {
  .section--autoblur .section__bg,
  .section--autoblur .section__wallpaper {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); } }

.section--shade .section__bg:before,
.section--shade .section__wallpaper:before,
.section--tint .section__bg:before,
.section--tint .section__wallpaper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.section--shade .section__bg:before,
.section--shade .section__wallpaper:before {
  background: rgba(0, 0, 0, 0.25); }

.section--tint .section__bg:before,
.section--tint .section__wallpaper:before {
  background: rgba(255, 255, 255, 0.25); }

.article-header h1 {
  font-size: 2.5em; }

.byline {
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 0.5rem; }

/* Wordpress Caption */
.wp-caption-text {
  font-style: italic; }

.review-summary .grade {
  width: 4.5em;
  float: left;
  margin: 0 0.5rem 0 0; }

.review-summary .summary-text {
  margin-left: 5em; }

.social-share {
  overflow: hidden;
  margin-bottom: 1rem; }
  .social-share ul {
    margin: 0;
    padding: 0;
    overflow: hidden; }
  .social-share li {
    float: left;
    margin-right: 0.25rem; }
  .social-share a {
    color: #333;
    display: block;
    font-size: 1.5rem;
    margin-right: 0.5rem; }
    .social-share a:hover {
      color: #808080; }

.comments li {
  margin-bottom: 1rem; }

.comment-container {
  overflow: hidden;
  margin-bottom: 1rem; }

.comment-meta {
  float: left;
  width: 6.5em; }
  .comment-meta img {
    display: block;
    border: 1px solid #eee;
    margin-bottom: 0.5rem; }

.comment-name {
  font-size: 0.75em; }

.comment-text {
  margin-left: 9em; }

/*! formstone v0.8.21 [background.css] 2015-10-10 | MIT License | formstone.it */
/**
	 * @class
	 * @name .fs-background-element
	 * @type element
	 * @description Target elmement
	 */
/**
	 * @class
	 * @name .fs-background
	 * @type element
	 * @description Base widget class
	 */
.fs-background {
  overflow: hidden;
  position: relative;
  /**
		 * @class
		 * @name .fs-background-container
		 * @type element
		 * @description Container element
		 */
  /**
		 * @class
		 * @name .fs-background-media
		 * @type element
		 * @description Media element
		 */
  /**
		 * @class
		 * @name .fs-background-media.fs-background-animated
		 * @type modifier
		 * @description Indicates animated state
		 */
  /**
		 * @class
		 * @name .fs-background-media.fs-background-navtive
		 * @type modifier
		 * @description Indicates native support
		 */
  /**
		 * @class
		 * @name .fs-background-media.fs-background-fixed
		 * @type modifier
		 * @description Indicates fixed positioning
		 */
  /**
		 * @class
		 * @name .fs-background-embed
		 * @type element
		 * @description Embed/iFrame element
		 */
  /**
		 * @class
		 * @name .fs-background-embed.fs-background-embed-ready
		 * @type modifier
		 * @description Indicates ready state
		 */ }

.fs-background,
.fs-background-container,
.fs-background-media {
  transition: none; }

.fs-background-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  overflow: hidden; }

.fs-background-media {
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0; }

.fs-background-media.fs-background-animated {
  transition: opacity 0.5s linear; }

.fs-background-media img,
.fs-background-media video,
.fs-background-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-user-drag: none; }

.fs-background-media.fs-background-native,
.fs-background-media.fs-background-fixed {
  width: 100%;
  height: 100%; }

.fs-background-media.fs-background-native img,
.fs-background-media.fs-background-fixed img {
  display: none; }

.fs-background-media.fs-background-native {
  background-position: center;
  background-size: cover; }

.fs-background-media.fs-background-fixed {
  background-position: center;
  background-attachment: fixed; }

.fs-background-embed.fs-background-ready:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: ''; }

.fs-background-embed.fs-background-ready iframe {
  z-index: 0; }

/**
 * WOOCOMMERCE OVERRIDES
 */
.woocommerce #content div.product div.images, .woocommerce div.product div.images,
.woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 100%;
  float: none; }

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  width: 100%;
  float: none; }

.woocommerce .quantity .qty {
  width: 100%;
  text-align: left; }

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  background: #ffffff; }

.woocommerce ul#shipping_method li label {
  display: inline;
  font-weight: normal; }

.woocommerce ul#shipping_method li p {
  text-indent: 0;
  line-height: 1.2;
  font-size: 0.9em; }

.cart_totals {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .cart_totals table {
    border: none; }

.woocommerce form .form-row {
  margin-bottom: 1rem;
  padding: 0; }

.woocommerce form .form-row label {
  line-height: 1;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.5rem; }

.select2-container .select2-choice {
  height: auto; }

.select2-results {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.select2-container .select2-choice > .select2-chosen {
  padding: 0.25rem; }

.select2-container .select2-choice .select2-arrow b {
  background-position: 0 0.25rem; }

.woocommerce table.shop_table {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: none; }
  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    border-left: none;
    border-right: none;
    border-color: #dcdcdc; }
  .woocommerce table.shop_table .product-name {
    width: 50%; }
  @media all and (max-width: 46.8em) {
    .woocommerce table.shop_table .coupon-row input {
      display: block !important;
      width: 100% !important;
      max-width: none !important; } }

@media all and (max-width: 50em) {
  .woocommerce-cart table.cart .cart_item {
    display: block; } }

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
  border: none;
  vertical-align: top;
  text-transform: uppercase; }

.woocommerce-cart table.cart .cart_item td label,
.woocommerce-cart table.cart .cart_item th label {
  display: block !important; }

@media all and (max-width: 50em) {
  .woocommerce-cart table.cart .cart_item td,
  .woocommerce-cart table.cart .cart_item th {
    display: block; } }

.woocommerce-cart table.cart .divider td {
  width: 100%;
  padding: 0; }

.woocommerce-cart table.cart .product-meta {
  overflow: hidden;
  padding: 0.5rem 1rem;
  font-weight: bold; }
  .woocommerce-cart table.cart .product-meta p {
    margin-bottom: 0;
    font-weight: normal; }
  @media all and (max-width: 50em) {
    .woocommerce-cart table.cart .product-meta {
      width: 100%; }
      .woocommerce-cart table.cart .product-meta p,
      .woocommerce-cart table.cart .product-meta input {
        display: inline-block !important;
        float: right; } }

.woocommerce-cart table.cart .product-thumbnail {
  display: block;
  width: 150px; }
  .woocommerce-cart table.cart .product-thumbnail img {
    width: 100%; }

.woocommerce-cart table.cart .product-name {
  font-family: "vollkorn", Georgia, Times, serif;
  font-size: 1.2rem; }
  .woocommerce-cart table.cart .product-name p {
    margin-bottom: 1rem;
    text-transform: none; }

.woocommerce-cart table.cart .product-quantity input {
  display: block; }

.woocommerce-cart table.cart .coupon-row .input-text {
  margin-bottom: 1rem !important; }
  @media all and (min-width: 50em) {
    .woocommerce-cart table.cart .coupon-row .input-text {
      width: 100% !important; } }

@media all and (max-width: 50em) {
  .woocommerce-cart table.cart .coupon-row .coupon {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    padding-bottom: 3rem !important; } }

.coupon,
.checkout_coupon {
  float: none; }
  .coupon .form-row,
  .checkout_coupon .form-row {
    width: auto !important;
    float: left !important; }
  .coupon input[type=text],
  .coupon input[type=submit],
  .checkout_coupon input[type=text],
  .checkout_coupon input[type=submit] {
    float: left !important;
    display: inline-block !important; }
  .coupon input[type=text],
  .checkout_coupon input[type=text] {
    margin-right: 0;
    max-width: 200px !important;
    padding: 1rem 0.5rem !important; }

.coupon input[type=text] {
  padding: 0.95rem 0.5rem !important; }

.checkout_coupon input[type=text] {
  padding: 1rem 0.5rem !important; }

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  @media (min-width: 46.8em) {
    .woocommerce .woocommerce-info,
    .woocommerce .woocommerce-error,
    .woocommerce .woocommerce-message {
      font-size: 1.2rem; } }

.woocommerce .woocommerce-message {
  border-top-color: #B22A2A; }
  .woocommerce .woocommerce-message:before {
    content: "\e015";
    color: #B22A2A; }

.woocommerce .woocommerce-info {
  border-top-color: #B22A2A; }
  .woocommerce .woocommerce-info:before {
    color: #B22A2A; }

.woocommerce #payment .terms, .woocommerce-page #payment .terms {
  text-align: left;
  padding: 0; }

.woocommerce div.product form.variations_form {
  margin-top: 1rem; }
  .woocommerce div.product form.variations_form .variations {
    margin-bottom: 0; }
  .woocommerce div.product form.variations_form .form__personalization {
    border-top: 1px solid #dcdcdc;
    padding-top: 1rem;
    margin-top: 0; }

.woocommerce div.product form.add-to-cart-form .form__row {
  display: table;
  width: 100%; }
  .woocommerce div.product form.add-to-cart-form .form__row .form__left,
  .woocommerce div.product form.add-to-cart-form .form__row .form__right {
    float: none;
    display: table-cell;
    vertical-align: middle; }
    .woocommerce div.product form.add-to-cart-form .form__row .form__left > *,
    .woocommerce div.product form.add-to-cart-form .form__row .form__right > * {
      float: none;
      display: inline-block; }
  .woocommerce div.product form.add-to-cart-form .form__row .form__right {
    text-align: right; }

.woocommerce div.product form.add-to-cart-form .variations select {
  float: none; }

.woocommerce div.product span.onsale {
  top: 0;
  right: 0;
  left: auto;
  padding: 0.5rem 0.75rem;
  color: #fff;
  background: #B22A2A;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  min-height: auto; }
  @media all and (max-width: 50em) {
    .woocommerce div.product span.onsale {
      position: static; } }

.woocommerce div.product p.out-of-stock {
  font-size: 1.5rem !important;
  padding: 1rem 2rem;
  text-transform: uppercase;
  color: #B22A2A;
  font-family: proxima-nova;
  text-align: right; }

.woocommerce div.product del {
  opacity: 0.5; }

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.woocommerce #content div.product div.thumbnails,
.woocommerce-page #content div.product div.thumbnails,
.woocommerce div.product div.thumbnails,
.woocommerce-page div.product div.thumbnails {
  margin-bottom: 2rem;
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1; }
  .woocommerce #content div.product div.thumbnails a,
  .woocommerce-page #content div.product div.thumbnails a,
  .woocommerce div.product div.thumbnails a,
  .woocommerce-page div.product div.thumbnails a {
    width: auto; }
  .woocommerce #content div.product div.thumbnails p.out-of-stock,
  .woocommerce-page #content div.product div.thumbnails p.out-of-stock,
  .woocommerce div.product div.thumbnails p.out-of-stock,
  .woocommerce-page div.product div.thumbnails p.out-of-stock {
    font-size: 1.5rem !important;
    padding: 1rem 2rem;
    text-transform: uppercase;
    color: #B22A2A;
    font-family: proxima-nova;
    text-align: right; }

.woocommerce #content div.product div.thumbnails.columns-3 a,
.woocommerce div.product div.thumbnails.columns-3 a,
.woocommerce-page #content div.product div.thumbnails.columns-3 a,
.woocommerce-page div.product div.thumbnails.columns-3 a {
  width: 30.75%; }

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: inherit; }

body .woocommerce p.price,
body .woocommerce span.price {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #555555;
  font-size: inherit; }

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #B22A2A; }

.woocommerce .block--product p.price,
.woocommerce .block--product span.price {
  font-size: 1rem !important; }

.woocommerce td.product-name dl.variation dd,
.woocommerce td.product-name dl.variation dt {
  margin-bottom: 0;
  font-size: 0.8em; }

.payment_methods label {
  display: inline-block;
  vertical-align: middle; }

.create-account,
#ship-to-different-address {
  font-size: 1.1em;
  margin: 1rem 0; }

#ship-to-different-address {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold; }
  #ship-to-different-address input {
    display: inline;
    margin: -2px 8px 0 3px;
    text-align: center;
    vertical-align: middle; }

.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-shipping-option-fields {
  margin: 0 0 2rem; }

.woocommerce-shipping-option-fields th {
  vertical-align: top; }

.woocommerce-shipping-option-fields td {
  padding-left: 0 !important; }

.woocommerce-shipping-option-fields tr:last-child td,
.woocommerce-shipping-option-fields tr:last-child th {
  border-bottom: none; }

.woocommerce-checkout-review-order-table .cart_item td {
  border-bottom: 1px solid #dcdcdc; }

.woocommerce-checkout-review-order-table .shipping ul li:not(:last-of-type) {
  margin-bottom: 8px !important;
  padding-bottom: 8px !important; }

.woocommerce-checkout-payment {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif; }

@media all and (max-width: 46.8em) {
  #shipping_first_name_field,
  #shipping_last_name_field,
  #billing_first_name_field,
  #billing_last_name_field,
  #billing_email_field,
  #billing_phone_field {
    width: 100%; } }

.account-wholesale {
  border: 1px solid #B22A2A;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #ffffff; }
  .account-wholesale p:last-child {
    margin-bottom: 0; }
/*# sourceMappingURL=style.css.map */