/* to build:
	sass --watch scss/style2017.scss:css/style2017.css
*/
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

/*
 * Made by Erik Terwan
 * 24th of November 2015
 * All rights reserved
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */
#menu a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}
#menu a:hover {
  color: #a8670c;
}

#menuToggle {
  display: block;
  position: relative;
  top: 40px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*
  * Transform all the slices of hamburger
  * into a crossmark.
  */
  /*
  * But let's hide the middle one.
  */
  /*
  * Ohyeah and the last one should go the other direction
  */
  /*
  * And let's fade it in from the left
  */
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #9A5707;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}
#menuToggle input:checked ~ ul {
  transform: scale(1, 1);
  opacity: 1;
}

/*
* Make this absolute positioned
* at the top left of the screen
*/
#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 100px 50px 50px 100px;
  background: #9A5707;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
	dropdown menus
*/
#primary_nav_wrap {
  display: none;
  flex-wrap: wrap;
  height: 40px;
  margin-top: 15px;
  padding: 0 10px;
  border-bottom: 1px solid #cab3ba;
}
#primary_nav_wrap ul {
  width: 100%;
  list-style: none;
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 1;
}
#primary_nav_wrap ul a {
  display: block;
  line-height: 32px;
  padding: 0 15px;
  color: #38252B;
  margin: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: arial, helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
#primary_nav_wrap ul a:hover {
  color: #38252B;
}
#primary_nav_wrap ul a .chevron {
  position: absolute;
  right: 10px;
  opacity: 0.3;
}
#primary_nav_wrap ul ul a {
  font-weight: 300;
}
#primary_nav_wrap ul li {
  position: relative;
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
}
#primary_nav_wrap ul li li {
  text-align: left;
}
#primary_nav_wrap ul li.current-menu-item a {
  color: #a8670c;
}
#primary_nav_wrap ul li.current-menu-item li a {
  color: #38252B;
}
#primary_nav_wrap ul li:hover {
  background: #F9EFDC;
}
#primary_nav_wrap ul li:hover > ul {
  display: block;
}
#primary_nav_wrap ul ul {
  display: none;
  position: absolute;
  width: 240px;
  top: 100%;
  left: 0;
  border-top: 1px solid #CEB991;
  background: #F8E7C8;
  padding: 0;
}
#primary_nav_wrap ul ul li {
  float: none;
  text-align: left;
  width: 240px;
}
#primary_nav_wrap ul ul a {
  line-height: 120%;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: none;
  color: #38252B;
}
#primary_nav_wrap ul ul ul {
  top: 0;
  left: 90%;
  background: #FAE1B6;
}

@media only screen and (min-width: 703px) { /* iPad Mini */
  #primary_nav_wrap {
    display: flex;
  }
  #primary_nav_wrap ul a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 800px) { /* desktop */
  #primary_nav_wrap ul a {
    font-size: 18px;
  }
}
/* Reset */
.nav,
.nav a,
.nav ul,
.nav li,
.nav div,
.nav form,
.nav input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* Menu Container */
.nav {
  display: none;
  margin-top: 15px;
  width: 100%;
  position: relative;
  cursor: default;
  z-index: 10000;
  border-bottom: 1px solid #cab3ba;
  /* Menu List */
  /* Menu Dropdown */
  /* Menu Content Styles */
}
.nav a {
  text-decoration: none;
}
.nav li {
  list-style: none;
}
.nav > li {
  display: block;
  flex: 1;
  /* Menu Links */
}
.nav > li > a {
  position: relative;
  display: block;
  height: 32px;
  line-height: 32px;
  font-family: arial, helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  color: #38252B;
  text-align: center;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav > li:hover > a {
  background: #F9EFDC;
}
.nav > li.current-menu-item > a {
  color: #a8670c;
}
.nav > li > div {
  position: absolute;
  display: flex;
  width: 100%;
  top: 32px;
  left: 0;
  /* transition */
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0.15s;
  -moz-transition: all 0.3s ease 0.15s;
  -o-transition: all 0.3s ease 0.15s;
  -ms-transition: all 0.3s ease 0.15s;
  transition: all 0.3s ease 0.15s;
  background: #F9EFDC;
  border: 1px solid #cab3ba;
  border-radius: 0 0 3px 3px;
}
.nav > li:hover > div {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.nav > li > div .nav-column {
  flex: 1;
  padding: 2.5%;
}
.nav > li > div .nav-column h3 {
  margin: 20px 0 10px 0;
  line-height: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #be2512;
  text-transform: uppercase;
}
.nav > li > div .nav-column h3:first-child {
  margin-top: 0;
}
.nav > li > div .nav-column li a {
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #38252B;
  padding-bottom: 10px;
}
.nav > li > div .nav-column li a .tag {
  display: initial;
}
.nav > li > div .nav-column li a:hover {
  color: #a8670c;
}
@media only screen and (min-width: 600px) { /* iPad Mini */
  .nav {
    display: flex;
  }
  .nav > li > a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 800px) { /* desktop */
  .nav > li > a {
    font-size: 18px;
  }
}
.header-search-wrapper .search-input-wrapper {
  height: 24px;
  width: 170px;
  display: inline-block;
  border-radius: 2px;
}
.header-search-wrapper input {
  width: 150px;
  font-size: 1em;
  padding: 3px 5px 2px 5px;
  border: none;
}
.header-search-wrapper input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc;
}
.header-search-wrapper input::-moz-placeholder { /* Firefox 19+ */
  color: #ccc;
}
.header-search-wrapper input:-ms-input-placeholder { /* IE 10+ */
  color: #ccc;
}
.header-search-wrapper input:-moz-placeholder { /* Firefox 18- */
  color: #ccc;
}
.header-search-wrapper button {
  margin-top: 1px;
  cursor: pointer;
  color: #fff;
  background-color: #be2512;
  padding: 4px 6px 4px;
  border: none;
  border-radius: 2px;
  font-size: 11px;
}
.header-search-wrapper button .fa {
  font-size: 1.7em;
}

/*
	search results
*/
input#query {
  width: 150px;
  font-size: 1em;
  padding: 3px 5px 2px 5px;
  border: 1px solid #cfa6a0;
}

