/*============================================================================
  [replace with theme name] | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ UTILS ================*/
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/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 ================*/
/*================ CUSTOM VARIABLES ================*/
/*================ SETTINGS ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Sizing Variables ================*/
/*================ COMMON ================*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

/*================ Slate specific reset ================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

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

a:focus {
  color: inherit; }

img {
  max-width: 100%; }

/*================ Form element helpers ================*/
form {
  margin: 0; }

button,
input[type="submit"],
label[for] {
  cursor: pointer; }

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

a:focus, input:focus, button:focus, select:focus {
  outline: none; }

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

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  input:required {
    outline: none; } }
/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }

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

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.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: 991px) {
  /** 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; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
a {
  cursor: pointer;
  text-decoration: none; }

a, a:visited {
  color: initial; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    a, a:visited {
      color: #000; } }

ul, li {
  list-style: none; }

strong {
  font-weight: bold; }

@font-face {
  font-family: 'droid_sansregular';
  src: url("./droidsans-webfont.eot");
  src: url("./droidsans-webfont.eot?#iefix") format("embedded-opentype"), url("./droidsans-webfont.woff2") format("woff2"), url("./droidsans-webfont.woff") format("woff"), url("./droidsans-webfont.ttf") format("truetype"), url("./droidsans-webfont.svg#droid_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'BodoniBT-Book';
  src: url("BodoniBT-Book.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'BodoniBT-Book';
  src: url(data:application/x-font-woff;charset=utf-8;base64,) format("woff"), url("BodoniBT-Book.ttf") format("truetype"), url("BodoniBT-Book.svg#BodoniBT-Book") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Slider */
.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 .prod-title,
  .slick-slide .producttitle {
    font-size: 16px;
    line-height: 24px; }
    @media (max-width: 1440px) {
      .slick-slide .prod-title,
      .slick-slide .producttitle {
        font-size: 13px;
        line-height: 16px; } }
  .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: 0; }

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

body {
  font-family: 'Raleway';
  background: #FFF; }

#shopify-section-homepage .section_heading {
  border-bottom: 1px solid #333; }
  #shopify-section-homepage .section_heading h2 {
    margin-bottom: 10px; }

#shopify-section-cart .section_heading {
  margin: 35px auto 20px; }
  @media (max-width: 736px) {
    #shopify-section-cart .section_heading {
      margin-bottom: 0px; } }

