/** Shopify CDN: Minification failed

Line 430:2 Expected identifier but found "*"
Line 1546:2 Expected identifier but found "*"
Line 1626:2 Expected identifier but found "*"
Line 9343:80 Unexpected "#14973435968"
Line 9345:107 Unexpected "#14973435968"
Line 9347:35 Unexpected "#14973435968"
Line 9349:51 Unexpected "#14973435968"
Line 9354:82 Unexpected "#14973435968"
Line 9356:35 Unexpected "#14973435968"
Line 9358:100 Unexpected "#14973435968"
... and 6 more hidden warnings

**/
                                                          /*============================================================================
  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
==============================================================================*/
/*============================================================================
  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 ================*/
/*============================================================================
  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 ================*/
/*$width-site: 1200px;*/
/*$gutter-site: 55px;*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
/*================ 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 ================*/
@import url("https://fonts.googleapis.com/css?family=Lato:300,400");
.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(//legacytouch.com/cdn/shop/t/197/assets/ajax-loader.gif?v=41356863302472015721753732789) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  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; }

.starting-slide.slick-slide.slick-current.slick-active {
  width: 600px !important; }

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

body {
  margin: 0;
  padding: 0 !important; }

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: -$grid-gutter; */
  /*  @include media-query($small) {*/ }
  .grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 989px) {
    .grid {
      margin-left: -22px; } }

.grid__item {
  float: left;
  /*padding-left: $grid-gutter;*/
  width: 100%;
  /*  @include media-query($small) {*/ }
  @media only screen and (max-width: 989px) {
    .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: 749px) {
  /* 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: 750px) {
  /* 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; } }
@media only screen and (max-width: 989px) {
  /* Whole */
  .medium-down--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 749px) {
  /* 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: 750px) {
  /* 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%; } }
@media only screen and (max-width: 989px) {
  /* Halves */
  .medium-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: #3d4246;
  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: rgba(255, 255, 255, 0.1); }

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

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

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

/*================ Typography ================*/
blockquote {
  font-size: 1.125em;
  font-style: normal;
  text-align: left;
  padding: 0 30px;
  margin: 0;
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eee; }
  .rte blockquote {
    border-color: #e8e9eb;
    border-width: 0;
    border-style: solid;
    padding: 30px;
    margin: 0 0 20px;
    border-left: 5px solid #eee; }
  blockquote p + cite {
    margin-top: 12.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,
input,
textarea,
button,
select {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #3d4246;
  line-height: 1.3; }

@media only screen and (max-width: 989px) {
  input,
  textarea,
  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: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-size: 2.1875em;
  text-transform: none;
  letter-spacing: 0; }
  @media only screen and (max-width: 749px) {
    h1, .h1 {
      font-size: 2em; } }

h2, .h2 {
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  @media only screen and (max-width: 749px) {
    h2, .h2 {
      font-size: 1.125em; } }

h3, .h3 {
  font-size: 4rem;
  text-transform: none;
  letter-spacing: 0;
  color: #004070;
  font-family: 'Libre Baskerville', serif; }
  @media only screen and (max-width: 749px) {
    h3, .h3 {
      font-size: 1.25em; } }

h3.gray, .gray.h3 {
  font-size: 3rem;
  color: #6c757c; }

h4, .h4 {
  font-size: 1.0625em; }
  @media only screen and (max-width: 749px) {
    h4, .h4 {
      font-size: 0.9375em; } }

h5, .h5 {
  font-size: 0.9375em; }
  @media only screen and (max-width: 749px) {
    h5, .h5 {
      font-size: 0.8125em; } }

h6, .h6 {
  font-size: 0.875em; }
  @media only screen and (max-width: 749px) {
    h6, .h6 {
      font-size: 0.75em; } }

/*================ RTE headings ================*/
.rte {
  color: #788188;
  /*   margin-bottom: $section-spacing-small; */ }
  .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: 25px;
    margin-bottom: 12.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;
      margin-bottom: 0; }
  .rte li {
    margin-bottom: 4px;
    list-style: disc;
    margin-left: 2em; }
    .rte li:last-child {
      margin-bottom: 0; }

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

/*================ Paragraph styles ================*/
p {
  color: #788188;
  margin: 0 0 11.66667px; }
  @media only screen and (max-width: 749px) {
    p {
      font-size: 0.9375em; } }

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

/*================ Misc styles ================*/
.show-xs {
  display: none; }

.fine-print {
  font-size: 0.875em;
  font-style: italic; }

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

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

.address {
  margin-bottom: 25px; }

/*================ Hero and slideshow headers ================*/
.mega-title,
.mega-subtitle {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.1); }

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

.mega-title--large {
  font-size: 2.125em; }
  @media only screen and (min-width: 750px) {
    .mega-title--large {
      font-size: 4.0625em; } }

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

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

/*================ #Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  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; }
  .payment-icons .icon-shopify_pay {
    width: 75px;
    height: auto; }
  .payment-icons .icon-klarna {
    width: 48px;
    height: auto; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 23px;
  height: 23px; }
  @media only screen and (min-width: 750px) {
    .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 ($section-spacing-small / 2) $section-spacing-small; */ }
  .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) {
  padding-bottom: 1px; }

.top-placement .cat-header-text {
  display: none; }

.bottom-placement img, .bottom-placement .ltk-cat-header, .bottom-placement h4, .bottom-placement .h4 {
  display: none; }

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

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

/*================ #Links and Buttons ================*/
a {
  color: #3d4246;
  text-decoration: none; }
  a:hover, a:focus {
    opacity: 0.6; }
  a.classic-link {
    text-decoration: underline; }

a[href^="tel"] {
  color: inherit; }

.site-header__cart, .site-header__search-toggle, .site-header__account {
  color: #3d4246; }

/*================ Buttons ================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
  -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: 1px solid transparent;
  border-radius: 2px;
  padding: 8px 15px;
  background-color: #002f6c;
  color: white;
  font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 14px; }
  @media only screen and (min-width: 750px) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
      padding: 10px 18px; } }
  .btn:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    opacity: 0.6; }
  .btn .icon-arrow-right, .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-right,
  .btn .icon-arrow-left,
  .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-left {
    height: 9px; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded {
    cursor: default;
    opacity: 0.5;
    background-color: #002f6c;
    color: white; }

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

.btn--secondary-accent {
  background-color: white;
  color: #002f6c;
  border-color: #002f6c; }

.btn--small {
  font-family: 'Roboto', sans-serif;
  padding: 8px 10px;
  font-size: 0.75em;
  line-height: 1; }

/*================ Button variations ================*/
@media only screen and (max-width: 749px) {
  .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: 37.5px 0; }
  @media only screen and (max-width: 749px) {
    .return-link-wrapper {
      margin-bottom: -56px; }
      .return-link-wrapper .btn, .return-link-wrapper .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .return-link-wrapper .shopify-payment-button__button--unbranded {
        display: block; } }

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

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

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

.responsive-table tr {
  border-left: 1px solid #e8e9eb;
  border-right: 1px solid #e8e9eb; }

.responsive-table tr:last-child {
  border-bottom: 1px solid #e8e9eb; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
/*@include media-query($small) {*/
@media only screen and (max-width: 989px) {
  .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: 12.5px;
    border: 0;
    margin: 0; }
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 16px;
    padding-right: 10px; }

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 25px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 12.5px;
      right: 12.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 25px;
  padding: 12.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: 749px) {
    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: 1px solid $color-border; */
  border: 1px solid #666;
  background-color: white;
  color: black;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 2px; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #cdcfd3; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #fff;
    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; }
  .product-form input, .product-form
  textarea, .product-form
  select {
    min-height: 44px; }

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;
  background-image: url(//legacytouch.com/cdn/shop/t/197/assets/ico-select.svg?v=155563818344741998551753732789);
  background-repeat: no-repeat;
  background-position: right 10px 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: 750px) {
    select {
      padding-top: 10px;
      padding-left: 18px;
      padding-bottom: 10px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

option {
  color: #3d4246;
  background-color: white; }

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

/*================ 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: 750px) {
    input,
    textarea {
      padding: 10px 18px; } }

/*================ 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,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block;
  width: auto; }

/*================ Form feedback messages ================*/
.note,
.form--success,
.errors {
  padding: 8px;
  margin: 0 0 12.5px; }
  @media only screen and (min-width: 750px) {
    .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: 25px; }

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

.input-group__field,
.input-group__btn .btn,
.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0; }
  @media only screen and (min-width: 750px) {
    .input-group__field,
    .input-group__btn .btn,
    .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
    .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
      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, .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
    border-radius: 0 2px 2px 0;
    white-space: nowrap; }

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

.site-nav {
  position: relative;
  padding: 0;
  text-align: center;
  margin: 25px 0; }
  .site-nav a.site-nav__link--main {
    padding: 3px 5px;
    color: #003f6c;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 600; }
  .site-nav a.site-nav__link--main:hover {
    color: #888; }

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

/*================ 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__link.site-nav--active-dropdown {
    border: 1px solid #e8e9eb;
    border-bottom: 1px solid transparent;
    z-index: 2; }

/*================ 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 30px 11px 0;
  margin: 0;
  /*   z-index: $z-index-dropdown; */
  z-index: 100000;
  text-align: left;
  border: 1px solid #e8e9eb;
  background: white;
  left: -1px;
  top: 41px; }
  .site-nav__dropdown .site-nav__link {
    padding: 8px 15px;
    color: #999999 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0 !important; }
  .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__childlist {
  display: inline-block;
  border: 1px solid #e8e9eb;
  background: white;
  padding: 11px 17px;
  text-align: left; }

.site-nav__childlist-grid {
  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;
  width: auto;
  margin-bottom: -15px; }

.site-nav__childlist-item {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-bottom: 15px; }

.site-nav__child-link--parent {
  font-weight: 700;
  margin: 4px 0; }

.xe-currency {
  margin-top: -2rem; }

#xe-currency-dropdown {
  margin-right: 5rem;
  margin-bottom: 1rem;
  display: block; }

.page-width {
  /*padding-left: $gutter-site;
  padding-right: $gutter-site;*/
  padding-left: 0;
  padding-right: 0;
  /*  @include media-query($small) {*/ }
  @media only screen and (max-width: 989px) {
    .page-width {
      padding-left: 22px;
      padding-right: 22px; } }

.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 750px) {
    .page-container {
      /*     @include transform(translate3d(0, 0, 0)); */ } }

hr {
  margin: 25px 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 25px; }
  @media only screen and (max-width: 749px) {
    .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;
  margin-bottom: -35px; }

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

.grid-view-item__title {
  margin-bottom: 0;
  color: #3d4246;
  /** LTK Custom **/
  text-align: center; }

.grid-view-item__meta .spr-badge {
  text-align: center; }

.grid-view-item__meta .spr-badge-caption {
  /*display: none;*/ }

.product-single__price-product-gift-card .product-price__price {
  text-align: left; }

.product-price__price.product-price__price-product-template-horizontal, .product-price__price.product-price__price-product-template-horizontal--accessories {
  text-align: left; }

s#ComparePrice-product-template-horizontal {
  color: #6b6b6b;
  font-size: 18px; }

/** END LTK Custom **/
.grid-view-item__meta {
  margin-top: 8px; }

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

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

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

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

.grid-view-item__image-wrapper {
  margin: 0 auto 15px;
  position: relative;
  width: 100%; }

.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; }
  .ie9 .grid-view-item__image {
    opacity: 1; }

.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: 750px) {
    .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: 257px; }

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

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 35px; }
  @media only screen and (max-width: 749px) {
    .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: 749px) {
    .list-view-item__title {
      font-size: 0.9375em; } }

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

.list-view-item__on-sale {
  color: #002f6c;
  font-size: 0.9375em; }
  @media only screen and (max-width: 749px) {
    .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: 749px) {
    .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: 749px) {
    .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: #002f6c; }
  @media only screen and (max-width: 749px) {
    .list-view-item__price--reg {
      display: block; } }

@media only screen and (max-width: 749px) {
  .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: 750px) {
      .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: 750px) {
        .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: 750px) {
        .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: $section-spacing-small;
  padding-bottom: $section-spacing-small;*/ }
  @media only screen and (min-width: 750px) {
    .index-section {
      /*padding-top: $section-spacing;
      padding-bottom: $section-spacing;*/ } }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0;
    margin-top: 0rem; }

.index-section--flush + .index-section--flush {
  margin-top: -70px; }

@media only screen and (min-width: 750px) {
  [class*="index-section--flush"] + [class*="index-section--flush"] {
    margin-top: -110px; } }

.index-section--flush:first-child {
  margin-top: -35px; }

@media only screen and (min-width: 750px) {
  [class*="index-section--flush"]:first-child {
    margin-top: -55px; } }

.index-section--flush:last-child {
  margin-bottom: -35px; }

@media only screen and (min-width: 750px) {
  [class*="index-section--flush"]:last-child {
    margin-bottom: -55px; } }

@media only screen and (max-width: 749px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }

.placeholder-svg {
  display: block;
  fill: rgba(120, 129, 136, 0.35);
  background-color: rgba(120, 129, 136, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(120, 129, 136, 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: #788188;
  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: 12.5px 25px; }

.password-message {
  max-width: 500px;
  margin: 37.5px auto 12.5px; }

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

.password__title {
  margin-bottom: 37.5px; }

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

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

.product-single {
  overflow-anchor: none; }

.product-single__title {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.6em;
  font-family: 'Lato', sans-serif;
  font-weight: 300; }

.product-single__price {
  color: #002f6c;
  font-size: 1.375em;
  font-weight: 400;
  /*margin-bottom: $grid-gutter;*/
  margin-bottom: 2px; }
  @media only screen and (max-width: 749px) {
    .product-single__price {
      display: block;
      font-size: 1.125em; } }

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

/*================ Add to cart form ================*/
.product-form {
  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: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  width: auto; }

.product-form--payment-button-no-variants {
  max-width: 400px; }

.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 0px; }
  .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__item--submit {
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px; }

.product-form__item--no-variants {
  /* max-width: 400px;*/ }

.product-form__item--payment-button {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 990px) {
    .product-single--small-image .product-form__item--payment-button, .product-single--full-image .product-form__item--payment-button {
      display: inline-flex;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start; } }
  .product-form__item--payment-button.product-form__item--no-variants {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }

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

.product-form__item--quantity {
  -webkit-flex: 0 0 100px;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px; }

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

.product-form__cart-submit, .shopify-payment-button .shopify-payment-button__button--unbranded {
  /*display: block;*/
  /*width: 50%;*/
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal;
  margin-top: 0px;
  min-height: 44px;
  float: right; }
  .product-single--small-image .product-form__cart-submit, .product-single--small-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--small-image .shopify-payment-button__button--unbranded, .product-single--full-image .product-form__cart-submit, .product-single--full-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--full-image .shopify-payment-button__button--unbranded {
    -webkit-flex: 50%;
    -moz-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    margin-right: 10px; }
  .product-form__item--payment-button .product-form__cart-submit, .product-form__item--payment-button .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-form__item--payment-button .shopify-payment-button__button--unbranded {
    margin-top: 10px; }

.product-single--small-image .shopify-payment-button, .product-single--full-image .shopify-payment-button {
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  flex: 50%; }
.shopify-payment-button .shopify-payment-button__button {
  margin-top: 10px; }
  .product-single--small-image .shopify-payment-button .shopify-payment-button__button, .product-single--full-image .shopify-payment-button .shopify-payment-button__button {
    margin-top: 10px; }
  @media only screen and (min-width: 750px) {
    .shopify-payment-button .shopify-payment-button__button {
      margin-top: 20px; } }
.shopify-payment-button .shopify-payment-button__button--unbranded {
  margin-bottom: 10px; }
  .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
    background-color: #002f6c !important; }
.shopify-payment-button .shopify-payment-button__button--branded {
  border-radius: 2px;
  overflow: hidden; }
.shopify-payment-button .shopify-payment-button__more-options {
  margin: 16px 0 10px;
  font-size: 0.875em;
  text-decoration: underline; }
  .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
    opacity: 0.6; }

.gc-add-to-cart {
  float: left; }

@media only screen and (min-width: 750px) {
  .product-form__cart-submit--small {
    max-width: 300px; } }
.product-single__description {
  margin-top: 30px;
  margin-bottom: 25px; }

/*================ Product Images ================*/
.product-single__thumbnail {
  display: block;
  margin: -2px 0 8px;
  border: 2px solid transparent; }
  .product-single__thumbnail.active-thumb {
    border-color: #3d4246; }

.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 (min-width: 750px) {
  .product-single__thumbnails {
    /*margin-top: $grid-gutter;*/
    margin-top: 1rem; }

  ul.product-single__thumbnails {
    display: inline-block; }

  .product-single__thumbnails.thumbnails-bottom {
    display: none; }

  ul.product-single__thumbnails li {
    width: 100%; }

  .thumbnails-bottom {
    display: none; } }
@media only screen and (max-width: 749px) {
  .product-single__photo--has-thumbnails {
    margin-bottom: 30px; } }
.product-single__photos--full {
  margin-bottom: 30px; }

.product-single__photo-wrapper {
  /*margin: 0 auto;*/
  /*   width: 100%; */
  flex-direction: column;
  display: flex;
  padding: 0 2rem; }

/*.product-single__thumbnails.thumbnails-top {
      display: none;
  }
.product-single__thumbnails.thumbnails-bottom {
      display: inline-block;
}*/
.product-single__photo {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative; }

@media only screen and (max-width: 749px) {
  .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; }
    .slick-slider .product-single__thumbnails-item {
      float: left; }
    .thumbnails-slider--active .product-single__thumbnails-item {
      padding: 5px 0; }

  .product-single__thumbnail {
    margin: 0 auto;
    /*     width: 50px; */ } }
/*================ Template | Collections ================*/
.collection-hero {
  position: relative;
  overflow: hidden;
  /*margin-top: -$gutter-site;*/
  margin-top: -35px;
  margin-bottom: 22px; }
  @media only screen and (min-width: 750px) {
    .collection-hero {
      margin-bottom: 35px; } }

.collection-header-h3 {
  text-align: center;
  font-size: 52px; }

.collection-description {
  margin-bottom: 22px;
  margin-top: 22px; }
  @media only screen and (min-width: 750px) {
    .collection-description {
      margin-bottom: 35px;
      margin-top: 35px; } }

.collection-hero__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  opacity: 1; }
  @media only screen and (max-width: 749px) {
    .collection-hero__image {
      height: 180px; } }

.page-width-hero {
  margin: 0 auto;
  display: block;
  width: auto;
  margin-bottom: 3rem; }

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

.collection-hero__title {
  position: absolute;
  color: white;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media only screen and (min-width: 750px) {
    .collection-hero__title {
      font-size: 2em; } }

.infant-print-collections {
  margin: 0 auto;
  display: block;
  max-height: 1.5rem;
  max-width: 1.5rem; }

.social-sharing {
  margin-bottom: 17.5px;
  margin-top: 17.5px;
  text-align: center;
  float: left;
  width: 100%; }

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

/*================ Cart page ================*/
.cart th,
.cart td {
  border: 0; }
.cart td {
  padding: 22px 0; }
.cart th {
  font-weight: 400;
  padding: 6.25px 0; }
.cart .cart__meta {
  padding: 0 1rem 0 3rem; }
.cart .cart-line-item-title {
  font-weight: 600; }
.cart .cart-line-item-left {
  padding-left: 2.5rem; }

.cart__meta-text {
  padding: 5px 0;
  font-size: 0.875em;
  font-style: italic;
  display: none; }

.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: 75px;
  padding-left: 20px;
  padding-right: 5px; }
  @media only screen and (max-width: 749px) {
    .cart__qty-input {
      padding-top: 2px;
      padding-bottom: 2px; } }

.cart__edit {
  margin-top: 10px; }

.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 p {
  margin-bottom: 0; }
  .cart__row p + p {
    margin-top: 10px; }

.cart__subtotal-title {
  font-size: 1.125em; }

.cart__subtotal {
  padding-left: 12.5px; }
  @media only screen and (min-width: 750px) {
    .cart__subtotal {
      padding-left: 25px;
      min-width: 150px;
      display: inline-block; } }

.cart__savings {
  padding-top: 18px; }

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

.cart__footer {
  padding-top: 35px; }

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

.cart__continue--large {
  margin-right: 10px;
  line-height: 1.2; }

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

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

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

.cart-note__input {
  min-height: 50px;
  width: 100%; }
  @media only screen and (max-width: 749px) {
    .cart-note__input {
      margin-bottom: 40px; } }

.cart__image {
  max-height: 190px;
  min-width: 190px; }

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

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

  .cart__meta {
    max-width: 300px; }

  .cart__remove {
    margin-top: 4px; }

  .cart__qty {
    text-align: right;
    margin-bottom: 5px; } }
@media only screen and (max-width: 749px) {
  .cart table {
    display: block;
    width: 100%; }
  .cart thead {
    display: none; }
  .cart tr,
  .cart tbody {
    width: 100%; }
  .cart tbody {
    display: block; }
  .cart .cart__update-wrapper {
    display: none;
    padding-top: 0;
    padding-bottom: 22px; }

  .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 {
    -webkit-flex: 0 0 85px;
    -moz-flex: 0 0 85px;
    -ms-flex: 0 0 85px;
    flex: 0 0 85px; }

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

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

  .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;
    display: none; } }
.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 ================*/
/***** HEADER *****/
.site-header {
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 0 25px; }
  @media only screen and (max-width: 749px) {
    .site-header {
      border-bottom: 0px solid #e8e9eb;
      padding: 0; } }
  @media only screen and (min-width: 750px) {
    .site-header.logo--center {
      padding-top: 30px; } }

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

.announcement-bar__message {
  font-size: 1em;
  font-weight: 400;
  padding: 10px 0px 10px 15px; }
  @media only screen and (min-width: 750px) {
    .announcement-bar__message {
      padding: 10px 0px 10px 15px; } }

.site-header__logo {
  margin: 15px 0; }
  .logo-align--center .site-header__logo {
    text-align: center;
    margin: 0 auto;
    /*@include media-query($small) {*/ }
    @media only screen and (max-width: 989px) {
      .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: 750px) {
    .site-header__logo-image {
      margin: 0 auto; } }

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

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

/*@include media-query($small) {*/
@media only screen and (max-width: 989px) {
  .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; }

.doubly-wrapper.desktop {
  z-index: 100;
  /* top:-6.5rem;
   right:5% !important;
   position: relative; */
  top: -5rem;
  right: 2% !important;
  position: absolute; }

.doubly-wrapper.mobile {
  position: absolute;
  right: 0;
  top: 0; }

.doubly-nice-select.slim {
  padding: 0 18px 0 0;
  height: 20px;
  line-height: 20px;
  border: 0;
  background: 0 0 !important; }

.doubly-nice-select {
  border: 1px solid #777 !important; }

.currency-switcher {
  background: #6588bc; }
  .currency-switcher .current.notranslate {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 800; }

.doubly-nice-select.currency-switcher.right {
  /*background:#082f6c; */
  background: transparent; }

.label_usd, .label_cad {
  display: none; }

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

img.help {
  max-width: 25px;
  height: 25px;
  margin: 4px 5px 1px 5px; }

img.help:hover {
  cursor: pointer; }

.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: #002f6c;
  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: 750px) {
    .logo--center .site-header__cart-count {
      right: -2px; }
    .logo--left .site-header__cart-count {
      left: 12px;
      top: 4px; } }

/*@include media-query($small) {*/
@media only screen and (max-width: 989px) {
  .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: 750px) {
    .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: 989px) {
  .site-header__logo {
    padding-left: 22px;
    max-width: 165px;
    margin-top: 20px !important; }

  .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; } }