input[type=submit] {
  margin-left: 3px;
  padding: 4px;
  font-size: 0.9em;
  color: #fff;
  background-color: #be2512;
  border: none;
  border-radius: 2px;
}

#result_report {
  margin: 1em 0;
}

#results > b {
  display: none;
}
#results .description {
  margin: 10px 0 10px 20px;
}
#results .url {
  display: none;
}

#other_pages {
  text-align: center;
}

#powered_by {
  display: none;
}

.intro {
  margin-bottom: 50px;
}

@media only screen and (min-width: 1000px) {
  .intro {
    font-size: 120%;
    line-height: 120%;
  }
}
.shop-list,
.about-list {
  margin-bottom: 30px;
}
.shop-list h3,
.about-list h3 {
  margin: 0 0 0.5em 0;
}

.shop-list-section,
.about-list-section {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 2em;
  text-align: center;
}
.shop-list-section a,
.about-list-section a {
  text-decoration: none;
  color: #38252B;
}
.shop-list-section a:hover,
.about-list-section a:hover {
  color: #a8670c;
}
.shop-list-section a .tag,
.about-list-section a .tag {
  display: initial;
}
.shop-list-section li,
.about-list-section li {
  margin: 4px 0 0 0;
}

@media only screen and (min-width: 600px) {
  .shop-list,
  .about-list {
    column-count: 2;
  }
}
@media only screen and (min-width: 1000px) {
  .shop-list {
    column-count: 4;
  }
  .about-list {
    column-count: 3;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

form.responsive.boxed,
form.responsive section {
  border: 1px solid #999;
  padding: 10px;
}
form.responsive header {
  margin: 0 0 20px 0;
}
form.responsive header div {
  font-size: 90%;
  color: #999;
}
form.responsive header h2 {
  margin: 0 0 5px 0;
}
form.responsive header ul {
  list-style: disc;
  margin-left: 1em;
}
form.responsive header li {
  margin: 0 0 0 1em;
}
form.responsive legend {
  width: 25%;
  float: left;
  padding-right: 10px;
}
form.responsive legend.required:after {
  content: " *";
  color: #be2512;
}
form.responsive .note {
  display: block;
  font-size: 90%;
  color: #999;
}
form.responsive > div,
form.responsive > section > div {
  clear: both;
  overflow: hidden;
  padding: 1px;
  margin: 0 0 10px 0;
}
form.responsive > div > fieldset > div > div,
form.responsive > section > div > fieldset > div > div {
  margin: 0 0 5px 0;
}
form.responsive > div > label,
form.responsive > section > div > label {
  width: 25%;
  float: left;
  padding-right: 10px;
}
form.responsive > div > label.required:after,
form.responsive > section > div > label.required:after {
  content: " *";
  color: #be2512;
}
form.responsive > div > label.disabled,
form.responsive > section > div > label.disabled {
  opacity: 0.5;
}
form.responsive > div > div,
form.responsive > div > fieldset > div,
form.responsive > section > div > div,
form.responsive > section > div > fieldset > div {
  width: 75%;
  float: right;
}
form.responsive > div > fieldset label,
form.responsive > section > div > fieldset label {
  font-size: 90%;
}
form.responsive fieldset {
  border: 0;
  padding: 0;
}
form.responsive input[type=text],
form.responsive input[type=email],
form.responsive input[type=url],
form.responsive input[type=password],
form.responsive textarea {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
}
form.responsive input[type=text],
form.responsive input[type=email],
form.responsive input[type=url],
form.responsive input[type=password] {
  width: 50%;
}
form.responsive input[type=text]:focus,
form.responsive input[type=email]:focus,
form.responsive input[type=url]:focus,
form.responsive input[type=password]:focus,
form.responsive textarea:focus {
  outline: 0;
  border-color: #98b552;
}

@media (max-width: 600px) {
  form.responsive legend {
    width: 100%;
    float: none;
    margin: 0 0 5px 0;
  }
  form.responsive > div,
  form.responsive > section > div {
    margin: 0 0 15px 0;
  }
  form.responsive > div > label,
  form.responsive > section > div > label {
    width: 100%;
    float: none;
    margin: 0 0 5px 0;
  }
  form.responsive > div > label.hide-on-mobile,
  form.responsive > section > div > label.hide-on-mobile {
    display: none;
  }
  form.responsive > div > div,
  form.responsive > div > fieldset > div,
  form.responsive > section > div > div,
  form.responsive > section > div > fieldset > div {
    width: 100%;
    float: none;
  }
  form.responsive input[type=text],
  form.responsive input[type=email],
  form.responsive input[type=url],
  form.responsive input[type=password],
  form.responsive textarea,
  form.responsive select {
    width: 100%;
  }
  form.responsive input[type=text].w-80,
  form.responsive input[type=email].w-80,
  form.responsive input[type=url].w-80,
  form.responsive input[type=password].w-80,
  form.responsive textarea.w-80,
  form.responsive select.w-80 {
    width: 80px;
  }
}
.nada-nada {
  display: block;
}

@media (min-width: 1200px) {
  form.responsive > div > label,
  form.responsive section > div > label,
  form.responsive legend {
    text-align: right;
  }
}
.recipe-list {
  margin-bottom: 30px;
}
.recipe-list h3 {
  margin: 0 0 0.5em 0;
}

.recipe-list-section {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 2em;
}

.recipe-list-recipe {
  margin: 2px 0 0 0;
}

.recipe-subtitle {
  font-size: 1em;
  font-weight: bold;
  margin: -0.6em 0 1em 0;
  font-style: italic;
  color: #99919c;
}

.recipe-by {
  margin-top: -0.5em;
}

.recipe-tags {
  margin-top: 0.5em;
}

ul.recipe-ingredients {
  margin: 1em 0;
}
ul.recipe-ingredients li {
  margin-bottom: 2px;
}

@media only screen and (min-width: 600px) {
  .recipe-list {
    column-count: 2;
  }
}
@media only screen and (min-width: 1000px) {
  .recipe-list {
    column-count: 3;
  }
}
/*
	product page
*/
.product-photo {
  width: 100%;
  text-align: center;
}

h3.product-price strike {
  font-size: 80%;
  opacity: 0.8;
  padding-right: 5px;
}

.product-size {
  font-style: italic;
}

.product-qty {
  width: 40px;
}

.product-details {
  min-width: 300px;
}

#related-product {
  margin: 1em 5px;
}

.product-ordering .product-ordering-row.group {
  margin-top: 10px;
}
.product-ordering .product-ordering-row label {
  display: inline-block;
  width: 4.5em;
  min-width: 4.5em;
  margin-right: 10px;
}
.product-ordering .product-ordering-row select {
  margin-bottom: 5px;
}
.product-ordering .product-ordering-row input.product-qty {
  width: 3em;
  min-width: 3em;
  margin-right: 10px;
}
.product-ordering .product-ordering-row input.someone-else {
  width: 12em;
  min-width: 12em;
}
.product-ordering .product-ordering-row input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 14px;
  color: #ccc;
}
.product-ordering .product-ordering-row input::-moz-placeholder { /* Firefox 19+ */
  font-size: 14px;
  color: #ccc;
}
.product-ordering .product-ordering-row input:-ms-input-placeholder { /* IE 10+ */
  font-size: 14px;
  color: #ccc;
}
.product-ordering .product-ordering-row input:-moz-placeholder { /* Firefox 18- */
  font-size: 14px;
  color: #ccc;
}

