/** Shopify CDN: Minification failed

Line 695:2 "text-decoraiton" is not a known CSS property
Line 2403:6 "margn" is not a known CSS property
Line 3198:2 Expected identifier but found "#"
Line 3310:29 Unexpected "{"

**/
/*============================================================================
  #Normalize
==============================================================================*/
*, input, :before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0; }

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

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

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

a, #instafeed .instaItem-link span, .header-cart-item-options button {
  text-decoration: none;
  color: inherit; }

a:active, #instafeed .instaItem-link span:active, .header-cart-item-options button:active, a:hover, #instafeed .instaItem-link span:hover, .header-cart-item-options button:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

/*============================================================================
  #breakpoints
==============================================================================*/
/*============================================================================
  #flexbox
==============================================================================*/
/*============================================================================
  Prefixer mixin for generating vendor prefixes:
    - Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss
    - Usage:

      // Input:
      .element {
        @include prefixer(transform, scale(1), ms webkit spec);
      }

      // Output:
      .element {
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
      }
==============================================================================*/
/*============================================================================
# animation
============================================================================*/
@-webkit-keyframes "pan" {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

  to {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); } }

@keyframes "pan" {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

  to {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); } }

/*============================================================================
  #grid layout
==============================================================================*/
.hasFlex .gridJustify {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }
  .hasFlex .gridJustify:not(.centerColumns) {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .hasFlex .gridJustify.centerColumns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
.hasFlex .gridAlignTop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }
.hasFlex .gridAlignLeft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }
.hasFlex .gridAlignTopLeft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }
.hasFlex .gridTable {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 100%; }

.grid {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto; }

.flexGrid {
  padding: 0 30px; }
  @media screen and (max-width: 568px) {
    .flexGrid {
      padding: 0 10px; } }
  .flexGrid.flexItem:not(.flexGrid), .flexGrid .flexGrid:not(.cartRow):not(.flexItem) {
    padding-left: 0;
    padding-right: 0; }

.flexItem {
  padding-left: 10px;
  padding-right: 10px; }
  .flexItem.forceCenter {
    margin-left: auto;
    margin-right: auto; }

.alignCenter {
  text-align: center;
  float: none; }

.oneQuarter, #instafeed.flexItem-oneQuarter .flexItem {
  width: 25%; }

.threeQuarter {
  width: 75%; }

.oneThird, #instafeed.flexItem-oneThird .flexItem {
  width: 33.33%; }

.twoThird {
  width: 66.66%; }

.oneFifth {
  width: 20%; }

.twoFifth {
  width: 40%; }

.threeFifth {
  width: 60%; }

.oneSixth {
  width: 16.66%; }

.ninth {
  width: 11.11%; }

.eightNinth {
  width: 88.88%; }

.twoFifteenth {
  width: 13.333%; }

.half, #instafeed.flexItem-half .flexItem {
  width: 50%; }

.fullSpan {
  width: 100%; }

.sectionWrap {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center; }
  .sectionWrap.relatedItems {
    padding-top: 40px; }

.sectionWrap.hasBlockTitle {
  padding-top: 70px;
  padding-bottom: 70px; }

.sectionWrap.halfGutter {
  padding-top: 40px;
  padding-bottom: 40px; }
  .sectionWrap.halfGutter.hasGrid {
    padding-top: 30px;
    padding-bottom: 30px; }
    .sectionWrap.halfGutter.hasGrid.noPagination {
      padding-bottom: 40px; }
  .sectionWrap.halfGutter.collectionTitle {
    text-align: left;
    padding-bottom: 0; }
  .sectionWrap.halfGutter .genHeading {
    margin: 0; }
    .sectionWrap.halfGutter .genHeading + .rte {
      margin-top: 20px; }

@media screen and (max-width: 1280px) {
  .sectionWrap {
    padding-left: 0px;
    padding-right: 0px; } }
@media screen and (max-width: 736px) {
  .oneQuarter:not(.sideBar), #instafeed.flexItem-oneQuarter .flexItem:not(.sideBar) {
    width: 50%; }

  .oneThird:not(.leftMenu):not(.rightMenu):not(.logo), #instafeed.flexItem-oneThird .flexItem:not(.leftMenu):not(.rightMenu):not(.logo),
  .twoThird,
  .half,
  #instafeed.flexItem-half .flexItem {
    width: 100%; }

  .sectionWrap {
    padding-top: 40px;
    padding-bottom: 40px; }
    .sectionWrap.hasGrid {
      padding-top: 30px;
      padding-bottom: 30px; } }
@media screen and (max-width: 460px) {
  .oneQuarter:not(.sideBar), #instafeed.flexItem-oneQuarter .flexItem:not(.sideBar) {
    width: 100%; } }
/*============================================================================
#strip heros  / sections
============================================================================*/
.bgImage {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .bgImage svg {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    padding: 0 10%;
    box-sizing: border-box;
    width: 100%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0); }

.stripHero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  .stripHero.fixedHeight {
    max-height: 500px; }
    .stripHero.fixedHeight:before {
      content: "";
      display: block;
      padding-top: 66.66%; }
  .stripHero.fixedBack {
    background-attachment: fixed; }
  .stripHero img {
    width: 100%; }

.mapWrap {
  margin: 20px auto 20px;
  height: 368px;
  position: relative; }
  .mapWrap .mapContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee; }

@media screen and (max-width: 736px) {
  .stripHero.fixedBack {
    background-attachment: local; } }
/*============================================================================
#Typeography
============================================================================*/
/*============================================================================
#color
============================================================================*/
/*============================================================================
#Gen Styles
============================================================================*/
html {
  font-size: 62.5%; }

body {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #414141;
  position: relative;
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

main {
  opacity: 0; }

svg * {
  stroke: #85cfc6; }

svg path {
  fill: #85cfc6; }

.svg-placeholder svg * {
  fill: #AAA;
  stroke: #AAA; }

::-moz-selection {
  background: #85cfc6;
  color: #fff; }

::selection {
  background: #85cfc6;
  color: #fff; }

p {
  line-height: 2.8rem; }

label, a, #instafeed .instaItem-link span, .header-cart-item-options button, p, h1, h2, h3, h4, h5, h6, h7 {
  word-break: break-word; }

h1, h2, h3, h4, h5, h6, h7 {
  color: #85cfc6;
  margin: 0 0 20px; }

.clearTitle:after {
  content: '';
  width: 30px;
  height: 6px;
  background: #85cfc6;
  margin: 30px auto;
  display: block; }

hr {
  max-width: 1000px;
  margin: 0 auto;
  border: none;
  border-bottom: 1px solid #eeeeee; }
  @media screen and (max-width: 1080px) {
    hr {
      max-width: calc(100% - 80px); } }
  @media screen and (max-width: 568px) {
    hr {
      max-width: calc(100% - 40px); } }

a:hover, #instafeed .instaItem-link span:hover, .header-cart-item-options button:hover {
  color: #60c1b5; }

/*============================================================================
  # Shopify Sections-specific
==============================================================================*/
.shopify-section.slideshow + .shopify-section .page-section-divider,
.shopify-section.featured-grid + .shopify-section .page-section-divider,
.shopify-section.featured-content + .shopify-section .page-section-divider,
.shopify-section.twitter-feed + .shopify-section .page-section-divider {
  display: none; }

.shopify-section:first-child .page-section-divider {
  display: none; }

.shopify-section.slideshow + .shopify-section.featured-grid, .shopify-section.featured-content + .shopify-section.featured-grid, .shopify-section.twitter-feed + .shopify-section.featured-grid {
  margin-top: 20px; }
.shopify-section.featured-grid + .shopify-section.featured-grid {
  margin-top: 0; }
.shopify-section.featured-grid + .shopify-section:not(.slideshow):not(.featured-grid):not(.featured-content):not(.twitter-feed) {
  margin-top: -20px; }

/*============================================================================
  #RTE
==============================================================================*/
.rte {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 2.4rem; }
  .rte.leftAlign {
    text-align: left; }
  .rte p,
  .rte ul,
  .rte ol,
  .rte table {
    margin: 0 0 20px;
    line-height: 2.4rem; }
  .rte ul ul {
    margin-bottom: 0; }
  .rte a, .rte #instafeed .instaItem-link span, #instafeed .instaItem-link .rte span, .rte .header-cart-item-options button, .header-cart-item-options .rte button {
    color: #85cfc6;
    border-bottom: 1px solid #85cfc6; }
    .rte a:hover, .rte #instafeed .instaItem-link span:hover, #instafeed .instaItem-link .rte span:hover, .rte .header-cart-item-options button:hover, .header-cart-item-options .rte button:hover, .rte a:focus, .rte #instafeed .instaItem-link span:focus, #instafeed .instaItem-link .rte span:focus, .rte .header-cart-item-options button:focus, .header-cart-item-options .rte button:focus {
      border-bottom: 1px solid; }
  .rte h1, .rte h4, .rte h5, .rte h6 {
    color: #85cfc6;
    margin-top: 20px;
    margin-bottom: 20px; }
  .rte h2, .rte h3 {
    color: #85cfc6;
    margin-top: 20px;
    margin-bottom: 20px; }
  .rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700; }
    .rte h1:first-child, .rte h2:first-child, .rte h3:first-child, .rte h4:first-child, .rte h5:first-child, .rte h6:first-child {
      margin-top: 0; }
    .rte h1 a, .rte h1 #instafeed .instaItem-link span, #instafeed .instaItem-link .rte h1 span, .rte h1 .header-cart-item-options button, .header-cart-item-options .rte h1 button, .rte h2 a, .rte h2 #instafeed .instaItem-link span, #instafeed .instaItem-link .rte h2 span, .rte h2 .header-cart-item-options button, .header-cart-item-options .rte h2 button, .rte h3 a, .rte h3 #instafeed .instaItem-link span, #instafeed .instaItem-link .rte h3 span, .rte h3 .header-cart-item-options button, .header-cart-item-options .rte h3 button, .rte h4 a, .rte h4 #instafeed .instaItem-link span, #instafeed .instaItem-link .rte h4 span, .rte h4 .header-cart-item-options button, .header-cart-item-options .rte h4 button, .rte h5 a, .rte h5 #instafeed .instaItem-link span, #instafeed .instaItem-link .rte h5 span, .rte h5 .header-cart-item-options button, .header-cart-item-options .rte h5 button, .rte h6 a, .rte h6 #instafeed .instaItem-link span, #instafeed .instaItem-link .rte h6 span, .rte h6 .header-cart-item-options button, .header-cart-item-options .rte h6 button {
      text-decoration: none; }
  .rte ul {
    padding-left: 20px;
    list-style: square outside; }
  .rte li {
    margin-bottom: 0; }
  .rte > p:last-child {
    margin-bottom: 0; }
  .rte table {
    table-layout: fixed; }
  .rte blockquote {
    border-left: 1px solid #85cfc6;
    margin: 30px 0;
    padding: 10px 40px; }
    .rte blockquote *, .rte blockquote p {
      color: #A9A9A9;
      font-size: 2.4rem;
      font-style: italic;
      font-weight: 400;
      line-height: 140%;
      margin: 0; }

/*============================================================================
  #headings
==============================================================================*/
.genHeading {
  font-size: 2.8rem;
  color: #85cfc6;
  font-weight: 700;
  text-decoration: none;
  margin: 0 0 40px;
  line-height: 1; }

.genHeadingXL {
  font-size: 4.6rem;
  color: #85cfc6;
  font-weight: 700;
  text-decoration: none;
  margin: 0 0 40px;
  line-height: 1; }

.blockTitle {
  line-height: 1;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 70px; }
  .blockTitle h1, .blockTitle .genHeading, .blockTitle .genHeadingXL {
    color: #85cfc6;
    margin: 0 auto; }
  .blockTitle .rte {
    font-size: 1.6rem;
    margin: 40px auto 0;
    line-height: 2.8rem; }
    .blockTitle .rte p {
      line-height: 2.8rem; }

@media screen and (max-width: 736px) {
  .blockTitle {
    padding-bottom: 30px; } }
@media screen and (max-width: 568px) {
  .genHeadingXL {
    font-size: 2.8rem; } }
/*============================================================================
  #outerFrame
==============================================================================*/
/*============================================================================
  #tables
==============================================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

.table-wrap {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

th {
  font-weight: bold; }

th, td {
  text-align: left;
  padding: 10px;
  border: 1px solid #eeeeee; }

/*============================================================================
  #forms
==============================================================================*/
form {
  margin: 0; }
  form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput), form textarea {
    font-family: "Georgia", "Times New Roman", serif;
    border: 1px solid #d4d4d4;
    font-size: 1.4rem;
    padding: 5px 10px;
    width: 100%;
    outline: none;
    margin: 0 0 20px;
    -webkit-appearance: none; }
    form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput):not(textarea), form textarea:not(textarea) {
      height: 50px;
      padding: 5px 10px;
      line-height: 48px; }
    form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput)::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
      color: #b4b4b4; }
    form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput):-moz-placeholder, form textarea:-moz-placeholder {
      color: #b4b4b4; }
    form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput)::-moz-placeholder, form textarea::-moz-placeholder {
      color: #b4b4b4; }
    form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput):-ms-input-placeholder, form textarea:-ms-input-placeholder {
      color: #b4b4b4; }
    form input:not(.button):not(.linkButton):not(.btn):not([type="radio"]):not([type="checkbox"]):not(.cartUpdate):not(.qtyInput):focus, form textarea:focus {
      border-color: #85cfc6; }
  form p label {
    margin: 0 10px 0 0; }
  form textarea {
    padding: 10px; }

.form-select-wrapper {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px 10px;
  margin: 0 0 20px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background-color: #f6f6f6;
  font-size: 1.4rem;
  cursor: pointer;
  outline: none;
  font-family: "Georgia", "Times New Roman", serif;
  height: 50px;
  text-align: left; }
  .form-select-wrapper .selected-text {
    line-height: 40px; }
  .form-select-wrapper:after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -1px;
    border-top: 3px solid #414141;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent; }
  .form-select-wrapper select {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    -webkit-appearance: none; }

label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  color: #bbbbbb;
  display: inline-block;
  margin: 0 0 10px 0;
  font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif; }

.formWrap.contactForm {
  padding-top: 40px; }
.formWrap .button, .formWrap .shopify-challenge__button {
  width: 100%; }
.formWrap input[type="checkbox"] {
  margin: 0;
  vertical-align: middle; }
.formWrap form a, .formWrap form #instafeed .instaItem-link span, #instafeed .instaItem-link .formWrap form span, .formWrap form .header-cart-item-options button, .header-cart-item-options .formWrap form button {
  display: block;
  color: #85cfc6;
  margin: 20px auto 0;
  text-decoraiton: underline; }