.section_heading, .rv_title {
  max-width: 2330px;
  margin: 44px auto 20px; }
  @media (min-width: 1920px) {
    .section_heading, .rv_title {
      margin: 40px auto 30px; } }
  @media (max-width: 992px) {
    .section_heading, .rv_title {
      margin: 30px auto 20px;
      border-bottom: 1px solid #333; }
      .section_heading.first, .rv_title.first {
        display: none; } }
  @media (max-width: 600px) {
    .section_heading, .rv_title {
      margin: 14px auto 20px; } }
  .section_heading h2, .section_heading h1, .rv_title h2, .rv_title h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px; }
    @media (max-width: 1440px) and (min-width: 992px) {
      .section_heading h2, .section_heading h1, .rv_title h2, .rv_title h1 {
        margin: 0 0 5px;
        font-size: 16px; } }
    @media (max-width: 992px) {
      .section_heading h2, .section_heading h1, .rv_title h2, .rv_title h1 {
        font-size: 13px;
        margin: 0 0 5px; } }
    @media (max-width: 600px) {
      .section_heading h2, .section_heading h1, .rv_title h2, .rv_title h1 {
        margin-top: 22px; } }
  @media (max-width: 600px) {
    .section_heading.style_2, .rv_title.style_2 {
      border-bottom: none; } }
  @media (max-width: 992px) {
    .section_heading.style_2 h2, .section_heading.style_2 h1, .rv_title.style_2 h2, .rv_title.style_2 h1 {
      margin: 0;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #777873;
      color: #FFF; } }
  .section_heading p, .rv_title p {
    text-transform: uppercase;
    letter-spacing: 0.1px;
    margin-bottom: 40px;
    color: #444;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: 35px; }
    @media (max-width: 1440px) and (min-width: 992px) {
      .section_heading p, .rv_title p {
        font-size: 13px; } }
    @media (max-width: 992px) {
      .section_heading p, .rv_title p {
        font-size: 13px;
        border-bottom: 1px solid #333;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        height: 30px; } }
    @media (max-width: 600px) {
      .section_heading p, .rv_title p {
        padding: 10px 10px;
        height: auto; } }

/****************************************/
/* Heading styles for big screens (27") */
/****************************************/
@media (min-width: 1920px) {
  body.template-login .section_heading, body.template-register .section_heading, body.template-account .section_heading, body.template-activate_account .section_heading, body.template-addresses .section_heading, body.template-collection .section_heading, body.template-cart .section_heading, body.template-page .section_heading {
    margin: 0 auto;
    padding: 0; } }
@media (min-width: 1440px) {
  body.template-login .section_heading, body.template-register .section_heading, body.template-account .section_heading, body.template-activate_account .section_heading, body.template-addresses .section_heading, body.template-collection .section_heading, body.template-cart .section_heading, body.template-page .section_heading {
    margin: 40px auto 30px auto; } }
@media (max-width: 1440px) {
  body.template-login .section_heading, body.template-register .section_heading, body.template-account .section_heading, body.template-activate_account .section_heading, body.template-addresses .section_heading, body.template-collection .section_heading, body.template-cart .section_heading, body.template-page .section_heading {
    margin: 30px auto 30px auto; } }

@media (min-width: 1920px) {
  body.template-index .section_heading {
    max-width: 100%;
    margin: 80px auto 30px; } }

.vertical_list {
  flex-direction: column; }
  .vertical_list li {
    display: block; }

.mobile_header .right {
  min-width: 20px; }
  .mobile_header .right .open_search_dropdown {
    display: block;
    width: 24px;
    top: 8px;
    right: 10px;
    position: relative; }
  .mobile_header .right .close_search_dropdown {
    width: 24px;
    display: none;
    top: 8px;
    right: 3px;
    position: relative; }

.cart_summary_icon {
  display: flex;
  position: relative; }
  .cart_summary_icon img {
    min-width: 28px;
    /*@media (max-width: 1440px) {
      min-width: 0;
      max-width: 22px;
    }*/ }
  .cart_summary_icon span {
    color: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 3px;
    text-decoration: none !important;
    -webkit-font-smoothing: antialiased;
    font-weight: 500; }

.big_button_thin_border {
  display: flex;
  width: 357px;
  max-width: 100%;
  height: 69px;
  justify-content: center;
  align-items: center;
  color: #777873;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid #AAA;
  border-radius: 0; }
  .big_button_thin_border:hover {
    background-color: #ffc7c7; }
  @media (max-width: 1440px) {
    .big_button_thin_border {
      height: 50px;
      width: 266px;
      font-size: 13.5px; } }
  @media (max-width: 600px) {
    .big_button_thin_border {
      height: 34px;
      font-size: 13px;
      color: #666;
      padding: 0 20px;
      display: flex;
      width: 224px;
      margin-top: 24px;
      margin-bottom: 30px; } }

.back_to_top_button, a.back-to-top, #see_more_reviews {
  display: flex;
  width: 357px;
  max-width: 100%;
  height: 69px;
  justify-content: center;
  align-items: center;
  color: #777873;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid #AAA;
  border-radius: 0;
  margin: 85px auto 95px auto; }
  .back_to_top_button:hover, a.back-to-top:hover, #see_more_reviews:hover {
    background-color: #ffc7c7; }
  @media (max-width: 1440px) {
    .back_to_top_button, a.back-to-top, #see_more_reviews {
      height: 50px;
      width: 266px;
      font-size: 13.5px; } }
  @media (max-width: 600px) {
    .back_to_top_button, a.back-to-top, #see_more_reviews {
      height: 34px;
      font-size: 13px;
      color: #666;
      padding: 0 20px;
      display: flex;
      width: 224px;
      margin-top: 24px;
      margin-bottom: 30px; } }
  @media (max-width: 1440px) {
    .back_to_top_button, a.back-to-top, #see_more_reviews {
      margin: 34px auto 60px auto; } }

.large_button_thin_border, a.large_button_thin_border {
  display: flex;
  width: 357px;
  max-width: 100%;
  height: 69px;
  justify-content: center;
  align-items: center;
  color: #777873;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid #AAA;
  border-radius: 0; }
  .large_button_thin_border:hover, a.large_button_thin_border:hover {
    background-color: #ffc7c7; }
  @media (max-width: 1440px) {
    .large_button_thin_border, a.large_button_thin_border {
      height: 50px;
      width: 266px;
      font-size: 13.5px; } }
  @media (max-width: 600px) {
    .large_button_thin_border, a.large_button_thin_border {
      height: 34px;
      font-size: 13px;
      color: #666;
      padding: 0 20px;
      display: flex;
      width: 224px;
      margin-top: 24px;
      margin-bottom: 30px; } }

button.love_it, button.leave_it {
  width: 60px;
  height: 60px;
  position: relative; }
  button.love_it:before, button.love_it:after, button.leave_it:before, button.leave_it:after {
    background: transparent no-repeat 0px 0px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  button.love_it:after, button.leave_it:after {
    background-position: 0 100%;
    opacity: 0; }
  button.love_it:hover:after, button.leave_it:hover:after {
    opacity: 1; }

button.love_it:before, button.love_it:after {
  background-image: url(./love_it_button_sprite.png); }

button.leave_it:before, button.leave_it:after {
  background-image: url(./leave_it_button_sprite.png); }

.flex {
  display: flex; }

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center; }

.flex_between {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .flex_between > .flex_left {
    display: flex; }
  .flex_between > .flex_right {
    display: flex; }

.flex_end {
  display: flex;
  justify-content: flex-end; }

.container {
  width: 95%;
  margin: 0 auto; }
  @media (min-width: 1920px) and (max-width: 2560px) {
    .container {
      margin: 0 auto; } }
  @media (min-width: 2560px) {
    .container {
      margin: 0 auto; } }

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent; }

input:focus, a:focus, button:focus {
  outline: none; }

.form_control h4 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 14px; }
  @media (max-width: 1440px) {
    .form_control h4 {
      font-size: 13px; } }
.form_control p {
  line-height: 1.4; }
  .form_control p a {
    text-decoration: underline; }
.form_control input, .form_control label {
  font-size: 16px;
  font-family: 'Raleway'; }
  @media (max-width: 992px) {
    .form_control input, .form_control label {
      font-size: 16px !important; } }
.form_control .text_input_item {
  margin-bottom: 18px; }
  .form_control .text_input_item label {
    font-weight: 500;
    display: block;
    margin-bottom: 5px; }
    @media (max-width: 1440px) {
      .form_control .text_input_item label {
        font-size: 13px; } }
  .form_control .text_input_item input {
    width: 100%;
    border: 1px solid #9c9c9c;
    border-radius: 0;
    transition: all 0.1s ease-in-out;
    padding: 10px 18px;
    display: block; }
.form_control .large_button {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0;
  color: #505050 !important;
  transition: all 0.4s ease-in-out;
  padding: 0;
  height: 80px; }
.form_control .large_button.grey, .form_control .small_button.grey {
  background: #f1f1f1;
  font: inherit; }
  .form_control .large_button.grey:hover, .form_control .small_button.grey:hover {
    background: #d8d8d8; }
  @media (max-width: 1440px) {
    .form_control .large_button.grey, .form_control .small_button.grey {
      height: 50px;
      font-size: 13px !important; } }
.form_control .large_button.pink, .form_control .small_button.pink {
  background: #fbe3e3;
  font: inherit; }
  @media (max-width: 1440px) {
    .form_control .large_button.pink, .form_control .small_button.pink {
      height: 50px;
      font-size: 13px !important; } }
  @media (max-width: 600px) {
    .form_control .large_button.pink, .form_control .small_button.pink {
      margin: 0 auto;
      padding: 0;
      display: table-cell;
      vertical-align: middle; } }
  .form_control .large_button.pink:hover, .form_control .small_button.pink:hover {
    background: #ffc7c7; }
@media (max-width: 600px) {
  .form_control .large_button.pink.address-new-toggle {
    min-width: 90%; } }
.form_control .small_button {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0;
  color: #505050 !important;
  transition: all 0.4s ease-in-out;
  padding: 0;
  height: 30px;
  width: 25%; }

.search_form_bar {
  display: flex;
  border: 1px solid #CCC;
  height: 37px; }
  .search_form_bar input[type=text] {
    border: none;
    width: 90%;
    font-family: 'Raleway';
    font-size: 14px;
    padding-left: 10px; }
  .search_form_bar button {
    border: none;
    background: transparent; }
  .search_form_bar button i {
    width: 32px;
    height: 27px;
    display: inline-block;
    background: url(./search-icon.png) no-repeat center;
    background-size: 20px;
    opacity: 0.8;
    margin-top: 2px; }

/*================ Rich Text Editor ================*/
.rte {
  font-size: 15.5px;
  font-family: "Raleway",sans-serif;
  color: #000;
  line-height: 1.4;
  margin-top: 0 !important;
  margin-bottom: 0 !important; }
  .rte > * {
    margin-bottom: 20px; }
  .rte a:not(.button) {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px; }
  .rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
    font-family: "Raleway",sans-serif;
    font-weight: 400;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word; }
  .rte h2 {
    font-size: 20px;
    text-transform: uppercase; }
  .rte ul, .rte li {
    list-style: inside disc; }
  .rte li {
    color: inherit; }

.small_pink_button {
  font-family: 'Raleway';
  background: #edd8d7;
  border: none;
  color: #111 !important;
  border-radius: 1px;
  height: 55px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  padding: 0px 63px;
  letter-spacing: 0.2px;
  text-align: center;
  display: inline-block;
  padding-top: 17px; }

.hide {
  display: none !important; }

.short {
  width: 49.5%; }

.inline {
  display: inline-block !important; }

/*================ MODULES ================*/
.social_icons i.fa-facebook {
  margin-top: 3px; }
.social_icons i.fa-pinterest-p {
  margin-top: 3px; }
.social_icons li {
  margin-left: 19px; }
  .social_icons li:first-child {
    margin-left: 0; }
.social_icons a {
  display: flex !important;
  background: #777873;
  border-radius: 50%;
  width: 39px !important;
  height: 39px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out; }
  .social_icons a:hover {
    background-color: #50504e; }
.social_icons a i {
  font-size: 26px;
  -webkit-font-smoothing: antialiased;
  color: #FFF; }
.social_icons .clearbg {
  background: transparent; }
  .social_icons .clearbg:hover {
    background: transparent; }
.social_icons .wanelo_circle_icon {
  display: inline-block;
  width: 39px;
  height: 39px;
  background: url(./wanelo_circle_icon.png) center no-repeat; }

.master_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease-in-out 0.2s, z-index 0s ease 0s; }
  body[data-mobile-nav-open="T"] .master_overlay {
    opacity: 1;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5); }

.desktop_header {
  position: relative;
  z-index: 100; }
  @media (max-width: 992px) {
    .desktop_header {
      display: none; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .desktop_header {
      display: none; } }

.desktop_header_top_row {
  height: 48px;
  background: #000;
  color: #FFF;
  font-size: 24px;
  text-transform: uppercase;
  font-family: 'Raleway';
  border-bottom: 1px solid #c1c1c1;
  text-align: center; }

div.fine-print {
  font-size: 13px;
  text-transform: none; }
  @media only screen and (max-width: 992px) {
    div.fine-print {
      font-size: 10px;
      margin-top: 5px; } }
  div.fine-print a {
    color: white;
    text-decoration: underline; }

.desktop_header_main_row {
  height: 88px;
  display: flex;
  border-bottom: 1px solid #333; }
  @media (max-width: 992px) {
    .desktop_header_main_row {
      display: none; } }

.desktop_header_main_row .container {
  width: 95%; }
  @media (min-width: 1920px) {
    .desktop_header_main_row .container {
      max-width: 1670px; } }
  @media (max-width: 1140px) {
    .desktop_header_main_row .container {
      width: 99%; } }

.header ul, .header li {
  display: flex; }

@media (max-width: 1440px) {
  .desktop_header_main_row .nav.left > ul > li > a > span, .desktop_header_main_row .nav.right > ul > li.account_link > a > span {
    font-size: 12px; } }
@media (max-width: 1200px) {
  .desktop_header_main_row .nav.left > ul > li > a > span, .desktop_header_main_row .nav.right > ul > li.account_link > a > span {
    font-size: 11px; } }

@media (max-width: 992px) and (min-width: 601px) {
  .mobile_search_button {
    display: none; } }

.desktop_header_main_row .nav > ul, .mobile_header .mobile_search_button > ul {
  align-items: center; }
.desktop_header_main_row .nav > ul > li, .mobile_header .mobile_search_button > ul > li {
  padding-left: 17px;
  position: relative;
  height: 90px;
  align-items: center; }
  .desktop_header_main_row .nav > ul > li:first-child, .mobile_header .mobile_search_button > ul > li:first-child {
    margin-left: 0; }
  @media (max-width: 1200px) and (min-width: 1060px) {
    .desktop_header_main_row .nav > ul > li, .mobile_header .mobile_search_button > ul > li {
      padding-left: 15px; } }
  @media (max-width: 1060px) {
    .desktop_header_main_row .nav > ul > li, .mobile_header .mobile_search_button > ul > li {
      margin-left: 0px;
      padding-left: 12px; } }
  @media (min-width: 993px) {
    .desktop_header_main_row .nav > ul > li:not(.search_button), .mobile_header .mobile_search_button > ul > li:not(.search_button) {
      position: static; } }
.desktop_header_main_row .nav > ul > li.logo, .mobile_header .mobile_search_button > ul > li.logo {
  margin-right: 10px; }
  @media (max-width: 1440px) and (min-width: 992px) {
    .desktop_header_main_row .nav > ul > li.logo, .mobile_header .mobile_search_button > ul > li.logo {
      margin-right: 0;
      padding-left: 0; } }
  .desktop_header_main_row .nav > ul > li.logo a.logo > img, .mobile_header .mobile_search_button > ul > li.logo a.logo > img {
    min-width: 100px;
    max-width: 100%; }
    @media (max-width: 1140px) {
      .desktop_header_main_row .nav > ul > li.logo a.logo > img, .mobile_header .mobile_search_button > ul > li.logo a.logo > img {
        max-width: 100px; } }
@media (max-width: 1200px) {
  .desktop_header_main_row .nav > ul > li > a, .mobile_header .mobile_search_button > ul > li > a {
    text-align: center; } }
.desktop_header_main_row .nav > ul > li > a > span, .mobile_header .mobile_search_button > ul > li > a > span {
  font-size: 15px;
  font-family: 'Raleway';
  text-transform: uppercase;
  font-weight: 500;
  word-spacing: 0px;
  color: #030303;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.1px;
  white-space: nowrap; }
  .desktop_header_main_row .nav > ul > li > a > span:hover, .mobile_header .mobile_search_button > ul > li > a > span:hover {
    text-decoration: underline; }
.desktop_header_main_row .nav .search_nav, .mobile_header .mobile_search_button .search_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px; }
  @media (max-width: 1700px) {
    .desktop_header_main_row .nav .search_nav, .mobile_header .mobile_search_button .search_nav {
      width: 100%; } }
  .desktop_header_main_row .nav .search_nav form, .mobile_header .mobile_search_button .search_nav form {
    display: flex;
    border: 1px solid #CCC;
    height: 30px;
    width: 100%; }
    .desktop_header_main_row .nav .search_nav form input[type=text], .mobile_header .mobile_search_button .search_nav form input[type=text] {
      border: none;
      width: 90%;
      font-family: 'Raleway';
      font-size: 14px;
      padding-left: 10px; }
    .desktop_header_main_row .nav .search_nav form button.submit_search, .mobile_header .mobile_search_button .search_nav form button.submit_search {
      border: none;
      background: #fff;
      padding-right: 0px; }
      .desktop_header_main_row .nav .search_nav form button.submit_search i, .mobile_header .mobile_search_button .search_nav form button.submit_search i {
        width: 32px;
        height: 22px;
        display: inline-block;
        background: url(./search-icon.png) no-repeat center;
        background-size: 20px;
        opacity: 0.8;
        margin-top: 2px; }
@media (min-width: 992px) and (max-width: 1020px) {
  .desktop_header_main_row .nav .account_link, .mobile_header .mobile_search_button .account_link {
    padding-left: 15px; } }
.desktop_header_main_row .nav .account_link a, .mobile_header .mobile_search_button .account_link a {
  opacity: 0.8; }
  .desktop_header_main_row .nav .account_link a:hover, .mobile_header .mobile_search_button .account_link a:hover {
    opacity: 1;
    text-decoration: underline; }
.desktop_header_main_row .nav .cart_button, .mobile_header .mobile_search_button .cart_button {
  opacity: 0.8; }
  @media (max-width: 1060px) {
    .desktop_header_main_row .nav .cart_button, .mobile_header .mobile_search_button .cart_button {
      margin-left: 0;
      padding-left: 10px; } }
  @media (max-width: 1330px) {
    .desktop_header_main_row .nav .cart_button, .mobile_header .mobile_search_button .cart_button {
      padding-left: 14px; } }
  .desktop_header_main_row .nav .cart_button:hover, .mobile_header .mobile_search_button .cart_button:hover {
    opacity: 1; }
  .desktop_header_main_row .nav .cart_button a, .mobile_header .mobile_search_button .cart_button a {
    display: flex;
    position: relative;
    margin-top: -7px; }
  .desktop_header_main_row .nav .cart_button:hover, .mobile_header .mobile_search_button .cart_button:hover {
    text-decoration: none; }
  .desktop_header_main_row .nav .cart_button span, .mobile_header .mobile_search_button .cart_button span {
    color: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 4px;
    text-decoration: none !important;
    -webkit-font-smoothing: antialiased; }
.desktop_header_main_row .nav li.search_button a, .mobile_header .mobile_search_button li.search_button a {
  opacity: 0.8; }
  .desktop_header_main_row .nav li.search_button a:hover, .mobile_header .mobile_search_button li.search_button a:hover {
    opacity: 1; }
.desktop_header_main_row .nav .desktop_header_main_row .nav.left > ul > li:first-child, .mobile_header .mobile_search_button .desktop_header_main_row .nav.left > ul > li:first-child {
  margin-right: 10px; }
.desktop_header_main_row .nav .nav_dropdown_menu, .desktop_header_main_row .nav .search_dropdown_menu, .mobile_header .mobile_search_button .nav_dropdown_menu, .mobile_header .mobile_search_button .search_dropdown_menu {
  position: absolute;
  top: 55px;
  z-index: 300;
  background: #FFF;
  border: 1px solid #c5c5c5; }
.desktop_header_main_row .nav .nav_dropdown_menu, .mobile_header .mobile_search_button .nav_dropdown_menu {
  left: -35px;
  width: 100%;
  padding: 0px 37px 2px;
  display: none;
  border-width: 0; }
  @media (min-width: 993px) {
    .desktop_header_main_row .nav .nav_dropdown_menu, .mobile_header .mobile_search_button .nav_dropdown_menu {
      right: 0;
      top: 131px;
      left: initial; } }
  .desktop_header_main_row .nav .nav_dropdown_menu .row, .mobile_header .mobile_search_button .nav_dropdown_menu .row {
    padding-top: 30px;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0; }
    @media (min-width: 1920px) {
      .desktop_header_main_row .nav .nav_dropdown_menu .row, .mobile_header .mobile_search_button .nav_dropdown_menu .row {
        max-width: 1555px;
        margin: 0 18.55469%;
        padding-left: 0; } }
    .desktop_header_main_row .nav .nav_dropdown_menu .row .column, .mobile_header .mobile_search_button .nav_dropdown_menu .row .column {
      width: 16.66667%;
      max-width: 190px;
      margin-right: 10px;
      text-align: left;
      font-size: 15px; }
      @media (max-width: 1440px) and (min-width: 992px) {
        .desktop_header_main_row .nav .nav_dropdown_menu .row .column, .mobile_header .mobile_search_button .nav_dropdown_menu .row .column {
          font-size: 13px; } }
  .desktop_header_main_row .nav .nav_dropdown_menu .col, .mobile_header .mobile_search_button .nav_dropdown_menu .col {
    width: 23.25%; }
  .desktop_header_main_row .nav .nav_dropdown_menu h5, .mobile_header .mobile_search_button .nav_dropdown_menu h5 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px; }
  .desktop_header_main_row .nav .nav_dropdown_menu ul, .mobile_header .mobile_search_button .nav_dropdown_menu ul {
    margin-bottom: 18px;
    line-height: 21px; }
    @media (min-width: 1920px) {
      .desktop_header_main_row .nav .nav_dropdown_menu ul, .mobile_header .mobile_search_button .nav_dropdown_menu ul {
        font-size: 13px; } }
  .desktop_header_main_row .nav .nav_dropdown_menu li, .mobile_header .mobile_search_button .nav_dropdown_menu li {
    margin-bottom: 6px; }
  .desktop_header_main_row .nav .nav_dropdown_menu li a, .mobile_header .mobile_search_button .nav_dropdown_menu li a {
    font-size: 14px; }
    .desktop_header_main_row .nav .nav_dropdown_menu li a:hover, .mobile_header .mobile_search_button .nav_dropdown_menu li a:hover {
      text-decoration: underline; }
  .desktop_header_main_row .nav .nav_dropdown_menu a:hover img, .mobile_header .mobile_search_button .nav_dropdown_menu a:hover img {
    opacity: 0.8; }
.desktop_header_main_row .nav .search_dropdown_menu, .mobile_header .mobile_search_button .search_dropdown_menu {
  width: 541px;
  right: -76px;
  padding: 15px 17px;
  display: none; }
  @media (max-width: 992px) {
    .desktop_header_main_row .nav .search_dropdown_menu, .mobile_header .mobile_search_button .search_dropdown_menu {
      right: 2%;
      min-width: 320px; } }
  @media (max-width: 600px) {
    .desktop_header_main_row .nav .search_dropdown_menu, .mobile_header .mobile_search_button .search_dropdown_menu {
      width: 100%;
      right: 0%;
      top: 74px;
      border: 0; } }
  .desktop_header_main_row .nav .search_dropdown_menu.visible, .mobile_header .mobile_search_button .search_dropdown_menu.visible {
    display: initial; }
    @media (max-width: 992px) {
      .desktop_header_main_row .nav .search_dropdown_menu.visible .form_search_mobile, .mobile_header .mobile_search_button .search_dropdown_menu.visible .form_search_mobile {
        width: 100%; }
      .desktop_header_main_row .nav .search_dropdown_menu.visible .close_search_dropdown, .mobile_header .mobile_search_button .search_dropdown_menu.visible .close_search_dropdown {
        display: none; } }
  .desktop_header_main_row .nav .search_dropdown_menu .head, .mobile_header .mobile_search_button .search_dropdown_menu .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
  .desktop_header_main_row .nav .search_dropdown_menu .head form, .mobile_header .mobile_search_button .search_dropdown_menu .head form {
    display: flex;
    border: 1px solid #CCC;
    height: 37px;
    width: 90%; }
    .desktop_header_main_row .nav .search_dropdown_menu .head form input[type=text], .mobile_header .mobile_search_button .search_dropdown_menu .head form input[type=text] {
      border: none;
      width: 90%;
      font-family: 'Raleway';
      font-size: 14px;
      padding-left: 10px; }
    .desktop_header_main_row .nav .search_dropdown_menu .head form button, .mobile_header .mobile_search_button .search_dropdown_menu .head form button {
      border: none;
      background: transparent; }
    .desktop_header_main_row .nav .search_dropdown_menu .head form button i, .mobile_header .mobile_search_button .search_dropdown_menu .head form button i {
      width: 32px;
      height: 27px;
      display: inline-block;
      background: url(./search-icon.png) no-repeat center;
      background-size: 20px;
      opacity: 0.8;
      margin-top: 2px; }

.desktop_header_main_row .nav .search_dropdown_menu {
  top: 63px; }

.desktop_header_main_row .nav > ul > li:hover .rdb-nav__dropdown--has-lists {
  display: flex;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3); }
  body.template-index .desktop_header_main_row .nav > ul > li:hover .rdb-nav__dropdown--has-lists {
    border-top: 1px solid #000; }

.desktop_header.test .desktop_header_main_row {
  background: #FFF; }
.desktop_header.test .nav_dropdown_menu {
  display: flex; }

.desktop_header_main_row a[href="/pages/holiday"], .desktop_header_main_row a[href="/collections/all-holiday"],
.mobile_navigation_menu a[href="/pages/holiday"],
.mobile_navigation_menu a[href="/collections/all-holiday"] {
  background-image: url(//cdn.shopify.com/s/files/1/1708/7943/t/203/assets/RD_Holiday_NAV.png?v=326288625550813652);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  height: 100%;
  width: 85px; }
  .desktop_header_main_row a[href="/pages/holiday"] span, .desktop_header_main_row a[href="/collections/all-holiday"] span,
  .mobile_navigation_menu a[href="/pages/holiday"] span,
  .mobile_navigation_menu a[href="/collections/all-holiday"] span {
    color: transparent !important; }

.mobile_navigation_menu a[href="/pages/holiday"], .mobile_navigation_menu a[href="/collections/all-holiday"] {
  background-size: 70px;
  padding: 6px 0;
  background-position: 10px top;
  display: block;
  height: 36px; }

.desktop_header_main_row ul li ul.TheHolidayShop a[href="/pages/holiday"], .desktop_header_main_row ul li ul.TheHolidayShop a[href="/collections/all-holiday"],
.mobile_navigation_menu ul[data-depth="2"] a[href="/pages/holiday"],
.mobile_navigation_menu ul[data-depth="2"] a[href="/collections/all-holiday"] {
  background-image: none !important;
  color: inherit;
  height: default;
  width: auto; }
  .desktop_header_main_row ul li ul.TheHolidayShop a[href="/pages/holiday"] span, .desktop_header_main_row ul li ul.TheHolidayShop a[href="/collections/all-holiday"] span,
  .mobile_navigation_menu ul[data-depth="2"] a[href="/pages/holiday"] span,
  .mobile_navigation_menu ul[data-depth="2"] a[href="/collections/all-holiday"] span {
    color: #000000 !important; }

/*
.mobile_navigation_menu {
  a[href="/pages/holiday"], a[href="/collections/all-holiday"]{
    background-size: cover;
    padding: 6px 0;
  }
}
*/
.desktop_header_main_row a[href="/collections/valentine-s-day"],
.mobile_navigation_menu a[href="/collections/valentine-s-day"] {
  background-image: url(//cdn.shopify.com/s/files/1/1708/7943/t/203/assets/RD_Valentines_Nav_2019.png?v=6800881552873296607);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  color: transparent;
  height: 100%; }
  .desktop_header_main_row a[href="/collections/valentine-s-day"] span,
  .mobile_navigation_menu a[href="/collections/valentine-s-day"] span {
    color: transparent !important; }

.mobile_navigation_menu a[href="/collections/valentine-s-day"] {
  /* background-size: cover;*/
  background-size: contain;
  width: 85%;
  padding: 6px 0px;
  background-position: 15px top; }

.mobile_navigation_menu .line_wrap .h2 a[href="/collections/valentine-s-day"] {
  padding: 9px 6px; }

@media (max-width: 600px) {
  .template-product .template_content {
    padding-top: 0; } }
.mobile_header {
  display: none;
  padding: 0 20px 0 0;
  height: 73px;
  border-bottom: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1001;
  background: #FFF; }
  @media (max-width: 992px) {
    .mobile_header {
      display: flex; } }
  @media (max-width: 600px) {
    .mobile_header {
      position: relative;
      margin-bottom: 70px; } }
  .mobile_header a.hamburger {
    padding: 20px;
    width: 70px; }
  .mobile_header a.hamburger span {
    display: flex;
    width: 29px;
    height: 21px;
    flex-direction: column;
    justify-content: space-between; }
  .mobile_header a.hamburger i {
    display: block;
    width: 100%;
    background: #6f6f6f;
    height: 3px; }
  .mobile_header a.hamburger .hamburger-close {
    display: none; }
  @media (max-width: 992px) and (min-width: 600px) {
    .mobile_header .logo {
      padding-left: 15%; } }
  @media (max-width: 600px) {
    .mobile_header .logo img {
      height: 35px; } }
  .mobile_header .right {
    display: flex; }
    .mobile_header .right .mobile_search {
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding-top: 5px;
      padding-right: 10px;
      height: 28px; }
      @media (max-width: 600px) {
        .mobile_header .right .mobile_search {
          display: none; } }
      .mobile_header .right .mobile_search form {
        display: flex;
        border: 1px solid #CCC;
        height: 28px; }
        .mobile_header .right .mobile_search form input[type=text] {
          border: none;
          width: 90%;
          font-family: 'Raleway';
          font-size: 14px;
          padding-left: 10px; }
        .mobile_header .right .mobile_search form button {
          border: none;
          background: transparent;
          padding: 0; }
          .mobile_header .right .mobile_search form button i {
            width: 32px;
            height: 27px;
            display: inline-block;
            background: url(./search-icon.png) no-repeat center;
            background-size: 20px;
            opacity: 0.8; }
    .mobile_header .right .mobile_search_icon {
      top: 8px;
      right: 15px;
      position: relative; }

/*================ SearchSpring AutoComplete Search Form ================*/
body [ss-autocomplete] {
  z-index: 999999;
  position: absolute;
  right: 2.5%;
  left: auto;
  top: 112px; }

@media only screen and (max-width: 1140px) {
  body [ss-autocomplete] {
    right: 0.5%; } }
@media only screen and (max-width: 992px) {
  body [ss-autocomplete] {
    margin: auto;
    top: 60px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    padding: 0; } }
/*================ SearchSpring Results ================*/
body.template-search #searchspring #searchspring-main #searchspring-options {
  height: 34px; }

/*================ Footer ================*/
.footer ul, footer li {
  display: flex; }

.footer_newsletter_block {
  margin: 0;
  background: #f8f3f0;
  padding: 40px;
  height: 174px;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6); }
  @media (max-width: 992px) {
    .footer_newsletter_block {
      padding: 20px 22px;
      border-bottom: 0;
      border-left: 0;
      border-right: 0;
      height: auto; } }
  @media (max-width: 600px) {
    .footer_newsletter_block {
      padding: 26px 10px; } }
  @media (max-width: 992px) {
    .footer_newsletter_block > .flex_center {
      flex-direction: column; } }
  @media (max-width: 992px) {
    .footer_newsletter_block > .flex_center {
      width: 90%; } }
  @media (max-width: 992px) {
    .footer_newsletter_block .group {
      height: 35px;
      display: flex;
      width: 100%;
      justify-content: center; } }
  .footer_newsletter_block label {
    font-weight: 400;
    color: #606060;
    text-transform: uppercase;
    width: auto;
    margin-right: 20px;
    font-size: 23px; }
    @media (max-width: 992px) {
      .footer_newsletter_block label {
        margin: 0 auto;
        margin-bottom: 15px;
        font-size: 16px; } }
    @media (max-width: 1440px) {
      .footer_newsletter_block label {
        font-size: 13px; } }
  .footer_newsletter_block input[type=email] {
    padding-left: 12px;
    border: 1px solid #707070;
    transition: all 0.4s ease-in-out;
    border-radius: 2px 0 0 2px;
    background: white;
    font-style: normal;
    height: 46px;
    max-width: 533px;
    color: #999999;
    font-family: 'Raleway';
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    align-items: center; }
    @media (max-width: 992px) {
      .footer_newsletter_block input[type=email] {
        font-size: 13px; } }
    .footer_newsletter_block input[type=email]::-webkit-input-placeholder {
      color: #AAA; }
    .footer_newsletter_block input[type=email]:focus::-webkit-input-placeholder {
      color: transparent; }
    @media (min-width: 992px) {
      .footer_newsletter_block input[type=email] {
        width: 400px; } }
    @media (max-width: 992px) {
      .footer_newsletter_block input[type=email] {
        height: 100%;
        display: flex;
        max-width: 400px;
        width: 50%;
        min-width: 170px; } }
    @media (max-width: 1440px) {
      .footer_newsletter_block input[type=email] {
        font-size: 13px; } }
  .footer_newsletter_block .small_submit_button {
    background: #fbe3e3;
    border: 1px solid rgba(138, 132, 122, 0.78);
    color: #646464;
    transition: all 0.25s ease-in-out;
    border-radius: 1px;
    height: 46px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 15px;
    width: 144px;
    font-family: 'Raleway';
    font-size: 16px;
    padding: 0; }
    .footer_newsletter_block .small_submit_button:hover {
      background: #ffc7c7; }
    @media (max-width: 1440px) {
      .footer_newsletter_block .small_submit_button {
        font-size: 13px; } }
    @media (max-width: 992px) {
      .footer_newsletter_block .small_submit_button {
        height: 100%;
        font-size: 13px;
        justify-content: center;
        border: none;
        width: auto;
        padding: 0 20px;
        margin-left: 23px; } }
    @media (max-width: 600px) {
      .footer_newsletter_block .small_submit_button {
        margin-left: 7px; } }

.footer_main_block {
  background: #f1f1f1;
  height: 362px;
  padding-top: 51px;
  text-align: left; }
  @media (max-width: 1250px) {
    .footer_main_block {
      padding: 0 30px;
      padding-top: 51px;
      padding-bottom: 30px; } }
  @media (max-width: 992px) {
    .footer_main_block {
      padding: 0;
      height: auto;
      padding-bottom: 30px; } }
  .footer_main_block .row.top {
    display: flex;
    justify-content: center; }
    @media (max-width: 992px) {
      .footer_main_block .row.top {
        flex-wrap: wrap; } }
    .footer_main_block .row.top > .col {
      width: 300px;
      margin-left: 36px; }
    .footer_main_block .row.top > .col:nth-child(1) {
      margin-left: 0; }
      @media (max-width: 992px) {
        .footer_main_block .row.top > .col:nth-child(1) {
          width: 100%;
          background: #FFF;
          display: flex;
          justify-content: center;
          align-items: center; } }
    @media (max-width: 992px) {
      .footer_main_block .row.top > .col:nth-child(2), .footer_main_block .row.top > .col:nth-child(3) {
        width: auto;
        margin: 0;
        margin-top: 30px; } }
    @media (max-width: 992px) {
      .footer_main_block .row.top > .col:nth-child(2) {
        color: inherit; } }
    @media (max-width: 992px) {
      .footer_main_block .row.top > .col:nth-child(3) {
        margin-left: 10vw; } }
  .footer_main_block h4 {
    color: #676767;
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 17px;
    letter-spacing: 0; }
    @media (max-width: 1440px) {
      .footer_main_block h4 {
        font-size: 15px; } }
  .footer_main_block li {
    margin-top: 13px; }
  .footer_main_block .social_icons {
    margin: 20px 0; }
  .footer_main_block .social_icons li {
    margin-top: 0; }
  .footer_main_block li a {
    color: #606060;
    font-size: 20px;
    text-transform: capitalize; }
    @media (max-width: 1440px) {
      .footer_main_block li a {
        font-size: 13px; } }
    .footer_main_block li a:hover {
      text-decoration: underline; }
  .footer_main_block p.copyright {
    color: #606060;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    margin-top: 47px; }
    @media (max-width: 768px) {
      .footer_main_block p.copyright {
        font-size: 10px; } }

.products_slider_module[data-slider-controls="arrows"], .similar_items, .free_shipping_close, .cross-sell, .evm_grid.evm_row, .left_column.gallery .hero, .esc_productsContainer, .rv_slider {
  max-width: 70vw;
  margin: 0 auto;
  position: relative; }
  @media (max-width: 600px) {
    .products_slider_module[data-slider-controls="arrows"], .similar_items, .free_shipping_close, .cross-sell, .evm_grid.evm_row, .left_column.gallery .hero, .esc_productsContainer, .rv_slider {
      max-width: 100vw; } }
  .products_slider_module[data-slider-controls="arrows"] button.slick-arrow, .similar_items button.slick-arrow, .free_shipping_close button.slick-arrow, .cross-sell button.slick-arrow, .evm_grid.evm_row button.slick-arrow, .left_column.gallery .hero button.slick-arrow, .esc_productsContainer button.slick-arrow, .rv_slider button.slick-arrow {
    position: absolute;
    top: calc(100% - 60%);
    transform: translateY(-50%);
    width: 26px;
    height: 45px;
    border: none;
    font-size: 0;
    z-index: 500; }
    .products_slider_module[data-slider-controls="arrows"] button.slick-arrow:hover, .similar_items button.slick-arrow:hover, .free_shipping_close button.slick-arrow:hover, .cross-sell button.slick-arrow:hover, .evm_grid.evm_row button.slick-arrow:hover, .left_column.gallery .hero button.slick-arrow:hover, .esc_productsContainer button.slick-arrow:hover, .rv_slider button.slick-arrow:hover {
      opacity: 0.8; }
    @media (max-width: 992px) {
      .products_slider_module[data-slider-controls="arrows"] button.slick-arrow, .similar_items button.slick-arrow, .free_shipping_close button.slick-arrow, .cross-sell button.slick-arrow, .evm_grid.evm_row button.slick-arrow, .left_column.gallery .hero button.slick-arrow, .esc_productsContainer button.slick-arrow, .rv_slider button.slick-arrow {
        display: none !important; } }
    .products_slider_module[data-slider-controls="arrows"] button.slick-arrow.slick-prev, .similar_items button.slick-arrow.slick-prev, .free_shipping_close button.slick-arrow.slick-prev, .cross-sell button.slick-arrow.slick-prev, .evm_grid.evm_row button.slick-arrow.slick-prev, .left_column.gallery .hero button.slick-arrow.slick-prev, .esc_productsContainer button.slick-arrow.slick-prev, .rv_slider button.slick-arrow.slick-prev {
      background: url(./pink-arrow-left.png) transparent;
      left: 0;
      margin-left: -4.5vw; }
    .products_slider_module[data-slider-controls="arrows"] button.slick-arrow.slick-next, .similar_items button.slick-arrow.slick-next, .free_shipping_close button.slick-arrow.slick-next, .cross-sell button.slick-arrow.slick-next, .evm_grid.evm_row button.slick-arrow.slick-next, .left_column.gallery .hero button.slick-arrow.slick-next, .esc_productsContainer button.slick-arrow.slick-next, .rv_slider button.slick-arrow.slick-next {
      background: url(./pink-arrow-right.png) transparent;
      right: 0;
      transform: translateX(100%) translateY(-50%);
      margin-right: -3vw; }
  .products_slider_module[data-slider-controls="arrows"] ul, .similar_items ul, .free_shipping_close ul, .cross-sell ul, .evm_grid.evm_row ul, .left_column.gallery .hero ul, .esc_productsContainer ul, .rv_slider ul {
    text-align: center; }
    .products_slider_module[data-slider-controls="arrows"] ul.slick-dots li, .similar_items ul.slick-dots li, .free_shipping_close ul.slick-dots li, .cross-sell ul.slick-dots li, .evm_grid.evm_row ul.slick-dots li, .left_column.gallery .hero ul.slick-dots li, .esc_productsContainer ul.slick-dots li, .rv_slider ul.slick-dots li {
      display: inline-block;
      border-radius: 50px;
      border: 1px solid #AAA;
      background-color: #fff;
      height: 20px;
      width: 20px;
      margin: 0 5px; }
      .products_slider_module[data-slider-controls="arrows"] ul.slick-dots li.slick-active, .similar_items ul.slick-dots li.slick-active, .free_shipping_close ul.slick-dots li.slick-active, .cross-sell ul.slick-dots li.slick-active, .evm_grid.evm_row ul.slick-dots li.slick-active, .left_column.gallery .hero ul.slick-dots li.slick-active, .esc_productsContainer ul.slick-dots li.slick-active, .rv_slider ul.slick-dots li.slick-active {
        background-color: #fbe3e3; }
    .products_slider_module[data-slider-controls="arrows"] ul button, .similar_items ul button, .free_shipping_close ul button, .cross-sell ul button, .evm_grid.evm_row ul button, .left_column.gallery .hero ul button, .esc_productsContainer ul button, .rv_slider ul button {
      opacity: 0; }
  .products_slider_module[data-slider-controls="arrows"] .product_item_pic .overlay .small_button, .similar_items .product_item_pic .overlay .small_button, .free_shipping_close .product_item_pic .overlay .small_button, .cross-sell .product_item_pic .overlay .small_button, .evm_grid.evm_row .product_item_pic .overlay .small_button, .left_column.gallery .hero .product_item_pic .overlay .small_button, .esc_productsContainer .product_item_pic .overlay .small_button, .rv_slider .product_item_pic .overlay .small_button {
    display: none; }

@media (max-width: 768px) {
  .template-product .left_column.gallery .hero .slick-dots {
    padding: 25px 0 0 0; } }

.products_slider_module {
  margin: 0 auto; }
  @media (min-width: 992px) {
    .products_slider_module {
      width: 100%%; } }
  @media (min-width: 600px) and (max-width: 992px) {
    .products_slider_module {
      width: 95%; } }
  @media (max-width: 600px) {
    .products_slider_module {
      max-width: 100%;
      width: 100%; } }

@media (max-width: 600px) {
  .products_slider {
    margin-left: 0; } }
.products_slider .slider_item {
  padding: 0.5em; }
  @media (max-width: 992px) {
    .products_slider .slider_item {
      padding: 0.3333em; } }
  @media (max-width: 600px) {
    .products_slider .slider_item {
      padding-left: 0.2em; } }
.products_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 59px; }
  .products_slider .slick-dots li {
    margin-left: 10px; }
    .products_slider .slick-dots li:first-child {
      margin-left: 0; }
  .products_slider .slick-dots button {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid #CCC;
    background: transparent;
    color: transparent;
    box-shadow: none; }
  .products_slider .slick-dots .slick-active button {
    background: #fbe3e3;
    border: 1px solid #CCC; }
  @media (max-width: 600px) {
    .products_slider .slick-dots {
      margin: 15px 0 25px 0; } }

/*================ Collection Sidebar ================*/
.collection-sidebar .collection-sidebar__title {
  text-transform: uppercase;
  font-weight: 600;
  width: 100%; }
  .collection-sidebar .collection-sidebar__title span {
    position: absolute; }
.collection-sidebar .collection-sidebar__title--collapsed,
.collection-sidebar .collection-sidebar__title--opened {
  transition: visibility 0s, opacity 0s linear;
  transition-delay: 0.1s; }
.collection-sidebar .collection-sidebar__filters {
  position: relative; }
.collection-sidebar .collection-sidebar__filters-wrapper {
  overflow-y: hidden; }
  @media (max-width: 992px) {
    .collection-sidebar .collection-sidebar__filters-wrapper {
      width: 100%;
      padding: 0 4px; } }
  @media (min-width: 992px) {
    .collection-sidebar .collection-sidebar__filters-wrapper {
      width: 175px; } }
.collection-sidebar .collection-sidebar__category {
  font-size: 20px;
  font-weight: 500;
  margin-top: 50px; }
  @media (max-width: 1440px) {
    .collection-sidebar .collection-sidebar__category {
      font-size: 13px; } }
  @media (max-width: 992px) {
    .collection-sidebar .collection-sidebar__category {
      display: none; } }
.collection-sidebar .collection-sidebar__section-title {
  margin: 14px 0 16px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase; }
  @media (max-width: 1440px) {
    .collection-sidebar .collection-sidebar__section-title {
      font-size: 13px; } }
  @media (max-width: 992px) {
    .collection-sidebar .collection-sidebar__section-title {
      display: none; } }
.collection-sidebar .collection-sidebar__shop-by {
  margin-bottom: 38px; }
  @media (max-width: 992px) {
    .collection-sidebar .collection-sidebar__shop-by {
      display: none; } }
  .collection-sidebar .collection-sidebar__shop-by li {
    min-height: 24px;
    position: relative;
    line-height: 24px;
    margin-bottom: 4px; }
  .collection-sidebar .collection-sidebar__shop-by ul[data-depth="1"] > li ul {
    padding-left: 10px; }
@media (min-width: 992px) {
  .collection-sidebar #bc-sf-filter-options-wrapper {
    margin-top: 37px; } }

.collection-sidebar--collapsed .collection-sidebar__title--collapsed {
  visibility: visible;
  opacity: 1; }
.collection-sidebar--collapsed .collection-sidebar__title--opened {
  visibility: hidden;
  opacity: 0; }
@media (min-width: 992px) {
  .collection-sidebar--collapsed .collection-sidebar__filters {
    transition: all 0.5s ease-in-out;
    left: -200%; } }

.collection-sidebar--opened .collection-sidebar__title--collapsed {
  visibility: hidden;
  opacity: 0; }
.collection-sidebar--opened .collection-sidebar__title--opened {
  visibility: visible;
  opacity: 1; }
@media (min-width: 992px) {
  .collection-sidebar--opened .collection-sidebar__filters {
    transition: all 0.3s ease-in-out;
    left: 0; } }

body.template-collection .template_content .left_sidebar.collection-sidebar--opened,
body.template-search .template_content .left_sidebar.collection-sidebar--opened {
  transition: all 0.3s ease-in-out; }

body.template-collection .template_content .left_sidebar.collection-sidebar--collapsed,
body.template-search .template_content .left_sidebar.collection-sidebar--collapsed {
  margin-right: 0.89844%;
  transition: all 0.2s ease-in-out; }

/*================ Collection ================*/
.products_grid_module {
  max-width: 1357px; }
  body[data-collection-sidebar-open="F"] .products_grid_module {
    max-width: 1506px; }
  .products_grid_module .large_pager_button {
    margin: 0 auto;
    margin-top: 34px;
    margin-bottom: 60px; }

.products_grid_controls.top {
  margin-bottom: 23px !important;
  margin-top: 0 !important; }
.products_grid_controls .control {
  font-weight: 500;
  display: flex;
  margin-left: 80px; }
  .products_grid_controls .control:first-child {
    margin-left: 0; }
  .products_grid_controls .control label {
    text-transform: uppercase;
    margin: 0 5px 0 0; }
    @media (max-width: 1440px) {
      .products_grid_controls .control label {
        font-size: 13px; } }
  .products_grid_controls .control .select {
    position: relative;
    font-size: 16px; }
    @media (max-width: 1440px) {
      .products_grid_controls .control .select {
        font-size: 13px; } }
  .products_grid_controls .control .select select {
    padding: 0 15px 0 0;
    font-size: 16px;
    line-height: inherit;
    border: 0;
    margin: 0;
    position: relative;
    -webkit-appearance: none;
    background: url(./select-down-arrow.png) no-repeat right; }
    .products_grid_controls .control .select select::-ms-expand {
      display: none; }
    @media (max-width: 1440px) {
      .products_grid_controls .control .select select {
        font-size: 13px; } }
.products_grid_controls .control.pager {
  line-height: 55px;
  color: #020202;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 600px) {
    .products_grid_controls .control.pager {
      font-size: 14px; } }
  .products_grid_controls .control.pager a, .products_grid_controls .control.pager span, .products_grid_controls .control.pager li {
    display: inline-block;
    padding: 0 8px;
    color: #777; }
    @media (max-width: 600px) {
      .products_grid_controls .control.pager a, .products_grid_controls .control.pager span, .products_grid_controls .control.pager li {
        padding: 0 9px; } }
  .products_grid_controls .control.pager span.current {
    font-weight: 700;
    color: #333; }
  .products_grid_controls .control.pager i.prev {
    background: url(./select-down-arrow.png) no-repeat center;
    display: inline-block;
    height: 9px;
    width: 20px;
    transform: rotate(-270deg);
    margin-top: 3px;
    cursor: pointer; }
  .products_grid_controls .control.pager i.next {
    background: url(./select-down-arrow.png) no-repeat center;
    display: inline-block;
    height: 9px;
    width: 20px;
    transform: rotate(-90deg);
    margin-top: 3px;
    cursor: pointer; }

.collection-description {
  margin-top: 40px;
  line-height: 24px;
  font-size: 16px;
  padding: 0 15px; }
  @media (max-width: 1440px) {
    .collection-description {
      font-size: 13px;
      line-height: 17px; } }
  .collection-description .collection-desc-wrapper .collection-desc-title {
    font-size: 28px;
    padding-bottom: 10px; }
    @media (max-width: 1440px) {
      .collection-description .collection-desc-wrapper .collection-desc-title {
        font-size: 16px;
        padding-bottom: 0px; } }
    @media (max-width: 992px) {
      .collection-description .collection-desc-wrapper .collection-desc-title {
        font-size: 13px; } }
  .collection-description .collection-desc-wrapper .collection-desc-content-wrapper {
    padding: 55px 15% 0 15%; }
    @media (max-width: 1440px) and (min-width: 992px) {
      .collection-description .collection-desc-wrapper .collection-desc-content-wrapper {
        padding: 35px 15% 0 15%; } }
    @media (max-width: 992px) {
      .collection-description .collection-desc-wrapper .collection-desc-content-wrapper {
        padding: 35px 10% 0 10%; } }
    @media (max-width: 600px) {
      .collection-description .collection-desc-wrapper .collection-desc-content-wrapper {
        padding: 20px 5% 0 5%; } }
    .collection-description .collection-desc-wrapper .collection-desc-content-wrapper .collection-desc-heading {
      font-size: 16px;
      padding: 10px 0; }
      @media (max-width: 1440px) {
        .collection-description .collection-desc-wrapper .collection-desc-content-wrapper .collection-desc-heading {
          font-size: 15px;
          padding: 15px 0; } }
    .collection-description .collection-desc-wrapper .collection-desc-content-wrapper .collection-desc-content {
      line-height: 24px;
      font-size: 16px; }
      @media (max-width: 1440px) {
        .collection-description .collection-desc-wrapper .collection-desc-content-wrapper .collection-desc-content {
          font-size: 13px;
          line-height: 17px; } }

.large_pager_button {
  display: flex;
  width: 357px;
  height: 69px;
  justify-content: center;
  align-items: center;
  color: #777873;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #777873;
  border-radius: 0;
  transition: all 0.4s ease-in-out; }
  .large_pager_button:hover {
    color: #000;
    border-color: #000; }

.products_grid_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  @media (max-width: 992px) {
    .products_grid_items {
      padding: 0 15px; } }
  .products_grid_items .grid__item > div {
    margin: 0 auto 35px; }
    .products_grid_items .grid__item > div p {
      margin-top: 10px;
      text-align: center; }
  .products_grid_items .products_grid_item {
    /*
    &:first-child, &:nth-child(5) {
      @media (min-width: 993px) {
        margin-left:0;
      }
    }
    */ }
    @media (min-width: 1441px) {
      .products_grid_items .products_grid_item {
        width: 23.48259%; } }
    @media (min-width: 1441px) {
      .products_grid_items .products_grid_item:nth-child(4n+1) {
        margin-left: 0; } }
    @media (min-width: 1441px) {
      .products_grid_items .products_grid_item:nth-child(4n+2) {
        margin-left: 2.0398%; } }
    @media (min-width: 1441px) {
      .products_grid_items .products_grid_item:nth-child(4n+3) {
        margin-left: 2.1393%; } }
    @media (min-width: 1441px) {
      .products_grid_items .products_grid_item:nth-child(4n+4) {
        margin-left: 1.89055%; } }
    @media (max-width: 1440px) and (min-width: 601px) {
      .products_grid_items .products_grid_item {
        width: 32.5%;
        margin-left: 1.25%; } }
    @media (max-width: 1440px) and (min-width: 601px) {
      .products_grid_items .products_grid_item:nth-child(3n+1) {
        margin-left: 0; } }
    @media (max-width: 600px) {
      .products_grid_items .products_grid_item {
        width: 48%;
        margin-left: 4%; }
        .products_grid_items .products_grid_item:nth-child(odd) {
          margin-left: 0; } }
    .products_grid_items .products_grid_item .info {
      padding-top: 1px;
      padding-bottom: 25px;
      text-align: center;
      font-size: 16px; }
      @media (max-width: 992px) {
        .products_grid_items .products_grid_item .info {
          font-size: 16px; } }
      .products_grid_items .products_grid_item .info > * {
        margin-bottom: 8px;
        display: block; }
        @media (max-width: 1440px) {
          .products_grid_items .products_grid_item .info > * {
            margin-bottom: 2px;
            font-size: 13px; } }
    .products_grid_items .products_grid_item .info .product_title, .products_grid_items .products_grid_item .info .estimate {
      text-transform: none;
      margin-top: 22px;
      line-height: 28px;
      font-weight: 200;
      font-size: 16px; }
      @media (max-width: 600px) {
        .products_grid_items .products_grid_item .info .product_title, .products_grid_items .products_grid_item .info .estimate {
          line-height: 1.3;
          font-size: 15px;
          margin-top: 5px;
          margin-bottom: 0; } }
      @media (max-width: 1440px) {
        .products_grid_items .products_grid_item .info .product_title, .products_grid_items .products_grid_item .info .estimate {
          line-height: 20px;
          font-size: 13px;
          margin-top: 18px; } }
    .products_grid_items .products_grid_item .info .vendor {
      font-weight: 500;
      font-size: 16px;
      line-height: 28px;
      text-transform: uppercase; }
      @media (max-width: 600px) {
        .products_grid_items .products_grid_item .info .vendor {
          line-height: 1.3;
          font-size: 15px;
          margin-top: 5px;
          margin-bottom: 0;
          font-size: 14px; } }
      @media (max-width: 1440px) {
        .products_grid_items .products_grid_item .info .vendor {
          font-size: 13px;
          line-height: 20px; } }
    .products_grid_items .products_grid_item .info .price {
      font-style: italic; }
      @media (max-width: 600px) {
        .products_grid_items .products_grid_item .info .price {
          line-height: 1.3;
          font-size: 15px;
          margin-top: 5px;
          margin-bottom: 0; } }
    .products_grid_items .products_grid_item .info .stock {
      font-weight: 500; }
      @media (max-width: 600px) {
        .products_grid_items .products_grid_item .info .stock {
          line-height: 1.3;
          font-size: 15px;
          margin-top: 5px;
          margin-bottom: 0;
          margin-top: 3px;
          margin-bottom: 0;
          font-size: 13px; } }
    .products_grid_items .products_grid_item .info .swatches {
      margin-top: 16px; }
      @media (max-width: 600px) {
        .products_grid_items .products_grid_item .info .swatches {
          margin-top: 8px; } }
      .products_grid_items .products_grid_item .info .swatches a {
        display: inline-block; }
      .products_grid_items .products_grid_item .info .swatches span {
        display: inline-block;
        width: 21px;
        height: 21px; }
        @media (max-width: 600px) {
          .products_grid_items .products_grid_item .info .swatches span {
            width: 14px;
            height: 14px; } }
      .products_grid_items .products_grid_item .info .swatches .grey {
        background: #c9c4c4; }
      .products_grid_items .products_grid_item .info .swatches .green {
        background: #9a9c5d; }
      .products_grid_items .products_grid_item .info .swatches .red {
        background: #ed523f; }
      .products_grid_items .products_grid_item .info .swatches .purple {
        background: #8781bd; }
  @media (max-width: 1440px) and (min-width: 601px) {
    .products_grid_items .products_grid_item.per-2-row {
      width: 32.5%;
      margin-left: 1.25%; } }
  @media (max-width: 1440px) and (min-width: 601px) {
    .products_grid_items .products_grid_item.per-2-row:nth-child(2n+1) {
      margin-left: 0; } }

@media (min-width: 992px) {
  .products_grid_mobile_filters {
    display: none; } }
.products_grid_mobile_filters .filters_wrap {
  display: flex;
  flex-direction: row;
  border: 1px solid #999;
  height: 38px;
  align-items: center;
  margin: 0 auto 20px;
  width: 96%;
  max-width: 567px;
  margin-top: 13px; }
  .products_grid_mobile_filters .filters_wrap * {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    font-family: 'Raleway'; }
.products_grid_mobile_filters .select {
  display: flex;
  height: 100%;
  width: 33%;
  padding: 0 7px;
  border-left: 1px solid #333; }
  @media (min-width: 601px) {
    .products_grid_mobile_filters .select {
      padding: 0; } }
  .products_grid_mobile_filters .select:first-child {
    border-left: none; }
.products_grid_mobile_filters .select select {
  background: transparent;
  border: none;
  -webkit-appearance: none;
  width: 100%; }
  @media (min-width: 601px) {
    .products_grid_mobile_filters .select select {
      height: 100%;
      display: flex;
      padding-left: 20px; } }
.products_grid_mobile_filters .select:nth-child(1) {
  width: 40%; }
.products_grid_mobile_filters .select:nth-child(2) {
  width: 29%; }
.products_grid_mobile_filters .select:nth-child(3) {
  position: relative;
  width: 21%;
  background: transparent;
  padding-left: 6px; }
  @media (min-width: 601px) {
    .products_grid_mobile_filters .select:nth-child(3) {
      width: 31%; } }
  .products_grid_mobile_filters .select:nth-child(3):after {
    content: '';
    background: url(./select-down-arrow.png) no-repeat;
    display: inline-block;
    width: 12px;
    height: 6px;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    position: absolute; }
    @media (min-width: 601px) {
      .products_grid_mobile_filters .select:nth-child(3):after {
        right: 13px; } }
  .products_grid_mobile_filters .select:nth-child(3) select {
    position: relative;
    z-index: 100; }

.product_item_pic {
  position: relative;
  font-size: 0;
  width: 100%;
  cursor: pointer;
  display: inline-block; }
  .product_item_pic img {
    width: 100%; }
  .product_item_pic .overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: opacity .25s;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center; }
  .product_item_pic:hover .overlay {
    opacity: 1; }
  .product_item_pic .overlay button {
    height: 10em;
    width: 10em;
    border-radius: 100%;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-transform: uppercase; }
    @media (min-width: 1920px) {
      .product_item_pic .overlay button {
        height: 18em;
        width: 18em; } }
    .product_item_pic .overlay button span {
      display: block;
      font-weight: 700;
      line-height: 0.5;
      font-size: 1.3em; }
      @media (min-width: 1920px) {
        .product_item_pic .overlay button span {
          line-height: 0.8;
          font-size: 2.5em; } }
    @media (max-width: 992px) {
      .product_item_pic .overlay button {
        display: none; } }

.products_grid_item[data-flags="out_of_stock"] .product_item_pic .overlay {
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1; }
.products_grid_item[data-flags="out_of_stock"] .product_item_pic .overlay button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: rgba(37, 31, 31, 0.7);
  color: #FFF;
  position: absolute;
  height: 46px;
  content: 'GET ON THE LIST';
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: 0.2px;
  bottom: 10%;
  font-weight: 700;
  font-family: 'Raleway'; }

/*
  Some Notes
  ----------
  * as a rule for this html structure
    - all wrapping elements (ul, li, .line_wrap) should be 100% width in case we need to add bg color differences or full width borders between any line items/categories. the idea is this keeps things more flexible for different designs/PSD/mockups/whatever the developer gets for this mobile navigation menu.
      -- This means that any text indentation needs to occur on the inner text elements themselves. In my case, I'm stacking these on the headings elements (h1, h2, h3)
  *
*/
@media (max-width: 600px) {
  .template-cart .mobile_navigation_menu,
  .template-checkout .mobile_navigation_menu {
    top: 73px; } }

.mobile_navigation_menu {
  position: fixed;
  transform: translateX(-100%);
  transition: 0.15s all ease-in-out;
  width: 400px;
  background: transparent;
  z-index: 1001;
  top: 73px;
  height: calc(100vh - 73px);
  overflow-y: scroll;
  left: -400px; }
  body[data-mobile-nav-open="T"] .mobile_navigation_menu {
    left: 0; }
  @media (min-width: 1201px) {
    .mobile_navigation_menu {
      display: none; } }
  @media (max-width: 600px) {
    .mobile_navigation_menu {
      width: 60vw;
      left: -60vw;
      top: 124px;
      bottom: 0;
      height: auto !important;
      transform: none;
      z-index: 99999999999999;
      overflow-y: hidden; } }
  @media (min-width: 601px) and (max-width: 1200px) {
    .mobile_navigation_menu {
      bottom: 0;
      height: auto;
      transform: none; } }
  .mobile_navigation_menu .search_form_bar {
    display: flex;
    border: 1px solid #AAA;
    height: 44px;
    margin: 0;
    border-left: 0;
    border-right: 0; }
    .mobile_navigation_menu .search_form_bar input[type=text] {
      border: none;
      background: transparent;
      width: 90%;
      padding-left: 5px;
      font-family: 'Raleway';
      font-size: 13px;
      text-transform: none; }
      .mobile_navigation_menu .search_form_bar input[type=text]:focus::-webkit-input-placeholder {
        color: transparent; }
    .mobile_navigation_menu .search_form_bar button {
      border: none;
      background: transparent;
      margin: 0;
      margin-left: 10px;
      padding: 0;
      display: flex;
      align-items: center; }
    .mobile_navigation_menu .search_form_bar button i {
      width: 32px;
      height: 25px;
      display: inline-block;
      background: url(./search-icon-new.svg) no-repeat center transparent;
      background-size: 19px;
      opacity: 1;
      margin: 0; }
  .mobile_navigation_menu .contents {
    background: #FFFFFF;
    height: 100%;
    padding-top: 0;
    overflow-y: scroll;
    overflow-x: hidden; }
  .mobile_navigation_menu nav {
    color: inherit; }
    .mobile_navigation_menu nav * {
      display: block;
      font-size: 13px;
      color: #000000;
      text-transform: uppercase;
      letter-spacing: 0.2px; }
    .mobile_navigation_menu nav ul {
      margin: 0;
      display: block;
      background: #FFFFFF; }
    .mobile_navigation_menu nav li {
      min-height: 40px;
      position: relative;
      line-height: 40px;
      flex-direction: column; }
    .mobile_navigation_menu nav li.active > .line_wrap > span > a {
      font-weight: 600 !important; }
    .mobile_navigation_menu nav li.active > span > a {
      font-weight: 600 !important; }
    .mobile_navigation_menu nav ul[data-depth="1"] > li.active > .line_wrap {
      background-color: #FBE3E3; }
    .mobile_navigation_menu nav ul[data-depth="2"] > li.active > .line_wrap {
      background-color: #FBE3E3; }
    .mobile_navigation_menu nav li > .line_wrap {
      height: 40px;
      display: flex;
      align-items: center;
      width: 100% !important; }
    .mobile_navigation_menu nav li > *:nth-child(1), .mobile_navigation_menu nav .line_wrap > *:nth-child(1) {
      width: 100%; }
    .mobile_navigation_menu nav li > *:nth-child(2), .mobile_navigation_menu nav .line_wrap > *:nth-child(2) {
      width: auto; }
    .mobile_navigation_menu nav ul[data-depth="1"] {
      width: 100%; }
    .mobile_navigation_menu nav ul[data-depth="1"] > li[data-expand="T"] > .line_wrap {
      border-bottom: 1px solid #cacaca; }
    .mobile_navigation_menu nav ul[data-depth="1"] > li {
      min-height: 48px;
      border-bottom: 1px solid #cacaca;
      line-height: 4px;
      color: inherit; }
      .mobile_navigation_menu nav ul[data-depth="1"] > li > .line_wrap {
        height: 48px; }
      .mobile_navigation_menu nav ul[data-depth="1"] > li:hover {
        background: #fbe3e3; }
        .mobile_navigation_menu nav ul[data-depth="1"] > li:hover > .line_wrap > .h1 > a {
          font-weight: 600; }
      .mobile_navigation_menu nav ul[data-depth="1"] > li ul {
        background: #FFFFFF; }
    .mobile_navigation_menu nav ul[data-depth="2"] > li[data-expand="T"] .line_wrap {
      font-weight: 600;
      background-color: #FBE3E3; }
      .mobile_navigation_menu nav ul[data-depth="2"] > li[data-expand="T"] .line_wrap .h2::before {
        display: none; }
    .mobile_navigation_menu nav ul[data-depth="2"] {
      width: 100%;
      display: none; }
    .mobile_navigation_menu nav li[data-expand="T"] > ul {
      display: block; }
    .mobile_navigation_menu nav li[data-expand="T"] > .line_wrap {
      font-weight: 600;
      background-color: #fbe3e3; }
    .mobile_navigation_menu nav li[data-expand="T"] > .line_wrap button:before {
      transform: rotate(0deg); }
    .mobile_navigation_menu nav ul[data-depth="2"] > li {
      color: inherit; }
    .mobile_navigation_menu nav ul[data-depth="2"] > li:last-child .h2:before {
      display: none; }
    .mobile_navigation_menu nav ul[data-depth="3"] {
      width: 100%;
      display: none;
      background-color: #fbe3e3 !important;
      border-bottom: 1px solid #cacaca;
      padding-top: 0;
      padding-bottom: 15px; }
    .mobile_navigation_menu nav ul[data-depth="3"] > li {
      color: inherit;
      line-height: 31px;
      min-height: 31px; }
      .mobile_navigation_menu nav ul[data-depth="3"] > li:hover {
        background: #fbe3e3; }
    .mobile_navigation_menu nav .h1, .mobile_navigation_menu nav .h2, .mobile_navigation_menu nav .h3 {
      position: relative;
      color: inherit; }
    .mobile_navigation_menu nav .h1 > a, .mobile_navigation_menu nav .h2 > a, .mobile_navigation_menu nav .h3 > a {
      text-decoration: none; }
    .mobile_navigation_menu nav .h1 {
      color: inherit;
      text-indent: 15px; }
    .mobile_navigation_menu nav .h2 {
      color: inherit;
      text-indent: 15px; }
      .mobile_navigation_menu nav .h2::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15px;
        width: calc(100% + 15px);
        height: 1px;
        background-color: #cacaca; }
    .mobile_navigation_menu nav .h3 {
      color: inherit;
      text-indent: 45px; }
    .mobile_navigation_menu nav button {
      background: transparent;
      border: none;
      display: inline-block;
      width: 20px;
      height: 20px;
      padding: 0 !important;
      padding-right: 10px !important;
      position: relative;
      display: flex;
      justify-content: flex-end;
      align-items: center; }
      .mobile_navigation_menu nav button:before {
        content: '';
        height: 10px;
        width: 15px;
        opacity: 1;
        display: inline-block;
        background: url(./collapse.svg) no-repeat center transparent;
        transform: rotate(-180deg); }
    .mobile_navigation_menu nav li.account_link_mobile {
      border-top: 0; }
      .mobile_navigation_menu nav li.account_link_mobile > .line_wrap::before {
        content: '';
        height: 20px;
        width: 28px;
        margin-left: 15px;
        opacity: 1;
        display: inline-block;
        background: url(./account-login-icon.svg) no-repeat center transparent; }
      @media (max-width: 992px) {
        .mobile_navigation_menu nav li.account_link_mobile .topbadge {
          font-weight: 400;
          color: #606060 !important; } }
  .mobile_navigation_menu .social_icons.product_social_buttons ul {
    text-align: center;
    padding: 12px 0; }
    .mobile_navigation_menu .social_icons.product_social_buttons ul li {
      min-height: 28px;
      line-height: 28px;
      margin-left: 8px !important;
      letter-spacing: 0 !important; }
      .mobile_navigation_menu .social_icons.product_social_buttons ul li:first-child {
        margin-left: 0 !important; }
      .mobile_navigation_menu .social_icons.product_social_buttons ul li a {
        width: 28px !important;
        height: 28px !important; }
        .mobile_navigation_menu .social_icons.product_social_buttons ul li a i {
          font-size: 18px;
          margin: 0 !important; }

.shopify-challenge__container {
  margin: 50px auto !important; }

.shopify-challenge__container .shopify-challenge__button {
  background: #fbe3e3;
  color: #505050;
  height: 50px;
  width: 40%;
  font-size: 16px;
  border: 1px solid rgba(138, 132, 122, 0.78); }

.dropdown {
  position: relative;
  display: inline-block;
  font-weight: 500;
  min-width: 107px; }
  @media (max-width: 1400px) {
    .dropdown {
      font-size: 12px;
      min-width: 90px; } }
  @media (max-width: 1200px) {
    .dropdown {
      font-size: 11px;
      min-width: 80px; } }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 225px;
  z-index: 1;
  top: 40px;
  left: -50px;
  padding: 10px 15px;
  border: 1px solid #d3d3d3; }
  @media (max-width: 1400px) {
    .dropdown-content {
      left: -75px; } }
  @media (min-width: 992px) and (max-width: 1200px) {
    .dropdown-content {
      width: 175px; } }

.dropdown-content a {
  color: black;
  padding: 5px 0;
  text-decoration: none;
  display: block;
  font-weight: 500; }
  @media (max-width: 1400px) {
    .dropdown-content a {
      font-size: 13px; } }

.dropdown-content a:hover {
  text-decoration: none !important; }

.dropdown:hover .dropdown-content {
  display: block; }

.dropdown:hover {
  text-decoration: underline; }

.dropdown-content .iWishView {
  padding-left: 0 !important; }

.dropdown-content .topbadge {
  font-weight: 500 !important;
  font-size: 16px; }
  @media (max-width: 1400px) {
    .dropdown-content .topbadge {
      font-size: 13px; } }

.dropdown-signin {
  background: #f1f1f1;
  height: 50px;
  color: #505050;
  margin-bottom: 10px;
  width: 100%;
  font-size: 16px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: 1px solid #d3d3d3; }

.dropdown-account {
  display: block;
  background: #fbe3e3;
  color: #505050;
  height: 50px;
  width: 100%;
  font-size: 16px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: 1px solid #d3d3d3; }

#popup_modal_root {
  color: inherit; }

.popup_modal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.2); }

body[data-popup-modal-open="T"] .popup_modal {
  display: flex; }

.popup_modal .popup_frame {
  max-width: 759px;
  box-shadow: 0px 1px 8px 2px rgba(51, 51, 51, 0.47);
  background: #FFF;
  border: 5px solid #ebebeb;
  position: relative; }
  @media (min-width: 1920px) {
    .popup_modal .popup_frame {
      min-width: 860px;
      max-width: 860px;
      height: auto; } }

.popup_modal .popup_frame > .close_button {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  overflow: hidden;
  top: 10px;
  right: 11px; }
  .popup_modal .popup_frame > .close_button:before, .popup_modal .popup_frame > .close_button:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px; }
  .popup_modal .popup_frame > .close_button::before {
    transform: rotate(45deg); }
  .popup_modal .popup_frame > .close_button::after {
    transform: rotate(-45deg); }

.shoplook__close {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  top: -20px;
  right: -3px;
  float: right; }
  .shoplook__close:before, .shoplook__close:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px; }
  .shoplook__close::before {
    transform: rotate(45deg); }
  .shoplook__close::after {
    transform: rotate(-45deg); }

.popup_modal .contents_frame {
  padding: 34px 78px; }
  @media (max-width: 600px) {
    .popup_modal .contents_frame {
      padding: 34px 58px; } }

.popup_modal .contents h2 {
  color: inherit; }

@media (min-width: 600px) {
  .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] {
    width: 400px; } }
@media (min-width: 1920px) {
  .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] {
    width: 555px;
    margin: 0 auto; } }
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] {
    width: inherit; } }
.popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] * {
  text-transform: uppercase;
  text-align: center; }
.popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px; }
  @media (min-width: 1920px) {
    .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] h2 {
      margin: 1em 0;
      font-size: 2.5em; } }
.popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] p {
  font-size: 19px;
  margin-bottom: 24px; }
  @media (min-width: 1920px) {
    .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] p {
      margin-bottom: 1.5em;
      font-size: 2em; } }
.popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] .button {
  font-size: 18.5px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-weight: 600;
  margin-bottom: 12px; }
  @media (min-width: 1920px) {
    .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] .button {
      height: 100px;
      font-size: 2em; } }
.popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] .button.pink {
  background: #fbe3e3; }
  .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] .button.pink:hover {
    background: #ffc5c5; }
.popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] .button.grey {
  background: #f1f1f1; }
  .popup_modal [data-popup-id=ADD_TO_CART_CONFIRM] .button.grey:hover {
    background: #dcdcdc; }

.popup_modal .contents_frame .underlined_h1, .popup_modal .contents_frame .underline_h1 {
  text-transform: uppercase;
  font-size: 27px;
  font-weight: 400;
  padding-bottom: 14px;
  border-bottom: 1px solid #333;
  margin-bottom: 14px; }
.popup_modal .contents_frame hr {
  height: 1px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  display: block; }

.popup_modal [data-popup-id=ADD_TO_FAVORITES_CONFIRM] .larger {
  font-size: 22px; }
  @media (max-width: 1440px) {
    .popup_modal [data-popup-id=ADD_TO_FAVORITES_CONFIRM] .larger {
      font-size: 18px; } }
.popup_modal [data-popup-id=ADD_TO_FAVORITES_CONFIRM] p {
  font-size: 18px; }
  @media (max-width: 1440px) {
    .popup_modal [data-popup-id=ADD_TO_FAVORITES_CONFIRM] p {
      font-size: 14px; } }
.popup_modal [data-popup-id=ADD_TO_FAVORITES_CONFIRM] .msg.rte .favorites-signin-button {
  text-align: center; }

body.template-index .desktop_header_main_row {
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.25s ease-in-out; }
  body.template-index .desktop_header_main_row:hover {
    background: #FFF; }
@media (max-width: 992px) {
  body.template-index .desktop_header_top_row {
    display: none !important; } }
body.template-index .hero_banner {
  display: flex;
  margin-top: -131px;
  position: relative;
  z-index: 10;
  justify-content: center; }
  @media (max-width: 992px) {
    body.template-index .hero_banner {
      margin-top: 15px;
      margin-bottom: 25px; } }
body.template-index .hero_banner .hero_image {
  width: 100%; }
  @media (max-width: 768px) {
    body.template-index .hero_banner .hero_image {
      margin-top: 163px;
      width: 100%; } }
  @media only screen and (max-width: 992px) {
    body.template-index .hero_banner .hero_image {
      display: none; } }
  body.template-index .hero_banner .hero_image img {
    width: 100%; }
body.template-index .hero_banner .text {
  z-index: 200;
  cursor: pointer;
  margin-right: 10vw;
  position: absolute;
  right: 0;
  top: 30%; }
  @media (max-width: 992px) {
    body.template-index .hero_banner .text {
      display: none; } }
  @media (min-width: 1920px) {
    body.template-index .hero_banner .text {
      right: 12%;
      top: 29.5%; } }
body.template-index .hero_banner .text img {
  color: inherit; }
  @media (max-width: 1600px) {
    body.template-index .hero_banner .text img {
      height: 150px; } }
body.template-index .hero_banner .text .button {
  width: 258px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background: transparent;
  margin: 0 auto;
  margin-top: 20px;
  height: 50px;
  border: 3px solid #959595;
  color: #959595;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  padding-top: 3px; }
  body.template-index .hero_banner .text .button:hover {
    background: #575656;
    border: 3px solid #575656;
    color: #FFF; }
body.template-index .hero_image_mobile {
  display: none; }
  @media (max-width: 992px) {
    body.template-index .hero_image_mobile {
      display: block;
      margin: 0 auto; } }
  @media (max-width: 768px) {
    body.template-index .hero_image_mobile {
      width: 93%; } }
body.template-index .beta_banners_row {
  display: flex;
  justify-content: space-between;
  width: 99%;
  margin: 0 auto; }
  @media (min-width: 1920px) {
    body.template-index .beta_banners_row {
      width: 100%;
      max-width: 97%; } }
  @media (max-width: 992px) {
    body.template-index .beta_banners_row {
      width: 94%; } }
  @media (max-width: 660px) {
    body.template-index .beta_banners_row {
      flex-wrap: wrap; } }
body.template-index .beta_banner {
  width: calc((100% - 30px) / 2); }
  body.template-index .beta_banner:hover {
    opacity: 0.8; }
    @media (max-width: 768px) {
      body.template-index .beta_banner:hover {
        opacity: 1; } }
  @media (max-width: 660px) {
    body.template-index .beta_banner {
      width: 100%; }
      body.template-index .beta_banner:first-of-type {
        padding-bottom: 20px; } }
  @media (max-width: 600px) {
    body.template-index .beta_banner:last-child img {
      margin-bottom: 0; } }
body.template-index .beta_banner img {
  width: 100%; }

.content_switcher_module .content_item[data-show="F"] {
  display: none; }
.content_switcher_module .content_item[data-show="T"] {
  display: inline-flex; }

.shipping-offer-mobile {
  padding: 10px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Raleway';
  text-align: center;
  margin-top: 85px;
  display: none; }
  @media (max-width: 992px) {
    .shipping-offer-mobile {
      display: block;
      z-index: 1000;
      position: relative;
      top: 0;
      width: 100%;
      background-color: #000; } }
  @media (max-width: 600px) {
    .shipping-offer-mobile {
      margin-top: 0; } }

body.template-index svg.fs-next-svg {
  box-sizing: initial;
  border: 1px solid black;
  border-radius: 100%;
  padding: 10px; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    body.template-index svg.fs-next-svg {
      height: 45px;
      width: 45px;
      padding: 5px; } }
  @media (max-width: 992px) {
    body.template-index svg.fs-next-svg {
      border: 2px solid black;
      padding: 10px; } }
  @media (max-width: 600px) {
    body.template-index svg.fs-next-svg {
      border: 2px solid black;
      padding: 8px; } }
body.template-index .fs-wrapper div.fs-entry-container {
  width: 20%;
  padding-top: 20%; }
  @media (max-width: 600px) {
    body.template-index .fs-wrapper div.fs-entry-container {
      width: 31.9333%;
      padding-top: 31.9333%; } }
  @media (max-width: 992px) and (orientation: landscape) {
    body.template-index .fs-wrapper div.fs-entry-container {
      width: 23%;
      padding-top: 23%; } }
  @media (min-width: 600px) and (max-width: 992px) {
    body.template-index .fs-wrapper div.fs-entry-container {
      width: 24.4%;
      padding-top: 24.4%; } }

body.template-product .desktop_header_main_row .nav .nav_dropdown_menu {
  top: 136px; }

.template-product .shipping-offer-mobile {
  display: none; }
@media (max-width: 600px) {
  .template-product .mobile_header {
    top: 0; } }

.product_template {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 25px; }
  @media (max-width: 600px) {
    .product_template {
      margin-top: 0; } }
  @media (max-width: 992px) {
    .product_template {
      margin-top: 95px; } }
  @media (max-width: 600px) {
    .product_template {
      margin-top: 0;
      margin-bottom: 0; } }
  .product_template .first_row {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 95%;
    margin-bottom: 0; }
    @media (min-width: 1920px) {
      .product_template .first_row {
        max-width: 82vw; } }
    @media (max-width: 992px) {
      .product_template .first_row {
        width: 94%; } }
    @media (max-width: 600px) {
      .product_template .first_row {
        width: 100%;
        flex-wrap: wrap; } }
    .product_template .first_row > *:nth-child(1) {
      width: 46%;
      max-width: 725px;
      font-size: 0; }
      @media (min-width: 601px) and (max-width: 992px) {
        .product_template .first_row > *:nth-child(1) {
          max-width: 320px;
          min-width: 320px;
          max-height: 490px;
          min-height: 490px;
          margin: 0 auto; } }
      @media (min-width: 600px) and (max-width: 992px) {
        .product_template .first_row > *:nth-child(1) {
          margin: 0 35px 0 0; } }
      @media (max-width: 600px) {
        .product_template .first_row > *:nth-child(1) {
          width: 100%; } }
    .product_template .first_row > *:nth-child(2) {
      width: 50%;
      margin-right: 5%; }
      @media (min-width: 992px) and (max-width: 1500px) {
        .product_template .first_row > *:nth-child(2) {
          width: 47%; } }
      @media (max-width: 600px) {
        .product_template .first_row > *:nth-child(2) {
          width: 100%;
          margin-right: 0; } }
  .product_template > .first_row .gallery > *:nth-child(1) {
    width: calc(100% / 6); }
  .product_template > .first_row .gallery > *:nth-child(2) {
    width: calc(100% / 6 * 5); }
    @media (max-width: 992px) {
      .product_template > .first_row .gallery > *:nth-child(2) {
        width: 100%; } }
  .product_template > .first_row .gallery .hero-wishlist-wrapper {
    position: relative;
    float: right; }
    @media (max-width: 600px) {
      .product_template > .first_row .gallery .hero-wishlist-wrapper {
        width: 100vw; } }
    @media (min-width: 992px) {
      .product_template > .first_row .gallery .hero-wishlist-wrapper .hero {
        margin-left: 21px; } }
    @media (max-width: 992px) {
      .product_template > .first_row .gallery .hero-wishlist-wrapper .hero {
        width: 100%; } }
    .product_template > .first_row .gallery .hero-wishlist-wrapper .hero a {
      color: inherit; }
    .product_template > .first_row .gallery .hero-wishlist-wrapper .hero img {
      width: 100%;
      max-width: 570px; }
      @media (min-width: 1920px) {
        .product_template > .first_row .gallery .hero-wishlist-wrapper .hero img {
          width: auto; } }
      @media (max-width: 600px) {
        .product_template > .first_row .gallery .hero-wishlist-wrapper .hero img {
          width: 100vw; } }
  .product_template > .first_row .gallery .thumbs {
    float: left; }
    @media (max-width: 992px) {
      .product_template > .first_row .gallery .thumbs {
        display: none; } }
  .product_template > .first_row .gallery .thumbs a {
    font-size: 0;
    position: relative;
    margin-bottom: 16px;
    display: block;
    overflow: hidden;
    max-height: 20vh; }
    .product_template > .first_row .gallery .thumbs a:before {
      content: '';
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      transition: opacity .25s;
      background-color: rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center; }
    .product_template > .first_row .gallery .thumbs a:hover:before {
      opacity: 1; }
  .product_template > .first_row .gallery .thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product_template > .main .info {
    color: inherit; }
    @media (max-width: 600px) {
      .product_template > .main .info * {
        text-align: center;
        justify-content: center; } }
    .product_template > .main .info .product_title {
      font-size: 22px;
      line-height: 34px;
      font-weight: 200; }
      @media (max-width: 1440px) {
        .product_template > .main .info .product_title {
          font-size: 16px;
          margin-top: 20px;
          line-height: 20px; } }
      @media (max-width: 600px) {
        .product_template > .main .info .product_title {
          padding: 0 10px; } }
    .product_template > .main .info .vendor {
      text-transform: uppercase;
      font-weight: 500;
      font-size: 23px;
      line-height: 2;
      margin-bottom: 3px; }
      @media (max-width: 1440px) {
        .product_template > .main .info .vendor {
          margin: 7px 0 9px;
          font-size: 15px;
          color: #000;
          padding: 0;
          line-height: 25px;
          font-weight: 500; } }
    .product_template > .main .info .price {
      font-size: 23px;
      font-style: italic;
      font-weight: 500;
      color: #505050; }
      @media (max-width: 1440px) {
        .product_template > .main .info .price {
          font-size: 17px; } }
      .product_template > .main .info .price span.now {
        color: #FF8290; }
      .product_template > .main .info .price span.was {
        padding-left: 10px; }
      .product_template > .main .info .price span.final-sale {
        padding-left: 10px;
        color: red;
        top: 2px;
        position: relative; }
    .product_template > .main .info .favorite_prompt {
      display: flex;
      align-items: center;
      margin-top: 30px; }
      @media (max-width: 960px) {
        .product_template > .main .info .favorite_prompt {
          margin-top: 15px; } }
      .product_template > .main .info .favorite_prompt i {
        color: inherit;
        display: inline-block;
        width: 39px;
        height: 35px;
        background: url(./heart-icon.png) no-repeat center;
        margin-right: 10px;
        transform: translateX(-5px);
        filter: grayscale(99%);
        cursor: pointer; }
        .product_template > .main .info .favorite_prompt i:hover {
          filter: grayscale(0%); }
        @media (max-width: 992px) {
          .product_template > .main .info .favorite_prompt i {
            margin-right: 0; } }
      .product_template > .main .info .favorite_prompt[data-favorite="T"] i {
        filter: grayscale(0%); }
    @media (max-width: 992px) {
      .product_template > .main .info .favorite_prompt span {
        font-size: 13px; } }
    .product_template > .main .info .reviews_prompt {
      display: flex;
      align-items: center;
      margin-top: 30px;
      margin-bottom: 30px; }
      @media (max-width: 960px) {
        .product_template > .main .info .reviews_prompt {
          margin-top: 15px;
          margin-bottom: 23px; } }
    .product_template > .main .info .reviews_prompt .ratings_icons {
      color: inherit;
      display: inline-block;
      width: 91px;
      height: 15px;
      background: url(./ratings_stars_sprite.png) no-repeat center;
      margin-right: 10px; }
    .product_template > .main .info .reviews_prompt .ratings_count {
      color: #333;
      font-size: 13px; }
    .product_template > .main .info form.add_product_form {
      background: initial;
      padding: 18px 20px 18px 0; }
      @media (max-width: 715px) {
        .product_template > .main .info form.add_product_form {
          padding: 18px 0 18px 0; } }
      @media (max-width: 600px) {
        .product_template > .main .info form.add_product_form {
          padding: 18px 28px; } }
    .product_template > .main .info form.add_product_form > * {
      margin-bottom: 14px;
      display: flex;
      justify-content: flex-start; }
      .product_template > .main .info form.add_product_form > *:last-child {
        margin-bottom: 0; }
      @media (max-width: 992px) {
        .product_template > .main .info form.add_product_form > * {
          flex-wrap: wrap; } }
    .product_template > .main .info .add_product_form .options.color i {
      display: inline-block;
      height: 28px;
      width: 28px;
      margin-right: 17px;
      cursor: pointer; }
    .product_template > .main .info .color i[data-value=teal] {
      background: #00aeef; }
    .product_template > .main .info .color i[data-value=maroon] {
      background: #c12a47; }
    .product_template > .main .info .color i[data-value=blue] {
      background: #6581c8; }
    .product_template > .main .info .color i[data-value=black] {
      background: #232323; }
    .product_template > .main .info .color i[data-value=grey] {
      background: #b7b7b7; }
    .product_template > .main .info .open_size_chart_link {
      text-transform: uppercase;
      text-decoration: underline;
      font-weight: 600; }
      @media (max-width: 992px) {
        .product_template > .main .info .open_size_chart_link {
          font-weight: 400;
          text-decoration: none;
          padding: 1px 7px;
          border-bottom: 1px solid #333;
          margin: 0 auto;
          display: flex;
          width: 83px;
          margin-bottom: 15px;
          margin-top: 0;
          font-size: 12px; } }
    @media (max-width: 992px) {
      .product_template > .main .info .options.sizes {
        max-width: 300px;
        margin: 0;
        margin-bottom: 9px; } }
    @media (max-width: 600px) {
      .product_template > .main .info .options.sizes {
        margin: 0 auto 9px auto; } }
    .product_template > .main .info .options.sizes i {
      display: inline-block;
      width: 92px;
      height: 41px;
      font-size: 16px;
      text-transform: uppercase;
      background: #FFF;
      color: #666;
      border: 1px solid #333;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
      cursor: pointer;
      margin-bottom: 5px; }
      @media (max-width: 992px) {
        .product_template > .main .info .options.sizes i {
          height: 31px;
          width: 71px;
          font-size: 16px; } }
    .product_template > .main .info .options.sizes i.selected {
      background: #777873;
      color: #FFF; }
    .product_template > .main .info .add_product_form .buttons_row {
      max-width: 550px; }
      @media (min-width: 993px) {
        .product_template > .main .info .add_product_form .buttons_row {
          display: flex;
          justify-content: space-between; } }
      .product_template > .main .info .add_product_form .buttons_row a, .product_template > .main .info .add_product_form .buttons_row button, .product_template > .main .info .add_product_form .buttons_row input[type=submit] {
        width: 100%;
        height: 70px;
        text-transform: uppercase;
        display: flex;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        border: 1px solid #333;
        font-size: 16px;
        text-align: center; }
        @media (min-width: 993px) {
          .product_template > .main .info .add_product_form .buttons_row a, .product_template > .main .info .add_product_form .buttons_row button, .product_template > .main .info .add_product_form .buttons_row input[type=submit] {
            margin: 0;
            max-width: 48%; } }
        @media (max-width: 1440px) {
          .product_template > .main .info .add_product_form .buttons_row a, .product_template > .main .info .add_product_form .buttons_row button, .product_template > .main .info .add_product_form .buttons_row input[type=submit] {
            width: 100%;
            height: 50px;
            text-transform: uppercase;
            display: flex;
            cursor: pointer;
            justify-content: center;
            align-items: center;
            border: 1px solid #999;
            margin-left: 0;
            letter-spacing: 0px !important;
            font-size: 13px;
            font-family: 'Raleway';
            font-weight: 400 !important;
            color: #666 !important; } }
      .product_template > .main .info .add_product_form .buttons_row input[type=submit], .product_template > .main .info .add_product_form .buttons_row .add_product_submit {
        background: #fbe3e3;
        color: #777873;
        font-weight: 600;
        margin-right: 14px;
        -webkit-appearance: none;
        border-radius: 1px; }
        .product_template > .main .info .add_product_form .buttons_row input[type=submit]:hover, .product_template > .main .info .add_product_form .buttons_row .add_product_submit:hover {
          background: #ffc7c7; }
        @media (max-width: 1440px) and (min-width: 992px) {
          .product_template > .main .info .add_product_form .buttons_row input[type=submit], .product_template > .main .info .add_product_form .buttons_row .add_product_submit {
            margin-right: 10px; } }
        @media (max-width: 992px) {
          .product_template > .main .info .add_product_form .buttons_row input[type=submit], .product_template > .main .info .add_product_form .buttons_row .add_product_submit {
            margin-bottom: 14px;
            margin-right: 0; } }
      @media (max-width: 992px) {
        .product_template > .main .info .add_product_form .buttons_row .add_product_submit {
          margin: 0 auto 15px;
          padding: 0;
          display: table-cell;
          vertical-align: middle; } }
      .product_template > .main .info .add_product_form .buttons_row input[disabled] {
        border-color: #aaa;
        color: #aaa;
        background-color: #fff; }
        .product_template > .main .info .add_product_form .buttons_row input[disabled]:hover {
          border-color: #aaa;
          color: #aaa;
          background-color: #fff;
          cursor: default; }
      .product_template > .main .info .add_product_form .buttons_row .add_to_wishlist_button {
        background: #FFF; }
        .product_template > .main .info .add_product_form .buttons_row .add_to_wishlist_button:hover {
          color: #666; }
      .product_template > .main .info .add_product_form .buttons_row .iwishAddWrap {
        width: 100%; }
        .product_template > .main .info .add_product_form .buttons_row .iwishAddWrap a.iWishAdd {
          max-width: 100%; }
    .product_template > .main .info .info_tabs_widget {
      margin-top: 40px; }
      @media (max-width: 992px) {
        .product_template > .main .info .info_tabs_widget {
          margin-top: 24px; } }
      @media (max-width: 600px) {
        .product_template > .main .info .info_tabs_widget {
          padding: 0 24px; } }
      .product_template > .main .info .info_tabs_widget .tabs_headings {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 31px;
        max-width: 450px; }
        @media (min-width: 992px) and (max-width: 1440px) {
          .product_template > .main .info .info_tabs_widget .tabs_headings {
            max-width: 300px;
            margin-bottom: 15px; } }
        @media (max-width: 992px) {
          .product_template > .main .info .info_tabs_widget .tabs_headings {
            border-bottom: 1px solid #666;
            margin-bottom: 20px; } }
        @media (max-width: 680px) and (min-width: 600px) {
          .product_template > .main .info .info_tabs_widget .tabs_headings {
            width: 110%; } }
        .product_template > .main .info .info_tabs_widget .tabs_headings h2 {
          display: block;
          height: 31px; }
          @media (max-width: 1440px) {
            .product_template > .main .info .info_tabs_widget .tabs_headings h2 {
              height: 20px; } }
          @media (max-width: 992px) {
            .product_template > .main .info .info_tabs_widget .tabs_headings h2 {
              margin: 0;
              width: 33.33%;
              text-align: center;
              height: auto;
              display: flex;
              justify-content: center;
              margin-bottom: -2px;
              padding-bottom: 0px; } }
          .product_template > .main .info .info_tabs_widget .tabs_headings h2:first-child {
            margin-left: 0; }
            @media (max-width: 992px) {
              .product_template > .main .info .info_tabs_widget .tabs_headings h2:first-child {
                justify-content: flex-start; } }
        @media (max-width: 1440px) {
          .product_template > .main .info .info_tabs_widget .tabs_headings h2 a {
            font-weight: 700;
            font-size: 12px; } }
        @media (max-width: 680px) and (min-width: 600px) {
          .product_template > .main .info .info_tabs_widget .tabs_headings h2 a {
            font-size: 11px;
            width: 110%; } }
        .product_template > .main .info .info_tabs_widget .tabs_headings h2.active {
          color: inherit; }
        .product_template > .main .info .info_tabs_widget .tabs_headings a {
          text-transform: uppercase;
          font-size: 16px;
          padding: 7px 0;
          font-weight: 500;
          color: #999; }
          .product_template > .main .info .info_tabs_widget .tabs_headings a:hover {
            color: #333; }
          @media (max-width: 992px) {
            .product_template > .main .info .info_tabs_widget .tabs_headings a {
              padding-bottom: 8px; } }
      .product_template > .main .info .info_tabs_widget .tabs_contents {
        color: inherit; }
        .product_template > .main .info .info_tabs_widget .tabs_contents .content_section {
          display: none;
          text-align: left;
          font-size: 16px; }
          @media (max-width: 1440px) {
            .product_template > .main .info .info_tabs_widget .tabs_contents .content_section {
              font-size: 13px;
              line-height: 17px !important; } }
          @media (max-width: 600px) {
            .product_template > .main .info .info_tabs_widget .tabs_contents .content_section > * {
              text-align: left; } }
          .product_template > .main .info .info_tabs_widget .tabs_contents .content_section p {
            font-size: 16px;
            line-height: 28px; }
            @media (max-width: 1440px) {
              .product_template > .main .info .info_tabs_widget .tabs_contents .content_section p {
                font-size: 13px; } }
          .product_template > .main .info .info_tabs_widget .tabs_contents .content_section ul {
            color: inherit; }
          .product_template > .main .info .info_tabs_widget .tabs_contents .content_section li {
            list-style: inside disc;
            margin-bottom: 8px; }
            @media (max-width: 992px) {
              .product_template > .main .info .info_tabs_widget .tabs_contents .content_section li {
                margin-bottom: 8px;
                font-size: 12px;
                font-weight: 600;
                margin-bottom: 10px;
                color: #666; } }
            @media (max-width: 600px) {
              .product_template > .main .info .info_tabs_widget .tabs_contents .content_section li {
                justify-content: flex-start;
                text-align: left; } }
    .product_template > .main .info .info_tabs_widget[data-currentTab="1"] .tabs_headings h2:nth-child(1) {
      border-bottom: 2px solid black;
      color: #333; }
      @media (max-width: 992px) {
        .product_template > .main .info .info_tabs_widget[data-currentTab="1"] .tabs_headings h2:nth-child(1) {
          border-bottom: 3px solid black; } }
    .product_template > .main .info .info_tabs_widget[data-currentTab="1"] .tabs_contents .content_section:nth-child(1) {
      display: block;
      line-height: 24px; }
    .product_template > .main .info .info_tabs_widget[data-currentTab="2"] .tabs_headings h2:nth-child(2) {
      border-bottom: 2px solid black;
      color: #333; }
      @media (max-width: 992px) {
        .product_template > .main .info .info_tabs_widget[data-currentTab="2"] .tabs_headings h2:nth-child(2) {
          border-bottom: 3px solid black; } }
    .product_template > .main .info .info_tabs_widget[data-currentTab="2"] .tabs_contents .content_section:nth-child(2) {
      display: block;
      line-height: 28px; }
    .product_template > .main .info .info_tabs_widget[data-currentTab="3"] .tabs_headings h2:nth-child(3) {
      border-bottom: 2px solid black;
      color: #333; }
      @media (max-width: 992px) {
        .product_template > .main .info .info_tabs_widget[data-currentTab="3"] .tabs_headings h2:nth-child(3) {
          border-bottom: 3px solid black; } }
    .product_template > .main .info .info_tabs_widget[data-currentTab="3"] .tabs_contents .content_section:nth-child(3) {
      display: block;
      line-height: 28px; }

.model-info-wrapper {
  padding: 0 20px 0; }
  @media (max-width: 680px) and (min-width: 600px) {
    .model-info-wrapper {
      padding: 0; } }
  .model-info-wrapper .model-info-image {
    width: 220px;
    float: left; }
  .model-info-wrapper .model-info-desc {
    width: auto;
    height: auto;
    float: left;
    padding-left: 20px; }
    .model-info-wrapper .model-info-desc h3 {
      margin-bottom: 0px;
      font-weight: normal;
      font-size: 16px;
      line-height: 22px;
      color: #cb2026; }
      @media (max-width: 1440px) {
        .model-info-wrapper .model-info-desc h3 {
          font-size: 13px; } }
    .model-info-wrapper .model-info-desc p {
      margin: 0 0 10px; }

.mfp-content #size-chart, .mfp-content #return-policy {
  box-shadow: 0px 1px 8px 2px rgba(51, 51, 51, 0.47);
  background-color: #ffffff;
  padding: 30px 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 5px solid #ebebeb;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 700px; }
  @media (max-width: 600px) {
    .mfp-content #size-chart, .mfp-content #return-policy {
      padding: 20px 25px; } }
  @media (max-width: 450px) {
    .mfp-content #size-chart table tbody tr td:nth-of-type(1), .mfp-content #return-policy table tbody tr td:nth-of-type(1) {
      right: 5px !important; } }
  .mfp-content #size-chart .size-chart-desc, .mfp-content #return-policy .size-chart-desc {
    margin: 0 0 30px 0;
    font-size: 0.9em;
    line-height: 1.5; }
  .mfp-content #size-chart h2, .mfp-content #return-policy h2 {
    text-transform: uppercase;
    font-size: 1.4em; }
  .mfp-content #size-chart table, .mfp-content #return-policy table {
    text-align: left; }
    .mfp-content #size-chart table td, .mfp-content #return-policy table td {
      border: 1px solid #fff; }
    .mfp-content #size-chart table thead td, .mfp-content #return-policy table thead td {
      font: 800 1em 'Raleway';
      background-color: #b7b7b7; }
    .mfp-content #size-chart table tr:nth-child(odd), .mfp-content #return-policy table tr:nth-child(odd) {
      background: #e1e1e1; }

a.size-chart-open-popup {
  text-decoration: underline;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  font-size: 16px;
  display: inline-flex !important;
  padding-right: 16px; }
  @media (max-width: 1440px) {
    a.size-chart-open-popup {
      font-size: 13px; } }
  @media (max-width: 700px) and (min-width: 600px) {
    a.size-chart-open-popup {
      padding-right: 5px; } }

a.size-chart-open-popup span {
  text-decoration: underline #fff;
  padding-left: 20px; }
  @media (max-width: 700px) and (min-width: 600px) {
    a.size-chart-open-popup span {
      padding-left: 5px; } }

a.return-policy-open-popup {
  text-decoration: underline;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  font-size: 16px;
  display: inline-flex !important; }
  @media (max-width: 1440px) {
    a.return-policy-open-popup {
      font-size: 13px; } }

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

.mfp-content.product-page {
  background: #fff;
  width: 50% !important;
  padding: 100px;
  text-align: center; }
  .mfp-content.product-page a.btn {
    display: block; }
  .mfp-content.product-page a.close-modal-cart {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px; }

.similar_items, .free_shipping_close, .cross-sell, .esc_productsContainer, .rv_slider {
  margin-bottom: 5em; }
  @media (max-width: 1440px) {
    .similar_items, .free_shipping_close, .cross-sell, .esc_productsContainer, .rv_slider {
      margin-bottom: 1em; } }
  .similar_items .slider_item, .free_shipping_close .slider_item, .cross-sell .slider_item, .esc_productsContainer .slider_item, .rv_slider .slider_item {
    padding: 0.3333em;
    text-align: center; }
  .similar_items .prod-caption, .similar_items .prod-price, .free_shipping_close .prod-caption, .free_shipping_close .prod-price, .cross-sell .prod-caption, .cross-sell .prod-price, .esc_productsContainer .prod-caption, .esc_productsContainer .prod-price, .rv_slider .prod-caption, .rv_slider .prod-price {
    margin: .5em 0 0 0; }
    @media (min-width: 1920px) {
      .similar_items .prod-caption, .similar_items .prod-price, .free_shipping_close .prod-caption, .free_shipping_close .prod-price, .cross-sell .prod-caption, .cross-sell .prod-price, .esc_productsContainer .prod-caption, .esc_productsContainer .prod-price, .rv_slider .prod-caption, .rv_slider .prod-price {
        margin: 30px 0 0; } }
  .similar_items .prod-price, .free_shipping_close .prod-price, .cross-sell .prod-price, .esc_productsContainer .prod-price, .rv_slider .prod-price {
    font-style: italic; }
    @media (min-width: 1920px) {
      .similar_items .prod-price, .free_shipping_close .prod-price, .cross-sell .prod-price, .esc_productsContainer .prod-price, .rv_slider .prod-price {
        margin: 15px 0 0; } }
    @media (max-width: 1440px) {
      .similar_items .prod-price, .free_shipping_close .prod-price, .cross-sell .prod-price, .esc_productsContainer .prod-price, .rv_slider .prod-price {
        font-size: 13px; } }
    @media (max-width: 600px) {
      .similar_items .prod-price, .free_shipping_close .prod-price, .cross-sell .prod-price, .esc_productsContainer .prod-price, .rv_slider .prod-price {
        margin-bottom: 10px; } }

@media (max-width: 992px) {
  #shopify-section-cart .free_shipping_close, #shopify-section-cart .free_shipping_close_heading {
    display: none; } }
.yotpo.yotpo-main-widget .yotpo-display-wrapper {
  padding: 0 100px !important;
  max-width: 2050px;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .yotpo.yotpo-main-widget .yotpo-display-wrapper {
      padding: 0 !important; } }
  .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-regular-box {
    border-bottom: 1px solid #000 !important;
    border-top: none !important;
    padding: 25px 50px;
    /*@media (max-width: 768px) {
      display:flex;
    }*/ }
    @media (max-width: 992px) {
      .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-regular-box {
        padding: 25px 0; } }
    @media (max-width: 768px) {
      .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-regular-box .yotpo-bottomline-box-1 {
        width: auto; } }
    @media (max-width: 768px) {
      .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-regular-box .yotpo-bottomline-box-1 .yotpo-stars .yotpo-icon-star {
        font-size: 21px !important; } }
    .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-regular-box .yotpo-bottomline-box-1 .yotpo-stars::before {
      content: 'Overall Rating';
      display: block;
      float: left;
      margin-right: 20px;
      font-size: 1.125em;
      line-height: 1.7em;
      color: #000; }
      @media (max-width: 768px) {
        .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-regular-box .yotpo-bottomline-box-1 .yotpo-stars::before {
          float: none;
          margin: 0 auto; } }
  .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-nav-content .yotpo-review .yotpo-header {
    width: 40% !important;
    float: left; }
    .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-nav-content .yotpo-review .yotpo-header .yotpo-review-stars .yotpo-user-related-fields {
      display: block !important; }
    .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-nav-content .yotpo-review .yotpo-header .y-label.yotpo-user-name {
      color: #000 !important; }
  .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-nav-content .yotpo-review .yotpo-main {
    width: 50% !important;
    margin-left: 0 !important;
    float: right; }
    .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-nav-content .yotpo-review .yotpo-main .content-title {
      float: none !important;
      padding-bottom: 20px !important; }
  .yotpo.yotpo-main-widget .yotpo-display-wrapper .yotpo-nav-content .yotpo-review .yotpo-footer {
    clear: both; }
.yotpo.yotpo-main-widget .write-review-wrapper .write-review .yotpo-header .yotpo-icon {
  color: #f4a9ae; }

.yotpo.yotpo-main-widget .yotpo-bottomline .yotpo-product-related-fields {
  float: left;
  width: 100%;
  margin-left: 0 !important; }

.yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-3-boxes .yotpo-bottomline-box-1 {
  margin-right: 0 !important;
  width: 100%;
  float: left !important; }
  @media (max-width: 320px) {
    .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-3-boxes .yotpo-bottomline-box-1 {
      width: 45%; } }

.yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-3-boxes .yotpo-bottomline-box-2 {
  display: inline-block !important;
  float: left !important;
  width: 100%; }
  @media (max-width: 320px) {
    .yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-3-boxes .yotpo-bottomline-box-2 {
      width: 55%; } }

.yotpo.yotpo-main-widget .yotpo-bottomline.yotpo-bottomline-2-boxes .yotpo-bottomline-box-1 {
  max-width: 100% !important; }

.yotpo .write-review .connect-wrapper {
  padding-left: 0 !important; }

.yotpo .yotpo-nav, .yotpo-star-distribution, .yotpo-multiple-rating-fields,
.yotpo-header .yotpo-icon-profile, .yotpo-footer .footer-actions, .yotpo-footer .yotpo-helpful, .y-label.yotpo-review-date,
.yotpo .form-group .form-element .yotpo-size-field .yotpo-size-field-content .yotpo-size-field-bars,
.yotpo .write-review .socialize-wrapper .socialize, .yotpo .write-review .socialize-wrapper .yotpo-or {
  display: none !important; }

.yotpo.bottomLine {
  padding-top: 15px;
  max-width: 275px; }
  @media (max-width: 600px) {
    .yotpo.bottomLine {
      display: flex;
      max-width: 100%; } }

.yotpo .yotpo-pager .yotpo-page-element {
  color: #000 !important; }

.yotpo .yotpo-size-bars .yotpo-product-related-field-score-bar.yotpo-size-bar-offset,
.yotpo .yotpo-size-bars .yotpo-product-related-field-score-bar.yotpo-size-bar-fit {
  background-color: #000 !important; }

@media (max-width: 480px) {
  .yotpo .form-group label {
    width: 80% !important; } }
.yotpo .yotpo-icon-yotpo-logo, .yotpo .yotpo-logo-title {
  display: none; }

/*
.yotpo .yotpo-field-bars-container > .yotpo-size-bars .yotpo-product-related-field-score-bar.yotpo-size-bar-empty {
  background-color: #acacac !important;
}

.yotpo .yotpo-field-bars-container > .yotpo-size-bars .yotpo-product-related-field-score-bar {
  width: 35px !important;
  height: 5px !important;
}

.yotpo .yotpo-field-bars-container > .yotpo-size-bars .yotpo-product-related-field-score-bar.yotpo-size-bar-fit {
  background-color: #000 !important;
  width: 10px !important;
  height: 10px !important;
  margin-top: 3px;
}


.yotpo .yotpo-size-bars .yotpo-product-related-field-score-divider {
  width: 2px !important;
  margin-top: 4px !important;
  background-color: #acacac;
  height: 10px !important;
}


.yotpo .yotpo-size-bars .yotpo-product-related-field-score-divider:nth-of-type(4),
.yotpo .yotpo-size-bars .yotpo-product-related-field-score-divider:nth-of-type(6) {
  display: none;
}

@media (max-width: 440px) {
  .yotpo .yotpo-size-bars {
    padding-left: 0 !important;
  }
}*/
.product_reviews_module {
  color: inherit; }
  @media (max-width: 992px) {
    .product_reviews_module img.overall_fit_figure {
      max-width: 140px; } }
  @media (max-width: 992px) {
    .product_reviews_module .reviews_count {
      font-size: 13px; } }
  .product_reviews_module .product_reviews_contents {
    color: inherit; }
  @media (max-width: 992px) {
    .product_reviews_module .product_reviews_meta {
      margin-top: 23px; } }
  .product_reviews_module .product_reviews_meta .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 30px; }
    @media (max-width: 600px) {
      .product_reviews_module .product_reviews_meta .row {
        max-width: none;
        width: 100%;
        padding: 0 10px;
        flex-wrap: wrap;
        margin-bottom: 22px; } }
    .product_reviews_module .product_reviews_meta .row .col {
      display: flex;
      justify-content: center;
      align-items: center; }
      @media (max-width: 600px) {
        .product_reviews_module .product_reviews_meta .row .col {
          margin: 0 auto;
          width: 90%;
          justify-content: space-between; } }
    @media (max-width: 600px) {
      .product_reviews_module .product_reviews_meta .row .col:nth-child(1) {
        margin-bottom: 15px; } }
    .product_reviews_module .product_reviews_meta .row .col .label {
      margin-right: 30px;
      display: inline-block; }
      @media (max-width: 600px) {
        .product_reviews_module .product_reviews_meta .row .col .label {
          margin-right: 30px;
          display: inline-block;
          font-size: 12px;
          font-weight: 500; } }
  .product_reviews_module .product_reviews_list {
    color: inherit; }
  .product_reviews_module .review_item {
    padding: 0 6%;
    border-bottom: 1px solid #333; }
    .product_reviews_module .review_item:first-child {
      border-top: 1px solid #333; }
    @media (max-width: 992px) {
      .product_reviews_module .review_item {
        font-size: 13px; } }
    @media (max-width: 600px) {
      .product_reviews_module .review_item {
        padding: 0 15px; } }
  .product_reviews_module .review_item .quote {
    width: 50%; }
    @media (max-width: 992px) {
      .product_reviews_module .review_item .quote {
        width: 40%; } }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .quote {
        width: 100%;
        text-align: center; } }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .quote > * {
        margin-top: 10px; }
        .product_reviews_module .review_item .quote > *:first-child {
          margin-top: 3px; } }
  .product_reviews_module .review_item .row {
    margin: 30px 0; }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .row {
        flex-wrap: wrap; } }
  .product_reviews_module .review_item .row > div {
    line-height: 1.4; }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .row > div:nth-child(1) {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px; } }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .row > div:nth-child(2), .product_reviews_module .review_item .row > div:nth-child(3) {
        height: auto;
        display: block;
        margin-bottom: 10px;
        text-align: center; } }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .row > div:nth-child(2) br, .product_reviews_module .review_item .row > div:nth-child(3) br {
        display: none; } }
    @media (max-width: 600px) {
      .product_reviews_module .review_item .row > div:nth-child(2) strong, .product_reviews_module .review_item .row > div:nth-child(3) strong {
        margin-left: 10px; }
        .product_reviews_module .review_item .row > div:nth-child(2) strong:first-child, .product_reviews_module .review_item .row > div:nth-child(3) strong:first-child {
          margin-left: 0; } }

#evm-recent-viewed-product .evm_grid {
  margin-bottom: 60px; }
  @media (max-width: 1440px) {
    #evm-recent-viewed-product .evm_grid {
      margin-bottom: 30px; } }
  #evm-recent-viewed-product .evm_grid .evm_row {
    max-width: 70vw;
    margin: 0 auto;
    position: relative; }
    @media (max-width: 600px) {
      #evm-recent-viewed-product .evm_grid .evm_row {
        max-width: 100vw; } }
    #evm-recent-viewed-product .evm_grid .evm_row.section_heading {
      display: block;
      max-width: 2330px;
      margin: 30px auto 20px;
      border-bottom: 1px solid #333; }
      #evm-recent-viewed-product .evm_grid .evm_row.section_heading h2 {
        font-size: 28px; }
        @media (max-width: 1440px) {
          #evm-recent-viewed-product .evm_grid .evm_row.section_heading h2 {
            font-size: 13px; } }
    #evm-recent-viewed-product .evm_grid .evm_row .evm_column.evm_three {
      width: 20%; }
    #evm-recent-viewed-product .evm_grid .evm_row .evm_column > div {
      padding: 0.3333em; }
  #evm-recent-viewed-product .evm_grid h2 {
    font-size: 16px;
    line-height: 28px;
    margin: 0.5em 0; }
    @media (max-width: 1440px) {
      #evm-recent-viewed-product .evm_grid h2 {
        font-size: 13px;
        line-height: 15.6px; } }
  #evm-recent-viewed-product .evm_grid .rv__price {
    font-size: 16px;
    font-style: italic; }
    @media (max-width: 1440px) {
      #evm-recent-viewed-product .evm_grid .rv__price {
        font-size: 13px; } }

.size_radios_group {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto; }
  .size_radios_group.shoe_sizes {
    max-width: none;
    flex-wrap: wrap; }
  @media (min-width: 601px) {
    .size_radios_group label {
      margin-bottom: 14px;
      margin-right: 10px; } }
  @media (max-width: 992px) {
    .size_radios_group label {
      margin-right: 5px;
      margin-bottom: 14px; } }
  .size_radios_group input[type=radio] {
    display: none; }
  .size_radios_group input[type=radio] + span {
    width: 92px;
    height: 41px;
    font-size: 16px;
    text-transform: uppercase;
    background: #FFF;
    color: #666;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 1440px) {
      .size_radios_group input[type=radio] + span {
        font-size: 15px; } }
  .size_radios_group input[type=radio]:checked + span {
    background: #777873;
    color: #FFF; }
  .size_radios_group.required input[type=radio][data-variant-available="T"] + span {
    border: 1px solid red;
    color: red; }
  .size_radios_group.required input[type=radio][data-variant-available="F"] + span {
    border: 1px solid red;
    color: red; }
  .size_radios_group input[data-variant-available="F"] + span {
    background: linear-gradient(to left top, transparent 47.75%, currentColor 49.5%, currentColor 50.5%, transparent 52.25%); }

.color_radios_group {
  margin-left: auto;
  margin-right: auto;
  /**
  input[type=radio][value="Aqua"], label input[type=radio][value="aqua"] { background-color: aqua; }
  input[type=radio][value="Black"], input[type=radio][value="black"] { background-color: black; }
  input[type=radio][value="Blue"], input[type=radio][value="blue"] { background-color: blue; }
  input[type=radio][value="Brown"], input[type=radio][value="brown"] { background-color: brown; }
  input[type=radio][value="Brown"], input[type=radio][value="brown"] { background-color: brown; }
  input[type=radio][value="Coral"], input[type=radio][value="coral"] { background-color: coral; }
  input[type=radio][value="Gold"], input[type=radio][value="gold"] { background-color: gold; }
  input[type=radio][value="Gray"], input[type=radio][value="gray"] { background-color: gray; }
  input[type=radio][value="Green"], input[type=radio][value="green"] { background-color: green; }
  input[type=radio][value="Ivory"], input[type=radio][value="ivory"] { background-color: ivory; }
  input[type=radio][value="Lavender"], input[type=radio][value="lavender"] { background-color: lavender; }
  input[type=radio][value="Mint"], input[type=radio][value="mint"] { background-color: mint; }
  input[type=radio][value="Navy"], input[type=radio][value="navy"] { background-color: navy; }
  input[type=radio][value="Oat"], input[type=radio][value="oat"] { background-color: oat; }
  input[type=radio][value="Olive"], input[type=radio][value="olive"] { background-color: olive; }
  input[type=radio][value="Orange"], input[type=radio][value="orange"] { background-color: orange; }
  input[type=radio][value="Peach"], input[type=radio][value="peach"] { background-color: peach; }
  input[type=radio][value="Pink"], input[type=radio][value="pink"] { background-color: pink; }
  input[type=radio][value="Purple"], input[type=radio][value="purple"] { background-color: purple; }
  input[type=radio][value="Red"], input[type=radio][value="red"] { background-color: red; }
  input[type=radio][value="Rust"], input[type=radio][value="rust"] { background-color: rust; }
  input[type=radio][value="Silver"], input[type=radio][value="silver"] { background-color: silver; }
  input[type=radio][value="Tan"], input[type=radio][value="tan"] { background-color: tan; }
  input[type=radio][value="White"], input[type=radio][value="white"] { background-color: white; border: 1px solid #CCC; }
  input[type=radio][value="Yellow"], input[type=radio][value="yellow"] { background-color: yellow; }
  // input[type=radio][value="COLOR"], input[type=radio][value="color"] { background-color: color; }
  */ }
  .color_radios_group label {
    position: relative; }
  .color_radios_group label input[type=radio] {
    display: inline-block;
    width: 28px;
    height: 28px;
    cursor: pointer;
    -webkit-appearance: none; }
  .color_radios_group label input[type=radio]:checked {
    box-shadow: 0 0 0 1px #f8f3f0, 0 0 0 2px #333; }
  .color_radios_group label span {
    display: none; }

.product_template > .main .info .info_tabs_widget[data-currenttab="1"] .tabs_headings h2:nth-child(1) a {
  color: #333; }

.product_template > .main .info .info_tabs_widget[data-currenttab="2"] .tabs_headings h2:nth-child(2) a {
  color: #333; }

.product_template > .main .info .info_tabs_widget[data-currenttab="3"] .tabs_headings h2:nth-child(3) a {
  color: #333; }

.product_social_buttons ul {
  display: flex; }
.product_social_buttons li {
  display: inline-block; }

.size_and_fit_tab h5, .size_and_fit_tab h6, .size_info h5, .size_info h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px; }
.size_and_fit_tab p, .size_info p {
  font-size: 13.5px !important;
  font-weight: 400; }
.size_and_fit_tab br, .size_info br {
  color: inherit; }
.size_and_fit_tab table, .size_info table {
  margin-bottom: 10px; }
.size_and_fit_tab table, .size_info table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13.5px; }
  .size_and_fit_tab table thead, .size_info table thead {
    color: inherit; }
  .size_and_fit_tab table th, .size_info table th {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #fff;
    background: #f8f3f0;
    color: #000; }
  .size_and_fit_tab table tbody, .size_info table tbody {
    position: static; }
  .size_and_fit_tab table tr, .size_info table tr {
    position: static; }
  .size_and_fit_tab table td, .size_info table td {
    background: #f8f3f0;
    border-bottom: 1px solid #fff;
    color: #444;
    border-top: 1px solid transparent;
    padding: 8px; }

body.template-collection .template_content .outer_row,
body.template-search .template_content .outer_row {
  display: flex; }
  @media (min-width: 992px) {
    body.template-collection .template_content .outer_row,
    body.template-search .template_content .outer_row {
      justify-content: space-between; } }

body.template-collection .template_content .left_sidebar,
body.template-search .template_content .left_sidebar {
  width: 336px;
  transition: all 0.4s ease-in-out; }

@media (max-width: 1300px) {
  body.template-collection .template_content .left_sidebar,
  body.template-search .template_content .left_sidebar {
    width: auto;
    margin: 0 20px; } }
@media (max-width: 992px) {
  body.template-collection .template_content .left_sidebar,
  body.template-search .template_content .left_sidebar {
    display: block; } }
body.template-collection .template_content .left_sidebar .filter_menu {
  width: 186px; }

body.template-collection .template_content .left_sidebar a.toggle_collection_sidebar {
  display: inline-block;
  margin-bottom: 20px; }
  @media (max-width: 1440px) {
    body.template-collection .template_content .left_sidebar a.toggle_collection_sidebar {
      font-size: 13px; } }
  @media (max-width: 992px) {
    body.template-collection .template_content .left_sidebar a.toggle_collection_sidebar {
      display: none; } }

body.template-collection .template_content .filter_menu {
  color: inherit; }

body.template-collection .template_content .filter_menu .filters {
  margin-top: 13px; }

body.template-collection .template_content .filter_menu .filter {
  color: inherit; }

body.template-collection .template_content .filter_menu .filter:last-child a {
  border-bottom: none; }

body.template-collection .template_content .filter_menu .filter > a {
  color: inherit;
  height: 44px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 135px; }

body.template-collection .template_content .filter_menu .filter h4,
body.template-collection .template_content .filter_menu .filter .h4 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0; }

body.template-collection .template_content .filter_menu .filter a span {
  background: url(./pink-right-arrow.png) no-repeat center;
  display: inline-block;
  height: 20px;
  width: 20px; }

body.template-collection .template_content .filter_menu .filter.open a span {
  transform: rotate(90deg); }

body.template-collection .template_content .filter_menu span {
  color: inherit; }

body.template-collection .template_content .filter_menu a.toggle {
  color: inherit; }

body.template-collection .template_content .filter_menu h2.page_title,
body.template-collection .template_content .filter_menu .page_title.h2 {
  text-transform: none;
  color: #000;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 25px; }

body.template-collection .template_content .filter_menu h3,
body.template-collection .template_content .filter_menu .h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700; }

body.template-collection .template_content .filter_menu h4,
body.template-collection .template_content .filter_menu .h4 {
  color: inherit; }

body.template-collection .template_content .filter_menu .linklist {
  margin-top: 10px;
  margin-bottom: 35px; }

body.template-collection .template_content .filter_menu .linklist a {
  display: block;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500; }

body.template-collection .template_content .filter_menu .linklist span {
  color: inherit; }

body.template-collection .template_content .filter_menu .filter.open > *:first-child {
  border-bottom: none; }

body.template-collection .template_content .filter_menu .filter .options {
  display: none; }

body.template-collection .template_content .filter_menu .filter.open .options {
  display: block;
  margin-top: 0;
  margin-bottom: 16px; }

body.template-collection .template_content .filter_menu .filter .options ul {
  font-size: 13px; }
  body.template-collection .template_content .filter_menu .filter .options ul li {
    margin-bottom: 5px; }
  body.template-collection .template_content .filter_menu .filter .options ul a:hover {
    opacity: 0.8; }

body.template-collection .template_content .filter_menu .options.swatches div {
  display: flex;
  align-items: center;
  padding: 1px 0; }

body.template-collection .template_content .filter_menu .options.swatches div i {
  width: 16px;
  height: 16px;
  display: flex;
  background: #cccccc; }

body.template-collection .template_content .filter_menu .options.swatches div span {
  display: block;
  padding-top: 1px;
  margin-left: 15px;
  font-size: 15px;
  font-weight: 500; }

@media (min-width: 992px) {
  body.template-collection .template_content .left_sidebar,
  body.template-search .template_content .left_sidebar {
    margin-left: 3.78906%;
    width: 5.27344%;
    min-width: 135px;
    margin-right: 7.65625%; } }

@media (min-width: 992px) {
  body.template-collection .template_content .outer_row[data-collection-handle="gift-certificates"] .left_sidebar {
    display: none !important; }
  body.template-collection .template_content .outer_row[data-collection-handle="gift-certificates"] .right_main {
    margin-left: 7.96875%;
    margin-right: 7.96875%; } }

@media (max-width: 992px) {
  body.template-collection .collection-sidebar-row.outer_row,
  body.template-search .collection-sidebar-row.outer_row {
    display: block;
    margin: 0 4%; } }
@media (max-width: 600px) {
  body.template-collection .collection-sidebar-row.outer_row,
  body.template-search .collection-sidebar-row.outer_row {
    margin: 0; } }

body.template-collection .template_content .right_main,
body.template-search .template_content .right_main {
  width: 100%; }
  @media (min-width: 992px) {
    body.template-collection .template_content .right_main,
    body.template-search .template_content .right_main {
      margin-right: 4.76563%; } }

/*******************/
/* Collection Page */
/*******************/
body.template-collection .coll_banner_wrapper {
  max-width: 2340px;
  margin: 0 4.76563% 25px 3.78906%;
  text-align: center; }
  @media (min-width: 1920px) {
    body.template-collection .coll_banner_wrapper {
      margin: 0 3.4188% 90px; } }
  @media (max-width: 992px) {
    body.template-collection .coll_banner_wrapper {
      display: none; } }
  body.template-collection .coll_banner_wrapper .coll_banner_img {
    width: 100%; }
body.template-collection .desktop_header_main_row .nav .nav_dropdown_menu {
  top: 136px; }

body[data-collection-sidebar-open="F"] .left_sidebar {
  width: auto;
  padding-right: 40px; }

body[data-collection-sidebar-open="F"] .left_sidebar .filter_menu {
  display: none; }

.filter .options label {
  display: flex;
  height: 18px;
  align-items: center; }
  .filter .options label input[type=checkbox] {
    background: transparent;
    border: 1px solid #AAA;
    width: 12px;
    height: 12px;
    -webkit-appearance: none;
    margin-right: 13px; }
  .filter .options label input[type=checkbox]:checked {
    box-shadow: 0 0 0 1px white, 0 0 0 2px black; }
  .filter .options label span {
    font-family: 'Raleway';
    font-size: 14px;
    font-weight: 500; }

.filter .options.swatches label {
  display: flex;
  height: 18px;
  align-items: center; }
  .filter .options.swatches label input[type=checkbox] {
    background: transparent;
    border: 0;
    width: 12px;
    height: 12px;
    -webkit-appearance: none;
    margin-right: 13px; }
    .filter .options.swatches label input[type=checkbox][value=black] {
      background: black; }
    .filter .options.swatches label input[type=checkbox][value=biege] {
      background: #f5f6d9;
      border: 1px solid #cccccc; }
    .filter .options.swatches label input[type=checkbox][value=blue] {
      background: #1c00ff; }
    .filter .options.swatches label input[type=checkbox][value=brown] {
      background: #784a33; }
    .filter .options.swatches label input[type=checkbox][value=gold] {
      background: #dea554; }
    .filter .options.swatches label input[type=checkbox][value=grey] {
      background: gray; }
    .filter .options.swatches label input[type=checkbox][value=green] {
      background: #00a651; }
    .filter .options.swatches label input[type=checkbox][value=orange] {
      background: #ff7200; }
    .filter .options.swatches label input[type=checkbox][value=pink] {
      background: #f06eaa; }
    .filter .options.swatches label input[type=checkbox][value=purple] {
      background: #662d91; }
    .filter .options.swatches label input[type=checkbox][value=red] {
      background: #ed1c24; }
    .filter .options.swatches label input[type=checkbox][value=silver] {
      background: #c2c2c2; }
    .filter .options.swatches label input[type=checkbox][value=white] {
      background: #FFF;
      border: 1px solid #cccccc; }
    .filter .options.swatches label input[type=checkbox][value=yellow] {
      background: #fde300; }
  .filter .options.swatches label input[type=checkbox]:checked {
    box-shadow: 0 0 0 1px white, 0 0 0 2px black; }
  .filter .options.swatches label span {
    font-family: 'Raleway';
    font-size: 14px;
    font-weight: 500; }

.products_grid_items .love_it_or_leave_it {
  display: flex;
  justify-content: center;
  align-items: center; }
  .products_grid_items .love_it_or_leave_it .info .estimate {
    margin-top: 16px;
    margin-bottom: 8px; }
  .products_grid_items .love_it_or_leave_it button {
    background: transparent;
    border: none; }

body.template-page .page_content_section {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  padding: 55px 25px 85px; }

.errors {
  margin: 5% 0; }
  .errors li {
    margin: 2% 0;
    color: #f00; }
    .errors li:before {
      content: '*';
      font-size: 1em;
      margin: 0 0.5% 0 0; }

/*================ Vendor ================*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.2;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  float: right;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 50px;
  font-weight: 200;
  font-family: "Raleway", serif; }
  @media (max-width: 600px) {
    .mfp-close {
      width: auto;
      top: -10px; } }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close-btn-in .mfp-close {
  color: #3f3f3f; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

@media screen and (max-width: 992px) {
  #bc-sf-filter-tree-mobile {
    display: block !important; }

  #bc-sf-filter-tree {
    display: none; }

  .products_grid_mobile_filters {
    margin-left: 0; }
    .products_grid_mobile_filters .grid__item {
      padding-left: 0; }
    .products_grid_mobile_filters .select select {
      width: auto;
      font-family: 'Raleway';
      color: #777873;
      font-size: 16px;
      padding-right: 20px; }

  #bc-sf-filter-top-show-limit,
  #bc-sf-filter-top-sorting {
    width: auto;
    margin-top: 0; } }
/* ----- iWish @ $2 STYLING ----- */
.iwishWrapper {
  max-width: 1170px;
  margin: 0 auto; }

.iwishWrapper .iwishProducts .iwishItem {
  height: auto !important;
  margin-bottom: 20px; }

.iwishWrapper .right_main {
  margin-right: auto !important; }

.iwishItem .grid-link__meta {
  font-style: italic; }

.iwishRemoveBtn {
  display: block;
  margin-top: 20px; }

.iwishItem .info {
  height: auto !important; }

.iwishItem .info > a {
  height: 75px; }
  @media (max-width: 767px) {
    .iwishItem .info > a {
      height: auto; } }

@media (max-width: 992px) {
  .iwishItem .info h3, .iwishItem .info .iwishMeta-variant-title, .iwishItem .info .grid-link__meta {
    padding-bottom: 10px; } }
@media (max-width: 768px) {
  .iwishItem .info h3, .iwishItem .info .iwishMeta-variant-title, .iwishItem .info .grid-link__meta {
    padding: 5px 0; } }

.iwishItem .grid-link__meta {
  padding-bottom: 15px; }

.iwishBuyBtn {
  background: #fbe3e3;
  color: #777873;
  font-weight: 600;
  margin-right: 14px;
  width: 100%;
  height: 60px;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  font-size: 16px; }
  @media (min-width: 993px) {
    .iwishBuyBtn {
      margin: 0; } }
  .iwishBuyBtn:hover {
    background: #ffc7c7; }
  @media (max-width: 992px) {
    .iwishBuyBtn {
      margin-bottom: 14px; } }

/*.iwishShareContainer { display: none; }*/
/* The sharewishlist Modal (background) */
.shareWishlist {
  display: block;
  width: 100%; }

.shareiWish {
  display: inline-block; }

.copyUrl {
  display: inline-block;
  margin: 10px 0 0;
  word-wrap: break-word;
  width: 100%; }

a#myBtn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 14px;
  text-decoration: underline;
  margin-top: 25px; }

a#myBtn:hover, a#myBtn:focus {
  opacity: 0.7; }

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */ }

/* Modal Content */
#iwishShareModal {
  background-color: rgba(0, 0, 0, 0.2); }

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  box-shadow: 0px 1px 8px 2px rgba(51, 51, 51, 0.47);
  border: 5px solid #ebebeb;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  width: 600px;
  border-radius: 6px; }
  @media (max-width: 600px) {
    .modal-content {
      width: 100%; } }

#btnAddAllToBag {
  background: #fbe3e3;
  color: #777873;
  font-weight: 600;
  margin-right: 14px;
  height: 60px;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  font-size: 16px; }

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }

  to {
    top: 0;
    opacity: 1; } }

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0; }

  to {
    top: 0;
    opacity: 1; } }

/* The Close Button */
.close {
  float: right;
  position: relative;
  top: -8px;
  font-size: 50px;
  font-weight: 200;
  color: #333;
  opacity: 0.9;
  margin-top: -20px;
  right: -10px; }

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer; }

.closeBtn {
  cursor: pointer;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: 'Raleway';
  color: #000;
  border-radius: 3px; }

.closeBtn:hover,
.closeBtn:focus {
  background: #ffc5c5; }

.modal-header {
  padding: 16px;
  background-color: #fff;
  color: #000;
  border-bottom: 1px solid #e5e5e5; }

.modal-body {
  padding: 2px 16px; }

.modal-footer {
  padding: 16px;
  background-color: #fff;
  color: #000;
  border-top: 1px solid #e5e5e5; }

.iwishMsgInfo {
  margin: 2em; }

.actions .iWishLoginMsg {
  margin-top: 10px;
  font-size: 12px !important; }

.actions .iWishLoginMsg a {
  font-size: 12px !important;
  text-decoration: underline; }

.mfp-content #size_charts {
  margin-left: -7px; }
.mfp-content #size_charts .section_heading {
  margin: 0 auto 20px auto;
  padding-bottom: 10px; }
.mfp-content #size_charts ul {
  list-style-type: none;
  padding: 0;
  -webkit-padding-start: 0; }
.mfp-content #size_charts > ul {
  font-size: 12px;
  font-family: "Georgia", serif;
  height: auto;
  border: 1px solid #acacac;
  width: 100%;
  display: table;
  table-layout: fixed; }
.mfp-content #size_charts .chart-table {
  margin-bottom: 30px; }
.mfp-content #size_charts ul.chart-table > li {
  overflow: hidden;
  display: table-cell;
  width: auto;
  text-align: center;
  border-right: 1px solid #acacac; }
.mfp-content #size_charts ul.chart-table > li:last-child {
  border-right: none; }
.mfp-content #size_charts ul.chart-table > li ul li {
  padding: 7px;
  border-top: 1px solid #acacac;
  color: #666;
  white-space: nowrap; }
.mfp-content #size_charts ul.chart-table > li ul li:first-child {
  background-color: #fff;
  border-top: none;
  color: #5E355D;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase; }
.mfp-content #size_charts ul.first-column > li {
  background-color: #efefef;
  text-align: right;
  font-weight: bold;
  color: #333333 !important; }
.mfp-content #size_charts h3 {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: bold; }
.mfp-content #size_charts h3 span {
  font-weight: normal;
  font-size: 12px; }
.mfp-content #size_charts dl dt, .mfp-content #size_charts dl dd {
  text-indent: 0;
  font: 12px/1.55 Arial, Helvetica, sans-serif;
  line-height: 19px;
  color: #333;
  -webkit-margin-start: 0; }
.mfp-content #size_charts dl dd {
  margin-bottom: 12px;
  color: #333333; }
.mfp-content #size_charts dl dt {
  font-weight: bold; }
.mfp-content #shoe_size_conversions > li:not(:first-child) ul li {
  background-color: white !important; }
.mfp-content #shoe_size_conversions > li:first-child ul li {
  background-color: #d9e8de !important;
  text-align: right !important; }

.snapchat-banner-wrapper {
  max-width: 2143px;
  margin: 0 7.8125% 30px; }
  @media (min-width: 320px) {
    .snapchat-banner-wrapper .snapchat-banner-img-mobile {
      display: none; } }
  @media (max-width: 320px) {
    .snapchat-banner-wrapper .snapchat-banner-img {
      display: none; }
    .snapchat-banner-wrapper .snapchat-banner-img-mobile {
      display: block; } }
  .snapchat-banner-wrapper .snapchat-content-wrapper {
    display: inline-block;
    padding-top: 60px; }
    @media (max-width: 767px) {
      .snapchat-banner-wrapper .snapchat-content-wrapper {
        padding-top: 30px; } }
    @media (min-width: 768px) and (max-width: 992px) {
      .snapchat-banner-wrapper .snapchat-content-wrapper {
        padding-top: 40px; } }
    @media (min-width: 1920px) {
      .snapchat-banner-wrapper .snapchat-content-wrapper {
        margin: auto 15%; } }
    .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode {
      display: inline-block;
      width: 30%;
      vertical-align: middle; }
      @media (max-width: 767px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode img {
          width: 100%;
          margin: 0 auto;
          display: block; } }
      @media (min-width: 1920px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode img {
          min-width: 463px;
          min-height: 463px; } }
      @media (max-width: 320px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode {
          width: 90%; } }
      @media (min-width: 320px) and (max-width: 768px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode {
          width: 248px;
          height: 248px; } }
      @media (max-width: 767px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode {
          margin: 0 auto;
          display: block; } }
      @media (min-width: 768px) and (max-width: 992px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode {
          width: 39%; } }
      @media (min-width: 1920px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapcode {
          width: 40%; } }
    .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content {
      display: inline-block;
      width: 69%;
      padding-left: 50px;
      position: relative;
      vertical-align: top; }
      @media (max-width: 767px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content {
          width: 100%;
          padding: 30px 0 0 0; } }
      @media (min-width: 768px) and (max-width: 992px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content {
          padding-left: 25px;
          width: 60%; } }
      @media (min-width: 1920px) {
        .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content {
          padding-left: 46px;
          width: 59%; } }
      .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content h4 {
        font-style: italic;
        font-size: 26px;
        font-family: 'Georgia';
        width: 60%;
        line-height: 1.1; }
        @media (max-width: 1440px) {
          .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content h4 {
            font-size: 13px; } }
        @media (max-width: 1200px) {
          .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content h4 {
            width: 100%; } }
      .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content h3 {
        font-size: 24px;
        font-weight: bold;
        padding-top: 25px; }
        @media (max-width: 1440px) {
          .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content h3 {
            font-size: 13px; } }
        @media (max-width: 1200px) {
          .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content h3 {
            padding-top: 30px; } }
      .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content p {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 200; }
        @media (max-width: 1440px) {
          .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content p {
            font-size: 13px; } }
        @media (min-width: 768px) and (max-width: 768px) {
          .snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content p {
            line-height: 1.1; } }

.template-404 {
  text-align: center; }
  .template-404 .title-404 {
    margin: 40px auto; }
    @media (min-width: 1920px) {
      .template-404 .title-404 {
        font-size: 28px; } }
  .template-404 .landing-404 {
    margin: 0 9%; }
  .template-404 .yes-404 {
    margin: 10px 9% 0 9%; }
    .template-404 .yes-404 img {
      height: auto; }
      @media (max-width: 1920px) {
        .template-404 .yes-404 img {
          width: 128px; } }
  .template-404 .secret-404 {
    font-style: italic;
    font-weight: bold;
    padding: 20px 0;
    background-color: #f5dbd7;
    top: -15px;
    position: relative;
    z-index: -1;
    line-height: 20px; }
    @media (min-width: 1920px) {
      .template-404 .secret-404 {
        font-size: 18px;
        line-height: 34px; } }
  .template-404 .door-404 {
    font-weight: 200;
    line-height: 20px; }
    @media (min-width: 1920px) {
      .template-404 .door-404 {
        line-height: 28px;
        font-size: 18px; } }
  .template-404 .wrong-404 {
    font-weight: bold;
    margin: 20px; }
    @media (min-width: 1920px) {
      .template-404 .wrong-404 {
        font-size: 18px; } }
  .template-404 .door-images-404 {
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: 0 auto;
    position: relative; }
    @media (max-width: 600px) {
      .template-404 .door-images-404 {
        max-width: 100%; } }
    .template-404 .door-images-404 a {
      padding: 0 5px; }
      .template-404 .door-images-404 a img {
        height: auto; }
      .template-404 .door-images-404 a div {
        padding: 20px 0 0 0; }
        @media (min-width: 1920px) {
          .template-404 .door-images-404 a div {
            font-size: 18px;
            line-height: 34px; } }

.template-giftcard .gc_subtext {
  text-transform: initial;
  width: 380px;
  margin: 0 auto; }
  @media (min-width: 1441px) {
    .template-giftcard .gc_subtext {
      font-size: 18px; } }
  @media (max-width: 992px) {
    .template-giftcard .gc_subtext {
      width: 225px; } }
  @media (max-width: 600px) {
    .template-giftcard .gc_subtext {
      padding: 0; } }
.template-giftcard .shipping-offer-mobile {
  display: none; }

.gift_card_heading {
  margin: 40px auto 45px; }
  @media (max-width: 992px) {
    .gift_card_heading {
      margin: 110px auto 20px;
      border-bottom: initial; } }
  @media (max-width: 600px) {
    .gift_card_heading {
      margin: 0 auto 20px; } }
  .gift_card_heading h2 {
    margin-bottom: 50px; }
    @media (max-width: 1440px) and (min-width: 992px) {
      .gift_card_heading h2 {
        font-size: 28px; } }
    @media (max-width: 992px) {
      .gift_card_heading h2 {
        border-bottom: 1px solid;
        padding-bottom: 8px;
        margin-bottom: 20px; } }
    @media (max-width: 600px) {
      .gift_card_heading h2 {
        margin: 20px auto 15px; } }
  @media (max-width: 1440px) and (min-width: 992px) {
    .gift_card_heading p {
      font-size: 18px; } }
  @media (max-width: 992px) {
    .gift_card_heading p {
      border-bottom: initial; } }

.gc_main_image,
.gc_redeem_wrapper {
  margin-bottom: 25px; }
  @media (max-width: 600px) {
    .gc_main_image,
    .gc_redeem_wrapper {
      margin-bottom: 35px; } }

.gc_subtext,
.gc_redeem {
  line-height: 1.5; }

@media (max-width: 600px) {
  .gc_redeem {
    font-size: 13px; } }

@media (max-width: 992px) {
  .gc_main_image {
    margin-bottom: 45px; } }
@media (max-width: 992px) {
  .gc_main_image img {
    max-width: 711px;
    width: 100%; } }

.giftcard-qr {
  margin-bottom: 35px; }

.gcd_wrapper {
  margin-bottom: 40px; }
  @media (max-width: 600px) {
    .gcd_wrapper {
      margin-bottom: 30px; } }

.shopping_link a,
#GiftCardDigits {
  font-size: 18px; }

.shopping_link a {
  text-transform: uppercase;
  text-decoration: underline; }
  @media (max-width: 600px) {
    .shopping_link a {
      font-size: 13px; } }

.sub_img_content_wrapper {
  margin-bottom: 50px; }
  @media (max-width: 992px) {
    .sub_img_content_wrapper {
      margin-bottom: 35px; } }
  @media (max-width: 600px) {
    .sub_img_content_wrapper {
      margin-bottom: 30px; } }

.gc_main_image,
.sub_img_content_wrapper {
  display: grid;
  justify-content: center; }

.sub_img_content_wrapper * {
  justify-self: center; }

#GiftCardDigits,
.gc_redeem {
  width: 355px;
  text-align: center; }
  @media (max-width: 600px) {
    #GiftCardDigits,
    .gc_redeem {
      width: 265px; } }

#GiftCardDigits {
  background: #fbe3e3;
  height: 65px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #999;
  letter-spacing: 0px;
  font-family: 'Raleway';
  font-weight: 600;
  color: #666; }
  @media (max-width: 600px) {
    #GiftCardDigits {
      font-size: 16px;
      height: 40px; } }

.template-password .password-page__wrapper {
  color: #000;
  background-color: #fff;
  font-family: 'Raleway' !important; }
  .template-password .password-page__wrapper .password-page__header {
    border-bottom: 1px solid #000;
    padding: 20px 30px; }
    .template-password .password-page__wrapper .password-page__header .password-page__header__inner {
      display: flex;
      justify-content: space-between;
      margin: 0 auto;
      max-width: 1508px;
      padding: 0; }
      @media (max-width: 768px) {
        .template-password .password-page__wrapper .password-page__header .password-page__header__inner {
          flex-direction: column; } }
      .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__social p {
        font-size: 19.9px; }
        @media (max-width: 1440px) {
          .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__social p {
            font-size: 13px; } }
      .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__social div {
        margin-top: 12px; }
        @media (max-width: 768px) {
          .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__social div {
            display: flex;
            justify-content: center;
            margin-top: 5px; } }
      .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__logo {
        margin-top: 0;
        top: 10px;
        position: relative;
        right: 70px; }
        @media (max-width: 992px) {
          .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__logo {
            right: 0; } }
        .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-page__logo h1 {
          margin-bottom: 0; }
      .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-login {
        font-family: 'Raleway';
        font-size: 18px;
        letter-spacing: 0;
        line-height: 16px;
        display: flex;
        align-items: center;
        font-weight: 500;
        margin-top: 35px; }
        @media (max-width: 1440px) {
          .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-login {
            font-size: 13px; } }
        @media (max-width: 768px) {
          .template-password .password-page__wrapper .password-page__header .password-page__header__inner .password-login {
            justify-content: center;
            margin-top: 15px; } }
  .template-password .password-page__wrapper .password-page__main__inner {
    vertical-align: top;
    padding: 30px; }
    .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh {
      margin: 30px -30px;
      background: url("https://cdn.shopify.com/s/files/1/2220/8601/t/3/assets/password-page__bokeh.png?879308856621508735"); }
      .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:first-of-type {
        font-size: 26px;
        font-style: italic;
        padding: 30px 0; }
        @media (max-width: 1440px) {
          .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:first-of-type {
            font-size: 13px; } }
      @media (max-width: 1440px) {
        .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh img {
          max-width: 700px; } }
      @media (max-width: 992px) {
        .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh img {
          padding: 0 15px 40px 10px;
          max-width: 500px; } }
      @media (max-width: 600px) {
        .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh img {
          max-width: 300px; } }
      .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:last-of-type {
        font-size: 20px;
        top: -40px;
        position: relative;
        line-height: 28px;
        max-width: 555px;
        margin: 0 auto; }
        .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:last-of-type span {
          font-weight: bold; }
        @media (max-width: 1440px) {
          .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:last-of-type {
            font-size: 13px;
            line-height: 15px;
            top: -30px;
            max-width: 415px; } }
        @media (max-width: 992px) {
          .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:last-of-type {
            top: -30px; } }
        @media (max-width: 600px) {
          .template-password .password-page__wrapper .password-page__main__inner .password-page__bokeh p:last-of-type {
            padding: 0 30px; } }
.template-password .mfp-wrap {
  background-color: #fff; }
.template-password .password-page__footer {
  display: none; }

@media screen and (max-width: 992px) {
  .logo img {
    height: 68px;
    width: auto; } }
@media screen and (max-width: 601px) {
  .mobile_header .logo {
    padding-left: 0px; }

  .logo img {
    height: 58px !important;
    width: auto; } }
@media screen and (max-width: 319px) {
  .logo img {
    height: auto !important;
    width: auto; } }
a.additional-checkout-button--amazon img.additional-checkout-button__logo {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px) !important; }

.subscription_message {
  margin-left: 20px;
  font-weight: 700; }
  @media (max-width: 736px) {
    .subscription_message {
      margin-top: 20px; } }

/*========== Product Page ==========*/
@media (min-width: 992px) {
  .product_template .first_row .gallery .thumbs {
    width: 14.67236%; }
    .product_template .first_row .gallery .thumbs .slick-vertical .slick-slide {
      border: 0; }
    .product_template .first_row .gallery .thumbs button.slick-arrow {
      width: 28px;
      height: 16px;
      border: none;
      font-size: 0;
      z-index: 500; }
      .product_template .first_row .gallery .thumbs button.slick-arrow:hover {
        opacity: 0.8; }
      .product_template .first_row .gallery .thumbs button.slick-arrow.slick-prev {
        background: url(./gray-arrow-up.png) transparent;
        left: 30%;
        position: absolute;
        top: -30px;
        z-index: 1; }
      .product_template .first_row .gallery .thumbs button.slick-arrow.slick-next {
        background: url(./gray-arrow-down.png) transparent;
        left: 30%;
        position: relative;
        top: -1px; }
  .product_template .first_row .gallery .hero-wishlist-wrapper {
    margin-left: 5.27066%;
    width: 80.05698%;
    float: left; }
    .product_template .first_row .gallery .hero-wishlist-wrapper .hero {
      margin-left: 0;
      max-width: 100%; }
    .product_template .first_row .gallery .hero-wishlist-wrapper #smartwishlist {
      right: 6.22776%;
      top: 20px; }
  .product_template .first_row .info {
    width: 100%;
    margin-left: 2.38281%;
    max-width: 1000px; } }
    @media (min-width: 992px) and (max-width: 992px) {
      .product_template .first_row .gallery .thumbs button.slick-arrow {
        display: none !important; } }
      @media (min-width: 992px) and (min-width: 1200px) and (max-width: 1440px) {
        .product_template .first_row .gallery .thumbs button.slick-arrow.slick-prev {
          left: 35%; } }
      @media (min-width: 992px) and (min-width: 1440px) {
        .product_template .first_row .gallery .thumbs button.slick-arrow.slick-prev {
          left: 40%; } }
      @media (min-width: 992px) and (min-width: 1200px) and (max-width: 1440px) {
        .product_template .first_row .gallery .thumbs button.slick-arrow.slick-next {
          left: 35%; } }
      @media (min-width: 992px) and (min-width: 1440px) {
        .product_template .first_row .gallery .thumbs button.slick-arrow.slick-next {
          left: 40%; } }
@media (max-width: 600px) {
  .product_template > .first_row .gallery .hero-wishlist-wrapper .hero img {
    max-width: 600px; } }

@media (min-width: 992px) {
  .template-product .section_heading {
    max-width: 100%;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin: 20px auto 20px; } }
.template-product .main .info .add_product_form .buttons_row .product_oos_wrapper {
  width: 97%;
  margin-right: 14px; }
  @media (max-width: 992px) {
    .template-product .main .info .add_product_form .buttons_row .product_oos_wrapper {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px; } }
  .template-product .main .info .add_product_form .buttons_row .product_oos_wrapper a.product_oos_add {
    max-width: 100%;
    width: 100%;
    text-align: center;
    background-color: #595959; }
    .template-product .main .info .add_product_form .buttons_row .product_oos_wrapper a.product_oos_add span {
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      color: #fff;
      display: block; }
@media (max-width: 992px) {
  .template-product .left_column.gallery .hero .slick-dots {
    padding: 25px 0 0 0; } }
@media (min-width: 992px) {
  .template-product .left_column.gallery .hero .slick-dots {
    display: none !important; } }
.template-product .title_radios_group.gift_card {
  max-width: 550px;
  display: block !important; }
  .template-product .title_radios_group.gift_card input[type=radio]:checked + span {
    background: #777873;
    color: #FFF; }
  .template-product .title_radios_group.gift_card input[type=radio] + span {
    width: 92px;
    height: 41px;
    font-size: 16px;
    text-transform: uppercase;
    background: #FFF;
    color: #666;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center; }
  .template-product .title_radios_group.gift_card.required input[type=radio] + span {
    border: 1px solid red;
    color: red; }
  .template-product .title_radios_group.gift_card label, .template-product .title_radios_group.gift_card a {
    position: relative;
    display: inline-block; }
    @media (min-width: 601px) {
      .template-product .title_radios_group.gift_card label, .template-product .title_radios_group.gift_card a {
        margin-bottom: 14px;
        margin-right: 10px; } }
    @media (max-width: 992px) {
      .template-product .title_radios_group.gift_card label, .template-product .title_radios_group.gift_card a {
        margin: 4px; } }
  .template-product .title_radios_group.gift_card input[type=radio] {
    display: none; }
  .template-product .title_radios_group.gift_card input[type=radio] + span {
    width: 92px;
    height: 41px;
    font-size: 16px;
    text-transform: uppercase;
    background: #FFF;
    color: #666;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center; }
  .template-product .title_radios_group.gift_card input[type=radio]:checked {
    box-shadow: 0 0 0 1px #f8f3f0, 0 0 0 2px #333; }
  .template-product .title_radios_group.gift_card input[type=radio]:checked + span {
    background: #777873;
    color: #FFF; }

div.yotpo.yotpo-main-widget.yotpo-small .yotpo-icon-btn .yotpo-icon-button-text, div.yotpo .yotpo-modal-dialog.yotpo-small .yotpo-icon-btn .yotpo-icon-button-text {
  display: inline-block;
  float: none; }

div.yotpo.yotpo-main-widget.yotpo-small .yotpo-label .yotpo-default-button, div.yotpo .yotpo-modal-dialog.yotpo-small .yotpo-label .yotpo-default-button {
  display: block;
  float: none;
  padding: 10px 15px; }

div.yotpo .yotpo-small-box {
  text-align: center;
  padding: 10px 28px 25px; }

div.yotpo .yotpo-default-button, div.yotpo input[type="button"].yotpo-default-button {
  font-size: 14px; }

/*========== Account Page Styles ==========*/
.show {
  display: block !important; }

.recover_password_link {
  margin: 1em 0; }
  @media (max-width: 992px) {
    .recover_password_link {
      font-size: 13px; } }
  .recover_password_link a:hover {
    text-decoration: underline; }

#RecoverPasswordForm, #ResetPasswordForm {
  width: 50%;
  margin: 0 auto 4em; }
  @media (max-width: 992px) {
    #RecoverPasswordForm, #ResetPasswordForm {
      width: 90vw; } }

.column_heading {
  margin-bottom: 30px; }
  @media (max-width: 992px) {
    .column_heading {
      margin-top: 30px;
      margin-bottom: 15px !important; } }

.large_button.pink {
  width: 50%; }

.wishlist_link_wrapper, .address_link_wrapper, .favorites_link_account {
  margin-top: 1em; }

@media (max-width: 992px) {
  .short {
    width: 100%; } }

.email_match, .password_match {
  display: none;
  color: #f00; }

.errors {
  line-height: 1.3; }
  .errors ul li a:hover {
    text-decoration: underline; }

.responsive-table {
  width: 100%;
  margin: 20px 0 40px; }
  @media (max-width: 600px) {
    .responsive-table {
      overflow-x: auto;
      overflow-x: scroll;
      font-size: 12px; } }
  .responsive-table thead {
    text-transform: uppercase;
    border-bottom: 1px solid #000; }
    @media (max-width: 736px) {
      .responsive-table thead {
        text-transform: capitalize; } }
  .responsive-table th {
    padding-bottom: 5px;
    font-weight: 600; }
  .responsive-table tbody .responsive-table-row:nth-child(even) {
    background-color: #fbe3e3; }
  .responsive-table tbody .responsive-table-row:last-child {
    border-bottom: 1px solid #000; }
  .responsive-table tbody td {
    padding: 10px 0; }
    @media (max-width: 600px) {
      .responsive-table tbody td {
        padding: 10px 2px; } }
  .responsive-table td {
    padding-top: 10px;
    text-align: center; }
    .responsive-table td[data-label="Order"] a {
      color: #f00; }
    .responsive-table td a:hover {
      text-decoration: underline; }

.shopify-challenge__container {
  margin: 40px auto !important; }

.shopify-challenge__container .shopify-challenge__button {
  background: #fbe3e3;
  width: 49.5%;
  max-width: 360px;
  border: none;
  border-radius: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0;
  color: #505050 !important;
  transition: all 0.4s ease-in-out;
  padding: 0;
  height: 80px; }

.shopify-challenge__error {
  color: #f00; }

body.template-login .content_switcher_module, body.template-register .content_switcher_module, body.template-account .content_switcher_module, body.template-addresses .content_switcher_module, body.template-activate_account .content_switcher_module, body.template-order .content_switcher_module, body.template-reset_password .content_switcher_module {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
  display: flex; }
  @media (max-width: 992px) {
    body.template-login .content_switcher_module, body.template-register .content_switcher_module, body.template-account .content_switcher_module, body.template-addresses .content_switcher_module, body.template-activate_account .content_switcher_module, body.template-order .content_switcher_module, body.template-reset_password .content_switcher_module {
      margin-bottom: 25px; } }
  @media (max-width: 600px) {
    body.template-login .content_switcher_module, body.template-register .content_switcher_module, body.template-account .content_switcher_module, body.template-addresses .content_switcher_module, body.template-activate_account .content_switcher_module, body.template-order .content_switcher_module, body.template-reset_password .content_switcher_module {
      margin-bottom: 0px; } }
body.template-login div.section_heading.account_title, body.template-register div.section_heading.account_title, body.template-account div.section_heading.account_title, body.template-addresses div.section_heading.account_title, body.template-activate_account div.section_heading.account_title, body.template-order div.section_heading.account_title, body.template-reset_password div.section_heading.account_title {
  border-bottom: none; }
  @media (max-width: 1440px) {
    body.template-login div.section_heading.account_title h2, body.template-register div.section_heading.account_title h2, body.template-account div.section_heading.account_title h2, body.template-addresses div.section_heading.account_title h2, body.template-activate_account div.section_heading.account_title h2, body.template-order div.section_heading.account_title h2, body.template-reset_password div.section_heading.account_title h2 {
      font-size: 13px;
      margin: 0; } }
  @media (max-width: 992px) {
    body.template-login div.section_heading.account_title, body.template-register div.section_heading.account_title, body.template-account div.section_heading.account_title, body.template-addresses div.section_heading.account_title, body.template-activate_account div.section_heading.account_title, body.template-order div.section_heading.account_title, body.template-reset_password div.section_heading.account_title {
      margin-top: 2vh; } }
body.template-login .column_heading, body.template-register .column_heading, body.template-account .column_heading, body.template-addresses .column_heading, body.template-activate_account .column_heading, body.template-order .column_heading, body.template-reset_password .column_heading {
  margin-bottom: 30px; }
  @media (max-width: 600px) {
    body.template-login .column_heading, body.template-register .column_heading, body.template-account .column_heading, body.template-addresses .column_heading, body.template-activate_account .column_heading, body.template-order .column_heading, body.template-reset_password .column_heading {
      font-size: 13px;
      margin-bottom: 0; } }
body.template-login .input_buttons_list, body.template-register .input_buttons_list, body.template-account .input_buttons_list, body.template-addresses .input_buttons_list, body.template-activate_account .input_buttons_list, body.template-order .input_buttons_list, body.template-reset_password .input_buttons_list {
  display: flex;
  justify-content: space-between; }
body.template-login .large_button, body.template-register .large_button, body.template-account .large_button, body.template-addresses .large_button, body.template-activate_account .large_button, body.template-order .large_button, body.template-reset_password .large_button {
  width: 49.5%;
  max-width: 360px; }
body.template-login .account_form, body.template-register .account_form, body.template-account .account_form, body.template-addresses .account_form, body.template-activate_account .account_form, body.template-order .account_form, body.template-reset_password .account_form {
  width: 100%;
  margin: 0 4%; }
  @media (max-width: 736px), (max-width: 1024px) {
    body.template-login .account_form, body.template-register .account_form, body.template-account .account_form, body.template-addresses .account_form, body.template-activate_account .account_form, body.template-order .account_form, body.template-reset_password .account_form {
      width: 91.5vw; } }
body.template-login .form_control, body.template-register .form_control, body.template-account .form_control, body.template-addresses .form_control, body.template-activate_account .form_control, body.template-order .form_control, body.template-reset_password .form_control {
  margin: 0 0 5% 0; }
  body.template-login .form_control p, body.template-register .form_control p, body.template-account .form_control p, body.template-addresses .form_control p, body.template-activate_account .form_control p, body.template-order .form_control p, body.template-reset_password .form_control p {
    font-size: 16px; }
    @media (max-width: 1440px) {
      body.template-login .form_control p, body.template-register .form_control p, body.template-account .form_control p, body.template-addresses .form_control p, body.template-activate_account .form_control p, body.template-order .form_control p, body.template-reset_password .form_control p {
        font-size: 11px; } }
  @media (max-width: 1024px) and (orientation: portrait) {
    body.template-login .form_control .large_button.grey, body.template-login .form_control .large_button.pink, body.template-register .form_control .large_button.grey, body.template-register .form_control .large_button.pink, body.template-account .form_control .large_button.grey, body.template-account .form_control .large_button.pink, body.template-addresses .form_control .large_button.grey, body.template-addresses .form_control .large_button.pink, body.template-activate_account .form_control .large_button.grey, body.template-activate_account .form_control .large_button.pink, body.template-order .form_control .large_button.grey, body.template-order .form_control .large_button.pink, body.template-reset_password .form_control .large_button.grey, body.template-reset_password .form_control .large_button.pink {
      font-size: 0.8em; } }
body.template-login select, body.template-register select, body.template-account select, body.template-addresses select, body.template-activate_account select, body.template-order select, body.template-reset_password select {
  width: 100%;
  height: 40px;
  font-size: 1em;
  background-color: transparent; }

@media (max-width: 1024px) {
  body.template-account div.content_switcher_module {
    display: block; } }
@media (min-width: 1025px) {
  body.template-account .section_heading.account_details {
    width: 25%; } }
body.template-account .section_heading.account_details a {
  text-transform: uppercase; }
  body.template-account .section_heading.account_details a:hover {
    text-decoration: underline; }
@media (max-width: 1024px) and (orientation: portrait) {
  body.template-account .section_heading.account_details .address_link_wrapper, body.template-account .section_heading.account_details .wishlist_link_wrapper {
    text-align: center; } }

body.template-addresses .def_address {
  text-align: left; }
  @media (max-width: 736px) {
    body.template-addresses .def_address {
      margin: 2em 0 0 0; } }
@media (max-width: 736px) {
  body.template-addresses .input_buttons_list.new_address_buttons button, body.template-addresses .input_buttons_list.edit_address_buttons button {
    width: 49%;
    margin: 0 auto;
    padding: 0;
    display: table-cell;
    vertical-align: middle; } }

@media (max-width: 992px) {
  body.template-order div.content_switcher_module {
    display: block; } }
@media (max-width: 736px) and (orientation: landscape) {
  body.template-order div.content_switcher_module {
    margin: 0; } }
body.template-order div.content_switcher_module.order_details_wrapper {
  max-width: 1400px; }
  @media (min-width: 1921px) {
    body.template-order div.content_switcher_module.order_details_wrapper {
      max-width: 2330px; } }
  @media (min-width: 768px) and (orientation: portrait) {
    body.template-order div.content_switcher_module.order_details_wrapper {
      max-width: 700px; } }
  @media (max-width: 1024px) and (orientation: landscape) {
    body.template-order div.content_switcher_module.order_details_wrapper {
      max-width: 950px; } }
  @media (max-width: 736px) and (orientation: landscape) {
    body.template-order div.content_switcher_module.order_details_wrapper {
      max-width: 95vw;
      margin: 0 auto; } }
@media (max-width: 1024px), (max-width: 1024px) and (orientation: landscape) {
  body.template-order div.section_heading p {
    height: auto;
    place-content: center;
    margin-top: 2vh; } }
body.template-order div.section_heading.order_details {
  width: 80%;
  margin-top: 0; }
  @media (max-width: 1024px) and (orientation: landscape) {
    body.template-order div.section_heading.order_details {
      margin: 0 20px; } }
  @media (max-width: 1024px) {
    body.template-order div.section_heading.order_details {
      width: 100%; } }
  @media (max-width: 736px) {
    body.template-order div.section_heading.order_details {
      width: 90vw; } }
body.template-order div.section_heading.order_title h2, body.template-order div.section_heading.order_title p {
  text-align: center;
  margin-bottom: 0; }
@media (max-width: 1024px) {
  body.template-order div.section_heading.order_title h2 {
    background-color: initial;
    color: #000; } }
@media (max-width: 736px) {
  body.template-order div.section_heading.order_title h2 {
    margin-top: 4vh; } }
@media (max-width: 1024px) {
  body.template-order div.section_heading.order_title p {
    height: auto;
    display: block;
    text-align: center;
    margin: 0; } }
@media (min-width: 768px) {
  body.template-order div.section_heading.order_history {
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto; } }
body.template-order div.section_heading.billing_details, body.template-order div.section_heading.shipping_details {
  width: 100%;
  margin-top: 0; }
  @media (max-width: 736px) {
    body.template-order div.section_heading.billing_details h2, body.template-order div.section_heading.shipping_details h2 {
      margin-top: 3vh; } }
  body.template-order div.section_heading.billing_details p, body.template-order div.section_heading.shipping_details p {
    text-transform: capitalize;
    margin: 20px 0 0; }
body.template-order .responsive-table thead {
  text-align: left; }
  @media (max-width: 992px) {
    body.template-order .responsive-table thead {
      text-align: center; } }
  body.template-order .responsive-table thead th:first-child {
    padding-left: 10px; }
body.template-order .responsive-table tbody td {
  text-align: left; }
  @media (max-width: 1024px) {
    body.template-order .responsive-table tbody td:nth-child(4) {
      text-align: center; } }
  body.template-order .responsive-table tbody td:first-child {
    padding-left: 10px; }
body.template-order .responsive-table tfoot td {
  text-align: left; }
  body.template-order .responsive-table tfoot td:first-child {
    padding-left: 10px; }

@media (min-width: 1921px) {
  body.template-login .section_heading, body.template-register .section_heading {
    margin: 49px auto 80px; }
  body.template-login .column_heading, body.template-register .column_heading {
    margin-bottom: 50px; }
  body.template-login .account_form.sign_in, body.template-register .account_form.sign_in {
    margin: 0 50px 0 280px; }
  body.template-login .account_form.create_account, body.template-register .account_form.create_account {
    margin: 0 280px 0 50px; }
    body.template-login .account_form.create_account .text_input_item:nth-child(odd), body.template-register .account_form.create_account .text_input_item:nth-child(odd) {
      margin-right: 15px; }
  body.template-login .form_control, body.template-register .form_control {
    margin: 0; }
    body.template-login .form_control h4, body.template-register .form_control h4 {
      margin-bottom: 30px; }
    body.template-login .form_control p, body.template-register .form_control p {
      font-size: 1.1em; }
    body.template-login .form_control .text_input_item, body.template-register .form_control .text_input_item {
      margin-bottom: 30px; }
      body.template-login .form_control .text_input_item label, body.template-register .form_control .text_input_item label {
        margin-bottom: 15px; }
      body.template-login .form_control .text_input_item input, body.template-register .form_control .text_input_item input {
        height: 55px; }
  body.template-login #customer_login, body.template-login #create_customer, body.template-register #customer_login, body.template-register #create_customer {
    min-width: 930px; }
  body.template-login .input_buttons_list, body.template-register .input_buttons_list {
    justify-content: initial; }
  body.template-login .large_button.pink, body.template-register .large_button.pink {
    margin-right: 15px; }
  body.template-login .large_button, body.template-register .large_button {
    max-width: 400px; }
  body.template-login .short, body.template-register .short {
    width: 48.5%; }
  body.template-login .content_switcher_module, body.template-register .content_switcher_module {
    margin-bottom: 90px; } }
body.template-login .subtext, body.template-register .subtext {
  min-height: 60px; }
  @media (max-width: 1440px) {
    body.template-login .subtext, body.template-register .subtext {
      min-height: 30px; } }

body.template-addresses .content_switcher_module, body.template-activate_account .content_switcher_module {
  display: block;
  margin: 5%; }
body.template-addresses .account_form, body.template-activate_account .account_form {
  width: 50%;
  margin: 0 auto; }
  @media (max-width: 768px) {
    body.template-addresses .account_form, body.template-activate_account .account_form {
      width: 100%; } }
body.template-addresses .def_address, body.template-activate_account .def_address {
  text-transform: uppercase; }
body.template-addresses .section_heading p, body.template-activate_account .section_heading p {
  margin-bottom: 0; }
  @media (max-width: 1024px) {
    body.template-addresses .section_heading p, body.template-activate_account .section_heading p {
      height: auto;
      place-content: center;
      margin-top: 2vh; } }
body.template-addresses .input_buttons_list, body.template-activate_account .input_buttons_list {
  margin-top: 18px; }
body.template-addresses .address_edit_buttons, body.template-activate_account .address_edit_buttons {
  margin: 2% 0; }

body.template-account .account_form p, body.template-addresses .account_form p, body.template-order .account_form p {
  text-transform: initial; }
body.template-account .section_heading, body.template-addresses .section_heading, body.template-order .section_heading {
  border-bottom: initial; }
  body.template-account .section_heading p, body.template-addresses .section_heading p, body.template-order .section_heading p {
    border-bottom: initial;
    justify-content: flex-start; }
    @media (max-width: 992px) and (orientation: portrait) {
      body.template-account .section_heading p, body.template-addresses .section_heading p, body.template-order .section_heading p {
        height: 10vh; } }
    @media (max-width: 992px) and (orientation: landscape) {
      body.template-account .section_heading p, body.template-addresses .section_heading p, body.template-order .section_heading p {
        height: 30vh; } }
    @media (max-width: 736px) and (orientation: portrait) {
      body.template-account .section_heading p, body.template-addresses .section_heading p, body.template-order .section_heading p {
        height: 20vh; } }
body.template-account #customer_logout_link, body.template-account #customer_account_return, body.template-addresses #customer_logout_link, body.template-addresses #customer_account_return, body.template-order #customer_logout_link, body.template-order #customer_account_return {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1% auto;
  text-transform: uppercase; }
  body.template-account #customer_logout_link:hover, body.template-account #customer_account_return:hover, body.template-addresses #customer_logout_link:hover, body.template-addresses #customer_account_return:hover, body.template-order #customer_logout_link:hover, body.template-order #customer_account_return:hover {
    text-decoration: underline; }
body.template-account .section_heading, body.template-addresses .section_heading, body.template-order .section_heading {
  margin-bottom: 0; }
  body.template-account .section_heading h2, body.template-addresses .section_heading h2, body.template-order .section_heading h2 {
    font-size: 1.3em; }
  body.template-account .section_heading p, body.template-addresses .section_heading p, body.template-order .section_heading p {
    font-size: 1em; }
  body.template-account .section_heading h2, body.template-account .section_heading p, body.template-addresses .section_heading h2, body.template-addresses .section_heading p, body.template-order .section_heading h2, body.template-order .section_heading p {
    text-align: left;
    margin-top: 20px; }
body.template-account .desktop_header_main_row .nav .nav_dropdown_menu, body.template-addresses .desktop_header_main_row .nav .nav_dropdown_menu, body.template-order .desktop_header_main_row .nav .nav_dropdown_menu {
  top: 136px; }

@media (min-width: 768px) and (max-width: 1024px) {
  body.template-addresses .def_address {
    text-align: left;
    margin: 0 auto; }

  body.template-account .section_heading h2, body.template-addresses .section_heading h2 {
    text-align: center; } }
@media (max-width: 736px) {
  body.template-login .content_switcher_module, body.template-register .content_switcher_module, body.template-account .content_switcher_module, body.template-addresses .content_switcher_module, body.template-activate_account .content_switcher_module, body.template-order .content_switcher_module {
    display: block; }
  body.template-login .short, body.template-register .short, body.template-account .short, body.template-addresses .short, body.template-activate_account .short, body.template-order .short {
    width: 100%; }
  body.template-login .form_control, body.template-register .form_control, body.template-account .form_control, body.template-addresses .form_control, body.template-activate_account .form_control, body.template-order .form_control {
    margin-top: 15px; }
    body.template-login .form_control .small_button, body.template-register .form_control .small_button, body.template-account .form_control .small_button, body.template-addresses .form_control .small_button, body.template-activate_account .form_control .small_button, body.template-order .form_control .small_button {
      height: 50px;
      width: 100%;
      margin: 1% 0; }
  body.template-login .section_heading, body.template-register .section_heading, body.template-account .section_heading, body.template-addresses .section_heading, body.template-activate_account .section_heading, body.template-order .section_heading {
    display: block;
    margin-bottom: 0; }
    body.template-login .section_heading.account_form, body.template-register .section_heading.account_form, body.template-account .section_heading.account_form, body.template-addresses .section_heading.account_form, body.template-activate_account .section_heading.account_form, body.template-order .section_heading.account_form {
      width: initial; }
      body.template-login .section_heading.account_form h2, body.template-register .section_heading.account_form h2, body.template-account .section_heading.account_form h2, body.template-addresses .section_heading.account_form h2, body.template-activate_account .section_heading.account_form h2, body.template-order .section_heading.account_form h2 {
        margin: 0; }
    body.template-login .section_heading h1, body.template-login .section_heading h2, body.template-register .section_heading h1, body.template-register .section_heading h2, body.template-account .section_heading h1, body.template-account .section_heading h2, body.template-addresses .section_heading h1, body.template-addresses .section_heading h2, body.template-activate_account .section_heading h1, body.template-activate_account .section_heading h2, body.template-order .section_heading h1, body.template-order .section_heading h2 {
      margin: 0 4%;
      font-size: 1.3em; }
    body.template-login .section_heading p, body.template-register .section_heading p, body.template-account .section_heading p, body.template-addresses .section_heading p, body.template-activate_account .section_heading p, body.template-order .section_heading p {
      border-bottom: initial; }
  body.template-login #customer_account_return, body.template-register #customer_account_return, body.template-account #customer_account_return, body.template-addresses #customer_account_return, body.template-activate_account #customer_account_return, body.template-order #customer_account_return {
    width: 100%; }
  body.template-login #customer_account_return, body.template-login #customer_logout_link, body.template-register #customer_account_return, body.template-register #customer_logout_link, body.template-account #customer_account_return, body.template-account #customer_logout_link, body.template-addresses #customer_account_return, body.template-addresses #customer_logout_link, body.template-activate_account #customer_account_return, body.template-activate_account #customer_logout_link, body.template-order #customer_account_return, body.template-order #customer_logout_link {
    margin: 5% auto; }
  body.template-login #view_address_link, body.template-register #view_address_link, body.template-account #view_address_link, body.template-addresses #view_address_link, body.template-activate_account #view_address_link, body.template-order #view_address_link {
    position: relative; }

  body.template-addresses .large_button, body.template-activate_account .large_button {
    width: initial;
    padding: 5%; }
  body.template-addresses .small_button, body.template-activate_account .small_button {
    width: initial;
    max-width: 360px; }
  body.template-addresses .short, body.template-activate_account .short {
    width: 100%; }

  body.template-activate_account .large_button {
    width: 49.5%;
    font-size: 15px; } }
.newsletter-register {
  margin: 0 0 15px 0; }

/*========== Cart Page Styles ==========*/
@media (max-width: 736px) {
  body.template-cart .template_content .checkout_column .canadian-shipping, body.template-cart .template_content .checkout_column .us-shipping {
    display: none; } }
@media (max-width: 736px) {
  body.template-cart .template_content .checkout_column .summary_totals {
    margin-left: 0;
    text-align: center; } }
body.template-cart div.note_wrapper_mobile {
  display: none; }
  @media (max-width: 992px) {
    body.template-cart div.note_wrapper_mobile {
      display: block; } }
  @media (max-width: 1024px) {
    body.template-cart div.note_wrapper_mobile .coupon_heading_mobile {
      font-size: 13px;
      text-transform: uppercase;
      text-align: center;
      margin: 3em auto 0.5em;
      font-weight: 900; } }
  @media (max-width: 1024px) {
    body.template-cart div.note_wrapper_mobile p.coupon_subtext_mobile {
      font-size: 13px;
      margin-bottom: 1.5em; } }
  @media (max-width: 1024px) {
    body.template-cart div.note_wrapper_mobile #discount-code-mobile {
      border: 1px solid #000;
      border-radius: initial; } }
  body.template-cart div.note_wrapper_mobile .right_col p {
    padding: 0; }
body.template-cart #shopify-section-cart .page_title {
  border-bottom: none; }
  @media (max-width: 1024px) {
    body.template-cart #shopify-section-cart .page_title.yal_title h2, body.template-cart #shopify-section-cart .page_title.esc_offersTitleCustom h2 {
      background: initial;
      color: #000; } }
  @media (max-width: 1440px) {
    body.template-cart #shopify-section-cart .page_title.yal_title h2, body.template-cart #shopify-section-cart .page_title.esc_offersTitleCustom h2 {
      font-size: 13px; } }
  body.template-cart #shopify-section-cart .page_title.section_heading {
    max-width: 100%; }
    @media (max-width: 992px) {
      body.template-cart #shopify-section-cart .page_title.section_heading {
        margin: 73px auto 20px; } }
    @media (max-width: 600px) {
      body.template-cart #shopify-section-cart .page_title.section_heading {
        margin: 0 auto 20px; } }
    body.template-cart #shopify-section-cart .page_title.section_heading h2 {
      font-size: 28px; }
      @media (max-width: 1440px) and (min-width: 992px) {
        body.template-cart #shopify-section-cart .page_title.section_heading h2 {
          font-size: 16px; } }
      @media (min-width: 1920px) {
        body.template-cart #shopify-section-cart .page_title.section_heading h2 {
          font-size: 28px; } }
      @media (max-width: 992px) {
        body.template-cart #shopify-section-cart .page_title.section_heading h2 {
          font-size: 13px; } }
@media (min-width: 2560px) {
  body.template-cart #shopify-section-cart .container {
    width: 100%;
    max-width: 2330px;
    margin: 0 auto; } }
@media (min-width: 1920px) {
  body.template-cart #shopify-section-cart .container {
    margin: 0 auto; } }
@media (min-width: 736px) {
  body.template-cart #shopify-section-cart .summary_totals_wrapper {
    border-bottom: 1px solid #333; } }
body.template-cart #shopify-section-cart .variant_title {
  text-transform: uppercase; }
body.template-cart #shopify-section-cart .cart_form_table .update {
  border: initial;
  background: initial;
  font-size: 0.8em;
  font-family: inherit;
  padding: 10% 0;
  text-transform: uppercase; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    body.template-cart #shopify-section-cart .cart_form_table .update {
      background-color: transparent;
      border: none; } }
  body.template-cart #shopify-section-cart .cart_form_table .update:hover {
    text-decoration: underline; }
@media (max-width: 768px) and (orientation: portrait) {
  body.template-cart #shopify-section-cart .cart_form_table div.tbody {
    margin-bottom: 0; } }
@media (max-width: 992px) {
  body.template-cart #shopify-section-cart .cart_form_table div.tbody {
    margin-bottom: 0; } }
@media (max-width: 1024px) and (orientation: landscape) {
  body.template-cart #shopify-section-cart .cart_note_row {
    display: block; }
    body.template-cart #shopify-section-cart .cart_note_row .left_col, body.template-cart #shopify-section-cart .cart_note_row .right_col {
      width: 100%; } }
body.template-cart #discount-code, body.template-cart #discount-code-mobile {
  height: 50px;
  width: 300px;
  font: inherit;
  padding-left: 1em;
  border: 1px solid #000;
  border-radius: initial; }
body.template-cart .right_col p {
  padding-left: 2em; }
  @media (max-width: 1024px) and (orientation: landscape) {
    body.template-cart .right_col p {
      padding-left: 0; } }
body.template-cart .checkout_buttons_wrapper {
  max-width: 525px;
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 736px) {
    body.template-cart .checkout_buttons_wrapper {
      text-align: center; } }
@media (max-width: 992px) {
  body.template-cart .large_button.solid_grey.checkout_button {
    margin: 0 auto 15px;
    padding: 0;
    display: table-cell;
    vertical-align: middle; } }
body.template-cart .additional-checkout-button {
  height: 45px !important;
  min-width: 49% !important;
  margin-bottom: 0; }
  body.template-cart .additional-checkout-button + .additional-checkout-button {
    margin-left: 0; }
body.template-cart .additional-checkout-buttons {
  margin: 20px 0; }
  body.template-cart .additional-checkout-buttons button {
    height: 55px;
    vertical-align: top;
    display: inline-block; }
  body.template-cart .additional-checkout-buttons #paypal-express-button {
    border-radius: initial !important;
    margin-right: 2%;
    background: #cccccc;
    background: -moz-linear-gradient(top, #cccccc 0%, #909090 100%);
    background: -webkit-linear-gradient(top, #cccccc 0%, #909090 100%);
    background: linear-gradient(to bottom, #cccccc 0%, #909090 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#909090',GradientType=0 ); }
    body.template-cart .additional-checkout-buttons #paypal-express-button img {
      height: 2.3em !important; }
  body.template-cart .additional-checkout-buttons .amazon-payments-pay-button {
    margin-left: 0;
    background: #ffffff;
    background: -moz-linear-gradient(top, white 0%, #cccccc 100%);
    background: -webkit-linear-gradient(top, white 0%, #cccccc 100%);
    background: linear-gradient(to bottom, white 0%, #cccccc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc',GradientType=0 );
    border: 2px solid #ddd !important; }
    @media (max-width: 736px) {
      body.template-cart .additional-checkout-buttons .amazon-payments-pay-button {
        max-width: 100%;
        margin-top: 10px; } }
@media (max-width: 1024px) and (orientation: landscape) {
  body.template-cart .note_wrapper {
    margin-top: 30px; } }
@media (max-width: 992px) {
  body.template-cart .note_wrapper {
    display: none; } }
@media (min-width: 768px) {
  body.template-cart .note_wrapper #discount-code {
    width: 100% !important; } }
body.template-cart #esc_cartOffers {
  position: relative; }
@media (max-width: 1440px) and (min-width: 992px) {
  body.template-cart .esc_offersTitleCustom h2, body.template-cart .yal_title h2 {
    font-size: 16px; } }
@media (max-width: 992px) {
  body.template-cart .esc_offersTitleCustom h2, body.template-cart .yal_title h2 {
    font-size: 13px; } }
@media (min-width: 1920px) {
  body.template-cart .esc_offersTitleCustom h2, body.template-cart .yal_title h2 {
    font-size: 28px; } }
body.template-cart .esc_offersTitleCustom {
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid black;
  margin: 0 auto 25px;
  line-height: 2; }
body.template-cart .esc_productsContainer {
  width: 100%;
  margin: 0 auto; }
body.template-cart .esc_product {
  width: 20%;
  text-align: center; }
body.template-cart .esc_productImage {
  max-width: 370px; }
body.template-cart .esc_offerTitle {
  margin: 25px 0px 15px; }
body.template-cart .esc_addOfferProduct {
  display: none; }
body.template-cart select.esc_variantsDropdown {
  width: 35% !important;
  display: inline-block;
  background-color: initial;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: -55px;
  text-overflow: clip;
  font: inherit; }
  body.template-cart select.esc_variantsDropdown option.esc_offerVariant {
    display: none; }
  @media (max-width: 736px) {
    body.template-cart select.esc_variantsDropdown {
      width: 45% !important; } }
body.template-cart .mobile_qty {
  display: none; }
  @media (max-width: 736px) {
    body.template-cart .mobile_qty {
      display: inline-block; } }
body.template-cart .qty {
  text-align: center;
  border: 1px solid #000;
  font: inherit; }
body.template-cart .cross-sell .prod-caption a {
  font-size: 16px;
  line-height: 24px; }
  @media (max-width: 1440px) {
    body.template-cart .cross-sell .prod-caption a {
      font-size: 13px;
      line-height: 16px; } }
body.template-cart .hidden {
  visibility: hidden !important;
  display: initial !important; }
body.template-cart .empty {
  border-bottom: initial; }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .empty p {
      font-size: 13px;
      line-height: 15.6px; } }
  body.template-cart .empty.first {
    margin-bottom: 0; }
    @media (max-width: 1024px) {
      body.template-cart .empty.first {
        margin-top: 30px; } }
  body.template-cart .empty.second {
    margin: 10px 0; }
    @media (max-width: 1024px) and (orientation: portrait) {
      body.template-cart .empty.second {
        margin: 0; } }
  body.template-cart .empty.last {
    margin-top: 0;
    text-decoration: underline; }
    body.template-cart .empty.last:hover {
      opacity: 0.7; }
body.template-cart .section_heading.yal_title {
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid black;
  margin: 0 auto 25px;
  line-height: 2; }
body.template-cart .section_heading p {
  font-size: 16px; }
  @media (max-width: 1440px) {
    body.template-cart .section_heading p {
      font-size: 13px; } }
@media (max-width: 1440px) and (min-width: 992px) {
  body.template-cart .slick-slide .producttitle {
    font-size: 13px;
    line-height: 15.6px; } }

body.template-cart .template_content {
  color: inherit; }

body.template-cart .template_content .page_heading {
  color: inherit; }

body.template-cart .template_content .page_heading h1,
body.template-cart .template_content .page_heading .h1 {
  color: inherit; }

body.template-cart .template_content .page_heading h4,
body.template-cart .template_content .page_heading .h4 {
  text-transform: uppercase;
  letter-spacing: 0.1px;
  margin-bottom: 40px;
  color: #444444; }

body.template-cart .template_content .cart_form_row {
  display: flex;
  justify-content: center;
  margin-bottom: 60px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .cart_form_row {
      flex-wrap: wrap; } }

body.template-cart .template_content .cart_form_row > .cart_form_left_col {
  max-width: 745px;
  width: 50%;
  margin-right: 10%; }
  @media (max-width: 736px) {
    body.template-cart .template_content .cart_form_row > .cart_form_left_col {
      border-bottom: 1px solid #000; } }
  @media (max-width: 992px) {
    body.template-cart .template_content .cart_form_row > .cart_form_left_col {
      width: 100%;
      margin: 0;
      margin-top: 10px; } }
  @media (min-width: 2560px) {
    body.template-cart .template_content .cart_form_row > .cart_form_left_col {
      width: 100%; } }

body.template-cart .template_content .cart_form_row > .cart_form_right_col {
  max-width: 440px;
  width: 33%; }
  @media (max-width: 992px) {
    body.template-cart .template_content .cart_form_row > .cart_form_right_col {
      max-width: none;
      width: 100%; } }
  @media (max-width: 736px) {
    body.template-cart .template_content .cart_form_row > .cart_form_right_col {
      margin-top: 0; } }
  @media (min-width: 2560px) {
    body.template-cart .template_content .cart_form_row > .cart_form_right_col {
      width: 100%; } }

body.template-cart .template_content .table.cart_form_table * {
  font-size: 16px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table * {
      font-size: 13px; } }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .table.cart_form_table * {
      font-size: 13px; } }

body.template-cart .template_content .table.cart_form_table .product_title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1em; }
  @media (max-width: 736px) {
    body.template-cart .template_content .table.cart_form_table .product_title {
      margin-bottom: 7px; } }

body.template-cart .template_content .table.cart_form_table .meta {
  margin-bottom: 33px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .meta {
      margin-bottom: 22px; } }
  @media (max-width: 736px) {
    body.template-cart .template_content .table.cart_form_table .meta {
      margin-bottom: 4px; } }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .meta h4 {
    font-size: 11px; } }

body.template-cart .template_content .table.cart_form_table .actions * {
  font-size: 15px;
  color: #666;
  line-height: 1.4; }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .actions * {
      font-size: 11.5px; } }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .actions * {
      font-size: 13px; } }

body.template-cart .template_content .table.cart_form_table .actions .remove_link {
  text-transform: uppercase;
  text-decoration: underline; }

body.template-cart .template_content .table.cart_form_table .actions span {
  display: inline-block;
  margin: 0 5px; }

body.template-cart .template_content .table.cart_form_table .thead {
  color: inherit;
  border-bottom: 1px solid #333;
  display: flex; }
  @media (min-width: 1024px) {
    body.template-cart .template_content .table.cart_form_table .thead .th.first {
      width: 134px;
      max-width: 176px; } }
  @media (min-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .thead .th.second {
      max-width: 330px;
      min-width: 130px;
      width: 100%; } }
  body.template-cart .template_content .table.cart_form_table .thead .th.third, body.template-cart .template_content .table.cart_form_table .thead .th.fourth, body.template-cart .template_content .table.cart_form_table .thead .th.last {
    width: 70px;
    min-width: 55px;
    text-align: center;
    text-decoration: none; }
    body.template-cart .template_content .table.cart_form_table .thead .th.third:hover, body.template-cart .template_content .table.cart_form_table .thead .th.fourth:hover, body.template-cart .template_content .table.cart_form_table .thead .th.last:hover {
      opacity: initial; }
  @media (max-width: 736px) {
    body.template-cart .template_content .table.cart_form_table .thead {
      display: none; } }

body.template-cart .template_content .table.cart_form_table .tbody {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column; }
  @media (max-width: 736px) {
    body.template-cart .template_content .table.cart_form_table .tbody {
      border-color: transparent; } }

body.template-cart .template_content .table.cart_form_table .th {
  font-weight: normal;
  font-size: 16px;
  padding: 0 10px 7px 10px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .th {
      font-size: 14px;
      padding: 5px 0;
      font-weight: 500; } }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .th {
      font-size: 13px; } }

body.template-cart .template_content .table.cart_form_table .th:nth-child(1),
body.template-cart .template_content .table.cart_form_table .td:nth-child(1) {
  color: inherit;
  padding-left: 0; }
  @media (min-width: 737px) {
    body.template-cart .template_content .table.cart_form_table .th:nth-child(1),
    body.template-cart .template_content .table.cart_form_table .td:nth-child(1) {
      width: 134px;
      margin-right: 70px; } }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .th:nth-child(1),
    body.template-cart .template_content .table.cart_form_table .td:nth-child(1) {
      width: auto; } }

body.template-cart .template_content .table.cart_form_table .th:nth-child(2),
body.template-cart .template_content .table.cart_form_table .td:nth-child(2) {
  color: inherit; }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .th:nth-child(2),
    body.template-cart .template_content .table.cart_form_table .td:nth-child(2) {
      max-width: 320px;
      min-width: 130px;
      width: 100%; } }

body.template-cart .template_content .table.cart_form_table .th:nth-child(3) {
  color: inherit; }

body.template-cart .template_content .table.cart_form_table .th:nth-child(4) {
  color: inherit; }

body.template-cart .template_content .table.cart_form_table .th:nth-child(5) {
  color: inherit; }

body.template-cart .template_content .table.cart_form_table .tr {
  width: 100%;
  display: flex; }
  @media (max-width: 736px) {
    body.template-cart .template_content .table.cart_form_table .tr {
      justify-content: flex-start;
      flex-wrap: wrap; } }

body.template-cart .template_content .table.cart_form_table .thead .tr {
  height: auto; }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .tbody .tr {
    display: block; } }

body.template-cart .template_content .table.cart_form_table .td {
  color: inherit;
  padding: 10px; }
  body.template-cart .template_content .table.cart_form_table .td.second {
    max-width: 330px;
    min-width: 130px;
    width: 100%; }
  body.template-cart .template_content .table.cart_form_table .td.third, body.template-cart .template_content .table.cart_form_table .td.fourth, body.template-cart .template_content .table.cart_form_table .td.last {
    width: 70px;
    min-width: 55px;
    text-align: center; }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(1) {
    width: 87px;
    float: left; } }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(2) {
    width: auto;
    padding-right: 0; } }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(3) {
    float: left;
    width: auto;
    padding-left: 0 !important;
    display: none; } }

