/** Shopify CDN: Minification failed

Line 514:2 Expected identifier but found "*"
Line 1323:2 Expected identifier but found "*"
Line 1406:2 Expected identifier but found "*"
Line 7638:4 "min-heigth" is not a known CSS property
Line 7721:38 Unexpected "*"
Line 10630:4 "martin-top" is not a known CSS property
Line 10830:2 "wifth" is not a known CSS property

**/
/*============================================================================
  Debut | Built with Shopify Slate

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond:400,500i,600i,700i");
@font-face {
  font-family: "Proxima Nova Bold";
  src: url("https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-style: normal;
  font-weight: 700; }

@font-face {
  font-family: "Proxima Nova";
  src: url("https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/71f83c/00000000000000003b9b093b/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-style: normal;
  font-weight: 500; }

@font-face {
  font-family: "Proxima Nova";
  src: url("https://use.typekit.net/af/86b539/00000000000000003b9b093a/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/86b539/00000000000000003b9b093a/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/86b539/00000000000000003b9b093a/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
  font-style: italic;
  font-weight: 700; }

@font-face {
  font-family: "Proxima Nova Medium";
  src: url("https://use.typekit.net/af/27776b/00000000000000003b9b0939/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2"), url("https://use.typekit.net/af/27776b/00000000000000003b9b0939/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff"), url("https://use.typekit.net/af/27776b/00000000000000003b9b0939/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("opentype");
  font-style: normal;
  font-weight: 600; }

@font-face {
  font-family: "Proxima Nova Regular";
  src: url("https://use.typekit.net/af/6aec08/00000000000000003b9b0935/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/6aec08/00000000000000003b9b0935/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/6aec08/00000000000000003b9b0935/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
  font-style: italic;
  font-weight: 400; }

/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ #Mixins ================*/
/*================ Type Faces ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
.col {
  float: left; }

.row .col-1 {
  width: 16.667%; }

.row .col-2 {
  width: 16.667%; }

.row .col-3 {
  width: 25%; }

.row .col-4 {
  width: 33.333%; }

.row .col-5 {
  width: 41.667%; }

.row .col-6 {
  width: 50%; }

.row .col-7 {
  width: 58.333%; }

.row .col-8 {
  width: 66.667%; }

.row .col-9 {
  width: 75%; }

.row .col-10 {
  width: 83.333%; }

.row .col-11 {
  width: 91.667%; }

.row .col-12 {
  width: 100%; }

.pad3 {
  padding: 0 3px; }

.pad5 {
  padding: 0 5px; }

.pad10 {
  padding: 0 10px; }

.pad20 {
  padding: 0 20px; }

.pad25 {
  padding: 0 20px; }

.pad16 {
  padding: 0 16px; }

.pad30 {
  padding: 0 30px; }

.pad35 {
  padding: 0 35px; }

/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.6.0

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
  - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//simoneleblanc.com/cdn/shop/t/182/assets/ajax-loader.gif?v=41356863302472015721701727704) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: none;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick-icons, sans-serif";
    font-size: 20px;
    line-height: 1;
    color: black;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover:before, .slick-dots li button:focus:before {
        opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: white;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: white;
      opacity: 0.75; }

/*================ GLOBAL ================*/
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

body {
  margin: 0; }

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

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

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 {
  max-width: 100%;
  border: 0; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

textarea {
  overflow: auto;
  -webkit-appearance: none;
  -moz-appearance: none; }

[tabindex='-1']:focus {
  outline: none; }

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role="button"],
input,
label,
select,
textarea {
  touch-action: manipulation; }

/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 900px) {
    .grid {
      margin-left: -22px; } }

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%; }
  @media only screen and (max-width: 900px) {
    .grid__item {
      padding-left: 22px; } }
  .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.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/* Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%; }

.two-thirds {
  width: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%; }

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.33333%; }

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 900px) {
  /* Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }

  .small--two-eighths {
    width: 25%; }

  .small--three-eighths {
    width: 37.5%; }

  .small--four-eighths {
    width: 50%; }

  .small--five-eighths {
    width: 62.5%; }

  .small--six-eighths {
    width: 75%; }

  .small--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .small--one-tenth {
    width: 10%; }

  .small--two-tenths {
    width: 20%; }

  .small--three-tenths {
    width: 30%; }

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

  .small--seven-tenths {
    width: 70%; }

  .small--eight-tenths {
    width: 80%; }

  .small--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%; }

  .small--two-twelfths {
    width: 16.66667%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%; }

  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--one-eighth:nth-child(8n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

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

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

  .small--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 900px) {
  /* Whole */
  .medium-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%; }

  .medium-up--two-quarters {
    width: 50%; }

  .medium-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%; }

  .medium-up--two-fifths {
    width: 40%; }

  .medium-up--three-fifths {
    width: 60%; }

  .medium-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%; }

  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%; }

  .medium-up--two-eighths {
    width: 25%; }

  .medium-up--three-eighths {
    width: 37.5%; }

  .medium-up--four-eighths {
    width: 50%; }

  .medium-up--five-eighths {
    width: 62.5%; }

  .medium-up--six-eighths {
    width: 75%; }

  .medium-up--seven-eighths {
    width: 87.5%; }

  /* Tenths */
  .medium-up--one-tenth {
    width: 10%; }

  .medium-up--two-tenths {
    width: 20%; }

  .medium-up--three-tenths {
    width: 30%; }

  .medium-up--four-tenths {
    width: 40%; }

  .medium-up--five-tenths {
    width: 50%; }

  .medium-up--six-tenths {
    width: 60%; }

  .medium-up--seven-tenths {
    width: 70%; }

  .medium-up--eight-tenths {
    width: 80%; }

  .medium-up--nine-tenths {
    width: 90%; }

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%; }

  .medium-up--ten-twelfths {
    width: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%; }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-up--show {
    display: block !important; }

  .medium-up--hide {
    display: none !important; }

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

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

  .medium-up--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 900px) {
  /* Halves */
  .small--push-one-half {
    left: 50%; }

  /* Thirds */
  .small--push-one-third {
    left: 33.33333%; }

  .small--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .small--push-one-quarter {
    left: 25%; }

  .small--push-two-quarters {
    left: 50%; }

  .small--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .small--push-one-fifth {
    left: 20%; }

  .small--push-two-fifths {
    left: 40%; }

  .small--push-three-fifths {
    left: 60%; }

  .small--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .small--push-one-sixth {
    left: 16.66667%; }

  .small--push-two-sixths {
    left: 33.33333%; }

  .small--push-three-sixths {
    left: 50%; }

  .small--push-four-sixths {
    left: 66.66667%; }

  .small--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .small--push-one-eighth {
    left: 12.5%; }

  .small--push-two-eighths {
    left: 25%; }

  .small--push-three-eighths {
    left: 37.5%; }

  .small--push-four-eighths {
    left: 50%; }

  .small--push-five-eighths {
    left: 62.5%; }

  .small--push-six-eighths {
    left: 75%; }

  .small--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .small--push-one-tenth {
    left: 10%; }

  .small--push-two-tenths {
    left: 20%; }

  .small--push-three-tenths {
    left: 30%; }

  .small--push-four-tenths {
    left: 40%; }

  .small--push-five-tenths {
    left: 50%; }

  .small--push-six-tenths {
    left: 60%; }

  .small--push-seven-tenths {
    left: 70%; }

  .small--push-eight-tenths {
    left: 80%; }

  .small--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .small--push-one-twelfth {
    left: 8.33333%; }

  .small--push-two-twelfths {
    left: 16.66667%; }

  .small--push-three-twelfths {
    left: 25%; }

  .small--push-four-twelfths {
    left: 33.33333%; }

  .small--push-five-twelfths {
    left: 41.66667%; }

  .small--push-six-twelfths {
    left: 50%; }

  .small--push-seven-twelfths {
    left: 58.33333%; }

  .small--push-eight-twelfths {
    left: 66.66667%; }

  .small--push-nine-twelfths {
    left: 75%; }

  .small--push-ten-twelfths {
    left: 83.33333%; }

  .small--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 900px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

  /* Thirds */
  .medium-up--push-one-third {
    left: 33.33333%; }

  .medium-up--push-two-thirds {
    left: 66.66667%; }

  /* Quarters */
  .medium-up--push-one-quarter {
    left: 25%; }

  .medium-up--push-two-quarters {
    left: 50%; }

  .medium-up--push-three-quarters {
    left: 75%; }

  /* Fifths */
  .medium-up--push-one-fifth {
    left: 20%; }

  .medium-up--push-two-fifths {
    left: 40%; }

  .medium-up--push-three-fifths {
    left: 60%; }

  .medium-up--push-four-fifths {
    left: 80%; }

  /* Sixths */
  .medium-up--push-one-sixth {
    left: 16.66667%; }

  .medium-up--push-two-sixths {
    left: 33.33333%; }

  .medium-up--push-three-sixths {
    left: 50%; }

  .medium-up--push-four-sixths {
    left: 66.66667%; }

  .medium-up--push-five-sixths {
    left: 83.33333%; }

  /* Eighths */
  .medium-up--push-one-eighth {
    left: 12.5%; }

  .medium-up--push-two-eighths {
    left: 25%; }

  .medium-up--push-three-eighths {
    left: 37.5%; }

  .medium-up--push-four-eighths {
    left: 50%; }

  .medium-up--push-five-eighths {
    left: 62.5%; }

  .medium-up--push-six-eighths {
    left: 75%; }

  .medium-up--push-seven-eighths {
    left: 87.5%; }

  /* Tenths */
  .medium-up--push-one-tenth {
    left: 10%; }

  .medium-up--push-two-tenths {
    left: 20%; }

  .medium-up--push-three-tenths {
    left: 30%; }

  .medium-up--push-four-tenths {
    left: 40%; }

  .medium-up--push-five-tenths {
    left: 50%; }

  .medium-up--push-six-tenths {
    left: 60%; }

  .medium-up--push-seven-tenths {
    left: 70%; }

  .medium-up--push-eight-tenths {
    left: 80%; }

  .medium-up--push-nine-tenths {
    left: 90%; }

  /* Twelfths */
  .medium-up--push-one-twelfth {
    left: 8.33333%; }

  .medium-up--push-two-twelfths {
    left: 16.66667%; }

  .medium-up--push-three-twelfths {
    left: 25%; }

  .medium-up--push-four-twelfths {
    left: 33.33333%; }

  .medium-up--push-five-twelfths {
    left: 41.66667%; }

  .medium-up--push-six-twelfths {
    left: 50%; }

  .medium-up--push-seven-twelfths {
    left: 58.33333%; }

  .medium-up--push-eight-twelfths {
    left: 66.66667%; }

  .medium-up--push-nine-twelfths {
    left: 75%; }

  .medium-up--push-ten-twelfths {
    left: 83.33333%; }

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ #Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

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

.visibility-hidden {
  visibility: hidden; }

.js-focus-hidden:focus {
  outline: none; }

.padding-0 {
  padding: 0px !important; }

.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.hide {
  display: none !important; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #4a453f;
  background-color: white;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  transition: none; }

/*=============== Lazy loading ===================*/
.box {
  background: no-repeat;
  background-color: #f7f7f7;
  background-size: contain; }

.ratio-container {
  position: relative; }

.ratio-container:after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  padding-bottom: 50%;
  content: ""; }

.ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*================ #Basic Styles ================*/
body,
html {
  background-color: white; }

.page-width {
  *zoom: 1;
  max-width: 1200px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block;
  margin-top: 0px;
  /*padding-top: $section-spacing-small;

  @include media-query($medium-up) {
    padding-top: $section-spacing;
  }*/ }

.section-header {
  margin-bottom: 35px; }
  @media only screen and (min-width: 900px) {
    .section-header {
      margin-bottom: 48px; } }

.template-index .main-content {
  margin-bottom: 0; }

/*================ Typography ================*/
blockquote {
  font-size: 1.125em;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #e8e9eb;
    border-width: 1px 0;
    border-style: solid;
    padding: 30px 0;
    margin-bottom: 27.5px; }
  blockquote p + cite {
    margin-top: 27.5px; }
  blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: 400; }
    blockquote cite::before {
      content: '\2014 \0020'; }

code,
pre {
  font-family: Consolas, monospace;
  font-size: 1em; }

pre {
  overflow: auto; }

body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: #4a453f;
  line-height: 1.384;
  overflow-x: hidden; }

input,
textarea,
button,
select {
  font-family: "Proxima Nova Regular";
  font-size: 12px;
  font-weight: 400;
  color: #4a453f;
  line-height: 1.384;
  overflow-x: hidden; }

@media only screen and (max-width: 989px) {
  input,
  select,
  button {
    font-size: 16px; } }
/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 17.5px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1;
  overflow-wrap: break-word;
  /*letter-spacing: 1px;*/
  word-wrap: break-word; }

h1, .h1 {
  font-size: 54px;
  text-transform: none; }
  @media only screen and (max-width: 900px) {
    h1, .h1 {
      font-size: 35px; } }

h2, .h2 {
  font-size: 40px; }
  @media only screen and (max-width: 900px) {
    h2, .h2 {
      font-size: 28px; } }

h3, .h3 {
  font-size: 30px;
  text-transform: none; }
  @media only screen and (max-width: 900px) {
    h3, .h3 {
      font-size: 18px; } }

h4, .h4 {
  font-size: 24px; }
  @media only screen and (max-width: 900px) {
    h4, .h4 {
      font-size: 20px; } }

h5, .h5 {
  font-size: 18px;
  margin-top: 10px; }
  @media only screen and (max-width: 900px) {
    h5, .h5 {
      font-size: 15px; } }

h6, .h6 {
  font-size: 15px;
  color: #A49179;
  font-family: "Proxima Nova Regular"; }
  @media only screen and (max-width: 900px) {
    h6, .h6 {
      font-size: 13px; } }

.top-heading-big {
  font-family: "Proxima Nova Regular";
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.303em; }

.top-heading-small {
  font-family: "Proxima Nova Regular";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.243em; }

.link-button {
  background: none;
  position: relative;
  font-family: "Proxima Nova Regular";
  font-size: 11px;
  letter-spacing: 0.203em;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  color: #4a453f; }
  .link-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #4a453f;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%); }

.half-slider-container .link-button {
  font-family: 'Cormorant Garamond', serif;
  text-transform: lowercase;
  font-style: italic;
  font-size: 20px; }

.menu-title {
  color: #4a453f;
  font-size: 11px;
  letter-spacing: 0.247em;
  line-height: 2.5; }

.menus-ul .menu-title {
  font-size: 10px;
  font-weight: 600;
  font-family: "Proxima Nova Medium"; }

.read-entry {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.3;
  color: #B3956C;
  display: inline-block;
  margin-top: 20px;
  font-style: italic; }

.btn-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  color: #B7986E;
  border: none;
  text-transform: lowercase; }

.form-drophint .form label, .form-drophint .form input[type="submit"] {
  font-family: "Proxima Nova Regular" !important;
  letter-spacing: 0.1em !important; }

.form-drophint .form input[type="submit"] {
  font-size: 12px !important; }

/*================ RTE headings ================*/
.rte {
  color: #4a453f;
  margin-bottom: 35px; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1, .rte .h1,
  .rte h2,
  .rte .h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-top: 55px;
    margin-bottom: 27.5px; }
    .rte h1:first-child, .rte .h1:first-child,
    .rte h2:first-child,
    .rte .h2:first-child,
    .rte h3:first-child,
    .rte .h3:first-child,
    .rte h4:first-child,
    .rte .h4:first-child,
    .rte h5:first-child,
    .rte .h5:first-child,
    .rte h6:first-child,
    .rte .h6:first-child {
      margin-top: 0; }
  .rte li {
    margin-bottom: 4px;
    list-style: inherit; }
    .rte li:last-child {
      margin-bottom: 0; }

.rte-setting {
  margin-bottom: 19.44444px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

/*================ Paragraph styles ================*/
p {
  margin: 0 0 19.44444px; }
  @media only screen and (max-width: 900px) {
    p {
      font-size: 0.9375em; } }
  p:last-child {
    margin-bottom: 0; }

/*================ Lists ================*/
li {
  list-style: none; }

/*================ Misc styles ================*/
.fine-print {
  font-size: 0.875em;
  font-style: italic; }

.txt--minor {
  font-size: 80%; }

.txt--emphasis {
  font-style: italic; }

.address {
  margin-bottom: 55px; }

/*================ Hero and slideshow headers ================*/
.menu-carosl a {
  color: #fff; }

.mega-title,
.mega-subtitle {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.1); }

.mega-title {
  margin-bottom: 8px; }

@media only screen and (min-width: 900px) {
  .mega-subtitle {
    margin: 0 auto;
    max-width: 75%; } }
.mega-subtitle p {
  color: inherit; }

.mega-subtitle--large {
  font-size: 1.125em;
  font-weight: 600; }
  @media only screen and (min-width: 900px) {
    .mega-subtitle--large {
      font-size: 1.5em; } }

/*================ #Icons ================*/
.icon {
  display: inline-block;
  width: 15px;
  height: 20px;
  vertical-align: bottom;
  fill: currentColor; }
  .no-svg .icon {
    display: none; }

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons .icon {
    width: 30px;
    height: 30px; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 23px;
  height: 23px; }
  @media only screen and (min-width: 900px) {
    .social-icons .icon {
      width: 25px;
      height: 25px; } }
  .social-icons .icon.icon--wide {
    width: 40px; }

/*================ #Lists ================*/
ul,
ol {
  margin: 0;
  padding: 0; }

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 17.5px 35px; }
  .rte ul.list--inline,
  .rte ol.list--inline {
    margin-left: 0; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }
.rte a:not(.btn) {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*================ #Links and Buttons ================*/
a {
  color: #4a453f;
  text-decoration: none;
  /*&:hover,
  &:focus {
    opacity: $opacity-link-hover;
  }*/ }
  a.classic-link {
    text-decoration: underline; }

/*================ Buttons ================*/
.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  border-radius: 0;
  padding: 10px 28px;
  background-color: #4a453f;
  opacity: 0.85;
  color: #ffffff;
  font-family: "Proxima Nova Medium";
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 14px; }
  @media only screen and (min-width: 900px) {
    .btn {
      padding: 10px 18px; } }
  .btn:hover, .btn:focus {
    opacity: 0.5; }
  .btn .icon-arrow-right,
  .btn .icon-arrow-left {
    height: 9px; }
  .btn[disabled] {
    cursor: default;
    opacity: 0.5;
    background-color: #4a453f;
    color: #ffffff; }

.btn--secondary {
  background-color: white;
  color: #3d4246;
  border-color: #e8e9eb; }

.btn--small {
  font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  padding: 8px 10px;
  font-size: 0.75em;
  line-height: 1; }

/*================ Button variations ================*/
@media only screen and (max-width: 900px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  color: #3d4246;
  text-align: left; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.6; }
  .btn--link .icon {
    vertical-align: middle; }

.btn--narrow {
  padding-left: 15px;
  padding-right: 15px; }

.btn--disabled {
  opacity: 0.5;
  cursor: default; }
  .btn--disabled:hover, .btn--disabled:focus {
    opacity: 0.5; }

.btn--has-icon-after .icon {
  margin-left: 10px; }

.btn--has-icon-before .icon {
  margin-right: 10px; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*================ Return to collection/blog links ================*/
.return-link-wrapper {
  margin: 82.5px 0; }
  @media only screen and (max-width: 900px) {
    .return-link-wrapper {
      margin-bottom: -56px; }
      .return-link-wrapper .btn {
        display: block; } }

/*================ #Tables ================*/
table {
  margin-bottom: 27.5px; }

th {
  font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700; }

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

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 900px) {
  .responsive-table thead {
    display: none; }
  .responsive-table tr {
    display: block; }
  .responsive-table tr,
  .responsive-table td {
    float: left;
    clear: both;
    width: 100%; }
  .responsive-table th,
  .responsive-table td {
    display: block;
    text-align: right;
    padding: 27.5px;
    border: 0;
    margin: 0; }
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 55px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 27.5px;
      right: 27.5px;
      border-bottom: 1px solid #e8e9eb; } }
/*================ #Images and Iframes ================*/
svg:not(:root) {
  overflow: hidden; }

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*================ Forms ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid #e8e9eb;
  margin: 0 0 55px;
  padding: 27.5px; }

legend {
  border: 0;
  padding: 0; }

button {
  cursor: pointer; }

input[type="submit"] {
  cursor: pointer; }

label {
  display: block;
  margin-bottom: 5px; }
  @media only screen and (max-width: 900px) {
    label {
      font-size: 0.875em; } }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

input,
textarea,
select {
  border: none;
  border-bottom: 1px solid #4a453f;
  background-color: transparent;
  color: #4a453f;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 0; }
  input:focus,
  textarea:focus,
  select:focus {
    outline: none; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #f4f4f4;
    border-color: #f4f4f4; }
  input.input--error::-webkit-input-placeholder,
  textarea.input--error::-webkit-input-placeholder,
  select.input--error::-webkit-input-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error::-moz-placeholder,
  textarea.input--error::-moz-placeholder,
  select.input--error::-moz-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error:-ms-input-placeholder,
  textarea.input--error:-ms-input-placeholder,
  select.input--error:-ms-input-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error::-ms-input-placeholder,
  textarea.input--error::-ms-input-placeholder,
  select.input--error::-ms-input-placeholder {
    color: #d20000;
    opacity: 1; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-ms-input-placeholder,
  textarea.hidden-placeholder::-ms-input-placeholder,
  select.hidden-placeholder::-ms-input-placeholder {
    opacity: 1; }

textarea {
  min-height: 100px; }

/*================ Error styles ================*/
input.input--error,
select.input--error,
textarea.input--error {
  border-color: #d20000;
  background-color: #fff8f8;
  color: #d20000; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  /*image: url($svg-select-icon);*/
  background-image: url("//simoneleblanc.com/cdn/shop/t/182/assets/triangle.png?v=174586223689368906811701727706");
  background-repeat: no-repeat;
  background-position: right 5px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  padding-top: 8px;
  padding-left: 15px;
  padding-bottom: 8px;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  @media only screen and (min-width: 900px) {
    select {
      padding-top: 10px;
      padding-left: 18px;
      padding-bottom: 10px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

option {
  color: #8C8C8C;
  background-color: #9E9E9E;
  letter-spacing: 0.229em;
  width: 200px; }

select::-ms-expand {
  display: none; }

.btn-primary {
  border: none;
  outline: none;
  background-color: #4a453f;
  opacity: 0.85;
  color: white;
  font-family: "Proxima Nova Regular";
  padding: 12px 40px;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: center;
  text-transform: uppercase; }
  .btn-primary:hover {
    opacity: 0.5; }

/*================ Form labels ================*/
.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .label--hidden {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

::-webkit-input-placeholder {
  color: black;
  opacity: 0.6; }

::-moz-placeholder {
  color: black;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: black;
  opacity: 0.6; }

::-ms-input-placeholder {
  color: black;
  opacity: 1; }

/*================ Labels ================*/
.label--error {
  color: #d20000; }

input,
textarea {
  padding: 8px 15px; }
  @media only screen and (min-width: 900px) {
    input,
    textarea {
      padding: 7px 0; } }

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 19.44444px; }
.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical [type="submit"],
.form-vertical .btn {
  display: inline-block;
  width: auto; }

/*================ Form feedback messages ================*/
.note,
.form--success,
.errors {
  padding: 8px;
  margin: 0 0 27.5px; }
  @media only screen and (min-width: 900px) {
    .note,
    .form--success,
    .errors {
      padding: 10px; } }

.note {
  border: 1px solid #e8e9eb; }

.form--success {
  border: 1px solid #19a340;
  background-color: #f8fff9;
  color: #19a340; }

.errors {
  border: 1px solid #d20000;
  background-color: #fff8f8;
  color: #d20000; }
  .errors ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .errors a {
    color: #d20000;
    text-decoration: underline; }

/*================ Input Groups ================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 55px; }

.input-group__field,
.input-group__btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group__field,
.input-group__btn .btn {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0; }
  @media only screen and (min-width: 900px) {
    .input-group__field,
    .input-group__btn .btn {
      height: 46px; } }

.input-group__field {
  width: 100%;
  border-right: 0;
  border-radius: 2px 0 0 2px; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .btn {
    border-radius: 0;
    white-space: nowrap; }

/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
  display: block; }

.menu-slider h5, .menu-slider .h5 {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 5px; }
.menu-slider:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background: rgba(166, 168, 171, 0.25);
  left: -60px;
  top: 0; }

button:focus {
  outline: 0; }

.owl-prev {
  position: absolute;
  top: 37%;
  transform: translateY(-50%); }
  .owl-prev span {
    position: absolute;
    display: block;
    background: url(//simoneleblanc.com/cdn/shop/t/182/assets/left-arrow.png?v=97985680081808599221701727705) no-repeat;
    width: 20px;
    height: 20px;
    left: -33px;
    text-indent: -9999px; }

.owl-next {
  position: absolute;
  top: 37%;
  right: 0;
  transform: translateY(-50%); }
  .owl-next span {
    position: absolute;
    display: block;
    background: url(//simoneleblanc.com/cdn/shop/t/182/assets/right-arrow.png?v=13558753333773610231701727706) no-repeat;
    width: 20px;
    height: 20px;
    right: -40px;
    text-indent: -9999px; }

.site-nav--centered {
  padding-bottom: 22px; }

/*
.site-nav li:first-of-type:hover > .submenu-container{
    opacity: 1;
    visibility: visible;
}

.site-nav [data-marketplace="true"]:hover > .submenu-container{
    opacity: 1;
    visibility: visible;
}

.site-nav > li:first-of-type:hover ~ li {
    opacity: 0.4;
}*/
/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap; }
  .site-nav--centered .site-nav__link {
    padding-top: 0; }
  .site-nav__link .icon-chevron-down {
    width: 8px;
    height: 8px;
    margin-left: 2px; }
    .site-nav--active-dropdown .site-nav__link .icon-chevron-down {
      transform: rotateZ(-180deg); }
  .site-nav__link.site-nav--active-dropdown {
    border: 1px solid #e8e9eb;
    border-bottom: 1px solid transparent;
    z-index: 2; }

.site-nav--active {
  font-weight: 600; }

.site-nav > li:first-of-type:hover:after {
  content: "";
  position: absolute;
  top: 28px;
  height: 100%;
  width: 1px;
  background: #f2efeb; }

/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: relative; }

.site-nav--has-centered-dropdown {
  position: static; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 11px 17px;
  margin: 0;
  z-index: 7;
  text-align: left;
  border: 1px solid #e8e9eb;
  background: white;
  left: -1px;
  top: 41px; }
  .site-nav__dropdown .site-nav__link {
    padding: 4px 30px 4px 0; }
  .site-nav--active-dropdown .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown li {
    display: block; }

.site-nav__dropdown--centered {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  text-align: center; }

/*================ Child list ================*/
.site-nav__child-link--parent {
  font-weight: 700;
  margin: 4px 0; }

.page-width {
  padding-left: 55px;
  padding-right: 55px; }
  @media only screen and (max-width: 900px) {
    .page-width {
      padding-left: 0;
      padding-right: 0; } }

.page-container {
  /*transition: $transition-drawer;
  position: relative;
  overflow: hidden;

  @include media-query($medium-up) {
    // Prevent mobile menu inline styles from overriding desktop styles
    // sass-lint:disable no-important
    @include transform(translate3d(0, 0, 0));
  }
  */ }

@media only screen and (max-width: 900px) {
  .show-for-small {
    display: block; } }
@media only screen and (min-width: 900px) {
  .show-for-small {
    display: none; } }
hr {
  margin: 55px 0;
  border: 0;
  border-bottom: 1px solid #e8e9eb; }

.hr--small {
  padding: 10px 0;
  margin: 0; }

.hr--invisible {
  border-bottom: 0; }

.border-bottom {
  border-bottom: 1px solid #e8e9eb; }

.border-top {
  border-top: 1px solid #e8e9eb; }

.empty-page-content {
  padding: 125px 55px; }
  @media only screen and (max-width: 900px) {
    .empty-page-content {
      padding-left: 22px;
      padding-right: 22px; } }

.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

.grid--no-gutters {
  margin-left: 0; }
  .grid--no-gutters .grid__item {
    padding-left: 0; }

.grid--half-gutters {
  margin-left: -15px; }
  .grid--half-gutters > .grid__item {
    padding-left: 15px; }

.grid--double-gutters {
  margin-left: -60px; }
  .grid--double-gutters > .grid__item {
    padding-left: 60px; }

.grid--flush-bottom {
  margin-bottom: -55px;
  overflow: auto; }
  .grid--flush-bottom > .grid__item {
    margin-bottom: 55px; }

/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important; }

@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

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

@-moz-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

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

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

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

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

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

.drawer {
  display: none;
  position: absolute;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 9;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .drawer input[type="text"],
  .drawer textarea {
    background-color: white;
    color: #3d4246; }

.js-drawer-open {
  overflow: hidden; }

.drawer--top {
  width: 100%; }
  .js-drawer-open-top .drawer--top {
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: block; }

.drawer-page-content::after {
  visibility: hidden;
  opacity: 0;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 8;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .js-drawer-open .drawer-page-content::after {
    visibility: visible;
    opacity: 1; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__close-button {
  background: none;
  border: 0 none;
  position: relative;
  right: -15px;
  height: 100%;
  width: 60px;
  padding: 0 20px;
  color: inherit;
  font-size: 1.125em; }
  .drawer__close-button:active, .drawer__close-button:focus {
    background-color: rgba(0, 0, 0, 0.6); }

.grid--view-items {
  overflow: auto;
  max-width: 1400px;
  margin: 0 auto !important;
  padding-top: 60px;
  padding-bottom: 80px; }

.grid-view-item {
  margin: 0 auto; }
  .custom__item .grid-view-item {
    margin-bottom: 0; }

.grid-view-item__title {
  margin-bottom: 0;
  line-height: 1.2;
  margin-top: 10px;
  text-align: center; }
  .grid-view-item__title a {
    color: #4a453f;
    padding-top: 5px;
    font-size: 17px;
    margin: 0 10%; }

/*.grid-view-item__meta {
  margin-top: 8px;
}
*/
/*
.site-header .top-bar li.header-cart-li:hover:before {
    content: "";
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 15px solid #979797;
    position: absolute;
    bottom: -14px;
    left: 10px;
}
.site-header .top-bar li.header-cart-li:hover:after {
    content: "";
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 15px solid #fcfcfc;
    position: absolute;
    bottom: -16px;
    left: 10px;
    z-index: 999;
}
#CartDrawer {
    width: 300px;
    right: -10px;
    top: 32px;
    background-color: #fcfcfc;
    padding: 19px;
    display: none;
    border: 1px solid #979797;
    
    .drawer__header
    {
      display: none;
    }
    .mini-cart-items-wrapper.show-overflow {
        height: 240px;
        overflow: auto;
        margin: 0 -19px 0 0;
    }
    td.mini-cart__image-wrapper {
        border: 0;
        padding: 0;
        width: 74px;
    }
    .mini-cart__meta a {
        font-size: 13px;
        color: #787878;
        line-height: 1.2;
    }
    .mini-list-view-item__title
    {
      margin-top: -4px;
    }
    td.mini-cart__meta {
      border: 0;
      padding: 0 10px;
    }
    td.mini-cart__price-wrapper {
      border: 0;
      padding: 0;
      font-size: 10px;
      color: $color-text-primary;
      font-family: $secondary-typeface;
      letter-spacing: 0.13em;
      line-height: 1.2;
     }
    .mini-cart-total-wrapper {
      border-top: 2px solid #a6a8ab;
      padding-top: 17px;
      text-align: center;
    }
    .mini-cart-total-detail:after {
      clear: both;
      content: "";
      display: block;
     }
    .mini-cart-total-items {
      float: left;
      font-size: 12px;
      font-family: $secondary-typeface;
      text-transform: uppercase;
      color: $color-text-primary;
      letter-spacing: 0.13em;
    }
    .mini-cart-subtotal-price {
      float: right;
      font-size: 16px;
      color: $color-text-primary;

      .cart__subtotal
      {
        padding-left: 0;
      }
    }
    .mini-cart-total-wrapper input {
        width: 178px;
        margin: 0 auto;
        margin-top: 50px;
     } 
}
.site-header .top-bar li.header-cart-li:hover #CartDrawer {
    display: block;
}*/
/* Recently added popup/mini-cart starts */
.site-header .top-bar li.header-cart-li .recently-added {
  display: none;
  border: 1px solid #d4d0ce;
  background: #ffffff;
  text-align: left;
  position: absolute;
  width: 350px;
  top: 35px;
  right: -6px;
  padding: 10px 10px 20px 10px;
  z-index: 10; }

.site-header .top-bar li.header-cart-li .recently-added:after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  bottom: 100%;
  width: 0;
  height: 0;
  border-color: transparent transparent #ffffff transparent;
  border-style: solid;
  border-width: 10px; }

.site-header .top-bar li.header-cart-li .recently-added:before {
  content: '';
  display: block;
  position: absolute;
  right: 19px;
  bottom: 100%;
  width: 0;
  height: 0;
  border-color: transparent transparent #d4d0ce transparent;
  border-style: solid;
  border-width: 11px; }

.site-header .top-bar li.header-cart-li .recently-added.mobile {
  width: 280px;
  left: 50%;
  right: auto;
  margin-left: -140px;
  position: fixed;
  top: 50%;
  margin-top: -131px; }

.site-header .top-bar li.header-cart-li .recently-added.mobile .close {
  position: absolute;
  font-size: 30px;
  color: #000;
  background: #fff;
  padding: 10px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  top: 0;
  right: 0;
  display: block;
  z-index: 1; }

.site-header .top-bar li.header-cart-li .recently-added.mobile .close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5; }

.site-header .top-bar li.header-cart-li .recently-added.mobile:before {
  display: none; }

.site-header .top-bar li.header-cart-li .recently-added.mobile:after {
  display: none; }

.site-header .top-bar li.header-cart-li .recently-added a {
  margin-left: 0;
  font-size: 13px;
  color: #787878;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif; }

.site-header .top-bar li.header-cart-li .recently-added .empty-cart {
  padding: 10px; }

.site-header .top-bar li.header-cart-li .recently-added form {
  margin: 0; }

.site-header .top-bar li.header-cart-li .recently-added table {
  margin: 0 0 10px 0;
  border: 0; }

.site-header .top-bar li.header-cart-li .recently-added table tr td {
  padding: 10px 5px;
  border: 0; }

.site-header .top-bar li.header-cart-li .recently-added table .cart-item {
  padding-left: 0; }

.site-header .top-bar li.header-cart-li .recently-added table .cart-price {
  width: 25%;
  padding-right: 0;
  text-align: right;
  font-size: 10px;
  color: #4a453f;
  font-family: "Proxima Nova Regular";
  letter-spacing: 0.13em;
  line-height: 1.2; }

.site-header .top-bar li.header-cart-li .recently-added table tr:nth-of-type(even) {
  background: none; }

.site-header .top-bar li.header-cart-li .recently-added table thead {
  background: none; }

.site-header .top-bar li.header-cart-li .recently-added table tfoot {
  border-top: 1px solid #d4d0ce;
  background: none;
  font-size: 13px;
  color: #787878;
  line-height: 1.2; }

.site-header .top-bar li.header-cart-li .recently-added table tfoot .items-count a {
  font-size: 12px;
  text-align: left;
  font-family: "Proxima Nova Regular";
  color: #a49179;
  text-transform: uppercase;
  letter-spacing: 1px; }

.site-header .top-bar li.header-cart-li .recently-added table tfoot tr, .site-header .top-bar li.header-cart-li .recently-added table tfoot td {
  padding: 20px 0;
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  color: #a49179;
  font-style: normal; }

.site-header .top-bar li.header-cart-li .recently-added h1, .site-header .top-bar li.header-cart-li .recently-added .h1, .site-header .top-bar li.header-cart-li .recently-added h2, .site-header .top-bar li.header-cart-li .recently-added .h2, .site-header .top-bar li.header-cart-li .recently-added h3, .site-header .top-bar li.header-cart-li .recently-added .h3 {
  margin-bottom: 0; }

.site-header .top-bar li.header-cart-li .recently-added a.button {
  width: 178px;
  margin-top: 50px;
  height: 50px;
  float: left;
  padding: 15px 0;
  background-color: #f6f4f2;
  font-size: 14px;
  text-align: center;
  font-family: "Proxima Nova Regular";
  margin-left: 75px;
  color: #a49179; }

.site-header .top-bar li.header-cart-li .recently-added .error {
  display: none;
  padding: 10px; }

.site-header .top-bar li.header-cart-li .recently-added-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8; }

/* Recently added popup/mini-cart ends */
.second-last .h1 {
  margin-bottom: 0; }

@media only screen and (max-width: 900px) {
  .grid-view-item__title,
  .grid-view-item__meta {
    font-size: 0.9375em; } }
.product-price__price {
  display: inline-block; }

.product-price__sale {
  padding-right: 0; }

.grid-view-item__link {
  display: block; }

.grid-view-item__vendor {
  margin-top: 4px;
  color: #4a453f;
  font-size: 0.875em;
  text-transform: uppercase; }
  @media only screen and (max-width: 900px) {
    .grid-view-item__vendor {
      font-size: 0.8125em; } }

.grid-view-item__image-wrapper {
  position: relative;
  width: 100%;
  transition: all 0.4s ease; }

.grid-view-item__image {
  display: block;
  margin: 0 auto;
  width: 100%; }
  .grid-view-item__image-wrapper .grid-view-item__image {
    position: absolute;
    top: 0; }
  .grid-view-item--sold-out .grid-view-item__image {
    opacity: 0.5; }
  .grid-view-item__image.lazyload {
    opacity: 0; }

.list-view-item {
  display: table;
  table-layout: fixed;
  margin-bottom: 22px;
  width: 100%; }
  .list-view-item:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 900px) {
    .list-view-item {
      border-bottom: 1px solid #e8e9eb;
      padding-bottom: 22px; }
      .list-view-item:last-child {
        padding-bottom: 0;
        border-bottom: 0; } }

.list-view-item__image {
  max-height: 95px; }

.list-view-item__image-column {
  display: table-cell;
  vertical-align: middle;
  width: 130px; }
  @media only screen and (max-width: 900px) {
    .list-view-item__image-column {
      width: 85px; } }

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 35px; }
  @media only screen and (max-width: 900px) {
    .list-view-item__image-wrapper {
      margin-right: 17.5px; } }

.list-view-item__title-column {
  display: table-cell;
  vertical-align: middle; }

.list-view-item__title {
  color: #3d4246;
  font-size: 1.125em;
  min-width: 100px; }
  @media only screen and (max-width: 900px) {
    .list-view-item__title {
      font-size: 0.9375em; } }

.list-view-item__sold-out {
  font-size: 0.9375em; }

.list-view-item__on-sale {
  color: #7796a8;
  font-size: 0.9375em; }
  @media only screen and (max-width: 900px) {
    .list-view-item__on-sale {
      display: none; } }

.list-view-item__vendor-column {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 20%; }

.list-view-item__vendor {
  font-size: 0.9375em;
  font-style: italic; }
  @media only screen and (max-width: 900px) {
    .list-view-item__vendor {
      font-size: 0.875em; } }

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%;
  font-size: 1.0625em; }
  @media only screen and (max-width: 900px) {
    .list-view-item__price-column {
      font-size: 0.9375em; } }
  .list-view-item__price-column .product-price__sale {
    display: block; }
  .list-view-item__price-column .product-price__sale-label,
  .list-view-item__price-column .product-price__sold-out {
    display: none; }

.list-view-item__price {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.list-view-item__price--reg {
  color: #7796a8; }
  @media only screen and (max-width: 900px) {
    .list-view-item__price--reg {
      display: block; } }

@media only screen and (max-width: 900px) {
  .list-view-item__price--sale {
    display: block; } }

/*============================================================================
  Slick slider overrides
==============================================================================*/
.slick-dotted.slick-slider {
  margin-bottom: 0; }

/*================ Slick dots and prev/next pagination ================*/
.slick-slider .slick-dots {
  margin: 0;
  width: auto; }
  .slick-slider .slick-dots li {
    margin: 0;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 6px; }
    .slick-slider .slick-dots li:first-of-type {
      margin-left: 0; }
    @media only screen and (min-width: 900px) {
      .slick-slider .slick-dots li {
        width: 12px;
        height: 12px;
        margin-left: 8px; } }
    .slick-slider .slick-dots li button {
      position: relative;
      padding: 0;
      width: 10px;
      height: 10px; }
      @media only screen and (min-width: 900px) {
        .slick-slider .slick-dots li button {
          width: 12px;
          height: 12px; } }
    .slick-slider .slick-dots li button::before {
      text-indent: -9999px;
      background-color: transparent;
      border-radius: 100%;
      background-color: currentColor;
      width: 10px;
      height: 10px;
      opacity: 0.4;
      transition: all 0.2s; }
      @media only screen and (min-width: 900px) {
        .slick-slider .slick-dots li button::before {
          width: 12px;
          height: 12px; } }
    .slick-slider .slick-dots li.slick-active button::before {
      opacity: 1; }
    .slick-slider .slick-dots li button:active::before {
      opacity: 0.7; }

/*================ Index sections ================*/
.index-section {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (min-width: 900px) {
    .index-section {
      padding-top: 55px;
      padding-bottom: 55px; } }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

.index-section--flush + .index-section--flush {
  margin-top: -70px; }
  @media only screen and (min-width: 900px) {
    .index-section--flush + .index-section--flush {
      margin-top: -110px; } }

.index-section--flush:first-child {
  margin-top: -35px; }
  @media only screen and (min-width: 900px) {
    .index-section--flush:first-child {
      margin-top: -55px; } }

.index-section--flush:last-child {
  margin-bottom: -35px; }
  @media only screen and (min-width: 900px) {
    .index-section--flush:last-child {
      margin-bottom: -55px; } }

@media only screen and (max-width: 900px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
.placeholder-svg {
  display: block;
  fill: rgba(74, 69, 63, 0.35);
  background-color: rgba(74, 69, 63, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(74, 69, 63, 0.2); }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .icon {
    border: 0; }

.image-bar__content .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0; }

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.template-password {
  height: 100vh; }

.password-page {
  display: table;
  height: 100%;
  width: 100%;
  color: #4a453f;
  background-color: white;
  background-size: cover; }
  .ie9 .password-page {
    height: auto; }
  .password-page .errors,
  .password-page .form--success {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }

.password-header {
  height: 85px;
  display: table-row; }

.password-header__inner {
  display: table-cell;
  vertical-align: middle; }

.password-login {
  padding: 0 30px;
  text-align: right; }

.password-logo .logo {
  color: #3d4246;
  font-weight: 700;
  max-width: 100%; }

.password-main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 27.5px 55px; }

.password-message {
  max-width: 500px;
  margin: 82.5px auto 27.5px; }

.password__input-group {
  max-width: 340px;
  margin: 0 auto 55px; }

.password__title {
  margin-bottom: 82.5px; }

.password__form-heading {
  margin-bottom: 55px; }

.password-powered-by {
  margin-top: 82.5px; }

h1.product-single__title, .product-single__title.h1 {
  margin-bottom: 0; }

h3.product-single__title, .product-single__title.h3 {
  font-size: 39px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.1;
  margin-top: 0; }

.product-single__price {
  color: #4a453f;
  font-family: "Proxima Nova Medium";
  font-size: 15px;
  margin-bottom: 20px;
  width: 22%;
  float: left;
  margin-top: 30px;
  border: solid 1px #dad5ce;
  height: 38px;
  text-align: center;
  padding-top: 9px; }
  @media only screen and (max-width: 900px) {
    .product-single__price {
      display: block;
      font-size: 1.125em; } }

.product-single__vendor {
  color: #4a453f;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 10px; }

/*================ Add to cart form ================*/
.product-form {
  /*@include display-flexbox();
  @include flex-wrap(wrap);
  @include align-items(flex-end); */
  width: auto;
  margin: 0 -5px -10px; }

.product-form__item {
  -webkit-flex: 1 1 200px;
  -moz-flex: 1 1 200px;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  margin-bottom: 10px;
  padding: 0 5px; }
  .product-form__item label {
    display: block; }
    .product-form--hide-variant-labels .product-form__item label {
      position: absolute !important;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; }

.product-form__variants {
  display: none; }
  .no-js .product-form__variants {
    display: block; }

.product-form__item--quantity {
  padding: 0 15px 0 0;
  width: 100%;
  -webkit-flex: 0 0 55px;
  -moz-flex: 0 0 55px;
  -ms-flex: 0 0 55px;
  flex: 0 0 55px; }
  .product-form__item--quantity label {
    display: none; }

input#Quantity {
  font-family: "Proxima Nova Medium";
  padding: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  text-align: center;
  display: block;
  font-size: 14px; }

.product-form__item--submit {
  -ms-flex-preferred-size: 150px;
  -webkit-flex-basis: 150px;
  -moz-flex-basis: 150px;
  flex-basis: 150px;
  padding: 0 5px; }

.product-form__input {
  display: block;
  width: 100%;
  height: 38px; }

.product-form__input-minus {
  position: relative;
  left: 10px;
  font-size: 14px; }

.product-form__input-plus {
  position: relative;
  right: 10px;
  font-size: 14px; }

.product-form__cart-submit {
  width: 49%;
  height: 38px;
  line-height: normal;
  background: #4a453f;
  opacity: 0.85;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: center;
  color: #ffffff;
  font-style: normal;
  border-radius: 0;
  border: none;
  margin-top: 30px;
  margin-bottom: 15px;
  overflow-y: hidden; }
  @media (min-width: 750px) {
    .product-form__cart-submit {
      margin-top: 20px;
      width: 100%; } }
  .product-form__cart-submit:hover {
    opacity: 0.5; }
  .product-form__cart-submit:active {
    opacity: 0.5; }

@media screen and (max-width: 1500px) {
  .product-form__cart-submit .submit-button-label {
    font-size: 10px; } }
.product-form__cart-submit span {
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff; }

@media only screen and (min-width: 900px) {
  .product-form__cart-submit--small {
    font-weight: 600;
    border-radius: 0; } }
.drop-hint {
  display: inline-block;
  margin-top: 40px;
  margin-left: 12px; }
  .drop-hint .drophint-link {
    font-family: "Proxima Nova Regular" !important;
    background: #BDBEB9;
    border-radius: 0;
    border: none;
    font-style: normal;
    font-weight: normal;
    transition: all 0.4s ease-in; }
    .drop-hint .drophint-link a {
      color: #ffffff; }
    .drop-hint .drophint-link:hover {
      background: #4a453f; }
      .drop-hint .drophint-link:hover a {
        color: #ffffff; }

/*================ Product Images ================*/
.product-single__thumbnail {
  display: block;
  margin: 0;
  border: none;
  max-width: 100%; }
  .product-single__thumbnail.active-thumb {
    /*border-color: $color-text; */ }

.product-single__thumbnail-image {
  max-width: 100%;
  display: block; }

.product-featured-img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 100%; }
  .no-js .product-featured-img {
    position: relative; }

.zoomImg {
  background-color: white; }

@media only screen and (max-width: 900px) {
  .zoomImg {
    display: none !important; } }
@media only screen and (min-width: 900px) {
  .product-single__thumbnails {
    margin: 25px -4px 0px; } }
@media only screen and (max-width: 900px) {
  .product-single__photos {
    /* margin-bottom: $grid-gutter;*/ }

  .product-single__photo--has-thumbnails {
    /* margin-bottom: $grid-gutter;*/ } }
.product-single__photos--full {
  margin-bottom: 30px; }

.product-single__photo-wrapper {
  margin: 0 auto; }

.product-single__photo {
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative;
  /*max-width:650px;*/
  float: right; }

.thumbnails-wrapper {
  width: 90%;
  margin-top: 15px; }

@media only screen and (max-width: 900px) {
  .template-product .main-content {
    padding-top: 22px; }

  .thumbnails-slider--active .product-single__thumbnails {
    display: none; }
    .thumbnails-slider--active .product-single__thumbnails.slick-initialized, .ie9 .thumbnails-slider--active .product-single__thumbnails {
      display: block;
      margin: 0 auto;
      max-width: 75%; }

  .product-single__photos {
    position: relative; }

  .thumbnails-wrapper {
    position: relative;
    top: 30px;
    text-align: center;
    margin-bottom: 30px; }

  .thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

  .thumbnails-slider__prev {
    left: -20px; }

  .thumbnails-slider__next {
    right: -20px; }

  .product-single__thumbnails-item {
    display: inline-block;
    padding-bottom: 10px;
    width: 72px;
    float: none;
    vertical-align: middle;
    padding: 4px; }
    .slick-slider .product-single__thumbnails-item {
      float: left; }
    .thumbnails-slider--active .product-single__thumbnails-item {
      padding: 5px 0; }

  .product-single__thumbnail {
    margin: 0 auto; } }
.product-single__thumbnails-item {
  padding: 4px; }

.template-blog .social-sharing {
  margin-bottom: 17.5px; }

.blog--list-view .pagination {
  padding-top: 0; }

.details-2column {
  column-count: 2;
  column-gap: 20px;
  padding: 20px;
  font-family: "Proxima Nova Regular";
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.38;
  letter-spacing: normal; }

/*================ Cart page ================*/
.cart th,
.cart td:first-child {
  /*box-shadow: 0 0 0 1px #f2efeb;*/
  border: 1px solid #f2efeb;
  border-right: none;
  background-color: white;
  vertical-align: top; }
.cart td:nth-child(2) {
  border: 1px solid #f2efeb;
  border-left: none;
  background-color: white; }
.cart th {
  font-weight: 400;
  padding: 27.5px 0;
  color: #A49179;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px; }
.cart .cart__meta {
  vertical-align: top;
  padding-right: 15px;
  padding-left: 15px;
  position: relative; }

.cart__meta-text {
  padding: 5px 0;
  font-size: 0.875em;
  /*font-style: italic;*/ }
  .cart__meta-text span.text {
    /*text-transform: uppercase;*/
    font-style: normal; }

span.cross-remove {
  font-size: 10px;
  margin-right: 22px;
  vertical-align: middle;
  display: inline-block;
  margin-top: 20px;
  color: #4a453f;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  font-family: 'Cormorant Garamond', serif; }

.cart__qty-label {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.cart__qty-input {
  text-align: center;
  width: 60px;
  padding-left: 5px;
  padding-right: 5px; }
  @media only screen and (max-width: 900px) {
    .cart__qty-input {
      padding-top: 2px;
      padding-bottom: 2px; } }

.cart__edit {
  margin-top: 0px; }

.cart__edit--active .cart__edit-text--cancel {
  display: none; }

.cart__edit-text--edit {
  display: none; }
  .cart__edit--active .cart__edit-text--edit {
    display: block; }

.cart__edit-text--cancel,
.cart__edit-text--edit {
  pointer-events: none; }

.cart__row {
  border-bottom: 20px solid #f8f6f4;
  background-color: #f8f6f4;
  padding: 10px; }
  .cart__row p {
    margin-bottom: 0; }
    .cart__row p + p {
      margin-top: 10px; }

.cart__subtotal-title {
  font-size: 16px;
  float: left;
  color: #504e42;
  height: 5px; }

.cart__subtotal {
  /*padding-left: $gutter-site / 2;*/
  float: right;
  color: #504e42 !important;
  font-family: "Proxima Nova Regular";
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.9;
  letter-spacing: 1.5px; }
  @media only screen and (min-width: 900px) {
    .cart__subtotal {
      /*padding-left: 10px;*/
      /*min-width: 50px;*/
      display: inline-block; } }

.cart__savings {
  padding-top: 18px; }

.cart__savings-amount {
  padding-left: 27.5px; }
  @media only screen and (min-width: 900px) {
    .cart__savings-amount {
      padding-left: 55px;
      min-width: 150px;
      display: inline-block; } }

.cart__footer {
  padding-top: 35px; }
  .cart__footer span.arrow {
    display: inline-block;
    margin-right: 10px; }
  .cart__footer svg.icon.icon-arrow-right {
    transform: rotate(180deg);
    vertical-align: inherit;
    width: 24px;
    height: 10px; }

.cart__update--large {
  margin-right: 10px; }

.cart__continue--large {
  margin-right: 10px;
  line-height: 1.2;
  padding: 10px 50px !important;
  border: 1px solid #d5cbbf; }

.cart__shipping {
  font-style: italic;
  font-size: 0.875em;
  padding: 10px 0; }

.cart-note__label,
.cart-note__input {
  display: block; }
  @media only screen and (max-width: 900px) {
    .cart-note__label,
    .cart-note__input {
      margin: 0 auto; } }

.cart-note__label {
  margin-bottom: 15px; }

.cart-note__input {
  width: 100%;
  resize: none;
  border: 1px solid #d5cbbf !important;
  height: 120px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal !important;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #504e42 !important; }
  @media only screen and (max-width: 900px) {
    .cart-note__input {
      margin-bottom: 40px; } }

.cart-note__input::placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4a453f; }

.cart__image {
  max-height: 160px;
  width: 160px;
  max-width: 160px; }

.cart__image-wrapper a {
  display: block;
  padding-right: 17.5px;
  width: 160px; }
  @media only screen and (min-width: 900px) {
    .cart__image-wrapper a {
      padding-right: 35px; } }

@media only screen and (min-width: 900px) {
  .cart__image-wrapper {
    width: 130px; }

  .cart__meta {
    max-width: 300px; }

  .cart__remove {
    margin-top: 4px;
    padding: 0;
    text-transform: uppercase;
    color: #A49179;
    background-color: transparent; }

  .cart__qty {
    text-align: center; } }
@media only screen and (max-width: 900px) {
  .cart {
    /*thead {
      display: none;
    }*/ }
    .cart table {
      display: block;
      width: 100%; }
    .cart tr,
    .cart tbody {
      width: 100%; }
    .cart tbody {
      display: block; }
    .cart .cart__update-wrapper {
      display: inline-block;
      padding-top: 0;
      padding-bottom: 22px;
      flex: 1 1 65px; }

  .cart__update--show td {
    padding-bottom: 10px; }
  .cart__update--show .cart__update-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .cart-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }

  .cart-flex-item {
    display: block;
    min-width: 0;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }

  .cart__meta {
    -webkit-flex: 1 1 0%;
    -moz-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%; }

  .cart__image-wrapper {
    /* @include flex(0 0 150px);*/ }

  .cart__price-wrapper {
    -webkit-flex: 0 1 24%;
    -moz-flex: 0 1 24%;
    -ms-flex: 0 1 24%;
    flex: 0 1 24%;
    text-align: right; }

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

  .cart-message {
    padding-top: 20px; }

  .cart__qty {
    padding: 0 10px; }

  .cart__qty-label {
    position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.8125em;
    margin-right: 5px; } }
@media only screen and (min-width: 900px) {
  .cart-page__remove-item {
    margin-top: 4px;
    padding: 0;
    text-transform: uppercase;
    color: #A49179;
    background-color: transparent; } }
.cart--no-cookies .cart__continue-btn {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cookie-message {
    display: block; }

.additional-checkout-buttons {
  margin-top: 22px; }
  .additional-checkout-buttons input[type="image"] {
    padding: 0;
    border: 0;
    background: transparent; }

/*================ MODULES ================*/
.site-header {
  background-color: white;
  position: relative;
  top: 0;
  padding: 80px 0 10px;
  z-index: 2; }
  .site-header.fx-header {
    z-index: 9999999; }
  @media only screen and (max-width: 900px) {
    .site-header {
      /*border-bottom: 1px solid $color-border;*/
      padding: 35px 0 26px; } }
  @media only screen and (min-width: 900px) {
    .site-header.logo--center {
      padding-top: 30px; } }
  .site-header .logo {
    text-align: center; }
  .site-header .top-bar {
    font-family: "Proxima Nova Regular", sans-serif;
    font-size: 9px;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    right: 40px;
    top: 20px; }
    .site-header .top-bar li {
      position: relative;
      display: inline-block;
      margin: 0 20px 0 0; }
      .site-header .top-bar li:first-child {
        /*
          &:after{
            position: absolute;
            content: " ";
            height: 15px;
            background: #A49179;
            width: 1px; 
            right: -13px;
            top: 3px;       
          }*/ }
      .site-header .top-bar li:last-child {
        margin-right: 0; }
      .site-header .top-bar li a {
        color: #A49179; }

.announcement-bar {
  text-align: center;
  position: relative;
  z-index: 10; }

.announcement-bar--link {
  display: block; }

.gift-message__word-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-family: ProximaNova-Regular;
  font-size: 9px;
  color: #4a453f;
  text-align: right;
  display: none; }

.announcement-bar__message {
  display: block;
  font-size: 1em;
  font-weight: 600;
  padding: 10px 22px; }
  @media only screen and (min-width: 900px) {
    .announcement-bar__message {
      padding: 10px 55px; } }

.site-header__logo {
  margin: 15px 0; }
  .logo-align--center .site-header__logo {
    text-align: center;
    margin: 0 auto; }
    @media only screen and (max-width: 900px) {
      .logo-align--center .site-header__logo {
        text-align: left;
        margin: 15px 0; } }

.site-header__logo-link {
  display: inline-block;
  word-break: break-word; }

.site-header__logo-image {
  display: block; }
  @media only screen and (min-width: 900px) {
    .site-header__logo-image {
      margin: 0 auto; } }

.site-header__logo-image img {
  width: 100%; }

.site-header__logo-image--centered img {
  margin: 0 auto; }

@media only screen and (min-width: 900px) {
  .logo-align--center .site-header__logo-link {
    margin: 0 auto; } }
@media only screen and (max-width: 900px) {
  .site-header__icons .btn--link,
  .site-header__icons .site-header__cart {
    font-size: 1em; } }
.site-header__icons {
  position: relative;
  white-space: nowrap; }

.site-header__icons-wrapper {
  position: relative;
  margin-right: -10px; }

.site-header__cart,
.site-header__search,
.site-header__account {
  position: relative; }

.site-header__search {
  padding-right: 45px; }
  .site-header__icons--plus .site-header__search {
    padding-right: 90px; }

/*@include media-query($medium-up) {
  .site-header__cart,
  .site-header__account {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 8px 0;
    @include transform(translateY(-50%));
  }

  .site-header__account {
    right: 50px;
  }
}
*/
.site-header__cart-title,
.site-header__search-title {
  display: inline-block;
  vertical-align: middle;
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.site-header__cart-title {
  margin-right: 3px; }

.site-header__cart-count {
  display: block;
  position: absolute;
  top: -1px;
  font-weight: bold;
  background-color: #7796a8;
  color: white;
  border-radius: 9px;
  min-width: 16px;
  height: 16px; }
  .site-header__cart-count span {
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    padding: 2px 5px;
    font-size: 11px;
    line-height: 1; }
  @media only screen and (min-width: 900px) {
    .logo--center .site-header__cart-count {
      right: -2px; }
    .logo--left .site-header__cart-count {
      left: 12px;
      top: 4px; } }

@media only screen and (max-width: 900px) {
  .site-header__cart-count {
    top: 14px;
    left: 22px;
    border-radius: 11px;
    min-width: 19px;
    height: 19px; }
    .site-header__cart-count span {
      padding: 4px 6px;
      font-size: 12px; } }
.site-header__menu {
  display: none; }

.site-header .icon-search,
.site-header .icon-hamburger,
.site-header .icon-close,
.site-header .icon-cart {
  height: 30px; }
  @media only screen and (min-width: 900px) {
    .site-header .icon-search,
    .site-header .icon-hamburger,
    .site-header .icon-close,
    .site-header .icon-cart {
      margin-right: 3px; } }

@media only screen and (max-width: 900px) {
  .site-header__logo {
    padding-left: 22px; }

  .site-header__icons {
    padding-right: 22px; }

  .site-header__menu,
  .site-header__search-toggle,
  .site-header__cart,
  .site-header__account {
    display: inline-block;
    vertical-align: middle;
    padding: 18px 8px;
    margin: 0; }
    .site-header__icons--plus .site-header__menu, .site-header__icons--plus
    .site-header__search-toggle, .site-header__icons--plus
    .site-header__cart, .site-header__icons--plus
    .site-header__account {
      padding: 18px 6px; }

  .site-header__logo {
    text-align: left; }
    .site-header__logo img {
      margin: 0; } }
.article--listing {
  padding-top: 55px;
  margin-bottom: 55px; }

.article__title {
  margin-bottom: 15px;
  font-size: 28px;
  color: #4a453f; }
  .article__title a {
    color: #4a453f;
    font-size: 28px; }
    @media only screen and (max-width: 901px) {
      .article__title a {
        font-size: 22px;
        line-height: 1.2; } }

.article__author {
  margin-right: 10px; }

.article__author,
.article__date {
  display: inline-block;
  margin-bottom: 22px; }
  .template-article .article__author, .template-article
  .article__date {
    margin-bottom: 0; }

.article__tags {
  margin-bottom: 27.5px; }

.article__tags--list {
  font-style: italic; }

/*============================================================================
  Blog article grid
==============================================================================*/
.grid--blog {
  margin-bottom: -55px;
  overflow: auto; }

.article__grid-tag {
  margin-right: 10px; }

.article__grid-meta {
  /*margin-bottom: $section-spacing; */
  text-align: center; }

@media only screen and (max-width: 900px) {
  .article__grid-meta--has-image {
    float: left;
    width: 60%;
    padding-left: 22px; } }
.article__grid-excerpt {
  margin-bottom: 17.5px; }

.article__grid-image-wrapper {
  margin: 0 auto;
  width: 100%; }

.article__grid-image-container {
  display: block;
  clear: both;
  position: relative;
  margin: 0 auto 27.5px 0;
  min-height: 1px;
  width: 100%;
  height: 100%; }
  @media only screen and (max-width: 900px) {
    .article__grid-image-container {
      float: left;
      margin: 0 0 55px 0; } }
  .article__grid-image-container img {
    max-width: 600px;
    border: 0;
    float: right; }

.article__grid-image {
  margin: 0 auto;
  width: 100%; }
  .js .article__grid-image {
    position: absolute;
    top: 0; }

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%; }

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px; }

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%; }

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px; }

.article__list-image {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0; }

.sidebar {
  margin-top: 40px; }

.sidebar__list {
  list-style: none;
  margin-bottom: 55px; }
  .sidebar__list li {
    margin-bottom: 10px; }

.pagination {
  text-align: center;
  list-style: none;
  font-size: 0.9375em;
  padding-top: 55px; }
  .pagination li {
    display: inline-block; }
  .pagination .icon {
    display: block;
    height: 20px;
    vertical-align: middle; }

.pagination__text {
  padding: 0 27.5px; }

.comment {
  margin-bottom: 30px; }
  .comment:last-child {
    margin-bottom: 0; }

.comment__content {
  margin-bottom: 5px; }

.comment__meta-item {
  margin-right: 10px;
  font-size: 0.875em; }
  .comment__meta-item:first-child::before {
    content: '\2014 \0020'; }

.btn--share {
  margin-bottom: 2px;
  text-align: center; }
  .btn--share .icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px; }
  .btn--share .icon-facebook {
    fill: #3b5998; }
  .btn--share .icon-twitter {
    fill: #00aced; }
  .btn--share .icon-pinterest {
    fill: #cb2027; }

.share-title {
  display: inline-block;
  vertical-align: middle; }

.btn--share {
  display: block; }
  .btn--share .icon-twitter {
    fill: #B7986E;
    width: 15px; }
  .btn--share .icon-pinterest path, .btn--share .icon-facebook path {
    fill: #B7986E; }

.search-bar__form {
  display: table;
  width: 100%;
  position: relative;
  height: 40px;
  border: 1px solid transparent; }

@media only screen and (max-width: 900px) {
  .search-bar__form {
    width: 100%; } }
.search-bar__submit .icon {
  position: relative;
  top: -1px;
  height: 30px; }

.search-bar__submit,
.search-header__submit {
  display: none;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0 0 5px;
  height: 100%;
  z-index: 1; }

.search-header__input,
.search-bar__input {
  font-family: 'Cormorant Garamond', serif;
  background-color: transparent;
  border-radius: 2px;
  color: #A49179;
  text-shadow: 0px 0px 0px #ffffff;
  -webkit-text-fill-color: transparent;
  border-color: transparent;
  padding: 0;
  width: 6px;
  font-size: 50px;
  letter-spacing: 0; }
  .search-header__input::-webkit-input-placeholder,
  .search-bar__input::-webkit-input-placeholder {
    color: #A49179;
    opacity: 1; }
  .search-header__input::-moz-placeholder,
  .search-bar__input::-moz-placeholder {
    color: #A49179;
    opacity: 1; }
  .search-header__input:-ms-input-placeholder,
  .search-bar__input:-ms-input-placeholder {
    color: #A49179;
    opacity: 1; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #A49179;
    opacity: 1; }

.sea-placeholder {
  font-family: "Proxima Nova Regular";
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.95px;
  display: block;
  margin-left: 12px; }

.search-bar__input {
  border: 1px solid transparent;
  text-align: left;
  padding: 40px 5px 10px 5px;
  min-width: 20px; }
  .search-bar__input:focus {
    border-color: transparent; }

button.btn--link.search-bar__close {
  position: absolute;
  top: 30px;
  right: 20px;
  color: #4A453F; }
  button.btn--link.search-bar__close .icon {
    width: 20px; }
  button.btn--link.search-bar__close svg path {
    stroke: #4A453F; }

.search-box {
  margin: 48px 0; }

/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
==============================================================================*/
.search-header__input:hover + .btn--link {
  opacity: 0.6; }

/*================ Mobile Search Bar ================*/
.search-bar {
  border-bottom: 1px solid #e8e9eb;
  padding: 0 40px;
  position: absolute;
  top: 135px;
  background: rgba(234, 229, 223, 0.91);
  z-index: 9;
  height: 225px;
  display: none; }

.search-bar__table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%; }

.search-bar__table-cell {
  display: table-cell;
  vertical-align: middle; }

/*.search-bar__form-wrapper {
  width: 90%;
}
*/
/*================ Header Search ================*/
.search-header {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 30px;
  vertical-align: middle; }
  .search-header.search--focus {
    max-width: 250px; }

.search-header__input {
  cursor: pointer; }

.search--focus .search-header__input {
  outline: none;
  border-color: #e8e9eb;
  cursor: auto; }
.search--focus .search-header__submit {
  padding-left: 10px;
  pointer-events: auto; }

.search-header__submit {
  pointer-events: none; }

.search-header,
.search-header__submit {
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }

.no-svg .site-header__search {
  display: inline-block; }
.no-svg .search-header {
  max-width: none; }
.no-svg .search__input {
  width: auto;
  padding-left: 60px; }

.search-width {
  max-width: 800px !important;
  overflow: hidden;
  display: inline-block; }

/*================ Mobile Site Nav ================*/
.mobile-nav {
  display: block;
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .sub-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .third-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-200%, 0, 0);
    -webkit-transform: translate3d(-200%, 0, 0);
    transform: translate3d(-200%, 0, 0); }

.mobile-nav__link,
.mobile-nav__sublist-link {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 16px; }

.mobile-nav__link {
  position: relative; }

.mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
  padding-left: 70px; }

.mobile-nav__item {
  display: block;
  width: 100%; }
  .mobile-nav__item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12px;
    width: 10px;
    margin: -6px 0 0 -5px; }

.mobile-nav__return {
  border-right: 1px solid #e8e9eb; }

.mobile-nav__return-btn {
  position: relative;
  padding: 24px 0;
  width: 55px; }

.mobile-nav__icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 22px;
  padding-right: 22px;
  pointer-events: none;
  overflow: hidden; }

.mobile-nav__table {
  display: table;
  width: 100%; }

.mobile-nav__table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  text-align: left;
  white-space: normal; }

.mobile-nav__toggle-button {
  padding: 20px 15px; }

.mobile-nav__dropdown {
  position: absolute;
  background-color: white;
  z-index: 8;
  width: 100%;
  top: 0;
  right: -100%;
  display: none; }
  .is-active + .mobile-nav__dropdown {
    display: block;
    opacity: 1; }
  .mobile-nav__dropdown.is-closing {
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    opacity: 0.99; }
  .mobile-nav__dropdown .mobile-nav__sublist-header {
    font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 600;
    display: table-cell;
    vertical-align: middle; }

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  -ms-transform: translate3d(0, -100%, 0);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  position: absolute;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  display: none;
  overflow: hidden;
  width: 100%; }
  .mobile-nav-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #e8e9eb; }
  .mobile-nav-wrapper.js-menu--is-open {
    display: block; }

.mobile-nav--open .icon-close {
  display: none; }

.mobile-nav--close .icon-hamburger {
  display: none; }

/*================ Modals ================*/
.modal {
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background-color: white;
  bottom: 0;
  color: #3d4246;
  display: none;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0; }

.modal--is-active {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  display: block;
  opacity: 1;
  overflow: hidden; }

.modal__inner {
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: 100%; }

.modal__centered {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%; }
  .no-csstransforms .modal__centered {
    top: 20%; }

.modal__close {
  border: 0;
  padding: 55px;
  position: fixed;
  top: 0;
  right: 0; }
  .modal__close .icon {
    font-size: 1.25em; }

/*============================================================================
  Hero slider

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.slideshow-wrapper {
  position: relative; }

.slideshow {
  overflow: hidden;
  height: 325px;
  margin-bottom: 0; }
  .slideshow.slideshow--medium {
    height: 500px; }
  .slideshow.slideshow--large {
    height: 575px; }
  @media only screen and (min-width: 900px) {
    .slideshow {
      height: 475px; }
      .slideshow.slideshow--medium {
        height: 650px; }
      .slideshow.slideshow--large {
        height: 775px; } }
  .slideshow .slideshow__slide,
  .slideshow .slick-list,
  .slideshow .slick-track {
    height: 100%; }
  .slideshow .slick-prev,
  .slideshow .slick-next {
    top: 0;
    height: 100%;
    margin-top: 0;
    width: 40px; }
  .slideshow .slick-prev {
    left: 0; }
  .slideshow .slick-next {
    right: 0; }
  .slideshow .slick-dots {
    bottom: 22px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%); }
    .slideshow .slick-dots li button::before {
      color: white; }

.video-is-playing .slick-dots {
  display: none !important; }

.slideshow__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #7796a8;
  padding: 27.5px;
  z-index: 10000;
  transition: none; }
  .video-is-playing .slideshow__pause:focus {
    display: none; }

.slideshow__pause-stop {
  display: block; }
  .is-paused .slideshow__pause-stop {
    display: none; }

.slideshow__pause-play {
  display: none; }
  .is-paused .slideshow__pause-play {
    display: block; }

/*================ General slide styles ================*/
.slideshow__slide {
  position: relative;
  overflow: hidden; }

.slideshow__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .slideshow__link:active, .slideshow__link:focus {
    opacity: 1; }

.slideshow__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25;
  z-index: 3; }

/*================ Slide images ================*/
.slideshow__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 1; }
  .slick-initialized .slideshow__image, .no-js .slideshow__image {
    opacity: 1; }
  .slideshow__slide--background-video .slideshow__image {
    opacity: 0; }
  .no-autoplay .slideshow__image {
    opacity: 1; }

.ie9 .slideshow__slide {
  z-index: 1 !important; }
.ie9 .slick-dots {
  z-index: 2; }

/*================ Slide text ================*/
.slideshow__text-wrap {
  height: 100%; }
  .slideshow__link .slideshow__text-wrap {
    cursor: inherit; }
  .slideshow__slide--has-background-video .slideshow__text-wrap {
    padding-top: 165px; }
  .video-is-playing .slideshow__text-wrap {
    display: none; }
  .slideshow__slide.video-is-paused .slideshow__text-wrap {
    display: none; }

.slideshow__text-content {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s;
  z-index: 3; }
  .slick-active .slideshow__text-content, .no-js .slideshow__text-content {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1; }
  .slideshow__text-content::after {
    content: '';
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 3px solid white;
    border-top-color: transparent;
    -moz-animation: spin 0.65s infinite linear;
    -o-animation: spin 0.65s infinite linear;
    -webkit-animation: spin 0.65s infinite linear;
    animation: spin 0.65s infinite linear;
    opacity: 1;
    transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
    bottom: -55px;
    left: 50%; }
  .slick-initialized .slideshow__text-content::after, .no-js .slideshow__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

/*
.slideshow__title {
  color: $color-overlay-title-text;
}
*/
/*.slideshow__subtitle {
  display: block;
  color: $color-overlay-title-text;
}
*/
/*================ Video styles ================*/
.slideshow__slide--has-background-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.slideshow__video {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2; }

.slideshow__video--background {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in; }
  .autoplay .slideshow__video--background.video-is-loaded {
    display: block;
    visibility: visible;
    opacity: 1; }

.slideshow__slide--background-video::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.slideshow__video--chrome {
  display: none;
  opacity: 0;
  visibility: none;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in; }
  .ie9 .slideshow__video--chrome {
    display: block; }
  .slideshow__slide.video-is-playing .slideshow__video--chrome, .slideshow__slide.video-is-paused .slideshow__video--chrome {
    display: block;
    visibility: visible;
    opacity: 1; }

/*================ Video control buttons ================*/
.slideshow__video-control {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 5px;
  z-index: 4;
  transition: all 0.1s ease-out; }
  .slideshow__video-control:hover, .slideshow__video-control:focus {
    opacity: 0.7; }

.video-loader {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 3px solid white;
  border-top-color: transparent;
  -moz-animation: spin 0.65s infinite linear;
  -o-animation: spin 0.65s infinite linear;
  -webkit-animation: spin 0.65s infinite linear;
  animation: spin 0.65s infinite linear;
  transition: all 0.1s ease-out 0.5s;
  z-index: 4;
  top: 50%;
  left: 50%; }
  .ie9 .video-loader, .video-is-loaded .video-loader, .video-is-playing .video-loader, .video-is-paused .video-loader, .autoplay .video-loader, .no-autoplay .video-loader {
    content: none;
    display: none; }
  .video-is-loading .video-loader, .autoplay .video-is-loading .video-loader, .no-autoplay .video-is-loading .video-loader {
    display: block;
    visibility: visible;
    opacity: 1; }

.slideshow__video-control--play-wrapper {
  height: 30px; }
  @media only screen and (min-width: 900px) {
    .slideshow__video-control--play-wrapper {
      height: 45px; } }

@media only screen and (min-width: 900px) {
  .slideshow__video-control--play-wrapper--push {
    margin-top: 30px; } }
.slideshow__video-control--play {
  opacity: 0;
  color: white;
  position: relative;
  margin: 0 auto; }
  .slideshow__video-control--play .slideshow__video--background {
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .video-is-loaded .slideshow__video-control--play {
    display: block;
    visibility: visible;
    opacity: 1; }
  .video-is-loading .slideshow__video-control--play, .video-is-playing .slideshow__video-control--play, .slideshow__slide.video-is-paused .slideshow__video-control--play {
    display: none;
    visibility: hidden;
    opacity: 0; }
  .slideshow__video-control--play .icon {
    width: 42px;
    height: 100%; }
    @media only screen and (min-width: 900px) {
      .slideshow__video-control--play .icon {
        width: 65px; } }

.slideshow__video-control--close {
  top: 10px;
  right: 10px;
  background-color: white;
  color: black; }
  .video-is-playing .slideshow__video-control--close, .slideshow__slide.video-is-paused .slideshow__video-control--close {
    display: block;
    visibility: visible;
    opacity: 1; }
  .slideshow__video-control--close .icon {
    display: block;
    width: 20px;
    height: 20px; }

.product-price__price {
  font-size: 13px;
  letter-spacing: 1.9px;
  line-height: 1.2; }
  .grid-view-item.product-price--sold-out .product-price__price {
    text-decoration: line-through; }

.product-form__item--quantity.number-input {
  margin: 20px 0; }
  .product-form__item--quantity.number-input button, .product-form__item--quantity.number-input input {
    height: 38px; }
  .product-form__item--quantity.number-input .quantity-number {
    font-family: "Proxima Nova Regular";
    font-size: 11px;
    letter-spacing: 1.9px;
    line-height: 1.2;
    font-weight: normal; }

.product-price__sale--single {
  padding-left: 10px; }

.product-price__sale,
.product__price--sale {
  color: #7796a8; }

.product-price__sale-label {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9375em; }

.product-price__sold-out {
  font-weight: 600;
  white-space: nowrap; }

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  border-bottom: 1px solid #e8e9eb;
  border-top: 1px solid #e8e9eb;
  margin-bottom: 22px; }
  @media only screen and (min-width: 900px) {
    .filters-toolbar-wrapper {
      margin-bottom: 55px; } }

.filters-toolbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }

.filters-toolbar__item {
  min-width: 33%;
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  .no-flexbox .filters-toolbar__item {
    text-align: left !important; }

.filters-toolbar__item--count {
  min-width: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center; }

.no-flexbox .filters-toolbar select {
  width: 100% !important; }

.filters-toolbar__input {
  -ms-transition: all ease-out 0.15s;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  background-color: white;
  border: 0 solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  height: 55px;
  opacity: 1; }
  @media only screen and (max-width: 900px) {
    .filters-toolbar__input {
      height: 46px; } }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

.filters-toolbar__input--sort {
  margin-right: -10px; }
  .no-flexbox .filters-toolbar__input--sort {
    margin: 0; }

.filters-toolbar__input--filter {
  margin-left: -15px; }
  .no-flexbox .filters-toolbar__input--filter {
    margin: 0; }

.filters-toolbar__product-count {
  font-size: 0.9375em;
  font-style: italic;
  line-height: 55px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 900px) {
    .filters-toolbar__product-count {
      font-size: 0.875em;
      line-height: 46px; } }

@media only screen and (min-width: 900px) {
  .site-footer__linklist--center {
    margin-top: 35px;
    padding-right: 0; } }
.site-footer__linklist,
.site-footer__newsletter {
  margin-top: 35px; }
  @media only screen and (min-width: 900px) {
    .site-footer__linklist,
    .site-footer__newsletter {
      margin-top: 55px; } }

.site-footer__linklist-item {
  display: inline-block;
  padding: 5px 10px; }
  @media only screen and (min-width: 900px) {
    .site-footer__linklist-item {
      display: block;
      padding: 0 20px 6px 0; }
      .site-footer__linklist--center .site-footer__linklist-item {
        display: inline-block;
        padding: 3px 10px; } }

.site-footer__newsletter {
  margin: 35px auto 0;
  max-width: 320px; }
  @media only screen and (min-width: 900px) {
    .site-footer__newsletter {
      margin: 55px 0 0;
      max-width: none; } }

.site-footer__social-icons,
.site-footer__copyright {
  margin-top: 35px; }
  @media only screen and (min-width: 900px) {
    .site-footer__social-icons,
    .site-footer__copyright {
      margin-top: 55px; } }

.social-icons__link {
  display: block;
  padding: 0 3px; }
  .social-icons__link:first-child {
    margin-left: 0; }

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

.site-footer__copyright-content {
  font-size: 0.8125em;
  padding-right: 20px; }
  .site-footer__copyright--right .site-footer__copyright-content {
    padding: 0 0 0 20px; }
    .site-footer__copyright--right .site-footer__copyright-content:first-child {
      padding-left: 0; }
    @media only screen and (min-width: 900px) {
      .site-footer__copyright--right .site-footer__copyright-content {
        padding: 0 0 0 30px; } }

.site-footer__copyright-content--powered-by {
  padding-right: 0; }

.site-footer__payment-icons {
  margin-top: 22px; }
  @media only screen and (min-width: 900px) {
    .site-footer__payment-icons {
      margin-top: 22px; }
      .site-footer__copyright--right .site-footer__payment-icons {
        padding-left: 30px; } }
  .site-footer__payment-icons .payment-icon {
    margin-right: 5px; }
    .site-footer__payment-icons .payment-icon:last-child {
      margin-right: 0; }

.site-footer__copyright--bottom {
  margin-top: 35px; }

@media only screen and (min-width: 900px) {
  .site-footer__payment-icons--right {
    float: right;
    margin-top: 0; } }
.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 900px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      display: block; } }

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }
  @media only screen and (max-width: 900px) {
    .feature-row__item {
      -webkit-flex: 1 1 auto;
      -moz-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      max-width: 100%; } }

.feature-row__image-wrapper {
  margin: 0 auto 19.44444px;
  position: relative;
  width: 100%; }

.feature-row__image {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*max-width: 650px;*/
  float: right; }
  .feature-row__image-wrapper .feature-row__image {
    width: 100%;
    position: absolute;
    top: 0; }
  @media only screen and (max-width: 900px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (max-width: 900px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media only screen and (min-width: 900px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
@media only screen and (min-width: 900px) {
  .featured-row__subtext {
    font-size: 1.125em; } }
.hero {
  position: relative;
  height: 475px;
  display: table;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.hero--x-small {
  height: 94px; }

.hero--small {
  height: 225px; }

.hero--medium {
  height: 357px; }

.hero--large {
  height: 488px; }

.hero--x-large {
  height: 582px; }

@media only screen and (min-width: 900px) {
  .hero--x-small {
    height: 125px; }

  .hero--small {
    height: 300px; }

  .hero--medium {
    height: 475px; }

  .hero--large {
    height: 650px; }

  .hero--x-large {
    height: 775px; } }
.hero__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25;
  z-index: 1; }

.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 55px 0;
  color: white;
  z-index: 2; }

.hero__btn {
  background-color: white;
  color: black;
  margin-top: 27.5px; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px; }

.quotes-slider__text {
  font-size: 1.10938em;
  font-weight: 400;
  font-style: normal;
  padding: 0 15px; }
  .quotes-slider__text cite {
    font-size: 0.8em;
    font-style: normal; }
  .quotes-slider__text p {
    margin-bottom: 30px; }
    .quotes-slider__text p + cite {
      margin-top: 0; }

.slick-dotted.quotes-slider.slick-initialized {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab; }

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 55px; }
  .quotes-wrapper .slick-dots li button::before {
    color: #3d4246;
    opacity: 0.2; }

.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none; }

.logo-bar {
  text-align: center;
  margin-bottom: -35px; }

@media only screen and (min-width: 900px) {
  .logo-bar--large {
    margin-bottom: -55px; } }
.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 0 27.5px 35px; }

@media only screen and (min-width: 900px) {
  .logo-bar__item--large {
    margin-bottom: 55px; } }
.logo-bar__image {
  display: block;
  margin: 0 auto; }

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 900px) {
    .map-section {
      height: 500px; } }
  .map-section .page-width {
    height: 100%; }

.map-section--load-error {
  height: auto; }

.map-section__overlay-wrapper {
  position: relative;
  text-align: center;
  height: 100%; }

.map-section__overlay {
  position: relative;
  display: inline-block;
  background-color: white;
  padding: 35px;
  margin-top: 22px;
  width: 100%;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 900px) {
    .map-section__overlay {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 0;
      width: 33.33333%; }
      .ie9 .map-section__overlay {
        top: 10%; } }
  .map-section--load-error .map-section__overlay {
    position: static;
    transform: translateY(0); }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

.map-section__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  margin-bottom: -50%; }
  @media only screen and (min-width: 900px) {
    .map-section__container {
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

@media only screen and (max-width: 900px) {
  .image-bar {
    max-width: 400px;
    margin: 0 auto; } }
.image-bar__item {
  display: block;
  color: white;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; }

.image-bar__link:focus .image-bar__content {
  border-color: #3d4246; }

.image-bar__content, .image-bar__item {
  position: relative;
  width: 100%; }
  .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
    height: 94px; }
  .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
    height: 225px; }
  .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
    height: 357px; }
  .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
    height: 488px; }
  .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
    height: 582px; }
  @media only screen and (min-width: 900px) {
    .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
      height: 125px; }
    .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
      height: 300px; }
    .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
      height: 475px; }
    .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
      height: 650px; }
    .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
      height: 775px; } }

.image-bar__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25; }

.image-bar__caption {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  width: 100%;
  text-align: center; }

.collection-grid {
  margin-bottom: -22px;
  overflow: auto; }

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 22px; }
  @media only screen and (min-width: 900px) {
    .collection-grid-item {
      margin-bottom: 30px; } }

.collection-grid-item__title {
  color: white;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  padding: 0 5px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.1); }
  @media only screen and (min-width: 900px) {
    .collection-grid-item__title {
      padding: 0 15px; } }

.collection-grid-item__link {
  border: 2px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .collection-grid-item__link:focus {
    border-color: #3d4246; }

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }

.collection-grid-item__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25; }

.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: -30px;
  margin-left: -30px; }
  @media only screen and (max-width: 900px) {
    .custom-content {
      margin-bottom: -22px;
      margin-left: -22px; } }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%; }
  @media only screen and (max-width: 900px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 22px;
      margin-bottom: 22px; }
      .custom__item.small--one-half {
        -webkit-flex: 1 0 50%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }
  .custom__item .collection-grid-item {
    margin-bottom: 0; }