.formWrap label:not(.showLabel) {
  text-align: left;
  margin: 0 0 10px;
  display: none; }
.formWrap label .showLabel {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px; }
.formWrap .pagination {
  padding: 0; }
  .formWrap .pagination span:not(:last-child) {
    margin: 0 10px 0 0; }
.formWrap .errors {
  color: red;
  padding: 0 0 20px; }

.addressLabel {
  max-width: 350px;
  border-bottom: 1px solid #eeeeee;
  margin: 0 auto 20px auto; }

input.qtyInput {
  width: 40px;
  height: 40px;
  border: 1px solid #eeeeee;
  padding: 2px 0px 2px 4px;
  margin: 0 auto;
  display: block;
  text-align: center;
  outline: none; }
  input.qtyInput:focus ::-webkit-inner-spin-button {
    opacity: 1; }

/*============================================================================
  #butons
==============================================================================*/
.button, .shopify-challenge__button {
  color: #fff;
  background: #85cfc6;
  cursor: pointer;
  line-height: 5rem;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  text-align: center;
  padding: 0 20px;
  text-transform: uppercase;
  display: inline-block;
  font-family: inherit; }
  .button:hover, .shopify-challenge__button:hover {
    background: #60c1b5;
    color: #fff; }
  .button.disabled, .disabled.shopify-challenge__button {
    background-color: #a0a0a0;
    cursor: not-allowed; }

.button.tranBack, .tranBack.shopify-challenge__button {
  color: #fff;
  background: transparent;
  border: 2px solid #fff; }

.button.linkButton, .linkButton.shopify-challenge__button {
  color: #85cfc6;
  border: none;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  text-decoration: underline;
  height: auto;
  background: none;
  font-weight: normal;
  cursor: pointer;
  font-size: 1.4rem;
  text-transform: none;
  letter-spacing: 0; }

/*============================================================================
  #header
==============================================================================*/
#shopify-section-header.adjustForSlideshow + #mainWrap {
  margin-top: 0; }
#shopify-section-header.adjustForSlideshow:not(.isLocked) + #mainWrap {
  margin-top: -120px; }
  @media only screen and (max-width: 736px) {
    #shopify-section-header.adjustForSlideshow:not(.isLocked) + #mainWrap {
      margin-top: -80px; } }

header {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100%;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0);
  position: relative;
  z-index: 999; }
  header .grid {
    position: relative;
    display: inline-block; }
  header.locked {
    position: fixed;
    top: 0;
    left: 0; }
    header.locked + .strapLine {
      position: relative;
      top: 120px; }
  header svg {
    vertical-align: middle;
    height: 20px; }
  header svg * {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    fill: #85cfc6;
    stroke: none; }
  header svg path {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    fill: #85cfc6;
    stroke: none; }
  header .leftMenu {
    padding-right: 0; }
    header .leftMenu a, header .leftMenu #instafeed .instaItem-link span, #instafeed .instaItem-link header .leftMenu span, header .leftMenu .header-cart-item-options button, .header-cart-item-options header .leftMenu button {
      display: inline-block;
      vertical-align: middle;
      margin-right: 40px;
      width: 20px; }
  header .rightMenu {
    color: #85cfc6;
    font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
    padding-left: 0;
    text-align: right;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px; }
    header .rightMenu a, header .rightMenu #instafeed .instaItem-link span, #instafeed .instaItem-link header .rightMenu span, header .rightMenu .header-cart-item-options button, .header-cart-item-options header .rightMenu button {
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease; }
    header .rightMenu > div {
      position: relative;
      display: inline-block;
      margin-left: 40px; }
  header .logo {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
    color: #85cfc6;
    font-family: "Playfair Display", serif;
    text-align: center;
    font-weight: 700;
    font-size: 3.1rem;
    margin: 0;
    height: inherit;
    max-height: 100%;
    overflow: hidden;
    padding: 0; }
    header .logo img {
      position: absolute;
      top: 50%;
      left: 50%;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      header .logo img.is-white {
        display: none; }
  header.isTran .logo img.has-white {
    display: none; }
  header.isTran .logo img.is-white {
    display: block; }
  header.isTran .header-account:hover,
  header.isTran .header-cart-wrapper-inner > a:hover,
  header.isTran #instafeed .instaItem-link .header-cart-wrapper-inner > span:hover,
  #instafeed .instaItem-link header.isTran .header-cart-wrapper-inner > span:hover,
  header.isTran .header-cart-item-options .header-cart-wrapper-inner > button:hover,
  .header-cart-item-options header.isTran .header-cart-wrapper-inner > button:hover {
    color: inherit; }
  @media only screen and (max-width: 568px) {
    header.isTran .cartItemCount {
      color: inherit; } }
  header.active, header.noTran, header.scrolled {
    background: white;
    border-bottom: 1px solid white;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.3); }
    header.active svg *, header.noTran svg *, header.scrolled svg * {
      /*       fill:$colorTextMetaLighten !important; */ }
    header.active svg path, header.noTran svg path, header.scrolled svg path {
      /*     fill:$colorTextMetaLighten !important; */ }
    header.active .rightMenu, header.noTran .rightMenu, header.scrolled .rightMenu {
      color: #797676 !important; }
    header.active .burgerNav:not(.active) span, header.noTran .burgerNav:not(.active) span, header.scrolled .burgerNav:not(.active) span {
      background: #929090 !important; }
    header.active .logo, header.noTran .logo, header.scrolled .logo {
      color: #85cfc6 !important; }
    header.active .logo img.has-white, header.noTran .logo img.has-white, header.scrolled .logo img.has-white {
      display: block; }
    header.active .logo img.is-white, header.noTran .logo img.is-white, header.scrolled .logo img.is-white {
      display: none; }
    header.active #regularMenu, header.noTran #regularMenu, header.scrolled #regularMenu {
      color: #85cfc6;
      border-color: #eeeeee; }

.burgerNav {
  height: 20px;
  width: 20px;
  position: relative;
  cursor: pointer;
  z-index: 999;
  vertical-align: middle;
  -webkit-transition: transform 300ms ease;
  -moz-transition: transform 300ms ease;
  -ms-transition: transform 300ms ease;
  -o-transition: transform 300ms ease;
  transition: transform 300ms ease;
  -ms-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms; }
  .burgerNav span {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -ms-transition-delay: 0ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
    background: #85cfc6;
    position: absolute;
    left: 0;
    width: 20px;
    height: 1px; }
    .burgerNav span:nth-child(1) {
      top: 25%; }
    .burgerNav span:nth-child(2) {
      top: 50%; }
    .burgerNav span:nth-child(3) {
      top: 75%; }
  .burgerNav.active {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -ms-transition-delay: 0ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms; }
    .burgerNav.active span {
      -ms-transition-delay: 300ms;
      -webkit-transition-delay: 300ms;
      transition-delay: 300ms;
      background: #fff !important; }
      .burgerNav.active span:nth-child(1) {
        top: 50%;
        -ms-transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 0, 0);
        -webkit-transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 0, 0);
        transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 0, 0); }
      .burgerNav.active span:nth-child(2) {
        opacity: 0; }
      .burgerNav.active span:nth-child(3) {
        top: 50%;
        -ms-transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, 0);
        -webkit-transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, 0);
        transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, 0); }

#burgerMenu {
  font-size: 1.6rem;
  font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
  background: #85cfc6;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -24px 0 0 26px;
  width: 20%;
  padding: 50px 15px 5px;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  border-radius: 2px;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -ms-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms; }
  #burgerMenu.active {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -ms-transition-delay: 0ms;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
    visibility: visible;
    opacity: 1; }
  #burgerMenu a, #burgerMenu #instafeed .instaItem-link span, #instafeed .instaItem-link #burgerMenu span, #burgerMenu .header-cart-item-options button, .header-cart-item-options #burgerMenu button {
    margin: 0;
    display: block;
    font-weight: bold;
    padding: 0 0 10px;
    line-height: 1;
    width: 100%;
    font-size: 1.4rem; }
    #burgerMenu a:hover, #burgerMenu #instafeed .instaItem-link span:hover, #instafeed .instaItem-link #burgerMenu span:hover, #burgerMenu .header-cart-item-options button:hover, .header-cart-item-options #burgerMenu button:hover {
      color: #fff; }
  #burgerMenu .hasDrop a.parentLink:after, #burgerMenu .hasDrop #instafeed .instaItem-link span.parentLink:after, #instafeed .instaItem-link #burgerMenu .hasDrop span.parentLink:after, #burgerMenu .hasDrop .header-cart-item-options button.parentLink:after, .header-cart-item-options #burgerMenu .hasDrop button.parentLink:after {
    font: normal normal normal 12px/1 FontAwesome;
    content: "\f078 ";
    display: inline-block;
    vertical-align: top;
    line-height: 1.2rem;
    float: right;
    font-size: 1rem; }
  #burgerMenu .hasDrop ul {
    display: none; }
    #burgerMenu .hasDrop ul li {
      padding: 0 0 0 10px; }
  #burgerMenu .hasDrop.active a.parentLink:after, #burgerMenu .hasDrop.active #instafeed .instaItem-link span.parentLink:after, #instafeed .instaItem-link #burgerMenu .hasDrop.active span.parentLink:after, #burgerMenu .hasDrop.active .header-cart-item-options button.parentLink:after, .header-cart-item-options #burgerMenu .hasDrop.active button.parentLink:after {
    content: "\f077"; }
  #burgerMenu .hasDrop.active ul {
    display: block; }

#headerSearch, #footerSearch {
  position: relative;
  width: 100%;
  background: #fff; }
  #headerSearch input, #footerSearch input {
    margin: -25px 0 0 0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 95%;
    width: calc(100% - 50px);
    padding: 0 20px;
    border-color: transparent;
    background: transparent;
    font-size: 1.6rem; }
    #headerSearch input:focus, #footerSearch input:focus {
      border-color: transparent; }
    #headerSearch input::-webkit-input-placeholder, #footerSearch input::-webkit-input-placeholder {
      color: #DADADA; }
    #headerSearch input:-moz-placeholder, #footerSearch input:-moz-placeholder {
      color: #DADADA; }
    #headerSearch input::-moz-placeholder, #footerSearch input::-moz-placeholder {
      color: #DADADA; }
    #headerSearch input:-ms-input-placeholder, #footerSearch input:-ms-input-placeholder {
      color: #DADADA; }
  #headerSearch .button, #headerSearch .shopify-challenge__button, #footerSearch .button, #footerSearch .shopify-challenge__button {
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: -25px 0 0 0;
    line-height: 48px; }
    #headerSearch .button svg, #headerSearch .shopify-challenge__button svg, #footerSearch .button svg, #footerSearch .shopify-challenge__button svg {
      height: 20px;
      width: 20px;
      display: inline-block;
      vertical-align: middle; }
    #headerSearch .button svg *, #headerSearch .shopify-challenge__button svg *, #footerSearch .button svg *, #footerSearch .shopify-challenge__button svg * {
      stroke: #D4D4D4;
      fill: #D4D4D4; }
    #headerSearch .button svg path, #headerSearch .shopify-challenge__button svg path, #footerSearch .button svg path, #footerSearch .shopify-challenge__button svg path {
      fill: #D4D4D4; }
  #headerSearch:not(#footerSearch), #footerSearch:not(#footerSearch) {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    line-height: 120px;
    z-index: 1000; }
    #headerSearch:not(#footerSearch).active, #footerSearch:not(#footerSearch).active {
      opacity: 1;
      visibility: visible; }
  #headerSearch:not(#headerSearch), #footerSearch:not(#headerSearch) {
    display: none;
    height: 52px;
    margin: 0 0 40px;
    border: 1px solid #eeeeee; }

.strapLine {
  margin: 0;
  background: #85cfc6;
  color: #fff;
  line-height: 50px;
  font-size: 1.2rem;
  width: 100%;
  padding: 0 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  display: inline-block;
  text-transform: uppercase; }
  .strapLine:hover {
    color: white; }

li.mobAccount {
  display: none; }