/*@include media-query($small) {*/
/*@include media-query($medium-down) {
  .site-header__logo {
    padding-left: $gutter-site-mobile;
  }

  .site-header__icons {
    padding-right: $gutter-site-mobile;
  }

  .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 & {
      padding: 18px 6px;
    }
  }

  .site-header__logo {
    text-align: left;

    img {
      margin: 0;
    }
  }
}*/
.article--listing {
  padding-top: 25px;
  margin-bottom: 25px; }

.article__title {
  margin-bottom: 11px; }

.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; }
  .grid--blog .article__title {
    width: 95%;
    text-align: center; }
  .grid--blog .article__grid-excerpt {
    width: 90%;
    margin-left: 4%; }
  .grid--blog .list--inline {
    margin-left: 4%; }

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

.article__grid-meta {
  margin-bottom: 55px; }

/*@include media-query($small) {*/
@media only screen and (max-width: 989px) {
  .article__grid-meta--has-image {
    float: left;
    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%;
  /*  @include media-query($small) {*/ }
  @media only screen and (max-width: 989px) {
    .article__grid-image-container {
      float: left;
      margin: 0 0 55px 0; } }
  .article__grid-image-container img {
    display: block; }

.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: 25px; }
  .sidebar__list li {
    margin-bottom: 10px; }

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

.pagination__text {
  padding: 0 12.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-right: 5px;
  margin-bottom: 10px; }
  .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; }

.sharing-text-desktop {
  display: block; }

.sharing-text-mobile {
  display: none; }

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

/*@include media-query($small) {*/
@media only screen and (max-width: 989px) {
  .search-bar__form {
    width: 100%; } }
.search-bar__submit .icon {
  position: relative;
  top: -1px;
  height: 30px; }

.search-bar__submit,
.search-header__submit {
  display: inline-block;
  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 {
  background-color: transparent;
  border-radius: 2px;
  color: #3d4246;
  border-color: transparent;
  padding-left: 35px;
  width: 100%; }
  .search-header__input::-webkit-input-placeholder,
  .search-bar__input::-webkit-input-placeholder {
    color: #3d4246;
    opacity: 0.6; }
  .search-header__input::-moz-placeholder,
  .search-bar__input::-moz-placeholder {
    color: #3d4246;
    opacity: 0.6; }
  .search-header__input:-ms-input-placeholder,
  .search-bar__input:-ms-input-placeholder {
    color: #3d4246;
    opacity: 0; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #3d4246;
    opacity: 1; }

.search-bar__input {
  border: 1px solid transparent; }
  .search-bar__input:focus {
    border-color: transparent; }

/*============================================================================
  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 12.5px; }

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

/*================ Mobile Site Nav ================*/
.mobile-nav-wrapper {
  z-index: 1000; }

.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);
  z-index: 1000; }
  .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 30px;
  font-size: 16px; }

.mobile-nav__link {
  position: relative; }

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

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

input.btn.icon-rtl.p_a_t_ch, .shopify-payment-button input.icon-rtl.p_a_t_ch.shopify-payment-button__button--unbranded {
  background: red;
  width: 100%; }

.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: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 400;
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px; }

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  position: absolute;
  top: 0;
  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 {
  @include transform(translateY(-20px));
  background-color: $color-bg;
  bottom: 0;
  color: $color-text;
  display: none;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
} */
.modal-backdrop.fade.in {
  display: none; }

.modal {
  background: rgba(0, 0, 0, 0.5); }

.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: 25px;
  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: 750px) {
    .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: #002f6c;
  padding: 12.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: 75px; }
  .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: -25px;
    left: 50%; }
  .slick-initialized .slideshow__text-content::after, .no-js .slideshow__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

.slideshow__title {
  color: white; }

.slideshow__subtitle {
  display: block;
  color: white; }

/*================ 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: 750px) {
    .slideshow__video-control--play-wrapper {
      height: 45px; } }

@media only screen and (min-width: 750px) {
  .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: 750px) {
      .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-weight: 400; }
  .grid-view-item.product-price--sold-out .product-price__price {
    text-decoration: line-through; }

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

.product-price__sale,
.product__price--sale {
  color: #002f6c; }

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

.product-price__sold-out {
  font-weight: 400;
  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: 750px) {
    .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: 749px) {
    .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;
  /*  @include media-query($small) {*/ }
  @media only screen and (max-width: 989px) {
    .filters-toolbar__product-count {
      font-size: 0.875em;
      line-height: 46px; } }

.madeinkclogo {
  width: 40%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  margin-top: 70px;
  margin-bottom: 80px; }

.site-footer {
  margin: 55px 0 0 0;
  padding: 55px 0 0 0;
  background: #004070; }
  @media only screen and (max-width: 749px) {
    .site-footer {
      text-align: center; } }
  .site-footer a, .site-footer h4, .site-footer .h4, .site-footer li {
    color: #fff; }
  .site-footer a:hover {
    opacity: .8; }

.template-index .site-footer {
  margin-top: 0; }

@media only screen and (min-width: 750px) {
  .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: 750px) {
    .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: 750px) {
    .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: 750px) {
    .site-footer__newsletter {
      margin: 55px 0 0;
      max-width: none; } }

.site-footer__copyright {
  margin-top: 35px;
  padding-bottom: 105px; }
  @media only screen and (min-width: 750px) {
    .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;
  color: #fff; }
  .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: 750px) {
      .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: 750px) {
    .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: 750px) {
  .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: 749px) {
    .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: 749px) {
    .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;
  position: relative;
  width: 100%; }

.feature-row__image {
  display: block;
  margin: 0 auto; }
  .feature-row__image-wrapper .feature-row__image {
    width: 100%;
    position: absolute;
    top: 0; }
  @media only screen and (max-width: 749px) {
    .feature-row__image {
      order: 1; } }

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

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

  .feature-row__text--right {
    padding-right: 35px; } }
@media only screen and (min-width: 750px) {
  .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: 750px) {
  .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: 750px) {
  .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: 750px) {
  .logo-bar__item--large {
    margin-bottom: 55px; } }
.logo-bar__image {
  display: block;
  margin: 0 auto; }

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  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-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media only screen and (min-width: 750px) {
    .map-section {
      min-height: 500px; } }

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

.map-section__wrapper {
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  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;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.map-section__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2; }

.map-section__error {
  position: relative;
  z-index: 3; }
  @media only screen and (min-width: 750px) {
    .map-section__error {
      position: absolute;
      margin: 0 2rem;
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  flex-grow: 0; }
  @media only screen and (min-width: 750px) and (max-width: 989px) {
    .map-section__content-wrapper {
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%; } }
  @media only screen and (min-width: 990px) {
    .map-section__content-wrapper {
      -ms-flex-preferred-size: 33%;
      -webkit-flex-basis: 33%;
      -moz-flex-basis: 33%;
      flex-basis: 33%; } }

.map-section__content {
  position: relative;
  display: inline-block;
  background-color: rgba(120, 129, 136, 0.05);
  padding: 35px;
  width: 100%;
  text-align: center;
  z-index: 3;
  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-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  -ms-align-content: center;
  align-content: center; }
  .map-section__content > * {
    width: 100%; }
  @media only screen and (min-width: 750px) {
    .map-section__content {
      background-color: white;
      margin: 25px 0;
      min-height: 300px; }
      .ie9 .map-section__content {
        top: 10%; } }
  .map-section--load-error .map-section__content {
    position: static;
    transform: translateY(0); }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.map-section__container {
  max-width: none;
  width: 100%;
  height: 55vh;
  left: 0; }
  @media only screen and (min-width: 750px) {
    .map-section__container {
      position: absolute;
      height: 100%;
      top: 0;
      width: 130%; } }

.map_section__directions-btn [class^="icon"] {
  height: 1em; }
.map_section__directions-btn * {
  vertical-align: middle; }

.map-section__background-wrapper {
  overflow: hidden;
  position: relative;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 750px) {
    .map-section__background-wrapper {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; } }
  .ie9 .map-section__background-wrapper {
    width: 100%;
    height: 500px; }
  .map-section--onboarding .map-section__background-wrapper {
    min-height: 55vh; }

.map-section__image {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 750px) {
    .map-section__image {
      position: absolute; } }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

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

.image-bar {
  overflow: hidden; }
  @media only screen and (max-width: 749px) {
    .image-bar {
      max-width: 100%;
      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: 750px) {
    .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;*/
  overflow: none; }

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

.collection-grid-item__title {
  color: white;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 25%;
  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: 750px) {
    .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;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 50%; }

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

.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;
  /*  @include media-query($small) {*/ }
  @media only screen and (max-width: 989px) {
    .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%;
  /*  @include media-query($small) {*/ }
  @media only screen and (max-width: 989px) {
    .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.05); }

.rich-text__heading--large {
  font-size: 1.4em; }

.rich-text__heading--small {
  font-size: 0.88em; }

.rich-text__text--large {
  font-size: 1.125em; }

.rich-text__text--small {
  font-size: 0.875em; }

/*================ #Custom LTK CSS ================*/
a {
  cursor: pointer; }

a:hover {
  text-decoration: none;
  color: #23527c; }

a:focus {
  text-decoration: none; }

hr {
  margin: 1rem 0;
  border-bottom: 1px solid #ccc;
  width: 100%; }

.center-h {
  display: block;
  margin: auto; }

.center {
  margin: 0 auto;
  text-align: center;
  display: block; }

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

/* fix weird product photo offset */
.product-single__photo {
  padding-left: 0; }

.p-and-d-container a, .tabcontent a {
  color: #239fde; }

.pinInstructions {
  font-size: 14px;
  line-height: 17px;
  display: block;
  padding: 0; }

.pinWrapper {
  padding: 0; }
  .pinWrapper input {
    margin-left: 2px; }

.pinValid
.float-left {
  float: left;
  margin-right: 1rem; }

.gc-input-select {
  width: 40%;
  margin-bottom: 2rem; }

.search .input-group {
  margin: 4rem 0 0 0; }

.btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded, .btn[disabled]:hover, .shopify-payment-button [disabled].shopify-payment-button__button--unbranded:hover, button:disabled,
button[disabled] {
  border: 0px solid #999;
  background-color: #bbb;
  color: #fff;
  pointer: default;
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0; }

.section-header h1, .section-header .h1, .section-header h2, .section-header .h2 {
  display: none; }

.ltk-collection-grid {
  height: 200px; }

#validationButton {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  background-color: #002f6c;
  border-color: #262626; }

#quantity {
  padding: 0 1px 0 1px;
  text-align: right;
  width: 50px;
  height: 4rem;
  margin-bottom: 2rem;
  margin-top: -1rem;
  margin-left: 5px; }

.quantity-label {
  text-transform: uppercase;
  float: left;
  color: #002f6c;
  font-family: 'Lato', sans-serif;
  font-weight: 400; }

.cart-flex-item--item_description {
  color: #666; }

.btn-add-to-cart {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: flex-end;
  align-items: flex-end; }
  .btn-add-to-cart .pin-validation-focus {
    font-size: 1.4rem;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding-right: 0rem;
    color: #239fde; }

.product[data-product-type="PPLR_HIDDEN_PRODUCT"] .product-thumbnail .product-thumbnail__quantity {
  opacity: .3; }

.product[data-product-type="PPLR_HIDDEN_PRODUCT"].product__add-on {
  font-size: 12px;
  padding-top: 0; }

.subcat-wrapper {
  max-width: 1200px;
  background-color: #eee;
  margin-top: 20px;
  margin: 0 auto; }

.subcat-outer {
  background-color: #eee;
  padding: 15px 18px 15px 18px; }

.subcat-outer-left {
  background-color: #eee;
  padding: 15px 9px 7px 18px; }
  .subcat-outer-left.last {
    padding-bottom: 15px; }

.subcat-outer-right {
  background-color: #eee;
  padding: 15px 18px 7px 9px; }
  .subcat-outer-right.last {
    padding-bottom: 15px; }

.rte.collection-description img {
  background-color: #fff;
  padding: 1rem;
  padding-bottom: 4rem;
  margin: 0 auto; }

.subcat-inner {
  padding: 8px;
  background-color: white; }

.cat-header-text {
  margin: 5rem 0;
  float: left; }

.cat-text-bottom {
  margin-top: 4rem; }

.subcat-inner .title {
  display: block;
  font-weight: 300;
  font-style: normal;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  position: relative;
  font-size: 1.4em;
  text-align: center;
  line-height: 30px;
  margin-top: 5px;
  color: #002f6c; }
  .subcat-inner .title img {
    height: 1.8rem; }

div.row::after {
  clear: none !important; }

.required-asterisk {
  color: #ff0000;
  font-weight: 700; }

/***** PETS CATEGORY *****/
#shopify-section-page-sections-pets {
  /*   & .slideshow__slide.slideshow__slide--1573576664140 {
      margin-bottom: 2rem; 
      & .hero__text-wrap {
        height: 0; 
      }     
     }
      & .page-blocks > div:nth-child(3)  {
       display: none;
     }	
     & .page-blocks > div:nth-child(4)  {
       display: block;
       
     } */ }
  #shopify-section-page-sections-pets .index-section {
    margin: 5rem 0; }
  #shopify-section-page-sections-pets .slideshow__slide--1585662852777 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-pet-story-hero_1600.jpg?v=1585164656");
    background-repeat: no-repeat;
    max-width: 1600px;
    margin: auto;
    text-align: center;
    display: block;
    height: calc(33.84vw);
    max-width: 1600px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; }
  #shopify-section-page-sections-pets .slideshow__slide--1585662852777 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-pet-story-hero_1600.jpg?v=1585164656") no-repeat;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    min-height: calc(26.84vw);
    max-width: 1800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #shopify-section-page-sections-pets .slideshow__slide--1585662852777 .hero__title .animation-contents {
    text-align: center;
    color: #fff;
    position: fixed;
    top: 170px;
    font-family: 'Libre Baskerville', serif;
    background-color: rgba(109, 122, 131, 0.8);
    padding: 2rem; }
  #shopify-section-page-sections-pets .slideshow__slide--1585665933676 .hero__image-wrapper {
    background: url("/cdn/shop/files/lt-pet-story-feature2_1600_2e59e6cc-a09a-47c3-a199-9b8ac1f2c5ba.jpg?v=1685024377") no-repeat;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    min-height: calc(26.84vw);
    max-width: 1800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #shopify-section-page-sections-pets svg {
    opacity: 0; }
  #shopify-section-page-sections-pets .slideshow__slide--1585665933676 h3, #shopify-section-page-sections-pets .slideshow__slide--1585665933676 .h3 {
    color: #fff;
    position: fixed;
    bottom: 27%;
    left: 17%;
    font-size: 5rem; }
  #shopify-section-page-sections-pets .slideshow__slide--1585665933676 .hero__subtitle {
    text-align: center;
    color: #fff;
    position: fixed;
    BOTTOM: 5%;
    left: 7%;
    width: 40%;
    margin: 2rem 0;
    line-height: 18px; }
  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .hero__image-wrapper {
    background: url("/cdn/shop/files/lt-pet-story-feature3_1600.jpg?v=1685024376") no-repeat;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    min-height: calc(26.84vw);
    max-width: 1800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #shopify-section-page-sections-pets svg {
    opacity: 0; }
  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 h3, #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .h3 {
    color: #5c5c5c;
    position: fixed;
    bottom: 20%;
    right: 15%;
    font-size: 5rem; }
  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .hero__subtitle {
    text-align: center;
    color: #5c5c5c;
    position: fixed;
    bottom: 11%;
    right: 13%;
    width: 33%;
    margin: 2rem 0;
    line-height: 18px; }
  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .hero__link a {
    color: #5c5c5c;
    background: #bbcabd;
    position: fixed;
    bottom: 4%;
    right: 22%;
    padding: .75%;
    width: 16%; }
  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .hero__image-wrapper {
    background: url("/cdn/shop/files/lt-pet-story-feature4_1600_00fc589a-a167-47b3-adab-509a7cdf80f1.jpg?v=1685024377") no-repeat;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    min-height: calc(26.84vw);
    max-width: 1800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #shopify-section-page-sections-pets svg {
    opacity: 0; }
  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 h3, #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .h3 {
    color: #5c5c5c;
    position: fixed;
    bottom: 33%;
    left: 15%;
    font-size: 5rem; }
  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .hero__subtitle {
    text-align: center;
    color: #5c5c5c;
    position: fixed;
    bottom: 17%;
    left: 11%;
    width: 33%;
    margin: 2rem 0;
    line-height: 18px; }
  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .hero__link a {
    color: #fff;
    background: #b99e94;
    position: fixed;
    bottom: 8%;
    left: 20%;
    padding: .75%;
    width: 16%; }
  #shopify-section-page-sections-pets .feature-row__text--left a {
    background: #85a9b5;
    width: 50%;
    height: 45px;
    padding: 12px;
    margin-top: 3rem; }
  #shopify-section-page-sections-pets .hero__link {
    width: 40%;
    position: fixed;
    top: 67%;
    left: 13rem; }
    #shopify-section-page-sections-pets .hero__link a {
      background-color: #e4e0bd;
      margin-top: 4.5rem;
      padding: 0;
      width: 40%; }
    #shopify-section-page-sections-pets .hero__link p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      margin: 0; }
  #shopify-section-page-sections-pets .slideshow__slide--1573579651102 .hero__title .animation-contents {
    text-align: center;
    color: #5b5b5b;
    position: fixed;
    top: 70px;
    right: 10%;
    font-size: 5.5rem; }
    #shopify-section-page-sections-pets .slideshow__slide--1573579651102 .hero__title .animation-contents h3, #shopify-section-page-sections-pets .slideshow__slide--1573579651102 .hero__title .animation-contents .h3 {
      color: #5b5b5b;
      font-size: 5.5rem; }
  #shopify-section-page-sections-pets .slideshow__slide--1573579651102 .hero__subtitle .animation-contents {
    position: fixed;
    width: 40%;
    color: #5b5b5b;
    top: 240px;
    right: 100px;
    text-align: center; }
  #shopify-section-page-sections-pets .slideshow__slide--1573579651102 .hero__link a {
    background-color: rgba(109, 122, 131, 0.8);
    width: 20%;
    position: fixed;
    right: 240px;
    padding: 1rem; }
  #shopify-section-page-sections-pets .slideshow__slide--1573576664140 .hero__title {
    text-align: center;
    color: #fff;
    position: fixed;
    top: 170px;
    font-family: 'Libre Baskerville', serif;
    background-color: rgba(109, 122, 131, 0.8);
    padding: 2rem; }
  #shopify-section-page-sections-pets img {
    margin: 0;
    width: 100%; }
  #shopify-section-page-sections-pets .btn, #shopify-section-page-sections-pets .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-pets .shopify-payment-button__button--unbranded, #shopify-section-page-sections-pets .shopify-payment-button, #shopify-section-page-sections-pets .shopify-payment-button__button--unbranded {
    background-color: rgba(0, 0, 0, 0);
    display: block;
    margin: 0 auto;
    width: 60%; }
  #shopify-section-page-sections-pets p {
    text-align: center;
    color: #5b5b5b; }
  #shopify-section-page-sections-pets blockquote {
    border-left: none;
    font-size: 3.5rem;
    line-height: 3.5rem;
    color: #7e8f95;
    font-family: 'Libre Baskerville', serif; }
    #shopify-section-page-sections-pets blockquote p {
      color: #7e8f95; }
    #shopify-section-page-sections-pets blockquote .icon-quote {
      display: none; }
    #shopify-section-page-sections-pets blockquote .quote-icon {
      background-image: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-desktop-quote-icon-1600.jpg?32252");
      background-repeat: no-repeat;
      height: 8rem;
      width: 10%; }

/***** END PETS CATEGORY *****/
/***** MEMORIAL *****/
/***** END MEMORIAL *****/
/***** NEW PARENTS *****/
#shopify-section-page-sections-newparents img {
  width: 100%;
  margin: 5rem 0; }

#shopify-section-page-sections-newparents .h3, #shopify-section-page-sections-newparents .feature-row__text--right p {
  text-align: center;
  color: #5c5c5c; }

#shopify-section-page-sections-newparents .feature-row__text--right .btn, #shopify-section-page-sections-newparents .feature-row__text--right .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-newparents .feature-row__text--right .shopify-payment-button__button--unbranded {
  margin: 0 auto;
  display: block;
  width: 250px; }

#shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text--left {
  margin-top: -30%;
  margin-bottom: 21%;
  width: 50%;
  max-width: 460px;
  margin-left: 55%;
  background-color: rgba(6, 36, 67, 0.5);
  position: relative;
  padding: 10px; }

#shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text .h5 {
  display: none; }

#shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text .h3 {
  display: block;
  font-size: 5rem;
  color: #fff;
  margin: 0px;
  position: relative;
  font-family: 'baskerville';
  display: block;
  text-align: center;
  padding: 0; }

#shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text p {
  font-size: 2.1rem;
  color: #fff;
  margin-top: 0;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-left: 0;
  padding: 10px 20px;
  display: block;
  text-align: center;
  width: 100%; }

#shopify-section-page-sections-newparents .feature-row .image-wrap {
  margin-top: 5rem; }

#shopify-section-page-sections-newparents .feature-row__text--right .btn, #shopify-section-page-sections-newparents .feature-row__text--right .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-newparents .feature-row__text--right .shopify-payment-button__button--unbranded {
  background: #f4eae4;
  color: #5c5c5c; }

#shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left .background-media-text__text .h3 {
  font-size: 4.5rem;
  color: #5c5c5c;
  font-family: 'baskerville'; }

#shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left .background-media-text__text p {
  font-family: 'Open Sans' Arial sans-serif;
  text-align: center;
  font-size: 1.125em;
  color: #5c5c5c; }

.block-background-image.background-media-text--1571951573036 .background-media-text__inner {
  position: absolute;
  top: 50%;
  transform: translate(-25%, -75%);
  text-align: center;
  max-width: 50%;
  left: 50%; }

#shopify-section-page-sections-newparents .feature-row__text--left {
  text-align: center; }

#shopify-section-page-sections-newparents .page-blocks div:nth-child(5) .index-section {
  padding: 6rem 0;
  margin: 15rem 0;
  background: #dfebea; }