.custom__item--image {
  margin: 0 auto;
  padding-left: 0; }

.custom__item-inner {
  position: relative;
  display: block;
  text-align: left;
  max-width: 100%; }

.custom__item-inner--video,
.custom__item-inner--collection,
.custom__item-inner--html {
  display: block; }

.custom__item-inner--image {
  position: relative;
  margin: 0 auto; }

.custom__image {
  width: 100%;
  display: block;
  position: absolute;
  top: 0; }

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

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

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

.newsletter-section {
  padding-top: 55px; }

.index-section--newsletter-background {
  background-color: rgba(120, 129, 136, 0.1); }

/* -------------------------------
Start Multiship Scripts ----------
---------------------------------*/
/*@keyframes modalShow {
  0% {
    margin-top: -100px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes modalHide {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -100px;
  }
}
.ms__nav {
  text-align: left;
  margin: 0;
  padding: 0;
}
.ms__nav li {
  display: inline-block
}
.ms__nav li a {
  padding: 10px;
}
.ms__modal-bg {
  position: fixed;
  margin-top: -100px;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.ms__modal-bg.modal-open {
  display: inline-block;
  background: rgba(43, 46, 56, 0.9);
}
.ms__modal-bg:hover {
  cursor: pointer;
}
.ms__modal {
  display:none;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  top: 200px;
  vertical-align: top;
  margin-bottom: 10px;
  padding: 35px;
  color: #2b2e38;
  background: #fff;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-animation-duration: .5s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalHide;
  animation-name: modalHide;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.ms__modal.modal-open {
  display: inline-block;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalShow;
  animation-name: modalShow;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
 
.ms__modal, .ms__modal-bg:after {
 
}
.ms__modal-bg:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
.ms__prop {
    margin: 5px 0;
}
@media only screen and (min-width: 641px) {
  .ms__address-modal {
    max-width: 700px;
  }
}
.ms__tax-line {
  display: none !important;
}
.ms__show-tax .ms__tax-line {
  display: block !important;
}
 
.ms__address-modal h2 {
  padding: 0 40px;
}
.ms__address-modal .bottom-bar {
  background: #fff;
  padding: 15px 40px;
  text-align: right;
}
.ms__address-modal .bottom-bar .btn-default {
  display: inline-block;
}
.ms__address-modal .tab-content {
  padding: 15px 40px;
  background: #f9f9f9;
}
.ms__address-modal .ms__nav>li>a {
  font-weight: bold;
  color: #999;
  border: none;
}
.ms__address-modal .ms__nav>li.active>a {
  font-weight: bold;
  color: #333;
  border-top: 3px solid #999;
}
.ms__address-modal .ms__nav>li.active>a:hover, .ms__address-modal .ms__nav>li.active>a:focus, .ms__address-modal .ms__nav>li.active>a:visited {
  border-top: 3px solid #999;
}
.ms__address-modal .ms__nav>li>a:focus, .ms__address-modal .ms__nav>li>a:hover {
  border: 0px;
  background: transparent;
}
.ms__address-modal .ms__nav {
  padding-left: 0;
}
.ms__address-modal .ms__nav>li.active>a, .ms__address-modal .ms__nav>li.active>a:focus, .ms__address-modal .ms__nav>li.active>a:hover {
  background-color: #f9f9f9;
}
.ms__message-modal {
  display: none;
  position: fixed;
  width: 700px;
  height: auto;
  background: #fff;
  border-radius: 5px;
  margin-left: -350px;
  left: 50%;
  top: 100px;
  z-index: 9999;
  -webkit-box-shadow: 3px 17px 30px 0px rgba(50, 50, 50, 0.67);
  -moz-box-shadow:    3px 17px 30px 0px rgba(50, 50, 50, 0.67);
  box-shadow:         3px 17px 30px 0px rgba(50, 50, 50, 0.67);
}
 
.ms__message-modal.modal-open {
  display: block;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalShow;
  animation-name: modalShow;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.ms__no-animation .ms__modal {
  animation: none !important;
  animation-duration: 0 !important;
  animation-name: none !important;
}
.ms__message-modal h2 {
  padding: 0 40px;
}
.ms__message-modal .bottom-bar {
  background: #fff;
  padding: 15px 40px;
  text-align: right;
}
.ms__message-modal .bottom-bar .btn-default {
  display: inline-block;
}
.ms__saved-address {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 1px;
  width: 100%;
  display: inline-block;
}
 
.ms__saved-address:hover, .ms__saved-address.selected {
  background: #f7f7f7;
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 40px #e6e6e6;
  -moz-box-shadow: inset 0 0 40px #e6e6e6;
  box-shadow: inset 0 0 40px #e6e6e6;
}
.ms__saved-address:active, .ms__saved-address:focus {
  background: #ececec;
  -webkit-box-shadow: inset 0 0 40px #e6e6e6;
  -moz-box-shadow: inset 0 0 40px #e6e6e6;
  box-shadow: inset 0 0 40px #e6e6e6;
}
.ms__saved-address p {
  margin: 0;
}
.ms__custom-address input {
  padding: 10px 18px;
  width: 100%;
  margin-bottom: 5px;
}
.ms__custom-address select {
  padding: 10px 18px;
  width: 100%;
  margin-bottom: 5px;
}
.ms__tab {
  display: none;
}
.ms__tab.active {
  display: block;
}
.ms__line .error {
  border: 1px solid red;
  color: red;
}
.ms__shipping-rate-container {
  padding: 15px;
  border: 1px solid #f9f9f9;
  margin: 5px 0;
  background: #f9f9f9;
}
.ms__shipping-rate-container label {
  margin: 5px;
}
.ms__rate-list ul {
  list-style: none;
}
.ms__rate-list ul li label {
  float: left;
} */
/* -------------------------------
End Multiship Scripts ----------
---------------------------------*/
/******** Custom css **********/
.container {
  padding: 0 40px; }