#regularMenu {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  text-align: center;
  width: 100%;
  color: #85cfc6;
  position: relative; }
  #regularMenu .grid {
    height: auto;
    line-height: 1;
    position: static;
    margin-top: 0; }
  #regularMenu ul:not(.dropDown) {
    height: 50px;
    margin: 0 auto; }
    #regularMenu ul:not(.dropDown) li {
      padding: 0; }
      #regularMenu ul:not(.dropDown) li a, #regularMenu ul:not(.dropDown) li #instafeed .instaItem-link span, #instafeed .instaItem-link #regularMenu ul:not(.dropDown) li span, #regularMenu ul:not(.dropDown) li .header-cart-item-options button, .header-cart-item-options #regularMenu ul:not(.dropDown) li button {
        padding: 0 10px;
        line-height: 50px; }
  #regularMenu .hasDrop {
    position: relative; }
    #regularMenu .hasDrop ul {
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      -ms-transform: scale(0.95);
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
      position: absolute;
      top: 50px;
      background: white;
      color: #85cfc6;
      visibility: hidden;
      opacity: 0;
      width: 200px;
      text-align: center;
      left: -10px;
      padding: 20px;
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.19);
      border-top: none; }
      #regularMenu .hasDrop ul li {
        padding: 0;
        text-align: left; }
        #regularMenu .hasDrop ul li:not(:last-child) {
          padding: 0 0 10px; }
        #regularMenu .hasDrop ul li a, #regularMenu .hasDrop ul li #instafeed .instaItem-link span, #instafeed .instaItem-link #regularMenu .hasDrop ul li span, #regularMenu .hasDrop ul li .header-cart-item-options button, .header-cart-item-options #regularMenu .hasDrop ul li button {
          text-align: left;
          margin: 0;
          line-height: 1;
          padding: 0; }
    #regularMenu .hasDrop:hover + ul, #regularMenu .hasDrop:hover ul, #regularMenu .hasDrop a.active-focus + ul, #regularMenu .hasDrop #instafeed .instaItem-link span.active-focus + ul, #instafeed .instaItem-link #regularMenu .hasDrop span.active-focus + ul, #regularMenu .hasDrop .header-cart-item-options button.active-focus + ul, .header-cart-item-options #regularMenu .hasDrop button.active-focus + ul, #regularMenu .hasDrop a.active-focus ul, #regularMenu .hasDrop #instafeed .instaItem-link span.active-focus ul, #instafeed .instaItem-link #regularMenu .hasDrop span.active-focus ul, #regularMenu .hasDrop .header-cart-item-options button.active-focus ul, .header-cart-item-options #regularMenu .hasDrop button.active-focus ul {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      visibility: visible;
      opacity: 1; }

@media screen and (max-width: 1120px) {
  #burgerMenu {
    width: 250px; } }
@media screen and (max-width: 736px) {
  header .grid {
    height: 79px;
    line-height: 79px;
    margin-top: 0; }
  header .leftMenu a:not(.burgerNav), header .leftMenu #instafeed .instaItem-link span:not(.burgerNav), #instafeed .instaItem-link header .leftMenu span:not(.burgerNav), header .leftMenu .header-cart-item-options button:not(.burgerNav), .header-cart-item-options header .leftMenu button:not(.burgerNav) {
    display: none; }
  header .leftMenu a.burgerNav, header .leftMenu #instafeed .instaItem-link span.burgerNav, #instafeed .instaItem-link header .leftMenu span.burgerNav, header .leftMenu .header-cart-item-options button.burgerNav, .header-cart-item-options header .leftMenu button.burgerNav {
    display: inline-block !important; }
  header .logo {
    font-size: 2.8rem; }
    header .logo img {
      max-height: 60px; }
  header .rightMenu a.header-account, header .rightMenu #instafeed .instaItem-link span.header-account, #instafeed .instaItem-link header .rightMenu span.header-account, header .rightMenu .header-cart-item-options button.header-account, .header-cart-item-options header .rightMenu button.header-account {
    display: none; }
  header #regularMenu {
    display: none; }
  header #burgerMenu {
    display: block; }

  .ctop {
    margin-top: 80px; }

  .rtop {
    margin-top: 0px; }

  li.mobAccount {
    display: inherit; } }
@media screen and (max-width: 568px) {
  header .grid {
    padding: 0 10px; }
  header .logo {
    width: 50%;
    font-size: 2.2rem; }
  header .leftMenu {
    width: 25%; }
    header .leftMenu a, header .leftMenu #instafeed .instaItem-link span, #instafeed .instaItem-link header .leftMenu span, header .leftMenu .header-cart-item-options button, .header-cart-item-options header .leftMenu button {
      margin: 0; }
  header .rightMenu {
    width: 25%; }
    header .rightMenu > div {
      padding: 0;
      margin: 0; }

  .strapLine {
    display: none; }

  #burgerMenu {
    margin-left: 6px; } }
@media screen and (max-width: 460px) {
  header .logo {
    font-size: 2rem; } }
/*============================================================================
  #hero slider
==============================================================================*/
.slick-slider .slick-list, .slick-track, .slick-slide, .slick-slide img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: none;
  -o-transform: translate3d(0, 0, 0);
  transform: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 99;
  width: 100%;
  text-align: center; }
  .slick-dots li {
    display: inline-block;
    margin: 0 10px; }
    .slick-dots li button {
      -webkit-display: none;
      outline: none;
      border: 1px solid #fff;
      background: transparent;
      width: 20px;
      height: 20px;
      display: block;
      font-size: 0rem; }
    .slick-dots li.slick-active button {
      background: #fff; }

.fullScreenSlider {
  position: relative;
  height: 100vh;
  text-align: center; }
  .fullScreenSlider svg * {
    opacity: 0.9; }
  .fullScreenSlider a:hover, .fullScreenSlider #instafeed .instaItem-link span:hover, #instafeed .instaItem-link .fullScreenSlider span:hover, .fullScreenSlider .header-cart-item-options button:hover, .header-cart-item-options .fullScreenSlider button:hover {
    color: inherit; }
  .fullScreenSlider ul {
    width: 100%; }
    .fullScreenSlider ul li {
      overflow: hidden;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: none;
      backface-visibility: none;
      height: 100vh;
      width: 100%;
      position: relative;
      padding: 0px; }
      .fullScreenSlider ul li .bgImage {
        width: 100%;
        height: 100%;
        position: relative; }
        .fullScreenSlider ul li .bgImage .zoomProxy {
          height: 100%;
          width: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background-size: cover;
          background-position: center;
          -webkit-animation-duration: 30s;
          animation-duration: 30s;
          -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          -webkit-animation-name: pan;
          animation-name: pan;
          animation-direction: alternate;
          -moz-animation-direction: alternate;
          -webkit-animation-direction: alternate;
          -o-animation-direction: alternate;
          -ms-transform-origin: center;
          transform-origin: center;
          -webkit-transform-origin: center;
          -o-transform-origin: center; }
      .fullScreenSlider ul li .heroOverlay {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: none;
        backface-visibility: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 60px; }
        @media screen and (max-width: 736px) {
          .fullScreenSlider ul li .heroOverlay {
            padding-top: 60px; } }
        .fullScreenSlider ul li .heroOverlay .heroOverlayLink {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0; }
        .fullScreenSlider ul li .heroOverlay h2 {
          font-size: 4.6rem;
          line-height: 6.4rem;
          font-weight: 700;
          text-decoration: none;
          position: relative;
          z-index: 0;
          text-align: center;
          width: 100%; }
          @media screen and (max-width: 736px) {
            .fullScreenSlider ul li .heroOverlay h2 {
              font-size: 2.8rem;
              line-height: 1.25; } }
        .fullScreenSlider ul li .heroOverlay h2 {
          margin-bottom: 0; }
          .fullScreenSlider ul li .heroOverlay h2 + h3 {
            margin-top: 0.75em; }
        .fullScreenSlider ul li .heroOverlay h3 {
          font-family: "Georgia", "Times New Roman", serif;
          margin-bottom: 0;
          font-size: 1.3em;
          font-weight: 400;
          color: white; }
          @media screen and (max-width: 736px) {
            .fullScreenSlider ul li .heroOverlay h3 {
              font-size: 1.2em; } }
        .fullScreenSlider ul li .heroOverlay p {
          margin: 0; }

.fullScreenSlider .inner.flexItem.paraTwo {
  width: 100%; }

.slideshowPlaceholderText {
  border-top: 40px solid;
  border-radius: 3px;
  display: block;
  margin: 0 auto; }
  .slideshowPlaceholderText.length-1 {
    width: 40%; }
  .slideshowPlaceholderText.length-2 {
    width: 50%; }
  .slideshowPlaceholderText.length-3 {
    width: 30%; }

