/** Shopify CDN: Minification failed

Line 923:2 Expected identifier but found "*"
Line 6837:27 Expected ":"
Line 11922:4 "diplay" is not a known CSS property

**/
@charset "UTF-8";
.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: limegreen;
  --surface-pick-up-embed-theme-error-color: #b33a3a;
  --surface-pick-up-embed-theme-paragraph-font-size: 16px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: calc(var(--surface-pick-up-embed-theme-paragraph-font-size) - 4px);
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;
  --surface-pick-up-embed-theme-body-text-color: #808080;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  --surface-pick-up-embed-row-gap: 10px;
  --surface-pick-up-embed-column-gap: 10px;
  display: grid;
  grid-template-columns: -webkit-min-content auto;
  grid-template-columns: min-content auto;
  row-gap: var(--surface-pick-up-embed-row-gap);
  column-gap: var(--surface-pick-up-embed-column-gap);
  justify-content: flex-start;
  text-align: left;
}

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 3px;
}

.surface-pick-up-embed__in-stock-icon {
  fill: var(--surface-pick-up-embed-theme-success-color);
}

.surface-pick-up-embed__out-of-stock-icon {
  fill: var(--surface-pick-up-embed-theme-error-color);
}

.surface-pick-up-embed__location-info,
.surface-pick-up-embed__modal-btn {
  grid-column-start: 2;
  grid-column-end: 3;
}

.surface-pick-up-embed__location-info {
  grid-row-start: 1;
  grid-row-end: 2;
}

.surface-pick-up-embed__location-availability {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: var(--surface-pick-up-embed-theme-paragraph-font-size);
  font-weight: inherit;
  color: var(--surface-pick-up-embed-theme-body-text-color);
}
.surface-pick-up-embed__location-availability b {
  font-weight: var(--surface-pick-up-embed-theme-body-font-weight-bold);
}

.surface-pick-up-embed__location-pick-up-time {
  font-size: var(--surface-pick-up-embed-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-embed-theme-body-text-color);
}

.surface-pick-up-embed__modal-btn {
  grid-row-start: 2;
  grid-row-end: 3;
  justify-self: start;
  padding: 0;
  font-size: var(--surface-pick-up-embed-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-theme-embed-body-text-color);
  text-align: left;
  -webkit-text-decoration: var(--surface-pick-up-embed-theme-link-text-decoration);
          text-decoration: var(--surface-pick-up-embed-theme-link-text-decoration);
  cursor: pointer;
  background-color: initial;
  border: 0;
}

.surface-pick-up-items {
  padding: 0;
  margin: 0;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: limegreen;
  --surface-pick-up-item-theme-error-color: #b33a3a;
  --surface-pick-up-item-theme-paragraph-font-size: 16px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: calc(var(--surface-pick-up-item-theme-paragraph-font-size) - 4px);
  --surface-pick-up-item-theme-body-font-weight-bold: 600;
  --surface-pick-up-item-theme-body-text-color: #808080;
  --surface-pick-up-item-theme-border-color: #d9d9d9;
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 10px;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 28px;
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  row-gap: var(--surface-pick-up-item-row-gap);
  column-gap: var(--surface-pick-up-item-column-gap);
  justify-content: flex-start;
  padding-bottom: var(--surface-pick-up-item-gap);
  margin: var(--surface-pick-up-item-gap) 0 0;
  text-align: left;
  border-bottom: 1px solid var(--surface-pick-up-item-theme-border-color);
}
.surface-pick-up-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.surface-pick-up-item__header {
  display: flex;
  grid-column: span 3;
  align-items: flex-end;
}

.surface-pick-up-item__pick-up-location {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: var(--surface-pick-up-item-theme-paragraph-font-size);
  font-weight: var(--surface-pick-up-item-theme-body-font-weight-bold);
  color: var(--surface-pick-up-item-theme-body-text-color);
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 2rem;
  margin: 0 0 0 auto;
}

.surface-pick-up-item__in-stock-icon,
.surface-pick-up-item__out-of-stock-icon {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-top: 1px;
}

.surface-pick-up-item__in-stock-icon {
  fill: var(--surface-pick-up-item-theme-success-color);
}

.surface-pick-up-item__out-of-stock-icon {
  fill: var(--surface-pick-up-item-theme-error-color);
}

.surface-pick-up-item__availability {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
  font-size: var(--surface-pick-up-item-theme-paragraph-smaller-font-size);
  color: var(--surface-pick-up-item-theme-body-text-color);
}

.surface-pick-up-item__address-info {
  grid-row-start: 3;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
  font-size: var(--surface-pick-up-item-theme-paragraph-smaller-font-size);
  font-style: normal;
  line-height: 1.4;
  color: var(--surface-pick-up-item-theme-body-text-color);
}
.surface-pick-up-item__address-info p {
  margin: 0;
}
.surface-pick-up-item__address-info a,
.surface-pick-up-item__address-info a:visited {
  color: inherit;
  text-decoration: none;
}
.surface-pick-up-item__address-info a:focus,
.surface-pick-up-item__address-info a:active,
.surface-pick-up-item__address-info a:hover {
  color: inherit;
}

.surface-pick-up-item__confirm-address {
  margin-top: var(--surface-pick-up-item-row-gap);
}

.surface-pick-up-item__confirm-address-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

/******************************************************************
Theme Name: Artisan
Theme URI: https://outofthesandbox.com/collections/professional-theme
Author: Out of the Sandbox (https://outofthesandbox.com)
Description: Shopify Theme (https://www.shopify.com/?ref=out-of-the-sandbox)
******************************************************************/
/* Table of Contents
==================================================
  #Variables
  #Mixins
  #Functions
  #Reset
  #Fonts
  #Basic styles
  #Layout
  #Vendors
  #Fonts and icons
  #Typography
  #Links
  #Lists
  #Placeholders
  #Videos
  #Buttons
  #Tabs
  #Forms
  #Images
  #Misc
  #Fancybox
  #Header
  #Menu
  #Swatch Styles
  #Currency / language switcher
  #Pagination
  #Color swatches
  #Collection grid
  #Collection list
  #Collection product thumbnail
  #Blog
  #Page
  #Sidebar
  #Article
  #Footer
  #Password Page
  #Divider
  #List of collections
  #Cart page
  #Collection page
  #Product page
  #Product media
  #Size Chart
  #Quick shop
  #Contact page
  #Account
  #Page FAQ
  #Shapes
  #Gallery page
  #Home page - General
  #Home page - Text columns
  #Home page - Map
  #Home page - Video
  #Home page - Calendar
  #Home page - Featured product
  #Home page - Featured collection
  #Home page - Collection in detail
  #Home page - Image with text
  #Home page - Slideshow
  #Home page - Newsletter
  #Home page - Testimonial
  #Home page - Richtext
  #Home page - Pricing table
  #Home page - Logo list
  #Home page - Featured promotions
  #Newsletter
  #Footer
  #Page banners
  #Unit Pricing
  #Font-Face
  #Custom Styles */
/* #Variables
================================================== */


/* Responsiveness */
/* The `$breakpoints` list is used to build our media queries.
  - You can use these in the media-query mixin.
*/
/* #Mixins
================================================== */
/* Global styling for headline fonts */
/* Media query mixin */
/* Responsive Show/Hide Helper */
/* Responsive Text Alignment Helper */
/* Hide elements */
/* #Reset
================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-family: 'Noto Serif JP', serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

a:hover {
  color: #A96269!important;
}

h1 {
  font-size: 2em;
}

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

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: “”‘’;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  line-height: normal;
}

button, html input[type=button],
input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], input[disabled] {
  cursor: default;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

body, figure {
  margin: 0;
}

legend, button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* {
  box-sizing: border-box;
}

/* #Fonts
================================================== */@font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n4.3c0838aba1701047e60be6a99a1b0a40ce9b8419.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n4.c0575d1db21fc3821f17fd6617d3dee552312137.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i4.89f7a4275c064845c304a4cf8a4a586060656db2.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i4.6f955aaaafc55a22ffc1f32ecf3756859a5ad3e2.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n4.3c0838aba1701047e60be6a99a1b0a40ce9b8419.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n4.c0575d1db21fc3821f17fd6617d3dee552312137.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i4.89f7a4275c064845c304a4cf8a4a586060656db2.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i4.6f955aaaafc55a22ffc1f32ecf3756859a5ad3e2.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n5.3b6b7df38aa5986536945796e1f947445832047c.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n5.f26bf6dcae278b0ed902605f6605fa3338e81dab.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i5.969396f679a62854cf82dbf67acc5721e41351f0.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i5.93bc1cad6c73ca9815f9777c49176dfc9d2890dd.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n5.3b6b7df38aa5986536945796e1f947445832047c.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n5.f26bf6dcae278b0ed902605f6605fa3338e81dab.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i5.969396f679a62854cf82dbf67acc5721e41351f0.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i5.93bc1cad6c73ca9815f9777c49176dfc9d2890dd.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n3.e4cc0323f8b9feb279bf6ced9d868d88ce80289f.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n3.db79ac3fb83d054d99bd79fccf8e8782b5cf449e.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i3.914abbe7a583759f0a18bf02652c9ee1f4bb1c6d.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i3.3d7354f07ddb3c61082efcb69896c65d6c00d9fa.woff") format("woff");
}


  @font-face {
  font-family: "Bodoni Moda";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_n4.025af1859727a91866b3c708393a6dc972156491.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_n4.aebb4417dfed0dc5ec4a330249c3862add089916.woff") format("woff");
}


  @font-face {
  font-family: "Bodoni Moda";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_n7.837502b3cbe406d2c6f311e87870fa9980b0b36a.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_n7.c198e1cda930f96f6ae1aa8ef8facc95a64cfd1f.woff") format("woff");
}


  @font-face {
  font-family: "Bodoni Moda";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_i4.4d7d6dcd28539d05c34746a790d428e621a34321.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_i4.47427f01d2c6bc1acfc811bad9213cf287ad6b97.woff") format("woff");
}


  @font-face {
  font-family: "Bodoni Moda";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_i7.c902c4a34af6b706633407846994e4897be8e785.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/bodoni_moda/bodonimoda_i7.0a6dd16bb377985b19c32de01ccef400d1fe1aa6.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n4.3c0838aba1701047e60be6a99a1b0a40ce9b8419.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n4.c0575d1db21fc3821f17fd6617d3dee552312137.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.2fd9bfe01586148e644724096c9d75e8c7a90e55.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_n7.ea05de92d862f9594794ab281c4c3a67501ef5fc.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i4.89f7a4275c064845c304a4cf8a4a586060656db2.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i4.6f955aaaafc55a22ffc1f32ecf3756859a5ad3e2.woff") format("woff");
}


  @font-face {
  font-family: Figtree;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.06add7096a6f2ab742e09ec7e498115904eda1fe.woff2") format("woff2"),
       url("//silk100.co.jp/cdn/fonts/figtree/figtree_i7.ee584b5fcaccdbb5518c0228158941f8df81b101.woff") format("woff");
}


/* #Basic styles
================================================== */
html {
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  background-color: #ffffff;
}
@media screen and (min-width: 591px) {
  body {
    font-size: 16px;
  }
}

::selection {
  background: #FFF7B6;
  color: black;
}

.noscript {
  display: none;
}

abbr {
  border-bottom: 1px dotted #d1d1d1;
}

img[data-sizes=auto] {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}table tr.order_summary td.label {
  text-align: right;
}

table {
  margin-bottom: 20px;
}

/* Styles for order history */
/*#order_details_table {
  overflow: scroll;
}*/

#order_details {
  width: 100%;
}

#order_details th {
  font-weight: 700;
  background: #f9f9f9;
  text-align: left;
}

#order_details th,
#order_details td {
  padding: 10px;
  vertical-align: initial;
}

#order_details tr {
  border-bottom: 1px solid #d1d1d1;
}

#order_details tr:first-child {
  border-top: 1px solid #d1d1d1;
}

#order_details td,
#order_details th {
  border-right: 1px solid #d1d1d1;
}

#order_details td:first-child,
#order_details th:first-child {
  border-left: 1px solid #d1d1d1;
}

#order_details .em {
  font-weight: 700;
}

#order_details {
  margin-bottom: 20px;
}

/* Styles for Account history */
#customer_orders {
  width: 100%;
  /*overflow: scroll;*/
}

#customer_orders th {
  font-weight: 700;
  background: #f9f9f9;
  text-align: left;
}

#customer_orders th,
#customer_orders td {
  padding: 10px;
  vertical-align: initial;
}

#customer_orders tr {
  border-bottom: 1px solid #d1d1d1;
}

#customer_orders tr:first-child {
  border-top: 1px solid #d1d1d1;
}

#customer_orders td,
#customer_orders th {
  border-right: 1px solid #d1d1d1;
}

#customer_orders td:first-child,
#customer_orders th:first-child {
  border-left: 1px solid #d1d1d1;
}

#customer_orders .em {
  font-weight: 700;
}

#customer_orders {
  margin-bottom: 20px;
}