@media (max-width: 736px) {
  span.onlyMobileDisplay {
    display: block !important;
    float: left; } }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(4) {
    display: none; } }

@media (max-width: 736px) {
  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(5) {
    float: left;
    width: auto;
    text-align: left; } }

body.template-cart .template_content .table.cart_form_table .td:nth-child(1) img {
  max-width: 100%; }
  @media (max-width: 992px) {
    body.template-cart .template_content .table.cart_form_table .td:nth-child(1) img {
      max-height: 132px; } }

body.template-cart .template_content .cart_note_row {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .cart_note_row {
      display: none; } }

body.template-cart .template_content .cart_note_row .left_col,
body.template-cart .template_content .cart_note_row .right_col {
  color: inherit;
  width: 50%; }

body.template-cart .template_content .cart_note_row .left_col {
  color: inherit;
  max-width: 460px; }

body.template-cart .template_content .cart_note_row .right_col {
  color: inherit;
  max-width: 490px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .cart_note_row .right_col {
      width: 40%; } }

body.template-cart .template_content .cart_note_row h2 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #333; }
  @media (max-width: 1440px) and (min-width: 736px) {
    body.template-cart .template_content .cart_note_row h2 {
      font-size: 13px; } }

body.template-cart .template_content .cart_note_row p {
  line-height: 1.4;
  font-size: 14px; }
  @media (max-width: 1440px) and (min-width: 736px) {
    body.template-cart .template_content .cart_note_row p {
      font-size: 13px; } }
  @media (max-width: 1024px) and (orientation: landscape) {
    body.template-cart .template_content .cart_note_row p {
      margin-bottom: 1.5em; } }