span.control {
  position: absolute;
  top: 50%;
  margin: -25px 0 0 0;
  width: 53px;
  height: 53px;
  z-index: 100;
  background-color: white;
  border-radius: 53px;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.29); }
  span.control svg {
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 3px);
    width: 8px;
    height: 16px;
    overflow: visible; }
    span.control svg,
    span.control svg * {
      fill: #b4b4b4;
      stroke: #b4b4b4; }
  span.control.prev {
    left: 15px; }
    span.control.prev svg {
      left: calc(50% - 5px); }
  span.control.next {
    right: 15px; }

.fullScreenSlider-controls {
  position: absolute;
  bottom: 40px;
  height: 30px;
  font-size: 0; }
  @media screen and (max-width: 568px) {
    .fullScreenSlider-controls {
      bottom: 30px; } }
  .fullScreenSlider-controls span.control {
    position: static;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 0 0 10px;
    background-color: transparent;
    box-shadow: none; }
    .fullScreenSlider-controls span.control svg {
      position: static;
      width: 100%;
      height: 100%; }
      .fullScreenSlider-controls span.control svg * {
        fill: transparent;
        opacity: 1; }

/*============================================================================
  #Index - About
==============================================================================*/
.homeAboutSection .grid {
  text-align: center;
  padding: 80px; }
.homeAboutSection h1 {
  color: #85cfc6;
  font-size: 4.6rem;
  padding: 0 0 40px;
  margin: 0; }
.homeAboutSection p {
  font-family: "Georgia", "Times New Roman", serif;
  max-width: 780px;
  margin: 0 auto; }

/*============================================================================
  #Index - asymetrical
==============================================================================*/
.asymSection svg {
  position: absolute;
  top: 50%;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
.asymSection .grid {
  padding: 80px 40px; }
.asymSection .outerWrap {
  position: relative;
  padding: 0; }
  .asymSection .outerWrap .innerWrap {
    position: relative;
    padding: 0 0 0 20%; }
    .asymSection .outerWrap .innerWrap .imgWrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      display: block;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-color: #85cfc6; }
      .asymSection .outerWrap .innerWrap .imgWrap:before {
        content: "";
        display: block;
        padding-top: 100%; }
  .asymSection .outerWrap .sectionTitle {
    color: #85cfc6;
    position: absolute;
    height: 100%; }
    .asymSection .outerWrap .sectionTitle p {
      max-width: 400px;
      line-height: 5.5rem;
      margin: 0; }
  .asymSection .outerWrap .sectionCopy div {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    padding: 0;
    font-size: 1.6rem; }
    .asymSection .outerWrap .sectionCopy div > *:first-child {
      margin-top: 0; }
    .asymSection .outerWrap .sectionCopy div > *:last-child {
      margin-bottom: 0; }

.asymPlaceholderTextBlock {
  display: inline-block;
  width: 330px;
  height: 60px;
  background: #ddd;
  border-radius: 2px; }

.asymSection.layoutOne .outerWrap {
  margin-left: auto; }
  .asymSection.layoutOne .outerWrap .imgWrap:before {
    padding-top: 67%; }
  .asymSection.layoutOne .outerWrap .sectionTitle {
    top: 0;
    left: 0%;
    height: 100%; }
  .asymSection.layoutOne .outerWrap .sectionCopy {
    padding: 40px 0 0px 20%; }
    .asymSection.layoutOne .outerWrap .sectionCopy div {
      text-align: left; }

.asymSection.layoutTwo .outerWrap .imgWrap:before {
  padding-top: 124%; }
.asymSection.layoutTwo .outerWrap .sectionTitle {
  top: 25%;
  left: 0%;
  height: 100%; }
.asymSection.layoutTwo .outerWrap .sectionCopy {
  padding: 40px; }
  .asymSection.layoutTwo .outerWrap .sectionCopy div {
    text-align: left; }

.asymSection.layoutThree .outerWrap .innerWrap {
  padding: 0 33.33% 0 0%;
  width: 100%; }
.asymSection.layoutThree .outerWrap .imgWrap:before {
  padding-top: 67%; }
.asymSection.layoutThree .outerWrap .sectionTitle {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 40px; }
  .asymSection.layoutThree .outerWrap .sectionTitle p {
    position: absolute;
    right: 0;
    bottom: 28%;
    left: 60%; }
.asymSection.layoutThree .outerWrap .sectionCopy {
  width: 100%;
  padding: 40px 0 0 20%;
  text-align: left; }
  .asymSection.layoutThree .outerWrap .sectionCopy div {
    padding: 0;
    float: right; }

@media screen and (max-width: 1280px) {
  .asymSection .grid {
    padding: 80px 40px; } }
@media screen and (max-width: 736px) {
  .asymSection .outerWrap .sectionTitle {
    position: relative; }
    .asymSection .outerWrap .sectionTitle p {
      -webkit-transform: translateY(0) !important;
      transform: translateY(0) !important; }
  .asymSection .outerWrap .innerWrap {
    padding: 0; }
  .asymSection .grid {
    padding-top: 40px;
    padding-bottom: 40px; }
  .asymSection.layoutOne img, .asymSection.layoutTwo img, .asymSection.layoutThree img {
    width: 100%; }
  .asymSection.layoutOne .outerWrap .sectionTitle, .asymSection.layoutTwo .outerWrap .sectionTitle, .asymSection.layoutThree .outerWrap .sectionTitle {
    top: auto;
    left: auto;
    bottom: auto;
    margin: 0;
    padding: 0; }
    .asymSection.layoutOne .outerWrap .sectionTitle p, .asymSection.layoutTwo .outerWrap .sectionTitle p, .asymSection.layoutThree .outerWrap .sectionTitle p {
      width: 100%;
      margin: 20px 0;
      max-width: none;
      position: relative;
      bottom: auto;
      left: auto; }
  .asymSection.layoutOne .outerWrap .sectionCopy, .asymSection.layoutTwo .outerWrap .sectionCopy, .asymSection.layoutThree .outerWrap .sectionCopy {
    padding: 0; }
    .asymSection.layoutOne .outerWrap .sectionCopy div, .asymSection.layoutTwo .outerWrap .sectionCopy div, .asymSection.layoutThree .outerWrap .sectionCopy div {
      padding: 0; }
  .asymSection.layoutOne .outerWrap .innerWrap, .asymSection.layoutTwo .outerWrap .innerWrap, .asymSection.layoutThree .outerWrap .innerWrap {
    padding: 0; } }
/*============================================================================
#Index / full page sections
============================================================================*/
.fullPageSectionsWrap.atBottom .fullPageSection .bgImage.screenLock {
  position: absolute;
  top: auto !important;
  left: 0;
  bottom: 0; }

.fullPageSection {
  width: 100%;
  height: 100vh;
  position: relative;
  font-size: 0; }
  .fullPageSectionsWrap:not(.no-top-border) .fullPageSection:first-child .content {
    border-top: 1px solid #eeeeee; }
  .fullPageSectionsWrap:not(.no-bottom-border) .fullPageSection:last-child .content {
    border-bottom: 1px solid #eeeeee; }
  @media screen and (min-width: 737px) {
    .fullPageSectionsWrap .fullPageSection.align-image-full-left:last-child .content, .fullPageSectionsWrap .fullPageSection.align-image-full-right:last-child .content {
      border-bottom: 0; } }
  .fullPageSection .bgImage img {
    display: block; }
    @media screen and (min-width: 737px) {
      .fullPageSection .bgImage img {
        display: none; } }
  .fullPageSection.align-image-left .bgImage,
  .fullPageSection.align-image-left .content, .fullPageSection.align-image-right .bgImage,
  .fullPageSection.align-image-right .content {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    height: 100%; }
    @media screen and (min-width: 737px) {
      .fullPageSection.align-image-left .bgImage,
      .fullPageSection.align-image-left .content, .fullPageSection.align-image-right .bgImage,
      .fullPageSection.align-image-right .content {
        width: 50%; } }
  .fullPageSection.align-image-left .bgImage, .fullPageSection.align-image-right .bgImage {
    background-size: cover; }
  @media screen and (min-width: 737px) {
    .fullPageSection.align-image-left.fixed-image .bgImage, .fullPageSection.align-image-right.fixed-image .bgImage {
      position: fixed; } }
  @media screen and (min-width: 737px) {
    .fullPageSection.align-image-left .bgImage {
      left: 0; }
    .fullPageSection.align-image-left.fixed-image .content {
      left: 50%; }
    .fullPageSection.align-image-right .bgImage {
      left: 0; }
    .fullPageSection.align-image-right .content {
      float: left; }
    .fullPageSection.align-image-right.fixed-image .bgImage {
      left: 50%; }
    .fullPageSection.align-image-full-left .bgImage, .fullPageSection.align-image-full-right .bgImage {
      height: 100%;
      background-attachment: fixed; } }
  .fullPageSection .linkOverlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    @media screen and (max-width: 736px) {
      .fullPageSection .linkOverlay {
        display: none; } }
  .fullPageSection .content {
    z-index: 1;
    padding: 80px;
    text-align: left; }
    .fullPageSection .content .inner {
      position: absolute;
      top: 50%;
      left: 80px;
      width: calc(100% - 160px);
      display: block;
      -ms-transform: translate3d(0%, -50%, 0);
      -webkit-transform: translate3d(0%, -50%, 0);
      transform: translate3d(0%, -50%, 0);
      -ms-transform: translate(0%, -50%);
      -webkit-transform: translate(0%, -50%);
      transform: translate(0%, -50%); }
    .fullPageSection .content .genHeadingXL {
      line-height: 5.5rem;
      margin-bottom: 25px; }
      @media screen and (min-width: 737px) {
        .fullPageSection .content .genHeadingXL {
          max-width: 410px; } }
    .fullPageSection .content p {
      font-family: "Georgia", "Times New Roman", serif;
      margin: 0;
      padding: 0;
      font-size: 1.6rem; }
      @media screen and (min-width: 737px) {
        .fullPageSection .content p {
          max-width: 410px; } }
  @media screen and (min-width: 737px) {
    .fullPageSection.align-image-full-right .content .inner {
      text-align: right; } }
  .fullPageSection.align-image-full-right .content .inner .genHeadingXL,
  .fullPageSection.align-image-full-right .content .inner p {
    margin-left: auto; }
  @media screen and (min-width: 737px) {
    .fullPageSection.align-image-full-left .content, .fullPageSection.align-image-full-right .content {
      background-color: transparent !important; } }
  .fullPageSection .button, .fullPageSection .shopify-challenge__button {
    margin-top: 25px; }
    .fullPageSection .button.alternate, .fullPageSection .alternate.shopify-challenge__button {
      background-color: transparent;
      border: 1px solid; }
      .fullPageSection .button.alternate:hover, .fullPageSection .alternate.shopify-challenge__button:hover {
        color: white; }

.fullPagePlaceholderTitleBlock,
.fullPagePlaceholderParagraphBlock {
  display: block;
  background: #ddd;
  border-radius: 2px;
  width: 300px; }
  @media only screen and (max-width: 736px) {
    .fullPagePlaceholderTitleBlock,
    .fullPagePlaceholderParagraphBlock {
      width: 100%; } }

.fullPagePlaceholderTitleBlock {
  height: 60px; }

.fullPagePlaceholderParagraphBlock {
  position: relative;
  height: 80px; }
  .fullPagePlaceholderParagraphBlock:after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    display: block;
    width: 220px;
    height: 15px;
    background-color: #ddd;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px; }

@media screen and (max-width: 1120px) {
  .fullPageSection .content {
    padding: 40px; }
    .fullPageSection .content .inner {
      left: 40px;
      width: calc(100% - 80px); } }
@media screen and (max-width: 736px) {
  .fullPageSectionsWrap.atBottom .fullPageSection .bgImage.screenLock,
  .fullPageSectionsWrap .fullPageSection .bgImage.screenLock {
    height: 100vh;
    min-height: 563px;
    position: relative;
    top: auto;
    left: auto; }
    .fullPageSectionsWrap.atBottom .fullPageSection .bgImage.screenLock.fixedPosition,
    .fullPageSectionsWrap .fullPageSection .bgImage.screenLock.fixedPosition {
      width: 100%; }

  .fullPageSection {
    height: auto;
    min-height: 0; }
    .fullPageSection .bgImage {
      height: 100vh;
      min-height: 563px;
      position: relative;
      top: auto;
      left: auto; }
      .fullPageSection .bgImage:not(.fixedPosition) {
        background-attachment: local; }
      .fullPageSection .bgImage.fixedPosition {
        width: 100%;
        min-height: 0;
        height: auto !important; }
        .fullPageSection .bgImage.fixedPosition.svg-placeholder {
          height: 50vw !important; }
        .fullPageSection .bgImage.fixedPosition.svg-placeholder + .content {
          padding-bottom: 55px; }
    .fullPageSection .content {
      background: #fff;
      padding: 80px 20px;
      height: auto;
      position: relative;
      top: auto;
      left: auto;
      width: 100%; }
      .fullPageSection .content .inner {
        width: 100%;
        position: relative;
        top: auto;
        left: auto;
        -ms-transform: translate3d(0%, 0%, 0);
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
        -ms-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%); } }
    @media only screen and (max-width: 736px) and (max-width: 736px) {
      .fullPageSection .content {
        padding-top: 40px;
        padding-bottom: 40px; } }
@media screen and (max-width: 568px) {
  .asymSection .outerWrap .sectionTitle p, .fullPageSection .content .genHeadingXL {
    line-height: 3.3rem; } }
/*============================================================================
#Index / Featured grid
============================================================================*/
.featured-grid-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.featured-grid-item {
  margin-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px; }
  .featured-grid-item.no-padding-left {
    padding-left: 0; }
  .featured-grid-item.no-padding-right {
    padding-right: 0; }
  @media screen and (max-width: 736px) {
    .featured-grid-item.oneQuarter, #instafeed.flexItem-oneQuarter .featured-grid-item.flexItem, .featured-grid-item.threeQuarter, .featured-grid-item.pseudo-half, .featured-grid-item.half, #instafeed.flexItem-half .featured-grid-item.flexItem, .featured-grid-item.fullSpan {
      width: 100%;
      padding-right: 0;
      padding-left: 0; }
    .featured-grid-item.has-text {
      margin-bottom: 0; } }
  @media screen and (min-width: 737px) {
    .featured-grid-item.has-link:hover figcaption {
      background-color: white; } }
  .featured-grid-item .link-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .featured-grid-item figure {
    position: relative;
    margin: 0; }
  .featured-grid-item .featured-grid-item-image {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease; }
    .featured-grid-item .featured-grid-item-image::before {
      content: "";
      display: block;
      padding-top: 33.333vw; }
    .featured-grid-item .featured-grid-item-image.placeholder {
      position: relative;
      background-color: #DADADA; }
    .featured-grid-item .featured-grid-item-image .svg-placeholder {
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      transform: translateY(-50%); }
      .featured-grid-item .featured-grid-item-image .svg-placeholder svg {
        display: block;
        max-height: 400px; }
  .featured-grid-item.height-double .featured-grid-item-image::before {
    padding-top: calc(66.666vw + 10px * 2); }
    @media screen and (max-width: 736px) {
      .featured-grid-item.height-double .featured-grid-item-image::before {
        padding-top: 133.333vw; } }
  @media screen and (max-width: 736px) {
    .featured-grid-item.oneQuarter .featured-grid-item-image::before, #instafeed.flexItem-oneQuarter .featured-grid-item.flexItem .featured-grid-item-image::before {
      padding-top: 133.333vw; }
    .featured-grid-item.pseudo-half .featured-grid-item-image::before {
      padding-top: 66.666vw; } }
  .featured-grid-item img {
    display: none; }
  .featured-grid-item figcaption {
    font-family: "Georgia", "Times New Roman", serif;
    position: absolute;
    bottom: 20px;
    max-width: 60%;
    padding: 22px 30px;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: background-color 200ms ease;
    -moz-transition: background-color 200ms ease;
    -ms-transition: background-color 200ms ease;
    -o-transition: background-color 200ms ease;
    transition: background-color 200ms ease; }
    .featured-grid-item figcaption > *:first-child,
    .featured-grid-item figcaption .link-overlay + * {
      margin-top: 0; }
    .featured-grid-item figcaption > *:last-child {
      margin-bottom: 0; }
    .featured-grid-item figcaption.align-left {
      left: 20px;
      margin-right: 20px; }
    .featured-grid-item figcaption.align-right {
      right: 20px;
      margin-left: 20px; }
    .featured-grid-item figcaption.align-center {
      left: 50%;
      max-width: calc(100% - 40px);
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    @media screen and (max-width: 736px) {
      .featured-grid-item figcaption.align-left, .featured-grid-item figcaption.align-right, .featured-grid-item figcaption.align-center {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding-right: 20px;
        padding-left: 20px;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0); } }
  .featured-grid-item.fullSpan figcaption, .featured-grid-item.threeQuarter figcaption {
    max-width: 522px; }
    @media screen and (max-width: 736px) {
      .featured-grid-item.fullSpan figcaption, .featured-grid-item.threeQuarter figcaption {
        max-width: 100%;
        width: 100%; } }
  .featured-grid-item.oneQuarter figcaption, #instafeed.flexItem-oneQuarter .featured-grid-item.flexItem figcaption {
    width: 100%; }

/*============================================================================
  #Index - Twitterfeed
==============================================================================*/
.twitterFeed {
  background: #f3faf9;
  color: #85cfc6;
  padding: 160px 40px;
  text-align: center; }
  .twitterFeed p {
    max-width: 633px;
    width: 100%;
    margin: 0 auto 0px;
    font-size: 2.6rem;
    line-height: 3.7rem;
    font-weight: 700; }
    .twitterFeed p img {
      max-height: 25px;
      width: auto; }
    .twitterFeed p a, .twitterFeed p #instafeed .instaItem-link span, #instafeed .instaItem-link .twitterFeed p span, .twitterFeed p .header-cart-item-options button, .header-cart-item-options .twitterFeed p button {
      text-decoration: none; }
      .twitterFeed p a:hover, .twitterFeed p #instafeed .instaItem-link span:hover, #instafeed .instaItem-link .twitterFeed p span:hover, .twitterFeed p .header-cart-item-options button:hover, .header-cart-item-options .twitterFeed p button:hover {
        text-decoration: underline; }
  .twitterFeed a, .twitterFeed #instafeed .instaItem-link span, #instafeed .instaItem-link .twitterFeed span, .twitterFeed .header-cart-item-options button, .header-cart-item-options .twitterFeed button {
    text-decoration: underline; }
  .twitterFeed .user {
    margin: 0 auto 20px; }
    .twitterFeed .user img, .twitterFeed .user span:not(:last-child) {
      display: none; }

.twitterPlaceholderUsernameBlock,
.twitterPlaceholderTextBlock {
  display: block;
  border-radius: 2px;
  border-bottom: 30px solid;
  margin: 0 auto; }

.twitterPlaceholderUsernameBlock {
  width: 100px;
  border-bottom: 15px solid;
  margin-bottom: 12px;
  opacity: 0.4; }

.twitterPlaceholderTextBlock {
  width: 330px;
  border-bottom: 30px solid; }

/*============================================================================
  #Index - instagram feed
==============================================================================*/
.instagram-feed .sectionWrap {
  padding-bottom: 30px; }

#instafeed .flexItem {
  margin-bottom: 50px;
  text-align: left; }
  @media screen and (max-width: 736px) {
    #instafeed .flexItem {
      margin-top: 10px;
      margin-bottom: 30px; } }
  @media screen and (max-width: 568px) {
    #instafeed .flexItem:last-child {
      margin-bottom: 10px; } }
#instafeed a, #instafeed .instaItem-link span, #instafeed .header-cart-item-options button, .header-cart-item-options #instafeed button {
  position: relative;
  display: block; }
  #instafeed a:hover .instaItem-overlay, #instafeed .instaItem-link span:hover .instaItem-overlay, #instafeed .header-cart-item-options button:hover .instaItem-overlay, .header-cart-item-options #instafeed button:hover .instaItem-overlay {
    visibility: visible;
    opacity: 1; }
  #instafeed a img, #instafeed .instaItem-link span img, #instafeed .header-cart-item-options button img, .header-cart-item-options #instafeed button img {
    display: block;
    width: 100%; }