.flex-bottom {
  display: flex;
  align-items: flex-end; }

.flex-center {
  display: flex;
  align-items: center; }

.container-space {
  padding: 0 40px; }

.container-space30 {
  padding: 0 30px; }

/*********** Animation **************/
.animate {
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0; }

.about-section {
  transform: matrix(1, 0, 0, 1, 0, 100); }

.intro-section {
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0; }

.owl-dots {
  position: absolute;
  bottom: -45px;
  left: 0;
  text-align: center;
  right: 0;
  transform: rotate(90deg); }

.owl-carousel button.owl-dot {
  background: #a6a6a6;
  border: none;
  padding: 0 !important;
  width: 6px;
  margin: 8px auto;
  height: 6px;
  border-radius: 100%;
  display: block; }
  .owl-carousel button.owl-dot.active {
    width: 10px;
    height: 10px; }

/************** Footer ***************/
.footer .instafeed {
  text-align: center;
  margin-bottom: 32px;
  display: none; }
  .footer .instafeed img {
    display: block; }
  .footer .instafeed .row {
    margin: 0 -5px; }
  .footer .instafeed .top-heading-big {
    font-family: 'Cormorant Garamond, serif';
    font-style: italic;
    margin-bottom: 35px;
    letter-spacing: 0; }
  .footer .instafeed .top-heading-small {
    margin-bottom: 20px;
    text-transform: uppercase; }