body.template-cart .template_content .cart_note_row textarea {
  display: block;
  border: 1px solid #CCC;
  border-radius: 0;
  resize: none;
  width: 100%;
  height: 68px; }

body.template-cart .template_content .checkout_column {
  color: inherit;
  display: flex;
  flex-direction: column; }

body.template-cart .template_content .checkout_column h3,
body.template-cart .template_content .checkout_column .h3 {
  color: inherit;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #333;
  padding-bottom: 7px; }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .checkout_column h3,
    body.template-cart .template_content .checkout_column .h3 {
      font-size: 13px; } }

@media (max-width: 992px) {
  body.template-cart .template_content .checkout_column h3 {
    display: none; } }
body.template-cart .template_content .checkout_column .summary_totals {
  width: 100%;
  color: inherit;
  padding-top: 11px;
  padding-bottom: 16px;
  text-transform: uppercase;
  margin-left: 22.72727%; }
  @media (max-width: 1024px) {
    body.template-cart .template_content .checkout_column .summary_totals {
      border-bottom: none; } }

body.template-cart .template_content .checkout_column .summary_totals * {
  font-weight: bold; }

body.template-cart .template_content .checkout_column .summary_totals div {
  display: inline-flex;
  flex-direction: column;
  width: 25%; }
  body.template-cart .template_content .checkout_column .summary_totals div.left {
    text-align: left; }
    @media (max-width: 736px) {
      body.template-cart .template_content .checkout_column .summary_totals div.left {
        width: auto; } }
  body.template-cart .template_content .checkout_column .summary_totals div.right {
    text-align: right; }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column .summary_totals div {
      text-align: right; } }