#instafeed .instaItem-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(133, 207, 198, 0.7);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease; }
  @media screen and (max-width: 736px) {
    #instafeed .instaItem-overlay {
      display: none; } }
  #instafeed .instaItem-overlay svg {
    position: absolute;
    top: calc(50% - 22px);
    left: calc(50% - 22px);
    width: 44px;
    height: 44px; }
    #instafeed .instaItem-overlay svg,
    #instafeed .instaItem-overlay svg * {
      fill: white;
      stroke: white; }
#instafeed time {
  font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
  display: block;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #bbbbbb;
  text-transform: uppercase;
  letter-spacing: 1px; }
#instafeed .instaItem-description {
  font-family: "Georgia", "Times New Roman", serif;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 2.6rem; }
#instafeed .instaItem-link {
  font-family: "Georgia", "Times New Roman", serif; }
  #instafeed .instaItem-link span {
    display: inline-block;
    vertical-align: middle;
    color: #85cfc6;
    text-decoration: underline; }
  #instafeed .instaItem-link svg {
    position: relative;
    top: 1px;
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 6px; }

.emptyInstagramTile span {
  display: block;
  background-color: #eee;
  width: 100%;
  padding-top: 100%;
  border-radius: 2px; }

/*============================================================================
  #index -blog
==============================================================================*/
.blogListing {
  margin: 0;
  list-style: none; }

.blogThumb {
  padding: 10px; }
  .blogThumb a, .blogThumb #instafeed .instaItem-link span, #instafeed .instaItem-link .blogThumb span, .blogThumb .header-cart-item-options button, .header-cart-item-options .blogThumb button {
    display: block; }
    .blogThumb a:hover, .blogThumb #instafeed .instaItem-link span:hover, #instafeed .instaItem-link .blogThumb span:hover, .blogThumb .header-cart-item-options button:hover, .header-cart-item-options .blogThumb button:hover {
      color: inherit; }
  .blogThumb .imgWrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top; }
    .blogThumb .imgWrap:before {
      content: "";
      display: block;
      padding-top: 66.66%; }
    .blogThumb .imgWrap img {
      position: absolute;
      top: 0; }
  .blogThumb .content {
    text-align: left; }
    .blogThumb .content span:first-child {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1.1rem;
      color: #bbbbbb;
      margin: 20px 0 5px 0;
      display: block;
      font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif; }
    .blogThumb .content p:nth-child(2) {
      color: #85cfc6;
      font-size: 2.2rem;
      font-weight: 700;
      text-decoration: none;
      margin: 0 0 20px; }
    .blogThumb .content p:last-child {
      line-height: 2.6rem;
      margin: 0px 0 0 0;
      font-family: "Georgia", "Times New Roman", serif; }
  .blogThumb .readmore {
    font-family: "Georgia", "Times New Roman", serif;
    text-align: left;
    color: #85cfc6;
    text-decoration: underline; }
  .blogThumb img {
    width: 100%; }

.articleWrap {
  padding: 40px; }
  .articleWrap .sectionHeader {
    border-bottom: 1px solid #eeeeee;
    margin: 0 0 20px;
    padding: 0 0 20px; }
    .articleWrap .sectionHeader h1 {
      color: #85cfc6;
      font-size: 4.6rem;
      margin: 0 0 5px; }
    .articleWrap .sectionHeader p {
      margin: 0; }

@media screen and (max-width: 736px) {
  .blogThumb {
    padding: 10px; } }
/*============================================================================
  #Index - Text
==============================================================================*/
.indexText {
  padding-right: 40px;
  padding-left: 40px; }
  .indexText .button, .indexText .shopify-challenge__button {
    min-width: 230px; }

.indexText-text {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 2.4rem;
  line-height: 1.6;
  font-family: "Georgia", "Times New Roman", serif; }
  @media screen and (max-width: 736px) {
    .indexText-text {
      font-size: 1.8rem; } }
  .indexText-text > *:first-child {
    margin-top: 0; }
  .indexText-text > *:last-child {
    margin-bottom: 15px; }
  .indexText-text > p {
    line-height: inherit; }
  .indexText-text a, .indexText-text #instafeed .instaItem-link span, #instafeed .instaItem-link .indexText-text span, .indexText-text .header-cart-item-options button, .header-cart-item-options .indexText-text button {
    color: #85cfc6;
    border-bottom: 1px solid transparent; }
    .indexText-text a:hover, .indexText-text #instafeed .instaItem-link span:hover, #instafeed .instaItem-link .indexText-text span:hover, .indexText-text .header-cart-item-options button:hover, .header-cart-item-options .indexText-text button:hover, .indexText-text a:focus, .indexText-text #instafeed .instaItem-link span:focus, #instafeed .instaItem-link .indexText-text span:focus, .indexText-text .header-cart-item-options button:focus, .header-cart-item-options .indexText-text button:focus {
      border-bottom: 1px solid #85cfc6; }

/*============================================================================
  #collection
==============================================================================*/
.sideBar {
  padding: 10px 20px 10px 10px;
  text-align: left; }
  .sideBar label {
    font-size: 1.2rem;
    color: #8d8d8d;
    text-transform: uppercase;
    font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
    letter-spacing: 1px;
    margin: 0; }
  .sideBar ul {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.4rem;
    margin: 20px 0 20px; }
    .sideBar ul:last-child {
      margin: 20px 0 0 0; }
    .sideBar ul li {
      display: list-item; }
      .sideBar ul li:not(:last-child) {
        margin: 0 0 5px; }
      .sideBar ul li.active a, .sideBar ul li.active #instafeed .instaItem-link span, #instafeed .instaItem-link .sideBar ul li.active span, .sideBar ul li.active .header-cart-item-options button, .header-cart-item-options .sideBar ul li.active button {
        color: #85cfc6;
        font-weight: 700; }

.mobileFilter {
  display: none;
  width: 100%;
  padding: 0 10px;
  text-align: center; }
  .mobileFilter label {
    display: block; }
  .mobileFilter select {
    font-family: "Playfair Display", serif;
    border: 1px solid #DADADA;
    font-size: 1.6rem;
    padding: 5px 10px;
    width: 100%;
    outline: none;
    margin: 0 0 20px; }
    .mobileFilter select:not(textarea) {
      height: 50px;
      padding: 5px 10px; }
    .mobileFilter select::-webkit-input-placeholder {
      color: #DADADA; }
    .mobileFilter select:-moz-placeholder {
      color: #DADADA; }
    .mobileFilter select::-moz-placeholder {
      color: #DADADA; }
    .mobileFilter select:-ms-input-placeholder {
      color: #DADADA; }
    .mobileFilter select:focus {
      border-color: #85cfc6; }

.pagination {
  color: #85cfc6;
  font-family: "Georgia", "Times New Roman", serif;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  text-align: left; }
  .pagination .leftSide a:not(:last-child), .pagination .leftSide #instafeed .instaItem-link span:not(:last-child), #instafeed .instaItem-link .pagination .leftSide span:not(:last-child), .pagination .leftSide .header-cart-item-options button:not(:last-child), .header-cart-item-options .pagination .leftSide button:not(:last-child) {
    padding: 0 10px 0 0; }
  .pagination .leftSide a:not(.active), .pagination .leftSide #instafeed .instaItem-link span:not(.active), #instafeed .instaItem-link .pagination .leftSide span:not(.active), .pagination .leftSide .header-cart-item-options button:not(.active), .header-cart-item-options .pagination .leftSide button:not(.active) {
    text-decoration: underline; }
  .pagination .rightSide {
    text-align: right; }
  .pagination a, .pagination #instafeed .instaItem-link span, #instafeed .instaItem-link .pagination span, .pagination .header-cart-item-options button, .header-cart-item-options .pagination button {
    text-decoration: underline; }
    .pagination a.active, .pagination #instafeed .instaItem-link span.active, #instafeed .instaItem-link .pagination span.active, .pagination .header-cart-item-options button.active, .header-cart-item-options .pagination button.active {
      text-decoration: none; }
    .pagination a:last-child, .pagination #instafeed .instaItem-link span:last-child, #instafeed .instaItem-link .pagination span:last-child, .pagination .header-cart-item-options button:last-child, .header-cart-item-options .pagination button:last-child {
      padding: 0; }

.sectionWrap.hasBlockTitle#featuredProducts {
  padding-top: 70px; }

.productListing {
  margin: 0;
  list-style: none;
  padding-left: 30px;
  padding-right: 30px; }
  @media screen and (max-width: 568px) {
    .productListing {
      padding-left: 10px;
      padding-right: 10px; } }
  .productListing.flexItem {
    padding-left: 0px;
    padding-right: 0px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }

.prodThumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px; }
  .prodThumb a, .prodThumb #instafeed .instaItem-link span, #instafeed .instaItem-link .prodThumb span, .prodThumb .header-cart-item-options button, .header-cart-item-options .prodThumb button {
    display: block;
    position: relative; }
  .prodThumb .imgWrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #f6f6f6; }
    .prodThumb .imgWrap img {
      max-height: 100%;
      max-width: 100%;
      width: 100%;
      -webkit-transition: all 200ms linear;
      -moz-transition: all 200ms linear;
      -ms-transition: all 200ms linear;
      -o-transition: all 200ms linear;
      transition: all 200ms linear;
      -webkit-backface-visibility: none;
      backface-visibility: none;
      margin: 0 auto;
      backface-visibility: hidden; }
      .prodThumb .imgWrap img.second {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 50%;
        height: initial;
        width: auto;
        left: 50%;
        max-width: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0); }
  .prodThumb:hover .twoImg img {
    visibility: hidden;
    opacity: 0; }
    .prodThumb:hover .twoImg img.second {
      visibility: visible;
      opacity: 1; }
  .prodThumb .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #85cfc6;
    color: #fff;
    padding: 5px;
    font-family: "Georgia", "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    z-index: 10;
    -ms-transform: translate3d(0%, 0%, 0);
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0); }
  .prodThumb .title {
    color: #85cfc6;
    margin-top: 15px;
    text-align: left; }
    .prodThumb .title span {
      font-weight: 700;
      text-decoration: none; }
      .prodThumb .title span:last-child {
        font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
        color: #8d8d8d;
        margin: 0 0 0 10px;
        text-decoration: none;
        font-weight: normal; }
  .prodThumb.oneQuarter .title span, #instafeed.flexItem-oneQuarter .prodThumb.flexItem .title span {
    width: 100%; }
    .prodThumb.oneQuarter .title span:last-child, #instafeed.flexItem-oneQuarter .prodThumb.flexItem .title span:last-child {
      margin: 5px 0 0 0; }

@media screen and (max-width: 736px) {
  .pagination {
    text-align: center;
    width: 100%; }
    .pagination .rightSide {
      padding: 10px 0 0 0;
      text-align: center; } }
@media screen and (max-width: 568px) {
  .sideBar {
    display: none !important; }

  .mobileFilter {
    display: block; }

  .collectionTitle {
    text-align: center; }

  .productListing {
    width: 100%; }

  .pagination hr {
    margin-bottom: 20px; } }
/*============================================================================
  #Parallax collection
==============================================================================*/
.parallaxListing {
  position: relative;
  padding: 0 20x 80px; }
  .parallaxListing li {
    background: transparent;
    -webkit-backface-visibility: none;
    backface-visibility: none;
    width: 100%;
    padding: 80px 0;
    text-align: center; }
    .parallaxListing li a, .parallaxListing li #instafeed .instaItem-link span, #instafeed .instaItem-link .parallaxListing li span, .parallaxListing li .header-cart-item-options button, .header-cart-item-options .parallaxListing li button {
      display: block;
      width: 100%;
      position: relative; }
    .parallaxListing li .imgWrap {
      padding: 0;
      position: relative;
      margin: 0 auto;
      z-index: 1;
      width: 50%; }
    .parallaxListing li p.genHeadingXL {
      margn: 0;
      line-height: 5.4rem;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      z-index: 99; }
    .parallaxListing li img {
      max-width: 100%; }
      .parallaxListing li img:not(.abImage) {
        position: relative;
        z-index: 1;
        -webkit-box-shadow: 0px 6px 25px -10px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 6px 25px -10px rgba(0, 0, 0, 0.75); }
    .parallaxListing li .abImage {
      position: absolute;
      z-index: 0; }
      .parallaxListing li .abImage.left {
        left: calc(0% - (50% - 20px)); }
      .parallaxListing li .abImage.right {
        right: calc(0% - (50% - 20px)); }
    .parallaxListing li:nth-child(odd) .abImage.left {
      bottom: 20%; }
    .parallaxListing li:nth-child(odd) .abImage.right {
      top: 20%; }
    .parallaxListing li:nth-child(even) .abImage.left {
      top: 20%; }
    .parallaxListing li:nth-child(even) .abImage.right {
      bottom: 20%; }
    .parallaxListing li:nth-child(4n-7) .abImage.left {
      margin: -70px -85px 0 0; }
    .parallaxListing li:nth-child(4n-7) .abImage.right {
      margin: 0 0 -80px -62px; }
    .parallaxListing li:nth-child(4n-6) .abImage.left {
      margin: -100px -85px 0 0; }
    .parallaxListing li:nth-child(4n-6) .abImage.right {
      margin: 0 0 -70px -12px; }
    .parallaxListing li:nth-child(4n-3) .abImage.left {
      margin: -10px -45px 0 0; }
    .parallaxListing li:nth-child(4n-3) .abImage.right {
      margin: 0 0 -20px -92px; }

/*============================================================================
  #featured-product-slider
==============================================================================*/
.featuredSliderWrap .grid {
  position: relative; }