@media (max-width: 992px) {
  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text--left {
    max-width: 400px;
    margin-left: 48%; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text .h5 {
    display: none; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text .h3 {
    font-size: 4rem; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text p {
    font-size: 1.8rem; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left {
    width: 100%; }

  .block-background-image .background-media-text__inner {
    position: initial !important;
    top: auto !important;
    transform: translate(0%, 0%) !important;
    text-align: center;
    max-width: 100% !important;
    left: auto !important; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left .background-media-text__text .h3 {
    font-size: 3rem;
    position: relative;
    margin-left: 0;
    margin-top: 0;
    width: 100%; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left .background-media-text__subtext p {
    margin-top: 0;
    line-height: 20px;
    position: relative;
    margin-left: 0;
    text-align: left;
    font-size: 1.4rem;
    width: 100%; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left .background-media-text__text {
    clear: both;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 0rem;
    margin-bottom: 5rem;
    padding: 10px; } }
@media (max-width: 768px) {
  .image-desktop {
    display: none; }

  .cart__qty-input {
    padding-left: 7px;
    padding-right: 5px; }

  #shopify-section-page-sections-pets .slideshow__slide--1585662852777 .hero__title .animation-contents {
    position: initial; }

  div#Slideshow-1585662852777 {
    height: fit-content; }

  #shopify-section-page-sections-pets .slideshow__slide--1585665933676 .hero__subtitle {
    text-align: center;
    color: #5b5b5b;
    position: unset;
    width: 100%;
    margin: 2rem 0;
    line-height: 18px; }

  #shopify-section-page-sections-pets .slideshow__slide--1585665933676 h3, #shopify-section-page-sections-pets .slideshow__slide--1585665933676 .h3, #shopify-section-page-sections-pets .slideshow__slide--1585665933676 .h3 {
    position: unset;
    color: #5b5b5b;
    text-align: center; }

  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .hero__subtitle {
    text-align: center;
    color: #5c5c5c;
    position: unset;
    width: 100%;
    margin: 2rem 0;
    line-height: 18px; }

  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 h3, #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .h3, #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .h3 {
    color: #5c5c5c;
    position: unset;
    font-size: 5rem; }

  #shopify-section-page-sections-pets .slideshow__slide--1585666885013 .hero__link a {
    color: #5c5c5c;
    background: #bbcabd;
    position: unset;
    padding: 15px;
    width: 100%;
    margin-bottom: 30px; }

  #shopify-section-page-sections-pets .hero__link {
    width: 100%;
    position: unset; }

  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 h3, #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .h3, #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .h3 {
    color: #5c5c5c;
    position: unset;
    text-align: center;
    font-size: 5rem; }

  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .hero__subtitle {
    text-align: center;
    color: #5c5c5c;
    position: unset;
    width: 100%;
    margin: 2rem 0;
    line-height: 18px; }

  #shopify-section-page-sections-pets .slideshow__slide--1585669697784 .hero__link a {
    color: #fff;
    background: #b99e94;
    position: unset;
    padding: 15px;
    width: 100%; }

  #shopify-section-page-sections-pets .feature-row__text--left a {
    background: #85a9b5;
    width: 50%;
    min-width: 250px;
    height: 45px;
    padding: 12px;
    margin-top: 3rem; }

  .partner-buttons {
    flex-direction: column; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text--left {
    max-width: 300px;
    margin-top: -35%; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text .h3 {
    font-size: 3rem; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text p {
    font-size: 1.2rem; } }
@media (max-width: 480px) {
  #shopify-section-page-sections-newparents .h3 {
    font-size: 3rem; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text--left {
    max-width: 100%;
    width: 100%;
    margin: -50px 0 0 0; }

  #shopify-section-page-sections-newparents .background-media-text--1571951420299 .background-media-text__text p {
    font-size: 1.5rem; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text__container {
    height: calc(163.674vw);
    background: url(/cdn/shop/files/lt-personalize-hero2-480.png?14325) no-repeat;
    background-size: cover; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text__container img {
    display: none; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left {
    width: 100%;
    margin: -120% 0 57% 0; }

  #shopify-section-page-sections-newparents .background-media-text--1571951573036 .background-media-text--left .background-media-text__subtext p {
    padding: 0px 20px;
    text-align: center; } }
/* END NEW PARENTS */
/* HOW IT WORKS */
#shopify-section-page-section-how-it-works .image-wrap img {
  width: 500px !important; }

#shopify-section-page-section-how-it-works p {
  text-align: center; }

#shopify-section-page-section-how-it-works .featured-row__subtext {
  /*  margin-bottom:5rem;  */ }

#shopify-section-page-section-how-it-works .page-blocks > div:nth-child(11), #shopify-section-page-section-how-it-works .page-blocks > div:nth-child(11), #shopify-section-page-section-how-it-works .page-blocks > div:nth-child(12), #shopify-section-page-section-how-it-works .page-blocks > div:nth-child(14) {
  background: #e1e1e1; }

div#shopify-section-page-section-how-it-works .index-section {
  padding: 30px 0; }

#shopify-section-page-section-how-it-works .page-blocks > div:nth-child(8), #shopify-section-page-section-how-it-works .page-blocks > div:nth-child(11) {
  display: none; }

#shopify-section-page-section-how-it-works .page-blocks img {
  padding: 1.5rem; }

/* END HOW IT WORKS */
/* MILITARY PAGE */
.placeholder-svg {
  opacity: 0; }

#shopify-section-page-sections-military img {
  width: 100%; }

#shopify-section-page-sections-military .background-media-text--1571943638669 .background-media-text__container {
  background-image: url("/cdn/shop/files/hero-1-1600-2.jpg");
  background-repeat: no-repeat;
  margin: 0 auto; }

.background-media-text--1571943638669 .background-media-text--right .background-media-text__text .h3, #shopify-section-page-section-military .background-media-text--1571943638669 .background-media-text__text .h3 {
  display: block;
  font-size: 4.5rem;
  color: #fff;
  /*   margin-top: -40%; */
  position: absolute;
  font-family: 'wilderness';
  /*   margin-right: 0;
    margin-left: 50%;  */
  background: rgba(6, 36, 67, 0.5);
  padding: 1rem 24rem 8rem 2rem;
  display: block; }

.background-media-text--1571943714180 .background-media-text--left {
  margin-top: -45%;
  margin-bottom: 35%; }

.background-media-text--1571943714180 .background-media-text--left .background-media-text__text .h3 {
  margin-left: 10%;
  background: none;
  width: 45%;
  display: block;
  color: #fff; }

.background-media-text--1571943638669 .background-media-text--right .background-media-text__subtext p, .slideshow__slide--1570479732267 .hero__subtitle .animation-contents, #shopify-section-page-section-military .background-media-text--1571757545630 .background-media-text__subtext p {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  font-family: 'Open Sans' Arial sans-serif;
  margin-right: 0;
  line-height: 2.2rem;
  width: 480px;
  top: 240px;
  right: 160px;
  display: block; }

.background-media-text--1571943714180 .background-media-text--left .background-media-text__subtext p {
  color: #fff;
  margin-left: 10%;
  width: 40%; }

.background-media-text--1571943638669 .background-media-text--right .background-media-text__text .h3, .slideshow__slide--1570809075070 .hero__title .animation-contents {
  display: block;
  font-size: 4.5rem;
  color: #fff;
  /* margin-top: -40%; */
  position: absolute;
  font-family: 'wilderness';
  /* margin-right: 0; */
  /* margin-left: 50%; */
  background: rgba(6, 36, 67, 0.5);
  padding: 2rem 26.5rem 8rem 2rem;
  display: block;
  top: 160px;
  right: 165px; }

.background-media-text--1571943638669 .background-media-text--left .background-media-text__text p, .slideshow__slide--1570809075070 .hero__subtitle .animation-contents {
  font-size: 1.6rem;
  color: #fff;
  margin-top: -44%;
  position: absolute;
  font-family: 'Open Sans' Arial sans-serif;
  margin-right: 0;
  margin-left: 3%;
  line-height: 2.2rem;
  width: 490px; }

.background-media-text--1571943714180 .btn, .background-media-text--1571943714180 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .background-media-text--1571943714180 .shopify-payment-button__button--unbranded {
  color: #014070;
  background-color: white;
  margin-left: 10%;
  width: 20%; }

.background-media-text--1572274121685 .background-media-text__text {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10rem;
  /*  margin-top:-10rem; */ }
  .background-media-text--1572274121685 .background-media-text__text .btn, .background-media-text--1572274121685 .background-media-text__text .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .background-media-text--1572274121685 .background-media-text__text .shopify-payment-button__button--unbranded {
    margin-top: 3rem; }

.background-media-text--1572274121685 .animation-contents {
  position: relative;
  top: -25rem; }

#shopify-section-page-sections-military .feature-row__text--left .h3 {
  font-size: 3rem;
  text-align: center; }

#shopify-section-page-sections-military .featured-row__subtext {
  text-align: center; }

#shopify-section-page-sections-military .feature-row__text--left .btn, #shopify-section-page-sections-military .feature-row__text--left .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-military .feature-row__text--left .shopify-payment-button__button--unbranded {
  webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 0 auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 8px 15px;
  background-color: #002f6c;
  color: #fff;
  font-family: "Roboto","HelveticaNeue","Helvetica Neue",sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 14px;
  margin-top: 4rem;
  margin-bottom: 4rem; }

#shopify-section-page-section-military .feature-row__image {
  width: 100%; }

#shopify-section-page-section-military img {
  width: 100%;
  height: auto; }

.background-media-text--1572274121685 {
  /*  width: 50%; */
  margin: 0 auto; }
  .background-media-text--1572274121685 .background-media-text__text {
    margin-top: -12rem; }
  .background-media-text--1572274121685 .background-media-text__subtext {
    width: 50%;
    margin: 0 auto; }

#shopify-section-page-sections-holidayguide .holiday-guide-hero, #shopify-section-page-sections-gift-guide .gift-guide-hero {
  display: block; }

#shopify-section-page-sections-holidayguide .holiday-guide-hero-mobile, #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile {
  display: none; }

#shopify-section-page-sections-holidayguide .page-width, #shopify-section-page-sections-gift-guide .page-width {
  max-width: 1200px; }

#shopify-section-page-sections-holidayguide > .index-section > .page-width, #shopify-section-page-sections-gift-guide > .index-section > .page-width {
  background: #fff; }

.hero__image--1572545388515, .hero__image--1572543941119 {
  margin: 0 auto; }

@media only screen and (max-width: 480px) {
  .xs-hide {
    display: none !important; }

  .xs-show {
    display: block !important; } }
@media only screen and (min-width: 481px) {
  .xs-show {
    display: none !important; }

  .xs-hide {
    display: block !important; } }
/*****  CUSTOM HOMEPAGE  *****/
.promotion-header, .promotion-body {
  color: #fff;
  font-family: 'Libre Baskerville', serif; }

.promotion-header {
  position: absolute;
  top: 6rem;
  text-align: center;
  font-size: 38px;
  line-height: 42px;
  padding: 0rem 4rem 0 2rem; }

.promotion-left {
  /*   height:680px;
    background-image: url(/cdn/shop/files/lockets.jpg?11299);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 49%; 
    margin-right: 1rem;*/ }

.promotion-left:focus {
  color: #fff; }

.promotion-overlay {
  position: absolute;
  top: 0;
  width: 96%; }

.promotion-button-left {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  text-align: center;
  color: #064071;
  display: block;
  margin-top: 10rem;
  width: 200px;
  height: 38px;
  padding-top: 10px;
  background: #fff;
  margin: 5rem auto; }

.promotion-right {
  /*   background-image: url(/cdn/shop/files/fingerprint-dog-tag_1.jpg?10766);
    height:680px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
    width: 49%;
    margin-left: 1rem;*/ }

.promotion-right:focus {
  color: #fff; }

.xs-show {
  display: none; }

.promotion-subhead {
  color: white;
  font-size: 22px;
  margin-top: calc(32vw); }

.promotion-body {
  text-align: center;
  font-size: 20px;
  margin-top: 3rem;
  padding: 0 8% 0 6%; }

.promotion-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  color: #fff;
  display: block;
  margin-top: 10rem;
  width: 200px;
  height: 38px;
  padding-top: 10px;
  background: #064071;
  margin: 6rem auto; }
  .promotion-button :hover {
    opacity: .9; }

.promotion-button:hover {
  opacity: .9;
  color: rgba(255, 255, 255, 0.8); }

/* 24 Hour Turnaround Section */
#shopify-section-1555522064390 {
  background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/big-blue.jpg?10512);
  min-width: 100%;
  height: 30rem; }

.turnaround-time-image {
  margin-top: 5rem;
  margin-right: 0;
  padding: 5rem 2rem 5rem 10rem;
  border-right: 1px solid #fff; }

.turnaround-time-text, .turnaround-time-text a {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #fff; }

.turnaround-time-text {
  padding: 10rem 0 0 6rem; }

.rich-text__heading--medium .h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 100;
  margin-top: 7rem; }

#CustomImageWrapper--4-233613852737 {
  max-width: 300px;
  max-height: 300px; }

#shopify-section-1555522833901 * {
  text-align: center;
  font-family: 'Libre Baskerville', serif; }

#shopify-section-1555522833901 p {
  font-family: 'Open Sans', sans-serif; }

#shopify-section-1555522833901 .btn, #shopify-section-1555522833901 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-1555522833901 .shopify-payment-button__button--unbranded {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; }

#shopify-section-1555360590197 .page-width, #shopify-section-1555529285993 .page-width {
  padding: 0;
  margin: 0;
  min-width: 100%;
  max-width: 100%; }

#shopify-section-1555356823499 form#contact_form {
  display: none; }

.custom__item--1555360603135 {
  margin-bottom: 0; }

#shopify-section-1555522660279, #shopify-section-1555521752443 {
  margin-bottom: 5rem; }

form#contact_form.contact-form-footer {
  display: block; }

/***** END CUSTOM HOMEPAGE *****/
/***** JEWELRY CATEGORY *****/
#shopify-section-page-sections-jewelry-category {
  height: 100%; }
  #shopify-section-page-sections-jewelry-category .index-section {
    margin: 8rem 0; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--left .h3, #shopify-section-page-sections-jewelry-category .feature-row__text--left p {
    text-align: left;
    color: #5b5b5b; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--left .btn, #shopify-section-page-sections-jewelry-category .feature-row__text--left .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .feature-row__text--left .shopify-payment-button__button--unbranded {
    margin: 2rem 0;
    float: left; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--right .h3, #shopify-section-page-sections-jewelry-category .feature-row__text--right p {
    text-align: right;
    color: #5b5b5b; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--right .btn, #shopify-section-page-sections-jewelry-category .feature-row__text--right .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .feature-row__text--right .shopify-payment-button__button--unbranded {
    margin: 2rem 0;
    float: right; }
  #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section {
    max-width: 1600px;
    width: 100%;
    height: 650px;
    background: green;
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/LT-jewelry-category-hero_1600.jpg?v=1578437102);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 7rem;
      color: #fff;
      text-align: left;
      padding: 0; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Open Sans", Ariel, sans-serif;
      font-size: 1.6rem;
      color: #fff;
      text-align: left;
      line-height: 2.2rem;
      margin-top: 3rem; }
  #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section {
    max-width: 1600px;
    width: 100%;
    height: 650px;
    background: green;
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-jewelry-category-urn_1600_ffde9156-f2a5-4eb2-8419-81c2fffce76a.jpg?v=1579039632);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .btn, #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .shopify-payment-button__button--unbranded {
      background: #fff;
      color: #002F6C;
      margin: 3rem auto;
      float: unset; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 7rem;
      color: #fff;
      text-align: left;
      padding: 0; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Libre Baskerville";
      font-size: 4rem;
      color: #fff;
      text-align: center;
      line-height: 5.5rem;
      margin-top: 3rem;
      font-style: italic;
      padding: 0 2rem; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-desktop-banner2-urn-1600.jpg?v=1574639280") no-repeat;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    min-height: calc(26.84vw);
    max-width: 1800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #shopify-section-page-sections-jewelry-category svg {
    opacity: 0; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide.slideshow__slide--1578437070483 {
    margin-bottom: 2rem; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide.slideshow__slide--1578437070483 .hero__text-wrap {
      height: 0; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1571857142646 h3, #shopify-section-page-sections-jewelry-category .slideshow__slide--1571857142646 .h3 {
    text-align: left;
    color: #fff;
    position: fixed;
    top: 250px;
    left: 80px;
    font-size: 4rem; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__subtitle {
    text-align: center;
    color: #fff;
    position: fixed;
    top: 300px;
    left: 170px;
    width: 35%;
    margin: 2rem 0; }
  #shopify-section-page-sections-jewelry-category .hero__link {
    width: 40%;
    position: fixed;
    top: 67%;
    left: 13rem; }
    #shopify-section-page-sections-jewelry-category .hero__link a {
      background-color: #e4e0bd;
      margin-top: 4.5rem;
      padding: 0;
      width: 40%; }
    #shopify-section-page-sections-jewelry-category .hero__link p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      margin: 0; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__title .animation-contents {
    text-align: center;
    color: #5b5b5b;
    position: fixed;
    top: 70px;
    right: 10%;
    font-size: 5rem; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__title .animation-contents h3, #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__title .animation-contents .h3 {
      color: #5b5b5b;
      font-size: 5.5rem; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__subtitle .animation-contents {
    position: fixed;
    width: 40%;
    color: #5b5b5b;
    top: 240px;
    right: 100px;
    text-align: center; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__link a {
    background-color: rgba(109, 122, 131, 0.8);
    width: 20%;
    position: fixed;
    right: 240px;
    padding: 1rem; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1578437070483 .hero__title {
    text-align: left;
    color: #fff;
    position: fixed;
    top: 20%;
    left: 10%;
    font-family: 'Libre Baskerville', serif;
    padding: 2rem; }
  #shopify-section-page-sections-jewelry-category img {
    margin: 0;
    width: 100%; }
  #shopify-section-page-sections-jewelry-category .btn, #shopify-section-page-sections-jewelry-category .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .shopify-payment-button__button--unbranded, #shopify-section-page-sections-jewelry-category .shopify-payment-button, #shopify-section-page-sections-jewelry-category .shopify-payment-button__button--unbranded {
    display: block;
    margin: 5px;
    width: 40%;
    padding: 1.5rem 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0; }
  #shopify-section-page-sections-jewelry-category p {
    text-align: center;
    color: #5b5b5b; }
  #shopify-section-page-sections-jewelry-category blockquote {
    border-left: none;
    font-size: 3.5rem;
    line-height: 3.5rem;
    color: #7e8f95;
    font-family: 'Libre Baskerville', serif; }
    #shopify-section-page-sections-jewelry-category blockquote p {
      color: #7e8f95; }
    #shopify-section-page-sections-jewelry-category blockquote .icon-quote {
      display: none; }
    #shopify-section-page-sections-jewelry-category blockquote .quote-icon {
      background-image: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-desktop-quote-icon-1600.jpg?32252");
      background-repeat: no-repeat;
      height: 8rem;
      width: 10%; }

@media only screen and (max-width: 1220px) {
  #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section {
    max-width: 1600px;
    width: 100%;
    height: 550px;
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/LT-jewelry-category-hero_1600.jpg?v=1578437102);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 5rem;
      color: #fff;
      text-align: left;
      padding: 0; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Open Sans", Ariel, sans-serif;
      font-size: 1.4rem;
      color: #fff;
      text-align: left;
      line-height: 2rem;
      margin-top: 3rem; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section {
    max-width: 1600px;
    width: 100%;
    height: 400px;
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/LT-jewelry-category-hero_1600.jpg?v=1578437102);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 3.5rem;
      color: #fff;
      text-align: left;
      padding: 0; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Open Sans", Ariel, sans-serif;
      font-size: 1.2rem;
      color: #fff;
      text-align: left;
      line-height: 1.6rem;
      margin-top: 1rem; } }