/* Ensures that small images are not stretched larger */
.image__container,
.image-element__wrap {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.image__container img,
.image-element__wrap img {
  height: auto;
}

.socialShare {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .socialShare {
    justify-content: center;
  }
}

.socialShare__text {
  margin: 0;
  margin-right: 5px;
}

.socialButtons {
  display: flex;
  align-items: center;
  margin: 0;
}
.socialButtons .share-btn {
  margin-left: 5px;
}
.socialButtons a,
.socialButtons a:visited {
  color: #000000;
  font-size: 18px;
  padding: 0 3px;
}

@media only screen and (max-width: 798px) {
  .is-hidden-offset-mobile-only {
    left: 0 !important;
  }
}
/*============================================================================
  Grid - full width columns, no gutter
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  *zoom: 1;
}
.grid::after {
  content: "";
  display: table;
  clear: both;
}

.grid__item {
  float: left;
  width: 100%;
}
.grid__item[class*="--push"] {
  position: relative;
}

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.index-sections .shopify-section:not(.shopify-section--divider),
.draggableBlocks .draggableBlock:not(.block__divider) {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 798px) {
  .index-sections .shopify-section:not(.shopify-section--divider),
.draggableBlocks .draggableBlock:not(.block__divider) {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.draggableBlocks .draggableBlock.block__image_with_overlay:first-child {
  padding-top: 0;
}

.index-sections .shopify-section.padding-toggle,
.draggableBlocks .draggableBlock.padding-toggle {
  padding-top: 0;
  padding-bottom: 0;
}
.index-sections .shopify-section.padding-toggle .padding--true,
.draggableBlocks .draggableBlock.padding-toggle .padding--true {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 798px) {
  .index-sections .shopify-section.padding-toggle .padding--true,
.draggableBlocks .draggableBlock.padding-toggle .padding--true {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* Used to remove top padding when the elements are the first section on the home page */
.index-sections .padding-toggle.shopify-section--slideshow:first-child .padding--true,
.index-sections .padding-toggle.shopify-section--video:first-child .padding--true {
  padding-top: 0;
}
@media only screen and (max-width: 798px) {
  .index-sections .padding-toggle.shopify-section--slideshow:first-child .padding--true,
.index-sections .padding-toggle.shopify-section--video:first-child .padding--true {
    padding-top: 0;
  }
}

.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

/* #Helper Classes
================================================== */
/* Flexbox */
.is-flex {
  display: flex;
}

.is-inline-flex {
  display: inline-flex;
}

.is-align-start,
.is-align-left {
  align-items: flex-start;
}

.is-align-end,
.is-align-right {
  align-items: flex-end;
}

.is-align-self-end,
.is-align-self-right {
  align-self: flex-end;
}

.is-align-baseline {
  align-items: baseline;
}

.is-align-center {
  align-items: center;
}

.is-align-stretch {
  align-items: stretch;
}

.is-justify-start,
.is-justify-left {
  justify-content: flex-start;
}

.is-justify-end,
.is-justify-right {
  justify-content: flex-end;
}

.is-justify-center {
  justify-content: center;
}

.is-justify-space-around {
  justify-content: space-around;
}

.is-justify-space-between {
  justify-content: space-between;
}

.is-flex-nowrap {
  flex-wrap: nowrap;
}

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

.is-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.is-flex-row {
  flex-direction: row;
}

.is-flex-row-reverse {
  flex-direction: row-reverse;
}

.is-flex-column {
  flex-direction: column;
}

.is-flex-column-reverse {
  flex-direction: column-reverse;
}

/* Flex position order */
.is-order-aligned-left {
  order: -1;
}
@media only screen and (max-width: 480px) {
  .is-order-aligned-left {
    order: inherit;
  }
}

.is-order-aligned-right {
  order: 1;
}
@media only screen and (max-width: 480px) {
  .is-order-aligned-right {
    order: inherit;
  }
}

/* Padding helpers */
.has-padding-top {
  padding-top: 20px;
}

.has-padding-bottom {
  padding-bottom: 20px;
}

.has-padding-left {
  padding-left: 20px;
}

.has-padding-right {
  padding-right: 20px;
}

.has-padding {
  padding: 20px;
}

.has-padding-top--half {
  padding-top: 10px;
}

.has-padding-bottom--half {
  padding-bottom: 10px;
}

/* Text alignment */
.text-align-center {
  text-align: center;
}

.text-align-left,
.text-align-start {
  text-align: left;
}
.text-align-left h1, .text-align-left h2, .text-align-left h3,
.text-align-left h1.title,
.text-align-left h2.title,
.text-align-left h3.title,
.text-align-start h1,
.text-align-start h2,
.text-align-start h3,
.text-align-start h1.title,
.text-align-start h2.title,
.text-align-start h3.title {
  text-align: left;
}

.text-align-right,
.text-align-end {
  text-align: right;
}
.text-align-right h1, .text-align-right h2, .text-align-right h3,
.text-align-right h1.title,
.text-align-right h2.title,
.text-align-right h3.title,
.text-align-end h1,
.text-align-end h2,
.text-align-end h3,
.text-align-end h1.title,
.text-align-end h2.title,
.text-align-end h3.title {
  text-align: right;
}

@media only screen and (max-width: 798px) {
  .has-mobile-slider {
    display: block !important;
    /* Overwrite flex styles */
  }
}

@media only screen and (max-width: 798px) {
  .has-full-width-on-mobile {
    width: 100% !important;
    /* Overwrite column class styles */
    margin-left: 0 !important;
    /* Overwrite column class styles */
    margin-right: 0 !important;
    /* Overwrite column class styles */
  }
}

/* # Grid/layout
================================================== */
.index {
  display: flex;
  flex-wrap: wrap;
}

/* Home page sections are set to flex so that half sizes may sit side-by-side */
.index-sections,
.page-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* Controls the width and spacing of each section - the class ".shopify-section" is generated by Shopify and applied to each element (along with unique ID) - uses CSS variables which are set in liquid files */
.shopify-section {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .shopify-section {
    width: 100% !important;
    padding-left: 0 !important;
    /* Ignores padding set on larger screen sizes */
    padding-right: 0 !important;
    /* Ignores padding set on larger screen sizes */
  }
}

/* Handles the background color and margins depending on what width has been chosen */
.section {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.section.is-width-wide {
  width: 100%;
  max-width: none;
}
  
.margin {
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (min-width: 1000px) {
  .margin {
    margin-left: 0;
	margin-right: 0;
  }
}

/* Parent container for column elements - uses flexbox, so this container can be made smaller and the columns will shrink in relation */
.container {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}


/* Applies flex styling for columns created using Content Creator */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  .row .column,
.row .columns {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

[class*=offset-by] {
  position: relative;
}

/*================ Build Base Grid Classes ================*/
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* Base Grid */
.one {
  width: calc(6.25% - 20px);
}

.two {
  width: calc(12.5% - 20px);
}

.three {
  width: calc(18.75% - 20px);
}

.four {
  width: calc(25% - 20px);
}

.five {
  width: calc(31.25% - 20px);
}

.six {
  width: calc(37.5% - 20px);
}

.seven {
  width: calc(43.75% - 20px);
}

.eight {
  width: calc(50% - 20px);
}

.nine {
  width: calc(56.25% - 20px);
}

.ten {
  width: calc(62.5% - 20px);
}

.eleven {
  width: calc(68.75% - 20px);
}

.twelve {
  width: calc(75% - 20px);
}

.thirteen {
  width: calc(81.25% - 20px);
}

.fourteen {
  width: calc(87.5% - 20px);
}

.fifteen {
  width: calc(93.75% - 20px);
}

.sixteen {
  width: calc(100% - 20px);
}

/* Whole */
.one-whole {
  width: 100%;
}

/* Halves */
.one-half {
  width: calc(50% - 20px);
}

/* Thirds */
.one-third {
  width: calc(33.3333333333% - 20px);
}

.two-thirds {
  width: calc(66.6666666667% - 20px);
}

/* Fourths */
.one-fourth {
  width: calc(25% - 20px);
}

.two-fourths {
  width: calc(50% - 20px);
}

.three-fourths {
  width: calc(75% - 20px);
}

/* Fifths */
.one-fifth {
  width: calc(20% - 20px);
}

.two-fifths {
  width: calc(40% - 20px);
}

.three-fifths {
  width: calc(60% - 20px);
}

.four-fifths {
  width: calc(80% - 20px);
}

/* Sixths */
.one-sixth {
  width: calc(16.6666666667% - 20px);
}

.two-sixths {
  width: calc(33.3333333333% - 20px);
}

.three-sixths {
  width: calc(50% - 20px);
}

.four-sixths {
  width: calc(66.6666666667% - 20px);
}

.five-sixths {
  width: calc(83.3333333333% - 20px);
}

/* Sevenths */
.one-seventh {
  width: calc(14.2857142857% - 20px);
}

.two-sevenths {
  width: calc(28.5714285714% - 20px);
}

.three-sevenths {
  width: calc(42.8571428571% - 20px);
}

.four-sevenths {
  width: calc(57.1428571429% - 20px);
}

.five-sevenths {
  width: calc(71.4285714286% - 20px);
}

/* Eighths */
.one-eighth {
  width: calc(12.5% - 20px);
}

.two-eighths {
  width: calc(25% - 20px);
}

.three-eighths {
  width: calc(37.5% - 20px);
}

.four-eighths {
  width: calc(50% - 20px);
}

.five-eighths {
  width: calc(62.5% - 20px);
}

.six-eighths {
  width: calc(75% - 20px);
}

.seven-eighths {
  width: calc(87.5% - 20px);
}

/* Tenths */
.one-tenth {
  width: calc(10% - 20px);
}

.two-tenths {
  width: calc(20% - 20px);
}

.three-tenths {
  width: calc(30% - 20px);
}

.four-tenths {
  width: calc(40% - 20px);
}

.five-tenths {
  width: calc(50% - 20px);
}

.six-tenths {
  width: calc(60% - 20px);
}

.seven-tenths {
  width: calc(70% - 20px);
}

.eight-tenths {
  width: calc(80% - 20px);
}

.nine-tenths {
  width: calc(90% - 20px);
}

/* Twelfths */
.one-twelfth {
  width: calc(8.3333333333% - 20px);
}

.two-twelfths {
  width: calc(16.6666666667% - 20px);
}

.three-twelfths {
  width: calc(25% - 20px);
}

.four-twelfths {
  width: calc(33.3333333333% - 20px);
}

.five-twelfths {
  width: calc(41.6666666667% - 20px);
}

.six-twelfths {
  width: calc(50% - 20px);
}

.seven-twelfths {
  width: calc(58.3333333333% - 20px);
}

.eight-twelfths {
  width: calc(66.6666666667% - 20px);
}

.nine-twelfths {
  width: calc(75% - 20px);
}

.ten-twelfths {
  width: calc(83.3333333333% - 20px);
}

.eleven-twelfths {
  width: calc(91.6666666667% - 20px);
}

/* Offsets */
.offset-by-one {
  left: calc(6.25%);
}

.offset-by-two {
  left: calc(12.5%);
}

.offset-by-three {
  left: calc(18.75%);
}

.offset-by-four {
  left: calc(25%);
}

.offset-by-five {
  left: calc(31.25%);
}

.offset-by-six {
  left: calc(37.5%);
}

.offset-by-seven {
  left: calc(43.75%);
}

.offset-by-eight {
  left: calc(50%);
}

.offset-by-nine {
  left: calc(56.25%);
}

.offset-by-ten {
  left: calc(62.5%);
}

.offset-by-eleven {
  left: calc(68.75%);
}

.offset-by-twelve {
  left: calc(75%);
}

.offset-by-thirteen {
  left: calc(81.25%);
}

.offset-by-fourteen {
  left: calc(87.5%);
}

.offset-by-fifteen {
  left: calc(93.75%);
}

/* Remove gutter on first and last column (must be consistent size) */
.equal-columns--outside-trim .one-half:nth-of-type(2n),
.equal-columns--outside-trim .eight:nth-of-type(2n),
.equal-columns--outside-trim .one-third:nth-of-type(3n),
.equal-columns--outside-trim .one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .four:nth-of-type(4n),
.equal-columns--outside-trim .one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .two:nth-of-type(8n) {
  margin-right: 0;
}
.equal-columns--outside-trim .one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .eight:nth-of-type(2n+1),
.equal-columns--outside-trim .one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .four:nth-of-type(4n+1),
.equal-columns--outside-trim .one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .two:nth-of-type(8n+1) {
  margin-left: 0;
}
.equal-columns--outside-trim .one-whole:nth-of-type(1n+1) {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.equal-columns--outside-trim .one-half {
  width: calc(50% - (20px - (20px / 2)));
}
.equal-columns--outside-trim .one-third {
  width: calc(33.3333333333% - (20px - (20px / 3)));
}
.equal-columns--outside-trim .one-fifth {
  width: calc(20% - (20px - (20px / 5)));
}
.equal-columns--outside-trim .one-fourth {
  width: calc(25% - (20px - (20px / 4)));
}
.equal-columns--outside-trim .one-sixth {
  width: calc(16.6666666667% - (20px - (20px / 6)));
}
.equal-columns--outside-trim .one-seventh {
  width: calc(14.2857142857% - (20px - (20px / 7)));
}
.equal-columns--outside-trim .two {
  width: calc(12.5% - (20px - (20px / 8)));
}
.equal-columns--outside-trim .four {
  width: calc(25% - (20px - (20px / 4)));
}
.equal-columns--outside-trim .seven {
  width: calc(43.75% - (20px - (20px / 2)));
}
.equal-columns--outside-trim .eight {
  width: calc(50% - (20px / 2));
}
.equal-columns--outside-trim .nine {
  width: calc(56.25% - (20px - (20px / 2)));
}

/* Remove side gutter on all columns */
.has-no-side-gutter.has-background {
  padding-right: 0px;
  padding-left: 0px;
}
.has-no-side-gutter .one-whole,
.has-no-side-gutter .one-half,
.has-no-side-gutter .eight,
.has-no-side-gutter .one-third,
.has-no-side-gutter .two-thirds,
.has-no-side-gutter .one-fourth,
.has-no-side-gutter .four,
.has-no-side-gutter .one-fifth,
.has-no-side-gutter .three-fifths,
.has-no-side-gutter .two-fifths,
.has-no-side-gutter .one-sixth,
.has-no-side-gutter .one-seventh,
.has-no-side-gutter .one-eighth,
.has-no-side-gutter .two {
  margin-right: 0;
  margin-left: 0;
}
.has-no-side-gutter .one-whole {
  width: 100%;
}
.has-no-side-gutter .one-half {
  width: 50%;
}
.has-no-side-gutter .one-third {
  width: 33.3333333333%;
}
.has-no-side-gutter .one-fourth {
  width: 25%;
}
.has-no-side-gutter .one-fifth {
  width: 20%;
}
.has-no-side-gutter .two-fifths {
  width: 40%;
}
.has-no-side-gutter .three-fifths {
  width: 60%;
}
.has-no-side-gutter .one-sixth {
  width: 16.6666666667%;
}
.has-no-side-gutter .one-seventh {
  width: 14.2857142857%;
}
.has-no-side-gutter .one-eighth {
  width: 12.5%;
}
.has-no-side-gutter .two-thirds {
  width: 66.6666666667%;
}
.has-no-side-gutter .two {
  width: 12.5%;
}
.has-no-side-gutter .four {
  width: 25%;
}
.has-no-side-gutter .seven {
  width: 43.75%;
}
.has-no-side-gutter .eight {
  width: 50%;
}
.has-no-side-gutter .nine {
  width: 56.25%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

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

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

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

/*============================================================================
Generate breakpoint-specific column widths and push classes
  - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
  - Default is no push classes
  - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 1024px) {
  .large-down--hidden {
    display: none !important;
  }

  .large-down--visible {
    display: block !important;
  }

  /* Base Grid */
  .large-down--one {
    width: calc(6.25% - 20px);
  }

  .large-down--two {
    width: calc(12.5% - 20px);
  }

  .large-down--three {
    width: calc(18.75% - 20px);
  }

  .large-down--four {
    width: calc(25% - 20px);
  }

  .large-down--five {
    width: calc(31.25% - 20px);
  }

  .large-down--six {
    width: calc(37.5% - 20px);
  }

  .large-down--seven {
    width: calc(43.75% - 20px);
  }

  .large-down--eight {
    width: calc(50% - 20px);
  }

  .large-down--nine {
    width: calc(56.25% - 20px);
  }

  .large-down--ten {
    width: calc(62.5% - 20px);
  }

  .large-down--eleven {
    width: calc(68.75% - 20px);
  }

  .large-down--twelve {
    width: calc(75% - 20px);
  }

  .large-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .large-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .large-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .large-down--sixteen {
    width: calc(100% - 20px);
  }

  /* Whole */
  .large-down--one-whole {
    width: calc(100% - 20px);
  }

  /* Halves */
  .large-down--one-half {
    width: calc(50% - 20px);
  }

  /* Thirds */
  .large-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .large-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  /* Fourths */
  .large-down--one-fourth {
    width: calc(25% - 20px);
  }

  .large-down--two-fourths {
    width: calc(50% - 20px);
  }

  .large-down--three-fourths {
    width: calc(75% - 20px);
  }

  /* Fifths */
  .large-down--one-fifth {
    width: calc(20% - 20px);
  }

  .large-down--two-fifths {
    width: calc(40% - 20px);
  }

  .large-down--three-fifths {
    width: calc(60% - 20px);
  }

  .large-down--four-fifths {
    width: calc(80% - 20px);
  }

  /* Sixths */
  .large-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .large-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .large-down--three-sixths {
    width: calc(50% - 20px);
  }

  .large-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .large-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  /* Sevenths */
  .large-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .large-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .large-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .large-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .large-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  /* Eighths */
  .large-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .large-down--two-eighths {
    width: calc(25% - 20px);
  }

  .large-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .large-down--four-eighths {
    width: calc(50% - 20px);
  }

  .large-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .large-down--six-eighths {
    width: calc(75% - 20px);
  }

  .large-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  /* Tenths */
  .large-down--one-tenth {
    width: calc(10% - 20px);
  }

  .large-down--two-tenths {
    width: calc(20% - 20px);
  }

  .large-down--three-tenths {
    width: calc(30% - 20px);
  }

  .large-down--four-tenths {
    width: calc(40% - 20px);
  }

  .large-down--five-tenths {
    width: calc(50% - 20px);
  }

  .large-down--six-tenths {
    width: calc(60% - 20px);
  }

  .large-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .large-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .large-down--nine-tenths {
    width: calc(90% - 20px);
  }

  /* Twelfths */
  .large-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .large-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .large-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .large-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .large-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .large-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .large-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .large-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .large-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .large-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .large-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  /* Offsets */
  .large-down--offset-by-one {
    left: calc(6.25%);
  }

  .large-down--offset-by-two {
    left: calc(12.5%);
  }

  .large-down--offset-by-three {
    left: calc(18.75%);
  }

  .large-down--offset-by-four {
    left: calc(25%);
  }

  .large-down--offset-by-five {
    left: calc(31.25%);
  }

  .large-down--offset-by-six {
    left: calc(37.5%);
  }

  .large-down--offset-by-seven {
    left: calc(43.75%);
  }

  .large-down--offset-by-eight {
    left: calc(50%);
  }

  .large-down--offset-by-nine {
    left: calc(56.25%);
  }

  .large-down--offset-by-ten {
    left: calc(62.5%);
  }

  .large-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .large-down--offset-by-twelve {
    left: calc(75%);
  }

  .large-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .large-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .large-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  /* Remove gutter on first and last column (must be consistent size) */
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }

  /* Remove side gutter on all columns */
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .equal-columns--outside-trim {
    /* Reset previous margins */
    /* Set new margins on right */
    /* Set new margins on left */
  }
  .equal-columns--outside-trim .large-down--one-half.large-down--one-half,
.equal-columns--outside-trim .large-down--eight.large-down--eight,
.equal-columns--outside-trim .large-down--one-third.large-down--one-third,
.equal-columns--outside-trim .large-down--one-fourth.large-down--one-fourth,
.equal-columns--outside-trim .large-down--four.large-down--four,
.equal-columns--outside-trim .large-down--one-fifth.large-down--one-fifth,
.equal-columns--outside-trim .large-down--one-sixth.large-down--one-sixth,
.equal-columns--outside-trim .large-down--one-seventh.large-down--one-seventh,
.equal-columns--outside-trim .large-down--two.large-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .large-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .large-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .large-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .large-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .large-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .large-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .large-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 1024px) {
  .equal-columns--outside-trim .large-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 1024px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .large-down--one-whole,
.has-no-side-gutter .large-down--one-half,
.has-no-side-gutter .large-down--eight,
.has-no-side-gutter .large-down--one-third,
.has-no-side-gutter .large-down--two-thirds,
.has-no-side-gutter .large-down--one-fourth,
.has-no-side-gutter .large-down--four,
.has-no-side-gutter .large-down--one-fifth,
.has-no-side-gutter .large-down--three-fifths,
.has-no-side-gutter .large-down--two-fifths,
.has-no-side-gutter .large-down--one-sixth,
.has-no-side-gutter .large-down--one-seventh,
.has-no-side-gutter .large-down--one-eighth,
.has-no-side-gutter .large-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .large-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .large-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .large-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .large-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .large-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .large-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .large-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .large-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .large-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .large-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .large-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .large-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .large-down--four {
    width: 25%;
  }
  .has-no-side-gutter .large-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .large-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .large-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 1024px) {
  .large-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--hidden {
    display: none !important;
  }

  .medium-down--visible {
    display: block !important;
  }

  /* Base Grid */
  .medium-down--one {
    width: calc(6.25% - 20px);
  }

  .medium-down--two {
    width: calc(12.5% - 20px);
  }

  .medium-down--three {
    width: calc(18.75% - 20px);
  }

  .medium-down--four {
    width: calc(25% - 20px);
  }

  .medium-down--five {
    width: calc(31.25% - 20px);
  }

  .medium-down--six {
    width: calc(37.5% - 20px);
  }

  .medium-down--seven {
    width: calc(43.75% - 20px);
  }

  .medium-down--eight {
    width: calc(50% - 20px);
  }

  .medium-down--nine {
    width: calc(56.25% - 20px);
  }

  .medium-down--ten {
    width: calc(62.5% - 20px);
  }

  .medium-down--eleven {
    width: calc(68.75% - 20px);
  }

  .medium-down--twelve {
    width: calc(75% - 20px);
  }

  .medium-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .medium-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .medium-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .medium-down--sixteen {
    width: calc(100% - 20px);
  }

  /* Whole */
  .medium-down--one-whole {
    width: calc(100% - 16px);
  }

  /* Halves */
  .medium-down--one-half {
    width: calc(50% - 20px);
  }

  /* Thirds */
  .medium-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .medium-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  /* Fourths */
  .medium-down--one-fourth {
    width: calc(25% - 20px);
  }

  .medium-down--two-fourths {
    width: calc(50% - 20px);
  }

  .medium-down--three-fourths {
    width: calc(75% - 20px);
  }

  /* Fifths */
  .medium-down--one-fifth {
    width: calc(20% - 20px);
  }

  .medium-down--two-fifths {
    width: calc(40% - 20px);
  }

  .medium-down--three-fifths {
    width: calc(60% - 20px);
  }

  .medium-down--four-fifths {
    width: calc(80% - 20px);
  }

  /* Sixths */
  .medium-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .medium-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .medium-down--three-sixths {
    width: calc(50% - 20px);
  }

  .medium-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .medium-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  /* Sevenths */
  .medium-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .medium-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .medium-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .medium-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .medium-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  /* Eighths */
  .medium-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .medium-down--two-eighths {
    width: calc(25% - 20px);
  }

  .medium-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .medium-down--four-eighths {
    width: calc(50% - 20px);
  }

  .medium-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .medium-down--six-eighths {
    width: calc(75% - 20px);
  }

  .medium-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  /* Tenths */
  .medium-down--one-tenth {
    width: calc(10% - 20px);
  }

  .medium-down--two-tenths {
    width: calc(20% - 20px);
  }

  .medium-down--three-tenths {
    width: calc(30% - 20px);
  }

  .medium-down--four-tenths {
    width: calc(40% - 20px);
  }

  .medium-down--five-tenths {
    width: calc(50% - 20px);
  }

  .medium-down--six-tenths {
    width: calc(60% - 20px);
  }

  .medium-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .medium-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .medium-down--nine-tenths {
    width: calc(90% - 20px);
  }

  /* Twelfths */
  .medium-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .medium-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .medium-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .medium-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .medium-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .medium-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .medium-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .medium-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .medium-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .medium-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .medium-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  /* Offsets */
  .medium-down--offset-by-one {
    left: calc(6.25%);
  }

  .medium-down--offset-by-two {
    left: calc(12.5%);
  }

  .medium-down--offset-by-three {
    left: calc(18.75%);
  }

  .medium-down--offset-by-four {
    left: calc(25%);
  }

  .medium-down--offset-by-five {
    left: calc(31.25%);
  }

  .medium-down--offset-by-six {
    left: calc(37.5%);
  }

  .medium-down--offset-by-seven {
    left: calc(43.75%);
  }

  .medium-down--offset-by-eight {
    left: calc(50%);
  }

  .medium-down--offset-by-nine {
    left: calc(56.25%);
  }

  .medium-down--offset-by-ten {
    left: calc(62.5%);
  }

  .medium-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .medium-down--offset-by-twelve {
    left: calc(75%);
  }

  .medium-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .medium-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .medium-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  /* Remove gutter on first and last column (must be consistent size) */
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }

  /* Remove side gutter on all columns */
}
@media only screen and (max-width: 798px) and (max-width: 798px) {
  .equal-columns--outside-trim {
    /* Reset previous margins */
    /* Set new margins on right */
    /* Set new margins on left */
  }
  .equal-columns--outside-trim .medium-down--one-half.medium-down--one-half,
.equal-columns--outside-trim .medium-down--eight.medium-down--eight,
.equal-columns--outside-trim .medium-down--one-third.medium-down--one-third,
.equal-columns--outside-trim .medium-down--one-fourth.medium-down--one-fourth,
.equal-columns--outside-trim .medium-down--four.medium-down--four,
.equal-columns--outside-trim .medium-down--one-fifth.medium-down--one-fifth,
.equal-columns--outside-trim .medium-down--one-sixth.medium-down--one-sixth,
.equal-columns--outside-trim .medium-down--one-seventh.medium-down--one-seventh,
.equal-columns--outside-trim .medium-down--two.medium-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .medium-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .medium-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .medium-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .medium-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .medium-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .medium-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .medium-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 798px) {
  .equal-columns--outside-trim .medium-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 798px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .medium-down--one-whole,
.has-no-side-gutter .medium-down--one-half,
.has-no-side-gutter .medium-down--eight,
.has-no-side-gutter .medium-down--one-third,
.has-no-side-gutter .medium-down--two-thirds,
.has-no-side-gutter .medium-down--one-fourth,
.has-no-side-gutter .medium-down--four,
.has-no-side-gutter .medium-down--one-fifth,
.has-no-side-gutter .medium-down--three-fifths,
.has-no-side-gutter .medium-down--two-fifths,
.has-no-side-gutter .medium-down--one-sixth,
.has-no-side-gutter .medium-down--one-seventh,
.has-no-side-gutter .medium-down--one-eighth,
.has-no-side-gutter .medium-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .medium-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .medium-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .medium-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .medium-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .medium-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .medium-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .medium-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .medium-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .medium-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .medium-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .medium-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .medium-down--four {
    width: 25%;
  }
  .has-no-side-gutter .medium-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .medium-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .medium-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 798px) {
  .medium-down--text-center {
    text-align: center !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--hidden {
    display: none !important;
  }

  .small-down--visible {
    display: block !important;
  }

  /* Base Grid */
  .small-down--one {
    width: calc(6.25% - 20px);
  }

  .small-down--two {
    width: calc(12.5% - 20px);
  }

  .small-down--three {
    width: calc(18.75% - 20px);
  }

  .small-down--four {
    width: calc(25% - 20px);
  }

  .small-down--five {
    width: calc(31.25% - 20px);
  }

  .small-down--six {
    width: calc(37.5% - 20px);
  }

  .small-down--seven {
    width: calc(43.75% - 20px);
  }

  .small-down--eight {
    width: calc(50% - 20px);
  }

  .small-down--nine {
    width: calc(56.25% - 20px);
  }

  .small-down--ten {
    width: calc(62.5% - 20px);
  }

  .small-down--eleven {
    width: calc(68.75% - 20px);
  }

  .small-down--twelve {
    width: calc(75% - 20px);
  }

  .small-down--thirteen {
    width: calc(81.25% - 20px);
  }

  .small-down--fourteen {
    width: calc(87.5% - 20px);
  }

  .small-down--fifteen {
    width: calc(93.75% - 20px);
  }

  .small-down--sixteen {
    width: calc(100% - 20px);
  }

  /* Whole */
  .small-down--one-whole {
    width: calc(100% - 20px);
  }

  /* Halves */
  .small-down--one-half {
    width: calc(50% - 20px);
  }

  /* Thirds */
  .small-down--one-third {
    width: calc(33.3333333333% - 20px);
  }

  .small-down--two-thirds {
    width: calc(66.6666666667% - 20px);
  }

  /* Fourths */
  .small-down--one-fourth {
    width: calc(25% - 20px);
  }

  .small-down--two-fourths {
    width: calc(50% - 20px);
  }

  .small-down--three-fourths {
    width: calc(75% - 20px);
  }

  /* Fifths */
  .small-down--one-fifth {
    width: calc(20% - 20px);
  }

  .small-down--two-fifths {
    width: calc(40% - 20px);
  }

  .small-down--three-fifths {
    width: calc(60% - 20px);
  }

  .small-down--four-fifths {
    width: calc(80% - 20px);
  }

  /* Sixths */
  .small-down--one-sixth {
    width: calc(16.6666666667% - 20px);
  }

  .small-down--two-sixths {
    width: calc(33.3333333333% - 20px);
  }

  .small-down--three-sixths {
    width: calc(50% - 20px);
  }

  .small-down--four-sixths {
    width: calc(66.6666666667% - 20px);
  }

  .small-down--five-sixths {
    width: calc(83.3333333333% - 20px);
  }

  /* Sevenths */
  .small-down--one-seventh {
    width: calc(14.2857142857% - 20px);
  }

  .small-down--two-sevenths {
    width: calc(28.5714285714% - 20px);
  }

  .small-down--three-sevenths {
    width: calc(42.8571428571% - 20px);
  }

  .small-down--four-sevenths {
    width: calc(57.1428571429% - 20px);
  }

  .small-down--five-sevenths {
    width: calc(71.4285714286% - 20px);
  }

  /* Eighths */
  .small-down--one-eighth {
    width: calc(12.5% - 20px);
  }

  .small-down--two-eighths {
    width: calc(25% - 20px);
  }

  .small-down--three-eighths {
    width: calc(37.5% - 20px);
  }

  .small-down--four-eighths {
    width: calc(50% - 20px);
  }

  .small-down--five-eighths {
    width: calc(62.5% - 20px);
  }

  .small-down--six-eighths {
    width: calc(75% - 20px);
  }

  .small-down--seven-eighths {
    width: calc(87.5% - 20px);
  }

  /* Tenths */
  .small-down--one-tenth {
    width: calc(10% - 20px);
  }

  .small-down--two-tenths {
    width: calc(20% - 20px);
  }

  .small-down--three-tenths {
    width: calc(30% - 20px);
  }

  .small-down--four-tenths {
    width: calc(40% - 20px);
  }

  .small-down--five-tenths {
    width: calc(50% - 20px);
  }

  .small-down--six-tenths {
    width: calc(60% - 20px);
  }

  .small-down--seven-tenths {
    width: calc(70% - 20px);
  }

  .small-down--eight-tenths {
    width: calc(80% - 20px);
  }

  .small-down--nine-tenths {
    width: calc(90% - 20px);
  }

  /* Twelfths */
  .small-down--one-twelfth {
    width: calc(8.3333333333% - 20px);
  }

  .small-down--two-twelfths {
    width: calc(16.6666666667% - 20px);
  }

  .small-down--three-twelfths {
    width: calc(25% - 20px);
  }

  .small-down--four-twelfths {
    width: calc(33.3333333333% - 20px);
  }

  .small-down--five-twelfths {
    width: calc(41.6666666667% - 20px);
  }

  .small-down--six-twelfths {
    width: calc(50% - 20px);
  }

  .small-down--seven-twelfths {
    width: calc(58.3333333333% - 20px);
  }

  .small-down--eight-twelfths {
    width: calc(66.6666666667% - 20px);
  }

  .small-down--nine-twelfths {
    width: calc(75% - 20px);
  }

  .small-down--ten-twelfths {
    width: calc(83.3333333333% - 20px);
  }

  .small-down--eleven-twelfths {
    width: calc(91.6666666667% - 20px);
  }

  /* Offsets */
  .small-down--offset-by-one {
    left: calc(6.25%);
  }

  .small-down--offset-by-two {
    left: calc(12.5%);
  }

  .small-down--offset-by-three {
    left: calc(18.75%);
  }

  .small-down--offset-by-four {
    left: calc(25%);
  }

  .small-down--offset-by-five {
    left: calc(31.25%);
  }

  .small-down--offset-by-six {
    left: calc(37.5%);
  }

  .small-down--offset-by-seven {
    left: calc(43.75%);
  }

  .small-down--offset-by-eight {
    left: calc(50%);
  }

  .small-down--offset-by-nine {
    left: calc(56.25%);
  }

  .small-down--offset-by-ten {
    left: calc(62.5%);
  }

  .small-down--offset-by-eleven {
    left: calc(68.75%);
  }

  .small-down--offset-by-twelve {
    left: calc(75%);
  }

  .small-down--offset-by-thirteen {
    left: calc(81.25%);
  }

  .small-down--offset-by-fourteen {
    left: calc(87.5%);
  }

  .small-down--offset-by-fifteen {
    left: calc(93.75%);
  }

  /* Remove gutter on first and last column (must be consistent size) */
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }

  /* Remove side gutter on all columns */
}
@media only screen and (max-width: 480px) and (max-width: 480px) {
  .equal-columns--outside-trim {
    /* Reset previous margins */
    /* Set new margins on right */
    /* Set new margins on left */
  }
  .equal-columns--outside-trim .small-down--one-half.small-down--one-half,
.equal-columns--outside-trim .small-down--eight.small-down--eight,
.equal-columns--outside-trim .small-down--one-third.small-down--one-third,
.equal-columns--outside-trim .small-down--one-fourth.small-down--one-fourth,
.equal-columns--outside-trim .small-down--four.small-down--four,
.equal-columns--outside-trim .small-down--one-fifth.small-down--one-fifth,
.equal-columns--outside-trim .small-down--one-sixth.small-down--one-sixth,
.equal-columns--outside-trim .small-down--one-seventh.small-down--one-seventh,
.equal-columns--outside-trim .small-down--two.small-down--two {
    margin-right: 20px;
    margin-left: 20px;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n) {
    margin-right: 0;
  }
  .equal-columns--outside-trim .small-down--one-half:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--eight:nth-of-type(2n+1),
.equal-columns--outside-trim .small-down--one-third:nth-of-type(3n+1),
.equal-columns--outside-trim .small-down--one-fourth:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--four:nth-of-type(4n+1),
.equal-columns--outside-trim .small-down--one-fifth:nth-of-type(5n+1),
.equal-columns--outside-trim .small-down--one-sixth:nth-of-type(6n+1),
.equal-columns--outside-trim .small-down--one-seventh:nth-of-type(7n+1),
.equal-columns--outside-trim .small-down--two:nth-of-type(8n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-whole:nth-of-type(1n+1) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-half {
    width: calc(50% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-third {
    width: calc(33.3333333333% - (20px - (20px / 3)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-fifth {
    width: calc(20% - (20px - (20px / 5)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-fourth {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-sixth {
    width: calc(16.6666666667% - (20px - (20px / 6)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--one-seventh {
    width: calc(14.2857142857% - (20px - (20px / 7)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--two {
    width: calc(12.5% - (20px - (20px / 8)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--four {
    width: calc(25% - (20px - (20px / 4)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--seven {
    width: calc(43.75% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--eight {
    width: calc(50% - (20px / 2));
  }
}
@media only screen and (max-width: 480px) {
  .equal-columns--outside-trim .small-down--nine {
    width: calc(56.25% - (20px - (20px / 2)));
  }
}
@media only screen and (max-width: 480px) {
  .has-no-side-gutter.has-background {
    padding-right: 0px;
    padding-left: 0px;
  }
  .has-no-side-gutter .small-down--one-whole,
.has-no-side-gutter .small-down--one-half,
.has-no-side-gutter .small-down--eight,
.has-no-side-gutter .small-down--one-third,
.has-no-side-gutter .small-down--two-thirds,
.has-no-side-gutter .small-down--one-fourth,
.has-no-side-gutter .small-down--four,
.has-no-side-gutter .small-down--one-fifth,
.has-no-side-gutter .small-down--three-fifths,
.has-no-side-gutter .small-down--two-fifths,
.has-no-side-gutter .small-down--one-sixth,
.has-no-side-gutter .small-down--one-seventh,
.has-no-side-gutter .small-down--one-eighth,
.has-no-side-gutter .small-down--two {
    margin-right: 0;
    margin-left: 0;
  }
  .has-no-side-gutter .small-down--one-whole {
    width: 100%;
  }
  .has-no-side-gutter .small-down--one-half {
    width: 50%;
  }
  .has-no-side-gutter .small-down--one-third {
    width: 33.3333333333%;
  }
  .has-no-side-gutter .small-down--one-fourth {
    width: 25%;
  }
  .has-no-side-gutter .small-down--one-fifth {
    width: 20%;
  }
  .has-no-side-gutter .small-down--two-fifths {
    width: 40%;
  }
  .has-no-side-gutter .small-down--three-fifths {
    width: 60%;
  }
  .has-no-side-gutter .small-down--one-sixth {
    width: 16.6666666667%;
  }
  .has-no-side-gutter .small-down--one-seventh {
    width: 14.2857142857%;
  }
  .has-no-side-gutter .small-down--one-eighth {
    width: 12.5%;
  }
  .has-no-side-gutter .small-down--two-thirds {
    width: 66.6666666667%;
  }
  .has-no-side-gutter .small-down--two {
    width: 12.5%;
  }
  .has-no-side-gutter .small-down--four {
    width: 25%;
  }
  .has-no-side-gutter .small-down--seven {
    width: 43.75%;
  }
  .has-no-side-gutter .small-down--eight {
    width: 50%;
  }
  .has-no-side-gutter .small-down--nine {
    width: 56.25%;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--show {
    display: block !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--hide {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-left {
    text-align: left !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-right {
    text-align: right !important;
  }
}
@media only screen and (max-width: 480px) {
  .small-down--text-center {
    text-align: center !important;
  }
}
/*================ Build Grid Push Classes ================*/
/* Can be used on inner div inside container element to apply borders (that maintain the same width as columns) */
.containerBorder--top::before {
  display: block;
  content: "";
  height: 0;
  width: calc(100% - 20px);
  border-top: thin solid #d1d1d1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  float: left;
}

.containerBorder--bottom::after {
  display: block;
  content: "";
  height: 0;
  width: calc(100% - 20px);
  border-top: thin solid #d1d1d1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  clear: both;
}

/* #Vendors
================================================== *//*!
 * Datepicker v0.6.3
 * https://github.com/fengyuanchen/datepicker
 *
 * Copyright (c) 2014-2017 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2017-09-29T14:28:02.764Z
 */
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  top: 0;
  touch-action: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 210px;
  z-index: -1;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.datepicker-container:after, .datepicker-container:before {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.datepicker-dropdown {
  border: 1px solid #ccc;
  box-shadow: 0 3px 6px #ccc;
  box-sizing: content-box;
  position: absolute;
  z-index: 1;
}

.datepicker-inline {
  position: static;
}

.datepicker-top-left, .datepicker-top-right {
  border-top-color: #39f;
}

.datepicker-top-left:after, .datepicker-top-left:before, .datepicker-top-right:after, .datepicker-top-right:before {
  border-top: 0;
  left: 10px;
  top: -5px;
}

.datepicker-top-left:before, .datepicker-top-right:before {
  border-bottom-color: #39f;
}

.datepicker-top-left:after, .datepicker-top-right:after {
  border-bottom-color: #fff;
  top: -4px;
}

.datepicker-bottom-left, .datepicker-bottom-right {
  border-bottom-color: #39f;
}

.datepicker-bottom-left:after, .datepicker-bottom-left:before, .datepicker-bottom-right:after, .datepicker-bottom-right:before {
  border-bottom: 0;
  bottom: -5px;
  left: 10px;
}

.datepicker-bottom-left:before, .datepicker-bottom-right:before {
  border-top-color: #39f;
}

.datepicker-bottom-left:after, .datepicker-bottom-right:after {
  border-top-color: #fff;
  bottom: -4px;
}

.datepicker-bottom-right:after, .datepicker-bottom-right:before, .datepicker-top-right:after, .datepicker-top-right:before {
  left: auto;
  right: 10px;
}

.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%;
}

.datepicker-panel > ul:after, .datepicker-panel > ul:before {
  content: " ";
  display: table;
}

.datepicker-panel > ul:after {
  clear: both;
}

.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px;
}

.datepicker-panel > ul > li:hover {
  background-color: #e5f2ff;
}

.datepicker-panel > ul > li.muted, .datepicker-panel > ul > li.muted:hover {
  color: #999;
}

.datepicker-panel > ul > li.highlighted {
  background-color: #e5f2ff;
}

.datepicker-panel > ul > li.highlighted:hover {
  background-color: #cce5ff;
}

.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
  color: #39f;
}

.datepicker-panel > ul > li.disabled, .datepicker-panel > ul > li.disabled:hover {
  background-color: #fff;
  color: #ccc;
  cursor: default;
}

.datepicker-panel > ul > li.disabled.highlighted, .datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #e5f2ff;
}

.datepicker-panel > ul > li[data-view="month next"], .datepicker-panel > ul > li[data-view="month prev"], .datepicker-panel > ul > li[data-view="year next"], .datepicker-panel > ul > li[data-view="year prev"], .datepicker-panel > ul > li[data-view="years next"], .datepicker-panel > ul > li[data-view="years prev"], .datepicker-panel > ul > li[data-view=next] {
  font-size: 18px;
}

.datepicker-panel > ul > li[data-view="month current"], .datepicker-panel > ul > li[data-view="year current"], .datepicker-panel > ul > li[data-view="years current"] {
  width: 150px;
}

.datepicker-panel > ul[data-view=months] > li, .datepicker-panel > ul[data-view=years] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 52.5px;
}

.datepicker-panel > ul[data-view=week] > li, .datepicker-panel > ul[data-view=week] > li:hover {
  background-color: #fff;
  cursor: default;
}

.datepicker-hide {
  display: none;
}
/* #Plyr
================================================== */
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 50px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}

.plyr audio, .plyr video {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5764;
  border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__captions .plyr__caption div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.8);
  border: 0;
  border-radius: 100%;
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #00b3ff;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px;
}

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4a5764;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5764;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #c1c9d1;
  box-shadow: 0 1px 0 #fff;
  content: "";
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #00b3ff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  color: #00b3ff;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  height: 5px;
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: calc(100% + 13px);
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress__buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 201, 209, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 41, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 41, 47, 0.6) 50%, rgba(35, 41, 47, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}
.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }

  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }

  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: rgba(35, 41, 47, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c9d1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

/* #Model Viewer
================================================== */
.shopify-model-viewer-ui {
  position: relative;
  display: block;
  cursor: pointer;
}

.shopify-model-viewer-ui model-viewer {
  transform: translateZ(0);
  z-index: 1;
}

.shopify-model-viewer-ui model-viewer.shopify-model-viewer-ui__disabled {
  pointer-events: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen model-viewer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: block;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--desktop.shopify-model-viewer-ui--child-focused .shopify-model-viewer-ui__controls-area, .shopify-model-viewer-ui.shopify-model-viewer-ui--desktop:hover .shopify-model-viewer-ui__controls-area {
  opacity: 1;
}

.shopify-model-viewer-ui:not(.shopify-model-viewer-ui--desktop) .shopify-model-viewer-ui__controls-area {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  display: flex;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  transition: opacity 0.1s linear;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:not(.shopify-model-viewer-ui__controls-area--playing) {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #3a3a3a;
  border-radius: 0;
  border: none;
  margin: 0;
  cursor: pointer;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button:not(.focus-visible) {
  outline: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control {
  padding: 0;
  height: 44px;
  width: 44px;
  background: 0 0;
  position: relative;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active {
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.05);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  position: absolute;
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 28px;
  bottom: 0;
  right: 8px;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon {
  width: 44px;
  height: 44px;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background: #fff;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate3d(-50%, -50%, 0);
  height: 62px;
  width: 62px;
  z-index: 1;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon {
  width: 60px;
  height: 60px;
  z-index: 1;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: block;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__spritesheet {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* animate.css -http://daneden.me/animate
* Version - 3.6.0
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2018 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  animation-duration: 0.75s;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

.delay-0s {
  animation-delay: 0;
}

.delay-025s {
  animation-delay: 0.25s;
  opacity: 0;
}

.delay-05s {
  animation-delay: 0.5s;
  opacity: 0;
}

.delay-075s {
  animation-delay: 0.75s;
  opacity: 0;
}

.delay-1s {
  animation-delay: 1s;
  opacity: 0;
}

.animate_right,
.animate_left,
.animate_up,
.animate_down {
  opacity: 0;
}
@media only screen and (max-width: 798px) {
  .animate_right,
.animate_left,
.animate_up,
.animate_down {
    opacity: 1;
  }
}

/* Backwards compatibility for Flexslider */
.slider .flickity-slider li,
.flexslider .flickity-slider li {
  width: 100%;
  list-style: none;
  padding-left: 0.1%;
  /* Fix for Flickity pixel line */
  padding-right: 0.1%;
  /* Fix for Flickity pixel line */
  margin: 0 !important;
  /* Overwrite content margin */
}
.slider .flickity-slider li .position-center.caption,
.flexslider .flickity-slider li .position-center.caption {
  justify-content: center;
}
.slider .flickity-slider li img,
.flexslider .flickity-slider li img {
  width: 100%;
}
.slider .flickity-page-dots,
.flexslider .flickity-page-dots {
  margin: 0;
}

/* #Fonts and icons
================================================== */
@font-face {
  font-family: "artisan";
  src: url("artisan.eot?dipe04");
  src: url("artisan.eot?dipe04#iefix") format("embedded-opentype"), url("artisan.ttf?dipe04") format("truetype"), url("artisan.woff?dipe04") format("woff"), url("artisan.svg?dipe04#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "artisan" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.icon-calendar:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-cross:before {
  content: "";
}

.icon-triangle-down:before,
.icon-down-caret:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-triangle-left:before,
.icon-left-caret:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-location-pin:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-right-arrow:before {
  content: "";
}

.icon-triangle-right:before,
.icon-right-caret:before {
  content: "";
}

.icon-shopping-purse:before {
  content: "";
}

.icon-shopping-basket:before {
  content: "";
}

.icon-shopping-cart:before {
  content: "";
}

.icon-mobile:before {
  content: "";
}

.icon-triangle-up:before,
.icon-up-caret:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-behance:before {
  content: "";
}

.icon-vine:before {
  content: "";
}

.icon-houzz:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-pinterest:before {
  content: "𑩩";
}

.icon-mail:before {
  content: "𑩠";
}

.icon-snapchat:before {
  content: "𑩭";
}

.icon-dribbble:before {
  content: "𑩟";
}

.icon-tumblr:before {
  content: "𑩯";
}

.icon-flickr:before {
  content: "𑩢";
}

.icon-youtube:before {
  content: "𑩲";
}

.icon-linkedin:before {
  content: "𑩦";
}

.icon-vimeo:before {
  content: "𑩱";
}

.icon-facebook:before {
  content: "𑩡";
}

.icon-twitter:before {
  content: "𑩰";
}

/* Icon global styling */
.icon-down-caret {
  font-size: 12px;
  width: 12px;
}

#mobileMenu .icon-down-caret {
  font-size: 20px;
  width: 20px;
}

/* #Typography
================================================== */
.logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
}

/*  Headings  */
h1,
.h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 31px;
  font-weight: 500;
}

h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 24px;
}

h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 21px;
}

h5 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 20px;
}

h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 18px;
}

p {
  font-style: normal;
  margin: 0 0 1em;
  line-height: 2;
}

sub {
  font-size: smaller;
}

em,
i {
  font-style: italic;
}

strong,
b {
  font-weight: bold;
}

small {
  font-size: smaller;
}

/*  Blockquotes  */
blockquote,
blockquote p {
  font-size: larger;
  line-height: 1.2;
  font-style: italic;
}

blockquote {
  margin: 0 0 20px;
}
blockquote cite {
  display: block;
  font-size: smaller;
}
blockquote cite:before {
  content: "— ";
}

.sectionHeader {
  text-align: center;
  padding-bottom: 40px;
}
@media only screen and (max-width: 798px) {
  .sectionHeader {
    padding-bottom: 20px;
  }
}

.sectionHeader__content {
  padding-top: 6px;
  padding-bottom: 6px;
}

.sectionHeader__pretext p {
  margin: 0 0 5px 0;
}

.sectionHeader__headline {
  margin: 0;
}

a.sectionHeader__link {
  color: #000000;
}.sectionHeader__topAnimation {
    height: 75px;
  }

@media only screen and (max-width: 480px) {
    .sectionHeader__topAnimation {
      height: 30px;
    }
  }

.sectionHeader__topFlourish {
    height: 0;
    width: 0;
    border-right: thin solid #000000;
    margin: 0 auto;
    transition: all 0.5s ease-in;
    opacity: 0;
  }

/*.sectionHeader__content {
    opacity: 0;
    transition: opacity 0.2s 0.2s ease-in;
  }

.animateHeader--false .sectionHeader__content,
.animateHeader--long .sectionHeader__content {
    opacity: 1;
  }*/

.sectionHeader__bottomAnimation {
    height: 75px;
  }

@media only screen and (max-width: 480px) {
    .sectionHeader__bottomAnimation {
      height: 30px;
    }
  }

.sectionHeader__bottomFlourish {
    height: 0;
    width: 0;
    border-right: thin solid #000000;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s 0.8s ease-out;
    opacity: 0;
  }

.sectionHeader__bottomFlourish::after {
    content: "";
    display: block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: #ffffff;
    border: thin solid #000000;
    position: absolute;
    top: 100%;
    left: calc(50% + 0.5px);
    transform: translateX(-50.1%);
    transition: opacity 0.2s 1.2s ease-in;
    opacity: 0;
  }

.animateHeader--false .sectionHeader__topFlourish,
.animateHeader--long .sectionHeader__topFlourish {
    height: 75px;
    opacity: 1;
  }

@media only screen and (max-width: 480px) {
    .animateHeader--false .sectionHeader__topFlourish,
.animateHeader--long .sectionHeader__topFlourish {
      height: 30px;
    }
  }

.animateHeader--false .sectionHeader__bottomFlourish,
.animateHeader--long .sectionHeader__bottomFlourish {
    height: calc(75px - 7px);
    opacity: 1;
  }

@media only screen and (max-width: 480px) {
    .animateHeader--false .sectionHeader__bottomFlourish,
.animateHeader--long .sectionHeader__bottomFlourish {
      height: calc(30px - 7px);
    }
  }

.animateHeader--false .sectionHeader__bottomFlourish::after,
.animateHeader--long .sectionHeader__bottomFlourish::after {
    opacity: 1;
  }.filterBackground--true {
  position: relative;
}
.filterBackground--true select {
  border-color: #000000;
}

/* #Links
================================================== */
a,
a:visited {
  color: #a96269;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover,
a:focus {
  color: #a96269;
}

a,
button,
input,
select,
textarea,
label,
summary {
  touch-action: manipulation;
}

/* #Lists
================================================== */
ul {
  list-style: disc outside;
}
ul.square {
  list-style: square outside;
}
ul.circle {
  list-style: circle outside;
}
ul.disc {
  list-style: disc outside;
}
ul.large li {
  line-height: 1.5;
}
ul.none {
  list-style: none outside;
  margin-left: 0;
  padding-left: 0;
}
ul.border {
  list-style: none outside;
  line-height: 1.5;
}
ul.border li {
  border-bottom: 1px solid #d1d1d1;
  list-style: none outside none;
  padding: 12px 0;
  margin-bottom: 0;
}
ul.horizontal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
ul.horizontal li {
  float: left;
  padding-right: 10px;
}

/* #Placeholders
================================================== */



.placeholder-svg {
  fill: #cda4a8;
  background-color: #bb8388;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  display: block;
}

.placeholder-svg.imageWithText__image-one {
  background-color: #dfc5c7;
}

.banner .placeholder-svg {
  min-height: 400px;
}
@media only screen and (max-width: 798px) {
  .banner .placeholder-svg {
    min-height: 250px;
  }
}

/* #Videos
================================================== */
.video-wrapper {
  position: relative;
  background-color: #ffffff;
  /* Allows users to click embedded iframe ui when video paused */
}
.video-wrapper .plyr--video.plyr--paused .plyr__video-embed iframe {
  z-index: 5;
}
.video-wrapper .plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: none;
}
.video-wrapper.play-button-icon--visible .plyr--paused .plyr__control--overlaid {
  display: block;
  opacity: 1;
}
.video-wrapper .caption__overlay {
  background-color: transparent !important;
  /* Override inline styling */
}
.video-wrapper .video-wrapper__image img {
  object-fit: cover;
}
@media only screen and (min-width: 799px) {
  .video-wrapper .video-wrapper__image img {
    height: 500px;
  }
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 798px) {
  .video-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.video-wrapper .textButton {
  cursor: pointer;
}
.video-wrapper .caption {
  z-index: 10;
  pointer-events: none;
}
.video-wrapper a.video__playButton {
  transition: all 0.5s;
  position: relative;
}
.video-wrapper a.video__playButton::before {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 3px;
  width: 0;
  display: block;
  height: 1px;
  content: "";
  transition: width 0.5s;
}
.video-wrapper a.video__playButton:hover::before, .video-wrapper a.video__playButton:focus::before {
  width: 100%;
}

/* Only want to target embedded iframes outside of product galleries and video sections */
:not(.plyr__video-wrapper) .plyr__video-embed {
  position: relative;
}

/* #Buttons
================================================== */
a.button,
.button,
button,
input[type=submit],
input[type=reset],
input[type=button],
.action_button,
a.action_button,
input.action_button[type=submit],
input.action_button[type=button],
.shopify-payment-button__button.shopify-payment-button__button--unbranded {
  background: #f58f98;
  color: #ffffff;
  border: thin solid #f58f98;
  border-radius: 0;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  min-height: 44px;
  height: 40px;
  line-height: 1.2;
  vertical-align: top;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  -webkit-appearance: none;
          appearance: none;
}
.baseButton {
  padding: 0 2.5em 0 .8em;
  text-align: left;
  min-height: 60px;
  height: 60px;
  width: 100%;
  line-height: 1.4;
  position: relative;
  box-shadow: 2px 2px 6px rgba(0,0,0,.25);
  justify-content: flex-start;
  font-weight: normal;
}
.baseButton::before, .baseButton::after {
  content: "";
  position: absolute;
  width: 2.5vw;
  height: 2.5vw;
  color: #fff;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.baseButton::before {
  right: 4vw;
}
.baseButton::after {
  right: 5.2vw;
}

@media screen and (max-width: 500px) {
  .series-single__box .baseButton {
    font-size: 3.8vw;
  }
  .baseButton {
    font-size: 15px;
  }
}
@media screen and (min-width: 501px) {
  .baseButton {
    padding: 0 2.5em 0 1.2em;
    min-height: 65px;
    height: 65px;
  }
  .baseButton::before, .baseButton::after {
    width: 12px;
    height: 12px;
  }
  .baseButton::before {
    right: 15px;
  }
  .baseButton::after {
    right: 20px;
  }
}

.ie a.button,
.ie .button,
.ie button,
.ie input[type=submit],
.ie input[type=reset],
.ie input[type=button],
.ie .action_button,
.ie a.action_button,
.ie input.action_button[type=submit],
.ie input.action_button[type=button] {
  line-height: 40px;
}

a.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.action_button:hover,
input.action_button[type=submit]:hover,
input.action_button[type=button]:hover,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background: #a96269;
  border-color: #a96269;
}

a.button:active,
button:active,
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active,
.action_button:active,
input.action_button[type=submit]:active,
input.action_button[type=button]:active,
.shopify-payment-button__button.shopify-payment-button__button--unbranded:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  outline: 0;
}

.add_to_cart,
form.product_form input.add_to_cart {
  width: 100%;
  margin-bottom: 0px;
}
.add_to_cart span,
form.product_form input.add_to_cart span {
  display: block;
}

input[type=submit],
input[type=reset],
input[type=button],
input.action_button[type=submit],
input.action_button[type=button],
button.action_button {
  display: inline-block;
}

a.hoverButton {
  position: relative;
  display: inline-block;
  transition: all 0.5s;
}
a.hoverButton::before {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 3px;
  width: 0;
  display: block;
  height: 1px;
  background-color: #a96269;
  content: "";
  transition: width 0.5s;
}
a.hoverButton:hover::before, a.hoverButton:focus::before {
  width: 100%;
}

.textButton__buttonArrow,
.textButton__leftButtonArrow {
  transition: color 0s, transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.textButton:hover .textButton__buttonArrow {
  display: inline-block;
  transform: translateX(5px);
}

.textButton:hover .textButton__buttonArrow.move--left {
  transform: translateX(-5px);
}

.textButton:hover .textButton__leftButtonArrow {
  display: inline-block;
  transform: translateX(-5px);
}

a.secondary_button,
a.continue_button,
input.secondary_button,
input.continue_button {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-family: 'Noto Serif JP', serif;
  color: #f58f98;
  font-weight: bold;
  background-color: transparent;
  border-radius: 0;
  border: thin solid #f58f98;
}

a.continue_button:hover,
input.secondary_button:hover,
input.continue_button:hover {
  border-color: #a96269;
  color: #ffffff;
}
a.secondary_button:hover {
  background-color: #F5E5E6;
}

/* Shopify smart payment buttons */
.add_to_cart.action_button {
  min-height: 80px;
  margin-bottom: 0;
  overflow: hidden;
  font-size: 24px;
}
  
@media screen and (min-width: 799px) {
  .add_to_cart.action_button {
    min-height: 65px;
    font-size: 20px;
  }
}


.shopify-payment-button {
  position: relative;
}

.shopify-payment-button button {
  line-height: 1.2;
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
}

.shopify-payment-button__button--branded svg {
  width: 200px !important;
  /* Fix for button in modal - svg issues */
}

.shopify-payment-button__button--branded,
.shopify-payment-button__button--unbranded {
  overflow: hidden;
  min-height: 44px;
}

button.shopify-payment-button__more-options {
  color: #000000;
  box-shadow: none;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0;
  padding: 16px 0 28px;
  max-width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
button.shopify-payment-button__more-options:hover {
  background-color: transparent;
  border: none;
}

.action_button.action_button--secondary {
  background-color: transparent;
  border: thin solid #f58f98;
  color: #f58f98;
  box-shadow: none;
  line-height: 1.2;
  min-height: 60px;
}

.additional-checkout-button.additional-checkout-button--paypal {
  min-width: 100% !important;
}

.additional-checkout-button + .additional-checkout-button {
  margin-left: 0 !important;
  max-width: 100% !important;
}
  
.product_form button {
  height: 60px!important;
  font-size: 20px!important;
}
.product_form .action_button--secondary:hover {
  background: #FEF6F7;
}

/* #Tabs
================================================== */
ul.tabs {
  display: block;
  margin: 25px 0;
  border-bottom: solid 1px #d1d1d1;
  border-top: 0;
  list-style: none outside;
  margin-left: 0;
  text-transform: uppercase;
  padding-left: 0;
}

ul.tabs li {
  display: inline-block;
  width: auto;
  height: 30px;
  padding: 0;
  margin-bottom: 0;
  border: 0;
  list-style: none outside;
  margin-left: 0;
  cursor: pointer;
}

ul.tabs li a {
  display: block;
  text-decoration: none;
  width: auto;
  height: 29px;
  line-height: 30px;
  margin-right: 60px;
  font-size: 13px;
  outline: none;
}
@media (max-width: 960px) {
  ul.tabs li a {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 798px) {
  ul.tabs li a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 480px) {
  ul.tabs li a {
    margin-right: 20px;
  }
}

ul.tabs li a.active {
  border-bottom: solid 3px #d1d1d1;
  background-color: #ffffff;
  border-bottom: solid 3px #aaaaaa;
  height: 31px;
  position: relative;
  border-right-width: 1px;
  color: #000000;
}

ul.tabs li:last-child a {
  margin: 0;
}

ul.tabs-content {
  padding-top: 20px;
  margin: 0;
  display: block;
  border: 0;
  padding-left: 0;
}

ul.tabs-content > li {
  display: none;
  border: 0;
}

ul.tabs-content > li.active {
  display: block;
  border: 0;
  padding-left: 0px;
}

ul.tabs-content ul {
  padding-left: 20px;
}

/* #Forms
================================================== */
select {
  background: url(//silk100.co.jp/cdn/shop/t/6/assets/select.png?v=21507735589305732571776295750) no-repeat 96% 50%;
  background-size: 12px;
  border: thin solid #d1d1d1;
  color: #000000;
  -webkit-appearance: none;
          appearance: none;
  padding: 10px;
  border-radius: 0px;
  padding-right: 10%;
  background-color: #ffffff;
  outline: none;
  color: #000000;
}
select::-ms-expand {
  display: none;
}

input {
  border-radius: 0;
  display: block;
  min-height: 44px;
  padding: 0 10px;
  margin: 0;
  line-height: 22px;
  border: thin solid #000000;
  outline: none;
  background-color: #ffffff;
  color: #000000;
  margin-bottom: 15px;
  -webkit-appearance: none;
          appearance: none;
  text-rendering: optimizeLegibility;
}

input::-webkit-input-placeholder {
  color: #000000;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
}

input:-ms-input-placeholder {
  color: #000000;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
          appearance: checkbox;
  display: inline-block;
  width: auto;
  background-color: transparent;
  min-height: 0;
}

input[type=radio] {
  -webkit-appearance: radio;
          appearance: radio;
  display: inline-block;
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

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

input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
}

textarea {
  background-color: #ffffff;
  border-radius: 0;
  color: #000000;
  -webkit-appearance: none;
          appearance: none;
}

.has-float-label, .contactBlock__Radio, .contactBlock__Textarea {
  display: flex;
  align-items: baseline;
  
}
.has-float-label {
  flex-direction: column-reverse;  
}
.contactBlock label {
  width: 180px;
  flex-shrink: 0;
  font-size: 16px !important;
}
.contactBlock__Radio li {
  display: flex;
  align-items: center;
}
.contactBlock__Checkbox label {
  display: none;
}
.contactBlock__Checkbox li {
  align-items: center;
  display: flex;
  justify-content: center;
}
.contactBlock__Checkbox li label {
  font-size: 14px!important;
  color: #A96269;
  display: block;
  width: 100%;
}
#contact_form .quote {
  text-align: center;
  font-size: 1.5em;
  margin: 1.5em 0 0;
  color: #A96269;
  font-weight: bold;
  background: #fff;
  padding: 1em 1em 1.2em;
  box-shadow: 3px 3px 6px rgba(0,0,0,.2);
  line-height: 1.5;
}
  
@media screen and (min-width: 591px) {
  .has-float-label {
    flex-direction: row-reverse;  
  }
  .contactBlock__Checkbox li label {
    width: auto;
  }
}
  
@media screen and (max-width: 590px) {
  .contactBlock__Radio, .contactBlock__Textarea {
    flex-direction: column;
  }
}
  
.has-float-label input,
.has-float-label select {
  width: 100%;
  font-size: inherit;
  padding-top: 2px;
  padding-left: 0px;
  margin-bottom: 2px;
  border: 0;
  top: 5px;
  border-radius: 0;
  border: 1px solid #d1d1d1;
}
.has-float-label input:-ms-input-placeholder, .has-float-label select:-ms-input-placeholder {
  opacity: 0.5;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.has-float-label input::placeholder,
.has-float-label select::placeholder {
  opacity: 0.5;
  transition: all 0.2s;
}
.has-float-label input:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label select:placeholder-shown:not(:focus):-ms-input-placeholder {
  opacity: 0;
}
.has-float-label input:-ms-input-placeholder:not(:focus)::placeholder, .has-float-label select:-ms-input-placeholder:not(:focus)::placeholder {
  opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus)::placeholder,
.has-float-label select:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}
.has-float-label input:-ms-input-placeholder:not(:focus) + *, .has-float-label select:-ms-input-placeholder:not(:focus) + * {
  font-size: 1rem;
}
.has-float-label input:placeholder-shown:not(:focus) + *,
.has-float-label select:placeholder-shown:not(:focus) + * {
  font-size: 1rem;
}
.has-float-label input:focus,
.has-float-label select:focus {
  outline: none;
  border-color: rgba(209, 209, 209, 0.5);
}
.has-float-label input:not(:-ms-input-placeholder):focus ~ label, .has-float-label select:not(:-ms-input-placeholder):focus ~ label {
  font-size: 75%;
}
.has-float-label input:not(:placeholder-shown):focus ~ label,
.has-float-label select:not(:placeholder-shown):focus ~ label {
  font-size: 75%;
}
.has-float-label input:not(:-ms-input-placeholder) ~ label, .has-float-label select:not(:-ms-input-placeholder) ~ label {
  font-size: 100%;
}
.has-float-label input:not(:placeholder-shown) ~ label,
.has-float-label select:not(:placeholder-shown) ~ label {
  font-size: 100%;
}

.contactBlock {
  margin: 0 0 1.5em;
}
.contactBlock input,
.contactBlock select,
.contactBlock label,
.contactBlock li {
  color: #000000;
}
.contactBlock input,
.contactBlock select,
.contactBlock textarea {
  background-color: #ffffff;
}

.contactBlock__Datepicker input {
  font-size: 1rem;_Checkbox
  width: 100%;
  border: transparent 1px solid;
  border-bottom: 1px solid #d1d1d1;
}

.contactBlock__Checkbox ul {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
}
.contactBlock__Checkbox ul input {
  margin-right: 10px;
}


.contactBlock__Dropdown select {
  font-size: 1rem;
  width: 100%;
  border: transparent 1px solid;
  border-bottom: 1px solid #d1d1d1;
  padding-left: 0;
}

.contactBlock__Radio li input,
.contactBlock__Checkbox li input {
  margin-bottom: 0;
  vertical-align: middle;
  min-height: 0;
}
.contactBlock__Radio li label{
  display: inline-block;
  width: 85%;
}

.contactBlock__Radio ul {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
}
.contactBlock__Radio ul input {
  margin-right: 10px;
  min-height: auto;
}
.contactBlock__Radio ul span {
  height: 35px;
  display: inline-block;
}


.contactBlock__Textarea textarea {
  padding: 5px 10px;
  border: thin solid #d1d1d1;
  width: 100%;
}
.contactBlock__Textarea textarea:placeholder {
  color: #000000;
  display: block;
}

.contactBlock input {
  min-height: 45px;
  padding: 5px 10px;
}

.product_form--dropdown .selector-wrapper {
  display: inline-block;
  margin-bottom: -1px;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .product_form--dropdown .selector-wrapper {
    width: 100% !important;
    /* used to overwrite JS width */
  }
}
.product_form--dropdown .productForm__select {
  margin-bottom: 20px;
}
.product_form--dropdown .productForm__select.multiple-options {
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .product_form--dropdown .productForm__select.multiple-options {
    width: 100%;
  }
}
.product_form--dropdown .productForm__select.multiple-options .selector-wrapper {
  display: inline-flex;
}
.product_form--dropdown .productForm__select.multiple-options select {
  position: relative;
  flex-grow: 1;
}
.product_form--dropdown .productForm__select select {
  border: 0;
  background-color: rgba(0, 0, 0, 0.05);
  background-size: 12px;
  line-height: 1.5;
  background-position: calc(100% - 10px);
  padding: 10px 50px 10px 10px;
  margin-bottom: 1px;
  max-width: 100%;
  min-height: 48px;
  white-space: normal;
  width: calc(100% - 100px);
}
@media only screen and (max-width: 798px) {
  .product_form--dropdown .productForm__select select {
    flex-grow: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .product_form--dropdown .productForm__select select {
    width: 100% !important;
    /* Used to overwrite JS width */
  }
}
.product_form--dropdown .productForm__select label {
  border: 0;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 12px 0 10px 10px;
  line-height: 1.5;
  font-weight: bold;
  display: inline-block;
  min-width: 100px;
  min-height: 48px;
}
.product_form--dropdown .productForm__select label::after {
  content: "-";
  margin-left: 10px;
}
.product_form--dropdown .multiple-options .selector-wrapper {
  margin-bottom: 0.5em;
  clear: both;
  float: left;
}
.product_form--dropdown .single-option {
  width: 100%;
  display: flex;
}
@media only screen and (min-width: 1025px) {
  .product_form--dropdown .single-option .selector-wrapper,
.product_form--dropdown .single-option select {
    min-width: 70%;
  }
}

.notify_form {
  border: thin solid #000000;
  padding: 20px;
  margin: 20px 0 0 0;
}
.notify_form.signed-in-notify {
  display: inline-block;
}
.notify_form.signed-in-notify .action_button {
  margin-top: 15px;
  width: auto;
}
.notify_form .message {
  display: none;
}
.notify_form .notify_email {
  width: calc(65% - 20px);
  margin-right: 10px;
  min-height: 44px;
}
@media only screen and (max-width: 798px) {
  .notify_form .notify_email {
    margin-bottom: 0;
  }
}
.notify_form .action_button {
  margin-top: 10px;
  width: 35%;
}
.notify_form .notify_email,
.notify_form .contact_form .action_button {
  margin-top: 10px;
  display: inline-block;
}
@media only screen and (max-width: 798px) {
  .notify_form .notify_email,
.notify_form .contact_form .action_button {
    width: 100%;
  }
}
.notify_form .notify-form__label {
  display: block;
}

/* iOS zoom fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 1024px) {
  select,
textarea,
input:focus {
    font-size: 16px;
  }
}
/* #Images
================================================== */
/* Lazyloading styles */
.lazyload--fade-in {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  filter: blur(2px);
  transform: translate3d(0, 0, 0);
  transition: filter 200ms;
}

.lazyload--fade-in.lazyloaded {
  filter: blur(0);
}

img[data-sizes=auto] {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Ensures that small images are not stretched larger */
.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Zoom plugin */
.zoomImg {
  background-color: #ffffff;
}

.zoom-container {
  width: 100%;
  display: block;
}

/* #Misc
================================================== */
.allow-clickthrough {
  pointer-events: none !important;
}

.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.right {
  float: right;
  position: relative;
}

.left {
  float: left;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.center {
  text-align: center;
}

.relative {
  position: relative;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

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

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

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

.visuallyhidden {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

body.blocked-scroll {
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%;
  top: 0;
}

.overflow--hidden {
  overflow: hidden;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.fallbackImage {
  max-width: 100%;
}

.svgShape {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.svgShape svg {
  display: inline-block;
}

.shape--star {
  -webkit-clip-path: polygon(50% 0%, 68% 26%, 98% 35%, 78% 61%, 79% 91%, 49% 78%, 21% 91%, 22% 61%, 2% 35%, 31% 26%);
          clip-path: polygon(50% 0%, 68% 26%, 98% 35%, 78% 61%, 79% 91%, 49% 78%, 21% 91%, 22% 61%, 2% 35%, 31% 26%);
}

.shape--circle {
  border-radius: 50%;
}

.shape--hexagon {
  -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
          clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.shopify-product-reviews-badge {
  height: 34px;
  display: block;
}

.collection__featuredImage .shopify-product-reviews-badge {
  height: 46px;
  display: block;
}

.spr-badge {
  padding: 5px 0;
}

.thumbnail .spr-badge-caption {
  display: none;
}

.smallScreen--hide {
  display: block !important;
  /* To ensure overriding styling */
}
@media only screen and (max-width: 798px) {
  .smallScreen--hide {
    display: none !important;
    /* To ensure overriding styling */
  }
}

.smallScreen--show {
  display: none !important;
  /* To ensure overriding styling */
}
@media only screen and (max-width: 798px) {
  .smallScreen--show {
    display: block !important;
    text-align: center;
    /* To ensure overriding styling */
  }
}

/* Global slider button styling */
.flickity-enabled:hover .flickity-prev-next-button {
  opacity: 1;
}

.flickity-page-dots {
  display: none;
  position: static;
  margin-top: 20px;
}
@media only screen and (max-width: 798px) {
  .flickity-page-dots {
    display: block;
    height: 10px;
    line-height: 10px;
  }
}

@media only screen and (min-width: 481px) and (max-width: 798px) {
  .slideshow .flickity-page-dots {
    display: block;
  }
}

button.flickity-prev-next-button {
  opacity: 0.5;
  border-radius: 0;
  border: 0;
  background: transparent;
}
@media only screen and (max-width: 798px) {
  button.flickity-prev-next-button {
    display: none;
  }
}
button.flickity-prev-next-button:hover {
  border-color: transparent;
  border: 0;
}
button.flickity-prev-next-button:active {
  box-shadow: none;
}
button.flickity-prev-next-button.next {
  right: 10px;
}
button.flickity-prev-next-button.previous {
  left: 10px;
}

button.flickity-prev-next-button.next:hover {
  right: 5px;
}
button.flickity-prev-next-button.next:focus {
  right: 5px;
  outline: 1px;
}

button.flickity-prev-next-button.previous:hover {
  left: 5px;
}
button.flickity-prev-next-button.previous:focus {
  left: 5px;
  outline: 1px;
}

/* To ensure the Shadow DOM content doesn't appear in Safari */
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none;
  position: absolute;
  right: 0;
}

/* #Fancybox
================================================== */
.fancybox-bg {
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s linear;
}

.fancybox-toolbar {
  display: none;
}

.fancybox-content {
  position: relative;
  background-color: #ffffff;
  color: #000000;
  cursor: auto;
  margin-right: 5%;
  margin-left: 5%;
  max-height: 95%;
}

.fancybox-is-open {
  z-index: 10000;
}

.fancybox-is-open .fancybox-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Add padding around images */
.fancybox-image {
  padding: 25px;
  background-color: #fff;
}

/* Style close button */
.fancybox-close-small {
  top: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  display: block !important;
  /* Overwrite default Fancybox styles */
}
@media only screen and (max-width: 480px) {
  .fancybox-close-small {
    display: none;
  }
}

/* Style navigation elements */
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-nav span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #222;
}

.fancybox-nav:hover span {
  visibility: visible;
  opacity: 0.8;
}

.fancybox-prev {
  left: 0;
}

.fancybox-prev span {
  left: 17px;
}

.fancybox-next {
  right: 0;
}

.fancybox-next span {
  right: 17px;
}

/* #Header
================================================== */
#shopify-section-header .section {
  padding: 0 15px;
  box-sizing: content-box;
}
  
.announcementBar {
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}
.announcementBar.show--true {
  display: block;
}
.announcementBar.show--false {
  display: none;
}

.announcementBar__container p {
  padding: 10px 20px;
  margin: 0;
}
@media only screen and (max-width: 798px) {
  .announcementBar__container p {
    font-size: 12.8px;
  }
}

.announcementBar__close {
  position: absolute;
  right: 10px;
  top: 3px;
  margin: 0;
  cursor: pointer;
  padding: 10px 0;
  opacity: 0.5;
}
.announcementBar__close:hover {
  opacity: 1;
}

@media only screen and (max-width: 798px) {
  .topBar {
    width: 100%;
  }
}

/* Top bar */
.mainBar {
  display: flex;
  justify-content: center;
}

.topBar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
  padding-top: 20px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 798px) {
  .topBar__container {
    border-bottom: 1px solid transparent;
    padding: 0;
    margin: 0;
    font-size: 100%;
  }
}
.topBar__container .icon-search,
.topBar__container .cart-icon {
  padding: 10px;
  display: block;
}
.topBar__container [class^=icon-],
.topBar__container [class*=" icon-"] {
  font-size: 21px;
  vertical-align: bottom;
  color: #000000;
}
.topBar__container .mini_cart.active_link .cart-icon {
  background-color: #a96269;
  color: #ffffff;
  transition: all 0.3s ease;
}
.topBar__container .mini_cart.active_link .topBar__cartCount {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #A96269;
}

.topBar__container p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.topBar__information {
  display: flex;
  flex: 3 3 0;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .topBar__information {
    display: none;
  }
}
.topBar__information .spacer {
  padding: 0 10px;
}
.topBar__information a,
.topBar__information p {
  color: #000000;
  display: inline-block;
}

.topBar--disclosure-enabled .topBar__information {
  flex-grow: 1;
  flex-shrink: 1;
}

.topBar__menuTitle {
  font-size: 9px;
  display: block;
}

.topBar__phoneNumber {
  flex: 1 0 auto;
}
.topBar__phoneNumber a {
  color: #000000;
}
.topBar__phoneNumber .icon-phone,
.topBar__phoneNumber .icon-mobile {
  margin: 0px 8px;
}

.topBar__details {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  list-style-type: none;
}
@media only screen and (max-width: 798px) {
  .topBar__details {
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
  }
}
.topBar__details .topBar__account {
  margin-right: 25px;
  font-size: 12px;
}
.topBar__details .topBar__account a p {
  display: inline-block;
  margin: 0;
  color: #000000;
}

.topBar__search {
  margin-right: 10px;
}
.topBar__search a:focus span {
  outline: thin dotted;
}
@media only screen and (max-width: 798px) {
  .topBar__search {
    display: none;
  }
}
.topBar__search.active_link .icon-search {
  background-color: #a96269;
  color: #ffffff;
}
.topBar__search.active_link .search__dropdown {
  display: block;
}
.topBar__search form {
  width: 100%;
  padding: 0 0 10px;
}
.topBar__search form input {
  font-size: 16px;
  border-bottom: 1px solid #d1d1d1;
  display: inline-block;
  width: calc(70% - 20px);
  margin: 15px 10px 0;
  padding: 7px 0;
  /* IE only css for alignment purposes */
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .topBar__search form input {
    margin-top: 30px;
  }
}
.topBar__search form .search__button {
  display: inline-block;
  width: calc(30% - 10px);
  margin: 10px 0 0;
}

.search__dropdown {
  display: none;
  width: 500px;
  max-width: 500px;
  right: 0;
  box-shadow: inset 0px 0px 0 1px #d1d1d1;
  border-top: 5px solid #a96269;
  background-color: #ffffff;
  z-index: 99;
  position: absolute;
  padding: 10px;
}
.search__dropdown.animated {
  animation-duration: 0.5s;
}

/* Header search */
.search__input {
  border: thin solid transparent;
  background-color: #ffffff;
  padding-left: 5px;
  margin-bottom: 0;
  display: inline-block;
  width: auto;
  height: auto;
  min-height: auto;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .search__input {
    height: 23px;
  }
}

.search__button {
  display: inline-block;
}

.search__button svg {
  fill: #000000;
}

.topBar__logo--mobile {
  display: none;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
}
@media only screen and (max-width: 798px) {
  .topBar__logo--mobile {
    display: block;
  }
  .topBar__logo--mobile img {
    max-height: 95px;
  }
}

.topBar__cartWrapper {
  position: relative;
}
.topBar__cartWrapper [class^=icon-] {
  font-size: 30px;
}
.topBar__cartWrapper .mini_cart.active_link ~ .topBar__miniCart {
  display: flex;
}
@media only screen and (max-width: 798px) {
  .topBar__cartWrapper {
    position: static;
  }
}

.topBar__cart {
  display: block;
  position: relative;
}

/* MiniCart */
.topBar__miniCart {
  font-size: 16px;
  width: 500px;
  max-width: 500px;
  right: 0;
  top: 100%;
  box-shadow: inset 0px 0px 0 1px #d1d1d1;
  border-top: 5px solid #a96269;
  background-color: #ffffff;
  z-index: 99;
  position: absolute;
  padding: 0;
  font-weight: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topBar__miniCart.animated {
  animation-duration: 0.5s;
}
.topBar__miniCart .mini-cart-form {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .topBar__miniCart {
    max-width: 100%;
    width: 100%;
  }
}
.topBar__miniCart .empty_cart {
  text-align: center;
}
.topBar__miniCart ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Hide initially */
.topBar__miniCart {
  display: none;
}

.miniCart__empty p {
  margin: 20px;
}

.miniCart__item {
  border-bottom: 1px solid #d1d1d1;
  margin: 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.miniCart__image {
  width: 25%;
}
.miniCart__image img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: contain;
}

.miniCart__itemDetails {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}
@media only screen and (max-width: 798px) {
  .miniCart__itemDetails {
    display: block;
  }
}
.miniCart__itemDetails p {
  margin: 5px 0;
}

.miniCart__price {
  padding-left: 0;
}
.miniCart__price .cart__item-unit-price {
  margin-top: 3px;
}

.miniCart__delete {
  width: 10%;
}

.miniCart__removeBtn {
  cursor: pointer;
  line-height: 0;
  color: #d1d1d1;
}
.miniCart__removeBtn [class^=icon-] {
  font-size: 13px;
  padding: 6px;
  border: thin solid #d1d1d1;
  border-radius: 50%;
  vertical-align: middle;
}

.miniCart__details {
  padding: 20px;
}

.miniCart__buttons {
  margin-top: 20px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.miniCart__buttons br {
  visibility: hidden;
}
.miniCart__buttons a.secondary_button,
.miniCart__buttons input.action_button {
  width: calc(50% - 10px);
  transition: all 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: inherit;
  min-height: 60px;
  line-height: 60px;
}

a.miniCart__goToCart {
  width: calc(50% - 10px);
  transition: all 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (max-width: 480px) {
  a.miniCart__goToCart {
    width: 100%;
  }
  .miniCart__buttons a.secondary_button, .miniCart__buttons input.action_button {
    min-height: 50px;
    line-height: 50px;
    font-size: 3.3vw;
    padding: 0;
  }
}

.miniCart__savings span {
  color: #a96269;
}
.miniCart__savings span.money {
  padding-left: 10px;
}

.miniCart__subtotal .subtotal__text {
  padding-right: 10px;
}

.miniCart__orderNotes {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  border: thin solid #d1d1d1;
  background-color: #ffffff;
}

.miniCart__tos {
  display: flex;
}
.miniCart__tos input {
  margin-bottom: 0;
  margin-top: 15px;
  flex-shrink: 0;
}
.miniCart__tos .tos_label {
  display: inline;
}
.miniCart__tos .tos_label p {
  padding-left: 10px;
  text-align: left;
  color: #000000;
}
.miniCart__tos .tos_label a {
  color: #a96269;
}
.miniCart__tos .tos_label a:hover {
  color: #a96269;
}

.miniCart__text {
  margin-top: 20px;
}

.miniCart__warningBox {
  margin-top: 20px;
}

/* Cart icon count */
.topBar__cartCount {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a96269;
  color: #ffffff;
  min-width: 1em;
  min-height: 1em;
  border-radius: 50%;
  vertical-align: middle;
  padding: 5px;
  box-sizing: content-box;
  line-height: 0;
  bottom: 43%;
  right: 53%;
  font-size: 10px;
}

.topBar__cartCount:before {
  content: "";
  float: left;
  width: auto;
  padding-bottom: 100%;
}

/* Main bar */
@media only screen and (max-width: 798px) {
  .mainBar, .mainBar__siteName, .mobile-searchForm {
    display: none!important;
  }
}

a.mainBar__logo {
  outline: 0;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
}

a.mainBar__logo img {
  display: block;
  max-width: 250px !important;
}

.mainBar__container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.mainBar__container.overflow--hidden .mainMenu__submenu {
  opacity: 0;
}

.mainBar__container:not(.overflow--hidden) .mainMenu__submenu {
  opacity: 0;
}

.mainBar__container.vertical__top {
  align-items: flex-start;
}

.mainBar__container.vertical__middle {
  align-items: center;
}

.mainBar__container.vertical__bottom {
  align-items: flex-end;
}
  
.mainBar__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainBar__menu {
  width: 100%;
}

.mainBar__siteName {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 31px;
  margin: 0;
  line-height: 1;
}
.mainBar__siteName h1,
.mainBar__siteName .h1 {
  text-transform: uppercase;
}

/* Currency / language switcher in header */
.header-menu__disclosure .selectors-form__wrap {
  margin-top: 0;
}
.header-menu__disclosure .selectors-form__item:last-child {
  margin-right: 20px;
}
.header-menu__disclosure .disclosure__toggle {
  border: 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  height: auto;
  letter-spacing: 0px;
  margin-top: 0;
  margin-bottom: 0;
  min-height: auto;
  padding: 15px 10px;
}
.header-menu__disclosure .disclosure__toggle [class^=icon-],
.header-menu__disclosure .disclosure__toggle [class*=" icon-"] {
  font-size: 16px;
}
.header-menu__disclosure .disclosure__toggle:hover, .header-menu__disclosure .disclosure__toggle[aria-current=true] {
  border: 0;
}
.header-menu__disclosure .disclosure__list-wrap {
  padding-top: 5px;
  top: 100%;
  z-index: 99999;
}
.header-menu__disclosure .disclosure-list {
  background-color: #ffffff;
  box-shadow: 0px -5px 0 0 #a96269;
  border: thin solid #d1d1d1;
  margin-top: 0;
  padding: 0;
}
.header-menu__disclosure .disclosure__button {
  padding: 8px 10px;
}
.header-menu__disclosure .disclosure__button:hover, .header-menu__disclosure .disclosure__button:focus, .header-menu__disclosure .disclosure__button[aria-current=true] {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Currency / language switcher on mobile */
.disclosure__link {
  cursor: pointer;
}

.mobile-menu__disclosure {
  padding: 10px;
}
.mobile-menu__disclosure .selectors-form {
  padding: 0;
}
.mobile-menu__disclosure .disclosure-list__item {
  padding: 10px 15px;
}
.mobile-menu__disclosure .disclosure__button {
  height: auto;
  font-size: 16px;
  font-weight: initial;
  letter-spacing: initial;
  line-height: 1.5;
  min-height: auto;
  padding: 0;
  text-transform: initial;
}

/* #Menu
================================================== */
.mainBar__siteName {
  flex-basis: auto;
  max-width: 300px;
  padding: 10px 20px 10px 0;
}
.mainBar__siteName h1 {
  margin: 0;
  letter-spacing: 0px;
}

.mainBar__mainMenu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mainBar__mainMenu.menuPosition--left {
  justify-content: flex-start;
}
.mainBar__mainMenu.menuPosition--left .mainMenu {
  justify-content: flex-start;
}
.mainBar__mainMenu.menuPosition--center {
  justify-content: center;
}
.mainBar__mainMenu.menuPosition--right {
  justify-content: flex-end;
}

.mainMenu {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  z-index: 98;
  /* IE fix for SVG icons */
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mainMenu .dropdown {
    height: 30px;
    position: relative;
    padding-right: 10px;
  }
  .mainMenu .dropdown span.mainMenu__downArrow {
    position: absolute;
    top: 12px;
  }
  .mainMenu .dropdown span.mainMenu__downArrow div {
    height: 30px;
  }
  .mainMenu .dropdown .sublink span.mainMenu__downArrow {
    top: 5px;
  }
}
.mainMenu .mainMenu__link .icon-down-caret {
  padding-left: 5px;
}
.mainMenu ul {
  width: 250px;
}
.mainMenu li {
  position: relative;
  margin: 0 5px;
}
.mainMenu li.dropdown_left ul {
  right: 0;
  left: auto;
}
.mainMenu li.dropdown_left ul ul {
  right: 225px;
  left: auto;
}
.mainMenu a {
  color: #000000;
  display: block;
  padding: 20px 10px;
  white-space: normal;
  cursor: pointer;
}
@media only screen and (max-width: 798px) {
  .mainMenu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    background-color: #ffffff;
    z-index: 2000;
  }
}

.mainMenu__downArrow {
  width: 12px;
  height: 100%;
  display: inline-block;
  position: relative;
}

.mainMenu__downArrow svg {
  stroke: #000000;
  stroke-width: 5;
  fill: none;
}

.mainMenu li:last-child {
  margin-right: 0;
}

.mainMenu a.active {
  color: #a96269;
}

.mainMenu li:hover > a,
.mainMenu li.show-menu > a {
  color: #a96269;
}
.mainMenu li:hover > a span,
.mainMenu li.show-menu > a span {
  color: #a96269;
}

.mainMenu li:focus-within > a {
  color: #a96269;
}
.mainMenu li:focus-within > a svg {
  fill: #a96269;
  stroke: #a96269;
  stroke-width: 10;
}

.mainMenu li:hover .mainMenu__submenu,
.mainMenu li:active .mainMenu__submenu,
.mainMenu li.show-menu .mainMenu__submenu {
  transition: opacity 0.3s ease-in;
  opacity: 1;
  pointer-events: all;
  z-index: 2000;
}

.mainMenu li:focus-within .mainMenu__submenu {
  transition: opacity 0.3s ease-in;
  opacity: 1;
  pointer-events: all;
  z-index: 2000;
}

.mainMenu__submenu {
  transition: opacity 0.3s 0.15s ease-in;
  background-color: #ffffff;
  box-shadow: 0px -5px 0 0 #a96269;
  border: thin solid #d1d1d1;
  border-top: none;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
}

.mainMenu__submenu li {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  white-space: nowrap;
  margin: 0;
}
.mainMenu__submenu li:hover > a, .mainMenu__submenu li.show-menu {
  background-color: rgba(0, 0, 0, 0.04);
}
.mainMenu__submenu li:focus-within > a {
  background-color: rgba(0, 0, 0, 0.04);
}
.mainMenu__submenu li:hover, .mainMenu__submenu li.show-menu {
  background-color: rgba(0, 0, 0, 0.08);
}
.mainMenu__submenu li:hover .icon-down-caret, .mainMenu__submenu li.show-menu .icon-down-caret {
  background-color: rgba(0, 0, 0, 0.16);
}
.mainMenu__submenu li:focus-within > .icon-down-caret {
  background-color: rgba(0, 0, 0, 0.16);
}

.mainMenu__submenu a {
  padding: 15px 20px;
  white-space: normal;
  width: 100%;
  transition: all 0s;
}

.sub-menu > a {
  width: calc(100% - 48px);
}
@media only screen and (max-width: 798px) {
  .sub-menu > a {
    width: calc(100% - 72px);
  }
}

.mainMenu__submenu li .icon-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  width: 48px;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}
.mainMenu__submenu li .icon-plus:hover {
  color: #a96269;
}
.mainMenu__submenu li .icon-plus:before {
  height: 16px;
  width: 16px;
}

.mainMenu__submenu input[type=checkbox] {
  display: none;
}

.mainMenu__submenu input[type=checkbox]:checked ~ .mainMenu__submenu__submenu {
  max-height: 500px;
}
.mainMenu__submenu input[type=checkbox]:checked ~ .icon-plus {
  background-color: rgba(0, 0, 0, 0.16);
}
.mainMenu__submenu input[type=checkbox]:checked ~ .icon-plus:before {
  content: "";
}
.mainMenu__submenu input[type=checkbox]:checked + a {
  background-color: rgba(0, 0, 0, 0.08);
}

.mainMenu__submenu__submenu {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s linear;
}

.sub-menu.show-menu .mainMenu__submenu__submenu {
  max-height: 500px;
}
  
@media screen and (max-width: 999px) and (min-width: 798px) {
  a.mainBar__logo img {
      width: 25vw;
  }
  .mainMenu {
      font-size: 1.6vw;
  }
  .mainMenu a {
      padding: 20px .5vw;
  }
}

/* Mobile menu */
.mobileMenu__overlay .h2 {
  font-size: 20px;
  margin: 15px 0;
}

.mobileMenu__submenu li {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  white-space: nowrap;
  margin: 0;
}

.mobileMenu__submenu li .icon-plus {
  padding: 15px 30px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
}
@media only screen and (max-width: 480px) {
  .mobileMenu__submenu li .icon-plus {
    width: 22px;
    padding: 15px 0;
  }
}
.mobileMenu__submenu li .icon-plus:before {
  content: "";
}
.mobileMenu__submenu li .icon-plus:hover, .mobileMenu__submenu li .icon-plus.show-menu {
  color: #a96269;
}
.mobileMenu__submenu li .icon-plus:focus-within {
  color: #a96269;
}

.mobileMenu__submenu {
  display: none;
}

.mobileMenu__submenu a {
  transition: all 0s;
}

.mobileMenu__submenu__submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 20px;
  transition: max-height 0.8s linear;
}

.mobileMenu__submenu input[type=checkbox] {
  display: none;
}

.mobileMenu__submenu input[type=checkbox]:checked ~ .mobileMenu__submenu__submenu {
  max-height: 500px;
}
.mobileMenu__submenu input[type=checkbox]:checked ~ .icon-plus:before {
  content: "";
}

.mobileMenu__close {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 15px;
}

.mobileMenu__social ul {
  padding-left: 0;
  list-style: none;
}
.mobileMenu__social ul li {
  display: inline-block;
  padding: 0 5px;
}

.mobileMenu__overlay {
  transition: ease-in-out 0.2s all;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 100;
}
@media only screen and (min-width: 799px) {
  .mobileMenu__overlay {
    display: none;
  }
}
.mobileMenu__overlay.is-active .mobileMenu__close {
  transition: ease-in-out 1s all;
  opacity: 1;
  visibility: visible;
}
.mobileMenu__overlay.is-inactive .mobileMenu__close {
  transition: ease-in-out 0s all;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 799px) {
  .mobileMenu__overlay {
    display: none;
  }
}

.mobileMenu__wrapper {
  width: 80%;
  margin: 80px auto 0;
}

.mobileMenu__list {
  list-style: none;
  padding-left: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 18px;
}
.mobileMenu__list li a,
.mobileMenu__list li .disclosure__heading {
  display: block;
  clear: both;
  padding: 10px 15px;
  white-space: normal;
}
.mobileMenu__list ul {
  list-style: none;
}

.mobileMenu__submenu {
  padding: 10px;
  font-size: 16px;
}
.mobileMenu__submenu li a.parent-link--true:hover {
  color: #000000;
  font-weight: bold;
}
.mobileMenu__submenu li a.parent-link--true:focus-within {
  color: #000000;
  font-weight: bold;
}

.mobileMenu__list .parent-link--false.active .icon-down-caret {
  color: #a96269;
}
.mobileMenu__list .parent-link--false.active .icon-down-caret:before {
  content: "";
}

.mobileMenu__list .icon-down-caret {
  cursor: pointer;
  float: right;
  padding-top: 8px;
  text-align: center;
}
.mobileMenu__list .icon-down-caret.active {
  color: #a96269;
}
.mobileMenu__list .icon-down-caret.active:before {
  content: "";
}
@media only screen and (min-width: 481px) {
  .mobileMenu__list .icon-down-caret {
    padding: 10px 38px;
  }
}

.mobileMenu__sub-submenu {
  font-size: 14px;
}

/* Used for keypress */
.focus-visible {
  visibility: visible;
  opacity: 1;
}

/* #Currency / Language switcher
================================================== */
.selectors-form__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 10px;
}
@media only screen and (max-width: 798px) {
  .selectors-form__wrap {
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
  }
}

.selectors-form__item {
  margin-right: 20px;
}
.selectors-form__item:last-child {
  margin-right: 0;
}

.disclosure {
  position: relative;
}

/* Fix for capitalization issue in cross border */
.disclosure-text-style-none button.disclosure__toggle,
.disclosure-text-style-none button.disclosure__button {
  text-transform: capitalize;
}

.disclosure-text-style-uppercase button.disclosure__toggle,
.disclosure-text-style-uppercase button.disclosure__button {
  text-transform: uppercase;
}

.disclosure-text-style-lowercase button.disclosure__toggle,
.disclosure-text-style-lowercase button.disclosure__button {
  text-transform: lowercase;
}

.disclosure__toggle {
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
  color: #a96269;
  font-family: Figtree, sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  height: 40px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}
.disclosure__toggle:active {
  box-shadow: none;
}
.disclosure__toggle.is-clicked, .disclosure__toggle:focus, .disclosure__toggle:hover {
  background-color: #ffffff;
  color: #a96269;
}
.disclosure__toggle.is-clicked + .disclosure__list-wrap, .disclosure__toggle:focus + .disclosure__list-wrap {
  opacity: 1;
  visibility: visible;
}
.disclosure__toggle span.icon-down-caret,
.disclosure__toggle span.icon-up-caret {
  display: block;
  margin: 0 0 0 10px;
  pointer-events: none;
}

.disclosure__list-wrap {
  bottom: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s 0.15s ease-in;
}
.disclosure__list-wrap.disclosure--left {
  right: 0;
}

.disclosure-list {
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0 10px;
  white-space: nowrap;
}

li.disclosure-list__item {
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}

button.disclosure__button {
  background-color: transparent;
  border: 0;
  color: #a96269;
  display: block;
  font-family: Figtree, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 0;
  text-align: left;
  width: 100%;
  transition: none;
}
button.disclosure__button:hover, button.disclosure__button:focus, button.disclosure__button[aria-current=true] {
  border: 0;
  color: #a96269;
}

/* #Pagination
================================================== */
.paginate {
  text-align: center;
}

.paginate .page a,
.paginate .current,
a.tag {
  color: #a96269;
  border: solid 1px #a96269;
  margin: 10px 5px;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.paginate .page a:hover,
.paginate .current:hover,
a.tag:hover {
  border: solid 1px #a96269;
  color: #a96269;
}

.paginate .current {
  color: #ffffff;
  background-color: #a96269;
  border: solid 1px #a96269;
}
.paginate .current:hover {
  color: #ffffff;
  background-color: #a96269;
  border: solid 1px #a96269;
}

@media only screen and (max-width: 798px) {
  .paginate .page,
.paginate .deco {
    display: none;
  }
}

.paginate .next,
.paginate .prev {
  display: inline-block;
  margin: 10px 0;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}

/* #Color swatches
================================================== *//* #Collection grid
================================================== */
.collection__container.fullWidth--true {
  padding: 0 20px;
}

.collection__grid,
.collection__container {
  width: 100%;
}

.collection_description {
  padding: 40px 10px;
}
@media only screen and (max-width: 480px) {
  .collection_description {
    padding: 20px 10px;
  }
}

.collection__header.description--false {
  margin-bottom: 40px;
}

.collection__filterSelects {
  justify-content: center;
  position: relative;
}
.collection__filterSelects .tag_filter + .sort_by {
  border-left-width: 0px;
}
@media only screen and (max-width: 480px) {
  .collection__filterSelects .tag_filter,
.collection__filterSelects .sort_by {
    width: 50%;
  }
}
.collection__filterSelects select {
  width: 25%;
}.collection__item .product-wrap {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

/* Featured Image styling */
.collection__featuredImage {
  position: relative;
}

.collection__featuredImage__item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.collection__featuredImage__item .banner_holder {
  right: auto;
  left: 0;
}
.collection__featuredImage__item .thumbnail_banner {
  font-size: 24.0px;
  padding: 5px 25px;
}

.collection__featuredImage__image {
  overflow: hidden;
  margin: 8px;
  background-color: #ffffff;
}

.collection__featuredImage__image img {
  max-width: 100%;
  position: relative;
}

.collection__featuredImage__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  line-height: 1.2;
  text-align: center;
  font-size: 24.0px;
}
.collection__featuredImage__content .price {
  display: block;
  font-size: 80%;
  margin-top: 10px;
}
.collection__featuredImage__content .was_price {
  text-decoration: line-through;
  opacity: 0.6;
}
@media only screen and (max-width: 798px) {
  .collection__featuredImage__content {
    position: static;
  }
}/* #Collection list
================================================== */
.collection-info__caption {
  font-size: 19px;
  padding: 10px 0;
  display: block;
}
@media only screen and (max-width: 480px) {
  .collection-info__caption {
    padding-bottom: 0;
  }
}

/* #Collection product thumbnail
================================================== */
.banner_holder {
  position: absolute;
  top: 0;
  max-width: 100%;
  z-index: 5;
}
.banner_holder.bannerPosition--left {
  left: 0;
}
.banner_holder.bannerPosition--right {
  right: 0;
}
.banner_holder.bannerPosition--center {
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 799px) {
  .banner_holder.bannerPosition--center {
    width: 100%;
  }
}

.thumbnail_banner {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  padding: 5px 15px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 85%;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .thumbnail_banner {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .thumbnail_banner {
    font-size: 14px;
    padding: 5px 10px;
    display: block;
    float: left;
  }
}

.thumbnail_banner__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner_text {
  position: relative;
}

.sale_banner {
  background-color: #a96269;
}

.product .sale_banner.thumbnail_banner {
  display: none;
}

.preorder_banner,
.new_banner {
  background-color: #000000;
}

.collection__grid .thumbnail {
  transition: width 0.5s ease-in-out;
  overflow: hidden;
}
.collection__grid .thumbnail.four.columns .info {
  font-size: 90%;
}

.collection__grid .thumbnail img {
  transition: transform 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

/*.collection__grid .thumbnail:hover img:not(.crossed-out) {
  transform: scale(1.1);
}*/

.thumbnail__quickView {
  text-transform: uppercase;
  color: #a96269;
  position: relative;
  z-index: 3;
  cursor: pointer;
  position: relative;
  display: inline-block;
  pointer-events: all;
  padding: 5px;
  font-size: 12.8px;
}
.thumbnail__quickView:hover {
  color: #a96269;
}

.product__thumbnail {
  position: relative;
  text-align: center;
  margin: .5em;
  display: block;
}

.collection__featuredImage {
  margin-bottom: 25px;
}

.thumbnail__caption {
  margin-top: 20px;
  position: relative;
}.thumbnail__caption {
    display: none;
  }@media only screen and (max-width: 798px) {
  .thumbnail__caption {
    display: block;
  }
}

.product-details .title {
  display: block;
}
.product-details .brand {
  display: block;
}
.product-details .sold_out {
  opacity: 0.5;
}
.product-details span.modal_price {
  font-size: 20.8px;
  margin-top: 10px;
  opacity: 0.5;
}

@media only screen and (max-width: 798px) {
  .touchevents .thumbnail__caption {
    display: block;
  }
  .touchevents .thumbnail__overlay {
    display: none;
  }
}
.hidden-product-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}.thumbnail:focus-within .thumbnail__overlay,
.thumbnail:focus-within .product-details,
.thumbnail:hover .thumbnail__overlay,
.thumbnail:hover .product-details {
    opacity: 1;
  }

.product-wrap {
    position: relative;
  }

.product-wrap:hover .product-details {
    opacity: 1;
    transform: none;
  }

.thumbnail__overlay {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-in;
    display: flex;
    align-items: flex-start;
  }

@media only screen and (max-width: 798px) {
    .thumbnail__overlay {
      display: none;
    }
  }

@media only screen and (min-width: 1025px) and (max-width: 1400px) {
    .thumbnail__overlay {
      line-height: 1.5;
    }
  }

.thumbnail__overlay .info {
    margin: 20px;
    pointer-events: none;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

.thumbnail__overlay .product-details {
    opacity: 0;
    transition: opacity 0.3s ease-out;
    display: block;
  }

.thumbnail__overlay .spr-badge {
    color: #a96269;
    position: relative;
    z-index: 3;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 5px;
    font-size: 11px;
  }

.thumbnail__overlay .spr-badge:hover {
    color: #a96269;
  }

.thumbnail__overlay .title {
    display: block;
    position: relative;
    color: #000000;
  }

.thumbnail__overlay .brand {
    color: #000000;
  }

.thumbnail__overlay .price,
.thumbnail__overlay .product__price {
    display: block;
    margin-top: 10px;
    color: #000000;
    font-size: 20.8px;
  }

.thumbnail__overlay .price.sale span.money,
.thumbnail__overlay .product__price.sale span.money {
    color: #a96269;
  }

.thumbnail__overlay .price.sale .was_price,
.thumbnail__overlay .price.sale .was_price span.money,
.thumbnail__overlay .product__price.sale .was_price,
.thumbnail__overlay .product__price.sale .was_price span.money {
    color: #8c8b8b;
  }

.thumbnail__overlay .was_price,
.thumbnail__overlay .was_price span.money {
    color: #8c8b8b;
    text-decoration: line-through;
  }

.list-collection-wrapper .thumbnail__overlay .info {
    justify-content: center;
  }

.list-collection-wrapper .thumbnail__overlay .view_all {
    line-height: 60px;
  }/* #Blog
================================================== */
.blog__filter {
  margin-bottom: 40px;
}

.blog__filter.filterBackground--true {
  text-align: center;
}

.blog__tagSelect {
  margin: 0;
}

.blog .rss-subscribe {
  font-size: 16px;
}

.blog__page .featuredArticle {
  margin-bottom: 20px;
}

/* Featured articles */
@media only screen and (max-width: 798px) {
  .blog__articleGrid {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.featuredArticle__excerpt {
  margin: 15px 0;
}

.featuredArticle__tags {
  list-style-type: inside;
  padding-left: 0;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.featuredArticle__tags li {
  display: inline-block;
}

.featuredArticle__image {
  margin-bottom: 10px;
  overflow: hidden;
}
.featuredArticle__image img {
  transition: transform ease-in-out 0.3s;
  max-height: 400px;
  object-fit: contain;
}
.featuredArticle__image img:hover {
  transform: scale(1.1);
}

.featuredArticle__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: unset;
}

.featuredArticle__blogMeta {
  margin: 0 0 .5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
  font-size: 14px;
}
  
@media screen and (min-width: 768px) {
  .featuredArticle__blogMeta {
    margin: 0 2em 0 0;
    font-size: unset;
  }
  .featuredArticle__title {
    font-size: 18px;
  }
}

.excerpt {
  line-height: 1.8em;
  position: relative;
  max-height: 9em;
  /* Exactly five lines */
  margin-bottom: 7px;
  overflow: hidden;
}

.excerptLength--lg .truncation-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.excerptLength--sm .truncation-fade {
  display: none;
}

.blog-template-wrapper {
  width: 100%;
}

/* #Page
================================================== */
.page img {
  max-width: 100%;
}

/* #Sidebar
================================================== */
.sidebar {
  border-left: 1px solid #d1d1d1;
}
@media only screen and (max-width: 798px) {
  .sidebar {
    border-left: none;
  }
}
@media only screen and (max-width: 480px) {
  .sidebar {
    padding-left: 0;
  }
}

@media only screen and (max-width: 798px) {
  .sidebar {
    width: 100% !important;
    /* To overwrite desktop styles set inside of section */
  }

  .has-sidebar-option {
    width: 100% !important;
    /* To overwrite desktop styles set inside of section */
  }
}
.has-sidebar-option.sidebar-enabled--false {
  width: 100%;
}

.sidebar__block {
  margin: 30px 0;
}

.sidebar__block:first-child {
  margin-top: 0;
}

.sidebar__block ul {
  list-style: none;
  padding-left: 0;
}

.sidebar__block li,
.sidebar__block p {
  margin: 0;
}

.sidebar__block ul.tag_list li {
  display: inline;
}

.sidebar__heading {
  margin: 0 0 10px;
  color: #000000;
  font-size: 18px;
  position: relative;
}

.sidebar__heading .icon-down-caret {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.sidebar__downArrow {
  width: 15px;
  cursor: pointer;
}

.sidebar__content {
  padding-left: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 798px) {
  .sidebar__content {
    padding-left: 0;
  }
}

/* Sidebar blocks */
.block__search .blog_search {
  border-bottom: 1px solid #d1d1d1;
}
.block__search .search_box {
  padding: 0;
  border: 0;
  width: calc(100% - 44px);
  float: left;
  background-color: #ffffff;
  margin-bottom: 0;
}
.block__search .icon-search {
  float: left;
  width: 44px;
  min-height: 44px;
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}
.block__search .icon-search::before {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 100%;
  text-align: center;
}
.block__search .search-submit {
  background-color: #ffffff;
  color: #a96269;
}
.block__search .search-submit:hover {
  color: #a96269;
}

.block__newsletter .action_button.sign_up {
  margin: 5px 0 0;
}
.block__newsletter .flex-row {
  flex-direction: column;
}
.block__newsletter .flex-row input {
  margin: 5px 0 0;
}
.block__newsletter .email-row {
  margin: 0;
}
.block__newsletter .email-row input[type=email] {
  padding: 0;
}
@media only screen and (max-width: 798px) {
  .block__newsletter .footer__title {
    margin-bottom: 0;
  }
}

.block__recent_posts li {
  padding: 0 0 10px;
}

.toggle-all--true .toggle {
  cursor: pointer;
}
.toggle-all--true .toggle_list {
  display: none;
}

.toggle-all--false .icon-down-caret {
  display: none;
}

@media only screen and (max-width: 798px) {
  .blogSidebar {
    padding-left: 0;
  }
}

/* #Article
================================================== */

.article__info {
  margin-bottom: 10px;
}
@media only screen and (max-width: 798px) {
  .article__info {
    text-align: center;
  }
}

.article__headline {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 980px;
}

.article__blogMeta {
  font-size: 14px;
}
@media only screen and (min-width: 591px) {
  .article__blogMeta {
    font-size: 16px;
  }
}

.article__pagination {
  font-size: 17px;
}
@media only screen and (max-width: 798px) {
  .article__pagination {
    font-size: 16px;
    margin-top: 20px;
    float: none;
  }
}

.article__image img {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
  display: block;
  margin: 10px auto 0;
}

.article__image ~ .article__wrap {
  margin-top: 60px;
}
@media only screen and (max-width: 798px) {
  .article__image ~ .article__wrap {
    margin-top: 20px;
  }
}

.article__wrap {
  max-width: 85%;
  margin-top: 40px;
}
@media only screen and (max-width: 798px) {
  .article__wrap {
    max-width: 100%;
  }
}

.article__share_wrap {
  margin-top: 20px;
}

.article__social {
  margin-top: 3em;
  font-size: 14px;
  justify-content: flex-end;
}

.article__bottom {
  margin-top: 40px;
}

.relatedPosts__heading {
  font-size: 24px;
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
}

.relatedPosts .featuredArticle__title {
  font-size: 21px;
}

.blog__separator--tags {
  padding: 0 3px;
  color: #a96269;
  font-size: 0.8em;
  display: inline-block;
  vertical-align: text-top;
}

.blog__separator--meta {
  padding: 0 3px;
  color: #a96269;
  font-size: 0.8em;
  display: inline-block;
  vertical-align: text-top;
}
.blog__separator--meta:last-child {
  display: none;
}

.sidebar .blog__separator--tags {
  vertical-align: middle;
}

/* Comments */
.comment--error {
  background-color: #fbebeb;
  padding: 5px 10px;
}

.comment--success {
  background-color: #eef8ef;
  padding: 5px 10px;
}

.responses__heading {
  margin-bottom: 0;
  font-size: 19px;
}

.comments__heading {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 19px;
}

.comment-form {
  max-width: 60%;
}
@media only screen and (max-width: 798px) {
  .comment-form {
    max-width: 100%;
  }
}

.comment {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comment__meta {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
}

.comment__author {
  margin: 0 0 10px;
  font-size: 17px;
}

#comment_form .action_button {
  display: block;
  border: thin;
  color: #ffffff;
  padding: 5px 20px;
  width: auto;
}
@media only screen and (max-width: 798px) {
  #comment_form .action_button {
    width: 100%;
  }
}

#comment_form input[type=text] {
  margin: 10px 0;
  width: 100%;
  border: transparent 1px solid;
  border-bottom: 1px solid #d1d1d1;
  display: inline-block;
  padding-left: 0;
}

.comment__textarea {
  margin: 0 0 20px;
  width: 100%;
  border: thin solid #d1d1d1;
  padding: 10px;
  font-family: Figtree, sans-serif;
  color: #000000;
}
.comment__textarea:-ms-input-placeholder {
  color: #404040;
}
.comment__textarea::placeholder {
  color: #404040;
}

.comment__label {
  margin: 10px 0;
  display: block;
}

/* #Password Page
================================================== */
#password-container {
  margin: 75px auto 0;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
}
#password-container.modal--open {
  display: none;
}
@media only screen and (max-width: 798px) {
  #password-container {
    margin-top: 10px;
  }
}
#password-container .password-page-message {
  font-size: 3em;
  line-height: 1.2;
  margin: 10px auto;
  padding: 12px 0;
}
#password-container .password-page-follow {
  margin: 5px 0;
}
#password-container .password-social .social_icons a,
#password-container .password-social .social_icons a:visited,
#password-container .password-social .social_icons a:active {
  font-size: 25px;
}
#password-container .both-names input {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 798px) {
  #password-container .both-names input {
    width: 100%;
  }
}
#password-container .newsletter__contactEmail {
  padding: 10px;
  width: 100%;
}
#password-container .action_button.sign_up {
  width: 100%;
}
#password-container .flex-row {
  margin-left: -5px;
  margin-right: -5px;
}
#password-container .flex-row input {
  padding: 0 10px;
}
#password-container .email-row {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}
@media only screen and (max-width: 480px) {
  #password-container .email-row {
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
  }
}
#password-container .email-row input {
  margin: 5px;
}
@media only screen and (max-width: 480px) {
  #password-container .email-row input {
    margin: 5px 0 0;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #password-container .email-row input[type=submit] {
    min-width: 150px;
  }
}
#password-container .contact_form .newsletter__firstName,
#password-container .contact_form .newsletter__lastName {
  padding: 10px;
}

.contact_form .action_button.sign_up {
  display: inline-block;
  width: 120px;
  padding-left: 0;
  padding-right: 0;
  float: none;
  margin-top: 20px;
}
@media only screen and (max-width: 798px) {
  .contact_form .action_button.sign_up {
    width: 100%;
  }
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 30px;
  width: 100%;
}

.password-logo {
  max-width: 200px;
  /* Allows logo to be more prominent */
  margin: 0px auto;
}

.password-message {
  max-width: 600px;
  font-size: 1.2em;
}

.hr-small {
  margin: 20px auto;
  width: 50px;
}

.password-social {
  margin-top: 10px;
  padding-top: 40px;
}

.password-social ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.password-social .social_icons li {
  display: inline;
  margin-left: 0;
}

.password-social .social_icons a:hover {
  color: #a96269;
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 13px;
  color: #000000;
  text-align: center;
}

.powered {
  display: block;
  margin-top: 15px;
}

.shopify a {
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0JJREFUeNqMU81vG0UU/83sR73YG+M4xrHj4jj9UCFNSaGlQQUhhFBRpXIo6jEHQFXFAbhy4B/gioTgzgGV7ws5IAoqUgUSoWoIaZJGpGpMHDuptf5a7+fM8nZpJaRy4M0+jd7szO/93u/NsAsX5vFvi6IInHNUq5NnstnsqXp96xur3f392HNlrIcLePHkS8hlTchIJvtVSTOjIaSAwhkiGsXi+BudjjVp28Oj+XzhrPDZh5qqfoIQD5j6wrxHCAJ6UMXVr3pgnB0c9O2843jrE5XMtZER47GTp+bOqfn++d9+Ct5TuLrCGAcjpgnAWEVSdg8HSyWUzTl8v7D08szxSltPB6/OPDWeW/q1caI2O0zfbrThBM7pjdbiz9PG7LsK01epYKiCaMlIQadnHag9UZ2vbuqvl47tVMwcY3fdFjLFCIHksB0bQojCTmfzlWyHf53S0qsyigESMRS0uqtvNbs330nXNHhRAWl3ChnNhLG/jzBy4fg27pGG5TSqWsARV6EGwk+WScgymIQ5auLpyTdRHj2arC//9QXuDpfgeDYkQcgoZixq4DKuAGoo7wEwVg5DD3PVt1EafRzL21/C0HJo9f4gYUO4gZNkFMk5Nkli3wcI4vP7yIvxhsLIIXhBHzfqlzHwWihkDiNjPEwlDJNE/zDABGPQKfR5QAzI8wRU9IWNurWIlJbF+dmP8Ig5ja67Az8cwvWdmCVi4YSMSlTzODjAQxGAvCZkaIpI4MeN97Fc/xbpfXk8WXmNqPcw9C1idR8gKSNN06GYEScZYwZVJ+xj/8hpPJp9HmvNK/Bd6g0zEXfJ9rvEwE0A4qbFLOibimN15RcLR57JVFx7iLGHpvFs9RJ8QZvofmzsXoEXDqAqWiIiyUaAUSIkBTVVY1BuXuth6rhxcaxizDb619EcrGPg7+JG8zJWdj8HZwplk7hTHyDiKrU5BVWXyKT57ncfNz9TRBjxrRWn3/zT2+7seV7DWuabnR+MTrCm6ikNnLLEL3R720dmQkMqFz8dia3rdmvhg8an7MH3hZRhKuVsQTtcPmCcGK+lZvLl1JEdK9T7PW9t75a72L7tXh3sBbdEELXxP00h1//rx98CDACS7p3N/ZPUwQAAAABJRU5ErkJggg==);
  padding-left: 21px;
  text-decoration: none;
}

.password-footer a {
  text-decoration: none;
}

/* Password Page Modal CSS */
.controls {
  display: block;
  margin: 1em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}

#open-me {
  text-align: center;
  margin-bottom: 35px;
}

#open-me a:hover {
  color: #a96269;
}

.close-me {
  z-index: 8000;
}

.modalbox {
  position: absolute;
  height: 100%;
  top: -1em;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 5000;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
}

.overlay-close {
  width: 150px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: thin solid #000;
  font-size: 14px;
}

.overlay-data {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  visibility: 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.inputbox {
  margin: 0px auto;
  max-width: 80%;
  display: table;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  color: #000;
}

@media only screen and (max-width: 798px) {
  #password-page-bg .modalbox .inputbox {
    top: 50%;
  }
}

.storefront-password-form {
  padding-bottom: 30px;
  overflow: auto;
}
.storefront-password-form input#password {
  padding: 10px;
  margin: 20px 0;
  width: 100%;
}
.storefront-password-form .sign_up {
  float: none;
  width: 120px;
  display: inline-block;
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
  text-align: center;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 50%;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .storefront-password-form #password {
    width: 100%;
  }
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
}

.pass-close {
  color: #000 !important;
  padding: 0 !important;
  margin: 1em !important;
  position: inherit !important;
}

.pass-close a {
  cursor: pointer;
}

/* #Divider
================================================== */
.divider {
  opacity: 0;
  border-color: #d1d1d1;
}
.divider.divider--true {
  opacity: 1;
}

/* #Draggable Sections
================================================== */
/* Featured contact form */
.featuredContact {
  padding: 0;
}

.featuredContact__banner {
  width: 100%;
}

.featuredContact__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.featuredContact__content {
  flex-basis: 55%;
}
@media only screen and (max-width: 798px) {
  .featuredContact__content {
    background-color: #ffffff;
    flex-basis: 100%;
  }
}
.featuredContact__content .headline {
  padding-top: 25px;
}

.featuredContact__formContainer {
  align-self: flex-end;
  flex-basis: 40%;
  background-color: #ffffff;
  border: thin solid #d1d1d1;
}

  
.featuredContact__formContainer.logo--true .featuredContact__form {
  padding-top: 20px;
}

.contact__imgWrap img {
  max-width: 100%;
  display: block;
}

@media only screen and (max-width: 798px) {
  .featuredContact__text {
    padding: 0 10px 20px;
  }
}

.fullWidth--false.featuredContact__formContainer {
  align-self: flex-start;
}

.fullWidth--true.featuredContact__formContainer {
  margin-top: -40vh;
}
@media only screen and (max-width: 798px) {
  .fullWidth--true.featuredContact__formContainer {
    margin-top: 0;
  }
}

.featuredContact__form {
  padding: 2em 1em 3em;
  background-color: #FEF6F7;
}
@media screen and (min-width: 591px) {
  .featuredContact__form {
    padding: 3em 2em;
  }
}
@media screen and (min-width: 900px) {
  .featuredContact__form {
  	padding: 3em;
  }
}
@media screen and (min-width: 1100px) {
  .featuredContact__form {
  	padding: 4em 6em;
  }
}
  

.featuredContact__note p {
  padding-right: 10px;
}

.featuredContact__logo {
  max-width: 50%;
  margin: 20px auto 0;
}

.contactBlock__Datepicker {
  position: relative;
}
.contactBlock__Datepicker input {
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
.contactBlock__Datepicker .calendar-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  width: 24px;
}
.red {
  color: #A96269;
}

.featuredContact__callToAction {
  position: relative;
  width: 100%;
  margin: 2em auto 0;
}
.featuredContact__callToAction .submit {
  min-height: 65px!important;
  height: 65px!important;
  font-size: 22px!important;
  font-weight: normal!important;
  width: 100%;
  margin: 0!important;
}

.featuredContact__callToAction::before, .featuredContact__callToAction::after {
  content: "";
  position: absolute;
  width: 2.5vw;
  height: 2.5vw;
  color: #fff;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
.featuredContact__callToAction::before {
  right: 4vw;
}
.featuredContact__callToAction::after {
  right: 5.2vw;
}

@media screen and (min-width: 501px) {
  .featuredContact__callToAction {
  	width: 300px;
  }
  .featuredContact__callToAction::before, .featuredContact__callToAction::after {
    width: 12px;
    height: 12px;
  }
  .featuredContact__callToAction::before {
    right: 20px;
  }
  .featuredContact__callToAction::after {
    right: 25px;
  }
}


/* Multi-column */
.multiColumn {
  margin: 40px 0;
  
    .ls-shape1 .svgShape {
      opacity: 0.5;
    }

    .ls-shape1 .svgShape svg {
      transform: rotate(-140deg);
    }
  
    .ls-shape2 .svgShape {
      opacity: 0.8;
    }

    .ls-shape2 .svgShape svg {
      transform: rotate(93deg);
    }
  
    .ls-shape3 .svgShape {
      opacity: 0.4;
    }

    .ls-shape3 .svgShape svg {
      transform: rotate(-43deg);
    }
  
    .ls-shape4 .svgShape {
      opacity: 1;
    }

    .ls-shape4 .svgShape svg {
      transform: rotate(64deg);
    }
  
  
    .rs-shape1 .svgShape {
      opacity: 0.6;
    }

    .rs-shape1 .svgShape svg {
      transform: rotate(-43deg);
    }
  
    .rs-shape2 .svgShape {
      opacity: 0.5;
    }

    .rs-shape2 .svgShape svg {
      transform: rotate(80deg);
    }
  
    .rs-shape3 .svgShape {
      opacity: 0.8;
    }

    .rs-shape3 .svgShape svg {
      transform: rotate(22deg);
    }
  
    .rs-shape4 .svgShape {
      opacity: 0.3;
    }

    .rs-shape4 .svgShape svg {
      transform: rotate(43deg);
    }
  
}
.multiColumn .flexContainer {
  align-items: center;
}

/* Mobile slider styles */
@media only screen and (max-width: 798px) {
  .slider--mobile:after {
    content: "flickity";
    display: none;
  }
}

/* Multiview mobile slider */
@media only screen and (max-width: 480px) {
  .slider--mobile.multiView .column,
.slider--mobile.multiView .columns {
    width: calc(50% - 20px) !important;
    margin: 0 10px;
  }
}

/* Applied to banners using the general settings */
@media only screen and (max-width: 798px) {
  .generalBanner .caption {
    display: block;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.generalBanner polygon {
  fill: #ffffff;
}
@media only screen and (max-width: 798px) {
  .generalBanner polygon {
    fill: transparent;
  }
}

.banner-full-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.banner-full-link + .caption {
  pointer-events: none;
  cursor: pointer;
}

.banner__img {
  width: 100%;
  display: block;
}

.caption {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 480px) {
  .caption {
    transform: none;
    font-size: 3vw;
    position: relative;
    width: 100%;
  }
}
.caption a {
  pointer-events: all;
}
.caption p {
  margin: 10px 0;
}
.caption .pretext,
.caption a.hoverButton {
  font-family: Figtree, sans-serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 480px) {
  .caption .pretext,
.caption a.hoverButton {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 798px) {
  .caption .pretext,
.caption a.hoverButton {
    font-size: 14.0px;
  }
}
@media only screen and (min-width: 799px) {
  .caption .pretext,
.caption a.hoverButton {
    font-size: 17.5px;
  }
}
@media only screen and (min-width: 1401px) {
  .caption .pretext,
.caption a.hoverButton {
    font-size: 21px;
  }
}
.caption .headline {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: 60px;
  text-transform: none;
  line-height: 1.1;
  margin: 10px 0;
  color: #000000;
}
@media only screen and (max-width: 480px) {
  .caption .headline {
    font-size: 2.6em;
  }
}
@media only screen and (max-width: 798px) {
  .caption .headline {
    font-size: 40.0px;
  }
}
@media only screen and (min-width: 799px) {
  .caption .headline {
    font-size: 50.0px;
  }
}
@media only screen and (min-width: 1401px) {
  .caption .headline {
    font-size: 60px;
  }
}
.caption .subtitle {
  font-family: Figtree, sans-serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .caption .subtitle {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 798px) {
  .caption .subtitle {
    font-size: 14.0px;
  }
}
@media only screen and (min-width: 799px) {
  .caption .subtitle {
    font-size: 17.5px;
  }
}
@media only screen and (min-width: 1401px) {
  .caption .subtitle {
    font-size: 21px;
  }
}
.caption .pretext:empty,
.caption .headline:empty,
.caption .subtitle:empty {
  display: none;
}
.caption .pretext:empty:before,
.caption .headline:empty:before,
.caption .subtitle:empty:before {
  height: 0;
}

.caption--center {
  justify-content: center;
}

.caption--left {
  justify-content: flex-start;
}

.caption--right {
  justify-content: flex-end;
}
.caption--right .caption__overlay {
  transform: scaleX(-1);
}

.subtitle p a {
  pointer-events: all;
}

.caption__content {
  display: inline-block;
  float: none;
  width: 55%;
  position: relative;
  padding: 5%;
}
@media only screen and (max-width: 798px) {
  .caption__content {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .caption__content {
    width: 100% !important;
    /* Override any widths set on larger screen sizes */
    padding: 20px;
  }
}
.caption__content.align-center {
  text-align: center;
}
.caption__content.align-left {
  text-align: left;
}
.caption__content.align-left .subtitle:before {
  margin-left: 0;
}
.caption__content.align-right {
  text-align: right;
}
.caption__content.align-right .subtitle:before {
  margin-right: 0;
}

.caption__overlayShape--up + .caption__content {
  max-width: 45%;
}
@media only screen and (max-width: 480px) {
  .caption__overlayShape--up + .caption__content {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .caption--left .caption__overlayShape--center + .caption__content {
    width: 50%;
  }
}
.caption--left .caption__overlayShape--down + .caption__content .pretext {
  max-width: 90%;
}

@media only screen and (max-width: 1024px) {
  .caption--right .caption__overlayShape--center + .caption__content {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .caption--right .caption__overlayShape--down + .caption__content {
    width: 50%;
  }
}
.caption--right .caption__overlayShape--down + .caption__content .pretext {
  padding-left: 10%;
}

.caption--center .caption__overlayShape--up + .caption__content .subtitle {
  margin: 0px auto;
  max-width: 80%;
}
.caption--center .caption__overlayShape--up + .caption__content .textButton {
  display: block;
  margin: 0px auto;
  max-width: 70%;
}
@media only screen and (max-width: 1024px) {
  .caption--center .caption__overlayShape--down + .caption__content {
    width: 48%;
  }
}
.caption--center .caption__overlayShape--down + .caption__content .pretext {
  margin: 0px auto;
  max-width: 70%;
}
.caption--center .caption__overlayShape--center + .caption__content .headline, .caption--center .caption__overlayShape--center + .caption__content .subtitle, .caption--center .caption__overlayShape--center + .caption__content .pretext {
  margin: 0px auto;
  max-width: 80%;
}
.caption--center .caption__overlayShape--center + .caption__content .textButton {
  display: block;
  margin: 0px auto;
  max-width: 70%;
}
.caption--center .caption__overlayShape--center + .caption__content .textButton.no-subtitle {
  padding: 10px 0;
}

.caption__overlay.svgShape {
  position: absolute;
  opacity: 0.8;
  width: 60%;
  top: 0;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .caption__overlay.svgShape {
    width: 68%;
  }
}
@media only screen and (max-width: 480px) {
  .caption__overlay.svgShape {
    opacity: 1;
    width: 100%;
  }
}
@media only screen and (min-width: 481px) {
  .caption__overlay.svgShape {
    background-color: transparent !important;
    /* Override section selector */
  }
}
.caption__overlay.svgShape svg {
  width: 100%;
  height: 100%;
}

.caption--center .caption__overlay.svgShape {
  width: 70%;
}
@media only screen and (max-width: 1024px) {
  .caption--center .caption__overlay.svgShape {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .caption--center .caption__overlay.svgShape {
    width: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .caption--center .caption__overlay.svgShape {
    width: 60%;
  }
}

/* #Cart page
================================================== */
.cart__emptyWrapper {
  margin-bottom: 50px;
}

#cart_form {
  clear: both;
}

.cart__empty {
  margin: 5em auto 0;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .cart__empty {
    width: 60%;
  }
}
@media only screen and (max-width: 480px) {
  .cart__empty {
    width: 100%;
  }
}

.cart__empty .continue-button {
  max-width: 325px;
  margin: 0 auto;
}

.topBar__miniCart .warning-box p,
.cart .warning-box p {
  padding: 0;
  margin: 0;
  text-align: right;
}

.cart__itemsInCart p {
  margin-top: 0;
}

.cart__itemList .cart__card {
  border-bottom: 1px solid #d1d1d1;
}

.cart__itemList .cart__card:last-of-type {
  border-bottom: 0px;
}

.cart__card {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.cart__card h2 {
  margin: 0 0 .7em;
  font-size: 16px;
}
.cart__card p {
  margin: 3px 0;
}
.cart__card p.meta {
  font-size: 90%;
}

.cart__removeBtn {
  width: 5%;
  cursor: pointer;
  line-height: 0;
}
.cart__removeBtn [class^=icon-] {
  font-size: 13px;
  padding: 6px;
  border: thin solid #d1d1d1;
  border-radius: 50%;
  vertical-align: middle;
}

.cart__image {
  margin-left: 20px;
}
.cart__image img {
  display: block;
  width: 100%;
  height: 125px;
  object-fit: contain;
}



.cart_savings {
  color: #a96269;
}


@media only screen and (max-width: 798px) {
  .display_product_quantity_cart--true .cart__text {
    width: 100%;
    margin-right: 0;
  }
}

.cart__info {
  padding-left: 20px;
}
.cart__info p,
.cart__info h2 {
  text-align: left;
}

.cart__quantity {
  margin-top: 1em;
}
.modal_price {
  line-height:1.5;
}
  
@media only screen and (min-width: 1200px) {
  .display_product_quantity_cart--true .cart__text {
    width: calc(100% - 44px - 44px - 70px - 20px);
  }
  .cart__info {
    width: 70%;
  }
  .cart__text {
    width: calc(100% - 20px);
    margin-right: 20px;
    float: left;
  }
  .cart__quantity {
    float: left;
    margin: 0;
  }
}
  
@media only screen and (max-width: 798px) {
  .cart__quantity {
    width: 100%;
    margin-top: 10px;
  }
}
.cart__quantity input[type=number] {
  font-size: 18px;
  padding: 5px;
  text-align: center;
  width: 70px;
  float: left;
  border: thin solid #d1d1d1;
  background-color: #ffffff;
  margin-bottom: 0;
}
.cart__quantity input[type=number]::-webkit-inner-spin-button,
.cart__quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.cart__quantityWrap {
  position: relative;
  margin: 0px auto;
}
.cart__quantityWrap .icon-right-arrow,
.cart__quantityWrap .icon-left-arrow {
  vertical-align: middle;
}
.cart__quantityWrap .product-plus,
.cart__quantityWrap .product-minus {
  line-height: 32px;
  border: thin solid #d1d1d1;
  display: block;
  width: 44px;
  height: 44px;
  float: left;
  cursor: pointer;
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart__quantityWrap .product-plus:hover,
.cart__quantityWrap .product-minus:hover {
  color: #ffffff;
  background-color: #000000;
}
.cart__quantityWrap .product-plus {
  border-left: 0;
}
.cart__quantityWrap .product-minus {
  border-right: 0;
}
.cart__quantityWrap input {
  width: 70px;
  height: 44px;
}

.cart__notes {
  margin-top: 20px;
  display: block;
}

.cart__notes textarea {
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
  border: thin solid #d1d1d1;
}

.cart__shippingCalc select {
  color: #000000;
}
.cart__shippingCalc input {
  background-color: #ffffff;
}
.cart__shippingCalc .shippingCalculator__results {
  padding-left: 0;
}


@media only screen and (max-width: 1024px) {
  .cart__priceBreakdown {
    padding: 0;
  }
}
@media only screen and (max-width: 798px) {
  .cart__priceBreakdown {
    padding: 40px 0 0;
    left: auto;
  }
}
.cart__priceBreakdown .get-rates {
  height: auto;
  white-space: normal;
  margin-bottom: 0;
}
.cart__priceBreakdown .add_to_cart {
  border-radius: 0;
}
.cart__priceBreakdown #checkout {
  min-height: 54px;
}
.cart__priceBreakdown #checkout:hover {
  border-color: #a96269;
}
.cart__priceBreakdown select,
.cart__priceBreakdown input[type=text] {
  border-color: #d1d1d1;
}
.cart__priceBreakdown .cart_savings {
  color: #a96269;
  font-size: 18px;
}
.cart__priceBreakdown .cart_subtotal {
  margin-top: 0px;
  font-size: 24px;
}
.cart__priceBreakdown div {
  text-align: center;
}
.cart__priceBreakdown div .cart_subtotal {
  margin-bottom: 1em;
}
.cart__priceBreakdown div .cart_savings {
  margin-top: 0;
}

.cart__shippingToggle {
  cursor: pointer;
  color: #a96269;
  margin-top: 20px;
}

.cart__shippingCalc {
  margin-bottom: 20px;
}
.cart__shippingCalc input,
.cart__shippingCalc select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}
.cart__shippingCalc ul {
  list-style: none;
}

.cart__tos {
  margin-bottom: 15px;
}
.cart__tos .cart__tos_input {
  display: flex;
}
.cart__tos .cart__tos_input #cart_agree {
  margin-top: 5px;
}
.cart__tos input {
  vertical-align: center;
  line-height: 1em;
  flex-shrink: 0;
}
.cart__tos .tos_label {
  display: flex;
  padding-left: 10px;
}
.cart__tos .tos_label p {
  margin: 0;
  text-align: left;
  color: #000000;
}
.cart__tos .tos_label a {
  color: #a96269;
}
.cart__tos .tos_label a:hover {
  color: #a96269;
}

.cart__featuredLinks {
  margin-top: 20px;
}

/* #Collection page
================================================== */
body[class^=collection] .no-matches {
  padding-top: 20px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 480px) {
  body[class^=collection] .no-matches {
    padding-top: 0;
  }
}
body[class^=collection] img {
  max-width: 100%;
}.list-collection-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* #Product page
================================================== */
.product-section__lightbox .fancybox-image {
  width: 100%;
  padding: 25px;
}
@media only screen and (max-width: 798px) {
  .product-section__lightbox .fancybox-image {
    padding: 10px;
  }
}

/* Set product media height */
.gallery-wrap.product-height-set model-viewer {
  margin: 0 auto;
}
.gallery-wrap.product-height-set .product_gallery img,
.gallery-wrap.product-height-set .product_gallery .plyr--html5 video {
  width: 100%;
}
.gallery-wrap.product-height-set .product_gallery img {
  object-fit: contain;
}
.gallery-wrap.product-height-set .product_gallery .plyr--youtube .plyr__video-embed {
  height: 100%;
}



/* Animation for checkmark on add to cart button */
button.add_to_cart {
  position: relative;
}
button.add_to_cart.disabled {
  opacity: 1;
}
button.add_to_cart .text {
  display: block;
  width: 100%;
  animation-duration: 0.5s;
}
button.add_to_cart .slideInLeft.text {
  animation-duration: 0.8s;
}

button .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
button .checkmark path {
  stroke-dasharray: 19.79 19.79;
  stroke-dashoffset: 19.79;
  stroke: #ffffff;
  opacity: 0;
}
button .checkmark.checkmark-active path {
  animation: drawCheckmark 0.5s linear alternate forwards;
}

button.action_button--secondary .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
button.action_button--secondary .checkmark path {
  stroke-dasharray: 19.79 19.79;
  stroke-dashoffset: 19.79;
  stroke: #f58f98;
  opacity: 0;
}
button.action_button--secondary .checkmark.checkmark-active path {
  animation: drawCheckmark 0.5s linear alternate forwards;
}

.description-bottom {
  padding-bottom: 30px;
}

@keyframes drawCheckmark {
  from {
    stroke-dashoffset: 19.79;
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.ie button .checkmark path {
  stroke-dashoffset: 0;
  opacity: 0;
}
.ie button .checkmark.checkmark-active path {
  animation: fadeCheckmark 0.5s linear alternate forwards;
}
@keyframes fadeCheckmark {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product__container {
  margin-bottom: 40px;
}

.product__collectionsList {
  display: none;
}
@media only screen and (max-width: 480px) {
  .product__collectionsList {
    display: block;
    width: 100%;
  }
}

.productInfo--collection {
  margin-top: 3px;
}
@media only screen and (max-width: 480px) {
  .productInfo--collection {
    display: none;
  }
}

.product__section {
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 798px) {
  .product__section {
    display: block;
  }
}

.product__social {
  margin-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .product__social {
    justify-content: center;
  }
}

.product__section.media-position--right {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 798px) {
  .product__section.media-position--right {
    flex-direction: row;
  }
}

.product__vendor {
  margin: 0;
}

.product__vendor a {
  text-transform: uppercase;
  color: #000000;
}

.product__vendor + .product__sku {
  margin-top: 0;
}

.product__sku {
  text-transform: uppercase;
  color: #000000;
}

.product__banner-holder {
  margin-bottom: 10px;
}
@media only screen and (max-width: 798px) {
  .product__banner-holder {
    margin-bottom: 40px;
  }
}

.product__title {
  margin: 1em 0;
  line-height: 1.5;
  word-break: break-word;
  font-size: 22px;
}

.product__stars {
  color: #a96269;
}

.product__images {
  width: 100%;
}


.productText .current_price,
.productText .modal_price {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 25px;
}
.productText .sale span.money {
  color: #a96269;
}
.productText .was_price span.money {
  font-size: 19.2px;
  color: #8c8b8b;
}
.productText .savings {
  color: #a96269;
  margin-left: 5px;
  font-size: 19.2px;
}
@media only screen and (max-width: 480px) {
  .productText .savings {
    display: block;
  }
}
  
@media only screen and (min-width: 500px) {
  .product__title {
    text-align: center;
    font-size: 24px;
  }
  .productText .current_price,
  .productText .modal_price {
    font-size: 28.8px;
  }
}
@media only screen and (min-width: 799px) {
  .product__images {
    width: calc(60% - 65px);
  }
}
  

.was_price {
  text-decoration: line-through;
}

:root {
  --color-body-text: #000000;
  --color-body: #ffffff;
  --color-bg: #ffffff;
}

shopify-payment-terms {
  display: block;
  padding-bottom: 8px;
  margin-top: 8px;
  font-size: 16px;
}

/* Product gallery */
.product_gallery {
  opacity: 0;
}
@media only screen and (max-width: 798px) {
  .product_gallery.single-image {
    padding-bottom: 20px;
  }
}
.product_gallery .gallery-cell {
  width: 100%;
  display: block;
  margin-right: 10px;
}
.product_gallery .gallery-cell span {
  display: block;
  width: 100%;
}
.product_gallery.flickity-enabled {
  opacity: 1;
}
.product_gallery img {
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
}
.product_gallery .flickity-page-dots {
  position: static;
  margin-top: 25px;
}

.product_gallery button.flickity-prev-next-button {
  background-color: rgba(255, 255, 255, 0.5);
}

.flickity-prev-next-button:hover {
  background: transparent;
}

.product_gallery_nav.product-nav-slider--false {
  display: flex;
  justify-content: center;
}
.product_gallery_nav.product-nav-slider--false .gallery-cell {
  margin-bottom: 10px;
  margin-right: 10px;
}
.product_gallery_nav.product-nav-slider--false .gallery-cell img {
  margin: 0 auto;
}

.product_gallery_nav {
  margin-top: 20px;
  padding: 10px;
  border: thin solid #d1d1d1;
}
@media only screen and (max-width: 798px) {
  .product_gallery_nav {
    padding: 10px 0;
    margin: 10px 0;
    border: 0;
  }
}

.product_gallery_nav .flickity-prev-next-button {
  background: transparent;
}
.product_gallery_nav .flickity-prev-next-button:hover {
  border: none;
}
.product_gallery_nav .flickity-prev-next-button.previous {
  left: 0px;
}
.product_gallery_nav .gallery-cell:focus {
  outline: 1;
}
.product_gallery_nav button.flickity-prev-next-button.previous:hover {
  left: 0px;
  color: darken;
  background: transparent;
}
.product_gallery_nav .flickity-prev-next-button.next {
  right: 0px;
}
.product_gallery_nav button.flickity-prev-next-button.next:hover {
  right: 0px;
  color: darken;
  background: transparent;
}
.product_gallery_nav .gallery-cell.is-nav-selected {
  opacity: 1;
}
.product_gallery_nav .gallery-cell {
  opacity: 0.5;
  position: relative;
  display: flex;
}
@media screen and (min-width: 799px) {
  .product_gallery_nav .gallery-cell {
  	margin: 10px;
  }
}
@media screen and (max-width: 798px) {
  .product_gallery_nav div:first-child {
    margin-left: 10px;
  }
}
.product_gallery_nav .gallery-cell img {
  height: 100%;
}

.product_gallery_nav.no-slide {
  border: none;
  padding: 20px 0;
}
.product_gallery_nav.no-slide .flickity-prev-next-button {
  opacity: 0;
}

.slideshow_animation--fade .product_gallery .flickity-slider {
  transform: none !important;
}
.slideshow_animation--fade .product_gallery .gallery-cell {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.slideshow_animation--fade .product_gallery .gallery-cell.is-selected {
  opacity: 1;
  z-index: 0;
}

.product_links {
  margin: 20px 0 8px;
  font-size: 0.9em;
  padding: 10px 0;
}

.product_links p {
  margin: 2px 0;
}

.product__socialLabel {
  margin: 0;
  margin-right: 5px;
}

/* Product form */
.product_form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product_form p.warning {
  margin-top: 40px;
}

.productForm__select select:focus {
  outline: auto;
}

.product_form .purchase-details {
  margin-top: 20px;
}

.productForm__quantityInput {
  line-height: 1.4;
  min-height: 44px;
  margin-bottom: 0;
  width: calc(100% - 88px);
  text-align: center;
  padding: 6px 15px;
  height: 44px;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  float: left;
  background-color: #ffffff;
}

input.quantity[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
}

input.quantity[type=number]::-webkit-inner-spin-button,
input.quantity[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.productForm__quantity .quantity,
.productForm__quantity .quantity:focus,
.productForm__quantity .product-plus,
.productForm__quantity .product-minus {
  border: 1px solid #000000;
  color: #000000;
}

.productForm__quantity label {
  margin-bottom: 0.5em;
}

.productForm__quantity {
  margin: 10px 0;
  width: calc(45% - 5px);
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 1024px) {
  .productForm__quantity {
    width: 100%;
    max-width: 100%;
  }
}
.productForm__quantity label {
  text-align: left;
}
.productForm__quantity .product-plus,
.productForm__quantity .product-minus {
  font-weight: 300;
  position: relative;
  cursor: pointer;
  height: 44px;
  display: block;
  width: 44px;
  text-align: center;
  float: left;
  font-size: 15px;
  line-height: 45px;
  color: #000000;
  background-color: #ffffff;
  transition: all 0.2s linear;
}
.productForm__quantity .product-plus:hover,
.productForm__quantity .product-minus:hover {
  color: #ffffff;
  background-color: #000000;
}
@media only screen and (max-width: 798px) {
  .productForm__quantity .product-plus,
.productForm__quantity .product-minus {
    display: inline;
    display: initial;
    margin: 0;
  }
}
.productForm__quantity .product-plus {
  border-left: 0;
}
.productForm__quantity .product-minus {
  border-right: 0;
}

  
.display_product_quantity--true.smart-payment-button--true .productForm__quantity {
  margin: 0 auto 2.5em;
}

.items_left {
  margin-top: 0;
  margin-bottom: 20px;
  font-style: italic;
  width: 100%;
}

.display_product_quantity--true.smart-payment-button--false .items_left {
  order: 1;
}
@media only screen and (max-width: 1024px) {
  .display_product_quantity--true.smart-payment-button--false .items_left {
    order: 0;
  }
}

.smart-payment-button--false .atc-btn-container {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 1024px) {
  .smart-payment-button--false .atc-btn-container {
    width: 100%;
  }
}

.product_form .action_button--secondary {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 1024px) {
  .product_form .action_button--secondary {
    width: 100%;
    margin-bottom: 10px;
  }
}

.product_form .shopify-payment-button {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 1024px) {
  .product_form .shopify-payment-button {
    width: 100%;
  }
}

.product__section .product_form {
  max-width: 100%;
}

.product__section .notify_form {
  max-width: 100%;
}

.purchase--sticky {
  display: none;
}
@media only screen and (max-width: 480px) {
  .purchase--sticky button.action_button {
    border: 2px solid #f58f98;
    padding: 20px 5px;
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .spr-container {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 480px) {
  .is-sticky {
    display: block;
    margin: 0;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    position: fixed;
    right: 0;
    transform: translate3d(0, 0, 0);
    /* To avoid flickering while scrolling */
    z-index: 98;
  }
}.sold_out_price {
  opacity: 0.2;
}

.sold_out_text.sale {
  color: #a96269;
}

.atc-btn-container {
  width: 100%;
}
.atc-btn-container.disabled {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1025px) {
  .atc-btn-container {
    display: flex;
    justify-content: space-between;
  }
}

/* # Product media
================================================== */


.product-gallery__model model-viewer,
.product-gallery__video iframe {
  width: 100%;
  min-height: 450px;
}

.product-gallery__model {
  position: relative;
}
.product-gallery__model model-viewer {
  width: 100%;
  min-height: 500px;
}

button.view-in-your-space {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  background: #e6e6e6;
  color: #000000;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  border: 0;
}
button.view-in-your-space svg path:first-child {
  stroke: #000000;
}
button.view-in-your-space svg path:last-child {
  fill: #000000;
}

.plyr--video .plyr__controls {
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}
.plyr--video .plyr__control {
  background: transparent;
  color: #000000;
}
.plyr--video .plyr__control:hover {
  background: #ffffff;
  color: #000000;
}
.plyr--video .plyr__controls__item.plyr__time,
.plyr--video input[type=range],
.plyr--video .plyr__controls__item {
  color: #000000;
}
.plyr--video .plyr__progress input[type=range] + .thumb {
  background-color: #000000;
  color: #000000;
}
.plyr--video input[type=range]::-webkit-slider-thumb {
  background-color: #000000;
}
.plyr--video input[type=range]::-moz-range-thumb {
  background-color: #000000;
}
.plyr--video input[type=range]::-ms-thumb {
  background-color: #000000;
}
.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: rgba(0, 0, 0, 0.6);
}
.plyr--video .plyr__control.plyr__tab-focus {
  background-color: #000000;
}
.plyr--video .plyr__control--overlaid {
  background: #ffffff;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3px;
  height: auto;
}
.plyr--video .plyr__control--overlaid svg {
  left: auto;
}
.plyr--video .plyr__control--overlaid:hover {
  background: #ffffff;
}
.plyr--video .plyr__control--overlaid:hover .play-icon-button-control rect {
  opacity: 0.75;
}
.plyr--video .plyr__control .play-icon-button-control {
  width: 52px;
  height: 52px;
}
.plyr--video .plyr__control .play-icon-button-control rect {
  fill: #ffffff;
}
.plyr--video .plyr__control .play-icon-button-control path {
  fill: #000000;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-right: 10px;
  padding-left: 10px;
}

/* Styles for a vertical volume scrollbar */
.plyr--full-ui .plyr__volume {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  bottom: 105px;
  height: 40px;
  opacity: 0;
  padding: 10px 15px !important;
  position: absolute;
  transform: rotate(270deg);
  transition: visibility 0.4s linear 0.4s, opacity 0.4s linear 0.3s;
  width: 140px;
}
.plyr--full-ui .plyr__volume:before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.25);
  bottom: 18px;
  content: "";
  left: -6px;
  position: absolute;
  transform: rotate(90deg);
  z-index: 2;
}
.plyr--full-ui .plyr__volume:hover {
  opacity: 1;
  visibility: visible;
}
.plyr--full-ui .plyr__volume.plyr__volume--is-visible {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}
.plyr--full-ui .plyr__volume input[type=range] {
  color: #000000;
  margin: 0 auto;
}

.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-thumb {
  box-shadow: none;
}

.plyr--full-ui .plyr__volume input[type=range]::-ms-fill-upper,
.plyr--full-ui .plyr__volume input[type=range]::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: none;
}

.plyr--audio .plyr--full-ui .plyr__volume {
  bottom: 125px;
  right: -37px;
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr__control[data-plyr=mute]:hover + .plyr__volume {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}

@media (min-width: 480px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 90px;
  }
}
@media (min-width: 750px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 110px;
  }
}
@media only screen and (max-width: 989px) {
  .plyr--is-touch .plyr__volume {
    display: none !important;
  }
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #000000;
  background: #ffffff;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button[hidden] {
  display: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
  color: rgba(0, 0, 0, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.video-on-hover .plyr__controls,
.video-on-hover .plyr__control--overlaid,
.swap-true .plyr--youtube .plyr__controls,
.swap-true .plyr--youtube .plyr__control--overlaid,
.video-controls-enabled--false .plyr__controls,
.video-controls-enabled--false .plyr__control--overlaid {
  opacity: 0;
}
.video-on-hover .plyr__controls > *,
.video-on-hover .plyr__control--overlaid > *,
.swap-true .plyr--youtube .plyr__controls > *,
.swap-true .plyr--youtube .plyr__control--overlaid > *,
.video-controls-enabled--false .plyr__controls > *,
.video-controls-enabled--false .plyr__control--overlaid > * {
  pointer-events: none;
  cursor: auto;
}

.product__imageContainer .plyr .plyr__controls,
.product__imageContainer .plyr .plyr__control--overlaid {
  opacity: 0;
}
.product__imageContainer .plyr .plyr__controls > *,
.product__imageContainer .plyr .plyr__control--overlaid > * {
  pointer-events: none;
  cursor: auto;
}

/* Accessibility styling */
.product_gallery .gallery-cell {
  visibility: hidden;
}
.product_gallery .gallery-cell.is-selected {
  visibility: visible;
}

/* Hide controls on mobile when video is stopped */
.plyr.plyr--stopped .plyr__controls {
  display: none;
}

.product_slider.product-height-set {
  /* When product height setting checked, these styles apply */
}
.product_slider.product-height-set model-viewer {
  margin: 0 auto;
}
.product_slider.product-height-set .product-gallery__main img,
.product_slider.product-height-set .product-gallery__main .plyr--html5 video,
.product_slider.product-height-set .product-gallery__main .plyr--youtube {
  width: 100%;
  object-fit: contain;
}

.product_gallery_nav .media-badge {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 33%;
  max-height: 33%;
  min-width: 20px;
  width: 25px;
  height: 25px;
}
.product_gallery_nav .media-badge svg {
  width: 100%;
  height: 100%;
}
.product_gallery_nav .media-badge path:first-child {
  fill: #ffffff;
}
.product_gallery_nav .media-badge path:last-child {
  fill: #000000;
}
.product_gallery_nav .media-badge g path:first-child {
  stroke: #000000;
}
.product_gallery_nav .media-badge .media-badge__outline {
  stroke: rgba(0, 0, 0, 0.05);
}

/* #Size Chart
================================================== */
.size_chart {
  float: right;
  padding-top: 5px;
}

.js-sizechart-lightbox {
  padding: 25px;
}

/* #Swatch Styles
================================================== */
/* SASS variables for swatch dimensions */.selector-wrapper,
.productForm__select {
    display: none;
  }
.swatch_options {
    margin-bottom: 40px;
    width: 100%;
  }
.swatch .option_title {
    margin: 0.5em 0;
  }
/* Hide radio buttons.*/
.swatch input {
    display: none;
  }
.swatch label {
    float: left;
    min-width: 40px;
    height: 40px;
    margin: 0;
    font-size: 13px;
    text-align: center;
    line-height: 40px;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 10px;
    position: relative;
  }
.swatch-element {
    border: #e2e2e2 1px solid;
    min-width: 40px;
    min-height: 40px;
    transition: all 0.1s linear;
  }
.swatch-element.color:hover,
.swatch-element.color:focus {
    border-color: #e2e2e2;
  }
.swatch-element.color label {
    min-width: 40px;
    height: 40px !important;
    line-height: 40px;
    background-position: center;
    background-size: cover;
    border: #e2e2e2 1px solid;
  }
.swatch-element.color {
    border-color: transparent;
    padding: 0;
    border-width: 0;
    border-bottom-width: 4px;
    padding-bottom: 5px;
  }
.swatch_options input:checked + .swatch-element.color {
    border-color: black;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.1);
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    outline: none;
  }
.swatch-element.color label {
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
  }
.swatch_options input:checked + .swatch-element {
    border-color: black;
    box-shadow: 0px 0px 0px 2px white;
  }
.swatch .swatch-element {
    float: left;
    transform: translateZ(0);
    margin: 0px 8px 8px 0;
    position: relative;
  }
.crossed-out {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
.swatch .swatch-element .crossed-out {
    display: none;
  }
.swatch .swatch-element.soldout label .crossed-out {
    display: block;
    height: 100%;
    width: 100%;
    pointer-events: none;
  }
.swatch .color.soldout label .crossed-out {
    height: calc(100% - 3.5px);
    width: calc(100% - 3.5px);
  }
.swatch .swatch-element.soldout label {
    opacity: 0.6;
  }
/* Tooltips */
.swatch .tooltip {
    text-align: center;
    background: #333;
    background: rgba(51, 51, 51, 0.9);
    color: #fff;
    bottom: 100%;
    padding: 5px 10px;
    display: block;
    position: absolute;
    width: 120px;
    font-size: 13px;
    left: -35px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    z-index: 10000;
  }
.swatch .tooltip:before {
    bottom: -20px;
    content: "";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
  }
/* CSS triangle */
.swatch .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid rgba(51, 51, 51, 0.9) 10px;
    bottom: -10px;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0;
  }
.swatch .swatch-element:focus .tooltip,
.swatch .swatch-element:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }/* #Quick shop
================================================== */
.quickShop__borderOverlay,
.quickShop {
  animation: fadein 0.5s;
  display: none;
  position: absolute;
  width: calc(100% + 20px);
}
@media only screen and (max-width: 1024px) {
  .quickShop__borderOverlay,
.quickShop {
    diplay: none !important;
    /* Overwrite JS styling on mobile */
  }
}

.quickShop__borderOverlay {
  border-top: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  height: calc(100% + 20px);
  left: -10px;
  padding: 10px 10px 0 10px;
  top: -10px;
}

.quickShop__container {
  margin: 0px auto;
  padding: 10px;
  width: 100%;
}

.collection__featuredImage .quickShop__container {
  max-width: 300px;
}

.quickShop {
  background-color: #ffffff;
  border-bottom: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  left: -10px;
  top: 100%;
  z-index: 1000;
}
.quickShop .purchase-details,
.quickShop .action_button {
  animation: fadein 0.5s;
  width: 100%;
}
.quickShop .shopify-payment-button {
  padding-top: 10px;
  width: 100%;
}
.quickShop .productForm__select,
.quickShop .swatch_options {
  display: none;
  text-align: left;
  width: 100%;
}
.quickShop .productForm__select {
  margin-bottom: 0;
}
.quickShop .productForm__select label,
.quickShop .productForm__select select,
.quickShop .productForm__select .selector-wrapper {
  max-height: 48px;
}
.quickShop .productForm__select .selector-wrapper {
  margin-bottom: 10px;
}
.quickShop .swatch_options {
  margin-bottom: 10px;
}
.quickShop .product_form .purchase-details {
  margin-top: 0;
}
.quickShop .product_form--swatches .swatch_options {
  flex-direction: column;
}
.quickShop .product_form--dropdown .productForm__select.single-option .selector-wrapper {
  min-width: calc(70% - 15px);
}
.quickShop .product_form--dropdown .productForm__select.single-option select {
  width: 100%;
}
.quickShop .product_form--dropdown .productForm__select.multiple-options {
  flex-direction: column;
}
.quickShop .product_form--dropdown .productForm__select.multiple-options .selector-wrapper {
  min-width: 100%;
}

.quickShop--variants.quickShop--closed .shopify-payment-button,
.quickShop--variants.quickShop--closed .quickShop__button {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.quickShop--no-variants .quickShop__button--more-options {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.quickShop--variants.quickShop--opened .quickShop__button--more-options {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.shopify-payment-button button.shopify-payment-button__button--hidden {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Styling for featured image */
.collection__featuredImage .quickShop {
  left: 0;
  width: 100%;
}

/* Hover states */
.collection__grid .thumbnail.quickShop--true:focus-within,
.collection__grid .thumbnail.quickShop--true:hover {
  overflow: visible;
}
@media only screen and (max-width: 1024px) {
  .collection__grid .thumbnail.quickShop--true:focus-within .quickShop__borderOverlay,
.collection__grid .thumbnail.quickShop--true:focus-within .quickShop,
.collection__grid .thumbnail.quickShop--true:hover .quickShop__borderOverlay,
.collection__grid .thumbnail.quickShop--true:hover .quickShop {
    display: none !important;
    /* Overwrite JS styling on mobile */
  }
}
.collection__grid .thumbnail.quickShop--true:focus-within .quickShop__borderOverlay,
.collection__grid .thumbnail.quickShop--true:focus-within .quickShop,
.collection__grid .thumbnail.quickShop--true:hover .quickShop__borderOverlay,
.collection__grid .thumbnail.quickShop--true:hover .quickShop {
  display: block;
}

.thumbnail .collection_swatches {
  position: relative;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out 0.5s;
  z-index: 100;
  visibility: visible;
}
.thumbnail .product__price {
  display: none;
}
.thumbnail.quickShop--opened:hover .thumbnail__overlay,
.thumbnail.quickShop--opened:hover .product-details {
  opacity: 1;
}
.thumbnail.quickShop--opened:hover .collection_swatches {
  border: 0;
  margin: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
.thumbnail.quickShop--opened:hover .product__price {
  display: block;
}
.thumbnail.quickShop--opened:hover .product-details span.price {
  display: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.quickShop--opened .quick-shop__unit-price {
  display: none;
}

.quickShop--closed .product-details__unit-price {
  display: none;
}

/* #Contact page
================================================== */
@media only screen and (max-width: 480px) {
  .contact__page .map-section {
    margin: 20px 0;
  }
}

@media only screen and (min-width: 799px) {
  .contactPage__main {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .contactPage__content {
    margin-bottom: 20px;
  }
}

.contactPage__content.logo--true .featuredContact__form {
  padding-top: 20px;
}

.contactPage__content .placeholder-svg {
  max-height: 200px;
}

.contactPage__content.contactSection__form {
  margin: 0 1em 0 0;
  padding: 0;
}
.contactPage__content.contactSection__form .contactPage__logo {
  max-width: 50%;
  margin: 20px auto 0;
}

/* #Search
================================================== */
.searchForm {
  max-width: 70%;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .searchForm {
    max-width: 100%;
  }
}
.searchForm .icon-search {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  font-size: 24px;
  line-height: 44px;
  width: 43px;
  height: 43px;
  color: white;
  background-color: black;
}

.searchResults__searchBar {
  margin-bottom: 40px;
}

.search__fields {
  position: relative;
}

.search__container input {
  width: 100%;
  margin-bottom: 10px;
  padding-right: 0;
}
.search__container input[type=submit].search_button {
  background-color: transparent;
  border: none;
  color: black;
  padding: 0;
  margin: 0;
  content: "𑩪";
}

.search__item {
  width: 100%;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #d1d1d1;
  overflow: auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .search__item {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .search__item {
    flex-direction: column;
  }
}
.search__item .sub_title {
  margin: 0;
}
.search__item .blog_meta span + span {
  margin-top: 0;
}
.search__item:first-child {
  border-top: 0px;
  padding-top: 0px;
  margin-top: 0px;
}

.searchResult__imageContainer img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

@media only screen and (max-width: 480px) {
  .searchResult__description {
    padding-top: 20px;
  }
}

.search__title {
  margin-top: 0;
}
@media only screen and (max-width: 590px) {
  .search__title {
    font-size: 16px;
  }
}

.searchSidebar--true {
  width: 80%;
  margin: 0px auto;
}

.searchSidebar--false {
  width: 60%;
  margin: 0px auto;
}

.search h4.toggle {
  margin-top: 0;
}
.search h4.toggle.active svg {
  stroke: #a96269;
  fill: #a96269;
}
.search ul {
  list-style: none;
  padding-left: 0;
}
.search ul li,
.search ul p {
  margin: 0;
}
.search ul.tag_list li {
  display: inline;
}

.mobile-searchForm {
  padding: 20px;
}
@media only screen and (min-width: 799px) {
  .mobile-searchForm {
    display: none;
  }
}
.mobile-searchForm .search-wrapper {
  display: flex;
}
.mobile-searchForm .mobile-search__input {
  width: 100%;
  margin-bottom: 0;
}
.mobile-searchForm .search_button {
  position: absolute;
  right: 15px;
  background: none;
  color: #000000;
  border: 0;
}

/* Predictive search */
.search-enabled__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}
@media only screen and (max-width: 798px) {
  .search-enabled__overlay {
    display: none !important;
  }
}

[data-autocomplete-true],
[data-autocomplete-false],
#autocomplete-search {
  position: relative;
}

.search__results-wrapper {
  display: none;
  position: absolute;
  z-index: 101;
  top: 100%;
}
@media only screen and (min-width: 799px) {
  .search__results-wrapper {
    width: calc(100% + 20px);
    left: -10px;
  }
}

.search__results-wrapper .search__results {
  background-color: white;
  border: 1px solid #d1d1d1;
  border-top: 0px;
  margin-left: 0;
  margin-top: 0;
  padding-top: 12px;
  list-style: none;
}
@media only screen and (min-width: 799px) {
  .search__results-wrapper .search__results {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
.search__results-wrapper .search__results li {
  list-style-type: none;
  padding: 0;
}
@media only screen and (min-width: 799px) {
  .search__results-wrapper .search__results li {
    width: 100%;
    display: inline-block;
    margin-bottom: 0;
    text-align: left;
  }
}
.search__results-wrapper .search__results li a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.5;
  height: auto;
  text-transform: none;
}
.search__results-wrapper .search__results li a .thumbnail {
  max-width: 96px;
  margin: 0 20px 0 0;
}
.search__results-wrapper .search__results li a .thumbnail img {
  width: 100%;
}
.search__results-wrapper .search__results li a .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  color: #a96269;
  width: 100%;
  font-weight: 400;
}
.search__results-wrapper .search__results li a .item-pricing {
  color: #000000;
  padding-left: 20px;
  text-align: right;
  width: 100%;
  max-width: 72px;
  font-weight: 700;
}
.search__results-wrapper .search__results .all-results a {
  padding: 10px 0;
  color: #a96269;
}
@media only screen and (min-width: 1025px) {
  .search__results-wrapper .search__results .all-results a {
    padding: 10px 0 0;
  }
}
.search__results-wrapper .search__results .all-results a .icon-right-caret {
  margin-left: 9px;
  font-size: 1em;
}
.search__results-wrapper .search__results .no-results {
  padding: 20px 0;
  display: block;
}

/* Search page */
.search-template-section .search__results-wrapper {
  padding-top: 0 !important;
  /* Override default styling */
  top: 0;
  width: calc(100% + 40px);
  left: -20px;
}

/* 404 page */
.not-found-template-section .search__results-wrapper {
  width: 100%;
  left: 0;
}

/* Mobile search */
.mobile-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999999;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 799px) {
  .mobile-search {
    display: none !important;
    /* Ensure it does not display on larger screens */
  }
}
.mobile-search .search__fields {
  display: flex;
  position: relative;
}
.mobile-search form {
  background-color: white;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100%;
  width: 100%;
}
.mobile-search input#q {
  font-family: Figtree, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 40px 12px 60px;
  border: 0;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 0;
  text-transform: none;
  margin-bottom: 0;
  width: 100%;
  z-index: 1000;
}
.mobile-search input#q:focus, .mobile-search input#q:active {
  border-bottom: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.mobile-search .icon-search {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1001;
  font-size: 20px;
  cursor: pointer;
}
.mobile-search .close-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-search .search__results-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: relative;
  padding: 0 20px;
  width: 100%;
}
.mobile-search .search__results {
  background-color: white;
  margin-top: 0;
  padding: 0;
  border: 0;
}
.mobile-search .search__results-wrapper .search__results li.all-results {
  padding-top: 16px;
}
.mobile-search .search__results-wrapper .search__results li a {
  padding: 0 0 16px;
}
.mobile-search .search__results-wrapper .search__results li a .title {
  justify-content: normal;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 16px;
}
.mobile-search .search__results-wrapper .search__results li a .title .item-pricing {
  padding-left: 0;
  text-align: left;
  max-width: none;
}
.mobile-search .search__results-wrapper .search__results li a .thumbnail {
  margin-right: 16px;
}

/* Search page */
.search .search__container input[name=q] {
  margin-bottom: 0;
}
.search .search__container .search__results-wrapper {
  position: relative;
  padding: 20px;
}

/* Blog search */
.blog_search .search__results-wrapper {
  width: 100%;
  left: 0;
}
.blog_search .search__results-wrapper .search__results {
  padding: 10px;
}
@media only screen and (min-width: 1025px) {
  .blog_search .search__results-wrapper .search__results li {
    width: 100%;
  }
}
.blog_search .search__results-wrapper .search__results li a {
  display: flex;
}
.blog_search .search__results-wrapper .search__results .thumbnail {
  max-width: 30%;
}
.blog_search .search__results-wrapper .search__results .title {
  flex-direction: column;
  align-items: flex-start;
}

/* #404 page
================================================== */
.pageNotFound input {
  margin: 0 auto;
}

/* #Account
================================================== */
.customers-account .pagination-wrapper {
  padding-top: 30px;
  margin: 0;
}
.customers-account .pagination-wrapper .paginate {
  text-align: left;
}

.customers-reset_password input[type=password],
.customers-activate_account input[type=password] {
  width: 100%;
}

#recover-password {
  background-color: #ffffff;
  border: thin solid #d1d1d1;
  padding: 10px 10px 0;
  clear: both;
}
#recover-password h4 {
  margin-top: 20px;
  color: #A96269;
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: .5em;
}
#recover-password .action_bottom {
  display: block;
  text-align: right;
}
#recover-password .action_bottom .note {
  display: block;
  width: 100%;
}
#recover-password .recover-password-form {
  padding: 30px;
}

.account-header-logout {
  text-align: right;
}

.account-sidebar {
  box-sizing: border-box;
  padding-right: 30px;
}
@media only screen and (max-width: 798px) {
  .account-sidebar {
    border: 0;
    padding-right: 0;
  }
}
.account-sidebar .accountSidebar__content {
  overflow: hidden;
  margin: 0 0 2.5em;
}
@media only screen and (min-width: 591px) {
  .account-sidebar .accountSidebar__content {
    width: 350px;
  }
}
@media only screen and (min-width: 1300px) {
  .account-sidebar .accountSidebar__content {
    width: 320px;
  }
}
  
.account-sidebar .logout {
  display: block;
  padding-bottom: 10px;
}

.customers-addresses select {
  margin-bottom: 15px;
  max-width: 100%;
}
.customers-addresses .account-sidebar {
  border-right: 0;
  padding-right: 0;
}
.customers-addresses .account-sidebar .action_add {
  padding-bottom: 30px;
}
.customers-addresses .account-main {
  box-sizing: border-box;
}
@media only screen and (max-width: 798px) {
  .customers-addresses .account-main {
    border: 0;
    padding-left: 0;
  }
}

.view-address {
  padding-top: 10px;
}

.account-main input {
  margin: 10px 0 20px;
}

.action_bottom .note {
  vertical-align: middle;
  line-height: 60px;
}

.address.note p {
  margin: 3px 0;
}

#address_tables {
  margin-top: 20px;
  overflow: hidden;
}
#address_tables .address_table {
  padding-top: 10px;
}
#address_tables hr {
  width: 100%;
  opacity: 0;
  padding: 7px 0;
}

.view_address {
  margin-top: 5px;
}

.address_title {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.action_edit {
  padding-right: 5px;
}

.action_delete {
  padding-left: 5px;
}

#customer_login {
  overflow: auto;
}

.customer__form {
  padding: 10px;
  border: thin solid #d1d1d1;
  background-color: rgba(255,255,255,.4);
  width: 100%;
}
.customer__form .login__logo {
  padding-top: 20px;
  max-width: 300px;
  width: auto;
  max-height: 100px;
}

.customer__form input {
  border: 0px;
  display: block;
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
  margin: 30px auto 0 auto;
}

.customer__form .btn {
  width: 40%;
}

.customer__form .action_bottom {
  display: flex;
  position: relative;
  width: 100%;
}
.customer__form .action_bottom p {
  bottom: 0px;
  position: absolute;
  width: 50%;
  line-height: 1.2;
}
.customer__form .action_bottom .btn {
  margin-right: 0;
}

.customer__form form {
  padding: 30px;
}

.customer__form img,
.customer__form h4 {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.register__form.account__noImage {
  display: block;
  float: none;
  clear: both;
  margin: 0px auto;
}

.register__image {
  background-size: cover;
}
@media only screen and (max-width: 798px) {
  .register__image {
    margin-top: 40px;
  }
}
.register__image img {
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .register__image .left,
.register__image .right {
    float: none;
    width: 100%;
  }
}

.collection_nav {
  text-align: center;
}

.errors ul {
  padding-left: 0;
  list-style: none;
}

.errors li {
  margin: 3px 0;
  padding: 5px 10px;
  background-color: #fbebeb;
}

/* #Page FAQ
================================================== */
.faqAccordion {
  margin-top: 0;
  margin-bottom: 0;
}
.faqAccordion > dt:last-of-type button {
  border-bottom: 1px solid;
}
.faqAccordion > dt > button {
  background: transparent;
  position: relative;
  padding: 20px 20px 20px 40px;
  color: #000000;
  text-align: left;
  display: block;
  cursor: pointer;
  width: 100%;
  outline: none;
  text-transform: initial;
  min-height: auto;
  height: auto;
  line-height: inherit;
  font-weight: normal;
  font-family: Figtree, sans-serif;
  font-size: 18px;
  box-shadow: none;
  border-radius: 0px;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-color: #d1d1d1 !important;
  /* Overwrites default button styling */
}
.faqAccordion > dt > button:hover {
  color: #a96269;
}
.faqAccordion > dt > button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50.1%);
  left: 15px;
  font-size: 15px;
  font-family: "artisan";
  content: "";
  color: inherit;
}
.faqAccordion > dt > button[aria-expanded=true] {
  border-bottom: none;
  background-color: #f7f7f7;
}
.faqAccordion > dt > button[aria-expanded=true]::after {
  content: "";
  font-size: 15px;
}
.faqAccordion > dd {
  color: #000000;
  padding: 0px 0px 10px 0px;
}
.faqAccordion > dd[aria-hidden=true] {
  display: none;
}

/* #Shapes
================================================== */
.shapesOption {
  position: relative;
}

.ls-shapeWrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  z-index: -1;
}

.rs-shapeWrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: -1;
}
.rs-shapeWrapper .background__shape {
  text-align: right;
}

.background__shape {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}
.background__shape .svgShape {
  max-width: 350px;
}


  .ls-shape1 .svgShape {
    opacity: 0.5;
  }

  .ls-shape1 .svgShape svg {
    transform: rotate(-43deg);
  }

  .ls-shape2 .svgShape {
    opacity: 0.8;
  }

  .ls-shape2 .svgShape svg {
    transform: rotate(80deg);
  }

  .ls-shape3 .svgShape {
    opacity: 0.4;
  }

  .ls-shape3 .svgShape svg {
    transform: rotate(22deg);
  }

  .ls-shape4 .svgShape {
    opacity: 1;
  }

  .ls-shape4 .svgShape svg {
    transform: rotate(43deg);
  }


  .rs-shape1 .svgShape {
    opacity: 0.6;
  }

  .rs-shape1 .svgShape svg {
    transform: rotate(-140deg);
  }

  .rs-shape2 .svgShape {
    opacity: 0.5;
  }

  .rs-shape2 .svgShape svg {
    transform: rotate(93deg);
  }

  .rs-shape3 .svgShape {
    opacity: 0.8;
  }

  .rs-shape3 .svgShape svg {
    transform: rotate(-43deg);
  }

  .rs-shape4 .svgShape {
    opacity: 0.3;
  }

  .rs-shape4 .svgShape svg {
    transform: rotate(64deg);
  }

/* Fix for IE11 sizing */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .background__shape {
    height: 400px !important;
  }

  .svgShape {
    height: 100% !important;
  }
}
/* #Gallery page
================================================== */
.gallery-section__lightbox .fancybox-image {
  width: 100%;
  padding: 25px;
}
@media only screen and (max-width: 798px) {
  .gallery-section__lightbox .fancybox-image {
    padding: 10px;
  }
}

@media only screen and (min-width: 799px) {
  .gallery-wrap.left-thumbnails {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
  }
  .gallery-wrap.left-thumbnails .product_gallery {
    width: 85%;
    margin-left: 3%;
  }
  .gallery-wrap.left-thumbnails .product_gallery_nav {
    width: 12%;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .gallery-wrap.left-thumbnails .product_gallery_nav .gallery-cell {
    width: 100%;
    margin: 0 0 10px 0;
    display: block;
    height: auto;
  }
  .gallery-wrap.left-thumbnails .product_gallery_nav .gallery-cell img {
    height: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .gallery-wrap.left-thumbnails .product_gallery_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gallery-wrap.left-thumbnails .product_gallery_nav .gallery-cell {
    display: inline-block;
  }
}

@media only screen and (min-width: 799px) {
  .gallery-wrap.right-thumbnails {
    display: flex;
    align-items: flex-start;
  }
  .gallery-wrap.right-thumbnails .product_gallery {
    width: 85%;
    margin-right: 3%;
  }
  .gallery-wrap.right-thumbnails .product_gallery_nav {
    width: 12%;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .gallery-wrap.right-thumbnails .product_gallery_nav .gallery-cell {
    width: 100%;
    margin: 0 0 10px 0;
    display: block;
    height: auto;
  }
  .gallery-wrap.right-thumbnails .product_gallery_nav .gallery-cell img {
    height: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 798px) {
  .gallery-wrap.right-thumbnails .product_gallery_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gallery-wrap.right-thumbnails .product_gallery_nav .gallery-cell {
    display: inline-block;
  }
}

.gallery-wrap .button__container {
  border-bottom: 1px solid #d1d1d1;
  margin: 20px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 798px) {
  .gallery-wrap .button__container {
    border-bottom: 0px;
    margin-top: 5px;
    padding-top: 20px;
  }
}
.gallery-wrap .button__container .button__group {
  margin-bottom: -21px;
}
@media only screen and (max-width: 798px) {
  .gallery-wrap .button__container .button__group {
    padding: 0 20px;
    margin-bottom: 0px;
  }
}
.gallery-wrap .button__container .button__group button {
  background-color: #ffffff;
  color: #000000;
  text-transform: capitalize;
  border: thin solid #d1d1d1;
  font-weight: normal;
  border-right-width: 0px;
  position: relative;
  margin: 0px -2px;
  z-index: 1;
}
.gallery-wrap .button__container .button__group button:last-child {
  border-right-width: 1px;
}
.gallery-wrap .button__container .button__group button:hover, .gallery-wrap .button__container .button__group button.is-checked {
  background-color: #f2f2f2;
}
.gallery-wrap .button__container .button__group button.is-checked {
  background-color: #e6e6e6;
  z-index: 90;
}
@media only screen and (max-width: 798px) {
  .gallery-wrap .button__container .button__group button {
    width: calc(50% - 4px);
    margin: 0px -2px;
    border-top: 1px solid transparent;
    border-right-width: 1px;
  }
  .gallery-wrap .button__container .button__group button:first-child, .gallery-wrap .button__container .button__group button:nth-child(2) {
    border-top: 1px solid #d1d1d1;
  }
  .gallery-wrap .button__container .button__group button:last-child {
    border-right-width: 1px;
  }
}
.gallery-wrap .gallery__content {
  width: 100%;
  margin-top: 20px;
}
.gallery-wrap .is-width-standard .gallery__item {
  padding-top: 15px;
}
.gallery-wrap .is-width-standard .gallery__section {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 798px) {
  .gallery-wrap .gallery__item {
    padding-top: 15px;
  }
}
.gallery-wrap .gallery__item img {
  width: 100%;
  display: block;
}
.gallery-wrap .is-width-standard .gallery-type--fitRows .gallery__item {
  padding-top: 15px;
}

/* Gallery block */
.imageGallery .imageGallery__item {
  margin-bottom: 20px;
}

/* #Home page - text columns
================================================== */
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .textColumns__block {
    margin-bottom: 20px;
  }
}

.textColumns {
  
    .ls-shape1 .svgShape {
      opacity: 0.5;
    }

    .ls-shape1 .svgShape svg {
      transform: rotate(-42deg);
    }
  
    .ls-shape2 .svgShape {
      opacity: 0.8;
    }

    .ls-shape2 .svgShape svg {
      transform: rotate(4deg);
    }
  
    .ls-shape3 .svgShape {
      opacity: 0.4;
    }

    .ls-shape3 .svgShape svg {
      transform: rotate(-55deg);
    }
  
    .ls-shape4 .svgShape {
      opacity: 1;
    }

    .ls-shape4 .svgShape svg {
      transform: rotate(90deg);
    }
  
  
    .rs-shape1 .svgShape {
      opacity: 0.6;
    }

    .rs-shape1 .svgShape svg {
      transform: rotate(-10deg);
    }
  
    .rs-shape2 .svgShape {
      opacity: 0.5;
    }

    .rs-shape2 .svgShape svg {
      transform: rotate(30deg);
    }
  
    .rs-shape3 .svgShape {
      opacity: 0.8;
    }

    .rs-shape3 .svgShape svg {
      transform: rotate(-9deg);
    }
  
    .rs-shape4 .svgShape {
      opacity: 0.3;
    }

    .rs-shape4 .svgShape svg {
      transform: rotate(23deg);
    }
  
}
.textColumns .large_text {
  font-family: Figtree, sans-serif;
  font-weight: 500;
  text-transform: none;
  line-height: normal;
  color: #000000;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  font-size: 31px;
  margin: 25px 0;
}
.textColumns .border-style--none {
  padding: 1px;
}
.textColumns .border-style--box {
  border: thin solid #aaaaaa;
}
.textColumns .border-style--quote {
  border-left: thin solid #aaaaaa;
}
.textColumns a.continue-button {
  margin-top: 10px;
}

.textColumn {
  margin-bottom: -20px;
  /* Offset the padding-bottom from textColumn__content */
}
@media only screen and (min-width: 481px) and (max-width: 798px) {
  .textColumn {
    margin-bottom: 0;
  }
}

.textColumn__content {
  padding: 20px;
}
.textColumn__content.columnImage--none h3 {
  margin-top: -9px;
}
.textColumn__content.columnImage--none.columnTitle--none p:first-child {
  margin-top: -5px;
}
.textColumn__content p {
  margin-bottom: 0;
  margin-top: 10px;
}
.textColumn__content .textButton {
  display: block;
  margin-top: 10px;
}

.textColumn__title {
  margin-top: 20px;
  margin-bottom: 10px;
}



/* #Home page - calendar
================================================== *//* #Global banner
================================================== */
.globalBanner {
  position: relative;
}

.globalBanner .sectionHeader__headline.headline {
  text-transform: none;
}

@media only screen and (max-width: 480px) {
  .globalBanner .caption {
    margin-bottom: 20px;
  }
}

.globalBanner .caption__content .headline {
  text-transform: none;
}
.globalBanner .caption__content .heading,
.globalBanner .caption__content .pretext,
.globalBanner .caption__content .subtitle {
  color: #000000;
}
.globalBanner .caption__content .pretext,
.globalBanner .caption__content .subtitle {
  font-size: 18px;
}
.globalBanner .caption__content .pretext {
  margin-bottom: 5px;
}
.globalBanner .caption__content .subtitle {
  margin-top: 5px;
}

.mainContentArea {
  margin-top: 60px;
}

.globalBanner.bannerImage--true {
  margin-bottom: 60px;
}
@media only screen and (max-width: 798px) {
  .globalBanner.bannerImage--true {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .globalBanner.bannerImage--true {
    margin-bottom: 0;
  }
}

.has-banner-option .mainContentArea {
  margin-top: 0;
}

/* #Home page - slideshow
================================================== */
.text-animation--true .caption-content {
  opacity: 0;
}
@media only screen and (max-width: 480px) {
  .text-animation--true .caption-content {
    opacity: 1;
    animation-duration: 0s;
  }
}

.shopify-section--slideshow button.flickity-prev-next-button {
  height: 35px;
  width: 35px;
  background: transparent;
}
@media only screen and (max-width: 480px) {
  .shopify-section--slideshow button.flickity-prev-next-button {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .shopify-section--slideshow button.flickity-prev-next-button.next {
    right: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .shopify-section--slideshow button.flickity-prev-next-button.next:hover {
    right: -2px;
  }
}
@media only screen and (max-width: 1024px) {
  .shopify-section--slideshow button.flickity-prev-next-button.previous {
    left: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .shopify-section--slideshow button.flickity-prev-next-button.previous:hover {
    left: -2px;
  }
}
.shopify-section--slideshow .textButton {
  font-size: 16px;
}

.slideshow:hover .flickity-prev-next-button {
  display: block;
  border: 0px;
}
@media only screen and (max-width: 798px) {
  .slideshow:hover .flickity-prev-next-button {
    display: none;
  }
}

.slideshow {
  position: relative;
  opacity: 0;
}
.slideshow .flickity-viewport {
  overflow: hidden;
}
.slideshow .gallery-cell {
  width: 100%;
  background-color: #666;
  counter-increment: gallery-cell;
}
@media only screen and (max-width: 480px) {
  .slideshow .gallery-cell {
    background-color: transparent;
  }
}
.slideshow .gallery-cell img {
  width: 100%;
  display: block;
}
.slideshow .caption {
  transform: translate3d(0px, 0px, 0px);
}
@media only screen and (max-width: 798px) {
  .slideshow .caption {
    font-size: 16px;
  }
}
.slideshow .text_align--right .svgShape {
  right: 0;
}
.slideshow .text_align--left .svgShape {
  left: 0;
}

.slideshow.flickity-enabled {
  opacity: 1;
}

.slideshow.slideshow_animation--fade .flickity-viewport {
  background-color: #ffffff;
}
.slideshow.slideshow_animation--fade .flickity-slider {
  transform: none !important;
}
.slideshow.slideshow_animation--fade .gallery-cell {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: -1;
  margin: 0 0.005%;
  width: 99.99%;
}
.slideshow.slideshow_animation--fade .gallery-cell.is-selected {
  opacity: 1;
  z-index: 0;
}
  
.shopify-section--slideshow section {
  position: relative;
}
.top-maintitle {
  position: absolute;
  top: 17vw;
  left: 3vw;
  z-index: 10;
}
.top-maintitle__title {
  font-size: 5.1vw;
  margin: 0;
}
.top-maintitle__title span {
  font-size: 55%;
  display: block;
  margin-top: 1.2em;
  padding-left: .3em;
}
.top-maintitle__logo {
  margin: 23vw 0 0 1vw;
}
.top-maintitle__logo img {
  width: 33vw;
}
.flickity-page-dots {
  position: absolute;
  bottom: 3vw;
  right: 1vw;
  width: 10vw;
}
.flickity-page-dots .dot {
  width: 1.2vw;
  height: 1.2vw;
  margin: 0 1vw;
  background: #A96269;
}
  
@media screen and (min-width: 799px) {
  .top-maintitle {
    left: 8vw;
    text-align: center;
  }
  .top-maintitle__title {
    font-size: 3.1vw;
    text-align: left;
  }
  .top-maintitle__title span {
    font-size: 50%;
  }
  .top-maintitle__logo {
    margin: 5vw 0 0;
  }
  .top-maintitle__logo img {
    width: 15vw;
  }
}
  
/* .baseTitle
================================================== */
.baseTitle {
  position: relative;
  padding: 0 0 3em 1em;
  z-index: 10;
}
.baseTitle.line::after {
  content: '';
  position: absolute;
  left: 0;
  height: 0;
  border-left: 1px solid #F58F98;
  transition: all 0.5s;
  top: 0;
  width: 100%;
}
.baseTitle.active:after {
  height: 100%;
}
.fadein {
  opacity: 0;
  transition: 2s;
}
.fadein.active {
  opacity: 1;
}
.baseTitle__sub {
  margin: 0 0 1em;
}
.baseTitle__main {
  font-size: 20px;
  margin: 0;
  line-height: 1.5;
}

.firstFadein, .firstLine {
  animation-fill-mode:forwards;
}  
.firstFadein {
  animation-name: firstFadeinAnime;
  animation-duration:2s;
  animation-timing-function: ease-in-out;
  padding-left: 1em;
}
@keyframes firstFadeinAnime{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.firstLine {
  animation-name: firstLineAnime;
  animation-duration:.8s;
  animation-timing-function: ease;
  position: absolute;
  border-left: 1px solid #F58F98;
}
@keyframes firstLineAnime{
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
   
.firstTitle {
  padding: 0 0 3em 0;
}
  
@media screen and (min-width: 591px) {
  .baseTitle {
    padding: 0 0 6em 2em;
  }
  .baseTitle__main {
    font-size: 30px;
  }
  .firstTitle {
    padding: 0 0 6em 0;
  }
  .firstFadein {
    padding-left: 2em;
  }
}

@media screen and (max-width: 590px) {
  .baseTitle__sub {
    font-size: 14px;
  }
}
  
/* #Home page - series
================================================== */
#shopify-section-1653011758af26e766 {
  padding-bottom: 0;
}
.series-img {
  position: relative;
}
.series-itembox {
  position: absolute;
  z-index: 99;
}
.series-item{
  position: relative;
  text-align: center;
  color: #a5a5a5;
}
.series-itembox__number {
  color: #A96269;
  font-size: 3vw;
}
.series-itembox__name {
  margin: 0;
  line-height: 2.5vw;
}
.series-itembox__name a {
  color: #a5a5a5;
  font-size: 2.3vw;
}
.series-item::before, .series-item::after {
  content: "";
  display: inline-block;
}
.series-item::before {
  border: 1px solid;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}
.series-item::after {
  border-left: 1px solid;
  height: 4vw;
  margin-top: .5vw;
}
.series-item02 .series-itembox__name, .series-item05 .series-itembox__name {
  margin: .2em 0 .4em;
}
.series-item01 {
  top: -4vw;
  right: 37.7vw;
}
.series-item02 {
  top: 3.8vw;
  right: 22.8vw;
}
.series-item03 {
  top: 27vw;
  right: 4vw;
}
.series-item04 {
  top: 23.8vw;
  left: 7.4vw;
}
.series-item05 {
  top: 17.8vw;
  left: 23.2vw;
}
.series-item06 {
  display: none;
}

@media screen and (max-width: 590px) {
  .series-wrap {
    margin-top: -2em;
  }
  .series-img {
    padding-top: 3em;
  }
  .series-item01 {
    right: 46.1vw;
  }
  .series-item02 {
    right: 33.1vw;
  }
  .series-item03 {
    right: 16.1vw;
  }
  .series-item04 {
    left: 19.4vw;
  }
  .series-item05 {
    left: 32.2vw;
  }
}
  
@media screen and (min-width: 591px) {
  .series-img {
    margin-top: -4em;
  }
  .series-itembox__number {
    font-size: 2.5vw;
  }
  .series-itembox__name {
    line-height: 1.5vw;
  }
  .series-itembox__name a {
    font-size: 1.3vw;
  }
  .series-item01 {
    top: -6vw;
    right: 35vw;
  }
  .series-item02 {
    top: -.9vw;
    right: 22.5vw;
  }
  .series-item03 {
    top: 19.1vw;
    right: 6.5vw;
  }
  .series-item04 {
    top: 16.3vw;
    left: 20.4vw;
  }
  .series-item05 {
    top: 11vw;
    left: 34.3vw;
  }
}

@media screen and (min-width: 981px) {
  .series-itembox__number {
    font-size: 25px;
  }
  .series-itembox__name {
    line-height: 1.1;
  }
  .series-itembox__name a {
    font-size: 13px;
  }
  .series-item::before {
    width: 5px;
    height: 5px;
  }
  .series-item::after {
    height: 40px;
    margin-top: 5px;
  }
  .series-item01 {
    top: -4em;
    right: 29.3em;
  }
  .series-item02 {
    top: -.5em;
    right: 21.4em;
  }
  .series-item03 {
    top: 11.8em;
    right: 11.8em;
  }
  .series-item04 {
    top: 10em;
    left: 13.3em;
  }
  .series-item05 {
    top: 6.8em;
    left: 21.6em;
  }
}
  
/* #Home page - series-single
================================================== */
.series-single__top {
  position: relative;
  text-align: center;
  color: #A5A5A5;  
}
.series-single__top::before {
  border: 1px solid;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%);
  background: #fff;
}
.series-single__top::after {
  border-left: 1px solid;
  height: 40px;
  margin-top: 5px;
}
.series-single__top::before, .series-single__top::after {
  content: "";
  display: inline-block;
}
.series-single__number {
  font-size: 25px;
  color: #A96269;
}
.series-single__itemname {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.series-single__box {
  max-width: 480px;
  margin: 0 auto 3em;
}
.series-single__wrap {
  display: flex;
  align-items: center;
}
.series-single__name {
  font-size: 4.7vw;
  margin: 0;
  line-height: 1.3;
}
.series-single__txt {
  font-size: 3.3vw;
  line-height: 1.8;
  margin: 1.5em 0;
}
.series-single__img {
  flex-shrink: 0;
}
.series-single__detail {
  margin: .8em;
  width: 100%;
}
.series-single__img, .series-single__imgHover {
  overflow: hidden;
  background: transparent no-repeat;
  background-size: contain;
}
.series-single__img {
  width: 38vw;
  height: 46vw;
}
.series-single__imgHover {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: .5s;
}
.series-single__imgHover:hover{
  opacity: 0;
}
#series-single__facial {
  background-image: url('./img--top--series_facialform_img.png');
}
#series-single__facialHover {
  background-image: url('./img--top--series_facialform_item__neo.png');
}
#series-single__lotion {
  background-image: url('./img--top--series_lotion_img__neo.png');
}
#series-single__lotionHover {
  background-image: url('./img--top--series_lotion_item__neo.png');
}
#series-single__cream {
  background-image: url('./img--top--series_cream_img.png');
}
#series-single__creamHover {
  background-image: url('./img--top--series_cream_item__neo.png');
}
#series-single__powder {
  background-image: url('./img--top--series_powder_img.png');
}
#series-single__powderHover {
  background-image: url('./img--top--series_powder_item.png');
}
#series-single__skingel {
  background-image: url('./img--top--series_skingel_img.png');
}
#series-single__skingelHover {
  background-image: url('./img--top--series_skingel_item.png');
}
#series-single__eyevivid {
  background-image: url('./img--top--series_eyevivid_img.png');
}
#series-single__eyevividHover {
  background-image: url('./img--top--series_eyevivid_item.png');
}
  
@media screen and (max-width: 500px) {
  .item03__br {
    display: none;
  }
}
  
@media screen and (min-width: 501px) {
  #shopify-section-1653540626f4acea6c {
    padding-top: 0;
  }
  .series-single__detail {
  	margin: 0 0 0 1.3em;
  }
  .series-single__img, .series-single__imgHover {
    background-size: cover;
  }
  .series-single__img {
    width: 190px;
    height: 230px;
  }
  .series-single .__sp {
    display: none;
  }
  .series-single__name {
  	font-size: 20px;
  }
  .series-single__txt {
    font-size: 15px;
    margin: 1.2em 0;
  }
}

@media screen and (min-width: 1000px) {
  .series-single {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .series-single__box {
    width: 48%;
    margin: 0 0 3em;
  }
}
  
/* #Home page - wish
================================================== */
#shopify-section-165301176784b8333b, #section-skin-support {
  background-color: #F5E5E6!important;
  background-image: url('img--top--wish_fp__sp.png')!important;
  background-position: right top!important;
  background-repeat: no-repeat!important;
  padding: 4em 0;
}
.top-wish__img {
  margin: 0 0 1em;
}
.top-wish__txt {
  text-align: center;
}
.top-wish__txt p {
  text-align: left;
}
.top-wish__txt button {
  max-width: 320px;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .top-wish__img {
    text-align: center;
  }
}
@media screen and (max-width: 590px) {
  #shopify-section-165301176784b8333b, #section-skin-support {
    background-size: 40%!important;
  }
}
@media screen and (min-width: 768px) {
  #shopify-section-165301176784b8333b .__sp {
    display: none;
  }
  .top-wish {
    display: flex;
    align-items: center;
  }
  .top-wish__img {
    flex-shrink: 0;
    margin: 0 2.5em 0 1.5em;
    width: 40%;
  }
}
  
@media screen and (min-width: 1401px) {
  #shopify-section-165301176784b8333b, #section-skin-support {
    background-image: url('img--top--wish_fp.png')!important;
    background-position: right bottom!important;
  }
}
  
/* #Home page - Featured blog
================================================== */
.featuredBlog .featuredArticle__tags {
  margin-bottom: 0;
}

.featuredBlog .featuredArticle {
  padding-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .featuredBlog .featuredArticle {
    padding-bottom: 0;
  }
}
#shopify-section-1510725543479 {
  padding: 3em 0;
}
.featuredArticle {
  position: relative;
  width: 100%;
  padding: 1em 3.5em 1em 1em;
  background: linear-gradient(to top, #A5A5A5, rgba(255,255,255,.5) 1px);
}
.featuredArticle::before {
  content: "";
  background: url(img--common--arrow.png);
  width: 22px;
  height: 20px;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.featuredArticle::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #A96269;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.featuredArticle:hover::after {
  transform: scale(1, 1);
}
.featuredArticle:hover {
  color: #A96269;
}
.featuredArticle__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.next-button {
  text-align: center;
  margin-top: 4em;
}
.top-info .baseButton {
  max-width: 380px;
}
  
.infoContainer {
  max-width: 770px;
  margin: 20px 15px 0;
  width: 100%;
}
@media screen and (min-width: 820px) {
  .infoContainer {
    margin: 0 15px 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  .infoContainer {
    margin: 0 0 0 auto;
  }
}
  
@media screen and (min-width: 768px) {
  #shopify-section-1510725543479 {
    padding: 5em 0;
  }
  .featuredArticle {
    display: flex;
    align-items: first baseline;
    padding: 1.5em 5em 1.5em 2em;
  }
  .featuredArticle::before {
    right: 2em;
  }
}
  

/* #footer-shop
================================================== */
#shopify-section-footer {
  margin-top: 7em;
}
body:not(.index) .footer {
  margin-top: 80px;
}
@media only screen and (max-width: 798px) {
  body:not(.index) .footer {
    margin-top: 40px;
  }
}

body:not(.index) .footer.footerIncrease--true {
  margin-top: 150px;
}
@media only screen and (max-width: 798px) {
  body:not(.index) .footer.footerIncrease--true {
    margin-top: 80px;
  }
}

.mobileToggle {
  cursor: pointer;
  display: none;
  left: 0;
  margin-top: 5px;
  position: absolute;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .mobileToggle {
    display: block;
  }
}
.mobileToggle.active .icon-down-caret {
  color: #a96269;
}
.mobileToggle.active .icon-down-caret:before {
  content: "";
}

.mobileToggle.active + .toggle_content {
  padding-bottom: 20px;
}

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

#footer-shop {
  background-color: #A96269;
  color: #fff;
  background-image: url('./img--common--footer_fp__sp.png');
  background-repeat: no-repeat;
  background-position: top right;
}
.footer-shop__wrap {
  padding: 4em 1em;
  box-sizing: content-box;
}
.footer-shop__block {
  border-left: 1px solid #F5E5E6;
  padding: 0 0 1px 1em;
  margin: 0 0 2em 0;
}

@media screen and (max-width: 671px) {
  .footer-shop__wrap {
    max-width: 350px;
    margin: auto;
  }
}

@media screen and (max-width: 1070px) and (min-width: 1000px) {
  #footer-payment {
    width: 260px;
  }
}

@media screen and (max-width: 999px) and (min-width: 591px) {
  #footer-delivery {
    margin: 0 0 2em 0;
  }
}
  
@media screen and (max-width: 999px) and (min-width: 670px) {
  #footer-shop {
    transform: scale(-1,1);
  }
  .footer-shop__wrap {
    max-width: 650px;
    margin: auto;
    transform: scale(-1,1);
  }
}
  
@media screen and  (min-width: 669px) {
  #footer-shop {
    background-image: url('./img--common--footer_fp.png');
    background-position: bottom left;
  }
  .footer-shop__wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer-shop__block {
    padding: 0 0 0 20px;
    margin: 0 2em 2em 0;
    background: rgba(169,98,105,.7);
  }
}
  
@media screen and (min-width: 1000px) {
  .footer-shop__wrap {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 4em 1em 2em;
  }
}
  
@media screen and (min-width: 1071px) {
  .footer-shop__block {
    margin: 0 3em 2em 0;
  }
}
  
.footer-shop__title {
  margin: 0 0 1em;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.footer-payment__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.footer-payment__list li {
  margin-bottom: 1em;
}
.footer-delivery__table {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.footer-delivery__free, .footer-delivery__island {
  font-size: 14px;
}
.footer-delivery__free {
  margin: 1.5em 0 0;
  font-weight: bold;
}
#footer-calendar.footer-shop__block {
  margin: 0;
  padding-bottom: 1.5em;
}

/* #footer-bottom
================================================== */
#footer-bottom p, #footer-bottom ul {
  margin: 0;
}
.footer-bottom__wrap {
  padding: 0 1em;
  margin: 4em 0 3em;
  text-align: center;
}
#footer-menu, #footer-logo {
  display: inline-block;
}
#footer-logo {
  margin-bottom: 2em;
}
.footer-logo__txt {
  font-size: 12px;
  line-height: 2;
  margin-top: .5em;
  text-align: left;
}
#footer-menu ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}
#footer-menu li {
  margin-bottom: 10px;
  text-align: left;
}
#footer-menu a {
  color: #000;
}
#footer-menu a:hover {
  color: #A96269;
}
.footer-menu__sub {
  font-size: 14px;
  padding-left: 1em!important;
}
.footer-menu__sub li {
  margin-bottom: 0!important;
}
.credits {
  font-size: 12px;
  color: #A5A5A5;
  padding-bottom: 2em;
}
  