.featuredSliderWrap span.control {
  color: #85cfc6;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
@media screen and (min-width: 737px) {
  .featuredSliderWrap.has-few-items.has-3-items span.control {
    display: none; } }
@media screen and (min-width: 569px) {
  .featuredSliderWrap.has-few-items.has-2-items span.control {
    display: none; } }
.featuredSliderWrap.has-few-items.has-1-items span.control {
  display: none; }

.accentCollection {
  position: relative; }
  .accentCollection:after {
    background: #85cfc6;
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    height: 30%;
    width: 100%; }
  .accentCollection .prodThumb .title span {
    color: #fff; }
    .accentCollection .prodThumb .title span:last-child {
      color: #fff; }

/*============================================================================
  #collectionGrid
==============================================================================*/
.collectionGrid {
  text-align: center; }
  .collectionGrid .genHeading {
    margin-bottom: 0px; }
  .collectionGrid ul li {
    padding-top: 10px;
    padding-bottom: 10px; }
    .collectionGrid ul li a, .collectionGrid ul li #instafeed .instaItem-link span, #instafeed .instaItem-link .collectionGrid ul li span, .collectionGrid ul li .header-cart-item-options button, .header-cart-item-options .collectionGrid ul li button {
      position: relative;
      width: 100%;
      overflow: hidden;
      display: block;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      .collectionGrid ul li a.placeholder, .collectionGrid ul li #instafeed .instaItem-link span.placeholder, #instafeed .instaItem-link .collectionGrid ul li span.placeholder, .collectionGrid ul li .header-cart-item-options button.placeholder, .header-cart-item-options .collectionGrid ul li button.placeholder {
        background-size: contain; }
      .collectionGrid ul li a:before, .collectionGrid ul li #instafeed .instaItem-link span:before, #instafeed .instaItem-link .collectionGrid ul li span:before, .collectionGrid ul li .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul li button:before {
        content: "";
        display: block;
        padding-top: 100%; }
    .collectionGrid ul li.half a:before, .collectionGrid ul #instafeed.flexItem-half li.flexItem a:before, #instafeed.flexItem-half .collectionGrid ul li.flexItem a:before, .collectionGrid ul li.half #instafeed .instaItem-link span:before, #instafeed .instaItem-link .collectionGrid ul li.half span:before, .collectionGrid ul #instafeed.flexItem-half li.flexItem .instaItem-link span:before, .collectionGrid ul #instafeed.flexItem-half .instaItem-link li.flexItem span:before, #instafeed.flexItem-half .collectionGrid ul li.flexItem .instaItem-link span:before, #instafeed.flexItem-half .instaItem-link .collectionGrid ul li.flexItem span:before, .collectionGrid ul li.half .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul li.half button:before, .collectionGrid ul #instafeed.flexItem-half li.flexItem .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul #instafeed.flexItem-half li.flexItem button:before, #instafeed.flexItem-half .collectionGrid ul li.flexItem .header-cart-item-options button:before, .header-cart-item-options #instafeed.flexItem-half .collectionGrid ul li.flexItem button:before {
      padding-top: 66.66%; }
    .collectionGrid ul li.fullSpan a:before, .collectionGrid ul li.fullSpan #instafeed .instaItem-link span:before, #instafeed .instaItem-link .collectionGrid ul li.fullSpan span:before, .collectionGrid ul li.fullSpan .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul li.fullSpan button:before {
      padding-top: 33.33%; }
    .collectionGrid ul li .content {
      top: 0;
      left: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 20px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease; }
      .collectionGrid ul li .content p {
        color: #fff;
        margin: 0;
        text-decoration: none;
        position: relative;
        z-index: 2; }

@media screen and (max-width: 736px) {
  .collectionGrid ul li.fullSpan, .collectionGrid ul li.half, .collectionGrid ul #instafeed.flexItem-half li.flexItem, #instafeed.flexItem-half .collectionGrid ul li.flexItem, .collectionGrid ul li.oneThird, .collectionGrid ul #instafeed.flexItem-oneThird li.flexItem, #instafeed.flexItem-oneThird .collectionGrid ul li.flexItem {
    width: 100%; }
    .collectionGrid ul li.fullSpan a:before, .collectionGrid ul li.fullSpan #instafeed .instaItem-link span:before, #instafeed .instaItem-link .collectionGrid ul li.fullSpan span:before, .collectionGrid ul li.fullSpan .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul li.fullSpan button:before, .collectionGrid ul li.half a:before, .collectionGrid ul #instafeed.flexItem-half li.flexItem a:before, #instafeed.flexItem-half .collectionGrid ul li.flexItem a:before, .collectionGrid ul li.half #instafeed .instaItem-link span:before, #instafeed .instaItem-link .collectionGrid ul li.half span:before, .collectionGrid ul #instafeed.flexItem-half li.flexItem .instaItem-link span:before, .collectionGrid ul #instafeed.flexItem-half .instaItem-link li.flexItem span:before, #instafeed.flexItem-half .collectionGrid ul li.flexItem .instaItem-link span:before, #instafeed.flexItem-half .instaItem-link .collectionGrid ul li.flexItem span:before, .collectionGrid ul li.half .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul li.half button:before, .collectionGrid ul #instafeed.flexItem-half li.flexItem .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul #instafeed.flexItem-half li.flexItem button:before, #instafeed.flexItem-half .collectionGrid ul li.flexItem .header-cart-item-options button:before, .header-cart-item-options #instafeed.flexItem-half .collectionGrid ul li.flexItem button:before, .collectionGrid ul li.oneThird a:before, .collectionGrid ul #instafeed.flexItem-oneThird li.flexItem a:before, #instafeed.flexItem-oneThird .collectionGrid ul li.flexItem a:before, .collectionGrid ul li.oneThird #instafeed .instaItem-link span:before, #instafeed .instaItem-link .collectionGrid ul li.oneThird span:before, .collectionGrid ul #instafeed.flexItem-oneThird li.flexItem .instaItem-link span:before, .collectionGrid ul #instafeed.flexItem-oneThird .instaItem-link li.flexItem span:before, #instafeed.flexItem-oneThird .collectionGrid ul li.flexItem .instaItem-link span:before, #instafeed.flexItem-oneThird .instaItem-link .collectionGrid ul li.flexItem span:before, .collectionGrid ul li.oneThird .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul li.oneThird button:before, .collectionGrid ul #instafeed.flexItem-oneThird li.flexItem .header-cart-item-options button:before, .header-cart-item-options .collectionGrid ul #instafeed.flexItem-oneThird li.flexItem button:before, #instafeed.flexItem-oneThird .collectionGrid ul li.flexItem .header-cart-item-options button:before, .header-cart-item-options #instafeed.flexItem-oneThird .collectionGrid ul li.flexItem button:before {
      padding-top: 100%; } }
/*============================================================================
  #search
==============================================================================*/
.searchResults {
  padding: 40px; }
  .searchResults ul {
    list-style: none; }

/*============================================================================
  #product
==============================================================================*/
#productTop {
  padding-bottom: 40px; }

.productInfo {
  text-align: left;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1; }
  .productInfo h1 {
    font-size: 2.8rem;
    color: #85cfc6;
    font-weight: 700;
    text-decoration: none;
    line-height: 3.5rem;
    margin: 0; }
  .productInfo p.price {
    font-size: 2.8rem;
    color: #85cfc6;
    margin: 5px 0 0 0; }
    .productInfo p.price #ComparePrice {
      margin-left: 5px;
      text-decoration: line-through;
      font-size: 70%;
      color: #a2a2a2; }
  .productInfo form {
    max-width: 280px;
    margin: 30px 0 20px; }
    .productInfo form .quantity-selector {
      width: 100%;
      font-size: 1.6rem; }
    .productInfo form .button, .productInfo form .shopify-challenge__button {
      width: 100%;
      margin: 0px auto 0; }
    .productInfo form .selector-wrapper {
      border-top: 1px solid #eeeeee;
      padding: 30px 0 0px; }

.accordian {
  margin: 20px 0 0 0; }
  .accordian .accordHeaderLinks {
    margin: 0 0 20px; }
    .accordian .accordHeaderLinks a, .accordian .accordHeaderLinks #instafeed .instaItem-link span, #instafeed .instaItem-link .accordian .accordHeaderLinks span, .accordian .accordHeaderLinks .header-cart-item-options button, .header-cart-item-options .accordian .accordHeaderLinks button {
      text-transform: uppercase;
      font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
      letter-spacing: 1px;
      font-size: 1.2rem;
      padding: 5px 0px;
      white-space: nowrap;
      color: #85cfc6; }
      .accordian .accordHeaderLinks a:not(:last-child), .accordian .accordHeaderLinks #instafeed .instaItem-link span:not(:last-child), #instafeed .instaItem-link .accordian .accordHeaderLinks span:not(:last-child), .accordian .accordHeaderLinks .header-cart-item-options button:not(:last-child), .header-cart-item-options .accordian .accordHeaderLinks button:not(:last-child) {
        margin: 0 20px 0 0; }
      .accordian .accordHeaderLinks a.active, .accordian .accordHeaderLinks #instafeed .instaItem-link span.active, #instafeed .instaItem-link .accordian .accordHeaderLinks span.active, .accordian .accordHeaderLinks .header-cart-item-options button.active, .header-cart-item-options .accordian .accordHeaderLinks button.active {
        font-weight: bold; }
  .accordian section {
    display: none; }
    .accordian section.active {
      display: block; }

.radio-wrapper {
  padding-bottom: 20px; }

.single-option-radio {
  border-bottom: none;
  padding: 0;
  margin: 0; }
  .single-option-radio .wrapper {
    position: relative; }
  .single-option-radio input {
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    display: none; }
  .single-option-radio label {
    display: inline-block;
    margin: 0 20px 5px 0;
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    width: auto;
    font-size: 1.4rem;
    color: #85cfc6;
    font-family: "Georgia", "Times New Roman", serif; }
    .single-option-radio label.disabled {
      text-decoration: line-through; }
  .single-option-radio input[type='radio']:checked + label {
    font-weight: 700; }

@keyframes load8 {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(360deg); } }

#AddToCart {
  position: relative;
  transition: color 0.2s ease; }
  #AddToCart.active {
    color: transparent; }
    #AddToCart.active .add-to-cart-loading {
      opacity: 1; }

.add-to-cart-loading,
.add-to-cart-loading::after {
  border-radius: 50%;
  width: 2em;
  height: 2em; }

.add-to-cart-loading {
  position: absolute;
  top: calc(50% - 1em);
  left: calc(50% - 1em);
  display: block;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.3em solid rgba(255, 255, 255, 0.2);
  border-right: 0.3em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.3em solid rgba(255, 255, 255, 0.2);
  border-left: 0.3em solid #ffffff;
  transform: translateZ(0);
  animation: load8 0.8s infinite linear;
  opacity: 0;
  transition: opacity 0.2s ease; }

.product-form-error {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 100%;
  padding: 10px;
  color: #414141;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  background-color: white;
  border: 1px solid #eeeeee;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased; }
  .product-form-error.animating {
    display: block;
    opacity: 0;
    transition: all 0.2s ease; }
  .product-form-error.visible {
    display: block;
    opacity: 1;
    transform: translateY(0); }

.productImages {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2; }

.productThumbs {
  padding-right: 0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2; }
  .productThumbs li {
    padding: 0 0 10px; }
    .productThumbs li:last-child {
      padding: 0; }
    .productThumbs li img {
      width: 100%;
      display: block; }
    .productThumbs li a, .productThumbs li #instafeed .instaItem-link span, #instafeed .instaItem-link .productThumbs li span, .productThumbs li .header-cart-item-options button, .header-cart-item-options .productThumbs li button {
      display: block; }

.relatedItems {
  color: #85cfc6;
  text-align: center; }
  .relatedItems h2 {
    margin: 0px auto 40px; }

@media screen and (max-width: 736px) {
  #productTop {
    padding: 0; }

  #productTop .grid {
    padding: 0; }

  .productInfo {
    text-align: center;
    padding: 40px 20px 0; }
    .productInfo form {
      max-width: none; }
    .productInfo .accordian .accordHeaderLinks a, .productInfo .accordian .accordHeaderLinks #instafeed .instaItem-link span, #instafeed .instaItem-link .productInfo .accordian .accordHeaderLinks span, .productInfo .accordian .accordHeaderLinks .header-cart-item-options button, .header-cart-item-options .productInfo .accordian .accordHeaderLinks button {
      margin: 0 auto 10px;
      display: block; }

  .productImages {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 0; }
    .productImages .featuredImage {
      width: 100%;
      padding: 0; }

  .productThumbs {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 10px 30px; }
    .productThumbs li {
      padding: 10px;
      width: 25%; }
      .productThumbs li:last-child {
        padding: 10px; } }
/*============================================================================
  #product - fullwidth
==============================================================================*/
#productTop.fullWidth {
  padding-bottom: 0px;
  position: relative; }
  #productTop.fullWidth .productOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #productTop.fullWidth .grid {
    padding-right: 20px;
    padding-left: 20px;
    height: 100%;
    position: relative; }
    @media screen and (max-width: 568px) {
      #productTop.fullWidth .grid {
        padding-right: 0;
        padding-left: 0; } }
  #productTop.fullWidth .featuredImage {
    width: 100%;
    text-align: center; }
    #productTop.fullWidth .featuredImage img {
      margin: 0 auto;
      width: 100%; }
    #productTop.fullWidth .featuredImage.emptyImage {
      min-height: 568px;
      height: 100vh; }
  #productTop.fullWidth .productThumbs {
    padding-top: 200px;
    padding-right: 20px;
    margin-left: auto; }
  #productTop.fullWidth .productInfo {
    padding-top: 200px;
    padding-left: 20px;
    padding-bottom: 40px;
    margin-right: auto; }

hr.altPage {
  display: none; }

@media screen and (max-width: 1120px) {
  #productTop.fullWidth .productThumbs {
    padding-right: 20px; }
  #productTop.fullWidth .productInfo {
    padding-left: 20px; } }
@media screen and (max-width: 736px) {
  #productTop.fullWidth .productOverlay {
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    padding: 0px; }
  #productTop.fullWidth .productThumbs {
    padding: 10px 30px; }
  #productTop.fullWidth .productInfo {
    padding: 40px 20px; }

  hr.altPage {
    display: block; } }