@media only screen and (max-width: 480px) {
  .madeinkclogo {
    width: 65%;
    margin: 0 auto;
    display: block;
    margin-top: 75px;
    margin-bottom: 80px; }

  .btn.btn--secondary.btn--small.js-edit-toggle.cart__edit--active, .shopify-payment-button .btn--secondary.btn--small.js-edit-toggle.cart__edit--active.shopify-payment-button__button--unbranded {
    display: none; }

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

  .grid__item.text-right.small--text-center.medium-up--one-half > div {
    padding: 2rem 0; }

  .grid__item.text-right.small--text-center.medium-up--one-half > div .money {
    font-weight: 900 !important; }

  .cart__update-wrapper.cart-flex-item.text-right {
    display: block; }
    .cart__update-wrapper.cart-flex-item.text-right label {
      width: 100%;
      text-align: left;
      padding: 0; }
    .cart__update-wrapper.cart-flex-item.text-right .cart__qty {
      padding: 0; }
    .cart__update-wrapper.cart-flex-item.text-right .cart__qty-input {
      float: left;
      margin-right: 30rem;
      margin-top: 1rem;
      margin-bottom: 1rem; }
    .cart__update-wrapper.cart-flex-item.text-right .cart__update {
      float: left; }

  .cart .cart__meta {
    padding: 0 0 0 0 !important; }

  .cart__row.responsive-table__row.pplr-pricing-item .cart__update-wrapper {
    display: none; }

  .cart__qty-input {
    min-height: 45px; }

  /* label.cart__qty-label {
    display: block;
    margin-bottom: 8px;
} */
  .cart__remove.product-personalizer-cart-remove {
    margin-bottom: 0; }

  .cart__price-wrapper.text-right.small--show {
    text-align: left !important; }

  form.cart {
    display: block !important; }

  .cart__row.cart__header .text-left, .cart__row.cart__header .text-right {
    display: block !important; }

  .pin_validation p, .pin_validation_2 p {
    float: left;
    margin-left: 0px !important;
    padding: 2rem 0; }

  .printOneprintTwo {
    text-align: left;
    margin-bottom: 1rem !important;
    margin-left: 0px !important; }

  .pin-label {
    padding-left: 8px !important; }

  .pinRemoveBtn1 {
    width: 100%;
    float: left;
    text-align: left;
    margin-left: -8px !important;
    margin-top: 10px; }

  #validPinMsgInternal span {
    float: left; }

  #shopify-section-page-sections-holidayguide .holiday-guide-hero, #shopify-section-page-sections-gift-guide .holiday-guide-hero {
    display: none; }

  #shopify-section-page-sections-holidayguide .holiday-guide-hero-mobile, #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile {
    display: block; }

  #shopify-section-page-sections-holidayguide .index-section, #shopify-section-page-sections-gift-guide .index-section {
    margin: 0; }

  #shopify-section-page-sections-holidayguide .feature-row, #shopify-section-page-sections-gift-guide .feature-row {
    display: -webkit-flex;
    /* Safari */
    display: flex; }
    #shopify-section-page-sections-holidayguide .feature-row .feature-row__item, #shopify-section-page-sections-gift-guide .feature-row .feature-row__item {
      order: 1; }
    #shopify-section-page-sections-holidayguide .feature-row .feature-row__text, #shopify-section-page-sections-gift-guide .feature-row .feature-row__text {
      order: 2; }

  #shopify-section-page-sections-holidayguide .egift-card-banner-text, #shopify-section-page-sections-gift-guide .egift-card-banner-text {
    margin: -8rem 0 0 0 !important; }

  #shopify-section-page-sections-holidayguide .twentyfour-banner-text, #shopify-section-page-sections-gift-guide .twentyfour-banner-text {
    font-size: 30px !important;
    line-height: 28px;
    margin-top: -8rem !important; }

  #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section {
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-jewelry-category-hero_480.jpg?v=1578579482);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto;
    height: 55rem; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-size: 4rem;
      line-height: 4rem; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      color: #666;
      text-align: center;
      margin-top: 22rem; }

  #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section {
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-jewelry-category-urn_480.jpg?v=1578592215);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto;
    height: 55rem; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .feature-row__text--right .h3 {
      font-size: 4.2rem;
      line-height: 4.5rem; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      color: #666;
      text-align: center;
      margin-top: 30rem;
      font-size: 2.3rem;
      line-height: 3.3rem;
      padding: 0; }
    #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .btn, #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .page-blocks div:nth-child(5) .index-section .page-width .shopify-payment-button__button--unbranded {
      background: #002F6C;
      color: #fff;
      margin: 3rem auto;
      float: unset; }

  #shopify-section-page-sections-jewelry-category .h3 {
    font-size: 2.5em;
    line-height: 5.5rem; }

  #shopify-section-page-sections-jewelry-category .index-section:first-child {
    /*    padding-bottom: 5rem;  */ }

  #shopify-section-page-sections-jewelry-category blockquote p {
    font-size: 2.2rem; }

  #shopify-section-page-sections-jewelry-category blockquote {
    padding: 0; }

  #shopify-section-page-sections-jewelry-category blockquote .quote-icon {
    width: 40%; }

  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573576664140 .hero__text-wrap .page-width {
    display: table;
    position: relative;
    bottom: 18rem; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--left .h3, #shopify-section-page-sections-jewelry-category .feature-row__text--left p {
    text-align: center;
    color: #5b5b5b;
    margin: 0; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--left .btn, #shopify-section-page-sections-jewelry-category .feature-row__text--left .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .feature-row__text--left .shopify-payment-button__button--unbranded {
    margin: 2rem auto;
    text-align: center;
    width: 50%;
    float: none; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--right .h3, #shopify-section-page-sections-jewelry-category .feature-row__text--right p {
    text-align: center;
    color: #5b5b5b;
    margin: 0; }
  #shopify-section-page-sections-jewelry-category .feature-row__text--right .btn, #shopify-section-page-sections-jewelry-category .feature-row__text--right .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-jewelry-category .feature-row__text--right .shopify-payment-button__button--unbranded {
    margin: 2rem auto;
    width: 60%;
    float: none; }
  #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(3) .index-section .page-width .feature-row, #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(7) .index-section .page-width .feature-row, #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(9) .index-section .page-width .feature-row {
    display: flex; }
    #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(3) .index-section .page-width .feature-row .feature-row__item:last-child, #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(7) .index-section .page-width .feature-row .feature-row__item:last-child, #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(9) .index-section .page-width .feature-row .feature-row__item:last-child {
      order: 2; }
    #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(3) .index-section .page-width .feature-row .feature-row__item:last-child, #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(7) .index-section .page-width .feature-row .feature-row__item:last-child, #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(9) .index-section .page-width .feature-row .feature-row__item:last-child {
      order: 1;
      width: 100%; }
  #shopify-section-page-sections-jewelry-category .page-blocks > div:nth-child(4) {
    display: block; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1578437070483 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-mobile-hero_480.jpg?v=1576015813");
    background-size: cover;
    height: 300px; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-mobile-480-2.jpg?v=1576098912");
    background-size: cover;
    height: 830px; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/urn-pendant-bg-480-2.jpg?v=1576107644");
    background-repeat: no-repeat;
    background-size: contain;
    height: 860px; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__image-wrapper p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      background-color: #e4e0bd; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 h3, #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .h3 {
    left: inherit;
    line-height: 4rem;
    font-size: 3.6rem; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__subtitle {
    width: 90%;
    left: 0;
    top: 300px; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__subtitle .animation-contents {
      margin-left: 4rem;
      line-height: 2rem; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__link {
    width: 100%;
    position: fixed;
    top: 50%;
    left: 0; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__link a {
      background-color: #e4e0bd;
      margin-top: 1rem;
      padding: 0;
      width: 55%; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573580313065 .hero__link p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      margin: 0; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 {
    margin: 4rem 0; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__title .animation-contents {
      right: 0;
      margin-top: 88%;
      color: #5b5b5b;
      width: 100%; }
      #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__title .animation-contents h3, #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__title .animation-contents .h3 {
        font-size: 4rem;
        line-height: 4rem; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__link {
      top: inherit;
      position: fixed;
      bottom: 270px;
      left: 25%; }
      #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__link a {
        position: inherit;
        left: inherit;
        width: 50%; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__subtitle .animation-contents {
      margin-top: 89%;
      color: #5b5b5b;
      top: 200px;
      right: inherit;
      width: 90%;
      text-align: center; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__image--1573579651092, #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 img {
      height: 320px; }
    #shopify-section-page-sections-jewelry-category .slideshow__slide--1573579651102 .hero__text-wrap {
      position: sticky;
      bottom: 20%; }
  #shopify-section-page-sections-jewelry-category .hero {
    height: 400px; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1578437070483 .hero {
    height: 360px; }
  #shopify-section-page-sections-jewelry-category .slideshow__slide--1578437070483 .hero__title {
    /*       left: 8%; */
    top: 120px;
    position: inherit; } }
/***** END JEWELRY CATEGORY *****/
/***** START KEEPSAKES CATEGORY *****/
#shopify-section-page-sections-keepsakes-category {
  height: 100%; }
  #shopify-section-page-sections-keepsakes-category .index-section {
    margin: 8rem 0; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--left .h3, #shopify-section-page-sections-keepsakes-category .feature-row__text--left p {
    text-align: left;
    color: #5b5b5b;
    /*      font-family: "Libre Baskerville", serif;
         font-size: 4rem;
         color: #fff;
         text-align: center;
         font-style: italic;
         padding-top:10rem; */ }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--left .btn, #shopify-section-page-sections-keepsakes-category .feature-row__text--left .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .feature-row__text--left .shopify-payment-button__button--unbranded {
    margin: 2rem 0;
    float: left; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--right .h3, #shopify-section-page-sections-keepsakes-category .feature-row__text--right p {
    text-align: right;
    color: #5b5b5b; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--right .btn, #shopify-section-page-sections-keepsakes-category .feature-row__text--right .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .feature-row__text--right .shopify-payment-button__button--unbranded {
    margin: 2rem 0;
    float: right; }
  #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section {
    max-width: 1600px;
    width: 100%;
    height: 650px;
    background: green;
    background: url(/cdn/shop/files/lt-keepakes-category-hero_1600.jpg?v=1675347581);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 7rem;
      color: #fff;
      text-align: left;
      padding: 0; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Open Sans", Ariel, sans-serif;
      font-size: 1.6rem;
      color: #fff;
      text-align: left;
      line-height: 2.2rem;
      margin-top: 3rem; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p a {
      color: #fff;
      text-decoration: underline; }
  #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section {
    max-width: 1600px;
    width: 100%;
    height: 650px;
    background: green;
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-keepakes-category-framedmemorial_1600_a7ff2c78-b785-4918-b8ee-950628be1a53.jpg?v=1579039720);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .btn, #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .shopify-payment-button__button--unbranded {
      background: #fff;
      color: #002F6C;
      margin: 3rem auto;
      float: unset;
      font-weight: 600; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 7rem;
      color: #fff;
      text-align: left;
      padding: 0; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .feature-row__text--right .featured-row__subtext p, #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .feature-row__text--left .featured-row__subtext p {
      font-family: "Libre Baskerville";
      font-size: 4rem;
      color: #fff;
      text-align: center;
      line-height: 4.5rem;
      margin-top: 3rem;
      font-style: italic;
      padding: 0 1rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-desktop-banner2-urn-1600.jpg?v=1574639280") no-repeat;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: block;
    min-height: calc(26.84vw);
    max-width: 1800px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #shopify-section-page-sections-keepsakes-category svg {
    opacity: 0; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide.slideshow__slide--1578437070483 {
    margin-bottom: 2rem; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide.slideshow__slide--1578437070483 .hero__text-wrap {
      height: 0; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1571857142646 h3, #shopify-section-page-sections-keepsakes-category .slideshow__slide--1571857142646 .h3 {
    text-align: left;
    color: #fff;
    position: fixed;
    top: 250px;
    left: 80px;
    font-size: 4rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__subtitle {
    text-align: center;
    color: #fff;
    position: fixed;
    top: 300px;
    left: 170px;
    width: 35%;
    margin: 2rem 0; }
  #shopify-section-page-sections-keepsakes-category .hero__link {
    width: 40%;
    position: fixed;
    top: 67%;
    left: 13rem; }
    #shopify-section-page-sections-keepsakes-category .hero__link a {
      background-color: #e4e0bd;
      margin-top: 4.5rem;
      padding: 0;
      width: 40%; }
    #shopify-section-page-sections-keepsakes-category .hero__link p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      margin: 0; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__title .animation-contents {
    text-align: center;
    color: #5b5b5b;
    position: fixed;
    top: 70px;
    right: 10%;
    font-size: 5rem; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__title .animation-contents h3, #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__title .animation-contents .h3 {
      color: #5b5b5b;
      font-size: 5.5rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__subtitle .animation-contents {
    position: fixed;
    width: 40%;
    color: #5b5b5b;
    top: 240px;
    right: 100px;
    text-align: center; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__link a {
    background-color: rgba(109, 122, 131, 0.8);
    width: 20%;
    position: fixed;
    right: 240px;
    padding: 1rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1578437070483 .hero__title {
    text-align: left;
    color: #fff;
    position: fixed;
    top: 20%;
    left: 10%;
    font-family: 'Libre Baskerville', serif;
    padding: 2rem; }
  #shopify-section-page-sections-keepsakes-category img {
    margin: 0;
    width: 100%; }
  #shopify-section-page-sections-keepsakes-category .btn, #shopify-section-page-sections-keepsakes-category .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .shopify-payment-button__button--unbranded, #shopify-section-page-sections-keepsakes-category .shopify-payment-button, #shopify-section-page-sections-keepsakes-category .shopify-payment-button__button--unbranded {
    display: block;
    margin: 5px;
    width: 40%;
    padding: 1.5rem 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0; }
  #shopify-section-page-sections-keepsakes-category p {
    text-align: center;
    color: #5b5b5b; }
  #shopify-section-page-sections-keepsakes-category blockquote {
    border-left: none;
    font-size: 3.5rem;
    line-height: 3.5rem;
    color: #7e8f95;
    font-family: 'Libre Baskerville', serif; }
    #shopify-section-page-sections-keepsakes-category blockquote p {
      color: #7e8f95; }
    #shopify-section-page-sections-keepsakes-category blockquote .icon-quote {
      display: none; }
    #shopify-section-page-sections-keepsakes-category blockquote .quote-icon {
      background-image: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-desktop-quote-icon-1600.jpg?32252");
      background-repeat: no-repeat;
      height: 8rem;
      width: 10%; }

@media only screen and (max-width: 1220px) {
  #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section {
    max-width: 1600px;
    width: 100%;
    height: 550px;
    background: url(/cdn/shop/files/lt-keepakes-category-hero_1600.jpg?v=1675347581);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 5rem;
      color: #fff;
      text-align: left;
      padding: 0;
      margin-top: -14rem; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Open Sans", Ariel, sans-serif;
      font-size: 1.4rem;
      color: #fff;
      text-align: left;
      line-height: 2rem;
      margin-top: 3rem; } }
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section {
    max-width: 1600px;
    width: 100%;
    height: 400px;
    background: url(/cdn/shop/files/lt-keepakes-category-hero_1600.jpg?v=1675347581);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-family: "Libre Baskerville";
      font-size: 3.5rem;
      color: #fff;
      text-align: left;
      padding: 0;
      margin-top: 0rem; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      font-family: "Open Sans", Ariel, sans-serif;
      font-size: 1.2rem;
      color: #fff;
      text-align: left;
      line-height: 1.6rem;
      margin-top: 1rem; } }
@media only screen and (max-width: 480px) {
  #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p a {
    color: #000;
    text-decoration: underline; }

  #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section {
    background: url(/cdn/shop/files/lt-keepsake-category-hero_480.jpg?v=1675347580);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto;
    height: 55rem;
    margin-top: 0; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .h3 {
      font-size: 4rem;
      line-height: 5rem;
      margin-top: 3rem;
      width: 60%; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:first-child .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      color: #666;
      text-align: center;
      margin-top: 18rem; }

  #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section {
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-keepsake-category-framedemorial_480.jpg?v=1578689807);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: top center;
    margin: 0 auto;
    height: 75rem;
    margin-top: -16rem; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .feature-row__text--right .h3 {
      font-size: 4.2rem;
      line-height: 4.5rem;
      width: 60%; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .feature-row__text--right .featured-row__subtext p {
      color: #666;
      text-align: center;
      margin-top: 20rem;
      font-size: 1.6rem;
      line-height: 3.3rem;
      padding: 0; }
    #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .btn, #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section .page-width .shopify-payment-button__button--unbranded {
      background: #002F6C;
      color: #fff;
      margin: 3rem auto;
      float: unset; }

  #shopify-section-page-sections-keepsakes-category .h3 {
    font-size: 2.5em;
    line-height: 5.5rem; }

  #shopify-section-page-sections-keepsakes-category .index-section:first-child {
    /*    padding-bottom: 5rem;  */ }

  #shopify-section-page-sections-keepsakes-category blockquote p {
    font-size: 2.2rem; }

  #shopify-section-page-sections-keepsakes-category blockquote {
    padding: 0; }

  #shopify-section-page-sections-keepsakes-category blockquote .quote-icon {
    width: 40%; }

  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573576664140 .hero__text-wrap .page-width {
    display: table;
    position: relative;
    bottom: 18rem; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--left .h3, #shopify-section-page-sections-keepsakes-category .feature-row__text--left p {
    text-align: center;
    color: #5b5b5b;
    margin: 0; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--left .btn, #shopify-section-page-sections-keepsakes-category .feature-row__text--left .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .feature-row__text--left .shopify-payment-button__button--unbranded {
    margin: 2rem auto;
    text-align: center;
    width: 50%;
    float: none; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--right .h3, #shopify-section-page-sections-keepsakes-category .feature-row__text--right p {
    text-align: center;
    color: #5b5b5b;
    margin: 0; }
  #shopify-section-page-sections-keepsakes-category .feature-row__text--right .btn, #shopify-section-page-sections-keepsakes-category .feature-row__text--right .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-keepsakes-category .feature-row__text--right .shopify-payment-button__button--unbranded {
    margin: 2rem auto;
    width: 60%;
    float: none; }
  #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(3) .index-section .page-width .feature-row, #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(5) .index-section .page-width .feature-row {
    display: flex; }
    #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(3) .index-section .page-width .feature-row .feature-row__item:last-child, #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(5) .index-section .page-width .feature-row .feature-row__item:last-child {
      order: 2; }
    #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(3) .index-section .page-width .feature-row .feature-row__item:last-child, #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(5) .index-section .page-width .feature-row .feature-row__item:last-child {
      order: 1;
      width: 100%; }
  #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(4) {
    display: block; }
    #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(4) .featured-row__subtext p {
      color: #666;
      font-size: 5rem; }
    #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(4) .feature-row__text {
      margin-top: 8rem; }
    #shopify-section-page-sections-keepsakes-category .page-blocks > div:nth-child(4) .index-section .page-width .feature-row__text--left .featured-row__subtext p {
      color: #666;
      font-size: 3rem;
      line-height: 3.5rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1578437070483 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-mobile-hero_480.jpg?v=1576015813");
    background-size: cover;
    height: 300px; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/lt-memorial-mobile-480-2.jpg?v=1576098912");
    background-size: cover;
    height: 830px; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__image-wrapper {
    background: url("https://cdn.shopify.com/s/files/1/0007/9337/8881/files/urn-pendant-bg-480-2.jpg?v=1576107644");
    background-repeat: no-repeat;
    background-size: contain;
    height: 860px; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__image-wrapper p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      background-color: #e4e0bd; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 h3, #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .h3 {
    left: inherit;
    line-height: 4rem;
    font-size: 3.6rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__subtitle {
    width: 90%;
    left: 0;
    top: 300px; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__subtitle .animation-contents {
      margin-left: 4rem;
      line-height: 2rem; }
  #shopify-section-page-sections-keepsakes-category .featured-row__subtext {
    /*     font-family: 'Libre Baskerville', serif; */
    color: #fff;
    text-align: center;
    font-size: 1.6rem; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__link {
    width: 100%;
    position: fixed;
    top: 50%;
    left: 0; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__link a {
      background-color: #e4e0bd;
      margin-top: 1rem;
      padding: 0;
      width: 55%; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573580313065 .hero__link p {
      padding: 1rem 0;
      color: #666;
      font-size: 1.5rem;
      margin: 0; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 {
    margin: 4rem 0; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__title .animation-contents {
      right: 0;
      margin-top: 88%;
      color: #5b5b5b;
      width: 100%; }
      #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__title .animation-contents h3, #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__title .animation-contents .h3 {
        font-size: 4rem;
        line-height: 4rem; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__link {
      top: inherit;
      position: fixed;
      bottom: 270px;
      left: 25%; }
      #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__link a {
        position: inherit;
        left: inherit;
        width: 50%; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__subtitle .animation-contents {
      margin-top: 89%;
      color: #5b5b5b;
      top: 200px;
      right: inherit;
      width: 90%;
      text-align: center; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__image--1573579651092, #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 img {
      height: 320px; }
    #shopify-section-page-sections-keepsakes-category .slideshow__slide--1573579651102 .hero__text-wrap {
      position: sticky;
      bottom: 20%; }
  #shopify-section-page-sections-keepsakes-category .hero {
    height: 400px; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1578437070483 .hero {
    height: 360px; }
  #shopify-section-page-sections-keepsakes-category .slideshow__slide--1578437070483 .hero__title {
    /*       left: 8%; */
    top: 120px;
    position: inherit; } }
/***** END KEEPSAKES CATEGORY *****/
/***** SPECIAL OFFERS & SELECTED INDEPENDENT PAGE *****/
.hero-text-container {
  text-align: center;
  height: 400px; }

.hero-text-body {
  color: #004071;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: normal;
  margin-bottom: 2rem; }

.hero-text-h1 {
  color: #004071;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  font-size: 148px;
  font-weight: 900;
  line-height: 125px;
  padding: 20px 0; }

.hero-text-h2 {
  color: #004071;
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 50px;
  padding: 0;
  text-transform: uppercase; }

.hero-text-super {
  vertical-align: top;
  font-size: 70px;
  line-height: 60px;
  font-weight: 600; }

.hero-text {
  color: #004071;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  font-size: 48px;
  font-weight: 200;
  line-height: normal; }

.hero-divider {
  border: 1px solid #004071;
  width: 180px;
  margin: 20px auto; }

.hero-semi-bold {
  font-weight: 600; }

.hero-button, .hero-button-alt {
  background-color: #004071;
  color: white;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  font-weight: 200;
  padding: 15px 40px;
  margin: 25px auto;
  line-height: 107px; }

.hero-button-alt {
  display: none; }

a.hero-button:link, a.hero-button-alt:link {
  color: white; }

a.hero-button:visited, a.hero-button-alt:visited {
  color: white; }

.key-advantage-container {
  padding: 20px; }

.key-advantage-list {
  list-style: none; }

.key-advantage-list li {
  text-align: left;
  background: url("/cdn/shop/files/checkmark.png?10027") no-repeat left top;
  padding-left: 60px; }

.key-advantage-list span {
  color: #004071;
  font-family: Roboto, Verdana, Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
  vertical-align: top; }

.key-advantage-list p {
  color: #000000;
  font-family: Roboto, Verdana, Arial, sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: normal; }

.special-sub-title {
  font-family: Lato, Verdana, Arial, sans-serif;
  font-size: 28pt;
  font-weight: 300;
  color: #004071;
  line-height: normal;
  text-align: center;
  padding: 5rem 0 2rem; }

.special-divider {
  border: 2px solid #004071;
  width: 80px;
  margin: 0px auto;
  margin-bottom: 5rem; }

.specials-power-pin {
  text-align: center;
  line-height: normal; }

.specials-power-pin h2, .specials-power-pin .h2 {
  font-size: 80px;
  color: #004071;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  font-weight: 700;
  line-height: normal; }

.specials-power-pin h2 span, .specials-power-pin .h2 span {
  font-weight: 400; }

.specials-power-pin p {
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  color: #000000;
  font-weight: 200; }

.specials-power-pin .divider {
  border: 1px solid #004071;
  width: 100px;
  margin: 15px auto; }

.special-testimonial:before {
  margin-top: 5rem;
  display: block;
  content: "\201C";
  font-size: 72pt;
  position: relative;
  line-height: 130px;
  color: #000000;
  font-family: Georgia, serif; }

.special-testimonial p {
  font-family: Lato, Arial, sans-serif;
  font-weight: 300;
  font-size: 24pt;
  line-height: 38pt; }

.partner-disclaimer {
  padding: 3rem 0; }

/***** END SPECIAL OFFERS & SELECTED INDEPENDENT PAGE *****/
/***** CONTACT FORM *****/
.form-success {
  font-weight: 800;
  color: green; }

/***** END CONTACT FORM *****/
@media only screen and (min-width: 481px) {
  .subcat-inner .title {
    text-align: left;
    margin: 10px; } }
/* Style tab */
.tab {
  overflow: hidden;
  border: 1px solid #aaa;
  background-color: #f1f1f1; }

/* Style buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s; }

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd; }

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc; }

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 2rem;
  border: 1px solid #ccc;
  border-top: none; }

.tabcontent-urn-heart, .tabcontent-urn-cross, .tabcontent-urn-gemstone {
  height: 85rem; }

#p-and-d {
  display: none;
  padding: 3rem 1.2rem;
  border: none;
  border: 1px solid #ccc; }
  #p-and-d .panel-default {
    border: none; }
  #p-and-d .panel-heading {
    background-color: #fff;
    border: none; }

#Description {
  display: block; }

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

/* #shopify-section-page-sections-holidayguide div:nth-child(9) .index-section {
 display:none;  
}

#shopify-section-page-sections-holidayguide div:nth-child(14) .index-section {
  display:block;  
} */
.feature-row__image {
  width: 100%; }

.panel-group {
  margin-bottom: 10px; }

.panel-group .panel {
  margin-bottom: 0; }

.panel-group .panel + .panel {
  margin-top: 5px; }

.panel-group .panel-heading {
  border-bottom: 0; }

.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd; }

.panel-group .panel-footer {
  border-top: 0; }

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }

.panel-default > .panel-heading {
  color: rgba(0, 0, 0, 0.7);
  background-color: #f5f5f5;
  border-color: #ddd;
  padding: 1rem 0 .75rem 1rem; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd; }

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333; }

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd; }