@media screen and (min-width: 501px) {
  #footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-menu__left {
    margin: 0 2em 0 0;
  }
}
  
@media screen and (min-width: 741px) {
  .footer-bottom__wrap {
    display: flex;
    justify-content: center;
    text-align: unset;
  }
  .footer-menu__left {
    margin: 0 1em 0 3em;
  }
}
  
@media screen and (min-width: 801px) {
  .footer-menu__left {
    margin: 0 4em;
  }
}
  
/* #calendar
================================================== */
.fc-direction-ltr {
    width: 320px;
    height: 261px;
}
#calendar table {
  margin: 0;
}
.fc .fc-toolbar-title {
  font-size: 1em!important;
  color: #fff !important;
  font-weight: bold;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: .5em!important;
}

.fc-today-button{
  background-color: #F5E5E6 !important;
  border-color: #F5E5E6 !important;
  opacity: 1 !important;
  font-size: .8em !important;
  padding: .5em !important;
  line-height: 1 !important;
}
.fc .fc-button-primary {
  color: #A96269!important;
  height: 25px !important;
  min-height: 25px !important;
}

.fc-prev-button, .fc-next-button {
    background-color: #F5E5E6!important;
    border-color: #A96269!important;
    padding: 5px!important;
    line-height: 1!important;
    height: 25px!important;
    display: flex!important;
}