body.template-cart .template_content .checkout_column .summary_totals span {
  font-size: 14px;
  line-height: 28px; }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .checkout_column .summary_totals span {
      font-size: 13px; } }

body.template-cart .template_content .checkout_column .summary_totals span:nth-of-type(2) {
  line-height: 1.4; }

body.template-cart .template_content .checkout_column .shipping_offer {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  margin: 20px 0;
  margin-bottom: 30px; }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .checkout_column .shipping_offer {
      font-size: 13px; } }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column .shipping_offer {
      font-size: 1em; } }

body.template-cart .template_content .checkout_column .shipping_offer strong {
  color: pink;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px; }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .checkout_column .shipping_offer strong {
      font-size: 13px; } }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column .shipping_offer strong {
      color: #000;
      font-weight: normal;
      font-size: 1em; } }
  @media (max-width: 736px) {
    body.template-cart .template_content .checkout_column .shipping_offer strong {
      font-size: 1em;
      margin: 0;
      margin-left: 1px; } }

@media (max-width: 992px) {
  body.template-cart .template_content .checkout_column .shipping_offer span.us-only {
    display: none; } }

body.template-cart .template_content .checkout_column .large_button {
  height: 82px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  border: 0;
  background: none;
  text-transform: uppercase;
  font-size: 16px; }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column .large_button {
      max-width: 100%;
      height: 50px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 10px; } }