.panel-primary {
  border-color: #333; }

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #333;
  border-color: #333; }

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #333; }

.panel-primary > .panel-heading .badge {
  color: #333;
  background-color: #fff; }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #333; }

.pplr-swatch-element.pplrimage {
  opacity: .8;
  border: 1px solid #aaa; }

.pplr-swatch-element.pplrimage.selected {
  opacity: 1;
  border: 2px solid #333; }

.pplr-swatch-element.pplrimage.pplr_deselect {
  border: 0px solid #fff; }

.pplr_tab_wrapper, .tab_i_h {
  width: 100%;
  margin-top: 2rem; }

.pplr_tab_wrapper .pplr_active {
  background-color: #eee;
  border-bottom: 1px solid #ffffff; }

.pplr-selecter-selected {
  width: 100% !important; }

/* one item */
.pplr_tab_index:first-child:nth-last-child(1) {
  width: 100%; }

/* two items */
.pplr_tab_index:first-child:nth-last-child(2),
.pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index {
  width: 50%; }
  .pplr_tab_index:first-child:nth-last-child(2) .pplr-tab-number,
  .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index .pplr-tab-number {
    margin: 0 45.2%; }

/* three items */
.pplr_tab_index:first-child:nth-last-child(3),
.pplr_tab_index:first-child:nth-last-child(3) ~ .pplr_tab_index {
  width: 33.3333%; }
  .pplr_tab_index:first-child:nth-last-child(3) .pplr-tab-number,
  .pplr_tab_index:first-child:nth-last-child(3) ~ .pplr_tab_index .pplr-tab-number {
    margin: 0 43%; }

/* four items */
.pplr_tab_index:first-child:nth-last-child(4),
.pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index {
  width: 25%; }

/* five items */
.pplr_tab_index:first-child:nth-last-child(5),
.pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index {
  width: 20%; }
  .pplr_tab_index:first-child:nth-last-child(5) .pplr-tab-number,
  .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index .pplr-tab-number {
    margin: 0 37.25% !important; }

/* six items */
.pplr_tab_index:first-child:nth-last-child(6),
.pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index {
  width: 16.6%; }
  .pplr_tab_index:first-child:nth-last-child(6) .pplr-tab-number,
  .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .pplr-tab-number {
    padding: 0 17px 0 8px !important;
    margin: 0 34% 0 34% !important; }

/* seven items */
.pplr_tab_index:first-child:nth-last-child(7),
.pplr_tab_index:first-child:nth-last-child(7) ~ .pplr_tab_index {
  width: fit-content; }
  .pplr_tab_index:first-child:nth-last-child(7) .pplr-tab-number,
  .pplr_tab_index:first-child:nth-last-child(7) ~ .pplr_tab_index .pplr-tab-number {
    padding: 0 15px 0 7px !important; }

/* eight items */
.pplr_tab_index:first-child:nth-last-child(8),
.pplr_tab_index:first-child:nth-last-child(8) ~ .pplr_tab_index {
  width: fit-content; }

.pplr_preview_wrapper {
  left: 0 !important;
  margin-left: 1rem !important;
  padding-right: 8px !important; }

#pplr_canvas {
  padding: 2rem;
  /*   padding: 0; */ }

#FeaturedImageZoom-product-template-horizontal-15369356705873 {
  padding: 0; }
  #FeaturedImageZoom-product-template-horizontal-15369356705873 #pplr_canvas {
    padding: 0 !important; }
  #FeaturedImageZoom-product-template-horizontal-15369356705873 .pplr_preview_wrapper {
    padding: 0 !important; }

button.ltk-btn-custom-preview {
  background: #eee;
  color: #666;
  font-size: 1.2rem;
  padding: .5rem 1rem;
  font-weight: 300;
  letter-spacing: -.2px;
  display: block;
  margin: auto;
  margin-top: 2rem; }
  button.ltk-btn-custom-preview:hover {
    background: #ddd;
    color: #333; }

#shopify-section-page-sections-holidayguide *, #shopify-section-page-sections-gift-guide * {
  text-align: center; }
  #shopify-section-page-sections-holidayguide * .hero__image--1572533903432, #shopify-section-page-sections-gift-guide * .hero__image--1572533903432 {
    margin: 0 auto; }

/***** Custom LTK -- Footer *****/
.nav > li > a, .nav-contact > li {
  position: relative;
  display: block;
  padding: 5px 0px; }

.site-footer__copyright-content--powered-by {
  display: none; }

.newsletter__submit {
  background-color: #aaa; }

.site-footer__newsletter {
  margin: 0; }

.footer-social {
  padding-top: 40px; }

.site-footer .sa-link {
  text-align: right; }

@media (max-width: 767px) {
  .site-footer .contact, .site-footer .navbar {
    border-bottom: 1px solid #aaa;
    padding: 20px 0;
    margin-bottom: 20px; }

  #chainGuide .slider-nav .slick-slide.slick-current.slick-active span {
    display: block !important;
    font-size: 10px;
    position: relative;
    color: #004070;
    padding: 4px; }

  #chainGuide .slider-nav .slick-slide.slick-current.slick-active p {
    font-size: 9px !important;
    margin: 0;
    color: #004070;
    display: block !important;
    padding: 2px; }

  #chainGuide .slider-nav .slick-current.slick-active span {
    display: block;
    position: relative;
    bottom: auto;
    text-align: center;
    width: max-content;
    margin: auto;
    background: #efefef;
    border-radius: 50%;
    font-family: Libre Baskerville,serif;
    font-size: 24px;
    color: #8d8d8d;
    padding: 5px 12px;
    top: -15px; }

  #chainGuide .slider-nav > div span {
    display: block;
    position: relative;
    bottom: auto;
    text-align: center;
    width: max-content;
    margin: auto;
    background: #efefef;
    border-radius: 50%;
    font-family: Libre Baskerville,serif;
    font-size: 10px;
    color: #8d8d8d;
    padding: 8px; }

  .site-footer__newsletter {
    margin: 0px auto; }

  .site-footer .sa-link {
    text-align: center; } }
/***** End -- Footer *****/
/***** Custom LTK -- FAQs *****/
.faq-container .faqHeader {
  padding: 2rem 0 1rem 0;
  color: #6c757c;
  font-size: 2.5rem;
  font-family: 'Libre Baskerville', serif; }

/***** End -- FAQs *****/
/***** Custom LTK -- Shipping *****/
th.ship-table-left,
th.ship-table-middle,
th.ship-table-right,
td.ship-table-sub-head-middle {
  background-color: #eee;
  border: 1px solid #aaa; }

td.ship-table-left a {
  color: #00a3e0; }

.shipping-wrapper {
  margin-bottom: 2rem;
  padding: 4px 10px;
  text-align: center;
  color: white;
  background-color: #666;
  font-size: 1.2em;
  font-weight: 300; }
  .shipping-wrapper .can {
    display: none; }
  .shipping-wrapper .shipping-container-image {
    height: 20px;
    padding: 4px 5px 0 5px;
    display: inline-block; }

/***** End -- Shipping *****/
/***** ACCOUNT *****/
#customer_logout_link {
  padding: 1rem;
  background-color: #002f6c;
  color: #fff; }

/***** LTK Misc *****/
.header-blue-lato {
  text-transform: uppercase;
  color: #002f6c;
  font-size: 1.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  padding: 0 0 1.5rem 0;
  display: block; }

.FS.header-blue-lato {
  padding: 0;
  margin: 20px 0 10px 0; }

.gc-header-box {
  text-align: center;
  margin: 1rem 0 3rem 0;
  background: #eee;
  padding: 2rem; }
  .gc-header-box a {
    color: #00a3e0;
    font-style: italic; }

.collection-description img {
  margin: 3rem 0; }

.ltk-cat-header {
  font-weight: 600;
  font-size: 30px;
  text-align: left;
  position: absolute;
  top: -300px;
  left: 5%;
  line-height: 30px;
  color: #002f6c;
  font-family: 'Libre Baskerville', serif; }

.collection-header h4, .collection-header .h4 {
  text-align: left;
  margin-top: 1rem;
  position: absolute;
  top: -250px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  left: 5%;
  width: 80%;
  color: #002f6c;
  font-size: 18px;
  line-height: 2; }

.tabcontent .faq-container .panel-default {
  border-color: #ddd; }

.tabcontent .faq-container .panel-default > .panel-heading {
  color: rgba(0, 0, 0, 0.7);
  background-color: #f5f5f5;
  border-color: #ddd;
  padding: 1rem 0 1rem 1rem; }

#ProductPrice-product-redeem-gift-card {
  display: none; }

.btn, .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .shopify-payment-button__button--unbranded, button.btn-apply {
  /*margin-left:1rem;*/
  padding: 9px 18px;
  /*margin-top: -2px;*/ }

.btn:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus, button.btn-apply:hover {
  background: rgba(121, 150, 176, 0.9);
  color: #fff;
  text-decoration: none; }

.btn-account {
  margin-left: 0;
  margin: 2rem 0;
  padding: 9px 18px;
  background-color: #fff;
  color: #002f6c;
  border: 1px solid #aaa; }

.btn-box-blue {
  color: #fff;
  margin: 0 auto;
  width: 35%;
  display: block; }

.field__input-btn-wrapper div {
  float: left;
  padding: 0;
  margin: 0; }

.field__input-btn-wrapper button {
  float: left;
  margin: 0 0 0 1rem; }

.lt-page-text p a, .lt-page-text a, .article-wrap p a, .branded-link {
  color: #00a3e0; }

.testimony {
  background-color: #eee;
  padding: 20px 20px 20px 0px;
  border-radius: 8px;
  margin: 20px 0px 20px 0px; }

.testimony:before {
  display: inline;
  content: "\201C";
  font-size: 80px;
  position: relative;
  line-height: 30px;
  top: 20px;
  left: 20px;
  float: left;
  color: #666;
  padding-right: 15px;
  font-family: Georgia, serif; }

.testimony blockquote {
  font-size: 16px;
  font-family: Georgia, serif;
  font-style: italic;
  padding-left: 60px;
  padding-bottom: 0px;
  margin-bottom: 20px;
  text-align: left; }

.testimony p {
  font-size: 15px;
  text-align: right;
  margin: 0px;
  color: #002f6c; }

.testimony a {
  margin-left: 20px; }

.index-section .grid__item.medium-up--one-half {
  height: 300px;
  padding: 15px 5px 0 5px !important;
  margin-top: 5px;
  /*margin-bottom: 3rem;*/ }

.rich-text__text--medium p a, .partners-only-login p a {
  color: #00a3e0;
  text-decoration: none; }

.nav > li > a:focus, .nav > li > a:hover {
  color: #aaa;
  background-color: #004070; }

.site-footer a:hover {
  opacity: .9;
  color: #aaa; }

.stage-fp101 {
  margin-bottom: 5rem; }

.intro-fp101 {
  font-family: Lato, sans-serif;
  padding: 40px;
  margin: 3rem 0 5rem 0;
  font-size: 18px;
  text-align: left;
  color: #002f6c;
  background: #eee; }

.fp101-step h3, .fp101-step .h3 {
  color: #6c757c;
  font-weight: 300;
  margin: 1rem 0 1rem 0;
  text-align: center; }

.vcb-snippet:not(.vcb-custom) .row img {
  margin: 1.4em 0 1em 6.5rem;
  /*   display: block; */
  /*   margin-left: auto; */
  margin-right: auto; }

.clear {
  clear: both; }

#shopify-section-page-sections-memorial .memorial-page-hero-2 .lt-learn-more a {
  color: #fff;
  text-decoration: none;
  font-style: italic;
  text-align: left; }

.locket-studio-top {
  margin-bottom: 2rem; }
  .locket-studio-top p {
    padding: 1rem 1rem 0 1rem;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6rem;
    width: 100%; }
  .locket-studio-top img {
    width: 25%;
    margin: .5rem 0; }

.locket-studio-text {
  text-align: center;
  margin: 0 auto;
  width: 90%;
  padding: 2rem 0;
  color: #8a6d3b; }

.product-personalizer-cart-remove {
  margin-bottom: 3rem; }

.offer-inner span.sub, .offer-inner div.sub {
  display: block;
  margin-top: -15%;
  font-size: 1.5em;
  text-align: center;
  padding-left: .4rem;
  /*  width:60%;
  */
  float: left;
  /*padding-left:17rem;*/
  left: 32%; }

.offer-inner div.sub-left {
  color: #333; }

.offer-inner div.sub-right {
  color: #aaa;
  left: 28%; }

.offer.one:hover {
  color: #eee; }

.offer.two .glyphicon-circle-arrow-right::before {
  color: #aaa;
  display: block;
  margin-top: -15%;
  font-size: .7em;
  text-align: center;
  padding-left: .4rem;
  width: 20%;
  float: left; }

.glyphicon-circle-arrow::before {
  font-size: .7em; }

.collection-grid-item__title {
  opacity: 0;
  transition: all .75s; }

.no-padding {
  padding-left: 0;
  padding-right: 0; }

/* -- code to hide and show mobile and desktop slideshow -- */
@media screen and (max-width: small) {
  .slideshow-desktop {
    display: none; } }
@media screen and (min-width: small1) {
  .slideshow-mobile {
    display: none; } }
/* - end - */
/* force slideshow resize instead of cropping */
.slideshow {
  height: auto;
  /* override the height value from the section.seettings */ }

.slideshow__image,
.slideshow__link {
  position: relative; }

.slideshow__image:not(.ratio-container),
.ratio-container:after {
  padding-bottom: 31.8%;
  /* here is the aspect ratio of images */ }

/***** LTK TOOL TIPS *****/
/* Color Variables */
/* Icon Mixin */
/* Icons */
.tt-icons {
  display: flex; }

.tt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #aaa;
  color: #fff;
  width: 22px;
  height: 22px;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 1.8rem;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease;
  /*  &--codepen { @include social-icon($color-codepen); }*/ }
  .tt-icon:hover {
    color: #eee; }
    .tt-icon:hover .tooltip {
      visibility: visible;
      opacity: 1;
      transform: translate(-50%, -105%);
      background: black;
      width: 20rem;
      text-align: center; }
  .tt-icon:active {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset; }
  .tt-icon i {
    position: relative;
    top: 1px; }

/* Tooltips */
.tooltip {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 20rem;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  /*text-transform: uppercase;*/
  transform: translate(-50%, -100%);
  transition: all 0.3s ease;
  z-index: 1; }
  .tooltip:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 52%;
    width: 0;
    height: 0;
    content: "";
    border: solid;
    border-width: 10px 10px 0 10px;
    border-color: transparent;
    transform: translate(-50%, 20%); }

.tt-icon .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -2px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent; }

.site-header {
  padding: 0 1.5rem; }

.page-width {
  padding: 0 2.5rem; }

#shopify-section-page-sections-holidayguide .page-width:nth-child(2), #shopify-section-page-sections-gift-guide .page-width:nth-child(2) {
  padding: 0; }

#shopify-section-page-sections-holidayguide .feature-row, #shopify-section-page-sections-gift-guide .feature-row {
  padding-top: 8rem; }

/***** END LTK TOOL TIPS *****/
/***** GENERAL MOBILE VIEWS *****/
@media only screen and (max-width: 1024px) {
  .cat-header-text {
    margin: 5rem 5%; }

  #validationButton {
    padding: 8px;
    font-size: 13px;
    letter-spacing: 0; }

  #quantity {
    padding: 0 10px 0 8px; }

  .pinInstructions {
    margin-top: 1rem; }

  .step-label {
    font-size: 9px; }

  .cart .cart__meta {
    padding: 0 0 0 1rem; }

  .cart .cart-line-item-left {
    padding-left: 1rem; }

  .btn.btn--small-wide, .shopify-payment-button .btn--small-wide.shopify-payment-button__button--unbranded {
    margin: 0rem 0 0 0 !important;
    width: 15rem;
    border-radius: 4px; }

  .site-header__logo {
    margin: 5px 0 2rem 0; }

  .site-nav {
    margin: 15px 0 25px 0; }

  /* two items */
  .pplr_tab_index:first-child:nth-last-child(2),
  .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index {
    width: 50%; }
    .pplr_tab_index:first-child:nth-last-child(2) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 44.2%; }

  /* four items */
  .pplr_tab_index:first-child:nth-last-child(4),
  .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index {
    width: 25%; }
    .pplr_tab_index:first-child:nth-last-child(4) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 37%; }

  .promotion-left {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0rem; }

  .promotion-left:focus {
    color: #fff; }

  .promotion-right {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    /*     margin-left: 1rem; */ } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn--link.site-header__menu.js-mobile-nav-toggle.mobile-nav--open {
    position: absolute;
    top: 15px;
    right: -30px; }

  .mobile-nav--close {
    position: absolute;
    top: -23px;
    right: -45px; }

  .btn.btn--small-wide, .shopify-payment-button .btn--small-wide.shopify-payment-button__button--unbranded {
    margin: 4rem 1rem 0 0; }

  .product-single__thumbnails.thumbnails-top {
    display: none; }

  .product-single__thumbnails.thumbnails-bottom {
    display: inline-block; }

  ul.product-single__thumbnails li {
    width: 25%;
    float: left; }

  span.share-title {
    display: none; }

  .sharing-text-mobile {
    display: none;
    float: left;
    text-align: right; }

  .sharing-text-desktop {
    display: none; }

  .announcement-bar__message img {
    display: none; }

  /* two items */
  .pplr_tab_index:first-child:nth-last-child(2),
  .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index {
    width: 50%; }
    .pplr_tab_index:first-child:nth-last-child(2) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 42% !important; }

  /* four items */
  .pplr_tab_index:first-child:nth-last-child(4),
  .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index {
    width: 25%; }
    .pplr_tab_index:first-child:nth-last-child(4) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 30% !important; }

  /* five items */
  .pplr_tab_index:first-child:nth-last-child(5),
  .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index {
    width: 20%; }
    .pplr_tab_index:first-child:nth-last-child(5) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 25% !important; }

  /* six items */
  .pplr_tab_index:first-child:nth-last-child(6),
  .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index {
    width: 16.6%; }
    .pplr_tab_index:first-child:nth-last-child(6) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 40% !important; }
    .pplr_tab_index:first-child:nth-last-child(6) .step-label,
    .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .step-label {
      display: none; } }
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .icon-hamburger {
    margin-right: -1.5rem;
    margin-top: -.5rem; }

  .btn.btn--small-wide, .shopify-payment-button .btn--small-wide.shopify-payment-button__button--unbranded {
    margin: 3rem 0 0 0 !important;
    width: 15rem;
    border-radius: 4px; }

  .cart__update--large {
    margin-right: 0; }

  .site-header__icons-wrapper {
    float: right !important; }

  .site-header__icons-wrapper * {
    float: left !important; }

  .logo--left .site-header__cart-count {
    left: 26px;
    top: 6px; }

  .site-header__account, .site-header__cart {
    display: block; }

  .btn--link.site-header__menu.js-mobile-nav-toggle.mobile-nav--open {
    margin-top: 0px;
    margin-right: -3rem; }

  .btn--link.site-header__menu.js-mobile-nav-toggle.mobile-nav--close {
    position: absolute;
    margin-top: -2.2rem;
    margin-left: -3rem; }

  .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: 15px; }

  .site-header__icons--plus .site-header__search {
    padding-right: 12rem; }

  .search-ehader.search.search--focus {
    margin-top: -4rem; }

  .ltk-cat-header {
    position: relative;
    top: 0;
    margin-top: 2rem;
    font-size: 24px; }

  .philosophy img {
    margin: 0; }

  .philosophy-header h4, .philosophy-header .h4, .philosophy h4, .philosophy .h4 {
    position: relative;
    top: 0; }

  .site-header {
    padding: 0 1.5rem; }

  .site-header__logo {
    padding-left: 0; }

  .xe-currency {
    margin-bottom: -1rem; }

  #xe-currency-dropdown {
    margin-right: 0rem;
    margin-bottom: 2rem;
    display: block; }

  .doubly-nice-select.currency-switcher.right {
    font-size: 12px;
    font-weight: 400;
    height: 42px;
    padding-left: 6px;
    padding-right: 25px;
    transition: all .2s ease-in-out; }

  /* two items */
  .pplr_tab_index:first-child:nth-last-child(2),
  .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index {
    width: 50%; }
    .pplr_tab_index:first-child:nth-last-child(2) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 42% !important; }

  /* four items */
  .pplr_tab_index:first-child:nth-last-child(4),
  .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index {
    width: 25%; }
    .pplr_tab_index:first-child:nth-last-child(4) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 30% !important; }

  /* five items */
  .pplr_tab_index:first-child:nth-last-child(5),
  .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index {
    width: 20%; }
    .pplr_tab_index:first-child:nth-last-child(5) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 38% !important; }

  /* six items */
  .pplr_tab_index:first-child:nth-last-child(6),
  .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index {
    width: 16.6%; }
    .pplr_tab_index:first-child:nth-last-child(6) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 40% !important; }
    .pplr_tab_index:first-child:nth-last-child(6) .step-label,
    .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .step-label {
      display: none; } }
@media only screen and (min-width: 768px) {
  .template--16177047371948__2d167efe-dc31-4ba4-8c9c-f0aec0985049.feature-row__item.feature-row__text.feature-row__text--right .featured-row-content {
    padding: 30px; }

  .template--16205734379692__2d167efe-dc31-4ba4-8c9c-f0aec0985049.feature-row__item .featured-row-content {
    padding: 30px; }

  .image-mobile {
    display: none !important; }

  .pin_validation .col-sm-12 {
    float: none; }

  .product-single__photos {
    margin-top: 4rem; }

  .btn--contact-us {
    width: 25%; }

  .site-header__icons-wrapper {
    height: auto;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center; }

  .search-header.search {
    padding: 0 6px;
    margin-top: -1rem; }

  .btn--link.site-header__menu.js-mobile-nav-toggle.mobile-nav--open {
    padding: 0; }

  .rich-text__text--medium--alt.rte-setting.text-center {
    margin: 0 auto;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: left !important;
    width: 80%; }

  .thumbnails-bottom {
    display: none; }

  .etched-outer {
    height: 70rem; }

  .etched-outer .row {
    margin-right: 0;
    margin-left: 0; } }
@media only screen and (max-width: 480px) {
  .tabcontent-urn-heart, .tabcontent-urn-cross {
    height: 155rem; }

  .tabcontent-urn-gemstone {
    height: 165rem; }

  .hero {
    height: 225px; }

  #Slideshow-1572543941119 {
    height: 3rem; }

  .slideshow__slide--1570809075070 .hero__title .animation-contents {
    top: -50px; }

  .btn-add-to-cart .pin-validation-focus {
    font-size: 13px;
    padding: 0; }

  .cart__image-wrapper.cart-flex-item a {
    text-align: center; }

  .btn.btn--small-wide, .shopify-payment-button .btn--small-wide.shopify-payment-button__button--unbranded {
    width: 100%; }

  .etched-outer {
    height: 100rem; }

  /* two items */
  .pplr_tab_index:first-child:nth-last-child(2),
  .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index {
    width: 50%; }
    .pplr_tab_index:first-child:nth-last-child(2) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(2) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 44%; }

  /* three items */
  .pplr_tab_index:first-child:nth-last-child(3),
  .pplr_tab_index:first-child:nth-last-child(3) ~ .pplr_tab_index {
    width: 33.3333%; }
    .pplr_tab_index:first-child:nth-last-child(3) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(3) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 40%; }

  /* four items */
  .pplr_tab_index:first-child:nth-last-child(4),
  .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index {
    width: 25%; }
    .pplr_tab_index:first-child:nth-last-child(4) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(4) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 34%; }

  /* five items */
  .pplr_tab_index:first-child:nth-last-child(5),
  .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index {
    width: 20%; }
    .pplr_tab_index:first-child:nth-last-child(5) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(5) ~ .pplr_tab_index .pplr-tab-number {
      margin: 0 30.25% !important; }

  /* six items */
  .pplr_tab_index:first-child:nth-last-child(6),
  .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index {
    width: 16.6%; }
    .pplr_tab_index:first-child:nth-last-child(6) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .pplr-tab-number {
      padding: 0 17px 0 8px !important;
      margin: 0 34% 0 34% !important; }
    .pplr_tab_index:first-child:nth-last-child(6) .step-label,
    .pplr_tab_index:first-child:nth-last-child(6) ~ .pplr_tab_index .step-label {
      display: none; }

  /* seven items */
  .pplr_tab_index:first-child:nth-last-child(7),
  .pplr_tab_index:first-child:nth-last-child(7) ~ .pplr_tab_index {
    width: fit-content; }
    .pplr_tab_index:first-child:nth-last-child(7) .pplr-tab-number,
    .pplr_tab_index:first-child:nth-last-child(7) ~ .pplr_tab_index .pplr-tab-number {
      padding: 0 15px 0 7px !important; }

  /* eight items */
  .pplr_tab_index:first-child:nth-last-child(8),
  .pplr_tab_index:first-child:nth-last-child(8) ~ .pplr_tab_index {
    width: 12.4%; }
    .pplr_tab_index:first-child:nth-last-child(8) .step-label,
    .pplr_tab_index:first-child:nth-last-child(8) ~ .pplr_tab_index .step-label {
      display: none; } }
/*****  END GENERAL MOBILE VIEWS *****/
/*****  CUSTOM SLIDESHOW *****/
.slider,
.slider > div {
  /* Images default to Center Center. Maybe try 'center top'? */
  background-position: center center;
  display: block;
  width: 100%;
  height: 600px;
  /* height: 100vh; */
  /* If you want fullscreen */
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  -moz-transition: transform .4s;
  -o-transition: transform .4s;
  -webkit-transition: transform .4s;
  transition: transform .4s; }