.fc .fc-button .fc-icon {
    font-size: .8em!important;
}

.fc .fc-scroller {
    overflow: hidden !important;
}

.fc tr:first-child td, .fc tr:first-child th {
    width: 45.5px!important;
}

.fc tr:first-child td::after, .fc tr:first-child th::after {
	display: none;
}

.fc .fc-daygrid-day-number {
    font-size: 10px!important;
}

.fc-h-event {
    background-color: #F58F98!important;
    border-color: #F58F98!important;
}

.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {
    font-size: 10px;
}

.fc-h-event .fc-event-title {
  line-height: 1.2;
}
  
.fc-h-event .fc-event-title-container {
    height: 15px;
    text-align: center;
}

.fc .fc-daygrid-day-top {
    line-height: 1;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    min-height: 1em!important;
}

.fc .fc-col-header-cell-cushion {
    font-size: 10px!important;
	color: #A96269!important;
}

.fc-col-header {
	background: #F5E5E6;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: var(--fc-today-bg-color,rgba(245,229,230))!important;
}

.fc-scrollgrid-sync-table {
  background: #fff!important;
}
.fc-daygrid-day-number {
  color: #000!important;
}
.fc .fc-scrollgrid table {
  line-height: 1.4;
}

@media screen and (max-width: 999px) {
  .fc {
    margin: auto;
  }
}