body.template-cart .template_content .checkout_column .large_button.solid_grey {
  background: #EEE;
  color: #666;
  font: inherit; }
  @media (max-width: 1440px) {
    body.template-cart .template_content .checkout_column .large_button.solid_grey {
      font-size: 13px; } }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column .large_button.solid_grey {
      order: 2;
      background: #fbe3e3;
      text-align: center;
      display: inline-block; } }

body.template-cart .template_content .checkout_column .large_button.solid_white {
  color: #666;
  text-decoration: underline; }
  @media (max-width: 1440px) {
    body.template-cart .template_content .checkout_column .large_button.solid_white {
      font-size: 13px; } }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column .large_button.solid_white {
      background: #EEE;
      order: 1;
      text-decoration: none; } }

@media (max-width: 992px) {
  body.template-cart .template_content .checkout_column .third_party_checkout_buttons {
    max-width: 313px;
    margin: 0 auto;
    order: 3; } }

body.template-cart .template_content .checkout_column .third_party_checkout_buttons img {
  margin: 19px 0; }

body.template-cart .template_content .checkout_column p {
  font-size: 14px;
  line-height: 1.4; }
  @media (max-width: 992px) {
    body.template-cart .template_content .checkout_column p {
      text-align: center;
      order: 4; } }
  @media (max-width: 1440px) and (min-width: 992px) {
    body.template-cart .template_content .checkout_column p {
      font-size: 13px; } }