.product-notes {
  margin-top: 20px;
}
.product-notes .product-note {
  display: inline-block;
  text-align: center;
  margin: 0 20px 10px 0;
  max-width: 300px;
}
.product-notes .product-note.left {
  text-align: left;
}
.product-notes figcaption {
  font-size: 80%;
}

button.close {
  float: right;
  background: transparent;
  border: none;
  padding: 0;
  color: #fff;
  text-shadow: none;
}

table.shopping-cart {
  width: 100%;
  border-spacing: 10px;
  border-collapse: separate;
  border: none;
}
table.shopping-cart td {
  padding: 3px;
}

@media only screen and (min-width: 320px) { /* iPhone 5S */ }
@media only screen and (min-width: 414px) { /* iPhone 6+ */ }
@media only screen and (min-width: 500px) {
  .product-details {
    min-width: 300px;
  }
  .product-photo {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 703px) { /* iPad Mini */ }
@media only screen and (min-width: 768px) { /* iPad Air */ }
@media only screen and (min-width: 800px) { /* desktop */
  .product-photo {
    max-width: 50%;
    text-align: left;
  }
  .product-photo img.img-responsive {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1100px) { /* desktop */ }
.seeds-note {
  padding: 15px;
  margin: 10px 0 20px 0;
  border: 1px solid transparent;
  border-radius: 2px;
  background-color: #98b552;
  border-color: #98b552;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}
.seeds-note.error {
  background-color: #d46363;
  border-color: #d46363;
}
.seeds-note a.button {
  margin-right: 10px;
}

@-webkit-keyframes myanimation {
  from {
    left: 0%;
  }
  to {
    left: 50%;
  }
}
@keyframes myanimation {
  from {
    left: 0%;
  }
  to {
    left: 50%;
  }
}
.checkout-wrap {
  color: #444;
  font-family: "PT Sans Caption", sans-serif;
  margin: 40px auto;
  max-width: 1200px;
  position: relative;
  min-height: 1px;
}

ul.checkout-bar {
  margin: 0 20px;
}
ul.checkout-bar li {
  color: #ccc;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px 14px 80px;
  position: relative;
}
ul.checkout-bar li:before {
  -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  background: #ddd;
  border: 2px solid #FFF;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  left: 20px;
  line-height: 37px;
  height: 35px;
  position: absolute;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  top: 4px;
  width: 35px;
  z-index: 999;
}
ul.checkout-bar li.active {
  color: #8bc53f;
  font-weight: bold;
}
ul.checkout-bar li.active:before {
  background: #8bc53f;
  z-index: 9999;
}
ul.checkout-bar li.visited {
  background: #ECECEC;
  color: #57aed1;
  z-index: 9999;
}
ul.checkout-bar li.visited:before {
  background: #57aed1;
  z-index: 9999;
}
ul.checkout-bar li:nth-child(1):before {
  content: "1";
}
ul.checkout-bar li:nth-child(2):before {
  content: "2";
}
ul.checkout-bar li:nth-child(3):before {
  content: "3";
}
ul.checkout-bar li:nth-child(4):before {
  content: "4";
}
ul.checkout-bar li:nth-child(5):before {
  content: "5";
}
ul.checkout-bar li:nth-child(6):before {
  content: "6";
}
ul.checkout-bar a {
  color: #57aed1;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

@media all and (min-width: 800px) {
  .checkout-bar li.active:after {
    -webkit-animation: myanimation 3s 0;
    background-size: 35px 35px;
    background-color: #8bc53f;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    width: 100%;
    left: 50%;
    position: absolute;
    top: -50px;
    z-index: 0;
  }
  .checkout-bar li.active:last-child:after {
    width: 67%;
    border-radius: 10px;
  }
  .checkout-wrap {
    margin: 80px auto;
  }
  ul.checkout-bar {
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    background-size: 35px 35px;
    background-color: #EcEcEc;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    border-radius: 15px;
    height: 15px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    width: 100%;
  }
  ul.checkout-bar:before {
    background-size: 35px 35px;
    background-color: #57aed1;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    content: " ";
    height: 15px;
    left: 0;
    position: absolute;
    width: 10%;
  }
  ul.checkout-bar li {
    display: inline-block;
    margin: 50px 0 0;
    padding: 0;
    text-align: center;
    width: 19%;
  }
  ul.checkout-bar li:before {
    height: 45px;
    left: 40%;
    line-height: 45px;
    position: absolute;
    top: -65px;
    width: 45px;
    z-index: 99;
  }
  ul.checkout-bar li.visited {
    background: none;
  }
  ul.checkout-bar li.visited:after {
    background-size: 35px 35px;
    background-color: #57aed1;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    left: 50%;
    position: absolute;
    top: -50px;
    width: 100%;
    z-index: 99;
  }
}
.old-cart {
  width: 100%;
  border-spacing: 0 !important;
  border-collapse: collapse !important;
  background-color: #fff;
  border: none;
}
.old-cart .cart-qty {
  display: inline-block;
  min-width: 20px;
  text-align: center;
}
.old-cart a .fa-plus,
.old-cart a .fa-minus {
  color: #83b509;
  border: 1px solid #8b0;
  padding: 1px 3px;
  border-radius: 5px;
}
.old-cart .scNote {
  margin-top: 10px;
  color: #000;
  background: #ff0;
  border: 1px solid #000;
  padding: 5px;
}
.old-cart .hilitePrice {
  background: #ff0;
}
.old-cart .shipTo {
  text-align: left;
  font: bold 12pt arial;
  color: #000;
}
.old-cart .hilitedrow {
  background: #CDDFF7;
}
.old-cart .hilitedrow td {
  font-weight: bold;
}
.old-cart .responsive-hide {
  display: none;
}

.cart-coupon-code {
  width: 10em;
  background-color: #f7fff3;
  border: 1px solid #a6e0a6;
}

.cart-upsells {
  display: flex;
  flex-wrap: wrap;
}
.cart-upsells .cart-upsell {
  max-width: 250px;
  margin: 0 auto 20px auto;
}

@media only screen and (min-width: 500px) {
  .old-cart .responsive-hide {
    display: table-cell;
  }
}
.boxed-wrapper {
  display: flex;
}

section.boxed {
  border: 1px solid #888;
  margin-bottom: 30px;
  padding: 20px;
  margin-right: 20px;
  flex: 1;
  /* Remove margins and padding from the list */
  /* Style the list items */
  /* Set all odd list items to a different color (zebra-stripes) */
  /* Darker background-color on hover */
  /* When clicked on, add a background color and strike out text */
  /* Add a "checked" mark when clicked on */
}
section.boxed h3 {
  margin-top: 0;
}
section.boxed ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: arial;
}
section.boxed ul ul {
  padding-left: 40px;
}
section.boxed ul li {
  position: relative;
  padding: 5px 5px 5px 40px;
  /* background: #eee; */
  font-size: 18px;
  transition: 0.2s;
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section.boxed ul li:nth-child(odd) {
  /* background: #f9f9f9; */
}
section.boxed ul li:hover {
  /* background: #ddd; */
}
section.boxed ul li.checked {
  /* background: #888; */
  color: #888;
  text-decoration: line-through;
}
section.boxed ul li.checked::before,
section.boxed ul li.unchecked::before {
  content: "";
  padding-right: 0;
  position: absolute;
  border-color: #888;
  border-style: solid;
}
section.boxed ul li.unchecked::before {
  border-width: 2px;
  left: 16px;
  top: 7px;
  height: 10px;
  width: 10px;
}
section.boxed ul li.checked::before {
  border-width: 0 2px 2px 0;
  left: 16px;
  top: 0;
  transform: rotate(45deg);
  height: 15px;
  width: 7px;
}
section.boxed ul li.no-check {
  padding-left: 0 !important;
}
section.boxed ul li.no-check::before {
  content: "";
}

body {
  margin: 0;
  padding: 0;
  background: #def;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #38252B;
}

body#tinymce {
  background: #fff;
}

.page-wrapper {
  max-width: 1200px;
  min-width: 320px;
  margin: 0 auto;
  background: #fff;
}

.page {
  width: calc(100% - 20px);
  max-width: calc(100% - 20px);
  margin: 0;
}

input,
textarea,
select,
button {
  color: #38252B;
  font-size: 16px;
}

button {
  border-radius: 2px;
  border-width: 1px;
  padding: 5px 10px;
  border-color: #ccc;
  background: #fff;
  cursor: pointer;
}
button.primary {
  border-color: #f4ca84;
  background: #f4ca84;
}
button.primary:hover {
  color: #fff;
  border-color: #a8670c;
  background: #a8670c;
}
button.small {
  padding: 2px 5px;
  font-size: 14px;
}

a.button {
  display: inline-block;
  border-radius: 2px;
  border-width: 1px;
  padding: 5px 10px;
  text-decoration: none;
  color: #38252B;
  border-color: #ccc;
  background: #fff;
  cursor: pointer;
}
a.button:hover {
  background: #a8670c;
  color: #38252B;
}
a.button.primary {
  color: #000;
  border-color: #f4ca84;
  background: #f4ca84;
}
a.button.green {
  color: #000;
  border-color: #96cf06;
  background: #96cf06;
}

/*
	generic tags
*/
h1 {
  font-size: 1.5em;
  line-height: 1.2em;
  font-weight: 600;
  margin: 1.5em 0 0.67em 0;
  color: #be2512;
}

h1:nth-of-type(1) {
  margin-top: 0.67em;
}

h3 {
  font-size: 1.17em;
  line-height: 1em;
  font-weight: bold;
  margin: 1em 0 0.3em 0;
  color: #be2512;
}

p {
  margin: 1em 0;
}

p.p-responsive {
  min-width: 200px;
}

b,
strong {
  font-weight: bold;
  color: #be2512;
}

a {
  text-decoration: underline;
  color: #be2512;
}
a:hover {
  color: #a8670c;
}

blockquote {
  display: block;
  margin: 1em 40px;
}

ol {
  display: block;
  list-style-type: decimal;
  margin: 1em 0 1em 40px;
}

li {
  display: list-item;
  margin-bottom: 10px;
}

em {
  font-style: italic;
}

figcaption {
  font-size: 0.8em;
  font-style: italic;
  text-align: center;
  max-width: 500px;
}

/* generic styling */
.inline-block {
  display: inline-block;
}

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

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

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

.w300 {
  width: 300px;
}

.bigtext {
  font-size: 20px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-tb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-lr-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-tb-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-lr-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-tb-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-r-50 {
  margin-right: 50px;
}

.m-lr-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.min-width-380 {
  min-width: 380px;
}

.w-240 {
  width: 240px;
}

.w-280 {
  width: 280px;
}

.w-560 {
  width: 560px;
}

.spaced-text {
  margin: 0.5em 0;
}

a.subtle-link {
  text-decoration: none;
  color: #38252B;
}

a.subtle-link:hover {
  color: #a8670c;
}

.display-flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.readable-text {
  max-width: 600px;
  min-width: 280px;
}

.stackable {
  margin-bottom: 30px;
}

.stock-status {
  margin: 1em 0 0 0;
  text-transform: uppercase;
  color: #aaa;
}

.tag {
  display: inline-block;
  margin: 0 0px 2px 5px;
  background-color: #58a;
  font-size: 14px;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  text-transform: uppercase;
}

.gift-shop-day {
  display: inline-block;
  width: 4.5em;
}

.gift-shop-hours {
  font-weight: bold;
}

.nobr {
  white-space: nowrap;
}

.error-msg {
  margin: 20px 0;
  border: 1px solid #900;
  padding: 1em;
  color: #900;
}

.menu-top-nav-wrapper,
.page-copyright {
  width: 100%;
}

.breadcrumbs {
  margin: 0.5em 0;
  font-size: 12px;
}

.page-header {
  padding: 5px 10px 0 10px;
  background-image: url("../images/textures/maple-grain.jpg");
  background-size: cover;
}

.page-header-top {
  display: flex;
}

.page-header-navbar {
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #cab3ba;
}

.page-header-menu {
  display: none;
  flex-wrap: wrap;
}
.page-header-menu ul, .page-header-menu li {
  list-style: none;
  flex: 1;
  text-align: center;
}
.page-header-menu li a {
  color: #38252B;
  margin: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: arial, helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
.page-header-menu li a:hover {
  color: #a8670c;
}

.notification-banner {
  background-color: #d60000;
  color: #fff;
  padding: 5px;
  font-size: 13px;
  text-align: center;
}
.notification-banner a {
  margin-left: 10px;
  color: #fcc;
  font-size: 11px;
}

.header-hamburger-wrapper {
  width: 50px;
  z-index: 10000;
}

.header-logo-wrapper {
  width: 188px;
  height: 100px;
}

.header-search-wrapper {
  flex: 1;
  text-align: center;
  height: 30px;
  margin: auto auto;
}

.page-copyright .site-by {
  font-size: 14px;
  line-height: 30px;
}

/*
	header mini cart
*/
.header-mobile-cart-wrapper,
.header-cart-wrapper {
  margin: auto;
  text-align: right;
  padding: 10px 20px;
  cursor: pointer;
}
.header-mobile-cart-wrapper a,
.header-mobile-cart-wrapper a:hover,
.header-cart-wrapper a,
.header-cart-wrapper a:hover {
  color: #38252B;
  text-decoration: none;
}

.header-mobile-cart-wrapper {
  display: block;
  width: 20px;
}

.header-cart-wrapper {
  display: none;
  width: 200px;
}

.cart-summary {
  font-size: 14px;
}

.mini-cart {
  position: absolute;
  padding-top: 5px;
  overflow: auto;
  z-index: 10002;
}
.mini-cart.visible {
  display: block;
}
.mini-cart .arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d1ae7a;
  position: relative;
  right: -282px;
  z-index: 75;
  top: -5px;
}

.mini-cart-contents {
  padding: 8px;
  background: #d1ae7a;
  text-align: left;
  position: relative;
  top: -7px;
}

.cart-item {
  display: flex;
  padding-bottom: 10px;
}

.cart-item-photo {
  vertical-align: top;
  width: 50px;
  height: 50px;
}

.cart-item-description {
  flex: 1;
  margin-left: 10px;
}

.cart-item-remove {
  margin-left: 10px;
  font-size: 0.8em;
  color: #be2512;
  text-decoration: underline;
}

.cart-subtotal {
  text-align: right;
}
.cart-subtotal b {
  color: #38252B;
}

.cart-buttons {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.cart-button {
  margin: 0 5px;
  padding: 5px 10px;
  border: 1px solid #a8670c;
  border-radius: 5px;
  background: #a8670c;
  color: #fff;
}

.cart-button:hover {
  background: #96cf06;
  border-color: #96cf06;
  color: #fff;
}

.page-body,
.page-footer {
  padding: 0 10px;
}

.page-footer {
  background: #F9EFDC;
  margin: 30px 0 20px 0;
}
.page-footer h3 {
  color: #F8414F;
  margin: 0;
}
.page-footer .contact-info {
  margin: 0.5em 0;
  font-size: 14px;
  color: #38252B;
}
.page-footer .contact-info a {
  text-decoration: none;
  color: #38252B;
}
.page-footer .gift-shop-hours span {
  display: inline-block;
  width: 4em;
}

.page-footer-columns {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.page-footer-column,
.footer-right {
  width: 300px;
  padding-bottom: 15px;
  margin: 0 auto;
}

.page-footer-section {
  padding: 0 5%;
  text-align: left;
}

.footer-left {
  padding: 10px;
}

.page-copyright {
  text-align: center;
  padding: 10px;
}

.special-callout {
  width: calc(100% - 16px);
  border: 3px dashed #DE7110;
  padding: 5px;
  margin: 10px auto;
  text-align: center;
}
.special-callout h3 {
  margin: 0.5em;
}

.open-house {
  background-image: linear-gradient(-180deg, #FFC560 0%, #FFE2AF 100%);
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #d1880b;
  border-radius: 5px;
}
.open-house h2 {
  text-align: center;
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  color: #be2512;
  margin: 0 0 10px 0;
}

.videowrapper {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  margin-bottom: 50px;
}
.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.photo-center {
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.photo-right {
  padding: 0 0 10px 10px;
  text-align: center;
}

.photo-left {
  padding: 0 10px 10px 0;
  text-align: center;
}

.photo-caption {
  font-size: 0.9em;
  font-style: italic;
}

.float-right-iPadMini {
  display: block;
}

/*
	bxslider
*/
.bx-wrapper {
  margin: 0 auto;
}

.bxslider {
  display: none;
}

.bx-viewport .bxslider {
  display: block;
}

.column-callout {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.column-callout.border {
  border: 1px solid #BDCBA9;
  padding: 5px;
}

.column-callout-column {
  flex: 1;
  padding: 10px 20px 10px 0;
  border-top: 1px solid #ccc;
}
.column-callout-column h3 {
  margin: 0;
}

.column-callout-column:first-child,
.column-callout-column.no-rule {
  border-top: none;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

/*
	google maps
*/
.google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*
	home
*/
.full-bleed {
  overflow: hidden;
}

.home-banner {
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  background-color: #96cf06;
}

.home-banner.red {
  color: #fff;
  background-color: #cf2c06;
}

/*
	contact us
*/
.contact-us-page .contact-info i.fa {
  width: 1em;
}

/*
	category page
*/
.category-photo {
  margin: 0 auto;
}

.category-items {
  margin-top: 30px;
}

.category-item {
  width: 250px;
  margin: 0 auto 10px auto;
}

.item-name {
  margin: 5px 0 0 0;
  text-align: center;
}

.item-grade {
  margin: 0;
  font-size: 85%;
  opacity: 0.8;
  text-align: center;
}

.item-info {
  text-align: center;
  font-size: 85%;
  opacity: 0.8;
}

.item-stock-status {
  margin: 5px 0 0 0;
  text-align: center;
  color: #ccc;
  text-transform: uppercase;
}

.item-tags {
  margin: 5px 0;
  text-align: center;
}

/*
	catalog request
*/
form.x-catalog-request {
  font: 16px Helvetica Neue, Arial, sans-serif;
  line-height: 1.5;
  min-width: 350px;
  box-sizing: border-box;
}
form.x-catalog-request .form-row {
  padding-bottom: 10px;
}
form.x-catalog-request .form-row label {
  display: block;
  text-transform: uppercase;
  font-size: 80%;
}
form.x-catalog-request .form-row label.required:after {
  content: " *";
  color: #be2512;
  font-size: 150%;
  vertical-align: -3px;
}
form.x-catalog-request .form-row input {
  margin-bottom: 5px;
}

.shipping-chart {
  margin: 50px 0;
  text-align: center;
}
.shipping-chart table {
  margin: 10px auto;
  border: 1px solid #ccc;
}
.shipping-chart table th, .shipping-chart table td {
  padding: 5px 10px;
  vertical-align: middle;
}

/*
	THROB ANIMATION
*/
.throb {
  -webkit-animation: pulsate 2s ease-out;
  animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}

a.hover-throb:hover .fa {
  -webkit-animation: pulsate 2s ease-out;
  animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.8, 0.8);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8, 0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@media only screen and (min-width: 320px) { /* iPhone 5S */
  .header-logo-wrapper {
    flex: 1;
  }
  .header-search-wrapper {
    display: none;
  }
  .column-callout {
    display: block;
  }
  .full-bleed {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}
@media only screen and (min-width: 414px) { /* iPhone 6+ */
  .special-callout {
    width: 400px;
  }
}
@media only screen and (min-width: 520px) {
  .header-search-wrapper {
    display: block;
  }
  .notification-banner {
    font-size: 14px;
  }
  .notification-banner a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 600px) { /* iPad Mini-ish */
  .header-hamburger-wrapper {
    display: none;
  }
  .header-search-wrapper {
    display: block;
  }
  .special-callout {
    width: 600px;
  }
  .column-callout {
    display: flex;
  }
  .column-callout-column {
    border-top: none;
  }
  .page-body,
  .page-footer {
    padding: 0 40px;
  }
  .page-footer-column,
  .footer-right {
    flex: 1;
  }
  .float-right-iPadMini {
    float: right;
  }
  .full-bleed {
    margin-left: -40px;
    width: calc(100% + 80px);
  }
}
@media only screen and (min-width: 650px) {
  .header-mobile-cart-wrapper {
    display: none;
  }
  .header-cart-wrapper {
    display: block;
  }
}
@media only screen and (min-width: 768px) { /* iPad Air */ }
@media (max-width: 800px) {
  /*
  	use .wrap-second-first anywhere we want to wrap the second flexbox div above the first
  */
  .wrap-second-first > :nth-child(1) {
    order: 2;
  }
  .wrap-second-first > :nth-child(2) {
    order: 1;
  }
}
@media only screen and (min-width: 800px) { /* desktop */
  .notification-banner {
    font-size: 16px;
  }
  .notification-banner a {
    font-size: 14px;
  }
  .page-footer-section {
    padding: 0 15%;
  }
}
@media only screen and (min-width: 900px) { /* desktop */
  .category-photo {
    margin-right: 20px;
    flex: 1;
  }
  .category-copy {
    margin: 0;
    flex: 1;
  }
}

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