@media screen and (max-width: 370px) {
  .fc-direction-ltr {
    width: 86vw;
    margin: 0;
  }
  .fc tr:first-child td, .fc tr:first-child th {
    width: 38px !important;
  }

}

/* Currency / language switcher in footer */
#footer__selector-form .disclosure__list-wrap {
  bottom: 100%;
}

/* #Unit Pricing
================================================== */
.product-details__unit-price,
.order-details__unit-price,
.quick-shop__unit-price {
  margin: 0;
}

.order-details__unit-price,
.cart__item-unit-price,
.quick-shop__unit-price {
  font-size: smaller;
}

.product-details__unit-price--hidden,
.cart__item-unit-price--hidden,
.order-details__unit-price--hidden,
.quick-shop__unit-price--hidden {
  display: none;
}

.product-details__unit-price {
  font-size: 16px;
}

/* #Surface Pick-up
================================================== */
.surface-pick-up {
  opacity: 1;
  transition: opacity 0.3s ease-in;
  margin-top: 40px;
}
.surface-pick-up.surface-pick-up--loading {
  visibility: hidden;
  opacity: 0;
}

.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: #099E4D;
  --surface-pick-up-embed-theme-error-color: #DE3618;
  --surface-pick-up-embed-theme-paragraph-font-size: 16px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: 14.0px;
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;
  --surface-pick-up-embed-theme-body-text-color: #000000;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  --surface-pick-up-embed-row-gap: 10px;
  --surface-pick-up-embed-column-gap: 10px;
  margin-bottom: 60px;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: #099E4D;
  --surface-pick-up-item-theme-error-color: #DE3618;
  --surface-pick-up-item-theme-paragraph-font-size: 16px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: 14.0px;
  --surface-pick-up-item-theme-body-font-weight-bold: 600;
  --surface-pick-up-item-theme-body-text-color: #000000;
  --surface-pick-up-item-theme-border-color: rgba(209, 209, 209, 0.5);
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 0.8rem;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 22px;
}