/*============================================================================
  #social-sharing
==============================================================================*/
.social-sharing {
  font-size: 0; }
  .social-sharing a, .social-sharing #instafeed .instaItem-link span, #instafeed .instaItem-link .social-sharing span, .social-sharing .header-cart-item-options button, .header-cart-item-options .social-sharing button {
    display: inline-block; }
    .social-sharing a:not(:last-child), .social-sharing #instafeed .instaItem-link span:not(:last-child), #instafeed .instaItem-link .social-sharing span:not(:last-child), .social-sharing .header-cart-item-options button:not(:last-child), .header-cart-item-options .social-sharing button:not(:last-child) {
      margin-right: 10px; }
    .social-sharing a svg, .social-sharing #instafeed .instaItem-link span svg, #instafeed .instaItem-link .social-sharing span svg, .social-sharing .header-cart-item-options button svg, .header-cart-item-options .social-sharing button svg {
      width: 18px;
      height: 18px; }
    .social-sharing a.share-facebook, .social-sharing #instafeed .instaItem-link span.share-facebook, #instafeed .instaItem-link .social-sharing span.share-facebook, .social-sharing .header-cart-item-options button.share-facebook, .header-cart-item-options .social-sharing button.share-facebook {
      margin-right: 12px; }
      .social-sharing a.share-facebook svg path, .social-sharing #instafeed .instaItem-link span.share-facebook svg path, #instafeed .instaItem-link .social-sharing span.share-facebook svg path, .social-sharing .header-cart-item-options button.share-facebook svg path, .header-cart-item-options .social-sharing button.share-facebook svg path {
        fill: #3067A1;
        stroke: #3067A1; }
    .social-sharing a.share-twitter svg path, .social-sharing #instafeed .instaItem-link span.share-twitter svg path, #instafeed .instaItem-link .social-sharing span.share-twitter svg path, .social-sharing .header-cart-item-options button.share-twitter svg path, .header-cart-item-options .social-sharing button.share-twitter svg path {
      fill: #03b3ee;
      stroke: #03b3ee; }
    .social-sharing a.share-pinterest svg path, .social-sharing #instafeed .instaItem-link span.share-pinterest svg path, #instafeed .instaItem-link .social-sharing span.share-pinterest svg path, .social-sharing .header-cart-item-options button.share-pinterest svg path, .header-cart-item-options .social-sharing button.share-pinterest svg path {
      fill: #b9252c;
      stroke: #b9252c; }
    .social-sharing a.share-google svg, .social-sharing #instafeed .instaItem-link span.share-google svg, #instafeed .instaItem-link .social-sharing span.share-google svg, .social-sharing .header-cart-item-options button.share-google svg, .header-cart-item-options .social-sharing button.share-google svg {
      width: 24px; }
      .social-sharing a.share-google svg path, .social-sharing #instafeed .instaItem-link span.share-google svg path, #instafeed .instaItem-link .social-sharing span.share-google svg path, .social-sharing .header-cart-item-options button.share-google svg path, .header-cart-item-options .social-sharing button.share-google svg path {
        fill: #E1543F;
        stroke: #E1543F; }

/*============================================================================
  #popOuts
==============================================================================*/
body.popOutFix {
  height: 100%;
  overflow-y: hidden; }

#popOuts {
  overflow-y: auto;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1000;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out; }
  #popOuts.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in; }
  #popOuts .fullBackClose {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }
  #popOuts .innerWrapper {
    position: relative;
    z-index: 1;
    min-height: 100%;
    width: 100%;
    display: none; }
    #popOuts .innerWrapper .grid {
      position: relative;
      z-index: 1; }
    #popOuts .innerWrapper .animateIn {
      visibility: hidden;
      opacity: 0; }
    #popOuts .innerWrapper.active .animateIn {
      visibility: visible;
      opacity: 1; }

.closeIcon {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 999; }
  .closeIcon svg {
    height: 20px;
    width: 20px; }
    .closeIcon svg * {
      stroke: #DADADA;
      fill: #DADADA; }
    .closeIcon svg path {
      fill: #DADADA; }

#gallery {
  padding: 0; }
  #gallery .animateIn {
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms; }
  #gallery.active .animateIn {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 600ms ease-out;
    -moz-transition: all 600ms ease-out;
    -ms-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out; }
  #gallery img {
    width: 100%;
    vertical-align: top; }

#newsLetter .animateIn {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; }
#newsLetter h3 {
  font-size: 3.8rem;
  line-height: 4.2rem;
  font-weight: 700;
  text-decoration: none;
  max-width: 350px;
  margin: 0 auto 20px; }
#newsLetter p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  max-width: 310px;
  margin: 0 auto 20px; }
#newsLetter .closePop {
  display: none; }
#newsLetter form {
  width: 100%;
  max-width: 310px;
  margin: 0 auto; }
  #newsLetter form .button, #newsLetter form .shopify-challenge__button {
    width: 100%;
    margin: 0 auto 10px; }
#newsLetter .animateIn {
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0px 6px 25px -10px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 6px 25px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 6px 25px -10px rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 50%;
  left: 50%; }
#newsLetter .half, #newsLetter #instafeed.flexItem-half .flexItem, #instafeed.flexItem-half #newsLetter .flexItem {
  text-align: center;
  vertical-align: middle;
  position: relative;
  width: 360px;
  min-height: 100%;
  padding: 0;
  background: #fff; }
  #newsLetter .half.imageWrap, #newsLetter #instafeed.flexItem-half .imageWrap.flexItem, #instafeed.flexItem-half #newsLetter .imageWrap.flexItem {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #85cfc6; }
  #newsLetter .half .formWrap, #newsLetter #instafeed.flexItem-half .flexItem .formWrap, #instafeed.flexItem-half #newsLetter .flexItem .formWrap {
    background: #fff;
    padding: 40px 20px 30px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

@media screen and (max-width: 736px) {
  #popOuts {
    display: none; } }
/*============================================================================
  #userAccounts
==============================================================================*/
.accountWrap.login .grid {
  text-align: center; }
.accountWrap.login a, .accountWrap.login #instafeed .instaItem-link span, #instafeed .instaItem-link .accountWrap.login span, .accountWrap.login .header-cart-item-options button, .header-cart-item-options .accountWrap.login button {
  display: block; }
.accountWrap h1, .accountWrap h2 {
  font-weight: 700;
  font-size: 2.8rem;
  color: #85cfc6;
  margin: 0 0 20px; }
.accountWrap a, .accountWrap #instafeed .instaItem-link span, #instafeed .instaItem-link .accountWrap span, .accountWrap .header-cart-item-options button, .header-cart-item-options .accountWrap button {
  color: #85cfc6;
  text-decoration: underline; }
.accountWrap #ResetSuccess, .accountWrap #RecoverPasswordForm {
  display: none; }
.accountWrap table {
  width: 100%;
  margin: 0 auto; }
.accountWrap .addressLabel h2 {
  font-size: 1.6rem;
  margin: 0; }
.accountWrap .addressForm p.linkWrap {
  text-align: center; }
.accountWrap .pagination {
  margin: 20px auto; }

#orderTable {
  padding-bottom: 40px; }

/*============================================================================
  #cart
==============================================================================*/
#updateCart {
  display: none; }

.cartMain {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center; }
  .cartMain h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #85cfc6;
    margin: 0 auto; }
    .cartMain h1 span {
      text-decoration: underline; }
  .cartMain a, .cartMain #instafeed .instaItem-link span, #instafeed .instaItem-link .cartMain span, .cartMain .header-cart-item-options button, .header-cart-item-options .cartMain button, .cartMain .linkButton {
    text-decoration: underline;
    color: #85cfc6; }

.cartRow {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0; }
  .cartRow li:nth-child(1) {
    width: 25%;
    text-align: center; }
    .cartRow li:nth-child(1) img {
      margin: 0 auto; }
  .cartRow li:nth-child(2) {
    width: 50%;
    padding: 0 20px; }
  .cartRow input.cartUpdate {
    max-width: 50px;
    padding: 5px 0 5px 10px;
    font-family: "Playfair Display", serif;
    border: 1px solid #DADADA;
    font-size: 1.6rem;
    outline: none;
    color: #111;
    height: 50px;
    margin: 0; }
    .cartRow input.cartUpdate::-webkit-input-placeholder {
      color: #DADADA; }
    .cartRow input.cartUpdate:-moz-placeholder {
      color: #DADADA; }
    .cartRow input.cartUpdate::-moz-placeholder {
      color: #DADADA; }
    .cartRow input.cartUpdate:-ms-input-placeholder {
      color: #DADADA; }
    .cartRow input.cartUpdate:focus {
      border-color: #85cfc6; }
  .cartRow a svg, .cartRow #instafeed .instaItem-link span svg, #instafeed .instaItem-link .cartRow span svg, .cartRow .header-cart-item-options button svg, .header-cart-item-options .cartRow button svg {
    width: 20px;
    height: 20px; }
  .cartRow a svg *, .cartRow #instafeed .instaItem-link span svg *, #instafeed .instaItem-link .cartRow span svg *, .cartRow .header-cart-item-options button svg *, .header-cart-item-options .cartRow button svg * {
    stroke: #DADADA;
    fill: #DADADA; }
  .cartRow a svg path, .cartRow #instafeed .instaItem-link span svg path, #instafeed .instaItem-link .cartRow span svg path, .cartRow .header-cart-item-options button svg path, .header-cart-item-options .cartRow button svg path {
    fill: #DADADA; }

.cartfoot {
  color: #85cfc6;
  text-align: center;
  padding: 40px 0 0; }
  .cartfoot .button, .cartfoot .shopify-challenge__button {
    display: block;
    margin: 0 auto; }
  .cartfoot .additional-checkout-buttons {
    margin-bottom: 10px; }
    .cartfoot .additional-checkout-buttons > * {
      width: auto !important;
      border: 0 !important; }

@media screen and (max-width: 736px) {
  .cartMain h1 {
    font-size: 2rem; }

  .cartRow li {
    width: 33.33%;
    text-align: center;
    padding: 10px; }
    .cartRow li:nth-child(1), .cartRow li:nth-child(2) {
      width: 100%;
      padding: 10px 0; } }
 /*============================================================================
  #news blog
==============================================================================*/
.blogStrip .button, .blogStrip .shopify-challenge__button {
  width: 100%;
  margin-top: 20px; }

.sectionWrap.halfGutter.blogStrip .genHeading {
  margin: 0 auto 20px;
  display: block; }

.articleHeader.genHeading {
  margin: 0; }

#blogTitle.genHeading {
  display: inline-block;
  margin-bottom: 20px; }

.icon-rss {
  position: relative;
  top: 4px;
  display: inline-block;
  margin-left: 5px; }
  .icon-rss,
  .icon-rss svg {
    width: 22px;
    height: 23px; }

.sectionWrap .articleExcerpt.rte#blogDescription {
  margin-bottom: 0px; }

.tags {
  margin-top: 10px;
  text-align: center;
  color: #85cfc6;
  font-size: 1.4rem; }
  .tags li {
    padding: 10px 5px 0;
    display: inline-block; }

.articleMeta {
  font-family: "Karla", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #aaa;
  font-size: 1.4rem;
  margin: 0px auto 10px; }
  .articleMeta li {
    display: inline-block;
    padding: 0 10px 10px; }

.sectionWrap .articleExcerpt.rte {
  margin: 0px; }

#articleHero {
  padding: 0; }

#articleContent {
  margin-top: 0px;
  text-align: left; }

.readMore {
  #
  margin: 40px auto 0;
  font-weight: 700;
  color: #85cfc6;
  display: block; }

#AddCommentTitle {
  margin-bottom: 20px; }

#Comments .comment:after {
  display: block;
  margin: 20px auto;
  background: #eeeeee;
  height: 2px;
  content: '';
  width: 20px; }
#Comments .pagination {
  margin-bottom: 40px; }

/*============================================================================
  #footer
==============================================================================*/
footer {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #eeeeee;
  font-family: "Georgia", "Times New Roman", serif; }
  footer.footerSimple {
    padding-top: 40px;
    padding-bottom: 40px; }
  footer a:not(.button), footer #instafeed .instaItem-link span:not(.button), #instafeed .instaItem-link footer span:not(.button), footer .header-cart-item-options button:not(.button), .header-cart-item-options footer button:not(.button) {
    color: #85cfc6;
    text-decoration: underline; }
  footer .button, footer .shopify-challenge__button {
    font-family: "Playfair Display", serif; }

.footerLogo {
  margin-bottom: 40px; }
  @media screen and (max-width: 1280px) {
    .footerLogo {
      margin-bottom: 40px; } }
  .footerLogo > a, #instafeed .instaItem-link .footerLogo > span, .header-cart-item-options .footerLogo > button {
    font-size: 2.2em;
    font-weight: bold;
    text-decoration: none !important; }
  .footerLogo img {
    max-width: 300px; }

.footerMenu {
  line-height: 2.6rem;
  width: 160px; }
  .footerMain.footerMenuCount-3:not(.noAbout) .footerMenu {
    width: 120px; }
  @media screen and (max-width: 736px) {
    .footerMenu {
      margin-bottom: 40px; }
      .footerMain.footerMenuCount-1 .footerMenu {
        width: 100%; }
      .footerMain.footerMenuCount-2 .footerMenu {
        width: 50%; }
      .footerMain.footerMenuCount-3 .footerMenu {
        width: 33.333%; } }
  @media screen and (max-width: 568px) {
    .footerMain.footerMenuCount-1 .footerMenu, .footerMain.footerMenuCount-2 .footerMenu, .footerMain.footerMenuCount-3 .footerMenu {
      width: 50%; } }

.footerMain .flexItem:last-child {
  padding-bottom: 0;
  border-bottom: 0; }