.site-footer {
  background: #f2efeb;
  padding: 60px 0 20px 0;
  position: relative;
  border-top: 0.5px solid #d5cbbf; }
  .site-footer .footer-title {
    font-family: "Proxima Nova Regular";
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.229em;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #4a453f; }
  .site-footer .fmenu-follow {
    /*border-right: 1px solid rgba(166,168,171,0.25);*/ }
  .site-footer .footer-menu {
    position: relative;
    padding-left: 10px;
    /*&:after{
      content: "";
      position: absolute;
      top: 0;
      height: 100%;
      width: 1px;
      background: rgba(166,168,171,0.25);
      right: 0;
    }*/ }
    .site-footer .footer-menu ul li {
      display: block; }
      .site-footer .footer-menu ul li a {
        font-family: "Proxima Nova Regular";
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: normal;
        color: #4a453f;
        text-transform: uppercase; }
  .site-footer .follow {
    position: relative;
    text-align: center;
    padding-bottom: 30px;
    /*&:after{
      content: "";
      position: absolute;
      top: 0;
      height: 100%;
      width: 2px;
      background: #A6A8AB;
      right: 0;
      opacity: 0.25;
    }*/ }
    .site-footer .follow ul {
      margin-top: 60px; }
      .site-footer .follow ul li {
        display: inline-block;
        margin: 0 7px; }
        .site-footer .follow ul li a {
          color: #4a453f; }
          .site-footer .follow ul li a:hover {
            color: #bcb3aa; }
          .site-footer .follow ul li a svg #Social-Icons {
            fill: #4a453f; }
            .site-footer .follow ul li a svg #Social-Icons:hover {
              fill: #bcb3aa; }
  .site-footer svg.icon.icon-twitter {
    vertical-align: top; }
  .site-footer .copyright {
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.6px;
    clear: both;
    width: 100%;
    text-align: center;
    font-family: "Proxima Nova Regular";
    font-weight: 300; }
  .site-footer .subscribe-form-container {
    width: 65%;
    min-width: 280px;
    float: right;
    margin-right: 10px; }

.subscribe-form {
  position: relative; }
  .subscribe-form input[type="email"] {
    width: 100%;
    padding-left: 0;
    letter-spacing: 0.062em;
    margin-bottom: 10px; }
    .subscribe-form input[type="email"]::-webkit-input-placeholder {
      color: #4a453f;
      opacity: 0.4;
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; }
    .subscribe-form input[type="email"]::-moz-placeholder {
      color: #4a453f;
      opacity: 0.4;
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; }
    .subscribe-form input[type="email"]:-ms-input-placeholder {
      color: #4a453f;
      opacity: 0.4;
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; }
    .subscribe-form input[type="email"]:-moz-placeholder {
      color: #4a453f;
      opacity: 0.4;
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; }
  .subscribe-form input[type="submit"] {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    background: transparent;
    color: #4a453f;
    position: absolute;
    right: 0;
    padding-right: 0;
    top: 0;
    font-size: 16px;
    text-transform: lowercase;
    padding: 5px 0;
    margin-right: 0; }

.intro-slideshow {
  padding: 0 40px; }

.second-container {
  max-width: 800px;
  margin: 0 auto; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #EAE5DF inset;
  -webkit-text-fill-color: #4a453f; }

/********* Home page ***********/
.intro-slider-container, .mobile-intro-slider-container {
  transform: matrix(1, 0, 0, 1, 0, 60); }
  .intro-slider-container .overlay-box .overlay-content, .mobile-intro-slider-container .overlay-box .overlay-content {
    transform: matrix(1, 0, 0, 1, 0, 80); }

.gift-stories .content {
  transform: matrix(1, 0, 0, 1, 0, 60); }
.gift-stories .first-box {
  transform: matrix(1, 0, 0, 1, 0, 60); }

.intro-slider-container, .mobile-intro-slider-container {
  padding: 0 65px 65px;
  /*transform: matrix(1, 0, 0, 1, 0, 60);*/ }
  .intro-slider-container .owl-dots, .mobile-intro-slider-container .owl-dots {
    position: absolute;
    bottom: auto;
    left: auto;
    text-align: right;
    right: -35px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg); }
  .intro-slider-container .owl-carousel button.owl-dot, .mobile-intro-slider-container .owl-carousel button.owl-dot {
    margin: 8px auto;
    display: block; }
  .intro-slider-container .slide-item, .mobile-intro-slider-container .slide-item {
    position: relative; }
    .intro-slider-container .slide-item .overlay-box, .mobile-intro-slider-container .slide-item .overlay-box {
      position: absolute;
      top: 50%;
      left: 70%;
      transform: translateY(-50%) translateX(-20%); }
      .intro-slider-container .slide-item .overlay-box .overlay-content, .mobile-intro-slider-container .slide-item .overlay-box .overlay-content {
        max-width: 310px;
        /*transform: matrix(1, 0, 0, 1, 0, 80); */ }
      .intro-slider-container .slide-item .overlay-box .h1, .mobile-intro-slider-container .slide-item .overlay-box .h1 {
        margin-left: -5px; }

.gift-stories {
  background: #BDBEB9;
  color: #fff;
  padding: 110px 0px 60px 0px;
  margin-bottom: 40px; }
  .gift-stories .top-heading-small {
    margin-bottom: 30px;
    color: #fff; }
  .gift-stories .content {
    /*transform: matrix(1, 0, 0, 1, 0, 60); */ }
    .gift-stories .content p {
      color: #fff; }
  .gift-stories .link-button {
    width: 100%;
    margin-top: 30px;
    background: #C8C9C5;
    color: #fff;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1); }
    .gift-stories .link-button:hover {
      background: #ffffff;
      color: #A49179; }
  .gift-stories .first-box {
    padding-right: 100px;
    /*transform: matrix(1, 0, 0, 1, 0, 60);*/ }

.favorites-container {
  padding: 0 50px 40px;
  text-align: center; }
  .favorites-container .row {
    margin: 0 -10px; }
  .favorites-container h3, .favorites-container .h3 {
    margin-bottom: 40px;
    color: #B7986E; }
  .favorites-container img {
    width: 100%; }

.half-slider-container {
  background: #F6F4F2;
  padding: 50px 0;
  margin: 40px 0 0;
  text-align: center; }
  .half-slider-container .owl-dots {
    bottom: -77px; }
  .half-slider-container .row {
    margin: 0 -10px; }
  .half-slider-container .text {
    margin-top: 95px; }
  .half-slider-container h3, .half-slider-container .h3 {
    color: #B7986E;
    margin-bottom: 0; }
  .half-slider-container .link-button {
    background: transparent;
    padding-bottom: 0; }
  .half-slider-container .link-button2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic; }
  .half-slider-container .owl-nav {
    display: none; }

.half-layout {
  padding: 50px 50px; }
  .half-layout .half-layouts {
    display: flex;
    align-items: center; }
    .half-layout .half-layouts .content-box {
      padding: 0 100px 0 100px; }
      .half-layout .half-layouts .content-box .top-heading-small {
        margin-bottom: 12px; }
      .half-layout .half-layouts .content-box p {
        color: #4a453f;
        font-size: 19px; }
    .half-layout .half-layouts h2, .half-layout .half-layouts .h2 {
      color: #4a453f;
      margin-bottom: 35px; }
    .half-layout .half-layouts img {
      width: 100%; }
  .half-layout.second {
    background: #F6F4F2; }

.featured-logos {
  padding-top: 40px; }
  .featured-logos h3, .featured-logos .h3 {
    font-size: 24px;
    text-align: center;
    font-style: italic;
    color: #B7986E; }
  .featured-logos .featured-container {
    margin: 0 auto 30px;
    max-width: 1200px; }
    .featured-logos .featured-container img {
      padding: 0 100px; }

.second-last {
  background: #BDBEB9;
  padding: 65px 50px 50px;
  margin-bottom: 50px;
  color: #ffffff; }
  .second-last .row {
    margin: 0 -20px; }
  .second-last .text-box {
    padding-left: 20px; }
    .second-last .text-box .top-heading-small {
      color: #ffffff;
      font-size: 14px;
      margin-bottom: 40px; }
    .second-last .text-box .h1 {
      color: #ffffff; }
  .second-last .sub-heading {
    font-size: 23px;
    line-height: 2.1;
    text-align: center;
    margin-top: 10px;
    /*margin-bottom: 16px;*/
    margin-bottom: 0; }
  .second-last .owl-nav {
    display: none; }
  .second-last .owl-dots {
    left: auto;
    right: 20px;
    bottom: auto;
    top: 45%;
    transform: translateY(-50%); }
  .second-last .owl-carousel button.owl-dot {
    background: #ffffff; }
  .second-last .two-img-slider {
    /*padding: 0 80px;*/
    padding: 0 60px 0 100px; }
  .second-last .owl-carousel .owl-item img {
    padding: 10px; }

label[for="ms__toggle-shipping"] {
  font-weight: 600; }

/********************* About page **************/
.about-page h2, .about-page .h2 {
  margin-bottom: 25px; }
.about-page img {
  width: 100%;
  display: block; }
.about-page .about-second {
  padding: 0 20px 60px; }
  .about-page .about-second .content-box {
    margin-bottom: 20px;
    max-width: 520px;
    margin: 0 auto; }
.about-page .about-image {
  background: #ffffff;
  margin-top: -65px; }
  .about-page .about-image img {
    padding: 20px; }
.about-page .about-third {
  background: #F6F4F2;
  padding: 50px;
  margin-bottom: 50px; }
  .about-page .about-third .content-box {
    /*padding: 0 20px;*/
    max-width: 520px;
    margin: 0 auto; }
.about-page .content {
  max-width: 520px; }

.product-template__container .breadcrumb-navigation {
  margin: 10px 0;
  grid-area: breadcrumb; }
  @media (min-width: 750px) {
    .product-template__container .breadcrumb-navigation {
      padding-left: 5.5%; } }
  @media (min-width: 1000px) {
    .product-template__container .breadcrumb-navigation {
      padding-left: 8.5%; } }
  @media (min-width: 1500px) {
    .product-template__container .breadcrumb-navigation {
      padding-left: 9%; } }
  .product-template__container .breadcrumb-navigation span:last-child {
    cursor: pointer;
    font-style: italic; }
.product-template__container .product-single__meta {
  padding-top: 30px; }
  @media (min-width: 750px) {
    .product-template__container .product-single__meta {
      padding: 30px 40px 0; } }
  .product-template__container .product-single__meta h3, .product-template__container .product-single__meta .h3 {
    color: #4a453f;
    margin-bottom: 12px; }
  .product-template__container .product-single__meta .product-item-count {
    text-align: center;
    margin-bottom: 5px; }
    @media (min-width: 750px) {
      .product-template__container .product-single__meta .product-item-count {
        text-align: left; } }
  .product-template__container .product-single__meta .product-price {
    text-align: center;
    font-family: 'Proxima Nova Regular';
    font-size: 16px; }
    @media (min-width: 750px) {
      .product-template__container .product-single__meta .product-price {
        text-align: left; } }
  .product-template__container .product-single__meta .product-single__price .product-price__price {
    font-width: normal;
    letter-spacing: 1.2px;
    font-size: 13px;
    color: #4a453f; }
  .product-template__container .product-single__meta .product-single__description {
    font-family: 'Cormorant Garamond', serif;
    color: #4a453f;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal; }

.related-products {
  background: #BDBEB9;
  padding: 40px 0;
  text-align: center;
  color: #ffffff;
  margin: 50px 0 20px; }
  .related-products h3, .related-products .h3 {
    color: #ffffff;
    margin-bottom: 38px; }
  .related-products .home-product-price .product-price__price {
    color: #ffffff !important; }
  .related-products .row {
    margin: 0 -10px; }
  .related-products a {
    color: #ffffff; }
  .related-products .grid-view-item__image-wrapper:hover .overlay {
    opacity: 1; }

.drophint-link img {
  display: none !important; }
.drophint-link span {
  padding-left: 0 !important; }

.home-product-box {
  position: relative; }
  .home-product-box h5, .home-product-box .h5 {
    margin: 17px 0 5px; }
  .home-product-box .home-product-price {
    position: absolute;
    left: 0;
    text-align: center;
    right: 0;
    opacity: 0;
    transition: all 0.4s ease; }

.home-product-box:hover .home-product-price {
  opacity: 1; }

.swatch-element {
  position: relative; }
  .swatch-element input[type="radio"] {
    display: none; }
  .swatch-element label:before {
    content: "";
    background: url(//simoneleblanc.com/cdn/shop/t/182/assets/active_copy.svg?v=33691354599027545131701727705) no-repeat;
    background-size: 14px 14px;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 2px; }
  .swatch-element input[type=radio]:checked + label:before {
    content: "";
    background: url(//simoneleblanc.com/cdn/shop/t/182/assets/active.svg?v=66623463756780648891701727706) no-repeat;
    background-size: 14px 14px;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 2px; }

/******************** Press *************/
.press-page {
  /*transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0; */ }
  .press-page .row {
    margin: 0 -16px;
    padding: 0 50px; }
    .press-page .row .col-4 {
      width: 33.033%; }
    .press-page .row .col {
      float: none;
      display: inline-block; }
  .press-page .article__grid-meta {
    margin-bottom: 30px; }
  .press-page .new-container {
    padding: 40px 50px 35px; }
    .press-page .new-container:nth-of-type(2n) {
      background-color: #F6F4F2; }
    .press-page .new-container:first-child {
      padding-top: 0; }
  .press-page .article__grid-excerpt {
    font-size: 14px; }
  .press-page .link-button {
    background: transparent;
    padding: 0;
    margin-top: 0;
    text-transform: lowercase;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0;
    font-size: 16px; }
  .press-page .bottom-section {
    background-color: #BDBEB9;
    color: #ffffff;
    padding: 65px 0;
    margin-bottom: 20px; }
    .press-page .bottom-section .bottom-container {
      max-width: 520px;
      margin: 0 auto;
      text-align: center; }
      .press-page .bottom-section .bottom-container h2, .press-page .bottom-section .bottom-container .h2 {
        line-height: 1.1; }
      .press-page .bottom-section .bottom-container .top-heading-big {
        color: #ffffff;
        text-align: center; }
    .press-page .bottom-section a {
      text-transform: uppercase;
      color: #ffffff; }

/********** Collapsable ***************/
.description {
  display: none; }

.product-info {
  font-size: 13px;
  font-family: "Proxima Nova Regular";
  letter-spacing: 0.08em;
  margin: 0 0 0 0;
  padding: 0;
  width: 100%; }
  .product-info ul {
    margin: 0;
    padding-left: 20px;
    list-style: none; }
    .product-info ul li:before {
      content: '\2022';
      color: #000;
      font-size: 20px;
      line-height: 1; }

.desc-container {
  margin-bottom: 0px;
  border-top: 0px solid rgba(166, 168, 171, 0.25); }
  .desc-container:last-child {
    border-bottom: 0px solid rgba(166, 168, 171, 0.25); }

.desc-container h4, .desc-container .h4 {
  margin: 0;
  cursor: pointer; }

.desc-container .description {
  letter-spacing: 0.08em;
  padding: 10px 0 20px; }
  .desc-container .description .text-content {
    letter-spacing: 0;
    font-size: 15px; }
  .desc-container .description p {
    color: #4a453f; }

.desc-container .description ul li:before {
  margin-right: 3px; }

.collapse-title {
  font-family: "Proxima Nova Regular";
  margin: 0;
  color: #4a453f;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 0 12px 0;
  margin-top: 30px; }
  .collapse-title .plus {
    padding-left: 22px;
    float: right;
    position: relative;
    text-indent: -9999px;
    margin-right: 10px; }
    .collapse-title .plus:after {
      content: "";
      background: url(//simoneleblanc.com/cdn/shop/t/182/assets/arrow-down.png?v=3798038142205041301701727707) no-repeat;
      left: 15px;
      position: absolute;
      text-indent: 0;
      width: 16px;
      height: 10px;
      top: 4px; }

.collapse-title .plus.minus {
  position: relative;
  text-indent: -9999px; }

.collapse-title .plus.minus::after {
  content: "";
  background: url(//simoneleblanc.com/cdn/shop/t/182/assets/arrow-down.png?v=3798038142205041301701727707) no-repeat;
  left: 15px;
  position: absolute;
  text-indent: 0;
  width: 16px;
  height: 10px;
  top: 4px; }

.text-content {
  font-family: 'Cormorant Garamond', serif; }

.template-product #PageContainer {
  margin-top: 10px; }

/*************** Journal page ****************/
.pull-right {
  float: right; }

.cat-date {
  margin-bottom: 22px; }
  .cat-date .category {
    font-family: "Proxima Nova Regular";
    font-size: 10px;
    letter-spacing: 0.202em;
    line-height: 1.2;
    text-transform: uppercase;
    display: none; }
    .cat-date .category:after {
      content: "|";
      margin: 0 10px; }

.journal-page h3, .journal-page .h3 {
  color: #B7986E; }
.journal-page a {
  color: #B7986E; }
.journal-page .content {
  color: #4a453f; }
.journal-page .latest-slider-container {
  padding: 0 50px 50px 50px; }
  .journal-page .latest-slider-container .left-content {
    padding: 0 50px; }
.journal-page .owl-nav {
  margin-left: 50px;
  position: absolute;
  bottom: 8px; }
.journal-page .owl-prev, .journal-page .owl-next {
  position: static; }
  .journal-page .owl-prev span, .journal-page .owl-next span {
    position: static; }
.journal-page .owl-next {
  right: 0; }
  .journal-page .owl-next span {
    right: auto;
    margin-left: 40px; }
.journal-page .news-subscribe {
  background: #BDBEB9;
  padding: 30px 65px; }
  .journal-page .news-subscribe .news-subscribe-heading {
    font-family: "Proxima Nova Regular";
    font-size: 17px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.305em;
    margin-top: 12px; }
.journal-page .subscribe-form {
  margin: 0; }
  .journal-page .subscribe-form input[type="submit"] {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    right: 0;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.062em; }
  .journal-page .subscribe-form input[type="email"] {
    padding: 5px 0;
    color: #ffffff;
    border-bottom: 1px solid #ffffff; }
    .journal-page .subscribe-form input[type="email"]::-webkit-input-placeholder {
      color: #ffffff;
      opacity: 1; }
    .journal-page .subscribe-form input[type="email"]::-moz-placeholder {
      color: #ffffff;
      opacity: 1; }
    .journal-page .subscribe-form input[type="email"]:-ms-input-placeholder {
      color: #ffffff;
      opacity: 1; }
    .journal-page .subscribe-form input[type="email"]:-moz-placeholder {
      color: #ffffff;
      opacity: 1; }
.journal-page .listing {
  padding: 80px 50px 0; }
  .journal-page .listing .list-box {
    margin-bottom: 70px; }
    .journal-page .listing .list-box img {
      width: 100%;
      display: block; }
.journal-page .list-content {
  padding-left: 55px; }
.journal-page .categories {
  text-align: center; }
  .journal-page .categories .heading {
    font-family: "Proxima Nova Regular";
    font-size: 15px;
    color: #B7986E;
    line-height: 1.15;
    letter-spacing: 0.303em;
    padding: 30px 0 10px; }
  .journal-page .categories li a {
    font-family: "Proxima Nova Regular";
    font-size: 11px;
    line-height: 4;
    letter-spacing: 0.229em;
    text-transform: uppercase;
    color: #4a453f; }
.journal-page .border-right {
  position: relative; }
  .journal-page .border-right:after {
    position: absolute;
    content: "";
    height: 100%;
    background: rgba(166, 168, 171, 0.25);
    width: 2px;
    right: -70px;
    top: 0; }

.journal-detail {
  position: relative; }
  .journal-detail .social-sharing {
    position: absolute;
    top: 180px;
    right: 70px; }
    .journal-detail .social-sharing .top-heading-small {
      color: #B7986E;
      text-transform: uppercase;
      margin-bottom: 15px; }
  .journal-detail .intro-sec {
    background: #F6F4F2;
    padding-top: 60px;
    margin-bottom: 30px; }
  .journal-detail .jdetail-container {
    max-width: 720px;
    margin: 0 auto; }
    .journal-detail .jdetail-container img {
      display: block; }
    .journal-detail .jdetail-container .next-prev {
      margin-bottom: 75px;
      text-align: center; }
      .journal-detail .jdetail-container .next-prev img {
        display: inline-block;
        vertical-align: top;
        margin-top: 1px; }
      .journal-detail .jdetail-container .next-prev .top-heading-small {
        color: #4a453f;
        text-transform: uppercase;
        display: inline-block; }
        .journal-detail .jdetail-container .next-prev .top-heading-small span {
          display: inline-block;
          vertical-align: top;
          margin: 0 5px; }
      .journal-detail .jdetail-container .next-prev span.line {
        display: inline-block;
        width: 80px;
        height: 1px;
        background: rgba(166, 168, 171, 0.25);
        vertical-align: middle;
        margin: 0 22px; }
      .journal-detail .jdetail-container .next-prev .next-post span {
        margin: 0 3px 0 0; }
    .journal-detail .jdetail-container .top-heading {
      margin-bottom: 30px; }
      .journal-detail .jdetail-container .top-heading h3, .journal-detail .jdetail-container .top-heading .h3 {
        font-size: 37px;
        color: #B7986E;
        margin-left: 49px;
        position: relative; }
        .journal-detail .jdetail-container .top-heading h3:after, .journal-detail .jdetail-container .top-heading .h3:after {
          position: absolute;
          content: "";
          width: 1px;
          height: 100%;
          left: -30px;
          background: rgba(166, 168, 171, 0.25);
          top: 0; }
    .journal-detail .jdetail-container .text {
      padding: 50px 70px; }
  .journal-detail .shop-post {
    background: #F6F4F2;
    padding: 25px 0;
    margin-bottom: 50px;
    text-align: center; }
    .journal-detail .shop-post h3, .journal-detail .shop-post .h3 {
      margin-bottom: 30px;
      color: #B7986E; }
    .journal-detail .shop-post .row {
      margin: 0 -10px; }
    .journal-detail .shop-post .sub-heading {
      font-size: 18px;
      line-height: 2.1;
      text-align: center;
      margin-top: 10px;
      color: #787878; }
  .journal-detail .suggested-story {
    background: #BDBEB9;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 20px; }
    .journal-detail .suggested-story h3, .journal-detail .suggested-story .h3 {
      margin-bottom: 40px;
      color: #ffffff; }
    .journal-detail .suggested-story .row {
      margin: 0 -35px; }
    .journal-detail .suggested-story .sub-heading {
      font-size: 21px;
      line-height: 1.3;
      text-align: center;
      margin-top: 0;
      color: #ffffff; }
      .journal-detail .suggested-story .sub-heading a {
        color: #ffffff; }
    .journal-detail .suggested-story .cat-date {
      color: #4F4F4F;
      margin: 10px 0 0; }

.menu-slider .owl-nav {
  position: absolute;
  text-align: 0;
  top: 35%;
  width: 100%; }
.menu-slider .owl-prev {
  position: static;
  top: 0;
  left: 0;
  transform: initial; }
.menu-slider .owl-next {
  position: static;
  top: 0;
  right: 0;
  transform: initial;
  z-index: 99999; }
.menu-slider .owl-prev span {
  left: -28px; }

/************* Monogram ***********/
.swatch-element.petit, .swatch-element.short, .swatch-element.tall {
  display: inline-block;
  padding: 0 30px; }

.swatch {
  margin: 20px 0; }
  .swatch .swatches-header {
    margin-bottom: 10px; }

.monogram-container {
  margin-top: 40px; }

/******************* Common page ******************/
.common-pages {
  padding-top: 50px; }
  .common-pages .page-content {
    max-width: 700px; }
    .common-pages .page-content h3, .common-pages .page-content .h3 {
      text-transform: none;
      color: #B7986E; }
    .common-pages .page-content h6, .common-pages .page-content .h6 {
      margin: 30px 0 20px;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.05em;
      color: #788188; }
  .common-pages .breadcrumb-navigation {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 14px; }
    .common-pages .breadcrumb-navigation span.sep {
      display: inline-block;
      padding: 0 10px; }

time {
  font-style: italic; }

.contact-page {
  margin: 20px 0 -50px; }
  .contact-page .contact-content {
    max-width: 700px;
    margin: 0 auto; }
  .contact-page label {
    font-family: "Proxima Nova Regular";
    font-size: 11px;
    letter-spacing: 0.229em;
    text-transform: uppercase;
    margin-bottom: 12px; }
  .contact-page input, .contact-page textarea {
    border: 1px solid #B7986E;
    padding: 8px 10px;
    height: 40px;
    color: #B7986E;
    margin-bottom: 12px; }
  .contact-page textarea {
    height: 100px;
    color: #ACACAC;
    resize: none; }
    .contact-page textarea::-webkit-input-placeholder {
      color: #ACACAC;
      opacity: 1; }
    .contact-page textarea::-moz-placeholder {
      color: #ACACAC;
      opacity: 1; }
    .contact-page textarea:-ms-input-placeholder {
      color: #ACACAC;
      opacity: 1; }
    .contact-page textarea:-moz-placeholder {
      color: #ACACAC;
      opacity: 1; }
  .contact-page .contact-heading {
    margin-bottom: 40px; }
  .contact-page .btn-link {
    font-family: "Proxima Nova Regular";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    border: none;
    letter-spacing: 0.203em;
    padding: 0 30px;
    margin-top: 30px; }
    .contact-page .btn-link.link-button {
      background: #F6F4F2;
      color: #A49179; }
      .contact-page .btn-link.link-button:hover {
        background: #ffffff; }
  .contact-page h2, .contact-page .h2 {
    font-size: 35px; }
  .contact-page .details {
    text-align: center;
    background: #BDBEB9;
    font-family: 'Cormorant Garamond', serif;
    margin-top: 30px;
    color: #ffffff;
    padding: 40px 0 60px;
    font-size: 18px; }
    .contact-page .details h4, .contact-page .details .h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      color: #ffffff;
      margin-top: 42px;
      margin-bottom: 10px; }
    .contact-page .details p {
      color: #ffffff;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; }
    .contact-page .details a {
      text-decoration: none;
      color: #ffffff; }
    .contact-page .details .rte a:not(.btn) {
      border: none; }

.monogram .swatches-header {
  display: none; }
.monogram .description {
  padding-top: 5px; }
.monogram .swatch {
  margin: 0 0 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: normal; }
.monogram .swatch-element {
  display: block;
  margin: 0 0 5px 1px;
  padding: 0; }
  .monogram .swatch-element label span {
    color: #4a453f;
    padding-left: 20px; }

.monogram-passport-cover-luggage-tag-18-00 .color-name {
  line-height: 1.7; }

.line-item-property__field {
  margin-bottom: 3px;
  margin-left: 22px; }
  .line-item-property__field label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 20px;
    letter-spacing: normal;
    color: #4a453f;
    display: inline-block; }
  .line-item-property__field input {
    border: 1px solid #ADADAD;
    color: #4a453f;
    font-size: 10px;
    letter-spacing: 0.273em;
    line-height: 1.2;
    padding: 5px;
    width: 65px;
    text-transform: uppercase;
    margin-left: 5px; }
    .line-item-property__field input::-webkit-input-placeholder {
      color: #4a453f;
      opacity: 1; }
    .line-item-property__field input::-moz-placeholder {
      color: #4a453f;
      opacity: 1; }
    .line-item-property__field input:-ms-input-placeholder {
      color: #4a453f;
      opacity: 1; }
    .line-item-property__field input:-moz-placeholder {
      color: #4a453f;
      opacity: 1; }

.NullsgifDiv {
  position: relative; }

img.NullsgiftWrapImg {
  display: none !important; }

div#NullsGiftWrapTitle {
  margin-left: 25px;
  font-family: "Proxima Nova Regular";
  color: #4a453f;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.273em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 0; }

input#NullsgiftWrap {
  position: absolute !important;
  top: 10px; }

.item-content, .item-img, .item-img2 {
  position: relative; }

.overlay-link {
  position: absolute;
  background: rgba(234, 229, 223, 0.77);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease; }

.custom-price {
  text-align: center;
  line-height: 1;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease; }

.item-content:hover .item-img .overlay-link {
  opacity: 1; }

.item-content:hover .custom-price {
  opacity: 1; }

/*#order-delivery h3 {
    display: none;
}*/
.gift-message__text {
  font-family: "Proxima Nova Regular";
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1.3px;
  color: #4a453f;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  margin-right: 10px;
  margin-left: -10px;
  padding-left: 10px; }

.gift-message__textarea {
  width: 100%;
  height: 100px;
  font-weight: normal;
  min-height: 100px !important;
  resize: none;
  font-size: 16px;
  color: #4a453f;
  line-height: 18px;
  padding: 10px 10px 20px;
  border: 1px solid #DAD5CE;
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-style: italic; }
  .gift-message__textarea::placeholder {
    color: #A68660;
    font-size: 16px; }

.gift-message__textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 1; }

.gift-message__textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1; }

.gift-message__textarea:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1; }

.gift-message__textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1; }

.gift-message__dropdown {
  width: 100%;
  height: 30px;
  border: solid 1px #a49079;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 5px 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4a453f;
  cursor: pointer; }

.gift-message__link {
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0; }

/*.gift-message__dropdown:hover ul{
  display:block;
  z-index:20;
}*/
.gift-message__dropdown .sub {
  display: none;
  position: absolute;
  border: 1px solid #4a453f;
  margin-left: -11px;
  margin-top: -22px;
  margin-right: 10px;
  padding: 0;
  z-index: 10; }

.gift-message__side {
  width: 60%;
  margin: auto;
  display: block;
  padding: 8px 0;
  text-align: center;
  font-family: "Proxima Nova Regular";
  font-size: 10px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #4a453f; }

.sub li:before {
  content: none !important; }

.sub li {
  cursor: pointer; }

.sub .select {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4a453f;
  padding: 5px 10px 15px;
  user-select: none; }

.gift-message__dropdown {
  background-image: linear-gradient(45deg, transparent 50%, #4a453f 50%), linear-gradient(135deg, #4a453f 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em - 1px), calc(100% - 15px) calc(1em - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: white;
  user-select: none; }

.sub {
  background-image: linear-gradient(45deg, #4a453f 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #4a453f 50%);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: white;
  outline: 0; }

.gift-message__dropdown li {
  width: 33.3%;
  float: left;
  background: white;
  border-right: solid 1px rgba(164, 144, 121, 0.17);
  padding: 10px 0;
  margin-bottom: 20px; }

.gift-message__dropdown li:nth-child(4) {
  border-right: none; }

.gift-message__img {
  display: block;
  width: 60%;
  padding: 10px 0;
  margin: 0 auto; }

.gift-message__textarea:focus {
  border: solid 1px #a49079; }

.gift-time {
  margin-top: 30px; }
  .gift-time h3, .gift-time .h3 {
    color: #A49179; }
  .gift-time .char-limit {
    color: #A49179;
    font-style: italic; }
  .gift-time .gift-message {
    padding-right: 150px; }
    .gift-time .gift-message textarea {
      border: 1px solid #e8e9eb;
      background: #ffffff;
      min-height: 90px;
      width: 100%;
      /*resize: none;*/
      padding: 10px; }
  .gift-time .border-right {
    border-right: 1px solid #e8e9eb; }
  .gift-time #order-delivery {
    padding-left: 85px; }
    .gift-time #order-delivery input {
      width: 220px !important; }
      .gift-time #order-delivery input#datepicker {
        padding-bottom: 2px !important; }
    .gift-time #order-delivery span.receive-by, .gift-time #order-delivery .time-spec {
      font-family: "Proxima Nova Regular";
      color: #A49179;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      vertical-align: bottom; }
    .gift-time #order-delivery #loading {
      font-family: "Proxima Nova Regular";
      color: #A49179;
      font-size: 13px;
      letter-spacing: 0.08em; }
    .gift-time #order-delivery select {
      padding-bottom: 2px !important; }

#order-delivery-form-wrapper p:first-child {
  /*display: none;*/ }

div#CustomerLoginForm {
  margin: 80px 0; }

.cats-container {
  position: relative; }
  .cats-container.fixed {
    position: fixed;
    top: 0;
    margin-left: 50px;
    right: 42px; }

div#NullssureGiftWrap {
  display: none !important; }

.cart__continue-btn .icon {
  vertical-align: middle; }

#is-a-gift p:first-child {
  display: none; }

input[type="radio"] {
  vertical-align: middle;
  display: inline-block; }

.form-group {
  position: relative;
  margin-bottom: 10px; }

.subscribe-form-container .footer-title {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 7px; }

#subscribe-result {
  font-family: "Proxima Nova Regular"; }
  #subscribe-result p {
    font-family: "Proxima Nova Regular";
    color: #4a453f; }

#subscribe-form-journ {
  font-family: "Proxima Nova Regular"; }
  #subscribe-form-journ input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #BDBEB9 inset;
    -webkit-text-fill-color: #ffffff; }

.news-subscribe-heading h1, .news-subscribe-heading .h1 {
  color: #ffffff;
  font-size: 45px; }

#subscribe-result-journ p {
  color: #ffffff;
  font-family: "Proxima Nova Regular";
  font-size: 15px;
  letter-spacing: 0.287em;
  line-height: 1.2;
  margin-top: 30px;
  float: right;
  text-transform: uppercase; }

.subscribe-form input[type="email"] {
  padding-bottom: 5px; }

/************** Mobile home page **************/
.mobile-image-text-section {
  display: none; }
  .mobile-image-text-section .image-text-container {
    position: relative; }
    .mobile-image-text-section .image-text-container img {
      display: block; }
    .mobile-image-text-section .image-text-container .overlay-text {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      right: 0;
      text-align: center; }
      .mobile-image-text-section .image-text-container .overlay-text h2, .mobile-image-text-section .image-text-container .overlay-text .h2 {
        font-size: 40px; }
        .mobile-image-text-section .image-text-container .overlay-text h2 a, .mobile-image-text-section .image-text-container .overlay-text .h2 a {
          color: #ffffff;
          display: inline-block;
          max-width: 240px;
          margin: 0 auto; }

.mobile-text-section {
  display: none;
  margin-top: 25px; }
  .mobile-text-section h2, .mobile-text-section .h2 {
    font-size: 40px;
    margin-bottom: 28px; }
  .mobile-text-section .gift-stories {
    padding: 30px 0 40px;
    margin: 0 -20px; }
    .mobile-text-section .gift-stories .link-button {
      font-size: 15px;
      margin-top: 10px; }
  .mobile-text-section .content {
    padding: 0 40px 18px; }
  .mobile-text-section .second-container {
    padding: 0 15px; }
  .mobile-text-section .top-heading-small {
    margin-bottom: 28px; }

.mobile-featured-in .featured-logos .featured-container img {
  padding: 0 6px; }

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: none !important;
  color: #4a453f !important;
  background: #d6cec3 !important; }

.ui-widget-content, #ui-datepicker-div th {
  border-radius: 0 !important;
  color: #4a453f !important;
  font-family: "Proxima Nova Regular" !important;
  font-weight: normal !important; }

.ui-widget-content {
  border: 2px solid #e8e9eb !important; }

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  background: #d6cec3 !important;
  border: none !important; }

.ui-datepicker table {
  font-size: 0.8em !important; }

.ui-datepicker td span, .ui-datepicker td a {
  text-align: center !important;
  padding: 5px 3px !important; }

.ui-datepicker td {
  padding: 3px !important; }

.ui-widget-header {
  background: #d6cec3 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important; }

.ui-datepicker {
  padding: 5px !important; }

.cart__continue--large {
  margin-right: 10px;
  line-height: normal;
  text-transform: uppercase;
  padding: 0;
  letter-spacing: 2.2px;
  font-weight: 600;
  color: #4a453f;
  font-family: "Proxima Nova Regular";
  margin-bottom: 20px;
  font-size: 11px;
  background-color: transparent; }

.cart-instructions {
  margin-right: 90px; }

.note-detail {
  padding-top: 25px;
  margin-right: 45px; }
  .note-detail textarea {
    border: 1px solid #e8e9eb;
    /*resize: none;*/
    min-height: 90px;
    padding: 10px; }

.subtotal-price, .cart__shipping {
  color: #4a453f;
  height: auto !important; }

.subtotal-price {
  clear: both; }

.ui-widget-content .ui-icon {
  background: url("//simoneleblanc.com/cdn/shop/t/182/assets/cal-triangle.png?v=18244813509983738731701727706") !important; }

.ui-datepicker-next .ui-icon {
  transform: rotate(180deg) !important; }

.ui-icon {
  width: 10px !important;
  height: 14px !important; }

.ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-next {
  right: 0 !important;
  top: 2px !important; }

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-prev {
  left: 0 !important;
  top: 2px !important; }

.ui-widget-header .ui-state-hover {
  border: none !important;
  background: transparent !important;
  color: transparent !important; }

span.ui-datepicker-year {
  display: none !important; }

span.ui-datepicker-month {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: normal; }

.additional-checkout-buttons {
  /*  display: none; */ }

div#shopify-section-cart-template {
  margin: 30px 0 0 0; }

.cart td.cart__price-wrapper.cart-flex-item {
  display: none; }

.cart__row th:nth-child(2) {
  display: none; }

.cart__qty input {
  width: 45px;
  text-align: center;
  padding-left: 0px; }

td.text-right.total-pr {
  color: #A49179; }

.popup-container {
  background: rgba(189, 190, 185, 0.8);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 99999; }
  .popup-container .popup-container-inner {
    background: #ffffff;
    position: fixed;
    width: 620px;
    height: 440px;
    padding: 10px 10px;
    top: 12%;
    margin: 0 auto;
    left: 0;
    right: 0; }
    .popup-container .popup-container-inner .close-btn {
      position: absolute;
      right: 25px;
      top: 25px; }
    .popup-container .popup-container-inner .content-box {
      background: #EAE5DF;
      height: 300px;
      width: 660px;
      text-align: center; }
      .popup-container .popup-container-inner .content-box .inner-content {
        max-width: 400px;
        margin: 0 auto; }
        .popup-container .popup-container-inner .content-box .inner-content h1, .popup-container .popup-container-inner .content-box .inner-content .h1 {
          padding-top: 48px; }
        .popup-container .popup-container-inner .content-box .inner-content .text {
          color: #A49179;
          font-family: "Proxima Nova Regular";
          font-size: 15px;
          margin-top: 52px; }
        .popup-container .popup-container-inner .content-box .inner-content .bottom-text {
          color: #A49179;
          font-family: "Proxima Nova Regular";
          font-size: 15px;
          margin-top: 32px;
          letter-spacing: 0.303em;
          text-transform: uppercase; }
    .popup-container .popup-container-inner .subscribe-form {
      max-width: 460px;
      margin: 50px auto 0; }
      .popup-container .popup-container-inner .subscribe-form input[type="submit"] {
        color: #818181;
        padding: 3px 0; }
      .popup-container .popup-container-inner .subscribe-form input[type="email"] {
        padding: 5px 0;
        color: #818181;
        border-bottom: 1px solid #818181; }
        .popup-container .popup-container-inner .subscribe-form input[type="email"]:-webkit-autofill {
          -webkit-box-shadow: 0 0 0 30px white inset; }
        .popup-container .popup-container-inner .subscribe-form input[type="email"]::-webkit-input-placeholder {
          color: #818181;
          opacity: 1; }
        .popup-container .popup-container-inner .subscribe-form input[type="email"]::-moz-placeholder {
          color: #818181;
          opacity: 1; }
        .popup-container .popup-container-inner .subscribe-form input[type="email"]:-ms-input-placeholder {
          color: #818181;
          opacity: 1; }
        .popup-container .popup-container-inner .subscribe-form input[type="email"]:-moz-placeholder {
          color: #818181;
          opacity: 1; }

.faq-page {
  padding: 50px 0 50px 140px;
  max-width: 650px; }
  .faq-page .order-shipping {
    padding-bottom: 40px; }
  .faq-page h3, .faq-page .h3 {
    font-size: 35px; }
  .faq-page .ques-ans {
    font-size: 16px; }
    .faq-page .ques-ans .ques {
      margin-bottom: 18px; }
    .faq-page .ques-ans .answer {
      display: none;
      padding-bottom: 25px; }

.career-page .top-section {
  text-align: center;
  background: #f6f4f2;
  padding: 35px 0 50px; }
  .career-page .top-section h3, .career-page .top-section .h3 {
    font-size: 35px;
    color: #B7986E; }
  .career-page .top-section .text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-top: 35px;
    color: #A4A4A4; }
  .career-page .top-section .link-button {
    font-family: "Proxima Nova Regular";
    font-size: 15px;
    padding: 10px 35px;
    background: #FFFFFF;
    color: #B7986E;
    margin-top: 40px; }
    .career-page .top-section .link-button:hover {
      background: transparent; }
.career-page .page-content {
  max-width: 650px;
  padding: 60px 0 90px 140px; }
  .career-page .page-content h3, .career-page .page-content .h3 {
    color: #B1A380; }

.press-detail .desktop-share {
  display: none; }

.journal-detail.press-detail .jdetail-container .top-heading h3, .journal-detail.press-detail .jdetail-container .top-heading .h3 {
  margin: 0; }
  .journal-detail.press-detail .jdetail-container .top-heading h3:after, .journal-detail.press-detail .jdetail-container .top-heading .h3:after {
    display: none; }

.link-button.second-button {
  letter-spacing: 0;
  z-index: 9;
  position: relative;
  margin-top: 20px;
  padding: 0; }

.product-single__photos {
  padding-right: 0px;
  padding-left: 0px; }

.mobile-p-slider {
  display: none !important; }

/***************** Media query *****************/
.mobile-intro-slider-container, .mobile-featured-in, .mobile-footer, .mobile-counts, .hamburger-menu, .sub-nav, .mobile-pdetail, .mobile-share,
.mobile-gift-banner, .mobile-categories, .about-mobile-section, .mobile-c-banner {
  display: none; }

@media screen and (max-width: 1100px) {
  .featured-logos .featured-container img {
    padding: 0 35px; }

  h1, .h1 {
    font-size: 45px; }

  h2, .h2 {
    font-size: 36px; }

  h3, .h3 {
    font-size: 27px; } }
@media screen and (max-width: 901px) {
  .product-form__cart-submit {
    line-height: 1.1; }

  .second-container {
    padding: 0 30px; }

  .favorites-container {
    padding: 0 30px 15px; }

  .intro-slider-container {
    padding: 0 30px 40px; }

  .intro-slider-container .owl-dots {
    right: -18px; }

  .half-layout {
    padding: 40px 30px; }

  .half-layout .half-layouts .content-box {
    padding: 0 0 0 30px; }

  .half-layout.second .half-layouts .content-box {
    padding: 0 30px 0 0; }

  .second-last .text-box {
    padding-left: 10px; }

  .second-last {
    padding: 45px 30px 35px;
    margin-bottom: 40px; }
    .second-last .row {
      margin: 0 -10px; }
    .second-last .pad20 {
      padding: 0 10px; }
    .second-last .two-img-slider {
      padding: 0 60px; }

  .shopify-section.index-section-3 + .featured-in + .mobile-featured-in {
    display: inline-block;
    width: 100%; }

  .featured-logos h3, .featured-logos .h3 {
    margin-bottom: 20px; }

  .site-footer .row .col-5 {
    width: 25%; }
  .site-footer .row .col-4 {
    width: 40%; }
  .site-footer .row .col-3 {
    width: 35%; }

  .featured-logos .featured-container {
    text-align: center; }
    .featured-logos .featured-container img {
      max-height: 42px; }

  .gift-stories {
    padding: 60px 0; }

  .article__title {
    font-size: 22px; }

  .press-page .pad16 {
    padding: 0 10px; }
  .press-page .row {
    margin: 0 -10px;
    padding: 0 30px; }
    .press-page .row .col-4 {
      width: 32.963%; } }
@media screen and (max-width: 901px) {
  .bold_option_value_swatch {
    min-heigth: 100px; }
    .bold_option_value_swatch span {
      background-size: cover !important; }

  .site-nav > li:first-of-type:hover ~ li {
    opacity: 1; }

  .site-nav li:first-child:hover:after {
    content: none; }

  .menus-ul:first-child {
    margin-right: 0 !important; }

  .main-content {
    margin-top: 0; }

  .color-name {
    font-size: 15px;
    letter-spacing: normal; }

  .product-single__meta h3, .product-single__meta .h3 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 15px !important; }
  .product-form__item--submit {
    max-width: 100%;
    margin: 0 auto; }

  .mobile-c-banner, .about-mobile-section {
    display: block; }

  .product-single__photos, .desktop-c-banner, .container-space.intro-section {
    /*display: none;*/ }

  .mobile-p-slider {
    display: block !important; }
    .mobile-p-slider .owl-dots {
      position: static;
      transform: rotate(0deg);
      margin-top: 20px; }
    .mobile-p-slider button.owl-dot {
      display: inline-block;
      margin: 0 5px; }

  .cart__image {
    max-width: 100% !important;
    display: block !important; }

  .cart th {
    /*padding-right: 30px;*/ }

  .cart__qty input {
    padding: 0; }

  .list-view-item__title {
    margin-top: 12px; }

  .main-menu, .current-favorites, .intro-home-slider, .text-section, .home-half-slider, .image-text-section, .featured-in, .header__sign-in {
    display: none; }

  .site-header .top-bar {
    right: 20px;
    top: 18px; }

  h1, .h1, .h1 {
    font-size: 40px; }

  h2, .h2, .h2 {
    font-size: 28px; }

  .link-button {
    font-size: 11px;
    margin-top: 0; }

  .logo svg {
    width: 200px; }

  .main-content {
    padding: 0 20px; }

  .mobile-intro-slider-container {
    padding: 0; }

  .shopify-section:not(.index-section-*) {
    padding-bottom: 16px; }

  #shopify-section-header {
    padding: 0; }

  .top-heading-big {
    font-size: 12px; }

  .mobile-intro-slider-container .slide-item .overlay-box .overlay-content {
    max-width: 165px; }

  .mobile-intro-slider-container .slide-item .overlay-box {
    right: 0; }

  .mobile-intro-slider-container .slide-item .overlay-box .h1 {
    margin-left: -1px;
    font-size: 24px; }

  .mobile-intro-slider-container .owl-dots {
    position: absolute;
    bottom: 2px;
    left: 0;
    text-align: center;
    right: 0;
    top: auto;
    transform: translateY(0%) rotate(90deg); }

  .mobile-intro-slider-container, .mobile-image-text-section, .mobile-text-section, .mobile-featured-in, .sub-nav {
    display: block; }

  .featured-logos h3, .featured-logos .h3 {
    margin-bottom: 30px; }

  .featured-logos .featured-container img {
    max-height: none; }

  #shopify-section-footer {
    padding: 0; }

  .hamburger-menu {
    display: block; }
    .hamburger-menu .hamburger-icon span {
      display: block;
      width: 23px;
      height: 1px;
      background: #A49179;
      margin: 8px 0; }

  .mobile-counts {
    position: absolute;
    right: 20px;
    top: 27px;
    display: inline-block;
    color: #A49179;
    z-index: 99; }
    .mobile-counts a {
      color: #A49179; }

  .hamburger-menu {
    margin-left: 20px; }

  .site-header .logo {
    text-align: center;
    position: absolute;
    top: 24px;
    left: 0;
    right: 0; }

  .hamburger-icon {
    position: absolute;
    z-index: 999;
    margin-top: 0; }

  .menu-container {
    position: fixed;
    left: -80%;
    height: 100%;
    background: #f6f4f2;
    top: 70px;
    z-index: 999;
    overflow: scroll;
    transition: all 0.2s ease-out;
    border: 1px solid #f2efeb;
    box-shadow: 0 1px 2px 0 rgba(99, 99, 99, 0.25);
    font-family: "Proxima Nova Regular"; }
    .menu-container.active {
      left: 0; }
    .menu-container .close {
      position: absolute;
      top: 22px;
      left: 30px; }
    .menu-container .mobile-account {
      position: absolute;
      right: 20px; }
      .menu-container .mobile-account ul li {
        display: inline-block; }
        .menu-container .mobile-account ul li a {
          font-size: 18px;
          font-style: italic;
          color: #4a453f;
          text-transform: lowercase; }

  .submenu-container {
    border: none; }

  .submenu-container-text {
    width: 100%;
    margin: 0; }

  .submenu-container-text .menus-ul {
    width: 50% !important; }

  .site-nav {
    border-top: none;
    text-align: left;
    margin-top: 0;
    background-color: #ffffff;
    margin-bottom: 30px; }
    .site-nav > li {
      border-bottom: 1px solid #f2efeb; }
    .site-nav li {
      display: block;
      margin: 0;
      /*border-bottom: 2px solid #f2efeb;*/
      padding: 20px 0; }
      .site-nav li a {
        font-family: "Proxima Nova Regular";
        font-size: 10px;
        padding-left: 20px;
        font-weight: 600; }
    .site-nav .sub-nav {
      float: right;
      margin-right: 20px;
      transition: all 0.3s ease;
      margin-top: -2px; }

  .site-nav--active:after {
    content: none !important; }

  li.search-icon {
    display: none; }

  .submenu-container {
    background: transparent;
    opacity: 1;
    visibility: visible;
    position: relative;
    display: block;
    padding: 10px 0 0 0;
    min-height: 0;
    transition: all 0s ease;
    top: 0; }
    .submenu-container .row .col-9, .submenu-container .row .col-2, .submenu-container .menus-ul {
      width: 50%; }
    .submenu-container .menus-ul ul li {
      padding: 7px 0; }
      .submenu-container .menus-ul ul li a {
        font-size: 9px; }

  .menu-title {
    color: #4a453f;
    font-family: 'Proxima Nova Bold';
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 1.8px;
    line-height: 2.2;
    margin: 30px 30px 10px 20px;
    color: #4a453f; }

  .second-menus {
    padding-left: 20px; }
    .second-menus li {
      margin: 20px 0; }
      .second-menus li a {
        font-family: "Proxima Nova Regular";
        font-size: 9px;
        letter-spacing: 1.4px;
        color: #4a453f;
        text-transform: uppercase;
        padding: 10px 0;
        font-weight: 400; }

  .gift-stories .content {
    font-size: 15px;
    line-height: 1.3; }

  .mobile-social-icons {
    padding: 30px 0 70px 25px; }
    .mobile-social-icons li {
      display: inline-block;
      margin: 0 6px; }
    .mobile-social-icons svg {
      width: 15px;
      height: 15px; }

  svg.icon.icon-twitter {
    vertical-align: top;
    color: #4a453f; }

  .main-content {
    padding-top: 20px; }

  #Collection .row {
    margin: 0 -10px; }
    #Collection .row .col-3 {
      width: 50%; }
  #Collection .pad3 {
    padding: 0 10px; }

  .grid-view-item__title {
    line-height: 1.2; }

  .grid-view-item {
    margin: 0 auto 15px; }

  .about-page .container-space {
    padding: 0; }
  .about-page .about-second {
    padding: 0 10px 20px; }
  .about-page .flex-center {
    display: block; }
  .about-page .about-image {
    margin-top: -35px; }
    .about-page .about-image img {
      padding: 10px; }
  .about-page .row .col-6 {
    width: 100%;
    padding: 0; }
  .about-page .about-third {
    padding: 0;
    margin-bottom: 0; }
    .about-page .about-third .content-box {
      padding: 10px 20px 30px; }
  .about-page h2, .about-page .h2 {
    margin-top: 10px;
    margin-bottom: 20px; }
  .about-page .about-desktop-section {
    display: none; }

  .collection-header {
    margin-bottom: 20px;
    padding: 0px;
    padding: 0px; }
    .collection-header h1, .collection-header .h1 {
      font-size: 40px; }
    .collection-header h6, .collection-header .h6 {
      font-size: 12px; }

  .collection-header .overlay-container .overlay-text {
    right: 20px; }

  .press-page .row {
    margin: 0;
    padding: 0; }

  .press-page .row .col-4 {
    width: 100%;
    padding: 0; }

  .article__grid-meta--has-image {
    float: none;
    width: 100%;
    padding-left: 0; }

  .article__grid-image-container {
    float: none;
    margin: 0 0 20px 0; }

  .press-page .bottom-section {
    padding: 65px 0;
    margin-bottom: 0;
    margin: 0 -20px; }

  #shopify-section-press-template {
    padding: 0; }

  footer.footer {
    margin-top: 30px; }
    footer.footer .subscribe-form input[type="submit"] {
      margin-right: 0; }
    footer.footer .subscribe-form input[type="email"] {
      padding-bottom: 3px;
      font-size: 13px; }
    footer.footer .instafeed .row .col-3 {
      width: 50%;
      margin: 5px 0; }
    footer.footer .instafeed .top-heading-big {
      margin-bottom: 25px; }
    footer.footer .container {
      padding: 0 40px; }
    footer.footer .desktop-footer {
      align-items: center; }
    footer.footer .site-footer {
      padding: 40px 0 35px; }
    footer.footer .site-footer .subscribe-form-container {
      padding: 40px 0 55px;
      text-align: center; }
    footer.footer .site-footer .footer-title {
      font-size: 15px; }
    footer.footer .site-footer .fmenu-follow {
      border-right: none; }
    footer.footer .site-footer .copyright {
      bottom: 36px;
      left: auto;
      right: 40px; }
    footer.footer .mobile-footer {
      display: block; }
      footer.footer .mobile-footer .footer-logo {
        text-align: center; }

  .container-space30 {
    padding: 0; }

  .common-pages {
    padding-top: 0; }

  .container {
    /*padding: 0;*/ }

  .template-product .product-template__container .col-6 {
    width: 100%; }

  .template-product input#Quantity {
    padding-left: 0; }

  .related-products {
    margin: 50px -20px 20px; }

  .related-products .row .col-3 {
    width: 50%; }

  .related-products img {
    width: 100%; }

  .related-products .product-title {
    padding: 10px 10px 22px 10px; }

  .related-products a {
    font-size: 22px; }

  .main-content {
    margin-bottom: 20px; }

  .template-product .main-content {
    margin-bottom: 0;
    padding-bottom: 0; }

  .template-product .shopify-section {
    padding-bottom: 0; }

  .related-products .row {
    margin: 0; }

  .related-products .pad10 {
    padding: 0; }

  .related-products .row .col-3:nth-child(odd) {
    padding-right: 14px; }

  .related-products .row .col-3:nth-child(even) {
    padding-left: 14px; }

  article.journal-detail {
    margin: 0 -20px; }

  .jdetail-container .top-heading {
    width: 80%;
    margin-left: auto;
    margin-right: auto; }

  .journal-detail .suggested-story .row {
    margin: 0; }

  .journal-detail .jdetail-container img {
    display: block;
    padding-bottom: 20px;
    margin: 0 auto; }

  .journal-detail .social-sharing {
    right: 15px; }

  .journal-detail .jdetail-container .top-heading .col-4 {
    width: 100%; }

  .journal-detail .jdetail-container .top-heading h3:after, .journal-detail .jdetail-container .top-heading .h3:after {
    content: none; }

  .journal-detail .jdetail-container .top-heading h3, .journal-detail .jdetail-container .top-heading .h3 {
    font-size: 28px;
    margin: 0; }

  .journal-detail .shop-post .col-3 {
    width: 50%; }

  .journal-detail .shop-post .row {
    margin: 0; }

  .journal-detail .shop-post .row .col-3:nth-child(odd) {
    padding-right: 14px; }

  .journal-detail .shop-post .row .col-3:nth-child(even) {
    padding-left: 14px; }

  .journal-detail .shop-post .sub-heading {
    padding: 0 10px 15px 0; }

  .journal-detail .shop-post .pad10 {
    padding: 0; }

  .journal-page .col.col-6 {
    width: 100%;
    float: none; }
  .journal-page .latest-slider-container .left-content {
    padding: 0; }
  .journal-page .latest-slider-container {
    padding: 0; }
  .journal-page .flex-center {
    display: block; }
  .journal-page .read-entry {
    margin: 10px 0 20px; }
  .journal-page .news-subscribe {
    padding: 30px 30px 30px 25px;
    margin: 0 -20px; }
  .journal-page .news-subscribe .news-subscribe-heading {
    margin-bottom: 20px;
    letter-spacing: 0.175em; }
  .journal-page .listing {
    padding: 10px 0px 0; }
  .journal-page .list-content {
    padding: 0; }
    .journal-page .list-content .cat-date .date {
      display: inline-block;
      padding-top: 40px; }
  .journal-page .listing .list-box {
    margin-bottom: 20px; }
  .journal-page .cats-container {
    float: none;
    text-align: center;
    width: 100% !important; }
  .journal-page .categories {
    margin-bottom: 20px; }
  .journal-page .border-right:after {
    display: none; }
  .journal-page .row .col-9 {
    width: 100%; }

  .gift-page .contact-form .gift-budget-container {
    margin-bottom: 0; }

  .gift-page .contact-form .gift-budget-container .col-6 {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 40px; }

  div#shopify-section-cart-template {
    margin: 0; }

  .gift-time {
    margin: 20px 0 0; }
    .gift-time .border-right {
      border-right: none;
      border-bottom: 1px solid #e8e9eb;
      padding-bottom: 30px; }
    .gift-time .col-6 {
      width: 100%; }
    .gift-time .gift-message, .gift-time #order-delivery {
      padding: 0; }
    .gift-time #order-delivery {
      padding-top: 20px; }

  .cart__continue--large {
    display: block;
    text-align: center; }

  .note-detail {
    padding-top: 0;
    margin-right: 0; }

  .cart-instructions {
    margin-right: 0; }

  /*.cart__subtotal {
      padding-left: 10px;
  }*/
  .cart__shipping {
    padding: 5px 0 25px; }

  .cart-note__input {
    margin-bottom: 30px; }

  .cart__image {
    max-height: 100%; }

  /*th:first-child {
      display: none;
  }*/
  td.cart__update-wrapper.cart-flex-item.text-right {
    text-align: center !important; }

  td.text-right.total-pr {
    padding: 0 20px; }

  th.text-center {
    width: 85%;
    text-align: right !important;
    padding-right: 30px; }

  .mobile-remove .btn--small {
    padding: 0; }

  .featured-container a {
    display: inline-block;
    margin-bottom: 15px;
    text-align: center; }

  .site-header {
    background-color: #fff;
    position: fixed;
    padding: 26px 0 0;
    width: 100%;
    height: 70px;
    z-index: 99;
    top: 0; }

  .shadow-header {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15); }

  #PageContainer {
    padding-top: 60px; }

  .menu-slider {
    display: none !important; }

  .menus-ul:last-child li:last-child {
    border-bottom: none; }

  .site-nav li.Shop.active {
    padding-bottom: 0; }

  span.sub-nav.active {
    transform: rotate(-180deg); }

  .journal-page .owl-nav {
    margin-left: 0;
    position: static;
    margin-top: 5px;
    opacity: 0; }

  body.active {
    overflow: hidden; }

  .journal-detail .suggested-story .row .col-4 {
    width: 50%;
    padding: 0 10px; }
    .journal-detail .suggested-story .row .col-4:nth-child(odd) {
      padding-left: 0; }
    .journal-detail .suggested-story .row .col-4:nth-child(even) {
      padding-right: 0; }

  .journal-detail .jdetail-container {
    padding: 0 30px; }
    .journal-detail .jdetail-container .next-prev {
      margin-bottom: 30px; }
      .journal-detail .jdetail-container .next-prev img {
        padding: 0; }
    .journal-detail .jdetail-container .top-heading .col-2 {
      width: 100%; }

  .desktop-share, .desktop-cats {
    display: none; }

  .journal-detail .social-sharing {
    position: static; }

  .mobile-share {
    display: block;
    margin: 0 10px 15px 10px;
    border-bottom: 1px solid #B7986E; }
    .mobile-share .social-sharing .top-heading-small {
      display: inline-block;
      margin-bottom: 8px; }
    .mobile-share .btn--share {
      display: inline-block;
      float: right;
      margin: 0 10px; }
      .mobile-share .btn--share.share-facebook {
        margin-right: 0; }

  .jdetail-container .row .col-8 {
    width: 100%; }
  .jdetail-container .top-heading {
    width: 100%;
    padding: 0 10px; }

  .journal-detail .intro-sec {
    padding-top: 20px; }

  .mobile-gift-banner {
    display: block;
    margin-bottom: 30px; }
    .mobile-gift-banner img {
      display: block; }

  .mobile-categories {
    display: block; }
    .mobile-categories .heading img {
      transition: all 0.2s ease-in; }
    .mobile-categories .heading.active img {
      transform: rotate(-180deg); }
    .mobile-categories .cats {
      display: none; }
      .mobile-categories .cats.active {
        display: block; }

  #instafeed a > div {
    height: 200px !important; }

  .faq-page {
    padding: 30px 0 50px 0px;
    max-width: 650px; }

  .faq-page .order-shipping {
    padding-bottom: 20px; }

  .career-page .page-content {
    padding-left: 0; }

  .popup-container .popup-container-inner .content-box .inner-content h1, .popup-container .popup-container-inner .content-box .inner-content .h1, .popup-container .popup-container-inner .content-box .inner-content .h1 {
    padding-top: 38px; }

  .popup-container .popup-container-inner .content-box .inner-content .text {
    margin-top: 30px; }

  .popup-container .popup-container-inner .content-box {
    height: 290px;
    width: 280px; }

  .popup-container .popup-container-inner .content-box .inner-content {
    padding: 0 10px; }

  .popup-container .popup-container-inner {
    width: 320px;
    height: 415px;
    padding: 35px 20px; }

  .popup-container .popup-container-inner .subscribe-form {
    margin: 25px auto 0; }

  .popup-container .popup-container-inner .close-btn {
    right: 20px;
    top: 10px; } }
  @media screen and (max-width: 901px) and (min-width: 750px) {
    .product-single__meta h3, .product-single__meta .h3 {
      text-align: left; } }

@media screen and (max-width: 768px) {
  footer.footer .site-footer .desktop-footer {
    display: flex;
    flex-direction: column;
    align-items: center; }
    footer.footer .site-footer .desktop-footer .col {
      width: 100%; }
    footer.footer .site-footer .desktop-footer .footer-menu ul {
      float: none;
      text-align: center; }
  footer.footer .site-footer .subscribe-form-container {
    padding: 40px 0 55px;
    text-align: center;
    float: none;
    margin: 0 auto; }
    footer.footer .site-footer .subscribe-form-container .klaviyo_styling {
      margin: 0 auto 18px auto; } }
.seclast {
  padding: 0px 50px 0px !important;
  overflow: hidden; }

.seclast .text-box {
  padding-left: 20px;
  background-color: #C8C9C5 !important;
  padding: 110px 105px !important;
  height: 90vh;
  float: left;
  width: 100%; }

.seclast .item-content {
  margin: 50px 0px 50px !important; }

.second-last .text-box .h1 {
  font-size: 54px; }

section.second-last.animate.seclast {
  padding-left: 0px !important;
  padding-right: 60px !important; }

/*------------- press page css here ------------------*/
.press-page .article__grid-image-container img {
  max-width: 100%;
  border: 0;
  float: right;
  height: 260px;
  margin-bottom: 20px; }

.press-page .article__grid-excerpt {
  font-size: 14px;
  height: 38px;
  word-wrap: break-word; }

.press-page .link-button {
  margin-top: 5px; }

.press-page .article__grid-meta.article__grid-meta--has-image {
  float: left;
  width: 100%; }

/*------------press page css end here -----------*/
@media only screen and (min-width: 767px) {
  .seclast .text-box {
    background-color: #BDBEB9  !important;
    padding: 102px 40px !important;
    height: auto;
    width: 100%;
    float: none; }

  .second-last .text-box .h1 {
    font-size: 28px; } }
@media only screen and (min-width: 769px) {
  .seclast .text-box {
    background-color: #BDBEB9  !important;
    padding: 76px 40px !important;
    height: auto;
    width: 100%;
    float: none; }

  .second-last .text-box .top-heading-small {
    font-size: 16px; }

  .second-last .text-box .h1 {
    font-size: 29px; }

  .seclast {
    height: auto; } }
@media only screen and (max-width: 1024px) and (min-width: 767px) {
  .number-input {
    width: 20% !important; } }
@media only screen and (min-width: 1024px) {
  .seclast .text-box {
    padding: 108px 58px !important; }

  .second-last .text-box .top-heading-small {
    font-size: 18px; }

  .second-last .text-box .h1 {
    font-size: 38px; }

  .content {
    margin-bottom: 70px; } }
@media only screen and (max-width: 1300px) {
  .press-page .article__grid-image-container img {
    max-width: auto;
    border: 0;
    float: none;
    height: auto;
    width: 100%;
    margin-bottom: 0px; } }
@media only screen and (min-width: 1366px) {
  .seclast .text-box {
    padding: 152px 90px !important; }

  .second-last .text-box .top-heading-small {
    font-size: 20px; }

  .second-last .text-box .h1 {
    font-size: 48px; }

  .content {
    margin-bottom: 70px; } }
@media only screen and (min-width: 1400px) {
  .press-page .article__grid-image-container img {
    max-width: auto;
    border: 0;
    float: none;
    height: auto;
    margin-bottom: 20px;
    width: 100%;
    max-width: inherit; }

  .seclast .text-box {
    padding-left: 20px;
    background-color: #BDBEB9  !important;
    /*padding: 44% 65px 45% 30% !important;*/
    float: left;
    width: 100%;
    height: auto; }

  .content {
    margin-bottom: 70px; } }
@media only screen and (min-width: 2500px) {
  /*.seclast .text-box {
      padding-left: 20px;
      background-color: #BDBEB9  !important;
      padding: 42% 65px 43% 30% !important;
      float: left;
      width: 100%;
      height: auto;
  }*/ }
/* .second-last{padding:0px 50px 0px !important; */
.p1 {
  color: #B7986E;
  font-family: "Proxima Nova Regular";
  font-size: 14px;
  letter-spacing: .02em; }

.second-last.seclast .text-box {
  background: #C8C9C5 !important;
  position: absolute;
  left: 0;
  width: 31.933%;
  top: 0;
  bottom: 0; }

.second-last.seclast .col-8 {
  float: right; }

@media (max-width: 900px) {
  .container {
    padding: 0 20px; }

  .mobile-pdetail {
    display: block; }

  .desk-cart {
    display: none; }

  .hide_under500 {
    visibility: hidden;
    /*display: none;*/ }

  tr .cart__meta .cart__qty {
    text-align: center; }

  .product-form__cart-submit {
    width: 100% !important;
    margin-right: 0; }

  .product-single__price {
    width: 49% !important;
    margin-bottom: 10px;
    margin-right: 2%;
    padding-top: 7px; } }
@media (max-width: 375px) {
  .journal-detail .jdetail-container .next-prev span.line {
    width: 20px; } }
.gift-message__box {
  width: 100%;
  position: relative;
  color: #4a453f;
  font-family: ProximaNova;
  font-size: 9px;
  margin-right: -10px;
  margin-left: -10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 7px; }

.gift-message__word-counter__red {
  color: #e01a1a; }

h5.giftbox-title, .giftbox-title.h5 {
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #4a453f;
  /*border-top: 1px solid #D5CBBF;*/
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0; }

.product_image {
  padding: 5px; }

.product-details {
  font-family: ProximaNova;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.38;
  letter-spacing: normal;
  margin-top: 60px; }

.product-gift-details {
  margin-bottom: 65px; }

.product-single__meta__right {
  float: right; }

.quantity-number {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.quantity-number::-webkit-inner-spin-button,
.quantity-number::-webkit-outer-spin-button {
  -webkit-appearance: none; }

.number-input {
  border: 1px solid #dad5ce;
  display: inline-flex;
  height: 38px;
  padding: 0;
  width: 38%; }

.number-input input {
  width: 100%;
  border: none; }

.number-input,
.number-input * {
  box-sizing: border-box; }

.number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  align-items: center;
  border: none;
  justify-content: center;
  width: 3rem;
  height: 2.3rem;
  cursor: pointer;
  margin: 0;
  position: relative; }

.number-input button:before,
.number-input button:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 8px;
  height: 1px;
  background-color: #4a453f;
  transform: translate(-50%, -50%); }

.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg); }

.number-input input[type=number] {
  font-family: sans-serif;
  max-width: 5rem;
  padding: .5rem;
  border-width: 0;
  font-size: 2rem;
  height: 3rem;
  font-weight: bold;
  text-align: center; }

@media screen and (max-width: 850px) {
  .details-2column {
    column-count: 1; } }
.please-allow {
  font-family: 'CormorantGaramond-Italic';
  font-style: italic;
  font-size: 13px;
  color: #4a453f;
  letter-spacing: 0;
  line-height: 20px;
  margin-left: 23px; }

#add-initials {
  border: solid 1px #4a453f;
  font-family: "Proxima Nova Regular";
  font-weight: normal;
  font-size: 15px;
  color: #4a453f;
  letter-spacing: 2px;
  width: 35px;
  padding: 3px 2px 1px 4px;
  background-color: #ffffff; }

.add-initials {
  border: solid 1px #4a453f;
  font-family: "Proxima Nova Regular";
  font-weight: normal;
  font-size: 15px;
  color: #4a453f;
  letter-spacing: 2px;
  width: 35px;
  padding: 3px 2px 1px 4px;
  background-color: #ffffff;
  margin-left: 12px; }

.add-engraved-message {
  border: solid 1px #4a453f;
  font-family: "Proxima Nova Regular";
  font-weight: normal;
  font-size: 15px;
  color: #4a453f;
  letter-spacing: 2px;
  width: 270px;
  padding: 3px 2px 1px 4px;
  background-color: #ffffff;
  margin-left: 12px; }

.please-allow {
  display: none; }

@media screen and (max-width: 1024px) {
  .grid-view-item {
    margin: 0 auto; }

  .grid-view-item__title {
    /*margin-top:0;*/ }

  .grid-view-item__title a {
    margin: 0 10px;
    font-size: 16px; }

  .product-price__price {
    font-size: 10px; }

  .grid--view-items {
    padding-bottom: 60px;
    padding-top: 40px; }

  .grid-view-item__meta {
    line-height: 1; }

  .overlay-container {
    position: static !important; } }
.desktop-c-banner {
  margin: 0px auto 50px auto;
  padding-top: 25%;
  overflow: hidden;
  width: 100vw;
  margin: 0px auto 50px auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

@media screen and (max-width: 767px) {
  .desktop-c-banner {
    height: 250px;
    width: 100%; }

  .site-nav__link {
    font-family: "Proxima Nova Regular"; }

  .sub-nav--element {
    padding-right: 30px !important; } }
.header__sign-in {
  text-transform: uppercase;
  margin-right: 20px;
  font-family: "Proxima Nova Regular";
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #4a453f;
  float: left;
  margin-top: 12px; }

@media screen and (max-width: 767px) {
  .submenu-container {
    display: none; } }
.main-menu_fixed {
  position: fixed;
  transition: opacity 0.6s ease-out;
  margin-top: -120px;
  background-color: white;
  width: 100%;
  top: 0px;
  height: 80px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15); }

.main-menu_fixed .site-nav {
  text-align: left; }

.site-nav .nav-fixed-logo {
  margin-left: 40px !important;
  margin-right: 22.5px !important;
  display: inline; }
  .site-nav .nav-fixed-logo a {
    height: 40px; }
    .site-nav .nav-fixed-logo a svg {
      width: 40px;
      height: 40px; }

.main-menu_fixed .site-nav {
  margin: 20px 0; }

.main-menu_fixed .site-nav li {
  margin: 0 15px;
  margin-top: -30px; }

/*.sub-nav--active:hover ~ li{
  opacity:0.4;
}

.sub-nav--active:hover a{
  font-weight:600;
}*/
.top-bar.nav-fixed {
  top: 25px; }

.submenu-container.fixed {
  top: 60px; }

.main-menu_fixed .site-nav li:first-of-type:after {
  top: 40px;
  left: 158px; }

.submenu-container-text.fixed {
  float: left;
  margin-left: -68px; }

.hamburger-show {
  padding: 30px;
  margin: -30px; }

.top-bar {
  padding: 30px;
  margin: -30px; }

.sub-nav {
  padding: 5px;
  margin: -5px; }

.footer-logo {
  margin-left: calc(50% - 40px ); }

.footer-column1 {
  float: left;
  margin-bottom: 60px; }

.footer-column2 {
  float: left;
  margin-left: 80px; }

#mc-embedded-subscribe {
  letter-spacing: 1.8px;
  width: 25%;
  float: left;
  font-style: normal;
  background: transparent;
  font-size: 10px;
  color: #4a453f;
  font-family: "Proxima Nova Regular";
  text-transform: uppercase;
  display: none;
  margin-top: 5px; }

input.email {
  border-bottom: 0.5px solid #979797;
  padding-left: 6px !important; }

input.mce-selected {
  width: 75% !important;
  float: left;
  background: white;
  border: none !important;
  color: #4a453f;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: normal !important; }

#subscribe-result p {
  display: inline;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #4a453f; }

#subscribe-result h3, #subscribe-result .h3 {
  display: inline;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #4a453f; }

.fl-right {
  float: right !important; }

#subscribe-result {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: normal;
  font-style: italic;
  line-height: normal;
  letter-spacing: normal;
  color: #b43939;
  display: block;
  width: 100%;
  clear: both;
  margin-top: -10px;
  padding-left: 7px; }

.required.email {
  font-family: 'Cormorant Garamond', serif; }

@media screen and (max-width: 767px) {
  .menu-container {
    padding-bottom: 80px; } }
@media screen and (max-width: 1330px) {
  .product-form__cart-submit .submit-button-label {
    white-space: normal; } }
@media screen and (max-width: 800px) {
  .product-form__cart-submit {
    padding-top: 10px; }
    .product-form__cart-submit .submit-button-label {
      font-size: 12px; } }
.hidden {
  display: none; }

.empty {
  display: block; }

@media screen and (max-width: 767px) {
  .empty {
    display: none; } }
/* bold_option*/
.bold_option.bold_option_swatch {
  border: 1px solid #a49079;
  margin-left: 5px;
  margin-right: 25px;
  padding: 12px 10px 15px; }

.bold_option.bold_option_swatch {
  background-image: linear-gradient(135deg, #4a453f 50%, transparent 50%), linear-gradient(45deg, transparent 50%, #4a453f 50%);
  background-position: calc(100% - 15px) 15px, calc(100% - 20px) 15px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: white;
  outline: 0; }

.bold_option_title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #4a453f;
  margin: 0 auto; }

.bold_option_element {
  margin-top: 13px; }

.bold_option_swatch .bold_option_value_element {
  border: none !important;
  box-shadow: none !important; }

.bold_option_swatch .bold_option_value {
  margin-right: 10px; }

.bold_option_value_swatch {
  height: 100px !important;
  width: 150px !important; }

.bold_option_swatch_title, .bold_tooltip > :first-child {
  opacity: 1 !important;
  margin-bottom: 0 !important;
  height: auto !important;
  line-height: 1em !important;
  padding: 1em !important;
  top: auto !important;
  bottom: -25% !important;
  font-size: 80% !important; }

.bold_option_swatch_title:after, .bold_tooltip > :first-child:after {
  content: none !important; }

.bold_option_swatch_title, .bold_tooltip > :first-child {
  background-color: transparent !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  font-stretch: normal !important;
  line-height: 1.23 !important;
  letter-spacing: normal !important;
  text-align: center !important;
  color: #4a453f !important;
  position: static !important;
  transform: none !important;
  /*width:120px !important;*/
  padding: 5px 0 !important; }

.bold_option_swatch .bold_option_value .bold_option_swatch_title {
  display: block !important;
  margin: 0 auto; }

.bold_option_swatch .bold_option_value .bold_option_swatch_title-left {
  display: block !important;
  margin: 0 auto;
  width: 50%;
  text-align: left !important;
  line-height: 1em !important;
  height: auto !important;
  margin-left: 10px !important;
  margin-top: 5px !important; }

.bold_option_swatch .bold_option_value .bold_option_swatch_title-left span {
  height: auto !important;
  line-height: 1.23 !important;
  margin-bottom: 10px !important; }

.bold_option_swatch .bold_option_value .bold_option_swatch_title .bold_option_value_title {
  display: inline-block !important; }

.bold_option_swatch .bold_option_value .bold_option_swatch_title .bold_option_value_price {
  display: inline-block !important;
  font-size: 13px !important;
  font-style: italic !important; }

.bold_option_element {
  display: none !important; }

.bold_option_element_modal {
  display: block !important;
  position: absolute;
  top: 200px;
  height: auto;
  background-color: white;
  border: 1px solid darkgray;
  left: 30%; }

.bold_option_element .bold_option_value_element {
  opacity: 0.5; }

.bold_option_element .bold_swatch_selected {
  opacity: 1;
  border: 1px solid #4a453f !important; }

.bold_option_swatch {
  min-height: 38px; }

.bold_option_swatch .bold_option_value_element.bold_swatch_selected {
  border: 1px solid #4a453f !important; }

.bold_option.bold_option_swatch_opened {
  background-image: linear-gradient(45deg, #4a453f 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #4a453f 50%);
  background-position: calc(100% - 15px) 15px, calc(100% - 20px) 15px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: white;
  outline: 0; }

.bold_option_title {
  display: block;
  cursor: pointer !important; }

.bold_option_title_selector {
  display: inline !important;
  float: left;
  margin-right: 2px;
  margin-top: 6px; }

.bold_option_title_info {
  display: inline !important;
  margin-left: 8px;
  font-style: italic; }

.bold_option_title_info_monogram {
  display: inline !important;
  margin-left: 8px;
  font-style: normal;
  font-weight: bold; }

.bold_option_element {
  margin-left: 18px; }

.bold_option_title_selector {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background: url(//simoneleblanc.com/cdn/shop/t/182/assets/off.svg?v=153327244265900125541701727705) no-repeat;
  width: 15px;
  height: 15px;
  border: none; }

.bold_option_title_selector:checked {
  background: url(//simoneleblanc.com/cdn/shop/t/182/assets/on.svg?v=102777836023296874441701727705) no-repeat;
  width: 15px;
  height: 15px; }

/* index new */
.main-content--inverse-padding {
  margin: -20px;
  margin-bottom: 0px; }

.container--inverse-padding {
  margin-left: -40px;
  margin-right: -40px; }

.index-new-section2 {
  height: 70vh; }
  .index-new-section2 section {
    padding-bottom: 0px; }

.index-new-container2 {
  background-size: contain;
  position: relative;
  background-color: #f9f5f2;
  height: 100%;
  width: 100%;
  display: table; }
  .index-new-container2 .panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 7%; }

.index-new-text-container2 {
  display: table-cell;
  vertical-align: bottom; }

.index-new-text {
  bottom: 0;
  text-align: center;
  margin: 70px 20px 0 20px;
  /*max-width: 438px;*/ }

.index-new-headline2 {
  opacity: 0.97;
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #353838; }

.index-new-text2 {
  bottom: 0;
  text-align: center;
  width: 400px;
  margin: 0 auto;
  margin-bottom: 60px; }

.index-new-headline {
  opacity: 0.97;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #4a453f; }

.index-new-btn {
  border: none;
  outline: none;
  background-color: #4a453f;
  color: white;
  font-family: "Proxima Nova Regular";
  padding: 12px 40px;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: center;
  text-transform: uppercase; }

@media screen and (max-width: 1200px) {
  .index-new-container2 .panel {
    top: -5%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0% 15%; } }
@media screen and (min-width: 767px) {
  .index-new-section1 {
    width: 100%; } }
@media screen and (max-width: 767px) {
  .featured-logos {
    padding-top: 55%; }

  .index-new-container2 .panel {
    padding: 0% 10%; }

  .index-new-part13 {
    height: 70vh;
    width: 100%;
    background-position: 55px 0% !important;
    background-size: 100%; }
    .index-new-part13 .home-page-learn-more-btn {
      margin-top: -6px; }

  .index-new-text, .index-new-part13-text {
    padding: 2vh;
    margin-top: -30px;
    margin-left: auto;
    margin-right: auto;
    height: 90%; }

  .index-new-part13-text .index-new-part13-paragraph {
    margin: 0 auto;
    max-width: 400px;
    padding-bottom: 5vh; }

  .index-new-headline {
    font-size: 26px; }

  .content-box h2, .content-box .h2 {
    font-size: 40px !important; }

  .index-new-part12-section {
    margin: 20px 40px 0 60px; } }
.bold_option_title_info_input {
  font-style: normal;
  font-family: Proxima-Nova;
  font-weight: 600; }

@media screen and (max-width: 1800px) {
  .add-engraved-message {
    margin-left: 0px;
    width: 282px; } }
.loading-section {
  display: none; }

.product-single.overriden {
  /* responsive design start */
  /* responsive design end */
  /* modal (bold option) styles begin */
  /* modal (bold option) styles end */ }
  .product-single.overriden + div .giftbox-title {
    padding-top: 0px;
    padding-bottom: 55px; }
  .product-single.overriden .product-details .product-single__description p {
    font-family: 'Cormorant Garamond';
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.7;
    letter-spacing: normal;
    color: #4a453f; }
  .product-single.overriden .product-details .product-single__description div {
    font-family: 'Cormorant Garamond';
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: normal;
    color: #4a453f; }
  .product-single.overriden .product-details .product-single__description p:first-of-type:not(:last-of-type) {
    text-align: center; }
    .product-single.overriden .product-details .product-single__description p:first-of-type:not(:last-of-type) em {
      display: block;
      font-style: italic; }
    .product-single.overriden .product-details .product-single__description p:first-of-type:not(:last-of-type) em:nth-child(1) {
      font-size: 20px;
      font-weight: 500; }
    .product-single.overriden .product-details .product-single__description p:first-of-type:not(:last-of-type) em:nth-child(2) {
      font-size: 14px;
      padding-top: 5px; }
  @media screen and (max-width: 800px) {
    .product-single.overriden .product-details .product-single__description {
      padding-right: 20%; }
    .product-single.overriden .product-options {
      width: 100% !important; }
      .product-single.overriden .product-options .product-form__item--submit {
        padding-right: 5%;
        padding-left: 5%; }
    .product-single.overriden .product-single__title {
      top: -90px !important; }
    .product-single.overriden .product-form {
      width: 100%;
      margin: 0px; } }
  @media only screen and (max-width: 900px) {
    .product-single.overriden .product-details .product-single__description {
      padding-right: 0px;
      padding-left: 0px; }
    .product-single.overriden .product-options .product-form__item--submit {
      padding-right: 0px;
      padding-left: 0px;
      /*margin-left: -10px;*/ }
    .product-single.overriden .product-single__title {
      top: -103px !important;
      font-size: 24px !important; }
      .product-single.overriden .product-single__title + .row {
        top: 10px !important; } }
  .product-single.overriden .product-single__photo {
    display: flex; }
  .product-single.overriden .feature-row__image {
    height: auto;
    width: auto; }
  .product-single.overriden .main-image {
    margin: 0px -45px; }
    @media (min-width: 750px) {
      .product-single.overriden .main-image {
        margin: 0; } }
  .product-single.overriden .product-single__meta .product-single__title {
    color: #4a453f;
    font-family: 'Cormorant Garamond';
    font-size: 35px; }
    .product-single.overriden .product-single__meta .product-single__title + .row {
      position: relative;
      top: -10px; }
  .product-single.overriden .selected {
    background-color: #f8f6f4; }
  .product-single.overriden .product-form__item--submit {
    /* swap orders begin */
    /* swap orders end */ }
    .product-single.overriden .product-form__item--submit .add-to-cart-buttons-container {
      text-align: center; }
      @media (min-width: 750px) {
        .product-single.overriden .product-form__item--submit .add-to-cart-buttons-container {
          column-gap: 40px;
          display: flex;
          flex-direction: row; } }
    .product-single.overriden .product-form__item--submit .bold_option_swatch, .product-single.overriden .product-form__item--submit .bold_option_uploadfile label {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .product-single.overriden .product-form__item--submit .bold_option_swatch .bold_option_title, .product-single.overriden .product-form__item--submit .bold_option_uploadfile label .bold_option_title {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        margin: auto; }
      .product-single.overriden .product-form__item--submit .bold_option_swatch .bold_option_element, .product-single.overriden .product-form__item--submit .bold_option_uploadfile label .bold_option_element {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1; }
    .product-single.overriden .product-form__item--submit .bold_option_uploadfile .bold_help_text {
      display: none; }
    .product-single.overriden .product-form__item--submit .product-info > .desc-container {
      justify-content: space-between;
      grid-column-gap: 0px; }
      .product-single.overriden .product-form__item--submit .product-info > .desc-container.monogram {
        /*display: grid;*/ }
        .product-single.overriden .product-form__item--submit .product-info > .desc-container.monogram .desc-container__title {
          grid-row: 1; }
        .product-single.overriden .product-form__item--submit .product-info > .desc-container.monogram .bold_options {
          grid-row: 2;
          display: flex;
          flex-wrap: wrap;
          justify-content: flex-start; }
    @media only screen and (min-width: 900px) {
      .product-single.overriden .product-form__item--submit .add-to-cart-buttons-container > * {
        float: none; }
      .product-single.overriden .product-form__item--submit .add-to-cart-buttons-container .product-form__item--quantity {
        -webkit-flex: 0 0 24%;
        -moz-flex: 0 0 24%;
        -ms-flex: 0 0 24%;
        flex: 0 0 24%; } }
    @media screen and (max-width: 450px) {
      .product-single.overriden .product-form__item--submit .product-form__cart-submit {
        margin-top: 0px; } }
    .product-single.overriden .product-form__item--submit .desc-container__title {
      padding: 8px;
      text-align: center;
      border: 1px solid #DAD5CE;
      border-bottom: 0;
      font-family: "Proxima Nova Medium";
      letter-spacing: 2.4px; }
      .product-single.overriden .product-form__item--submit .desc-container__title label {
        font-size: 12px;
        margin: 0; }
    .product-single.overriden .product-form__item--submit .desc-container__title.emp {
      background-color: #4a453f;
      color: #ffffff;
      border-bottom: solid 1px #4a453f;
      border-color: #4a453f; }
    .product-single.overriden .product-form__item--submit .gift-message__box {
      display: grid;
      margin: 0px;
      padding: 0px; }
    .product-single.overriden .product-form__item--submit .gift-message__dropdown {
      display: none; }
    .product-single.overriden .product-form__item--submit .bold_option.bold_option_swatch {
      border: none; }
    .product-single.overriden .product-form__item--submit .bold_option_swatch_title {
      display: none !important; }
    .product-single.overriden .product-form__item--submit .selected.bold_option_swatch {
      height: 86%; }
    .product-single.overriden .product-form__item--submit .selected .bold_option_title {
      font-weight: 500;
      color: #4a453f;
      word-wrap: break-word;
      /*max-width: 80%;*/ }
    .product-single.overriden .product-form__item--submit .selected .bold_option_title.multiple_lines {
      padding: 0px 20px 16px 20px; }
    .product-single.overriden .product-form__item--submit .bold_option_title {
      text-align: center;
      padding: 11px 20px 16px 20px;
      font-size: 14px;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.14;
      letter-spacing: normal;
      color: #4a453f;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0; }
    .product-single.overriden .product-form__item--submit .bold_option.bold_option_swatch, .product-single.overriden .product-form__item--submit .bold_option.bold_option_uploadfile {
      background-image: none;
      margin: 20px 0px;
      padding: 0px; }
    .product-single.overriden .product-form__item--submit .bold_swatch_selected {
      border: none !important;
      width: 100%; }
    .product-single.overriden .product-form__item--submit .bold_option_element {
      display: block !important;
      display: inline-block;
      margin: 0px;
      pointer-events: none; }
      .product-single.overriden .product-form__item--submit .bold_option_element .bold_option_value:not(:first-of-type) {
        display: none !important; }
      .product-single.overriden .product-form__item--submit .bold_option_element * {
        margin: 0px !important; }
    .product-single.overriden .product-form__item--submit .bold_option_value_title {
      pointer-events: none; }
    .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded {
      margin: 0px;
      padding-left: 20px;
      padding-right: 20px; }
      .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded .bold_option_set, .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded .bold_option_set_custom {
        max-width: 180px;
        /*min-width: 110px;*/
        cursor: pointer;
        width: 30%;
        margin-right: 4.3%; }
      .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded .bold_option_set:nth-child(4) {
        margin-right: 0 !important; }
      .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded .bold_option_product_title, .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded .bold_option_total {
        display: none;
        position: fixed; }
    .product-single.overriden .product-form__item--submit .bold_option_value, .product-single.overriden .product-form__item--submit .bold_option_value_element, .product-single.overriden .product-form__item--submit .bold_option_value_swatch, .product-single.overriden .product-form__item--submit .bold_option_uploadfile .bold_option_element {
      width: 100% !important;
      opacity: 1; }
    .product-single.overriden .product-form__item--submit .bold_option_value_swatch, .product-single.overriden .product-form__item--submit .bold_option_uploadfile .bold_option_element {
      min-height: 130px; }
    .product-single.overriden .product-form__item--submit .bold_option_value_swatch, .product-single.overriden .product-form__item--submit .bold_option_uploadfile .bold_option_element {
      background-color: #F8F7F5;
      border: 0px solid #F8F7F5; }
    .product-single.overriden .product-form__item--submit .bold_option_uploadfile label {
      position: relative;
      pointer-events: none; }
    .product-single.overriden .product-form__item--submit .bold_option_uploadfile .bold_option_element {
      border: none;
      display: block;
      background-image: url("https://static.boldcommerce.com/options/swatch/360432/0badc1e51ba4d5ecbbca18e2a892211a.png");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat; }
      .product-single.overriden .product-form__item--submit .bold_option_uploadfile .bold_option_element input {
        opacity: 0; }
  .product-single.overriden .popup-container.-no-background {
    position: fixed !important;
    /*.bold_option_value_price:before {
      content: " + ";
    }*/ }
    .product-single.overriden .popup-container.-no-background .popup-container-inner {
      box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
      padding: 40px 30px !important;
      position: relative !important;
      height: auto !important; }
    .product-single.overriden .popup-container.-no-background .bold-option-modal-title {
      color: #4a453f !important;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      font-size: 24px;
      text-align: center;
      padding-bottom: 30px;
      letter-spacing: 0;
      line-height: 1.2; }
    .product-single.overriden .popup-container.-no-background .bold_option_value_element, .product-single.overriden .popup-container.-no-background .bold_option_swatch_title {
      float: none !important;
      width: 100% !important;
      padding-bottom: 15px !important; }
    .product-single.overriden .popup-container.-no-background .bold_option_value {
      pointer-events: none;
      display: block; }
    .product-single.overriden .popup-container.-no-background .bold_option_value_title {
      line-height: 18px;
      display: inline !important; }
    .product-single.overriden .popup-container.-no-background .bold_option_value_element {
      opacity: 1 !important; }
      .product-single.overriden .popup-container.-no-background .bold_option_value_element input {
        display: none !important; }
    .product-single.overriden .popup-container.-no-background .bold_option_swatch_title {
      display: block !important;
      text-align: left !important;
      padding-top: 20px !important;
      padding-bottom: 15px; }
    .product-single.overriden .popup-container.-no-background .bold_option_value_swatch {
      width: 100% !important;
      height: 293px !important; }
    .product-single.overriden .popup-container.-no-background .bold_option_swatch_title {
      color: #4a453f !important;
      font-family: 'Cormorant Garamond' !important;
      font-size: 16px !important;
      display: inline; }
    .product-single.overriden .popup-container.-no-background .bold_options_input_label {
      height: 18px;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      font-size: 16px;
      font-style: normal;
      font-stretch: normal;
      color: #4a453f;
      line-height: 1.13;
      letter-spacing: normal;
      margin-top: 3px; }
    .product-single.overriden .popup-container.-no-background .add-initials, .product-single.overriden .popup-container.-no-background .add-engraved-message {
      border: none;
      font-family: "Proxima Nova Regular";
      font-size: 18px;
      color: #4a453f;
      height: 31px;
      background-color: #f2efeb; }
    .product-single.overriden .popup-container.-no-background .add-initials {
      margin-top: -3px;
      width: 50px;
      text-align: center;
      font-weight: 500;
      pointer-events: all;
      margin-bottom: 40px; }
    .product-single.overriden .popup-container.-no-background .engraved-message-container .bold_options_input_label {
      padding-top: 3px; }
    .product-single.overriden .popup-container.-no-background .add-engraved-message {
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      letter-spacing: normal;
      font-size: 16px;
      font-weight: 500;
      height: 31px;
      padding: 5px 10px;
      margin-left: 12px;
      width: 97%;
      pointer-events: all;
      margin-bottom: 5px;
      text-align: center; }
    .product-single.overriden .popup-container.-no-background .bold-option-modal-controls-container {
      margin-top: 5px; }
    .product-single.overriden .popup-container.-no-background .add-engraved-message::placeholder {
      text-align: center;
      color: #4a453f;
      height: 22px;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      font-stretch: normal;
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: normal;
      opacity: 0.3; }
    .product-single.overriden .popup-container.-no-background .initials-container.bold_options_input_container {
      display: flex;
      margin-top: 15px; }
    .product-single.overriden .popup-container.-no-background .engraved-message-container.bold_options_input_container {
      display: flex;
      margin-top: 15px;
      margin-bottom: 45px;
      overflow: none !important; }
      .product-single.overriden .popup-container.-no-background .engraved-message-container.bold_options_input_container div:first-child {
        flex-grow: 1; }
      .product-single.overriden .popup-container.-no-background .engraved-message-container.bold_options_input_container div:nth-child(2) {
        flex-grow: 9;
        margin-top: -5px; }
    .product-single.overriden .popup-container.-no-background .bold-option-modal-controls-container {
      text-align: center; }
      .product-single.overriden .popup-container.-no-background .bold-option-modal-controls-container .close-modal, .product-single.overriden .popup-container.-no-background .bold-option-modal-controls-container .save-option {
        font-family: "Proxima Nova Regular";
        margin: 10px;
        letter-spacing: 2.4px;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        border: none;
        border-radius: 0;
        font-size: 11px;
        font-weight: 600;
        font-style: normal;
        white-space: nowrap;
        width: 200px;
        height: 34px;
        line-height: normal;
        display: inline-block;
        padding: 10px 4px; }
      .product-single.overriden .popup-container.-no-background .bold-option-modal-controls-container .save-option {
        background-color: #4a453f;
        color: #ffffff;
        border: 1px solid #4a453f; }
      .product-single.overriden .popup-container.-no-background .bold-option-modal-controls-container .close-modal {
        background-color: #ffffff;
        color: #4a453f;
        border: 1px solid #4a453f; }
  .product-single.overriden .gift-wrap-modal .bold_option_value {
    margin: 0px;
    width: 166px !important;
    display: inline-block !important; }
    .product-single.overriden .gift-wrap-modal .bold_option_value .bold_option_value_swatch {
      height: 166px !important; }
    .product-single.overriden .gift-wrap-modal .bold_option_value .bold_option_swatch_title {
      padding-top: 5px !important;
      padding-bottom: 40px !important; }
  .product-single.overriden .gift-wrap-modal .bold_option_value:nth-of-type(2n) {
    margin: 0px 30px; }

.wrapping-selected {
  border: 1px solid darkgray; }

.initials-label {
  font-family: "Proxima Nova Regular" !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  color: #4a453f !important; }

.popup-container.-no-background {
  background: transparent;
  position: fixed !important; }

.blog-post-image {
  height: 100%;
  width: 100%; }

.logos-image-container {
  text-align: center;
  padding-top: 70px; }

#modals span {
  overflow: auto; }

.index-section-2 {
  margin-top: 60px;
  margin-bottom: 50px; }
  .index-section-2 .text-container {
    text-align: center;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto; }
    .index-section-2 .text-container .index-section-2-title {
      font-style: normal;
      line-height: 1;
      letter-spacing: normal;
      text-align: center;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      color: #4a453f; }
    .index-section-2 .text-container p {
      font-size: 18px;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      color: #4a453f;
      line-height: 1.12;
      letter-spacing: normal;
      font-stretch: normal;
      font-style: normal;
      font-weight: normal; }

@media only screen and (min-width: 1152px) {
  .index-section-2 {
    height: 60vh !important; } }
@media only screen and (min-width: 1252px) {
  .index-section-2 {
    height: fit-content !important; } }
@media only screen and (min-width: 1472px) {
  .index-section-2 {
    height: fit-content !important; } }
@media only screen and (max-width: 1151px) {
  .index-section-2 {
    height: 0 !important; } }
.collection-products-container .grid__item {
  padding: 0 10px; }
  .collection-products-container .grid__item .grid-view-item__image-wrapper:hover .overlay {
    opacity: 1; }
    .collection-products-container .grid__item .grid-view-item__image-wrapper:hover .overlay span {
      background-color: #4a453f;
      opacity: 0.6;
      padding: 20px 0;
      font-size: 11.55px; }
  .collection-products-container .grid__item .grid-view-item__image-wrapper:hover .slider-images .slick-arrow.slick-next {
    right: 10px;
    z-index: 3; }
  .collection-products-container .grid__item .grid-view-item__image-wrapper:hover .slider-images .slick-arrow.slick-prev {
    left: 10px;
    z-index: 3; }
  .collection-products-container .grid__item .grid-view-item__image-wrapper:hover .slider-images .slick-arrow img {
    opacity: 1; }
  .collection-products-container .grid__item .grid-view-item__image-wrapper:hover .slider-images .slick-arrow:before {
    content: '';
    color: transparent; }
  .collection-products-container .grid__item .grid-view-item__image-wrapper .slider-images img {
    width: 100%; }
.collection-products-container#home-seasonal-products .grid__item {
  margin-bottom: 36px; }

/* @include media-query($medium-up) { */
.collection-product-title-container {
  margin-bottom: 40px; }

.collection-product-container {
  width: 33%;
  float: left;
  padding: 0 1%; }

/* }
 */
@media only screen and (max-width: 900px) {
  .index-section-2 {
    height: 0 !important; }

  .collection-product-title-container p {
    font-size: 24px !important;
    line-height: 1.4 !important; }

  .product-single.overriden .popup-container.-no-background .bold_option_value_swatch {
    height: 120px !important; }

  .collection-product-container {
    width: 50%;
    /*     .product-1 {
          padding-left: 0 !important;
          padding-right: 10px !important;
        }
        
        .product-2 {
          padding-left: 10px !important;
          padding-right: 0 !important;
        }
        
        .product-3 {
          padding-left: 0 !important;
          padding-right: 10px !important;
          margin-top: 30px;
        }
        
        .product-4 {
          padding-left: 10px !important;
          padding-right: 0 !important;
          margin-top: 30px;
        } */ }
    .collection-product-container:nth-of-type(3) {
      clear: both; } }
@media only screen and (min-width: 900px) and (max-width: 989px) {
  .index-section-2 {
    height: 47vh !important; } }
.home-page-learn-more-btn {
  font-family: "Proxima Nova Regular";
  margin: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
  width: 222px;
  line-height: normal;
  display: inline-block;
  padding: 12px 14px;
  margin: 0 auto;
  margin-top: 30px;
  border: none;
  outline: none;
  background-color: #4a453f;
  color: white; }

/*@media only screen and (max-width: 1151px) {*/
.bold_option_value_swatch {
  min-height: 100px !important; }
  .bold_option_value_swatch span {
    background-size: cover !important; }

/*}*/
@media only screen and (max-width: 900px) {
  .top-bar-cart {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200; } }
.bold_option_uploadfile {
  display: none !important; }

/*.uf_713220_311837 {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}*/
.bold-option-imageupload-text {
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-size: 13px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 1.15;
  letter-spacing: normal;
  color: #4a453f;
  width: 360px;
  margin: 20px auto 40px auto; }

@media only screen and (max-width: 900px) {
  .bold-option-imageupload-text {
    width: 200px; }

  .close-modal {
    margin-left: 0 !important; }

  .save-option {
    margin-left: 0 !important; } }
.bold_option_value_price {
  font-family: "Proxima Nova Regular", sans-serif !important;
  font-size: 13px !important;
  font-stretch: normal;
  line-height: 1.13 !important;
  letter-spacing: 2px !important;
  color: #4a453f !important;
  font-weight: 500 !important;
  font-style: normal;
  display: inline !important;
  margin-left: 7px; }

.branding-option-description {
  margin: 15px 10px 20px 10px;
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: #4a453f; }

@media only screen and (max-width: 900px) {
  .branding-option-description {
    margin: 15px 0 20px 0;
    font-size: 14px; } }
.branding-option-container input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.branding-option-container label {
  display: block;
  border: solid 0.5px #e4e4e4;
  margin: auto;
  padding-top: 8px;
  padding-left: 50px;
  width: 200px;
  height: 35px;
  background-image: url("https://i.imgur.com/SewTmDO.jpg");
  background-repeat: no-repeat;
  background-size: 25px 23px;
  background-position: 15px 7px;
  color: #4a453f;
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.13;
  letter-spacing: normal; }

.added-product {
  float: right;
  width: 49%;
  display: none; }

@media only screen and (max-width: 767px) {
  .added-product {
    width: 100%; } }
.added-product-text {
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  text-align: center;
  color: #4a453f;
  margin: 0;
  padding: 0; }

.added-product-link {
  font-family: "Proxima Nova Regular";
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 2.4px;
  text-align: center;
  color: #4a453f;
  display: block;
  padding-top: 8px;
  cursor: pointer; }

.gift-new-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: center;
  color: #4a453f; }

.gift-new-paragraph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  letter-spacing: normal;
  text-align: center;
  color: #4a453f;
  padding-bottom: 10px; }

.gift-new-text {
  text-align: center;
  width: 425px; }

.gift-section-1 {
  display: flex;
  height: 70vh;
  background-color: #f8f6f4; }

.gift-section-2 {
  padding-top: 60px;
  margin-bottom: 10px;
  border-top: solid 1px #e5e2dd; }
  .gift-section-2 .text-container {
    text-align: center;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }
    .gift-section-2 .text-container .gift-section-2-title {
      font-size: 32px;
      font-weight: 500;
      font-style: normal;
      line-height: 1;
      letter-spacing: normal;
      text-align: center;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      color: #4a453f;
      margin-bottom: 25px; }
    .gift-section-2 .text-container p {
      font-size: 18px;
      font-family: 'Cormorant Garamond';
      letter-spacing: 0;
      color: #4a453f;
      line-height: 1.12;
      letter-spacing: normal;
      font-stretch: normal;
      font-style: normal;
      font-weight: normal;
      text-align: left; }
    .gift-section-2 .text-container a {
      text-decoration: underline;
      color: #4a453f; }
    .gift-section-2 .text-container p.gift-section2-p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-weight: normal;
      font-style: italic;
      font-stretch: normal;
      line-height: 1.27;
      letter-spacing: normal;
      text-align: left;
      color: #4a453f; }

.gift-collection-product-container {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: 0 25px; }

.gift-collection-product-container img {
  height: 300px;
  width: 300px;
  object-fit: cover; }

.gift-section2-product-title {
  font-family: "Proxima Nova Regular";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 2.5px;
  text-align: center;
  color: #4a453f;
  text-transform: uppercase;
  margin-top: 5px; }

@media (max-width: 768px) {
  .collection-product-title-container .gift-section2-product-title {
    font-size: 12px !important; } }

.past-clients-gift {
  max-width: 740px;
  margin: 40px auto 60px auto;
  text-align: center; }
  .past-clients-gift h3, .past-clients-gift .h3 {
    color: #4a453f;
    margin-bottom: 40px;
    font-size: 26px; }
  .past-clients-gift .client {
    font-size: 23px;
    color: #4a453f;
    line-height: 1.8;
    float: left;
    width: 33.333%; }

.index-new-section2 {
  height: fit-content; }

@media screen and (max-width: 767px) {
  .gift-section-1 {
    height: 100%; }

  .gift-collection-product-container {
    max-width: none;
    display: contents; }

  .gift-new-text {
    width: auto;
    margin: 0 40px; }

  .gift-index-new-section2 {
    margin: 0 40px; }

  .past-clients-gift .client {
    width: 50%; }

  .gift-page-contact p {
    margin: 0 40px 40px; }

  .gift-collection-product-container img {
    width: 80vw;
    height: 80vw; }

  .index-new-section2 {
    height: auto; }

  .index-new-section1 .col.col-6 {
    width: 100%; }
    .index-new-section1 .col.col-6:first-child {
      /*           display: flex;
                 */ }
      .index-new-section1 .col.col-6:first-child img {
        /*           	vertical-align: middle; */
        margin: auto; }
    .index-new-section1 .col.col-6:last-child {
      padding: 5vh 0; }
  .index-new-section1 img {
    width: 100%; }
  .index-new-section1 .index-new-text-container {
    margin: 0 auto !important; } }
.cart-page {
  width: 100%;
  background-color: #f8f6f4; }

.cart-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  position: relative; }

.chart-product-section {
  position: relative;
  border-collapse: separate;
  border-spacing: 0 20px;
  background-color: #f8f6f4;
  margin-top: -19px; }

.order_summary .grid__item {
  background-color: white;
  border: solid 1px #f2efeb  !important;
  padding: 30px 30px 0 30px !important; }

.cart-headline-container1 {
  float: left;
  width: 60%; }

.cart-headline-container2 {
  float: right;
  width: 35%; }

.cart-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #504e42;
  margin: 0;
  margin-bottom: 15px; }

.multiship-input {
  float: right; }

.multiship-input label {
  font-family: "Proxima Nova Regular";
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: right;
  color: #4a453f;
  padding-right: 10px;
  padding-left: 7px;
  user-select: none; }

.cart-headline-container1 .cart-headline {
  display: inline;
  padding-left: 10px; }

.cart-flex-item {
  padding: 10px !important; }

.cart-instructions-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #504e42 !important;
  padding-left: 10px;
  margin-bottom: 15px; }

.cart-instructions-paragraph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4a453f;
  padding-left: 10px;
  margin-bottom: 10px; }

.list-view-item__title a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #504e42;
  display: block;
  margin-top: 10px; }

/*.removeItem{
  margin-top:-70px !important;
}*/
.cart-main-nmb {
  position: absolute;
  top: 20px;
  right: 18px;
  font-family: "Proxima Nova Regular"; }

.cart-side-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #504e42; }

.cart-side-text span:first-child {
  font-style: italic; }

.cart-nmb-1, .cart-nmb-2 {
  display: inline;
  float: right;
  padding-left: 40px; }

.cart-nmb-input {
  width: 30px;
  height: 20px;
  border: 1px solid #f2efeb;
  font-family: "Proxima Nova Regular";
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1.2px;
  text-align: center;
  color: #504e42; }

.cart-checkout {
  width: 90%;
  margin: 30px 5% 0 5%;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "Proxima Nova Regular";
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 2.2px;
  text-align: center;
  color: #ffffff; }

.additional-checkout-buttons .additional-checkout-button {
  min-width: none;
  max-width: none;
  width: 90% !important;
  margin: 10px 5% 0 5%; }

.order_summary .grid__item .subtotal-price {
  margin-bottom: 30px !important; }

.cart-table {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  font-family: "Proxima Nova Regular";
  font-size: 11px;
  font-weight: 300 !important;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  color: #4a453f;
  background-color: white;
  border: solid 0.5px #d5cbbf; }

.cart-table tr th {
  text-transform: uppercase;
  font-size: 12px;
  background-color: #f2efeb; }

#ms__toggle-box {
  background-color: #f8f6f4 !important;
  position: absolute;
  right: 40%;
  top: 25px; }

#ms__toggle-box input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-position: right center;
  background: url(//simoneleblanc.com/cdn/shop/t/182/assets/off.svg?v=153327244265900125541701727705) no-repeat;
  width: 15px;
  height: 15px !important;
  border: none;
  margin-right: 8px !important; }

#ms__toggle-box input:checked {
  background: url(//simoneleblanc.com/cdn/shop/t/182/assets/on.svg?v=102777836023296874441701727705) no-repeat;
  width: 15px;
  height: 15px; }

#ms__toggle-box label {
  font-family: "Proxima Nova Regular";
  font-size: 12px !important;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-align: right;
  color: #4a453f;
  padding-right: 10px;
  padding-left: 7px;
  text-transform: uppercase;
  line-height: 13px !important;
  user-select: none; }

.cart-flex-item .removeItem {
  position: absolute;
  bottom: 40px;
  right: -5px;
  margin: 0 !important; }

.hide_under500.cart-nmb-1::before {
  content: 'x';
  opacity: 0;
  margin-right: 20px;
  font-size: 13px;
  position: absolute;
  top: 1px;
  right: 20%; }

.hide_under500.cart-nmb-1 {
  font-size: 13px;
  margin-top: 2px;
  letter-spacing: 1.5px; }

.cart__line {
  border: solid 0.5px #f2efeb;
  clear: both;
  margin: 4px 0 7px 0; }

.cart__shipping p {
  font-size: 12px;
  color: #504e42; }

.cart__text-it {
  font-style: italic;
  display: inline-block;
  margin-top: 10px; }

.cart_item_total {
  float: right;
  font-family: "Proxima Nova Regular";
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  color: #504e42; }

.order_summary .grid__item div div {
  clear: both;
  height: 30px;
  width: 100%; }

.cart__item-title {
  float: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #504e42; }

#shopify-section-cart-template table {
  float: left; }

.cart-checkout-m {
  display: none;
  width: 90%;
  margin: 30px 5% 0 5%;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "Proxima Nova Regular";
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 2.2px;
  text-align: center;
  color: #ffffff; }

.cart-checkout-m:hover,
.cart-checkout:hover {
  opacity: 0.5; }

@media screen and (max-width: 900px) {
  .cart-page {
    margin: -20px !important;
    width: auto; }

  .cart__image {
    display: none !important; }

  .cart-headline-container1 {
    width: 100%;
    text-align: center; }

  .cart-headline-container2 {
    display: none; }

  .order_summary {
    float: none !important;
    margin: 0 !important; }

  .order_summary .grid__item {
    width: 95%;
    width: -webkit-fill-available;
    margin: 0 10px !important; }

  .order_summary .grid__item {
    padding: 30px 20px 0 20px !important; }

  .cart__shipping {
    padding-bottom: 10px; }

  .cart-instructions-headline {
    text-align: center;
    padding-left: 0;
    font-size: 20px; }

  .cart-instructions {
    margin: 0 10px !important; }

  .cart__row {
    margin: 0 !important;
    border: 0;
    padding: 3px 10px; }

  .chart-product-section {
    margin-top: 0; }

  .cart-flex-item {
    padding: 15px !important; }

  .cart-flex-item .removeItem {
    position: relative;
    visibility: visible;
    bottom: -15px;
    right: 0; }

  .hide_under500.cart-nmb-1::before {
    right: 13%; }

  .cart-flex-item .removeItem a {
    background-color: transparent; }

  span.cross-remove {
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
    width: 100%; }

  #shopify-section-cart-template table p.removeItem {
    text-align: center !important; }

  .list-view-item__title a {
    font-size: 19px;
    width: 80%;
    margin-top: 4px; }

  .list-view-item__title {
    margin-top: 0;
    position: relative; }

  .cart-main-nmb {
    position: relative;
    top: 0;
    right: 0;
    margin: 10px 0;
    width: 65%;
    height: 25px; }

  .hide_under500.cart-nmb-1 {
    visibility: visible; }

  .cart__meta-text {
    text-align: left;
    font-size: 15px;
    color: #504e42;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    position: absolute;
    width: 90vw; }

  .cart__image-mobile {
    width: 80px;
    height: 80px;
    object-fit: cover; }

  .cart-headline {
    font-size: 22px; }

  .cart__continue--large {
    width: 280px;
    margin: 0 auto; }

  .cart-checkout {
    width: 280px;
    /*margin:0 auto;*/ }

  .additional-checkout-buttons .additional-checkout-button {
    width: 280px !important;
    margin-left: 5% !important; }

  .bold_options.bold_options_loaded {
    padding-left: 8% !important;
    padding-right: 0px !important; }

  .product-single.overriden .product-form__item--submit .bold_options.bold_options_loaded .bold_option_set {
    margin-right: 8%; }

  .product-single.overriden .product-form__item--submit .bold_option.bold_option_swatch, .product-single.overriden .product-form__item--submit .bold_option.bold_option_uploadfile {
    margin-bottom: 0 !important; }

  .product-single.overriden .product-form__item--submit .bold_option_title {
    padding: 10px 2px; }

  .bold_option_set, .bold_option_set_custom {
    width: 40% !important; }

  .mobile-pdetail .cart__qty {
    margin-bottom: 0 !important;
    width: 100% !important;
    position: relative;
    float: none !important; }

  .cart-nmb-input {
    border: 1px solid #f2efeb !important;
    position: absolute;
    left: 31%;
    top: -35px; }

  .cart-price-new {
    position: absolute;
    top: 0px;
    right: -15px; }

  .cart__image-wrapper .mobile-pdetail {
    width: 100% !important; }

  .cart-checkout-m {
    display: block;
    width: 280px;
    margin: 0 auto; }

  .cart-checkout {
    display: none; }

  .cart__footer {
    padding-top: 20px; }

  .desktop-input {
    display: none; } }
.desktop-input {
  display: block; }

.image-cover {
  height: 70vh;
  width: 102vw;
  overflow: hidden;
  position: absolute; }

.image-cover img {
  width: 102vw; }

.text-cover {
  z-index: 100;
  position: relative;
  bottom: 48vh;
  right: -22vw; }

@media screen and (max-width: 900px) {
  .image-cover {
    position: static; }

  .text-cover {
    position: static;
    bottom: 0;
    right: 0;
    margin-top: 50px; } }
/*============================================================================
  Multishyp styles
==============================================================================*/
@keyframes modalShow {
  0% {
    margin-top: -100px; }

  100% {
    martin-top: 0; } }

@keyframe modalHide {
  0% {
    margin-top: 0; }

  100% {
    margin-top: -100px; } }

.ms__nav {
  text-alighn: left;
  margin: 0;
  padding: 0; }

.ms__nav li {
  display: inline-block; }

.ms__nav li a {
  padding: 10px; }

.ms__modal-bg {
  position: fixed;
  margin-top: -100px;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.ms__modal-bg.modal-open {
  display: inline-block;
  background: rgba(43, 46, 56, 0.9); }

.ms__modal-bg:hober {
  cursor: pointer; }

.ms_modal {
  display: none;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  top: 200px;
  vertical-align: top;
  margin-bottom: 10px;
  padding: 35px;
  color: #2b2e38;
  background: #fff;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-animation-duration: .5s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalHide;
  animation-name: modalHide;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.ms__modal.modal-open {
  display: inline-block;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalShow;
  animation-name: modalShow;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.ms__modal-bg:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

.ms__prop {
  margin: 5px 0; }

@media only screen and (min-width: 641px) {
  .ms__address-modal {
    max-width: 700px; } }
.ms__tax-line {
  display: none !important; }

.ms__show-tax .ms__tax-line {
  display: block !important; }

.ms__address-modal h2, .ms__address-modal .h2 {
  padding: 0 40px; }

.ms__address-modal .bottom-bar {
  background: #fff;
  padding: 15px 40px;
  text-align: right; }

.ms__address-modal .bottom-bar .btn-default {
  display: inline-block; }

.ms__address-modal .tab-content {
  padding: 15px 40px;
  background: #f9f9f9; }

.ms__address-modal .ms__nav > li > a {
  font-weight: bold;
  color: #999;
  border: none; }

.ms__address-modal .ms__nav > li.active > a {
  font-weight: bold;
  color: #333;
  border-top: 3px solid #999; }

.ms__address-modal .ms__nav > li.active > a:hover, .ms__address-modal
.ms_nav > li.active > a:focus, .ms__address-modal ms__nav > li.active > a:visited {
  border-top: 3px solid #999; }

.ms__address-modal .ms__nav > li > a:focus, .ms__address-modal .ms__nav > li > a:hover {
  border: 0px;
  background: transparent; }

.ms__address-modal .ms__nav {
  padding-left: 0; }

.ms__address-modal .ms__nav > li.active > a, .ms__address-modal
.ms__nav > li.active > a:focus, .ms__adress-modal .ms__nav > li.active > a:hover {
  background-color: #f9f9f9; }

.ms__message-modal {
  display: none;
  position: fixed;
  width: 700px;
  height: auto;
  background: #fff;
  border-radius: 5px;
  margin-left: -350px;
  left: 50%;
  top: 100px;
  z-index: 9999;
  -webkit-box-shadow: 3px 17px 30px 0px rgba(50, 50, 50, 0.67);
  -moz-box-shadow: 3px 17px 30px 0px rgba(50, 50, 50, 0.67);
  box-shadow: 3px 17px 30px 0px rgba(50, 50, 50, 0.67); }

.ms__message-modal.modal-open {
  display: block;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: modalShow;
  animation-name: modalShow;
  -webkit-animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.ms__no-animation .ms__modal {
  animation: none !important;
  animation-duration: 0 !important;
  animation-name: none !important; }

.ms__message-modal h2, .ms__message-modal .h2 {
  padding: 0 40px; }

.ms__message-modal .bottom-bar {
  background: #fff;
  padding: 15px 40px;
  text-align: right; }

.ms__message-modal .bottom-bar .btn-default {
  display: inline-block; }

.ms__saved-address {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 1px;
  width: 100%;
  display: inline-block; }

.ms__saved-address:hover, .ms__saved-address.selected {
  background: #f7f7f7;
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 40px #e6e6e6;
  -moz-box-shadow: inset 0 0 40px #e6e6e6;
  box-shadow: inset 0 0 40px #e6e6e6; }

.ms__saved-address:active, .ms__saved-address:focus {
  background: #ececec;
  -webkit-box-shadow: inset 0 0 40px #e6e6e6;
  -moz-box-shadow: inset 0 0 40px #e6e6e6;
  box-shadow: inset 0 0 40px #e6e6e6; }

.ms__saved-address p {
  margin: 0; }

.ms__custom-address input {
  padding: 10px 18px;
  wifth: 100%;
  margin-bottom: 5px; }

.ms__custom-address select {
  padding: 10px 18px;
  width: 100%;
  margin-bottom: 5px; }

.ms__tab {
  display: none; }

.ms__tab.active {
  display: block; }

.ms__line .error {
  border: 1px solid red;
  color: red; }

/*multiship*/
/*

#msGroups{
  background-color:#f8f6f4;
  max-width:none !important;
  width:100% !important;
}

#msCrumbs{
  display:none !important;
}

.ms__item-title{
  display:table-cell;
}

.ms__cart-meta-text{
  display:table-cell;
}

.ms__cart-image-wrapper{
  display:none;
}

.ms__cart-meta{
  background-color:white;
  width:300% !important;
  display:table;
}*/
.index-new-part13 {
  padding-right: 20px; }
  @media screen and (max-width: 780px) {
    .index-new-part13 {
      padding-right: 0; } }

div#shopify-section-1505738598386 {
  display: block;
  clear: both; }

/* footer klaviyo */
#klaviyo_embed_footer .email {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 0.5px solid #979797;
  border-radius: 0;
  margin-bottom: 0; }
#klaviyo_embed_footer .klaviyo_field_group {
  display: flex; }
#klaviyo_embed_footer .email:not(:placeholder-shown) + button.klaviyo_submit,
#klaviyo_embed_footer .email:focus + button.klaviyo_submit {
  display: block; }
#klaviyo_embed_footer .messaging {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: normal;
  font-style: italic;
  line-height: normal;
  letter-spacing: normal;
  color: #b43939;
  display: block;
  width: 100%;
  clear: both;
  margin-top: -10px;
  padding-left: 7px; }
#klaviyo_embed_footer button.klaviyo_submit {
  letter-spacing: 1.8px;
  width: 25%;
  float: left;
  font-style: normal;
  background: transparent;
  font-size: 10px;
  color: #4a453f;
  font-family: "Proxima Nova Regular";
  text-transform: uppercase;
  display: none;
  margin-top: 5px;
  border: 0;
  border-bottom: 0.5px solid #979797;
  padding: 5px 0;
  font-weight: normal;
  border-radius: 0;
  margin-top: 0; }

/* end of klaviyo footer */
/* PULL BELOW INTO REPO */
.common-pages .page-content {
  max-width: 700px;
  margin: auto;
  margin-bottom: 100px;
  font-family: 'Cormorant Garamond';
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.31;
  letter-spacing: normal;
  color: #4a453f; }
  .common-pages .page-content p {
    font-family: 'Cormorant Garamond';
    letter-spacing: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: normal;
    color: #4a453f; }

/* Autocomplete Styles */
.autocomplete-form {
  position: relative; }

.autocomplete-form .sea-placeholder {
  margin-left: 0; }

.autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 15px); }
  .autocomplete-list li {
    line-height: 2; }
  .autocomplete-list li:hover {
    opacity: 0.5; }

/* End Autocomplete Styles */
/* PULL INTO REPO 4-29-20 */
.menu-container.active {
  z-index: 999999999999999999; }

@media screen and (max-width: 780px) {
  .site-header {
    z-index: 999999999; } }

/* PULL INTO REPO 4-29-20 */
/* Homepage Styles End */
/* Top Bar Styles Start */
.main-menu_fixed.with-announcement, .site-header.fx-header {
  top: 41px; }

@media (min-width: 902px) {
  .site-header.center-heading {
    top: 0px;
    padding: 70px 0 10px; } }
@media (max-width: 901px) {
  .site-header.center-heading {
    top: 42px; } }
@media (min-width: 902px) {
  .site-header.center-heading .top-bar {
    top: 70px; } }
.site-header.center-heading .top-bar.nav-fixed {
  top: 25px !important; }

#shopify-section-announcement-bar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999999999999; }

.section-topbar {
  padding: 13px 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Proxima Nova Regular";
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600; }

.section-topbar.marquee-text {
  padding: 12px 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  text-transform: uppercase;
  font-family: "Proxima Nova Regular";
  letter-spacing: 2px;
  font-size: 12px; }
  .section-topbar.marquee-text a.marquee-text, .section-topbar.marquee-text span.marquee-text {
    display: inline-block;
    padding-left: 100%;
    will-change: transform;
    animation: marquee 15s linear infinite; }

.mobile-nav-wrapper.is-transitioning {
  display: none !important; }

@media (max-width: 480px) {
  .desktop-topbar {
    display: none !important; } }
@media (min-width: 481px) {
  .mobile-topbar {
    display: none !important; } }
@keyframes marquee {
  0% {
    transform: translate(0, 0); }

  100% {
    transform: translate(-100%, 0); } }

/* Top Bar Styles End */
/* Feature Banner Video Styles Start */
.feature-banner-video {
  width: 100%;
  position: relative; }
  .feature-banner-video video {
    width: 100%; }
  .feature-banner-video .feature-banner-text-main {
    margin: 0 4%; }
    .feature-banner-video .feature-banner-text-main .feature-banner-text {
      position: absolute;
      z-index: 99;
      bottom: 30%; }
      .feature-banner-video .feature-banner-text-main .feature-banner-text h3, .feature-banner-video .feature-banner-text-main .feature-banner-text .h3 {
        margin-bottom: 20px; }
      .feature-banner-video .feature-banner-text-main .feature-banner-text h5, .feature-banner-video .feature-banner-text-main .feature-banner-text .h5 {
        margin-bottom: 40px; }

@media screen and (max-width: 767px) {
  .feature-banner-video {
    width: 100%;
    position: relative; }
    .feature-banner-video video {
      width: 100%; }
    .feature-banner-video .feature-banner-text-main {
      margin: 0; }
      .feature-banner-video .feature-banner-text-main .feature-banner-text {
        padding: 4% 4% 10%;
        position: unset;
        background-color: #4a453f;
        z-index: 99;
        bottom: 30%; }
        .feature-banner-video .feature-banner-text-main .feature-banner-text h3, .feature-banner-video .feature-banner-text-main .feature-banner-text .h3 {
          margin-bottom: 20px; }
        .feature-banner-video .feature-banner-text-main .feature-banner-text h5, .feature-banner-video .feature-banner-text-main .feature-banner-text .h5 {
          margin-bottom: 40px; }
        .feature-banner-video .feature-banner-text-main .feature-banner-text .index-new-btn {
          background-color: #ffffff;
          color: #4a453f; } }
/* Feature Banner Video Styles End */
/* Homepage Video Slide Start */
.slide-item video {
  max-width: 100%;
  width: 100%; }

@media screen and (max-width: 901px) {
  .shopify-section.intro-home-slider {
    display: block; } }
/* Homepage Video Slide End */
/**************** Top Bar Styles Start *****************/
.section-topbar {
  padding: 13px 15px; }
  .section-topbar a {
    display: block;
    margin: 0 auto;
    width: 39ch; }
    @media (min-width: 902px) {
      .section-topbar a {
        width: auto; } }

@media screen and (max-width: 901px) {
  .site-header.fx-header {
    top: 0; }

  #PageContainer {
    padding-top: 70px; }

  .topbar-enabled #PageContainer {
    padding-top: 93px; }
  .topbar-enabled .site-header.fx-header {
    top: 42px; } }
@media screen and (max-width: 660px) {
  .topbar-enabled .site-header.center-heading {
    z-index: 99999999999999999999999999999999999999; } }
/**************** Top Bar Styles End *****************/
/**************** AjaxCart Styles Start ******************/
#CartDrawer {
  width: 550px;
  max-width: 100vw;
  padding: 15px;
  z-index: 999999999999;
  display: none;
  position: fixed;
  right: 10px;
  top: 105px;
  background: #f8f7f5;
  border: 1px solid #fff;
  max-height: 80vh;
  overflow: auto; }
  @media only screen and (max-width: 768px) {
    #CartDrawer {
      left: 0;
      right: 0;
      top: 120px;
      max-width: 100vw;
      max-height: calc(100vh - 125px);
      width: 100%; } }
  #CartDrawer .cd-header {
    position: relative;
    height: 25px;
    margin-bottom: 10px; }
    #CartDrawer .cd-header h3.cart-headline, #CartDrawer .cd-header .cart-headline.h3 {
      font-family: "Proxima Nova Regular";
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin: 0;
      line-height: 25px; }
    #CartDrawer .cd-header #close-cart {
      position: absolute;
      right: 0;
      top: 0px;
      background: transparent;
      width: 20px;
      height: 20px;
      cursor: pointer;
      z-index: 8040;
      font-size: 20px;
      color: #000;
      text-align: center;
      text-decoration: none;
      transition: all .25s ease-in-out;
      line-height: 26px; }
      #CartDrawer .cd-header #close-cart::before {
        content: "";
        display: block;
        font-weight: 600;
        font-size: 50px;
        background-image: url(//simoneleblanc.com/cdn/shop/t/182/assets/close_x_x75.png?v=73710455768601998731701727704);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 100%;
        height: 100%; }
  #CartDrawer .all-items .individual-item {
    background: #fff;
    padding: 8px;
    margin-bottom: 15px;
    width: 100%; }
  #CartDrawer .all-items .product-section {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      #CartDrawer .all-items .product-section {
        align-items: stretch;
        align-content: stretch; } }
  #CartDrawer .all-items .product-details {
    display: flex;
    align-items: center;
    flex-basis: 70%; }
    @media only screen and (max-width: 768px) {
      #CartDrawer .all-items .product-details {
        align-items: flex-start;
        align-content: flex-start; } }
  #CartDrawer .all-items .title-wrapper {
    margin-left: 20px; }
    #CartDrawer .all-items .title-wrapper a {
      font-size: 17px; }
      @media only screen and (max-width: 768px) {
        #CartDrawer .all-items .title-wrapper a {
          font-size: 15px; } }
    #CartDrawer .all-items .title-wrapper .cart__meta-text {
      font-size: 15px; }
  #CartDrawer .all-items .product-price {
    margin-right: 10px;
    font-family: "Proxima Nova Regular";
    font-size: 16px;
    font-weight: 400; }
    @media only screen and (max-width: 768px) {
      #CartDrawer .all-items .product-price {
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        #CartDrawer .all-items .product-price .btn {
          background-color: transparent; } }
    #CartDrawer .all-items .product-price span.cross-remove {
      font-size: 14px; }
  #CartDrawer .subTotal-section {
    width: 50%;
    margin-left: auto; }
    @media only screen and (max-width: 768px) {
      #CartDrawer .subTotal-section {
        width: 100% !important; } }
    #CartDrawer .subTotal-section .subtotal-price {
      margin-right: 15px; }
    #CartDrawer .subTotal-section .cart__subtotal-title {
      float: none;
      font-family: 'Cormorant Garamond', serif; }
      #CartDrawer .subTotal-section .cart__subtotal-title .bold_cart_total {
        display: none !important; }
    #CartDrawer .subTotal-section .cart__subtotal {
      font-size: 15px; }
    #CartDrawer .subTotal-section .cart__shipping p {
      font-size: 16px;
      font-family: 'Cormorant Garamond', serif; }
    #CartDrawer .subTotal-section .cart-checkout-m {
      display: block;
      margin-top: 0;
      margin-right: 15px; }

/**************** AjaxCart Styles End ******************/
.sec_evmoverlay {
  padding-top: 105px; }
  @media only screen and (max-width: 768px) {
    .sec_evmoverlay {
      padding-top: 150px; } }

@media screen and (max-width: 768px) {
  .intro-slider-container .slide-item .overlay-box {
    position: relative;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    margin-top: 25px; } }

.section-header {
  margin-bottom: 40px; }

@media screen and (max-width: 768px) {
  .section-header {
    margin-top: 40px; } }

/** Instagram Popup **/
.sec_evmcontent .evm_slide_prev {
  background-image: url(//simoneleblanc.com/cdn/shop/t/182/assets/right-arrow-new_x75.png?v=14668968928401353531701727705);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  width: 15px;
  height: 45px;
  left: 5px; }
  @media only screen and (min-width: 901px) {
    .sec_evmcontent .evm_slide_prev {
      top: calc(50% - 22.5px); } }
  .sec_evmcontent .evm_slide_prev i {
    opacity: 0; }

.sec_evmcontent .evm_slide_next {
  background-image: url(//simoneleblanc.com/cdn/shop/t/182/assets/right-arrow-new_x75.png?v=14668968928401353531701727705);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 45px; }
  @media only screen and (min-width: 901px) {
    .sec_evmcontent .evm_slide_next {
      top: calc(50% - 22.5px);
      right: calc(40% + 22px); } }
  .sec_evmcontent .evm_slide_next i {
    opacity: 0; }

.evm_left_popup .evm_left_image {
  padding: 25px; }

#sec_evmpopup0 .sec_evmpopup .evm_close {
  top: 10px;
  right: 10px;
  background-image: url(//simoneleblanc.com/cdn/shop/t/182/assets/close_x_x75.png?v=73710455768601998731701727704);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  width: 25px; }
  #sec_evmpopup0 .sec_evmpopup .evm_close i {
    display: none; }

/** End of Instagram Popup **/
@media (max-width: 600px) {
  .template-index .index-section-2 {
    margin-top: 40px; } }
@media (min-width: 768px) {
  .product-template__banner {
    margin: 0px -45px;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-areas: "gallery buy-box" "breadcrumb breadcrumb"; } }
@media (min-width: 1440px) {
  .product-template__banner {
    margin: 0 auto;
    max-width: 1440px; } }

.gallery {
  grid-area: gallery; }

.buy-box {
  grid-area: buy-box;
  max-width: 599px; }

@media (max-width: 750px) {
  .details-2column div {
    grid-template-areas: initial !important; }
    .details-2column div img {
      width: 200px;
      margin: 0 auto; }
    .details-2column div p {
      margin: 20px 0 40px; }
  .details-2column .slick-dots {
    width: 100%; }
    .details-2column .slick-dots .slick-active > button {
      background-color: white;
      border-radius: 100%;
      border: 1px solid #d1b297; }
    .details-2column .slick-dots > li > button {
      background-color: #d1b297;
      border-radius: 100%; }
    .details-2column .slick-dots > li > button:before {
      display: none; } }
.details-2column div {
  display: inline-grid;
  grid-template-areas: "media description";
  column-gap: 30px;
  margin-bottom: 20px; }
  .details-2column div img {
    width: 200px; }

.slick-slider .slick-list {
  transform: scale(1.01); }