.surface-pick-up__modal.fancybox-content {
  padding: 2rem;
  background: #fff;
  display: inline-block;
  margin: 0;
  width: auto;
  max-width: 600px;
  overflow: auto;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.surface-pick-up__modal.fancybox-content .fancybox-close-small svg {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.surface-pick-up__modal-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(209, 209, 209, 0.5);
}

.surface-pick-up__modal-title {
  font-size: 24px;
  font-weight: bold;
  border-top: none;
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 5px;
}

.surface-pick-up__modal-subtitle {
  font-size: 16px;
}

button.surface-pick-up-embed__modal-btn {
  font-family: Figtree, sans-serif;
  font-weight: 400;
  font-size: smaller;
  text-transform: inherit;
  color: #000000;
  letter-spacing: 0;
}
button.surface-pick-up-embed__modal-btn:hover {
  background: none;
  color: #000000;
}
button.surface-pick-up-embed__modal-btn:active {
  box-shadow: none;
}

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.4em;
}

.surface-pick-up-item__pick-up-location {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-transform: none;
}

.surface-pick-up-item__address-info {
  font-size: 0.85em;
  line-height: 1.5;
}

.surface-pick-up-item__in-stock-icon,
.surface-pick-up-item__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.2em;
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 5rem;
}

.surface-pick-up-item:last-child {
  padding-bottom: calc(var(--surface-pick-up-item-gap) / 2);
}