.slider > div {
  position: absolute; }

.slider > i {
  color: #5bbd72;
  position: absolute;
  font-size: 60px;
  margin: 20px;
  top: 40%;
  text-shadow: 0 10px 2px #223422;
  transition: .3s;
  width: 30px;
  padding: 10px 13px;
  background: #fff;
  /*background: rgba(255, 255, 255, .3);*/
  cursor: pointer;
  line-height: 0;
  box-sizing: content-box;
  border-radius: 3px;
  z-index: 4; }

.slider > i svg {
  margin-top: 3px; }

.slider > .left {
  left: -100px; }

.slider > .right {
  right: -100px; }

.slider:hover > .left {
  left: 0; }

.slider:hover > .right {
  right: 0; }

.slider > i:hover {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-2px); }

.slider > i.right:hover {
  transform: translateX(2px); }

.slider > i.right:active,
.slider > i.left:active {
  transform: translateY(1px); }

.slider:hover > div {
  transform: scale(1); }

.hoverZoomOff:hover > div {
  transform: scale(1); }

.slider > ul {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 4;
  padding: 0;
  margin: 0;
  transform: translateX(-50%); }

.slider > ul > li {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  list-style: none;
  float: left;
  margin: 10px 10px 0;
  cursor: pointer;
  border: 1px solid #fff;
  -moz-transition: .3s;
  -o-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s; }

.slider > ul > .showli {
  background-color: #eee;
  -moz-animation: boing .5s forwards;
  -o-animation: boing .5s forwards;
  -webkit-animation: boing .5s forwards;
  animation: boing .5s forwards; }

.slider > ul > li:hover {
  background-color: #ccc; }

.slider > .show {
  z-index: 1; }

.hideDots > ul {
  display: none; }

.showArrows > .left {
  left: 0; }

.showArrows > .right {
  right: 0; }

.titleBar {
  z-index: 2;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
  padding: 20px 30px;
  transition: .3s;
  color: #fff; }

.titleBar * {
  transform: translate(-20px, 30px);
  transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
  opacity: 0; }

.titleBarTop .titleBar * {
  transform: translate(-20px, -30px); }

.slider:hover .titleBar,
.slider:hover .titleBar * {
  transform: translate(0);
  opacity: 1; }

.titleBarTop .titleBar {
  top: 0;
  bottom: initial;
  transform: translateY(-100%); }

.slider > div span {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  color: #fff;
  text-align: center;
  padding: 0;
  width: 100%; }

@keyframes boing {
  0% {
    transform: scale(1.2); }

  40% {
    transform: scale(0.6); }

  60% {
    transform: scale(1.2); }

  80% {
    transform: scale(0.8); }

  100% {
    transform: scale(1); } }

html {
  height: 100%;
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  height: 100%;
  margin: 0;
  padding: 0; }

.content {
  padding: 10px 15vw; }

.one {
  background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Bracelet-Valentines_HomeSlider_480x480_ab018473-bc73-4207-9976-4d49b161a1fa.jpg?5025190313427798006); }

.two {
  background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Combo-CharmPendUrn_HomeSlider_480x480_e25275bc-995d-473f-8452-6b4c7d27db95.jpg?17470369652500463134); }

.three {
  background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/eGiftCard_HomeSlider_480x480_b740e84c-efe1-4ab0-bbbe-ee950d905fed.jpg?13000821505264515455); }

.four {
  background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Rings_HomeSlider_480x480_92ef7d1a-7820-4ae5-934b-778666b83b38.jpg?13000821505264515455); }

.slider, .slider > div {
  height: 414px; }

@media (max-width: 400px) {
  .slider, .slider > div {
    height: 375px; } }
/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .one {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Bracelet-Valentines_HomeSlider_480x480_ab018473-bc73-4207-9976-4d49b161a1fa.jpg?5025190313427798006); }

  .two {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Combo-CharmPendUrn_HomeSlider_480x480_e25275bc-995d-473f-8452-6b4c7d27db95.jpg?17470369652500463134); }

  .three {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/eGiftCard_HomeSlider_480x480_b740e84c-efe1-4ab0-bbbe-ee950d905fed.jpg?13000821505264515455); }

  .four {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Rings_HomeSlider_480x480_92ef7d1a-7820-4ae5-934b-778666b83b38.jpg?13000821505264515455); }

  .slider, .slider > div {
    height: 580px; } }
/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .one {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Bracelet-Valentines_HomeSlider_992x514_f534ee0c-9a21-4f8a-9498-fc8392f74d36.jpg?17470369652500463134); }

  .two {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Combo-CharmPendUrn_HomeSlider_1600x686_cc11374d-22eb-4185-bca3-cf0c602df669.jpg?15377109907819646608); }

  .three {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/eGiftCard_HomeSlider_1600x686_ecebff9f-cad6-42b2-b8fb-1a53cce16f6d.jpg?15377109907819646608); }

  .four {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Rings_HomeSlider_1600x686_e0c8cd35-c035-4522-ab52-05c4444a4089.jpg?15377109907819646608); }

  .slider, .slider > div {
    height: 400px; } }
/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .one {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Bracelet-Valentines_HomeSlider_1600x686_a9681c3c-6657-4009-a218-36d111216f68.jpg?17470369652500463134); }

  .two {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Combo-CharmPendUrn_HomeSlider_1600x686_cc11374d-22eb-4185-bca3-cf0c602df669.jpg?15377109907819646608); }

  .three {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/eGiftCard_HomeSlider_1600x686_ecebff9f-cad6-42b2-b8fb-1a53cce16f6d.jpg?15377109907819646608); }

  .four {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Rings_HomeSlider_1600x686_e0c8cd35-c035-4522-ab52-05c4444a4089.jpg?15377109907819646608); }

  .slider, .slider > div {
    height: 420px; } }
/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  .one {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Bracelet-Valentines_HomeSlider_2560x810_b2401525-299f-4829-8891-de7cbaa21205.jpg?15377109907819646608); }

  .two {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Combo-CharmPendUrn_HomeSlider_1600x686_cc11374d-22eb-4185-bca3-cf0c602df669.jpg?15377109907819646608); }

  .three {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/eGiftCard_HomeSlider_1600x686_ecebff9f-cad6-42b2-b8fb-1a53cce16f6d.jpg?15377109907819646608); }

  .four {
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Rings_HomeSlider_1600x686_e0c8cd35-c035-4522-ab52-05c4444a4089.jpg?15377109907819646608); } }
/*****  END CUSTOM SLIDESHOW  *****/
/***** PERSONALIZER CUSTOMIZATION *****/
.pplr-preview-btn {
  display: none; }

.pplr-wrapper, .pplr_active input {
  float: left !important; }

.horizontal-mega-menu > li > ul.mm-submenu.tree {
  width: 225px !important;
  z-index: 9999; }

input.pplr_monogram.fileupload, div[class*="pplr-_"], .pplr-color-select {
  display: none !important; }

input.pplr_monogram.fileupload.cstmfy_c_required {
  display: block; }

.pplr-wrapper.label {
  width: 2rem;
  float: left; }

.slick-track #pplr-preview {
  display: none !important; }

/****** Builder Monogram Input Styling ****/
div[class*="pplr-1100"] .ptooltip, div[class*="pplr-1100"] .pplr-character-count,
div[class*="pplr-1300"] .ptooltip, div[class*="pplr-1300"] .pplr-character-count {
  display: none !important; }

div[class*="pplr-11001"], div[class*="pplr-11002"], div[class*="pplr-11003"],
div[class*="pplr-13001"], div[class*="pplr-13002"], div[class*="pplr-13003"] {
  width: 32% !important; }

div[class*="pplr-11001"],
div[class*="pplr-13001"] {
  text-alicgn: right !important; }

div[class*="pplr-11001"] .pplrlabel,
div[class*="pplr-13001"] .pplrlabel {
  text-align: center !important;
  width: 100% !important;
  padding-right: 15px; }

div[class*="pplr-11001"] input.pplr_monogram,
div[class*="pplr-13001"] input.pplr_monogram {
  float: right !important;
  margin-top: 20px !important;
  margin-right: 1% !important;
  width: 100% !important;
  text-align: center !important; }

div[class*="pplr-11002"],
div[class*="pplr-13002"] {
  text-align: center !important;
  margin-bottom: 20px !important; }

div[class*="pplr-11002"] .pplrlabel,
div[class*="pplr-13002"] .pplrlabel {
  text-align: center !important;
  width: 100% !important; }

div[class*="pplr-11002"] input.pplr_monogram,
div[class*="pplr-13002"] input.pplr_monogram {
  height: 80px !important;
  margin: 0 !important;
  font-size: 4em !important;
  width: 4em !important;
  text-align: center !important;
  text-transform: uppercase !important; }

div[class*="pplr-11003"],
div[class*="pplr-13003"] {
  text-align: left !important; }

div[class*="pplr-11003"] .pplrlabel,
div[class*="pplr-13003"] .pplrlabel {
  text-align: center !important;
  width: 100% !important; }

div[class*="pplr-11003"] input.pplr_monogram,
div[class*="pplr-13003"] input.pplr_monogram {
  float: left !important;
  margin-top: 20px !important;
  margin-left: 1% !important;
  width: 100% !important;
  text-align: center !important; }

/*****  End Monogram ****/
.pplr-10001pin {
  display: none; }

.pplr_ins {
  float: none !important;
  display: block !important;
  overflow: visible !important;
  text-align: center; }

.pplr-confirmation .pplr_ins, .pplr-confirmation-front .pplr_ins, .pplr-confirmation-back .pplr_ins {
  text-align: left; }

div[class*="pplr-confirmation"] .pplrlabel {
  height: 80px;
  padding-right: 10px; }
div[class*="pplr-confirmation"] .pplr_ins {
  text-align: left; }

#pplr_tab_12 > div[class*="pplr-15001"] {
  display: none; }

.pplr canvas {
  background: #fff !important; }

.pplr_active .pplr-tab-number {
  color: #fff !important;
  background: #013766 !important;
  border-radius: 50% !important;
  border: none !important;
  padding: 0 5px !important;
  font-family: "Lato", Helvetica, Arial, sans-serif !important;
  height: 20%; }

.product-personalizer.pplr_background {
  margin: 0 !important; }

/* Dual Print */
#pplr-15369614491729 .pplr-12025 label, #pplr-15369614491729 .pplr-14008 label, #14973435968 .pplr-12025 label, #14973435968 .pplr-14008 label, #pplr-4652634538065 .pplr-12025 label, #pplr-4652634538065 .pplr-14008 label, #pplr-4652636700753 .pplr-12025 label, #pplr-4652636700753 .pplr-14008 label, #pplr-4652639682641 .pplr-12025 label, #pplr-4652639682641 .pplr-14008 label, #pplr-4652640796753 .pplr-12025 label, #pplr-4652640796753 .pplr-14008 label {
  width: 0 !important; }
#pplr-15369614491729 .pplr-12025initials-front label, #pplr-15369614491729 .pplr-14008initials-back label, #14973435968 .pplr-12025initials-front label, #14973435968 .pplr-14008initials-back label, #pplr-4652634538065 .pplr-12025initials-front label, #pplr-4652634538065 .pplr-14008initials-back label, #pplr-4652636700753 .pplr-12025initials-front label, #pplr-4652636700753 .pplr-14008initials-back label, #pplr-4652639682641 .pplr-12025initials-front label, #pplr-4652639682641 .pplr-14008initials-back label, #pplr-4652640796753 .pplr-12025initials-front label, #pplr-4652640796753 .pplr-14008initials-back label {
  display: none; }
#pplr-15369614491729 .toUpperCase, #14973435968 .toUpperCase, #pplr-4652634538065 .toUpperCase, #pplr-4652636700753 .toUpperCase, #pplr-4652639682641 .toUpperCase, #pplr-4652640796753 .toUpperCase {
  /*     width: 20% !important;  */ }
#pplr-15369614491729 .p_c_c .pplr-character-count, #14973435968 .p_c_c .pplr-character-count, #pplr-4652634538065 .p_c_c .pplr-character-count, #pplr-4652636700753 .p_c_c .pplr-character-count, #pplr-4652639682641 .p_c_c .pplr-character-count, #pplr-4652640796753 .p_c_c .pplr-character-count {
  /*     right: unset !important;
      top: 8px !important;
      left: 80px !important; */
  display: none; }
#pplr-15369614491729 .p_c_c .pplrlabel, #pplr-15369614491729 .p_c_c .oindexlabel, #14973435968 .p_c_c .pplrlabel, #14973435968 .p_c_c .oindexlabel, #pplr-4652634538065 .p_c_c .pplrlabel, #pplr-4652634538065 .p_c_c .oindexlabel, #pplr-4652636700753 .p_c_c .pplrlabel, #pplr-4652636700753 .p_c_c .oindexlabel, #pplr-4652639682641 .p_c_c .pplrlabel, #pplr-4652639682641 .p_c_c .oindexlabel, #pplr-4652640796753 .p_c_c .pplrlabel, #pplr-4652640796753 .p_c_c .oindexlabel {
  width: 100%; }
#pplr-15369614491729 .pppplrlabel, #14973435968 .pppplrlabel, #pplr-4652634538065 .pppplrlabel, #pplr-4652636700753 .pppplrlabel, #pplr-4652639682641 .pppplrlabel, #pplr-4652640796753 .pppplrlabel {
  display: none; }
#pplr-15369614491729 .pplr-13001first .pplrlabel, #pplr-15369614491729 .pplr-14008first .pplrlabel, #14973435968 .pplr-13001first .pplrlabel, #14973435968 .pplr-14008first .pplrlabel, #pplr-4652634538065 .pplr-13001first .pplrlabel, #pplr-4652634538065 .pplr-14008first .pplrlabel, #pplr-4652636700753 .pplr-13001first .pplrlabel, #pplr-4652636700753 .pplr-14008first .pplrlabel, #pplr-4652639682641 .pplr-13001first .pplrlabel, #pplr-4652639682641 .pplr-14008first .pplrlabel, #pplr-4652640796753 .pplr-13001first .pplrlabel, #pplr-4652640796753 .pplr-14008first .pplrlabel {
  text-align: right !important;
  width: 100% !important;
  padding-right: 15px; }
#pplr-15369614491729 .pplr-13002last .pplrlabel, #pplr-15369614491729 .pplr-14008last .pplrlabel, #14973435968 .pplr-13002last .pplrlabel, #14973435968 .pplr-14008last .pplrlabel, #pplr-4652634538065 .pplr-13002last .pplrlabel, #pplr-4652634538065 .pplr-14008last .pplrlabel, #pplr-4652636700753 .pplr-13002last .pplrlabel, #pplr-4652636700753 .pplr-14008last .pplrlabel, #pplr-4652639682641 .pplr-13002last .pplrlabel, #pplr-4652639682641 .pplr-14008last .pplrlabel, #pplr-4652640796753 .pplr-13002last .pplrlabel, #pplr-4652640796753 .pplr-14008last .pplrlabel {
  text-align: center !important;
  width: 100% !important; }
#pplr-15369614491729 .pplr-13003middle .pplrlabel, #pplr-15369614491729 .pplr-14008middle .pplrlabel, #14973435968 .pplr-13003middle .pplrlabel, #14973435968 .pplr-14008middle .pplrlabel, #pplr-4652634538065 .pplr-13003middle .pplrlabel, #pplr-4652634538065 .pplr-14008middle .pplrlabel, #pplr-4652636700753 .pplr-13003middle .pplrlabel, #pplr-4652636700753 .pplr-14008middle .pplrlabel, #pplr-4652639682641 .pplr-13003middle .pplrlabel, #pplr-4652639682641 .pplr-14008middle .pplrlabel, #pplr-4652640796753 .pplr-13003middle .pplrlabel, #pplr-4652640796753 .pplr-14008middle .pplrlabel {
  text-align: left !important;
  width: 100% !important; }
#pplr-15369614491729 .pplr-11001first input.pplr_monogram, #pplr-15369614491729 .pplr-14008first input.pplr_monogram, #14973435968 .pplr-11001first input.pplr_monogram, #14973435968 .pplr-14008first input.pplr_monogram, #pplr-4652634538065 .pplr-11001first input.pplr_monogram, #pplr-4652634538065 .pplr-14008first input.pplr_monogram, #pplr-4652636700753 .pplr-11001first input.pplr_monogram, #pplr-4652636700753 .pplr-14008first input.pplr_monogram, #pplr-4652639682641 .pplr-11001first input.pplr_monogram, #pplr-4652639682641 .pplr-14008first input.pplr_monogram, #pplr-4652640796753 .pplr-11001first input.pplr_monogram, #pplr-4652640796753 .pplr-14008first input.pplr_monogram {
  float: right !important;
  margin-top: 20px !important;
  margin-right: 0px !important;
  width: 3.5em !important;
  text-align: center !important; }
#pplr-15369614491729 .pplr-11003middle input.pplr_monogram, #pplr-15369614491729 .pplr-14008middle input.pplr_monogram, #14973435968 .pplr-11003middle input.pplr_monogram, #14973435968 .pplr-14008middle input.pplr_monogram, #pplr-4652634538065 .pplr-11003middle input.pplr_monogram, #pplr-4652634538065 .pplr-14008middle input.pplr_monogram, #pplr-4652636700753 .pplr-11003middle input.pplr_monogram, #pplr-4652636700753 .pplr-14008middle input.pplr_monogram, #pplr-4652639682641 .pplr-11003middle input.pplr_monogram, #pplr-4652639682641 .pplr-14008middle input.pplr_monogram, #pplr-4652640796753 .pplr-11003middle input.pplr_monogram, #pplr-4652640796753 .pplr-14008middle input.pplr_monogram {
  float: left !important;
  margin-top: 20px !important;
  margin-left: 0px !important;
  width: 3.5em !important;
  text-align: center !important; }
#pplr-15369614491729 .pplr-11002last input.pplr_monogram, #pplr-15369614491729 .pplr-14008last input.pplr_monogram, #14973435968 .pplr-11002last input.pplr_monogram, #14973435968 .pplr-14008last input.pplr_monogram, #pplr-4652634538065 .pplr-11002last input.pplr_monogram, #pplr-4652634538065 .pplr-14008last input.pplr_monogram, #pplr-4652636700753 .pplr-11002last input.pplr_monogram, #pplr-4652636700753 .pplr-14008last input.pplr_monogram, #pplr-4652639682641 .pplr-11002last input.pplr_monogram, #pplr-4652639682641 .pplr-14008last input.pplr_monogram, #pplr-4652640796753 .pplr-11002last input.pplr_monogram, #pplr-4652640796753 .pplr-14008last input.pplr_monogram {
  height: 80px !important;
  margin: 0px !important;
  font-size: 4em !important;
  width: 4em !important;
  text-align: center !important;
  text-transform: uppercase !important; }
#pplr-15369614491729 .pplr-14008first, #pplr-15369614491729 .pplr-14008last, #pplr-15369614491729 .pplr-14008middle, #14973435968 .pplr-14008first, #14973435968 .pplr-14008last, #14973435968 .pplr-14008middle, #pplr-4652634538065 .pplr-14008first, #pplr-4652634538065 .pplr-14008last, #pplr-4652634538065 .pplr-14008middle, #pplr-4652636700753 .pplr-14008first, #pplr-4652636700753 .pplr-14008last, #pplr-4652636700753 .pplr-14008middle, #pplr-4652639682641 .pplr-14008first, #pplr-4652639682641 .pplr-14008last, #pplr-4652639682641 .pplr-14008middle, #pplr-4652640796753 .pplr-14008first, #pplr-4652640796753 .pplr-14008last, #pplr-4652640796753 .pplr-14008middle {
  width: 20% !important; }

/* dual print initials inputs */
div[class*="pplr-12025"], div[class*="pplr-14008"] {
  padding-left: 3rem; }
  div[class*="pplr-12025"] label, div[class*="pplr-14008"] label {
    width: 10em !important;
    float: left; }
  div[class*="pplr-12025"] input, div[class*="pplr-14008"] input {
    float: left;
    width: 70px !important; }
  div[class*="pplr-12025"] .pplr-character-count, div[class*="pplr-14008"] .pplr-character-count {
    position: relative !important;
    float: left !important;
    padding: 15px 10px !important; }

.pinWrapper-dual #validPinMsg {
  width: 200% !important; }

.pinInstructions-dual-2 {
  width: 150px !important; }

.printOneprintTwo {
  width: 25% !important;
  margin-left: 10px; }

/* End Dual Print */
div.pplr-tab-number {
  color: #aaa !important;
  background: #fff !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  margin: 0 40%;
  font-family: "Lato", Helvetica, Arial, sans-serif !important;
  text-align: center !important; }

.product-fingerprint-sample {
  width: 100%;
  font-size: 1.4rem;
  font-style: italic;
  padding: 1.5rem 3rem; }

.product-fingerprint-sample-trio {
  width: 100%;
  font-size: 1.2rem;
  font-style: italic; }

.product-trio-disclaimer {
  padding-top: 1.5rem; }

.step-label {
  font-size: 0.8em;
  text-align: center;
  color: #aaa; }

.pplr_active .step-label {
  padding-bottom: 3px;
  color: #013766; }

.pplrlabel input[type="checkbox"] {
  margin-right: 10px; }

#chain-guide-link {
  position: absolute;
  top: 10px;
  right: 0;
  color: #3399ff;
  font-size: 0.9em;
  text-decoration: underline; }

#chainGuide {
  background-color: rgba(0, 0, 0, 0);
  z-index: 999999999999; }

/* #chainGuide .modal-dialog {
  width: 90% !important;
  max-width: 750px;
  margin:auto;
} */
#chainGuide .modal-body .row {
  margin-right: -15px;
  margin-left: -15px; }

#chainGuide .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  text-align: center;
  max-width: 750px; }

#chainGuide .modal-title {
  font-size: 1.2em; }

#chainGuide .modal-body {
  padding: 0; }

#chainGuide .modal-header {
  border: none;
  text-align: center; }

/***** END PERSONALIZER CUSTOMIZATION *****/
/***** PRODUCTION SPEED/DELIVERY CALCULATOR ******/
.service-level-intro {
  color: #788188;
  padding-bottom: 20px;
  padding-top: 20px; }

.service-level-header {
  background-color: #f1f1f1;
  color: #3d4246;
  width: 100%;
  max-width: 960px;
  border: 1px solid #666; }

.service-header, .del-header, .ship-header, .prod-header {
  float: left;
  width: 33%;
  background-color: #f1f1f1;
  padding: 15px 10px 5px 10px; }

.del-header, .ship-header, .prod-header {
  text-align: center; }

.service-level {
  clear: left;
  float: left;
  width: 100%;
  max-width: 960px;
  border: 1px solid #ccc;
  border-top: none;
  margin: 0; }

.can {
  display: none; }

.service-level-name, .del-time, .prod-charge, .ship-charge {
  color: #788188;
  float: left;
  width: 33%;
  padding: 15px 10px; }

.del-time, .prod-charge, .ship-charge {
  text-align: center; }

.service-level .label {
  display: none; }

.mobile-countdown {
  display: none; }

.service-disclaimer {
  font-size: 0.9em;
  font-style: italic;
  padding: 20px 0; }

@media only screen and (max-width: 767px) {
  .vcb-snippet:not(.vcb-custom) .row img {
    margin: 1.4em 0 1em 20rem;
    margin-right: auto; }

  .image-fp101 {
    margin: 0 0 3rem 20rem; }

  .hidden-xs {
    display: none; }

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

  #shopify-section-1555522064390 {
    margin-top: -25rem; }

  .rich-text__heading--medium .h3 {
    margin-top: 5rem;
    font-size: 30px; } }