.footerAbout {
  max-width: 660px; }
  @media screen and (max-width: 736px) {
    .footerAbout {
      margin-bottom: 40px;
      padding-top: 40px;
      padding-bottom: 40px;
      border-top: 1px solid #eeeeee;
      border-bottom: 1px solid #eeeeee; } }
  .footerMain.footerMenuCount-1 .footerAbout, .footerMain.footerMenuCount-2 .footerAbout {
    width: calc(100% - 320px); }
  .footerMain.footerMenuCount-3 .footerAbout {
    width: calc(100% - 360px); }
  @media screen and (max-width: 736px) {
    .footerMain.footerMenuCount-1 .footerAbout, .footerMain.footerMenuCount-2 .footerAbout, .footerMain.footerMenuCount-3 .footerAbout {
      width: 100%;
      max-width: 100%; } }
  .footerAbout p {
    line-height: 2.6rem; }
  .footerAbout > div > *:first-child {
    margin-top: 0; }
  .footerAbout > div > *:last-child {
    margin-bottom: 0; }
  .footerAbout > div + .button, .footerAbout > div + .shopify-challenge__button {
    margin-top: 30px;
    line-height: 4rem; }

.footerLower {
  margin-top: 40px; }
  @media screen and (max-width: 736px) {
    .footerLower {
      margin-top: 0;
      padding-right: 20px;
      padding-left: 20px; } }
  .footerSimple .footerLower {
    margin-top: 0; }
    @media screen and (max-width: 1280px) {
      .footerSimple .footerLower {
        margin-top: 40px; } }
    @media screen and (max-width: 736px) {
      .footerSimple .footerLower {
        margin-top: 0; } }
  .footerLower .footerLogo + {
    margin-top: 0; }

.footerLowerInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%; }
  @media screen and (max-width: 736px) {
    .footerLowerInner {
      -webkit-box-direction: reverse;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column-reverse;
      -moz-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      padding-top: 40px;
      border-top: 1px solid #eeeeee;
      text-align: center; }
      .footerSimple .footerLowerInner {
        border-top: 0;
        padding-top: 0; } }

.footerCopyright {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem; }

.footerPayment {
  font-size: 0; }
  @media screen and (max-width: 736px) {
    .footerPayment {
      margin-bottom: 15px; } }
  .footerPayment li {
    display: inline-block;
    width: 38px;
    margin-left: 10px; }
    @media screen and (max-width: 736px) {
      .footerPayment li {
        margin-bottom: 5px; } }

/*============================================================================
  #custom page
==============================================================================*/
.template-page #mainWrap .sectionWrap {
  padding-bottom: 40px; }

/*============================================================================
  #giftcard page
==============================================================================*/
.template-giftcard {
  text-align: center; }
  .template-giftcard .giftcard {
    padding-top: 80px;
    padding-bottom: 80px; }
    .template-giftcard .giftcard .giftcard__border {
      border: 2px solid #eeeeee;
      padding: 40px;
      position: relative; }
    .template-giftcard .giftcard .giftcard__wrap {
      position: relative; }
      .template-giftcard .giftcard .giftcard__wrap .giftcard__amount {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #fff;
        font-size: 3rem;
        padding: 5px;
        background: #000; }
  .template-giftcard .giftcard__code__inner {
    font-size: 2.8rem;
    padding-top: 20px; }
  .template-giftcard #QrCode img, .template-giftcard #QrCode canvas {
    margin: 30px auto; }
  .template-giftcard .giftcard__actions .button, .template-giftcard .giftcard__actions .shopify-challenge__button {
    margin: 10px; }

#apple-wallet-badge {
  display: inline-block;
  margin: 0 auto 40px; }

/*============================================================================
  #password page
==============================================================================*/
.template-password {
  text-align: center; }
  .template-password body {
    background-image: url(/cdn/shop/t/6/assets/password-page-background.jpg?1);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    text-align: center; }
  .template-password header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none; }
  .template-password .login {
    padding-top: 160px;
    padding-bottom: 60px; }
  .template-password h1 {
    font-size: 4.6rem;
    font-weight: 700;
    text-decoration: none; }
  .template-password .rte {
    color: #85cfc6; }
  .template-password form {
    margin: 20px auto 0; }
    .template-password form label {
      color: #85cfc6;
      margin: 20px auto; }
    .template-password form .button, .template-password form .shopify-challenge__button {
      margin: 0; }
  .template-password footer {
    padding: 40px 0; }
    .template-password footer .grid {
      text-align: center; }
    .template-password footer svg {
      width: 100px;
      margin: 10px auto 0;
      display: block; }
  .template-password .passwordPageToggle {
    margin-top: 60px;
    line-height: 1.8rem; }
    .template-password .passwordPageToggle:before {
      font-family: fontAwesome;
      content: '\f023';
      display: inline-block;
      vertical-align: middle;
      margin-right: 5px;
      font-size: 1.4rem; }
  .template-password #passwordSignIn .passwordPageToggle:before {
    content: '\f1d9'; }

/*============================================================================
  #Print Styles
==============================================================================*/
@media print {
  @page {
    margin: 0.5cm; }

  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; }

  html, body {
    background-color: #fff; }

  .giftcard-header {
    padding: 10px 0; }

  .giftcard__content,
  .giftcard__border {
    border: 0 none; }

  .giftcard__actions,
  .giftcard__wrap:before,
  .giftcard__wrap:after,
  .tooltip {
    display: none; }

  .giftcard__title {
    float: none;
    text-align: center; }

  .giftcard__code__text {
    color: #555; }

  .shop-url {
    display: block; }

  .logo {
    color: #58686F; }

  #QrCode {
    display: block; } }
/*============================================================================
  #no-js
==============================================================================*/
.no-js main {
  opacity: 1; }
.no-js .ctop {
  margin-top: 141px; }
.no-js .rtop {
  margin-top: -141px; }
.no-js header .grid {
  height: 70px;
  line-height: 70px; }
.no-js header #regularMenu {
  display: block; }
.no-js header #newsSignUp {
  display: none; }
.no-js header .burgerNav {
  display: none; }
.no-js header .leftMenu a:not(#searchStore), .no-js header .leftMenu #instafeed .instaItem-link span:not(#searchStore), #instafeed .instaItem-link .no-js header .leftMenu span:not(#searchStore), .no-js header .leftMenu .header-cart-item-options button:not(#searchStore), .header-cart-item-options .no-js header .leftMenu button:not(#searchStore) {
  margin-right: 40px; }
.no-js #productTop.fullWidth .productInfo:not(.viewPortFix) {
  top: 176px; }
.no-js #productTop.fullWidth .productThumbs:not(.viewPortFix) {
  top: 176px; }
.no-js #productTop.fullWidth .productOverlay {
  padding: 176px 0 0 0; }
.no-js #updateCart {
  display: block; }
.no-js .mobileFilter {
  display: none !important; }
.no-js #footerSearch:not(#headerSearch) {
  display: block; }

@media screen and (max-width: 736px) {
  .no-js header #regularMenu {
    display: none; } }
/*============================================================================
  #no-flex
==============================================================================*/
.noFlex .gridJustify:not(.cartRow) *, .noFlex .gridAlignTop *, .noFlex .gridAlignLeft * {
  zoom: 1; }
.noFlex .gridJustify:not(.cartRow):after, .noFlex .gridAlignTop:after, .noFlex .gridAlignLeft:after {
  content: '';
  display: table;
  clear: both; }
.noFlex .gridJustify:not(.cartRow) .flexItem, .noFlex .gridAlignTop .flexItem, .noFlex .gridAlignLeft .flexItem {
  display: inline-block;
  vertical-align: top; }
  .noFlex .gridJustify:not(.cartRow) .flexItem.logo, .noFlex .gridAlignTop .flexItem.logo, .noFlex .gridAlignLeft .flexItem.logo {
    vertical-align: middle; }
  .noFlex .gridJustify:not(.cartRow) .flexItem:not(.alignCenter):not(.alignRight):not(.forceCenter), .noFlex .gridAlignTop .flexItem:not(.alignCenter):not(.alignRight):not(.forceCenter), .noFlex .gridAlignLeft .flexItem:not(.alignCenter):not(.alignRight):not(.forceCenter) {
    float: left; }
.noFlex .centerColumns {
  text-align: center; }
.noFlex .gridTable {
  display: table;
  width: 100%;
  height: 100%; }
  .noFlex .gridTable .flexItem {
    display: table-cell !important;
    vertical-align: middle !important;
    float: none !important; }
.noFlex .alignRight {
  float: right; }
.noFlex header {
  text-align: center; }
  .noFlex header .leftMenu {
    text-align: left; }
    .noFlex header .leftMenu a, .noFlex header .leftMenu #instafeed .instaItem-link span, #instafeed .instaItem-link .noFlex header .leftMenu span, .noFlex header .leftMenu .header-cart-item-options button, .header-cart-item-options .noFlex header .leftMenu button {
      width: 20px; }
    .noFlex header .leftMenu #burgerMenu a, .noFlex header .leftMenu #burgerMenu #instafeed .instaItem-link span, #instafeed .instaItem-link .noFlex header .leftMenu #burgerMenu span, .noFlex header .leftMenu #burgerMenu .header-cart-item-options button, .header-cart-item-options .noFlex header .leftMenu #burgerMenu button {
      width: 100%; }
  .noFlex header #AccessibleNav {
    display: inline-block; }
.noFlex .featuredSliderWrap .prodThumb .title span:last-child {
  float: right; }
.noFlex .cartRow {
  display: table;
  width: 100%; }
  .noFlex .cartRow li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    text-align: left; }
.noFlex .cartfoot {
  display: inline-block;
  width: 100%;
  text-align: center; }
.noFlex .formWrap label:not(.showLabel) {
  display: block; }
.noFlex .pagination.flexItem {
  float: right; }
.noFlex .productImages.flexItem, .noFlex #productTop.fullWidth .productThumbs, .noFlex .prodThumb .title span:last-child {
  float: right; }

@media screen and (max-width: 736px) {
  .noFlex .cartRow {
    display: block; }
    .noFlex .cartRow li {
      display: inline-block;
      min-width: 30%;
      width: auto;
      padding: 0 10px;
      text-align: center; }
      .noFlex .cartRow li:nth-child(1), .noFlex .cartRow li:nth-child(2) {
        width: 100%;
        margin-bottom: 20px;
        padding: 0; } }
.header-cart-wrapper-inner {
  display: inline;
  padding-bottom: 30px; }

@media screen and (max-width: 568px) {
  .header-cart-desktop {
    display: none; } }

.header-cart-mobile {
  position: relative;
  display: none; }
  @media screen and (max-width: 568px) {
    .header-cart-mobile {
      display: block; } }
  .header-cart-mobile .header-cart-icon-empty {
    display: inline; }
  .header-cart-mobile .header-cart-icon-filled {
    display: none; }
  .header-cart-mobile.has-items {
    color: white !important; }
    .isTran .header-cart-mobile.has-items {
      color: #929090 !important; }
    .template-product-alternate .isTran .header-cart-mobile.has-items {
      color: white !important; }
    .header-cart-mobile.has-items .header-cart-icon-empty {
      display: none; }
    .header-cart-mobile.has-items .header-cart-icon-filled {
      display: inline; }
  .header-cart-mobile .cartItemCount {
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    width: 100%;
    font-family: Georgia, serif;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center; }

.header-cart {
  position: absolute;
  top: calc(100% - 35px);
  right: 0;
  z-index: 1000;
  width: 300px;
  text-align: left;
  background-color: white;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
  transition: all 0.2s ease;
  color: #797676 !important; }
  .header-cart.animating {
    opacity: 0;
    visibility: visible; }
  .header-cart.visible {
    opacity: 1;
    visibility: visible;
    margin-top: 0; }
  .header-cart-wrapper-inner:hover .header-cart {
    visibility: visible;
    opacity: 1;
    margin-top: 0; }
  @media screen and (max-width: 736px) {
    .header-cart {
      display: none; } }

.header-cart-empty {
  height: 48px;
  padding-bottom: 20px;
  margin: 0;
  text-align: center;
  overflow-y: hidden;
  transition: all 0.2s ease; }
  .header-cart-empty.hidden {
    height: 0;
    padding-bottom: 0; }

.header-cart-items {
  padding: 20px 20px 0;
  border: 1px solid #eeeeee;
  border-bottom: 0; }

.header-cart-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 20px;
  overflow-y: hidden; }
  .header-cart-item.removed {
    height: 0 !important;
    padding-bottom: 0;
    opacity: 0;
    transition: all 0.2s ease-out; }
  .header-cart-item img {
    display: block; }
  .header-cart-item h3 {
    margin-bottom: 0;
    font-size: 1.3rem; }
  .header-cart-item .money {
    color: #414141;
    font-size: 1.3rem; }

.header-cart-item-image {
  width: 80px; }

.header-cart-item-info {
  width: calc(100% - 90px);
  margin-left: 10px; }
  .header-cart-item-info h3 {
    text-transform: none;
    letter-spacing: 0; }
  .header-cart-item-info span {
    display: block; }

.header-cart-item-options {
  position: relative;
  margin-top: 5px; }
  .header-cart-item-options strong {
    color: #414141;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0; }
  .header-cart-item-options input {
    display: inline;
    width: 22px;
    border: 0;
    border-bottom: 1px solid #eeeeee; }
    .header-cart-item-options input[type=number]::-webkit-inner-spin-button, .header-cart-item-options input[type=number]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .header-cart-item-options button {
    padding: 0;
    margin-left: 2px;
    border: 0;
    outline: 0;
    background-color: transparent;
    text-decoration: underline;
    color: #85cfc6;
    cursor: pointer; }
  .header-cart-item-options .header-cart-sold-out {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    text-transform: none;
    letter-spacing: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease; }
    .header-cart-item-options .header-cart-sold-out.visible {
      visibility: visible;
      opacity: 1; }

.header-cart-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid #eeeeee;
  border-bottom: 0; }

.shopify-challenge__container {
  padding-top: 40px; }