.surface-pick-up-embed__location-availability,
.surface-pick-up-item__pick-up-location {
  font-size: 16px;
  font-family: Figtree, sans-serif;
  letter-spacing: 0;
  border-bottom: none;
  padding-bottom: 0;
  text-transform: none;
  line-height: 1.8em;
}

.surface-pick-up-item__header {
  align-items: center;
}
  


/* #Font-Face
================================================== */
/*  This is the proper syntax for an @font-face file.
    Upload your font files to Assets and then
    copy your FontName into code below and remove
    comment brackets */
/*  @font-face {
      font-family: 'FontName';
      src: url('FontName.eot');
      src: url('FontName.eot?iefix') format('eot'),
           url('FontName.woff') format('woff'),
           url('FontName.ttf') format('truetype'),
           url('FontName.svg#webfontZam02nTh') format('svg');
      font-weight: normal;
      font-style: normal; }
*/
/* #Custom Styles
================================================== */
  

/* custom
================================================== */
.marginNone {
  margin: 0;
}
.pink {
  color: #a96269;
}
  
/* デフォルトページ共通
================================================== */
.shopify-section--page-template .__pc {
  display: none;
}
@media screen and (min-width: 591px) {
  .shopify-section--page-template .__sp {
    display: none;
  }
  .shopify-section--page-template .__pc {
    display: block;
  }
}
  