body.template-cart .template_content .checkout_column p.canadian-shipping {
  display: none; }

#your-shopping-cart .shipping-offer-mobile {
  margin-top: 0; }
  @media (max-width: 600px) {
    #your-shopping-cart .shipping-offer-mobile {
      margin-top: -71px; } }
  @media (max-width: 363px) {
    #your-shopping-cart .shipping-offer-mobile {
      margin-top: -87px; } }
  @media (max-width: 206px) {
    #your-shopping-cart .shipping-offer-mobile {
      margin-top: -103px; } }

@media (min-width: 993px) {
  body.template-cart .desktop_header_main_row .nav .nav_dropdown_menu {
    top: 88px !important; } }
.afterpay-paragraph {
  margin: 34px 19px; }
  .afterpay-paragraph:first-letter {
    text-transform: uppercase; }
  .afterpay-paragraph .afterpay-logo {
    width: 85px !important;
    height: 18px; }
  @media only screen and (max-width: 992px) {
    .afterpay-paragraph {
      order: initial !important;
      margin: 10px auto 30px; } }

/*========== Swatch Box Styles ==========*/
.product_item_swatch_color {
  margin: 10px 0; }
  .product_item_swatch_color .label {
    text-transform: uppercase; }

ul.product_item_swatches li {
  display: inline-block;
  margin: 2px 3px 2px 2px; }
  ul.product_item_swatches li a {
    display: block;
    height: 20px;
    width: 20px;
    background-position: center center;
    background-size: cover;
    border: 1px solid #999;
    border-radius: 50%;
    color: transparent;
    font-size: 0px; }

.product_template .product_related_swatches {
  margin-top: 22px;
  margin-bottom: -2px; }
  .product_template .product_related_swatches ul.product_item_swatches li {
    margin-right: 15px;
    margin-left: 0;
    border: 1px solid #bfbebe;
    border-radius: 50%; }
    .product_template .product_related_swatches ul.product_item_swatches li a {
      height: 28px;
      width: 28px;
      border-radius: 50%;
      border-color: transparent; }
  .product_template .product_related_swatches ul.product_item_swatches li.active {
    border-color: #000; }

/*========== Shop The Look Styles ==========*/
/*================ Shop The Look ================*/
@media (min-width: 993px) {
  #shopify-section-shop-the-look-template .right_main,
  #shopify-section-shop-this-look .right_main {
    margin-left: 7.8125%;
    margin-right: 7.96875%; } }

#shop-the-look-modal {
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto; }
  #shop-the-look-modal .mfp-close {
    position: relative;
    top: -14px; }
  @media (min-width: 1920px) {
    #shop-the-look-modal .shoplook__featured-image {
      height: 798px;
      width: 532px;
      margin-left: 30px;
      padding-left: 0; }
    #shop-the-look-modal .shoplook__associated-wrapper {
      width: 48%; } }
  @media (min-width: 1200px) {
    #shop-the-look-modal {
      margin-top: 50px;
      margin-bottom: 50px; } }
  @media (max-width: 991px) {
    #shop-the-look-modal .shoplook__featured, #shop-the-look-modal .shoplook__featured-image img {
      display: none; } }
  @media (max-width: 768px) {
    #shop-the-look-modal {
      width: 100%; }
      #shop-the-look-modal .grid__item {
        padding: 0 5px; }
      #shop-the-look-modal .shoplook__featured-wrapper, #shop-the-look-modal .shoplook__featured-image {
        width: 100%;
        text-align: center;
        margin-bottom: 30px; } }
      @media (max-width: 768px) and (max-width: 768px) {
        #shop-the-look-modal .shoplook__featured-wrapper, #shop-the-look-modal .shoplook__featured-image {
          margin-bottom: 15px; } }
  @media (min-width: 769px) {
    #shop-the-look-modal {
      padding: 30px 20px 30px 5px;
      max-width: 1125px;
      width: 60%;
      border: 8px #ebebeb solid; } }

a.shop-the-look-open-popup {
  text-decoration: underline;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  font-size: 0.9em; }

.shoplook__featured {
  margin-bottom: 35px; }
  .shoplook__featured .product-name {
    font-size: 28px;
    line-height: 1;
    margin-top: -1px;
    margin-bottom: 23px;
    text-transform: uppercase;
    font-weight: 200; }
  .shoplook__featured .price-compare {
    text-decoration: line-through;
    margin-right: 6px;
    color: #6b6b6b;
    font-size: 16px;
    font-weight: 400; }
  .shoplook__featured .product-price,
  .shoplook__featured .price-sale {
    display: none;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    color: #020202; }
  .shoplook__featured .bag-confirmation .button {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777873;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 12px; }
  .shoplook__featured .bag-confirmation .button.pink {
    background: #fbe3e3; }
    .shoplook__featured .bag-confirmation .button.pink:hover {
      background: #ffc5c5; }
  @media (max-width: 768px) {
    .shoplook__featured {
      margin-top: 45px;
      text-align: center; } }

.shoplook__associated-wrapper {
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 798px; }

@media (min-width: 1920px) {
  .shoplook__associated {
    margin-top: 30px; } }
.shoplook__associated:nth-of-type(1) {
  margin-top: 0; }
@media (min-width: 768px) {
  .shoplook__associated {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding-left: 0;
    margin-top: 30px; } }
.shoplook__associated .shoplook__associated-head {
  max-width: 163px;
  vertical-align: top;
  padding-right: 0;
  float: left; }
  @media (max-width: 768px) and (orientation: portrait) {
    .shoplook__associated .shoplook__associated-head {
      width: 100%; }
      .shoplook__associated .shoplook__associated-head img {
        width: 100%; } }
  @media (max-width: 768px) and (orientation: landscape) {
    .shoplook__associated .shoplook__associated-head {
      margin: 0 auto; } }
  @media (min-width: 992px) {
    .shoplook__associated .shoplook__associated-head {
      width: 40%; } }
  .shoplook__associated .shoplook__associated-head .shoplook__associated-image {
    position: relative;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    overflow: hidden;
    max-width: 163px; }
.shoplook__associated .shoplook__associated-content {
  vertical-align: top;
  padding: 0 !important;
  text-align: left; }
  @media (min-width: 769px) {
    .shoplook__associated .shoplook__associated-content {
      display: flex; } }
  .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner {
    position: relative;
    height: 100%;
    padding: 0 0 0 30px;
    max-width: 258px; }
    @media (max-width: 479px) {
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner {
        padding: 0; } }
    @media (max-width: 768px) {
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner {
        text-align: center;
        padding: 0;
        height: 220px;
        max-width: none; } }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-name {
      font-size: 16px;
      line-height: 24px;
      font-weight: 200;
      color: #020202; }
      @media (max-width: 768px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-name {
          height: 45px; } }
      @media (max-width: 460px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-name {
          height: 65px; } }
      @media (max-width: 400px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-name {
          font-size: 15px; } }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-vendor {
      text-transform: uppercase;
      font-weight: 500;
      font-size: 16px;
      margin: 10px 0; }
      @media (max-width: 400px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-vendor {
          font-size: 15px; } }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-variants {
      padding: 5px 0 0;
      font-size: 14px; }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .price-compare {
      text-decoration: line-through;
      margin-right: 6px;
      color: #6b6b6b;
      font-size: 16px;
      font-weight: 400; }
      @media (max-width: 400px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .price-compare {
          font-size: 15px; } }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-price,
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .price-sale {
      font-size: 16px;
      font-style: italic;
      font-weight: 400;
      color: #505050;
      margin: 10px 0; }
      @media (max-width: 400px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-price,
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .price-sale {
          font-size: 15px; } }
    @media (max-width: 768px) {
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form {
        text-align: left;
        margin: 3%; } }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper {
      display: inline; }
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper:after {
        position: relative;
        right: 15px;
        z-index: 5; }
        @media (max-width: 400px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper:after {
            right: 13px; } }
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper select {
        touch-action: manipulation;
        -webkit-appearance: none;
        -webkit-border-radius: 0;
        padding: 5px;
        font-size: 16px;
        text-align: center;
        background: url(./select-down-arrow-r6.png) no-repeat right;
        border: 1px solid #333333;
        width: 95%;
        max-width: 191px; }
        @media (max-width: 768px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper select {
            max-width: none; } }
        @media (max-width: 560px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper select {
            width: 44%; } }
        @media (max-width: 400px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper select {
            font-size: 12px; } }
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper select.error {
          border: 1px solid red;
          color: red; }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .select-wrapper[data-option="Color"] {
      display: none; }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row {
      margin-top: 10px; }
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .add_product_submit {
        border: 1px solid #020202;
        background-color: white;
        text-transform: uppercase;
        width: 95%;
        max-width: 191px;
        padding: 10px;
        text-align: center;
        font-size: 16px;
        font-weight: 200; }
        @media (max-width: 1440px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .add_product_submit {
            padding: 8px; } }
        @media (max-width: 768px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .add_product_submit {
            max-width: none; } }
        @media (max-width: 400px) {
          .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .add_product_submit {
            font-size: 12px; } }
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .add_product_submit.no-stock {
        /* background-color: #000; */ }
      .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .input-validation {
        display: none; }
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .buttons_row .input-validation.error {
          display: block;
          font-size: .85em;
          letter-spacing: .05em;
          color: red;
          margin-bottom: 10px; }
    .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .product-add-success {
      margin-top: 10px;
      background-color: #fbe3e3;
      text-transform: uppercase;
      width: 95%;
      max-width: 191px;
      color: #777873;
      padding: 10px;
      font-size: 16px;
      text-align: center;
      font-weight: 600; }
      @media (max-width: 768px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .product-add-success {
          max-width: none; } }
      @media (max-width: 400px) {
        .shoplook__associated .shoplook__associated-content .shoplook__associated-pc-inner .product-form .product-add-success {
          font-size: 12px; } }

@media (max-width: 768px) {
  #shopify-section-shop-the-look-template .shoplook__associated.grid__item,
  #shopify-section-shop-this-look .shoplook__associated.grid__item {
    padding-left: 0;
    margin-top: 0; } }
body.template-collection #shopify-section-shop-the-look-template .section_heading,
body.template-collection #shopify-section-shop-this-look .section_heading {
  margin: 30px auto 40px;
  border-bottom: none; }
  @media (min-width: 1921px) {
    body.template-collection #shopify-section-shop-the-look-template .section_heading,
    body.template-collection #shopify-section-shop-this-look .section_heading {
      margin: 40px auto 65px; } }
  @media (max-width: 992px) {
    body.template-collection #shopify-section-shop-the-look-template .section_heading,
    body.template-collection #shopify-section-shop-this-look .section_heading {
      border-bottom: 1px solid #333;
      margin: 20px auto 30px; } }
body.template-collection #shopify-section-shop-the-look-template .coll_banner_wrapper,
body.template-collection #shopify-section-shop-this-look .coll_banner_wrapper {
  max-width: 2143px;
  margin: 0 7.8125% 90px; }
  @media (max-width: 992px) {
    body.template-collection #shopify-section-shop-the-look-template .coll_banner_wrapper,
    body.template-collection #shopify-section-shop-this-look .coll_banner_wrapper {
      display: none; } }
  body.template-collection #shopify-section-shop-the-look-template .coll_banner_wrapper .coll_banner_img,
  body.template-collection #shopify-section-shop-this-look .coll_banner_wrapper .coll_banner_img {
    width: 100%; }