@media only screen and (max-width: 991px) {
  .turnaround-time-image {
    padding: 0rem 0 3rem 0rem;
    margin-top: 3rem;
    width: 100%;
    border: none;
    text-align: center; }
    .turnaround-time-image img {
      width: 175px; }

  .turnaround-time-text {
    padding: 0; }

  #shopify-section-1555355701196, #shopify-section-1555357728635, #shopify-section-1555355701196 {
    margin-top: 5rem; }

  .promotion-left, .promotion-right {
    width: 49%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 2rem;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat; }

  .promotion-left {
    margin-right: 1rem; }

  #shopify-section-1555345974960 {
    margin-bottom: 0; }

  .service-level-header {
    display: none; }

  .service-level {
    margin: 5px 0; }

  .service-level-name {
    font-size: 1.1em;
    border-top: 1px solid #333;
    border-bottom: 1px solid #6c6c6c;
    width: 100%; }

  .del-time, .prod-charge, .ship-charge {
    width: 100%;
    text-align: center; }

  .service-level .label {
    display: block;
    color: #3d4246;
    font-size: 1em;
    font-weight: normal; }

  .mobile-countdown {
    display: inline-block; }

  .cat-header-text {
    margin: 5rem; } }
@media only screen and (max-width: 768px) {
  .background-media-text--1571943714180 .background-media-text--left .background-media-text__text .h3 {
    font-size: 3rem; }

  .feature-row__item.jewelry-hero.feature-row__text.feature-row__text--right {
    order: 0; }

  .background-media-text--1571943714180 .background-media-text--left .background-media-text__subtext p {
    margin-top: 0;
    line-height: 20px; }

  .background-media-text--1572274121685 .animation-contents {
    position: unset;
    margin-top: 0; }

  .background-media-text--1571943714180 .background-media-text--left .background-media-text__text {
    clear: both;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 5rem; }

  .background-media-text--1571943638669 .background-media-text--right .background-media-text__text .h3, .slideshow__slide--1570809075070 .hero__title .animation-contents {
    display: block;
    font-size: 3.5rem;
    color: #fff;
    position: absolute;
    font-family: 'wilderness';
    background: rgba(6, 36, 67, 0.5);
    padding: 1rem 20.5rem 8rem 2rem;
    display: block;
    top: 50px;
    right: 25px; }

  .background-media-text--1571943638669 .background-media-text--right .background-media-text__subtext p, .slideshow__slide--1570479732267 .hero__subtitle .animation-contents, #shopify-section-page-section-military .background-media-text--1571757545630 .background-media-text__subtext p {
    font-size: 1.5rem;
    color: #fff;
    /* position: absolute; */
    font-family: 'Open Sans' Arial sans-serif;
    margin-right: 0;
    line-height: 2.2rem;
    width: 260px;
    top: 100px;
    left: 375px;
    display: block; }

  #shopify-section-page-sections-holidayguide *, #shopify-section-page-sections-gift-guide * {
    text-align: center;
    width: 100%; }
    #shopify-section-page-sections-holidayguide * .btn, #shopify-section-page-sections-holidayguide * .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-holidayguide * .shopify-payment-button__button--unbranded, #shopify-section-page-sections-gift-guide * .btn, #shopify-section-page-sections-gift-guide * .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-gift-guide * .shopify-payment-button__button--unbranded {
      margin-bottom: 4rem; }

  .background-media-text--1572274121685 .background-media-text__subtext {
    width: 100%; }

  .promotion-header {
    /* margin-top: 5rem; */
    position: absolute;
    top: 2rem;
    text-align: center;
    font-size: 30px;
    /*   letter-spacing: -1.5px; */
    line-height: 38px;
    margin: 0rem 3rem; } }
@media only screen and (max-width: 480px) {
  .size-chart-trio {
    width: 100%; }

  .shipping-container-image {
    display: none; }

  .announcement-bar p {
    font-size: 1.6rem !important;
    letter-spacing: -.5px !important; }

  .hero-container {
    height: 20rem;
    margin-bottom: 0;
    padding: 0; }
    .hero-container .hero-body {
      font-weight: 500; }

  .promotion-right, .promotion-left {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 2rem;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 490px;
    color: #fff; }

  .promotion-right {
    /*     margin-top: 25rem; */ }

  .promotion-button {
    margin: 0 auto;
    width: 75%; }

  #shopify-section-1555522064390 .page-width {
    margin-top: 40rem; }

  #shopify-section-page-sections-holidayguide *, #shopify-section-page-sections-gift-guide * {
    text-align: center;
    width: 100%; }
    #shopify-section-page-sections-holidayguide * .btn, #shopify-section-page-sections-holidayguide * .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-holidayguide * .shopify-payment-button__button--unbranded, #shopify-section-page-sections-gift-guide * .btn, #shopify-section-page-sections-gift-guide * .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-page-sections-gift-guide * .shopify-payment-button__button--unbranded {
      margin-bottom: 4rem; }

  .xs-show {
    display: block; }

  .xs-hide {
    display: none; }

  .promotion-body-xs {
    text-align: center;
    color: #888;
    padding: 1rem 0;
    font-size: 1.5rem;
    font-family: 'Libre Baskerville', serif; }

  .rich-text__heading--medium .h3 {
    margin-top: 0rem;
    font-size: 3rem; }

  .promotion-header {
    margin: 20px 5% 0 5%;
    font-size: 2rem;
    padding: 0;
    line-height: 3rem;
    width: 90% !important; }
    .promotion-header span {
      line-height: 1.5rem; }

  .promotion-subhead {
    font-size: 18px;
    margin-top: calc(40vw); }

  #shopify-section-1555357539332 .btn, #shopify-section-1555357539332 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #shopify-section-1555357539332 .shopify-payment-button__button--unbranded {
    margin-bottom: 3rem; }

  .turnaround-time-image {
    margin-top: 2rem;
    margin-right: 0;
    padding: 2rem;
    border-right: none;
    text-align: center; }

  .turnaround-time-text {
    padding: 2rem 0 0 2rem; }

  #shopify-section-1555351870457, #shopify-section-1555522064390 {
    height: 50rem;
    margin-top: -25rem; }

  #shopify-section-1555355701196, #shopify-section-1555357728635, #shopify-section-1555522583097, #shopify-section-1555522963968 {
    margin-top: 5rem; }

  .mega-title {
    font-size: 1.2em; }

  .mega-subtitle {
    font-size: 0.8em; }

  .slideshow .slick-dots {
    bottom: 5px; }

  .slideshow__image, .slick-initialized .slideshow__image, .no-js .slideshow__image {
    background-position: center top;
    background-image: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Bracelet-Valentines_HomeSlider_480x480_ab018473-bc73-4207-9976-4d49b161a1fa.jpg?12917388735254528080); }

  .mobile-nav__link, .mobile-nav__sublist-link {
    padding: 6px 15px; }

  .mobile-nav__return-btn {
    padding: 6px 0; }

  .btn, .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .shopify-payment-button__button--unbranded, button.btn-apply {
    padding: 8px 8px; }

  .grid__item.product-single__photos.medium-up--one-half {
    position: relative; }

  .pplr_tab_index {
    padding: 5px 2px !important; }

  .index-section .grid__item.medium-up--one-half {
    height: 180px;
    /*margin-bottom: 1rem;*/ }

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

  .collection-grid-item__title {
    opacity: 1; }

  .product-single__title {
    text-align: left;
    font-size: 1.8rem; }

  .index-section:first-child {
    margin-top: 3rem;
    padding-bottom: 0; }

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

  .page-width .custom-content img {
    margin: 2rem 0 0 0; }

  .offer-inner span.sub, .offer-inner div.sub {
    left: 25%;
    font-size: 1em; }

  #pplr-preview {
    display: none; }

  h1.product-single__title, .product-single__title.h1 {
    font-size: 1.8rem; }

  .section-header h2, .section-header .h2 {
    margin-top: 35px; }

  p.btn--account {
    padding: 5px 0;
    margin-bottom: 2rem; }

  .ship-table-left, .ship-table-right, .ship-table-middle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.5px; }

  .scrollable-wrapper th, .scrollable-wrapper td {
    padding: 4px 6px; }

  .SingleOptionSelector-0 * {
    width: 100%; }

  .gc-input-select {
    width: 100%;
    margin-bottom: 1.5rem; }

  .cart td {
    padding: 10px 0; }

  .field__input-btn.gc-apply {
    margin: 2rem 0;
    padding: 1rem 2rem; }

  .ltk-cat-header {
    position: relative;
    top: 0;
    margin-top: 1rem;
    font-size: 24px; }

  .philosophy img {
    margin-bottom: 3rem; }

  .philosophy-header h4, .philosophy-header .h4, .philosophy h4, .philosophy .h4 {
    position: relative;
    top: 0; }

  .cat-header-text {
    margin: 2rem 1rem; }

  .site-header__icons-wrapper {
    margin-right: 0; }

  .site-header__icons {
    padding: 0; }

  .site-header__cart-count {
    top: 12px;
    left: 18px; }

  .site-header__logo {
    padding-left: 0; }

  .doubly-nice-select, .doubly-wrapper {
    height: 20px;
    color: #333; }

  .announcement-bar__message {
    font-size: 14px;
    font-weight: 400;
    padding: 5px; }

  .doubly-nice-select:after {
    display: none !important; }

  span.current.notranslate {
    font-size: 12px !important; }

  .announcement-bar .page-width.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px; }

  .doubly-nice-select.currency-switcher.right {
    border: none !important;
    position: relative;
    top: -10px; }

  .announcement-bar .flex-item.announcement-slider {
    width: 80%; }

  .doubly-wrapper {
    left: 0 !important; }

  /* .doubly-nice-select.currency-switcher.right {
    background: rgba(0,0,0,0);
    border: none !important;
    & .notranslate {
      color:#000;
    }
  } */
  /* .doubly-nice-select.currency-switcher.right .notranslate{
    color:#fff !important
  } */
  .doubly-nice-select {
    top: 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 {
    margin-top: .5rem; }

  .collection-header-h3 {
    font-size: 38px; }

  .subcat-outer-left, .subcat-outer-right, .subcat-outer {
    padding: 8px; }

  .culp-header-number {
    margin-top: 2rem !important; }

  .background-media-text--1572274121685 .background-media-text__image--page-sections-military {
    background: none;
    background: url('/cdn/shop/files/military-hero-xmas-m.jpg?12472 alt="Our Heroes" ');
    background-repeat: no-repeat; }

  .background-media-text--1571943638669 .background-media-text__text {
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    font-family: 'Open Sans' Arial sans-serif;
    margin-right: 0;
    line-height: 2.2rem;
    display: block; }

  .background-media-text--1571943638669 .background-media-text--right .background-media-text__text .h3 {
    clear: both;
    display: block;
    font-size: 4.5rem;
    color: #003f72;
    position: relative;
    font-family: 'wilderness';
    top: 0;
    left: 0;
    right: 0;
    background: none;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: -450px auto 430px; }

  .background-media-text--1571943638669 .background-media-text--right .background-media-text__text .h5 {
    display: none; }

  .background-media-text--1571943638669 .background-media-text--right .background-media-text__text p {
    clear: both;
    font-size: 1.6rem;
    color: #666;
    margin-right: 0;
    line-height: 2.2rem;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    text-align: center;
    margin-top: 0rem;
    padding: 0 10px; }

  #shopify-section-page-sections-military .lt-page-title {
    font-size: 3rem;
    margin-top: 6rem; }

  .background-media-text--1571943714180 .background-media-text--left {
    margin: 0; }

  .background-media-text--1571943714180 .background-media-text--left .background-media-text__text {
    clear: both;
    text-align: center;
    width: 100%;
    margin: 0 auto; }

  .background-media-text--1571943714180 .background-media-text--left .background-media-text__text .h3 {
    clear: both;
    margin-left: 0%;
    background: none;
    margin-top: -00%;
    width: 100%;
    display: block;
    position: unset;
    color: #002f6c;
    font-size: 3rem; }

  .background-media-text--1571943714180 .background-media-text--left .background-media-text__text p {
    clear: both;
    font-size: 1.6rem;
    color: #666;
    margin-right: 0;
    line-height: 2.2rem;
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: block;
    text-align: center;
    margin-top: 2rem;
    position: unset;
    margin-left: 0;
    /*     padding: 2rem 0rem 0rem 0rem; */ }

  .background-media-text--1572274121685 .animation-contents {
    position: unset;
    top: 0rem; }

  .background-media-text--1571943714180 .btn, .background-media-text--1571943714180 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .background-media-text--1571943714180 .shopify-payment-button__button--unbranded {
    color: #fff;
    background-color: #002f6c;
    margin-top: 0;
    margin-left: 0%;
    width: 60%; }

  .background-media-text--1572274121685 .background-media-text--left .background-media-text__text .h3 {
    clear: both;
    margin-left: 0%;
    background: none;
    margin-top: -00%;
    width: 100%;
    display: block;
    position: unset;
    color: #002f6c;
    font-size: 3rem; }

  .background-media-text--1572274121685 .background-media-text--left .background-media-text__text p {
    clear: both;
    font-size: 1.6rem;
    color: #666;
    margin-right: 0;
    line-height: 2.2rem;
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: block;
    text-align: center;
    margin-top: 2rem;
    position: unset;
    margin-left: 0;
    /*     padding: 2rem 0rem 0rem 0rem; */ }

  .background-media-text--1572274121685 .btn, .background-media-text--1572274121685 .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .background-media-text--1572274121685 .shopify-payment-button__button--unbranded {
    color: #fff;
    background-color: #002f6c;
    margin-top: 0;
    margin-left: 0%;
    /*     width: 60%; */ }

  /* MOBILE IMAGES */
  .background-media-text__image--page-sections-military {
    display: none; }

  .background-media-text--1572274121685 .animation-contents {
    position: unset;
    margin-top: -35rem;
    margin-bottom: 20rem; }

  #shopify-section-page-sections-military .background-media-text--1571943638669 .background-media-text__container {
    background-image: url("/cdn/shop/files/hero-2-480-m.jpg?13532");
    height: 400px;
    margin-top: 50px; }

  /* MOBILE IMAGES */
  #shopify-section-page-sections-military .background-media-text--1571943714180 .background-media-text__container {
    /*     background-image: url('/cdn/shop/files/military-hero-xmas-m_a9c596d6-2cf2-4483-b8cd-bd756dd3b332.jpg?14501') ; */
    background-image: url("/cdn/shop/files/military-hero-2-m.jpg?v=1575610357");
    height: calc(108vw);
    width: 100%;
    background-size: cover; }

  #shopify-section-page-sections-military .background-media-text--1572274121685 .background-media-text__container {
    background-image: url("/cdn/shop/files/christmas-gift-guide-m.jpg?13532");
    height: 400px; } }
.ship-table-sub-head-left, .ship-table-sub-head-middle, .ship-table-sub-head-right {
  font-size: 16px;
  background: #f1f1f1;
  color: #313131;
  padding: 8px; }

.ship-table-sub-head-middle {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }

#countdown {
  /*padding: 5px 0 5px 120px;
  font-style: italic;*/
  display: inline-block; }

.counterTime, .counterDate {
  font-weight: bold; }

.calc-note {
  font-style: italic; }

#disclaimer {
  font-size: 12px;
  font-style: italic;
  padding: 5px; }

/***** END CALCULATOR *******/
/*****  CART/CHECKOUT CUSTOM STYLES  *****/
.cart-item__price {
  font-weight: bold; }

.cart-item__original-price {
  font-weight: normal; }

.cart-item__discount {
  color: green;
  font-style: italic;
  font-weight: normal;
  position: relative;
  right: 3px; }

ul.line-revision > li {
  padding-left: 15px; }

.section--signature-options {
  display: none; }

.line-revision {
  padding-left: 15px; }

tr.product td {
  vertical-align: top; }

tr.product[data-product-id="1927905378369"] td {
  vertical-align: top;
  font-size: 0.85714em;
  color: #717171; }

/*****  END CHECKOUT CUSTOM STYLES  *****/
/***** CAREERS PAGE STYLES *****/
#jobs-widget {
  margin-bottom: 25rem; }

#jobs_widget_container h3, #jobs_widget_container .h3, p.jobs-widget-title {
  font-size: 2.5rem;
  padding: 0 0 2rem 0;
  margin: 0; }

#jobs_widget_container a {
  color: #239fde; }

/***** END CAREERS PAGE STYLES *****/
.product-features {
  margin-top: 0%; }

.content-fp101 p {
  text-align: left; }

.title-fp101 {
  color: #002f6c;
  font-size: 24px;
  font-family: 'Libre Baskerville', serif;
  text-align: left; }

#PageContainer {
  margin-top: -1.2rem; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.4rem; }

.pplr_preview_wrapper {
  padding-right: 2rem !important; }

/***** HOMEPAGE TOP CAT ROLLOVER STATES *****/
.lt-tc-container {
  float: left; }

@media screen and (max-width: 640px) {
  .lt-tc-container {
    display: block;
    width: 100%; } }
.lt-tc-container .title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px; }

.lt-tc-content {
  position: relative;
  max-width: 400px;
  margin: auto;
  overflow: hidden; }

.lt-tc-content .lt-tc-content-overlay {
  background: rgba(9, 62, 105, 0.9);
  position: absolute;
  height: 20%;
  width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }

.lt-tc-content:hover .lt-tc-content-overlay {
  opacity: 1; }

.lt-tc-content-image {
  width: 100%; }

.lt-tc-content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  bottom: 10%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -1%);
  -moz-transform: translate(-50%, -1%);
  transform: translate(-50%, -1%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }

.lt-tc-content:hover .lt-tc-content-details {
  bottom: 0;
  left: 50%;
  opacity: 1; }

.lt-tc-content-details p {
  color: #fff;
  font-size: 1.2em;
  margin-top: 14px; }

.lt-tc-fadeIn-bottom {
  top: 80%; }

.lt-tc-content a:hover {
  opacity: .9; }

@media screen and (max-width: 1024px) {
  .lt-tc-content-details {
    position: relative;
    opacity: 1; }

  .lt-tc-content .lt-tc-content-overlay {
    opacity: 1;
    background: white; }

  .lt-tc-content-details p {
    color: #888;
    margin: 0;
    margin-top: 1rem; }

  .lt-tc-content .lt-tc-content-overlay {
    height: 0; } }
@media screen and (max-width: 480px) {
  .vcb-snippet:not(.vcb-custom) .row img {
    margin: 1.4em 0 1em 8rem;
    margin-right: auto; }

  .lt-tc-content-details p {
    font-size: 14px; }

  .image-fp101 {
    margin: 0 0 3rem 3.5rem; }

  .hidden-xs {
    display: none; }

  .show-xs {
    display: block !important; } }
/***** END HOMEPAGE TOP CAT ROLLOVER STATES *****/
/***** CONTENT UPLOAD LANDING PAGE *****/
.modal-open {
  overflow-y: auto !important; }

.culp-head {
  color: #062443;
  font-family: 'Libre Baskerville', serif;
  font-size: 60px;
  margin-top: 4rem !important;
  line-height: 6rem; }

.culp-subhead {
  color: #666;
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  margin-top: 2rem !important; }

.culp-header-number {
  text-align: center;
  color: #062443;
  font-family: 'Libre Baskerville', serif;
  font-size: 82px;
  font-weight: 700;
  margin-top: 8rem !important; }

.culp-header {
  text-align: center;
  color: #062443;
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  line-height: 4rem;
  margin-bottom: 2rem; }

.print-examples {
  padding-top: 10rem; }

.culp-body {
  text-align: center;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 15rem; }

.sm-show {
  display: none; }

span.product-price__price.product-price__price-product-template-horizontal--accessories .label_usd {
  display: none !important; }

@media screen and (max-width: 992px) {
  .culp-body {
    margin-bottom: 10rem; }

  .print-examples {
    padding-top: 0; }

  .sm-show {
    display: block; }

  .sm-hide {
    display: none; } }
/***** END CONTENT UPLOAD LANDING PAGE ****/
/******* HOLIDAY HOME PAGE **********/
/* .promotion-overlay {
    position: relative;
    margin-top: -115px;
} */
.promotion-header {
  color: #064071; }

.promotion-body {
  margin-top: 3rem;
  color: #064071;
  font-family: 'Open Sans', sans-serif; }

.promotion-button-left {
  background-color: #064071;
  color: #fff;
  width: fit-content;
  padding: 10px 15px;
  height: auto; }

.cart__savings {
  color: green; }

/**** BLOG  ***/
.article__tags a {
  border: 1px solid #cccccc;
  padding: 5px 10px !important;
  font-size: 0.8em;
  background-color: #efefef; }

.section-header-blog {
  margin: 50px; }

span#del-holSvr {
  color: #666666;
  font-weight: bold; }

#shopify-section-page-sections-gift-guide .gift-guide-hero {
  background-color: #eee;
  text-align: center;
  font-size: 20px;
  width: 100%;
  padding: 0; }

#shopify-section-page-sections-gift-guide .gift-guide-title {
  color: #004070;
  font-size: 90px;
  font-family: 'Baskerville', san-serif;
  font-weight: 100;
  text-align: center;
  width: 100%;
  padding: 0;
  margin: -3rem 0 3rem 0; }

#shopify-section-page-sections-gift-guide .gift-guide-subtitle {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 200;
  color: #004070; }

#shopify-section-page-sections-gift-guide .gift-guide-hero, #shopify-section-page-sections-gift-guide .gift-guide-hero-copy {
  display: block; }

#shopify-section-page-sections-gift-guide > .gift-guide-hero-mobile {
  display: none; }

#shopify-section-page-sections-gift-guide .page-width:nth-child(2) {
  padding: 4rem 12rem 0 12rem;
  font-size: 20px; }

#shopify-section-page-sections-gift-guide .gift-guide-hero-mobile-img, #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile-copy {
  display: none; }

#shopify-section-page-sections-gift-guide .twentyfour-banner-text {
  /*   color: #004070; */
  color: #000;
  font-size: 40px;
  font-family: 'baskerville';
  margin: -2rem 25rem 2rem 25rem;
  font-size: 30px; }

@media (max-width: 768px) {
  #shopify-section-page-sections-gift-guide .twentyfour-banner-text {
    color: #004070;
    font-family: 'baskerville', serif;
    font-size: 28px !important;
    line-height: 26px;
    margin: 1rem 18rem 3rem 0rem; }

  #shopify-section-page-sections-gift-guide .btn-egift {
    width: 50%; } }
@media (max-width: 480px) {
  #shopify-section-page-sections-gift-guide > .gift-guide-subtitle {
    font-size: 36px; }

  #shopify-section-page-sections-gift-guide .gift-guide-title {
    font-size: 46px;
    font-weight: 100;
    text-align: center;
    width: 100%;
    padding: 0;
    margin-top: -2rem; }

  #shopify-section-page-sections-gift-guide .gift-guide-subtitle {
    font-size: 28px;
    text-align: center;
    padding: 10px;
    margin-top: 0; }

  #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile {
    background-color: #eee;
    padding: 2rem 3rem 2rem 3rem;
    text-align: center;
    margin-bottom: 0;
    font-size: 20px; }

  #shopify-section-page-sections-gift-guide .gift-guide-hero, #shopify-section-page-sections-gift-guide .gift-guide-hero-copy {
    display: none; }

  #shopify-section-page-sections-gift-guide > .gift-guide-hero-mobile {
    display: block; }

  #shopify-section-page-sections-gift-guide .page-width:nth-child(2) {
    padding: 4rem 12rem 0 12rem;
    font-size: 20px; }

  #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile-img, #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile-copy {
    display: block; }

  #shopify-section-page-sections-gift-guide .gift-guide-hero-mobile-copy {
    padding: 2rem 2rem 0rem 2rem;
    text-align: center;
    margin-bottom: 0; }

  #shopify-section-page-sections-gift-guide .twentyfour-banner-text {
    color: #004070;
    font-family: 'baskerville', serif;
    margin: 0;
    font-size: 20px !important;
    line-height: 20px;
    margin-top: 1rem !important; }

  #shopify-section-page-sections-gift-guide .btn-egift {
    width: 100%; } }