body div:nth-of-type(2).shopify-section {
  border-top: 2px solid #F5E5E6;
  background: url(img--page--head_fp__sp.png) no-repeat top left/30%;
}
.index .shopify-section {
  background: none!important;
  border: none!important;
  min-height: auto!important;
}
 
.pageWrap {
  margin: 0 0 0 1em;
}
.sectionHeader {
  padding: 15vw 0;
}
.sectionHeader__headline {
  font-size: 7vw;
  text-align: right;
}

.baseContainer {
  max-width: 860px;
  padding: 0 1em 0 0;
  box-sizing: content-box;
  margin: 1.5em 0 5em;
}
.basePageTitle {
  position: relative;
  margin: 0 0 0 auto;
  border-bottom: 1px solid #D1D1D1;
  padding: 0 5vw .5em .5em;
  line-height: 1.5;
  font-size: 5.5vw;
}
.basePageTitle::after {
  content: "";
  border-bottom: 1px solid #A96269;
  width: 30%;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
  
@media screen and (min-width: 591px) {
  .sectionHeader__headline {
    font-size: 35px;
  }
  .basePageTitle {
    font-size: 23px;
    padding: 0 .5em .5em;
  }
  .sectionHeader {
    padding: 4em 0;
  }
}
    
@media screen and (min-width: 768px) {
  body div:nth-of-type(2).shopify-section {
    background: url(img--page--head_fp.png) no-repeat top left/23%;
    min-height: 100vh;
  }
  .pageWrap {
    margin: 0 0 0 auto;
    width: 76%;
  }
  .sectionHeader {
    padding: 5em 0;
  }
  .sectionHeader__headline {
    text-align: left;
  }
  .basePageTitle {
      margin: 0;
      padding: 0 0 .5em;
      font-size: 27px;
  }
}
  
@media screen and (min-width: 1000px) {
  .page__wrapper {
    margin-left: 4em;
  }
}
  
@media screen and (min-width: 1200px) {
  .sectionHeader {
    padding: 6em 0;
  }
  .page__wrapper {
    margin-left: 7em;
  }
  
}
  
@media screen and (max-width: 767px) {
  .sectionHeader__headline {
    margin-right: 5vw;
  }
  .basePageTitle {
    text-align: right;
	width: 85%;
  }
}
  
  /* ASK LABOの願い
================================================== */
.aboutName {
  margin: 3em 0 0 auto;
  width: 220px;
}
.aboutName span {
  width: 150px;
  display: inline-block;
}
#aboutSeries {
  max-width: 980px;
  margin: auto;
}
  
  /* 特定商取引法
================================================== */
.law-table {
  width: 100%;
  border-bottom: 1px solid #D1D1D1;
}
.law-table tr {
  border-top: 1px solid #D1D1D1;
  background: #fff;
}
.law-table tr:nth-of-type(2n) {
  background: #FEF6F7;
}
.law-table th {
  text-align: left;
  width: 220px;
}
.law-table ul {
  margin: 0;
  padding: 0 0 0 1em;
}
  
@media screen and (min-width: 591px) {
  .law-table th, .law-table td {
    padding: 1.5em;
  }
}
  
@media screen and (max-width: 590px) {
  .law-table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 1em;
  }
  .law-table th, .law-table td {
   	width: 100%;
  }
  .law-table td {
    padding: 5px 0 0 1em;
  }
  .returnTitle {
    font-size: 23px;
  }
}

  /* プライバシーポリシー
================================================== */
.baseContainer.topNone {
  margin-top: 0;
}
.privacyBox {
  display: flex;
  align-items: baseline;
  margin: 2em 0 0;
}
.privacyBox span {
  color: #A96269;
  margin-right: 1em;
}
.privacyBox span, .privacyTitle {
  font-size: 20px;
}
.privacyTitle {
  margin: 0 0 .3em;
  line-height: 1.5;
}
@media screen and (min-width: 591px) {
  .privacyBox {
    margin: 2.5em 0 0;
  }
  .privacyBox span, .privacyTitle {
    font-size: 23px;
  }
}
  
  /* メールが届かないお客様へ
================================================== */
.notSent-wrap {
  margin-top: 4em;
}
.notSent-box {
  margin-bottom: 2.5em;
}
.notSent-title {
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #D1D1D1;
  padding: 0 0 1em;
  line-height: 1.5;
}
.notSent-title::after {
  content: "";
  border-bottom: 1px solid #A96269;
  width: 30%;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.notSent-title span {
  color: #A96269;
  margin-right: 1em;
}
.notSent-contact {
  background: #FEF6F7;
  padding: 2.5em 1em 3em;
  text-align: center;
}
.notSent-contactTxt {
  text-align: left;
}
.notSent-contact button {
  max-width: 330px;
}
  
  
@media screen and (min-width: 591px) {
  .notSent-wrap {
    margin-top: 5em;
  }
  .notSent-box {
    margin-bottom: 4em;
  }
  .notSent-title {
    font-size: 23px;
    padding: 0 0 .7em;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .notsent-contactTel {
  	font-size: 25px;
  }
  .notSent-contactTxt {
    text-align: center;
  }
}
  
    /* お問い合わせ
================================================== */
@media screen and (max-width: 590px) {
  #contact .baseContainer {
    margin-bottom: 2em;
  }
}
  
    /* ショッピングガイド
================================================== */
.payment-box {
  background: #FEF6F7;
  padding: 1.5em 1em;
  margin-top: 1.5em;
}
.payment-list {
  list-style: none;
  padding: 0;
}
.payment-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 18px;
  margin-bottom: .5em;
  font-weight: bold;
}
.payment-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #F58F98;
  border-right: 2px solid #F58F98;
  transform: rotateZ(-45deg);
}
.payment-listInner {
  margin-top: .5em;
}
.payment-listInner p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: normal;
}
.payment-list small {
  font-weight: normal;
  font-size: 70%;
}
@media screen and (min-width: 591px) {
  .payment-box {
    padding: 1.5em 2em;
    margin-top: 2em;
  }
  .payment-list li {
	padding-left: 1.5em;
  	font-size: 20px;
  }
  .payment-listInner p {
    font-size: 16px;
  }
}
  
.postageTxt .red {
  font-weight: bold;
}
.guideList {
  background: #FEF6F7;
}
.postageList {
  font-size: 16px;
  padding: .5em 1em;
  margin: 1.5em auto;
}
.postageList dl {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 1em 0;
}
.postageList dl:first-child {
  border-bottom: 1px solid #A5A5A5;
}
.postageList dd {
  flex-shrink: 0;
}
@media screen and (min-width: 591px) {
  .postageList {
    font-size: 19px;
    max-width: 500px;
 	padding: .5em 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .postageList {
    margin: 1.5em 0 0;
  }
}
  
.deliveryMain {
  margin-bottom: 2em;
  text-align: center;
}
.deliveryMain-holiday {
  text-align: center;
  padding: 1.5em 1.2em;
  margin: 0 0 1.5em;
  font-weight: bold;
  font-size: 19px;
}
.deliveryMain-holiday small {
  font-weight: normal;
  font-size: 70%;
  display: block;
}
.deliveryButton {
  width: 280px;
  font-size: 15px;
}
.deliveryButton::before, .deliveryButton::after {
  transform: rotate(135deg);
  width: 12px;
  height: 12px;
}
.deliveryButton::before {
  right: 20px;
  top: 16px;
}
.deliveryButton::after {
  right: 20px;
}
  
@media screen and (min-width: 501px) {
  .deliveryButton::before {
    top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .deliveryMain {
    justify-content: flex-start;
  	margin-bottom: 1em;
  }
}
@media screen and (min-width: 901px) {
  .deliveryMain {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .deliveryMain-holiday {
    flex-shrink: 0;
    margin: 0 1.5em 0 0;
  }
}
@media screen and (min-width: 1100px) {
  .deliveryMain-holiday {
    margin: 0 2em 0 0;
  }
  .deliveryMain-holiday {
    padding: 1.5em 3em;
  }
}

  
#guideMenu {
  display: flex;
  justify-content: flex-end;
  margin: 0 4vw 6em;
  font-size: 3.3vw;
}
.guideMenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 80vw;
}
.guideMenu-list li {
  position: relative;
}
.guideMenu-list li::before, .guideMenu-list li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  color: #A96269;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
  left: 45%;
}
.guideMenu-list li::before {
	bottom: -15px;
}  
.guideMenu-list li::after {
	bottom: -20px;
}
.guideMenu-list a {
  color: #000;
  transition: .3s;
}
.guideMenu-list a:hover {
  color: #A96269;
}
  
@media screen and (min-width: 591px) {
  #guideMenu {
    margin: 0 2.5em 6em;
    font-size: 14px;
  }
  .guideMenu-list {
    width: 350px;
  }
}
 
@media screen and (min-width: 768px) {
  #guideMenu {
    margin: -1.5em 2em 5em;
    font-size: unset;
  }
  .guideMenu-list {
    width: 430px;
  }
}
@media screen and (min-width: 1200px) {
  #guideMenu {
    position: absolute;
    top: 100px;
    width: 38%;
    right: 0;
    left: 0;
    margin: 0 0 0 auto;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1500px) {
  #guideMenu {
    width: 42%;
  }
  .guideMenu-list {
    width: 450px;
  }
}
  

     /* インフォメーション　投稿ページ
================================================== */
.breadcrumb_text {
  font-size: 10px;
  padding: 1em 0;
}
.article__headline {
  font-size: 22px;
}
.article__headline__wrap {
  padding: 3em 0;
}
.articleContainer, .blogContainer {
  margin-top: 0;
}
.articleContainer h2 {
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 1px solid #D1D1D1;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  position: relative;
}
.articleContainer h2::after {
  content: "";
  border-bottom: 1px solid #A96269;
  width: 30%;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.backButton {
  text-align: center;
}
.backButton button {
  width: 250px;
}
  
@media only screen and (min-width: 591px) {
  .breadcrumb_text {
    font-size: 12px;
  }
  .article__headline {
    font-size: 28px;
  }
  .article__headline__wrap {
    padding: 4em 0;
  }
  .articleContainer h2 {
  	font-size: 23px;
  }
}
  
@media only screen and (max-width: 767px) {
  .article__container {
    margin: 0 5px 0 auto;
    width: 70%;
  }
}
  
     /* ショッピングカート
================================================== */
.cart__priceBreakdown .subtotal {
  background: #FEF6F7;
  padding: 1.5em;
  box-shadow: 3px 3px 6px rgba(0,0,0,.2);
}
.cartContainer {
  max-width: 980px;
  margin: 0 auto 0 0;
  justify-content: space-between;
  padding-right: 1em;
  box-sizing: content-box;
}
.cart__checkout .action_button {
  border-radius: 5px!important;
}
  
@media only screen and (max-width: 999px) {
  .cartContainer {
    flex-direction: column;
  }
  .cart__itemList {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .cart__header .pageWrap {
    width: 100%;
  }
  .cart__itemsInCart p {
    text-align: center;
  }
  .cart__priceBreakdown {
    width: 100%;
  }
}
@media only screen and (max-width: 450px) {
  .cart__card {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cart__image {
    width: 200px;
  }
  .cart__info {
    padding-left: 0;
    margin-top: 1em;
  }
  .cart__info modal_price {
    width: 50%;
    float: left;
    padding-bottom: 1em;
  }
  .cart__quantity input[type="number"] {
    width: 150px;
  }
}
  
     /* 検索結果
================================================== */
.search__container {
  padding: 0 1em;
  box-sizing: content-box;
}
.search-itemTitle {
  font-size: 15px;
  margin-top: .5em;
  line-height: 1.5;
}
@media screen and (max-width: 590px) {
  .search-itemTitle {
    font-size: 14px;
    text-align: left;
  }
}
.product-wrap {
  transition: .3s;
}
.product-wrap:hover {
  opacity: .7;
}
  
     /* マイページ関連
================================================== */
.register__form {
  width: 94%;
  margin: auto;
}
.register__form .has-float-label {
  flex-direction: column-reverse;
}
.register__form input {
  margin: 0 0 1em;
  padding: .5em;
}
#customer_login small {
  text-align: right;
  display: block;
}
.register__form .action_button, #create_customer .action_button {
  margin: 1.7em 0 1em;
  width: 100%;
  min-height: 65px!important;
  font-size: 20px!important;
}
.login-create {
  margin: 0;
  float: none;
  text-align: center;
  width: 100%;
}
.recover-password-form .note {
  font-style: normal;
  font-size: 14px;
}
.recover_password {
  background: #FEF6F7;
  padding: 1em 2em;
  line-height:1.5;
}
.recover_password .note {
  color: #A96269;
  font-style: normal;
  font-weight: bold;
}
.reset-password-txt {
  font-size: 14px;
  margin-bottom: 3em;
}
#email.has-float-label, #password.has-float-label {
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .register__form {
    width: 480px;
  }
}
@media only screen and (max-width: 500px) {
  .customer__form form, #recover-password .recover-password-form {
    padding: 1.5em .5em;
  }
}
  
#create_customer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#create_customer #last_name.has-float-label, #create_customer #first_name.has-float-label {
  width: 48%;
}
#create_customer .action_bottom p {
  display: none;
}
  

.logout {
  text-align: right;
  font-size: 14px;
}
.account-sidebar
.accountSidebar__content .name {
  font-size: 20px;
  margin: 0 0 5px;
}

.accountTitle {
  color: #A96269;
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: .3em;
  font-size: 16px;
  margin: 0 0 1em;
}
.accountSidebar__default {
  margin: 2em 0 .5em;
}
.accountSidebar__content .address p {
  line-height: 1.7;
}
.accountSidebar__content .baseButton {
  margin-top: 1em;
  max-width: 350px;
}
.account-main {
  margin: 0 1em 0 0;
}
#customer_orders th {
  font-size: 14px;
}
@media screen and (min-width: 1300px) {
  .accountContainer {
    display: flex;
  }
}
  
@media screen and (max-width: 1299px) {
  .account-main {
    width: auto;
  }
}
@media screen and (max-width: 591px) {
	#customer_orders table, #customer_orders th {
      font-size: 90%;
      line-height: 1.4;
    }
  	.accountBasic {
      text-align: right;
    }
}

.customerContainer {
  position: relative;
  max-width: 980px;
  margin: 0 1em 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#order_details th {
  text-align: center;
  min-width: 50px;
}
#order_details td {
  text-align: right;
  background: rgba(255,255,255,.5);
}
#order_details .selected-currency {
  display: none;
}
#order_details tbody td:first-child {
  text-align: left;
}
.order-info p {
  line-height: 1.7;
  margin: 0;
}
.accountBack {
  text-align: center;
  width: 100%;
  margin-top: 5em;
}
.accountBack .baseButton {
  max-width: 280px;
}
  
@media screen and (min-width: 591px) {
  #order_details_table {
    margin-bottom: 3em;
  }
}
  
@media screen and (max-width: 999px) {
  .billing_address, .shipping_address {
    width: 48%;
  }
  .order-note{
    width: 100%;
    margin-top: 2em;
  }  
}
@media screen and (max-width: 590px) {
  .billing_address, .shipping_address {
    width: 100%;
    margin-top: 2em;
  }  
}
  
  
#add_address, .address_table form {
  border: 1px solid #A96269;
  background: #FEF6F7;
}
#add_address {
  padding: 1.5em;
  margin: 2em 0 0;
}
.address-add {
  width: 100%;
  margin-bottom: 2em;
}
.address_main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.address_table {
  width: 100%;
  margin: 2em 0 0 0;
}
.address_actions {
  margin-top: 1em;
}
#action {
  max-width: 250px;
}
.address-add_name {
  display: flex;
  justify-content: space-between;
}
.address-add_name .has-float-label {
  width: 48%;
}
#shopify-section-mypage-address label {
  font-size: 14px;
}
#address_form_new label {
  margin-bottom: 5px;
}
#shopify-section-mypage-address .action_bottom {
  overflow: hidden;
  margin: 0;
}
#shopify-section-mypage-address .action_bottom .note {
  float: right;
}
#shopify-section-mypage-address .action_button {
  margin: 0;
  min-height: 60px;
}
.address_table .has-float-label input {
  margin: 0;
}
.address_table label {
  margin-top: 5px;
}
.address_table form {
  padding: 1em;
}
@media screen and (min-width: 591px) {
  .address_table {
    width: calc(100% / 2);
    padding-right: 2em;
  }
  .address_main div:nth-of-type(2n) {
    padding-right: 0;
  }
  #shopify-section-mypage-address .has-float-label {
    flex-direction: column-reverse;
    padding: 0;
  }
}
  
@media screen and (min-width: 820px) {
  #add_address {
    width: 600px;
  }
}

@media screen and (min-width: 1060px) {
  .address_main div:nth-of-type(2n) {
    padding-right: 0;
  }
}
  
@media screen and (min-width: 1200px) {
  .address-add .accountSidebar__content {
    display: flex;
  }
  #add_address {
    margin: 1em 0 0 2em;
  }
}
  
@media screen and (max-width: 590px) {
  #action {
    float: right;
  }
  #add_address {
    float: left;
  }
  .address_main {
    margin: 0;
  }
}
  
     /* ページトップボタン
================================================== */
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
#page-top a:hover {
  opacity: .7;
}
#page-top img {
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  width: 15vw;
}
@media screen and (min-width: 451px) {
  #page-top {
    bottom: 20px;
    right: 20px;
  }
  #page-top img {
    width: 80px;
  }
}
  
     /* ヘッダー追従
================================================== */
#shop-header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}

     /* カレンダー発送日
================================================== */
.ca_shipment {
  background-color: #35aed7 !important;
  border-color: #35aed7 !important;
}

/* 肌診断ページ共通
================================================== */
.skinDia_img {
  text-align: center;
  margin: 2em 0;
}
.skinDia_title {
  text-align: center;
  line-height: 1.5;
}
.skinDia_subTitle {
  font-size: 1.2em;
  text-align: center;
}
.skinDia_pinkBg {
  background: #fceff2;
  box-shadow: #fceff2 0 0 10px 10px;
  padding:  5px;
}
.skinDia_title.pink {
  color: #ff00ff;
}
.skinDia_adviceBox {
  border-radius: 10px;
  border: 4px double #ff6699;
  padding: 1em .5em;
}
.skinDia_adviceBox .skinDia_title {
  margin-bottom: 1.5em;
}
.skinDia_adviceBox ul {
  list-style: "☆";
}
#skinDiagnosis ul {
  padding-left: 1.5em;
}
#skinDiagnosis li {
  margin-bottom: 1em;
}
#skinDiagnosis li:last-child {
  margin-bottom: 0;
}
.skinDia_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.skinDia_itemLink {
  width: 100%%;
  margin-bottom: 1em;
}
.skinDia_pinkInner {
  max-width: 600px;
  margin: 0 auto 4em;
}
.skinDia_list {
  text-align: center;
}
.skinDia_ul {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 590px) {
  .skinDia_title {
    font-size: 6.5vw;
  }
}
@media screen and (min-width: 591px) {
  .skinDia_adviceBox {
    padding: 20px;
  }
  .skinDia_itemLink {
    width: 30%;
  }
}

.top-line {
  text-align: center;
  margin-top: 3em;
  padding: 0 1em;
}
@media screen and (min-width: 591px) {
  .top-line {
    margin-top: 4em;
  }
}

.line_banner {
  text-align: center;
  margin-top: 2em;
}


/* 肌サポインフォ　一覧用
--------------------------------*/
.ssiblog_post {
  position: relative;
  margin: 0 0 1em;
  border: 1px solid #A96269;
  padding: 5px;
  transition: .3s;
}
.ssiblog_post:hover {
  opacity: .7;
}

.ssiblog_thumb img {
  height: 55vw;
  width: 100%;
  object-fit: cover;
  display: block;
}
.ssiblog_meta {
  font-size: 14px;
  margin-bottom: .5em;
}
.ssiblog_tag {
  background: #A96269;
  color: #fff;
  padding: 0 1em 2px;
  font-size: 90%;
  border-radius: 30px;
  margin: 0 0 0 1em;
}
.ssiblog_title {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.ssiblog_more {
  text-align: right;
  font-size: 12px;
  color: #A96269;
  margin: 10px 0 5px;
}
.ssiblog_inner {
  padding: 5px 10px;
  background: #fff;
}

.ssiblog_cat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5em 0;
}
.ssiblog_cat a {
  position: relative;
  background: #a96269;
  color: #fff;
  padding: .3em 0 .4em;
  border-radius: 30px;
  width: 40%;
  text-align: center;
  margin: 0 .5em 1em;
  font-size: 3.5vw;
}
.ssiblog_cat a:after {
  content: '>';
  position: absolute;
  right: 1em;
}
.ssiblog_cat a:hover {
  color: #fff!important;
  opacity: .7;
}

@media screen and (min-width: 591px) {
  .ssiblog_wrap {
    overflow: hidden;
  }
  .ssiblog_post {
    width: 30%;
    float: left;
    margin: 0 5% 5% 0;
  }
  .ssiblog_wrap article:nth-child(3n) {
    margin: 0 0 5%;
  }
  .ssiblog_thumb img {
    height: 13vw;
  }
  .ssiblog_meta {
    font-size: 1.2vw;
  }
  .ssiblog_title {
    font-size: 1.5vw;
  }
  .ssiblog_more {
    font-size: 1.1vw;
  }

  .ssiblog_cat {
    margin: 0 0 3em;
  }
  .ssiblog_cat a {
    width: 13vw;
    margin: 0 1em;
    font-size: 1.3vw;
  }
}

@media screen and (min-width: 1260px) {
  .ssiblog_thumb img {
    height: 150px;
  }
  .ssiblog_meta {
    font-size: 14px;
  }
  .ssiblog_title {
    font-size: 17px;
    letter-spacing: -1px;
  }
  .ssiblog_more {
    font-size: 12px;
  }

  .ssiblog_cat a {
    width: 150px;
    font-size: 15px;
  }
}


.top_ssiblog {
  max-width: 860px;
  padding: 0 1em;
  box-sizing: content-box;
  margin: 1em 0 0 auto;
}
.top_ssiblog .ssiblog_post {
  border: 1px solid #fff;
}
@media screen and (min-width: 591px) {
  .top_ssiblog .next-button {
    margin: 2.5em 0 2em;
  }
  #section-skin-support .section {
    position: relative;
  }
  .top_ssiblog .ssiblog_cat {
    position: absolute;
    top: 4em;
    right: 0;
    z-index: 99;
  }
}

#shopify-section-815884b9-c807-4ad0-89fd-a9ca7811ecde {
  padding-bottom: 0;
}
.index #shopify-section-footer {
  margin-top:0;
}