@media (min-width: 993px) {
  body.template-collection #shopify-section-shop-the-look-template .left_sidebar,
  body.template-collection #shopify-section-shop-this-look .left_sidebar {
    display: none !important; } }
body.template-collection #shopify-section-shop-the-look-template .products_grid_module,
body.template-collection #shopify-section-shop-this-look .products_grid_module {
  max-width: 100%; }
body.template-collection #shopify-section-shop-the-look-template .grid,
body.template-collection #shopify-section-shop-this-look .grid {
  width: 100%; }
body.template-collection #shopify-section-shop-the-look-template .right_main,
body.template-collection #shopify-section-shop-this-look .right_main {
  width: 100%; }
body.template-collection #shopify-section-shop-the-look-template .grid-link__image-centered img,
body.template-collection #shopify-section-shop-this-look .grid-link__image-centered img {
  width: 100% !important; }
@media (min-width: 993px) {
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form {
    display: none; } }
@media (max-width: 992px) {
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product_item_pic:hover .overlay,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product_item_pic:hover .overlay {
    opacity: 0 !important; } }
@media (max-width: 768px) {
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form {
    text-align: left;
    margin: 3%; } }
body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper,
body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper {
  display: block; }
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper:after,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper:after {
    position: relative;
    right: 15px;
    z-index: 5; }
    @media (max-width: 400px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper:after,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper:after {
        right: 13px; } }
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper select,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
    touch-action: manipulation;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    background: url(./select-down-arrow.png) no-repeat right;
    border: 1px solid #333333;
    width: 45%;
    max-width: 90px; }
    @media (max-width: 768px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper select,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
        max-width: none;
        font-size: 13px !important; } }
    @media (max-width: 560px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper select,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
        width: 44%; } }
    @media (max-width: 400px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper select,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
        font-size: 12px; } }
    body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper select.error,
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select.error {
      border: 1px solid red;
      color: red; }
body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .select-wrapper[data-option="Color"],
body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper[data-option="Color"] {
  display: none; }
body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row,
body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row {
  margin-top: 10px; }
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .add_product_submit,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit {
    border: 1px solid #020202;
    background-color: white;
    text-transform: uppercase;
    width: 95%;
    max-width: 191px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 500;
    color: #777873;
    line-height: 26px; }
    @media (max-width: 1440px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .add_product_submit,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit {
        padding: 4px; } }
    @media (max-width: 768px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .add_product_submit,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit {
        max-width: none; } }
    @media (max-width: 560px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .add_product_submit,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit {
        max-width: none;
        background-color: #777873;
        border: 1px solid #777873;
        color: #fff;
        font-weight: 500;
        font-size: 13px; } }
    @media (max-width: 400px) {
      body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .add_product_submit,
      body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit {
        font-size: 12px; } }
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .add_product_submit.no-stock,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit.no-stock {
    /* background-color: #000; */ }
  body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .input-validation,
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .input-validation {
    display: none; }
    body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .buttons_row .input-validation.error,
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .input-validation.error {
      display: block;
      font-size: .85em;
      letter-spacing: .05em;
      color: red;
      margin-bottom: 10px; }
body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .product-add-success,
body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .product-add-success {
  margin: 10px auto 0;
  background-color: #fbe3e3;
  text-transform: uppercase;
  width: 95%;
  max-width: 193px;
  color: #777873;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  padding: 5px; }
  @media (max-width: 768px) {
    body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .product-add-success,
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .product-add-success {
      max-width: none; } }
  @media (max-width: 400px) {
    body.template-collection #shopify-section-shop-the-look-template .products_grid_item .product-form .product-add-success,
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .product-add-success {
      font-size: 12px; } }

body.template-collection#shop-the-look .products_grid_item .product-form {
  display: none !important; }
@media (max-width: 992px) {
  body.template-collection#shop-the-look .products_grid_item .info-overview {
    display: none !important; } }
body.template-collection#shop-the-look .products_grid_item .info-shop-this-look {
  border: 1px solid #020202;
  background-color: white;
  text-transform: uppercase;
  padding: 0;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  margin: 16px 0;
  color: #777873;
  line-height: 50px; }
  @media (min-width: 993px) {
    body.template-collection#shop-the-look .products_grid_item .info-shop-this-look {
      display: none !important; } }
  body.template-collection#shop-the-look .products_grid_item .info-shop-this-look:hover {
    background-color: #fbe3e3;
    border-color: #fbe3e3;
    font-weight: 600; }

body.template-collection #shopify-section-shop-this-look .products_grid_item .info-overview {
  height: 70px; }
body.template-collection #shopify-section-shop-this-look .products_grid_item .info-shop-this-look {
  display: none !important; }
body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .options_row {
  min-height: 30px; }
body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
  touch-action: manipulation;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  padding: 5px;
  font-size: 16px;
  text-align: center;
  background: url(./select-down-arrow-r6.png) no-repeat right;
  border: 1px solid #333333;
  width: 95%;
  max-width: 191px; }
  @media (max-width: 768px) {
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
      max-width: none; } }
  @media (max-width: 560px) {
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
      width: 95%; } }
  @media (max-width: 400px) {
    body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .select-wrapper select {
      font-size: 12px; } }
@media (max-width: 768px) {
  body.template-collection #shopify-section-shop-this-look .products_grid_item .product-form .buttons_row .add_product_submit {
    max-width: none; } }

/*========== Emarsys Footer Signup Styles ==========*/
@media (min-width: 600px) {
  .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] {
    width: 400px; } }
@media (min-width: 1920px) {
  .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] {
    width: 555px;
    margin: 0 auto; } }
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] {
    width: inherit; } }
.popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] * {
  text-transform: uppercase;
  text-align: center; }
.popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] h2 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px; }
  @media (min-width: 1920px) {
    .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] h2 {
      margin: 1em 0;
      font-size: 2.5em; } }
.popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] p {
  font-size: 19px;
  margin-bottom: 24px; }
  @media (min-width: 1920px) {
    .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] p {
      margin-bottom: 1.5em;
      font-size: 2em; } }
.popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] .button {
  font-size: 18.5px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-weight: 600;
  margin-bottom: 12px; }
  @media (min-width: 1920px) {
    .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] .button {
      height: 100px;
      font-size: 2em; } }
.popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] .button.pink {
  background: #fbe3e3; }
  .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] .button.pink:hover {
    background: #ffc5c5; }
.popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] .button.grey {
  background: #f1f1f1; }
  .popup_modal [data-popup-id=EMARSYS_FOOTER_SIGNUP] .button.grey:hover {
    background: #dcdcdc; }

/*========== Emarsys VIP Club Signup ==========*/
body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
  width: auto;
  max-width: 1200px;
  margin: 20px;
  top: 0;
  bottom: unset; }
body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .contents_frame {
  padding: 0; }
body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame > .close_button {
  z-index: 100; }

.vip_club_signup {
  width: 100%;
  max-width: 1200px;
  min-width: 280px;
  height: auto;
  display: table;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #333333; }

.vip_club_signup .panel {
  display: table-cell;
  width: 50%;
  height: 100%;
  vertical-align: top; }

.vip_club_signup .left-panel {
  width: 42%; }

.vip_club_signup .right-panel {
  width: 58%;
  background-color: #ffffff;
  background-image: url("/media/wysiwyg/emarsys-modal/modal-right2.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: relative; }

a.close-popup {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 99999;
  width: 70px;
  height: 70px;
  text-indent: -9999px; }

.vip_club_signup .right-panel {
  margin: 0;
  padding: 0; }

.vip_club_signup .right-panel img {
  margin: 0 auto;
  width: 50% !important; }

.vip_club_signup .right-panel p {
  margin: 0;
  padding: 0;
  margin: 0 auto;
  text-align: center; }

.vip_club_signup .right-panel .form {
  width: 78%;
  margin: 0 auto;
  text-align: center; }

.vip_club_signup p.intro {
  width: 100%;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin-top: 0rem !important;
  padding: 0 0.7rem !important; }
.vip_club_signup .form {
  margin-top: 1.5rem !important; }
.vip_club_signup .email-signup {
  border: 2px solid #383d40;
  width: 100%;
  height: 2.5rem;
  margin-left: 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px; }
.vip_club_signup .fname, .vip_club_signup .lname {
  margin-top: 15px;
  border: 2px solid #383d40;
  width: 45%;
  height: 2.5rem;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  margin-left: 12px; }
.vip_club_signup p.dob-field {
  width: 100%;
  margin-top: 15px !important; }
.vip_club_signup p.dob-field span {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  clear: both;
  margin-bottom: 10px; }
.vip_club_signup p.dob-field select {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  height: 2.0rem;
  border: 2px solid #383d40; }
.vip_club_signup p.dob-field .year {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  height: 2.0rem;
  border: 2px solid #383d40; }
.vip_club_signup .signup-button {
  text-align: center;
  margin-top: 1.6rem !important;
  width: 100%;
  margin-left: 12px !important;
  margin-bottom: 1.4rem !important; }
.vip_club_signup .signup {
  border: none;
  outline: none;
  width: 15rem;
  height: 2.5rem;
  text-align: center;
  color: #fff;
  background-color: #383d40;
  font-size: 1.08rem;
  text-transform: uppercase;
  cursor: pointer; }
.vip_club_signup .signup:hover {
  color: #fff;
  background-color: #333; }
.vip_club_signup p.sms {
  font-weight: 400;
  font-size: 1.075rem;
  line-height: 1.213rem;
  margin-left: 12px !important; }
.vip_club_signup p.no-thanks {
  margin-top: 1.5rem !important;
  margin-left: 12px !important; }
.vip_club_signup p.no-thanks a {
  font-weight: 400;
  font-size: .975rem;
  line-height: 1.18rem;
  text-transform: uppercase;
  text-decoration: underline;
  color: #333333; }
.vip_club_signup p.no-thanks a:hover {
  text-decoration: none !important;
  cursor: pointer; }

@media (min-width: 850px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal {
    display: grid; }
    body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
      overflow: auto; } }
@media (max-width: 1024px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
    width: 90%;
    margin: 0 auto; } }
@media (min-width: 1025px) and (max-width: 1440px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
    width: 70%;
    margin: 0 auto; } }
@media (min-width: 1025px) and (max-height: 700px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
    height: 500px; } }
@media (min-width: 1025px) and (min-height: 701px) and (max-height: 900px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
    height: 600px; } }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
    width: 90%;
    margin: 0 auto; } }
@media (min-width: 1920px) {
  body[data-popup-modal-context="EMARSYS_VIP_SIGNUP"] .popup_modal .popup_frame {
    min-height: unset;
    max-height: unset;
    height: unset;
    max-width: 840px; } }

@media screen and (max-width: 1440px) {
  .vip_club_signup .right-panel img {
    width: 60% !important; } }
@media screen and (max-width: 1290px) {
  .vip_club_signup p.intro {
    font-size: 100%;
    line-height: normal; }
  .vip_club_signup p.sms, .vip_club_signup p.no-thanks a {
    font-size: 100%;
    line-height: normal; }
  .vip_club_signup .email-signup {
    font-size: 100%;
    line-height: normal;
    height: 2.5rem; }
  .vip_club_signup .signup {
    font-size: 100%;
    line-height: normal;
    height: 2.5rem; } }
@media screen and (max-width: 1200px) {
  .vip_club_signup p.intro {
    font-size: 100%; }
  .vip_club_signup p.sms, .vip_club_signup p.no-thanks a {
    font-size: 100%; }
  .vip_club_signup .form {
    margin-top: 1rem !important; }
  .vip_club_signup .signup-button {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .vip_club_signup p.no-thanks {
    margin-top: 1rem !important; } }
@media screen and (max-width: 1050px) {
  .vip_club_signup .signup {
    width: 75%; }
  .vip_club_signup p.intro {
    font-size: 100%; }
  .vip_club_signup p.sms, .vip_club_signup p.no-thanks a {
    font-size: 100%; }
  .vip_club_signup .email-signup {
    font-size: 100%;
    line-height: normal;
    height: 2rem; }
  .vip_club_signup .signup {
    font-size: 100%;
    line-height: normal;
    height: 2rem; } }
@media screen and (max-width: 850px) {
  .vip_club_signup p.intro {
    font-size: 100%; }
  .vip_club_signup p.sms, .vip_club_signup p.no-thanks a {
    font-size: 75%; }
  .vip_club_signup .email-signup {
    font-size: 75%;
    line-height: normal;
    height: 2rem; }
  .vip_club_signup .signup {
    font-size: 75%;
    line-height: normal;
    height: 2rem; } }
@media screen and (max-width: 750px) {
  .vip_club_signup .form {
    margin-top: 1rem !important; }
  .vip_club_signup .signup-button {
    margin-top: 1rem !important;
    margin-bottom: 2rem !important; }
  .vip_club_signup p.no-thanks {
    margin-top: 1rem !important; }
  .vip_club_signup .email-signup {
    height: 1.5rem !important; } }
@media screen and (max-width: 700px) {
  .vip_club_signup .left-panel {
    width: 0;
    display: none; }

  .vip_club_signup .right-panel {
    width: 100%;
    background-size: cover; }

  .vip_club_signup .right-panel img {
    width: 60% !important; }

  .vip_club_signup .right-panel p {
    margin: 15px auto 0 !important; }

  .vip_club_signup p.dob-field span {
    padding-top: 15px; }
  .vip_club_signup .email-signup {
    height: 1.5rem !important; }
  .vip_club_signup .fname, .vip_club_signup .lname {
    height: 1.5rem !important;
    width: 35%;
    float: left; }
  .vip_club_signup .lname {
    float: right;
    clear: right; }
  .vip_club_signup .month, .vip_club_signup .day, .vip_club_signup .year {
    height: 1.5rem !important;
    font-size: 10px !important; }
  .vip_club_signup .month, .vip_club_signup .day {
    width: 25%; } }
/*========== Boost Commerce Product Filter - Custom Styles ==========*/
@media (min-width: 992px) and (max-width: 1200px) {
  .products_grid_module .products_grid_controls {
    font-size: 15px; } }
.products_grid_module .products_grid_controls.top {
  margin: -1px 0 17px !important; }
.products_grid_module .products_grid_controls .control .select select {
  line-height: 20px; }
.products_grid_module .products_grid_controls .control.pager {
  line-height: inherit !important; }
  .products_grid_module .products_grid_controls .control.pager li {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    font-size: 16px;
    padding: 0 10px; }
    @media (min-width: 992px) and (max-width: 1440px) {
      .products_grid_module .products_grid_controls .control.pager li {
        font-size: 13px;
        padding: 0 8px; } }
    .products_grid_module .products_grid_controls .control.pager li.disabled {
      display: none; }
    .products_grid_module .products_grid_controls .control.pager li.pager-arrow {
      padding: 0 !important; }
      .products_grid_module .products_grid_controls .control.pager li.pager-arrow a {
        text-indent: -9999px;
        width: 5px; }
      .products_grid_module .products_grid_controls .control.pager li.pager-arrow.arrow--left a {
        background: url(./pager-arrow-left.png) no-repeat left; }
      .products_grid_module .products_grid_controls .control.pager li.pager-arrow.arrow--right a {
        background: url(./pager-arrow-right.png) no-repeat right; }
    .products_grid_module .products_grid_controls .control.pager li a, .products_grid_module .products_grid_controls .control.pager li span {
      color: #000;
      padding: 0 !important; }
    .products_grid_module .products_grid_controls .control.pager li span.active {
      font-weight: bold; }

#bc-sf-filter-top-pagination ul li {
  padding: 0 10px; }
  @media (min-width: 992px) and (max-width: 1200px) {
    #bc-sf-filter-top-pagination ul li {
      padding: 0 8px; } }

#bc-sf-filter-tree-mobile-button {
  background: #fff !important;
  color: #777873 !important;
  font-family: 'Raleway', serif; }

@media (max-width: 992px) {
  .left_sidebar {
    display: block !important; } }
.bc-sf-filter-option-block {
  border-bottom-color: #555; }
  .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a:hover {
    background-color: transparent;
    color: #777873; }
  @media (max-width: 992px) {
    .bc-sf-filter-option-block .bc-sf-filter-block-content {
      max-height: initial !important; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .jspContainer {
        height: initial !important; }
        .bc-sf-filter-option-block .bc-sf-filter-block-content .jspContainer .jspVerticalBar {
          display: none; }
        .bc-sf-filter-option-block .bc-sf-filter-block-content .jspContainer .jspPane {
          width: 100% !important;
          top: 0 !important;
          position: initial; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box,
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch,
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list {
        *zoom: 1; }
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box::after,
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch::after,
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list::after {
          content: '';
          display: table;
          clear: both; }
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li,
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li,
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-multiple-list li {
          float: left;
          padding: 4px 8px;
          margin: 0 9px; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a.selected {
        font-weight: 600;
        border: 0;
        background-color: transparent;
        color: #000 !important; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a:hover {
        border: 0; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch span {
        display: none; } }
  @media (min-width: 992px) {
    .bc-sf-filter-option-block .bc-sf-filter-block-content {
      margin-top: 25px; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-box li a.selected {
        font-weight: 600;
        border: 1px solid #999 !important;
        background-color: transparent;
        color: #000 !important; }
      .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li {
        padding: 5px 0 8px 0; }
        .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a {
          width: 16px;
          height: 16px;
          border: 1px solid #999 !important;
          padding: 0;
          border-radius: 50%; }
          .bc-sf-filter-option-block .bc-sf-filter-block-content .bc-sf-filter-option-swatch li a span {
            line-height: 16px;
            top: 0;
            padding-left: 32px;
            display: block;
            width: 125px;
            text-align: left; } }
  @media (min-width: 992px) {
    .bc-sf-filter-option-block .bc-sf-filter-block-title h3 span:after {
      margin-right: 2px; }
    .bc-sf-filter-option-block .bc-sf-filter-block-title h3 span.up:after {
      margin-right: -1px;
      margin-left: 0; } }

@media screen and (max-width: 992px) {
  .left_sidebar .grid__item {
    line-height: 24px; }

  #bc-sf-filter-products-per-row {
    display: block; }

  #bc-sf-filter-tree-mobile-button {
    line-height: 24px !important; }

  #bc-sf-filter-top-sorting {
    padding: 9px 0; } }
.desktop_header_main_row .nav .nav_dropdown_menu ul a.active {
  font-weight: bold; }

#shopify-section-gift-card-template .afterpay-paragraph {
  display: none !important; }

.cart-has-gift-card .afterpay-paragraph {
  visibility: hidden; }

.vertical_list.GiftCards {
  display: none !important; }

.vertical_list.BrandsWeLove {
  display: none !important; }

.desktop_header_main_row .nav .nav_dropdown_menu ul {
  margin-bottom: 25px !important; }

.desktop_header_main_row .nav .nav_dropdown_menu h5 {
  margin-bottom: 18px !important; }

.password-page-george-floyd {
  width: 100%;
  height: 100vh;
  background-color: #000000;
  font-family: 'Raleway'; }
  .password-page-george-floyd .container {
    height: 100%; }

.password-page-george-floyd__wrapper {
  display: table;
  width: 100%;
  height: 100%;
  padding: 25px 0; }

.password-page-george-floyd__column {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%; }
  .password-page-george-floyd__column h1 {
    text-transform: uppercase;
    text-align: center;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 1.5; }
    @media only screen and (max-width: 768px) {
      .password-page-george-floyd__column h1 {
        font-size: 22px; } }

.vendor_link {
  cursor: inherit !important; }

.vendor_link--active {
  cursor: pointer !important; }

/* REDDRESSSA-914 */
.model-info-wrapper__item {
  display: flex;
  width: 100%;
  margin: 10px 0; }
  @media only screen and (max-width: 600px) {
    .model-info-wrapper__item .model-info-desc {
      text-align: left !important; }
      .model-info-wrapper__item .model-info-desc h3 {
        text-align: left !important; }
      .model-info-wrapper__item .model-info-desc p {
        text-align: left !important; } }

/* REDDRESSSA-909 */
.breadcrumb {
  position: relative;
  margin-top: 30px;
  font-family: 'Raleway';
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  word-spacing: 0px;
  color: #030303;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.1px;
  /* white-space: nowrap; */
  line-height: normal; }
  .breadcrumb a {
    text-decoration: underline; }
  .breadcrumb span {
    margin: 0 2px; }
  @media (max-width: 560px) {
    .breadcrumb {
      top: 0 !important;
      margin-top: 15px;
      padding: 0 10px; } }

@media (max-width: 992px) {
  body.template-product .breadcrumb {
    top: 70px; } }
@media (max-width: 560px) {
  body.template-product .breadcrumb {
    margin-bottom: 15px; } }

.gallery.left_column video {
  width: 100%;
  max-height: 117vh; }

.icon-player {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 50px;
  padding: 15px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7); }

@media (min-width: 1920px) {
  .container--breadcrumb {
    max-width: 82vw; } }

.sitemap-content .parent-container {
  margin: 35px 0; }
.sitemap-content h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold; }
.sitemap-content nav ul li {
  display: inline-block;
  margin: 8px;
  font-size: 14px; }

/* REDDRESSSA-942 */
body[data-mobile-nav-open="T"] {
  overflow: hidden !important;
  overflow-y: hidden !important;
  height: 100vh;
  padding-right: 15px;
  /* Avoid width reflow */ }
  @media (max-width: 1200px) {
    body[data-mobile-nav-open="T"] {
      position: fixed;
      height: calc(100% - 123px);
      top: 0;
      bottom: 0; } }
  body[data-mobile-nav-open="T"] #attentive_overlay {
    display: none; }

div[title="Live chat button"] div div {
  text-indent: -9999px !important;
  background-position: center center !important; }

div[title="Contact us button"] div div {
  text-indent: -9999px !important;
  background-position: center center !important; }

/* REDDRESSSA-944 */
.mobile-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0; }
  @media (min-width: 993px) {
    .mobile-header-grid {
      display: none; } }
  .mobile-header-grid .mobile-header-grid__item {
    width: 25%;
    overflow: hidden; }
    .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--hamburguer a.hamburger {
      display: block; }
    .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--logo {
      text-align: center; }
      @media (max-width: 600px) {
        .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--logo {
          width: 50%; } }
      .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--logo .logo {
        padding: 0;
        margin: 0; }
        .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--logo .logo img {
          height: 58px;
          width: auto; }
          @media (min-width: 650px) and (max-width: 992px) {
            .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--logo .logo img {
              height: 68px; } }
    .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--right-block .right {
      justify-content: flex-end;
      padding-right: 20px; }
      .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--right-block .right .mobile_search {
        height: auto;
        max-width: 180px; }
    @media (min-width: 601px) {
      .mobile-header-grid .mobile-header-grid__item {
        width: 33.33333333333%; } }

.topbadge {
  padding: 3px 0px !important; }

body.template-.swym-ready #modal_remove_button {
  background-color: #fbe3e3 !important;
  border: 1px solid #333 !important;
  font-size: 16px !important;
  border-color: #333 !important;
  color: #777873 !important; }

body.template-.swym-ready button.btn.btn-default.btn-default-modal {
  background-color: #fff !important;
  color: #777873;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #333;
  font-size: 16px; }

@media (max-width: 991px) {
  span.iWishCount {
    display: initial !important; } }
/*-------REDDRESSSA-971-----------*/
.products_grid_items .products_grid_item .info .estimate, .products_grid_items .products_grid_item .info .product_title {
  font-weight: 500 !important; }

@media (max-width: 991px) {
  span.iWishCount {
    display: initial !important; }

  #bc-sf-filter-products-per-row select, #bc-sf-filter-top-sorting select option {
    font-size: 13px; }

  #bc-sf-filter-top-sorting {
    padding: 10px 3px 10px 3px !important; }

  .mobile_navigation_menu nav li > .line_wrap .h2 {
    display: flex; }

  .mobile_navigation_menu nav li:last-child > .line_wrap a {
    display: flex;
    width: 100%;
    align-items: center; } }
/*-------REDDRESSSA-979-----------*/
.collection-description a {
  text-decoration: underline !important; }

.mobile_navigation_menu nav li:last-child > .line_wrap a span {
  padding: 0;
  margin: 0;
  width: auto;
  min-width: auto;
  max-width: 30px;
  max-height: inherit;
  font-size: 10px;
  font-weight: 600;
  text-indent: initial;
  padding-left: 5px; }

@media (max-width: 767px) {
  .iphone div#bc-sf-filter-top-sorting select {
    padding-left: 30%; } }
@media (max-width: 600px) {
  .products_grid_mobile_filters .grid__item:not(:first-child) {
    width: 100% !important;
    border-left: 2px solid #aaaaaa !important;
    margin-top: 10px !important; }

  .products_grid_mobile_filters .grid__item {
    width: 100% !important;
    max-width: 100% !important; }

  #bc-sf-filter-top-sorting select {
    width: 100% !important;
    margin: auto;
    text-align-last: center; } }
@media (max-width: 350px) {
  #bc-sf-filter-top-sorting {
    padding: 10px 0px 10px 0px !important; } }
/*------REDDRESSSA-984----------*/
.xclude {
  visibility: hidden;
  position: absolute; }

/*------REDDRESSSA-995----------*/
#see_more_reviews, .back_to_top_button, a.back-to-top {
  color: black !important; }

/*------REDDRESSSA-1011----------*/
.rv_title h1, .rv_title h2, .section_heading h1, .section_heading h2, .collection-sidebar--opened .collection-sidebar__title--collapsed, .collection-sidebar__category, .collection-sidebar__section-title, .product_title, .grid-link__meta, .section_heading h1, .page_content_section h1, .snapchat-content h4, .snapchat-content h3, .snapchat-content p, .page_content_section span, .bc-sf-filter-collection-header {
  background-color: #fff;
  color: #000; }

.snapchat-banner-wrapper .snapchat-content-wrapper .snapchat-content p {
  font-weight: 400; }

/*-----REDDRESSSA-1008--------*/
form#form_search_desktop fieldset {
  display: flex !important;
  width: 100% !important; }

/* @media(max-width:768px)
{
  form fieldset.ng-scope {
    display: flex!important;
    width: 100%!important;
}
} */
/*------REDDRESSSA-1007----------*/
a:focus, span.dropdown:focus, label:focus, input:focus, button:focus {
  border: 1px solid black !important;
  outline-style: none !important; }

body.template-collection .template_content .left_sidebar a.toggle_collection_sidebar {
  height: 30px;
  padding: 7%; }

/*-----------REDDRESSSA-1006------*/
#size_charts > table, .size-chart-desc > table {
  width: 100%; }

/*------REDDRESSSA-1003----------*/
.small_button.shop-the-look-open-popup {
  height: 140px;
  width: 140px;
  border-radius: 100%;
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-transform: uppercase;
  display: flex;
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column; }

.small_button.shop-the-look-open-popup strong {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  display: block; }

/*------REDDRESSSA-1032----------*/
body#contact-us-form .page_content_section {
  width: 100% !important;
  max-width: 100% !important; }

/* .section_heading.shop-the-look a
{
  text-decoration:underline!important;
} */
.toggle.toggle_collection_sidebar.collection-sidebar__title {
  outline-style: none !important; }

/* .footer_main_block li a
{
  color:#4F4F4F!important;
  font-weight:500;
}
.footer_main_block h4
{
  color:#4F4F4F!important;
}
.footer_newsletter_block label
{
  color:#4F4F4F!important;
} 
.products_grid_item .product_item_pic .sold_out_product
{
  opacity:1!important;
}*/
a#customer_logout_link:focus {
  border: none !important; }

@media (max-width: 992px) {
  .mobile-header-grid .mobile-header-grid__item.mobile-header-grid__item--right-block .right .mobile_search {
    height: auto;
    max-width: 200px; }

  .search_dropdown_menu_mobile .head form fieldset {
    width: 100%;
    display: flex; }

  form.form_search_mobile fieldset {
    display: flex; } }
@media (max-width: 769px) {
  .mobile_header .mobile_search_button .search_dropdown_menu .head form {
    width: 100%; }

  .desktop_header_main_row .nav .search_dropdown_menu .head form button i, .mobile_header .mobile_search_button .search_dropdown_menu .head form button i {
    float: left; }

  body.template-cart .template_content .checkout_column .summary_totals {
    margin-left: 0; }

  .mobileOnly, body.template-cart .template_content .table.cart_form_table .product_title {
    margin-bottom: 4px !important; }

  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(5) {
    padding-top: 0px !important;
    padding-left: 0px !important; }

  body.template-cart .template_content .table.cart_form_table .tbody .td:nth-child(2) {
    padding-bottom: 4px !important; }

  .mobileOnly {
    display: block !important; }

  body.template-cart #shopify-section-cart .cart_form_table .update {
    color: #666;
    font-weight: 600 !important;
    text-decoration: underline !important; } }
@media (max-width: 475px) {
  .small_button.shop-the-look-open-popup {
    height: 100px;
    width: 100px; }

  .small_button.shop-the-look-open-popup strong {
    font-size: 16px; } }
/*-------REDDRESSSA-1041----------*/
@media (max-width: 992px) {
  .main .field__input, .footer_newsletter_block input[type=email] {
    font-size: 16px !important; }

  .footer_newsletter_block input[type=email] {
    letter-spacing: 0 !important; }

  .desktop_header_main_row .nav .search_dropdown_menu .head form input[type=text], .mobile_header .mobile_search_button .search_dropdown_menu .head form input[type=text] {
    font-size: 16px !important; } }
@media (max-width: 800px) {
  .footer_newsletter_block .group {
    display: block !important; }

  .footer_newsletter_block > .flex_center {
    text-align: center !important; }

  .footer_newsletter_block input[type=email] {
    max-width: 100% !important;
    width: 100% !important;
    margin: 5px 0px 8px 0px;
    text-align: center !important; }

  .footer_newsletter_block {
    height: 200px !important;
    padding: 0px 0px 32px 0px !important; }

  .footer_newsletter_block .small_submit_button {
    margin-left: 0 !important; }

  .collection-description {
    position: relative;
    overflow: hidden; } }
@media (min-width: 768px) and (max-width: 992px) {
  body.template-cart .template_content .table.cart_form_table .td.second {
    width: 30% !important; } }
.swatchify-cont {
  display: none !important; }

ul.vertical_list.AllDenim > a {
  display: none; }