@media only screen and (max-width: 750px) {
  ul.grid.grid--uniform.thumbImage.product-single__thumbnails.product-single__thumbnails-product-template-horizontal.col-md-2.thumbnails-top.slick-initialized.slick-slider {
    display: none; } }
@media only screen and (min-width: 750px) {
  .scroll .grid__item.medium-up--one-half.product-info {
    width: 40%; }

  .scroll .grid__item.product-single__photos.medium-up--one-half {
    width: 60%; } }
/* product-grid */
.product-grid-sub-title, .product-single-subtitle {
  color: #002f6c;
  font-style: italic; }

/* end of product-grid */
.modal-dialog.modal-dialog-centered {
  top: 11%; }

/* product personalizer */
div.pplr-tab-number {
  min-width: 25px;
  max-width: 25px;
  margin: 0 auto; }

/* end of product personalizer */
/* tpage--- GIFT GUIDE */
.gift-guide-body .h5.text-with-image-subtitle {
  font-size: 2em;
  margin-bottom: 0px;
  padding: 0 10px;
  color: #004070;
  font-family: 'Libre Baskerville',serif; }

.gift-guide-body .feature-row__item.feature-row__text {
  text-align: center; }

.gift-guide-body p.h5.text-with-image-bottom-subtitle {
  font-size: 1.2em;
  /*     color: #004071; */
  color: #004070; }

.gift-guide-body .page-copy h1, .gift-guide-body .page-copy .h1 {
  color: #004070 !important;
  font-family: 'Libre Baskerville',serif; }

.gift-guide-body p.h3.text-with-image-title {
  color: #004070;
  font-size: 2.5em; }

.gift-guide-body a.btn, .gift-guide-body .shopify-payment-button a.shopify-payment-button__button--unbranded, .shopify-payment-button .gift-guide-body a.shopify-payment-button__button--unbranded {
  background: #004070; }

/* .gift-guide-body a.btn {
    background: #696561;
} */
.image-subtitle-wrapper {
  display: table;
  white-space: nowrap;
  margin: auto;
  width: fit-content !important; }

.image-subtitle-wrapper:before, .image-subtitle-wrapper:after {
  border-top: 2px solid #004070;
  content: '';
  display: table-cell;
  position: relative;
  top: 1.2em;
  min-width: 30px; }

.gift-guide-body .rte.featured-row__subtext {
  margin-bottom: 30px; }

.gift-guide-body .page-copy h1, .gift-guide-body .page-copy .h1 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8em;
  color: #000; }

/* end GIFT GUIDE */
/* tpage--- Holiday Home */
.holiday-feel .btn, .holiday-feel .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .holiday-feel .shopify-payment-button__button--unbranded, .holiday-feel .promotion-button-left, .holiday-feel .promotion-button {
  background-color: #696661; }

.holiday-feel h2.h3, .holiday-feel .h3.h2 {
  color: #696661; }

.holiday-feel .promotion-body {
  color: #696661; }

.holiday-feel .promo-slider .btn, .holiday-feel .promo-slider .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .holiday-feel .promo-slider .shopify-payment-button__button--unbranded {
  background-color: #fff;
  color: #000; }

/* end of Home */
/* tsection--- Custom Modal */
.promo-container p {
  text-align: center;
  font-size: 18px;
  margin: 15px;
  color: #000; }

.promo-container strong {
  font-size: 18px; }

.modal-body.promo {
  padding: 0; }

.promo-image-container {
  background: url(/cdn/shop/files/getitbychristmas.jpg?v=1639766473);
  height: 350px;
  background-size: cover;
  background-position: 50% 50%; }

#promo-modal .modal-dialog {
  max-width: 375px;
  margin: auto;
  padding: 0 5px; }

button.close {
  color: #fff;
  text-shadow: none;
  opacity: 1;
  margin: 10px;
  /*     background: #003f6c; */
  padding: 5px;
  font-size: 34px;
  margin-bottom: 15px; }

#promo-modal .modal-content {
  background: #fff;
  border: 2px solid #fff; }

#promo-modal {
  padding: 0; }

.gift-guide-t .promotion-left, .gift-guide-t .promotion-right {
  margin-top: 50px;
  text-align: center; }

.promo-container a.btn, .promo-container .shopify-payment-button a.shopify-payment-button__button--unbranded, .shopify-payment-button .promo-container a.shopify-payment-button__button--unbranded {
  margin-bottom: 15px; }

div.btn, .shopify-payment-button div.shopify-payment-button__button--unbranded {
  padding: 25px 55px;
  font-size: 16px; }

/* end custom modal */
/* Hide - Desktop and Mobile */
.desktop-hide {
  display: none; }

.mobile-hide {
  display: block; }

@media all and (max-width: 767px) {
  .desktop-hide {
    display: block; }

  .mobile-hide {
    display: none; } }
/* end Hide- Desktop and Mobile */
span.announcement-bar__message a {
  color: #fff;
  text-decoration: underline; }

.gift-guide-body {
  background: #ffffff;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px; }

.itemFlexCenterColumn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.itemFlexCenter {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center; }
  .itemFlexCenter .shopperlink {
    margin-right: 10px; }

.strikethrough .product-price__price .money {
  text-decoration: line-through !important;
  color: #b9b9b9 !important;
  font-size: 18px !important; }

.line-through {
  text-decoration: line-through !important;
  color: #b9b9b9 !important;
  font-size: 18px !important; }

.block-background-image {
  position: relative; }

.block-background-image .btn, .block-background-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .block-background-image .shopify-payment-button__button--unbranded {
  background: #f8ccbf;
  color: #776e69;
  margin: 10px; }

p.lt-title {
  color: #2d7eba;
  font-weight: bold;
  font-size: 3rem;
  margin-top: 10px; }

.green-block {
  background: #57a748;
  width: 100%;
  display: block;
  color: #fff;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em; }

[part="osm-container"] {
  padding: 15px 0px !important; }

/* .featured-row-content {
    padding: 30px;
} */
.default-page_care-warranty p, .default-page_care-warranty .rich-text__text--medium.rte-setting.text-center, .default-page_care-warranty li {
  color: #888888; }

.default-page_care-warranty .rich-text__heading--medium.text-center h2, .default-page_care-warranty .rich-text__heading--medium.text-center .h2, .default-page_care-warranty strong, .default-page_care-warrant h1, .default-page_care-warrant .h1 {
  color: #7b7b7b !important; }

.default-page_care-warranty a strong {
  color: #00a3e0 !important; }

.default-page_care-warranty .rich-text__heading--medium.text-center h2, .default-page_care-warranty .rich-text__heading--medium.text-center .h2, .default-page_care-warrant h1, .default-page_care-warrant .h1 {
  border-top: 1px solid #cccccc !important;
  border-bottom: 1px solid #cccccc !important; }

.default-page_care-warranty .grid--flush-bottom {
  margin-bottom: -55px;
  overflow: visible;
  margin-top: -70px !important;
  max-width: 800px !important; }

.default-page_care-warranty a.btn.light, .default-page_care-warranty .shopify-payment-button a.light.shopify-payment-button__button--unbranded, .shopify-payment-button .default-page_care-warranty a.light.shopify-payment-button__button--unbranded, .default-page_care-warranty a.btn.btn--secondary.btn--small, .default-page_care-warranty .shopify-payment-button a.btn--secondary.btn--small.shopify-payment-button__button--unbranded, .shopify-payment-button .default-page_care-warranty a.btn--secondary.btn--small.shopify-payment-button__button--unbranded {
  background-color: #e1e1e1;
  color: #333333;
  text-transform: capitalize;
  font-size: 14px !important; }

header.collection-header {
  margin-top: 30px; }

.collection-h2 {
  text-transform: none;
  letter-spacing: 0;
  color: #004070;
  font-family: 'Libre Baskerville', serif;
  font-size: 14px; }

.modal-wrapper .btn, .modal-wrapper .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .modal-wrapper .shopify-payment-button__button--unbranded {
  font-family: 'Roboto';
  text-transform: capitalize;
  font-weight: 600;
  background-color: #57a748 !important;
  width: 100%;
  max-width: 310px; }

div#CustomerMigrationMessage {
  margin-top: 30px; }

.feature-heading {
  min-height: 1px !important; }

.collection-body {
  margin-top: 30px; }

.announcement-bar .page-width.flex {
  display: flex;
  align-items: center;
  justify-content: center; }

.announcement-bar .flex-item.announcement-slider {
  width: 85%; }

.announcement-bar .flex-item.doubly-wrapper {
  width: 15%; }

img.size-chart {
  max-width: 450px;
  width: 100%; }

#shopify-section-page-sections-keepsakes-category .page-blocks div:nth-child(4) .index-section {
  display: none !important; }

#shopify-section-page-sections-keepsakes-category .feature-row__item.feature-row__text.feature-row__text--right {
  order: 0; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 6px 11px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #004071;
  border-radius: 5px; }

div#shopify-section-collection-header {
  margin-top: 30px; }

/* <-- partner css--> */
.fsForm .fsFieldRow div.fsRowBody, .fsForm .fsSpacerRow div.fsRowBody {
  background: transparent !important; }

.fsboxshadow .fsBody .fsForm {
  box-shadow: none; }

.fsBody .fsForm, .fsForm .fsFieldRow .fsRowBody, .fsForm .fsSpacerRow .fsRowBody {
  background: transparent !important; }

.partners-special-offer h4, .partners-special-offer .h4 {
  font-size: 4.5em;
  margin-bottom: 0;
  font-weight: 800;
  color: #004070; }

.special-offer-text {
  margin-top: 5em; }

.partners-special-offer h5, .partners-special-offer .h5 {
  font-size: 2.5em;
  font-weight: 600;
  color: #004070; }

.partners-special-offer h6, .partners-special-offer .h6 {
  font-size: 2em;
  max-width: 295px;
  margin: 15px auto;
  color: #004070; }

h4.partners, .partners.h4 {
  font-family: 'Libre Baskerville';
  font-size: 24px;
  color: #004071;
  padding-top: 15px; }

.hero-partners {
  background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Partner-Hero-Image_9bf04f62-b3dd-4fd7-9a9a-94e988597a4c.jpg?14017) no-repeat;
  padding-top: 6%;
  padding-right: 40rem;
  background-size: cover;
  width: 100vw;
  height: 80vh; }

.page-width-hero {
  margin-top: 2rem; }

p.text-center.contact-us-link a {
  color: #00a3e0; }

.hero-partners-text-block {
  background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/hero-partners-block.png?14028) no-repeat;
  height: 316px;
  width: 720px;
  padding: 6rem 0 20rem 6rem;
  margin-left: 12rem; }

.hero-text-header {
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  font-size: 38pt;
  margin-top: 1rem; }

.hero-text-subhead {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 26pt;
  padding-right: 4rem;
  font-weight: 300;
  line-height: 40px;
  margin-top: 1.5rem; }

.partner-head {
  color: #002f6c;
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  padding: 4rem 0 3rem 0; }

.partner-header {
  color: #002f6c;
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  padding: 10rem 0 3rem; }

.partner-subhead {
  font-family: 'Open Sans', sans-serif;
  font-size: 14pt;
  padding-bottom: 50px; }

.partner-subhead a {
  color: #239fde; }

p.text-center.partner-subhead.inner {
  margin-top: 45px; }

p.text-center.contact-us-link {
  margin-top: 75px; }

h3.text-center.partner-header.green, .text-center.partner-header.green.h3 {
  color: #57a748;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 30px; }

h3.text-center.partner-header.green:after, .text-center.partner-header.green.h3:after {
  position: absolute;
  bottom: 0px;
  content: " ";
  width: 100px;
  background: #57a748;
  height: 4px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 0px); }

.big-blue-partners {
  background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/big-blue_cbe8345f-3dcd-4c6a-8ff3-ca3c27f6f8a3.jpg?14113) no-repeat;
  padding-top: 50px;
  padding-bottom: 60px;
  background-size: cover;
  width: 100vw;
  margin-bottom: 9rem; }

.partners-what-we-do {
  margin: 75px 0; }

.partner-advantage {
  font-family: 'Libre Baskerville', serif !important; }

.partner-advantage-subhead {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 5rem; }

.big-blue-partners h3, .big-blue-partners .h3, .big-blue-partners p {
  color: #fff; }

.btn-outline-info-learn-more {
  margin-top: 5rem;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem 6rem; }

.pa-box {
  background-color: #124a76;
  padding: 5rem 2rem 10rem 2rem; }

.pa-box h3, .pa-box .h3 {
  padding: 5rem 0 2rem 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem; }

.pa-box h3.partners-bluebox-two, .pa-box .partners-bluebox-two.h3 {
  padding-bottom: 0;
  line-height: 27px; }

.pa-box p {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif; }

blockquote {
  border-left: none; }

.what-we-do-text {
  padding-top: 16rem; }

.btn-partner-form {
  padding: 1rem 7rem;
  margin-bottom: 10rem; }

input.btn, .shopify-payment-button input.shopify-payment-button__button--unbranded {
  margin-bottom: 10rem;
  text-align: center;
  margin: 0 auto 10rem auto; }

.d-lg-none {
  display: none; }

.container.form-container {
  padding-top: 5rem; }

.container.form-container a {
  color: #00a3e0; }

.special-divider {
  border: 2px solid #004071;
  width: 80px;
  margin: 0px auto; }

@media only screen and (min-width: 1200px) {
  .container {
    width: 1120px; }

  .hero-partners {
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Partner-Hero-Image_9bf04f62-b3dd-4fd7-9a9a-94e988597a4c.jpg?14017) no-repeat;
    padding-top: 6%;
    padding-right: 40rem;
    background-size: cover;
    width: 100vw;
    height: 80vh; } }
@media only screen and (max-width: 1800px) {
  .hero-partners {
    height: 64vh; } }
@media only screen and (max-width: 1200px) {
  .hero-partners {
    height: 50vh; }

  .what-we-do-text {
    padding-top: 3rem; }

  .d-lg-none {
    display: block;
    margin-top: 4rem; }

  .d-md-none {
    display: none; } }
@media only screen and (max-width: 768px) {
  .partner-head {
    font-size: 3rem; }

  .hero-partners-text-block {
    margin-left: 2.5rem; }

  .pa-box {
    margin-bottom: 2rem; } }
@media only screen and (max-width: 768px) {
  .special-offer-text {
    margin-top: 0em; }

  .partners-special-offer h4, .partners-special-offer .h4 {
    font-size: 3.5em;
    margin-bottom: 0;
    font-weight: 800;
    color: #004070; }

  .partners-special-offer h6, .partners-special-offer .h6 {
    font-size: 1em;
    max-width: 295px;
    margin: 15px auto;
    color: #004070; }

  .partners-special-offer h5, .partners-special-offer .h5 {
    font-size: 1.5em;
    font-weight: 600;
    color: #004070; } }
@media only screen and (max-width: 480px) {
  .hero-partners-text-block {
    background-size: contain;
    width: 370px;
    height: 200px;
    padding: 2rem 0 10rem 3rem;
    margin-left: 2rem; }

  h3.text-center.partner-head, .text-center.partner-head.h3, h3.text-center.partner-header, .text-center.partner-header.h3 {
    font-size: 2.5rem;
    padding: 0; }

  h4.partners, .partners.h4 {
    font-size: 16px; }

  .hero-partners {
    background: url(https://cdn.shopify.com/s/files/1/0007/9337/8881/files/Partner-Hero-Image_9bf04f62-b3dd-4fd7-9a9a-94e988597a4c.jpg?14017) no-repeat;
    /* padding-top: 6%; */
    /* padding-right: 40rem; */
    background-size: contain;
    width: 520px;
    height: 300px; }

  .hero-text-header {
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-size: 20pt; }

  .hero-text-subhead {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14pt;
    padding-right: 0rem;
    line-height: 18pt;
    margin-top: 0; }

  .what-we-do-text {
    padding-top: 5rem; }

  .partner-head {
    color: #002f6c;
    font-family: 'Libre Baskerville', serif;
    font-size: 25px;
    padding: 4rem 0 3rem 0; }

  .partner-subhead {
    padding-right: 0; }

  .pa-box {
    margin-bottom: 3rem; } }
@media only screen and (max-width: 400px) {
  .hero-partners-text-block {
    background-size: contain;
    width: 340px;
    height: 200px;
    padding: 2rem 0 10rem 3rem;
    margin-left: 2rem; }

  .hero-text-header {
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-size: 18pt; }

  .hero-text-subhead {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12pt;
    padding-right: 4rem; }

  .what-we-do-text {
    padding-top: 5rem; }

  .partner-header {
    font-size: 18pt; }

  .partner-subhead {
    padding-right: 0; }

  .pa-box {
    margin-bottom: 3rem; } }
.partners-special-offer {
  box-shadow: inset 0 0 14px 4px #f1f1f1;
  margin: 50px 0 30px 0;
  padding: 40px 0px; }

.partners-special-offer-wrapper {
  margin-bottom: 50px; }

.gift-guide-body .page-copy {
  text-align: center; }

.gift-guide-body .feature-row {
  padding-top: 8rem; }

.gift-guide-body .custom-html {
  text-align: center; }

@media only screen and (min-width: 768px) {
  .gift-guide-body .twentyfour-banner-text {
    color: #000;
    font-size: 40px;
    font-family: 'baskerville';
    font-size: 30px; } }
@media only screen and (max-width: 768px) {
  .gift-guide-body a.btn, .gift-guide-body .shopify-payment-button a.shopify-payment-button__button--unbranded, .shopify-payment-button .gift-guide-body a.shopify-payment-button__button--unbranded {
    text-align: center;
    width: 100%; }

  .gift-guide-body .twentyfour-banner-text {
    color: #004070;
    font-family: 'baskerville', serif;
    margin: 0;
    font-size: 20px !important;
    line-height: 20px;
    margin-top: 1rem !important; } }
.img_thumb_big .img_dropdown {
  display: block;
  text-align: center;
  margin-top: 70px; }

.pplrgcolor, .img_thumb_big {
  margin-bottom: 70px; }

span.ppdata {
  font-size: 10px;
  font-weight: bold;
  color: #000;
  width: 100%;
  display: block; }

.swtooltip.sleftbefore.after {
  visibility: hidden !important;
  display: none !important; }

.swtooltip.after {
  display: none !important;
  visibility: hidden !important; }

.img_thumb_big .pplr-swatch-element {
  float: left;
  -webkit-transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  margin: 0px 10px 70px 0 !important;
  position: relative;
  z-index: 2;
  border-radius: 5px; }

.pplr-swatch-element.pplrimage.selected {
  opacity: 1;
  border: 3px solid #004071; }

.pplr-swatch-element.pplrimage.selected {
  opacity: 1;
  border: 3px solid #004071; }

.img_thumb_big span.pplrimage {
  width: 70px !important;
  height: 70px !important; }

@media screen and (max-width: 768px) {
  .img_thumb_big span.pplrimage {
    width: 70px !important;
    height: 70px !important; } }
.pplrgcolor, .pplrgimage {
  float: none !important;
  width: 100%;
  margin-bottom: 5px;
  margin-top: 5px;
  z-index: 2; }

.pplr-wrapper.pplr-text.pplr-13002last.p_c_c.pplr_show_preview {
  margin: 0px 1% 0px 1%; }

.olark-launch-button-wrapper.olark-text-button {
  display: none; }

/* #gladlyChat_container .tempButton.tempButton-animated{
  visibility:hidden;
} */
/* div#userwayAccessibilityIcon {
    visibility: hidden;
    display: none;
} */
p#ada {
  margin-bottom: 0;
  padding: 5px 15px;
  cursor: pointer; }

.dropdown-element {
  color: #000;
  margin: 0;
  padding: 7px; }

.help-wrapper {
  display: inline; }

.dropdown-element:hover {
  background-color: #ddd;
  cursor: pointer; }

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: #000;
  background: transparent;
  margin: 0;
  padding: 0; }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  right: 14px;
  text-align: center;
  padding: 15px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1; }

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left; }

.dropdown-content span:hover {
  background-color: #ddd; }

.dropdown:hover .dropdown-content {
  display: block; }

/* Responsive layout */
@media screen and (max-width: 600px) {
  .dropdown-content {
    position: relative; }

  .dropdown:hover .dropdown-content {
    display: none; }

  .dropdown-content.show {
    display: block; } }
span#ada {
  padding: 5px 15px;
  cursor: pointer; }

.boost-sd__recommendation-title--left:after, .boost-sd__recommendation-title--left:before {
  display: none; }

span.boost-sd__recommendation-title-text {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 400;
  line-height: 1.2;
  word-wrap: break-word;
  font-size: 1.25em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em; }

.boost-sd__recommendation-title.boost-sd__recommendation-title--left {
  justify-content: center;
  margin-top: 50px; }

.olark-launch-button-wrapper {
  display: none; }

.handcrafted-image.mobile-hide {
  padding: 10px 15px 0px 0px; }

.form-of-payments {
  text-align: right; }

.idme-container-cart {
  margin: 15px;
  text-align: center; }

.idme-container-cart img {
  max-width: 215px;
  margin-top: 11px; }

textarea#cart-note {
  width: 100%; }

.boost-sd__collection-header {
  display: none !important; }

button.boost-sd__button.boost-sd__button--border.boost-sd__button--height-fit-content.boost-sd__button--full-width.boost-sd__button--show-on-hover.boost-sd__button--hide-on-mobile.boost-sd__button--no-minwidth.boost-sd__btn-add-to-cart {
  display: none !important; }

button.boost-sd__button.boost-sd__button--square.boost-sd__button--border.boost-sd__button--height-fit-content.boost-sd__button--show-on-hover.boost-sd__button--hide-on-mobile.boost-sd__button--no-minwidth.boost-sd__btn-quick-view {
  display: none !important; }

.boost-sd__product-vendor {
  display: none !important; }

.scroll div.pplr-tab-number {
  color: #aaa !important;
  background: #fff !important;
  border-radius: 50% !important;
  border: none !important;
  margin: 0 40%;
  font-family: "Lato", Helvetica, Arial, sans-serif !important;
  text-align: center !important; }

.scroll label.oindexlabel {
  border-bottom: 1px solid;
  padding: 15px 0 6px 0px; }

.scroll div.pplr-tab-number {
  min-width: 25px;
  max-width: 25px;
  margin: 0 auto;
  margin: auto 0 0 0 !important;
  text-align: left !important; }

.scroll .step-label {
  font-size: 0.8em;
  text-align: left;
  color: #aaa; }

.scroll .product-form__item.product-form__item--submit.product-form__item--no-variants.sticky-atc {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  max-width: 556px;
  background: #fff; }

.minted-production {
  margin-bottom: 10px; }

button.boost-sd__button.boost-sd__button--border.boost-sd__button--height-fit-content.boost-sd__button--full-width.boost-sd__button--show-on-hover.boost-sd__button--hide-on-mobile.boost-sd__button--no-minwidth {
  display: none !important; }
