/*********************************************
  :: Necessary SASS files                           
********************************************/
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column-width().
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-column-gutter().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Alias for j-span().
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-shift().
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * Alias for j-unshift().
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 * Aliases for j-edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Alias for j-center().
 */
/**
 * Uncenter an element.
 */
/**
 * Alias for j-uncenter().
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Alias for j-stack().
 */
/**
 * Unstack an element.
 */
/**
 * Alias for j-unstack().
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Alias for j-align().
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Alias for j-cf().
 */
/*********************************************
  :: Sass Setup
  :: Variables, mixins and more!!
********************************************/
/*********************************************
  :: colors!!!!!!
  :: 3 most over used colors for the site
  :: usage = background: $primary-color;
********************************************/
/*********************************************
  :: typography defaults!!!!!!
  :: 3 most over used colors for the site
  :: usage = font-size: $body-copy-size; || line-height: $body-copy-lh;
********************************************/
/*********************************************
  :: breakpoint mixin
  :: simple custom defined breakpoints
  :: usage = @include breakpoint(gt760)
********************************************/
/*********************************************
  :: rgba mixin
  :: good for those pesky old browsers!!!
  :: usage = @include rgba(#000, 0.5)
********************************************/
/*********************************************
  :: Cross Browser - Border Radius
  :: good for those pesky old browsers!!!
  :: usage = @include border-radius(0px 0px 0px 0px)
********************************************/
/*********************************************
  :: The Core                         
********************************************/
/* Project Font */
@import url(//fonts.googleapis.com/css?family=Open+Sans:600italic,300italic,400,300,600,700,800);
/* Brown Paperag Footer Font */
@import url(//fonts.googleapis.com/css?family=Roboto);
/* Custom Icon Fonts from Icomoon */
@font-face {
  font-family: 'icomoon';
  src: url("/fonts/icomoon.eot?-28o8ee");
  src: url("/fonts/icomoon.eot?#iefix-28o8ee") format("embedded-opentype"), url("/fonts/icomoon.woff?-28o8ee") format("woff"), url("/fonts/icomoon.ttf?-28o8ee") format("truetype"), url("/fonts/icomoon.svg?-28o8ee#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 21, ../../private/scss/core/_fonts.scss */
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 35, ../../private/scss/core/_fonts.scss */
.icon-down-arrow:before {
  content: "\e600";
}

/* line 39, ../../private/scss/core/_fonts.scss */
.icon-up-arrow:before {
  content: "\e60d";
}

/* line 43, ../../private/scss/core/_fonts.scss */
.icon-list-arrow:before {
  content: "\e60c";
}

/* line 47, ../../private/scss/core/_fonts.scss */
.icon-left-arrow:before {
  content: "\e609";
}

/* line 51, ../../private/scss/core/_fonts.scss */
.icon-right-arrow:before {
  content: "\e60a";
}

/* line 55, ../../private/scss/core/_fonts.scss */
.icon-calendar:before {
  content: "\e60b";
}

/* line 59, ../../private/scss/core/_fonts.scss */
.icon-edit:before {
  content: "\e601";
}

/* line 63, ../../private/scss/core/_fonts.scss */
.icon-facebook:before {
  content: "\e602";
}

/* line 67, ../../private/scss/core/_fonts.scss */
.icon-instagram:before {
  content: "\e603";
}

/* line 71, ../../private/scss/core/_fonts.scss */
.icon-logout:before {
  content: "\e604";
}

/* line 75, ../../private/scss/core/_fonts.scss */
.icon-magnifier:before {
  content: "\e605";
}

/* line 79, ../../private/scss/core/_fonts.scss */
.icon-shopping-cart:before {
  content: "\e606";
}

/* line 83, ../../private/scss/core/_fonts.scss */
.icon-twitter:before {
  content: "\e607";
}

/* line 87, ../../private/scss/core/_fonts.scss */
.icon-user-icon:before {
  content: "\e608";
}

/*********************************************
  :: Normalize                        
********************************************/
/* line 4, ../../private/scss/core/_base.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 4, ../../private/scss/core/_base.scss */
body {
  margin: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 4, ../../private/scss/core/_base.scss */
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 4, ../../private/scss/core/_base.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
[hidden], template {
  display: none;
}

/* line 4, ../../private/scss/core/_base.scss */
a {
  background-color: transparent;
}

/* line 4, ../../private/scss/core/_base.scss */
a:active, a:hover {
  outline: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 4, ../../private/scss/core/_base.scss */
b, strong {
  font-weight: 700;
}

/* line 4, ../../private/scss/core/_base.scss */
dfn {
  font-style: italic;
}

/* line 4, ../../private/scss/core/_base.scss */
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* line 4, ../../private/scss/core/_base.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 4, ../../private/scss/core/_base.scss */
small {
  font-size: 80%;
}

/* line 4, ../../private/scss/core/_base.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 4, ../../private/scss/core/_base.scss */
sup {
  top: -.5em;
}

/* line 4, ../../private/scss/core/_base.scss */
sub {
  bottom: -.25em;
}

/* line 4, ../../private/scss/core/_base.scss */
img {
  border: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 4, ../../private/scss/core/_base.scss */
figure {
  margin: 1em 40px;
}

/* line 4, ../../private/scss/core/_base.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
pre {
  overflow: auto;
}

/* line 4, ../../private/scss/core/_base.scss */
code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

/* line 4, ../../private/scss/core/_base.scss */
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
button {
  overflow: visible;
}

/* line 4, ../../private/scss/core/_base.scss */
button, select {
  text-transform: none;
}

/* line 4, ../../private/scss/core/_base.scss */
button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 4, ../../private/scss/core/_base.scss */
button[disabled], html input[disabled] {
  cursor: default;
}

/* line 4, ../../private/scss/core/_base.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
input {
  line-height: normal;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 4, ../../private/scss/core/_base.scss */
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 4, ../../private/scss/core/_base.scss */
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

/* line 4, ../../private/scss/core/_base.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
textarea {
  overflow: auto;
}

/* line 4, ../../private/scss/core/_base.scss */
optgroup {
  font-weight: 700;
}

/* line 4, ../../private/scss/core/_base.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
td, th {
  padding: 0;
}

/* line 4, ../../private/scss/core/_base.scss */
h1, h2, h3, h4, h5, h6, ol, ul, blockquote, p, li {
  margin: 0px;
  padding: 0px;
}

/*********************************************
  :: Personal Global Adjustments                            
********************************************/
/* line 10, ../../private/scss/core/_base.scss */
::-moz-selection {
  background: #304149;
  color: white;
}

/* line 15, ../../private/scss/core/_base.scss */
::selection {
  background: #304149;
  color: white;
}

/* line 20, ../../private/scss/core/_base.scss */
img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
}

/* line 27, ../../private/scss/core/_base.scss */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*********************************************
  :: Layout                            
********************************************/
/* line 37, ../../private/scss/core/_base.scss */
body {
  background: white;
  font-family: 'Open Sans', 'Helvetica','Arial', sans-serif;
  font-weight: 400;
}

/*********************************************
  :: Typography                             
********************************************/
/* line 4, ../../private/scss/core/_typography.scss */
h1, .h1 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #444;
  text-align: center;
  margin-bottom: 9px;
}
@media (min-width: 1024px) {
  /* line 4, ../../private/scss/core/_typography.scss */
  h1, .h1 {
    text-align: left;
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 15px;
  }
}

/* line 21, ../../private/scss/core/_typography.scss */
h2, .h2 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  color: #444;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 21, ../../private/scss/core/_typography.scss */
  h2, .h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

/* line 34, ../../private/scss/core/_typography.scss */
h3, .h3 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 34, ../../private/scss/core/_typography.scss */
  h3, .h3 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 48, ../../private/scss/core/_typography.scss */
h4, .h4 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 48, ../../private/scss/core/_typography.scss */
  h4, .h4 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 61, ../../private/scss/core/_typography.scss */
h5, .h5 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 61, ../../private/scss/core/_typography.scss */
  h5, .h5 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 74, ../../private/scss/core/_typography.scss */
h6, .h6 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: #aaa;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 74, ../../private/scss/core/_typography.scss */
  h6, .h6 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 87, ../../private/scss/core/_typography.scss */
p, li, td, th, a, blockquote {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #444;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  /* line 87, ../../private/scss/core/_typography.scss */
  p, li, td, th, a, blockquote {
    font-size: 15px;
    line-height: 25px;
  }
}

/* line 101, ../../private/scss/core/_typography.scss */
a {
  color: #5C3317;
  margin: 0px;
}
/* line 104, ../../private/scss/core/_typography.scss */
a:hover, a:focus {
  text-decoration: none;
}

/* line 109, ../../private/scss/core/_typography.scss */
strong, b {
  font-weight: 600;
}

/* line 113, ../../private/scss/core/_typography.scss */
em, i {
  font-style: italic;
}

/* line 117, ../../private/scss/core/_typography.scss */
ul, ol {
  margin-left: 40px;
  margin-bottom: 20px;
}

/* line 123, ../../private/scss/core/_typography.scss */
ul li {
  list-style-type: none;
  position: relative;
}
/* line 126, ../../private/scss/core/_typography.scss */
ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: #444;
  display: inline-block;
  position: absolute;
  top: 9px;
  left: -18px;
}

/* line 140, ../../private/scss/core/_typography.scss */
li {
  margin-bottom: 5px;
}

/* line 144, ../../private/scss/core/_typography.scss */
hr {
  float: left;
  width: 100%;
  background: #DDDDDD;
  height: 1px;
  border: none;
  outline: none;
  margin-bottom: 40px;
  margin-top: 40px;
  display: block;
}

/* line 156, ../../private/scss/core/_typography.scss */
blockquote {
  display: block;
  padding: 20px 40px 20px 40px;
  background: #444;
  color: white;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
}

/* line 167, ../../private/scss/core/_typography.scss */
figure {
  width: 100%;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0px;
  padding: 10px;
}
/* line 174, ../../private/scss/core/_typography.scss */
figure img {
  margin-bottom: 5px;
}
/* line 178, ../../private/scss/core/_typography.scss */
figure figcaption {
  font-style: italic;
}

/* line 185, ../../private/scss/core/_typography.scss */
table {
  float: left;
  width: 100%;
}
/* line 189, ../../private/scss/core/_typography.scss */
table td, table th {
  padding: 10px 10px 10px 25px;
  border: 1px solid black;
  text-align: left;
}
/* line 195, ../../private/scss/core/_typography.scss */
table th {
  background: #A59D7E;
  color: white;
  font-weight: 600;
}

/*********************************************
  :: Buttons                             
********************************************/
/* line 4, ../../private/scss/core/_buttons.scss */
.button, button, button[type="submit"], input[type="submit"], input[type="button"], input[type="reset"] {
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
  padding: 0px;
  margin: 0px;
}

/* line 15, ../../private/scss/core/_buttons.scss */
.disabled-button,
.button[disabled],
button[disabled],
button[type="submit"][disabled],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}

/* line 26, ../../private/scss/core/_buttons.scss */
.button, button, button[type="submit"], input[type="submit"], input[type="button"], input[type="reset"] {
  background: #A59D7E;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  font-size: 15px;
  line-height: 20px;
  padding: 8px 15px 8px 15px;
  display: inline-block;
  text-decoration: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 39, ../../private/scss/core/_buttons.scss */
.button:hover, .button:focus, button:hover, button:focus, button[type="submit"]:hover, button[type="submit"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus {
  background: #54565A;
  color: white;
}

/* line 45, ../../private/scss/core/_buttons.scss */
button[type="submit"].dark-button,
input[type="submit"].dark-button,
input[type="button"].dark-button,
.dark-button {
  background: #54565A;
}
/* line 50, ../../private/scss/core/_buttons.scss */
button[type="submit"].dark-button:hover, button[type="submit"].dark-button:focus,
input[type="submit"].dark-button:hover,
input[type="submit"].dark-button:focus,
input[type="button"].dark-button:hover,
input[type="button"].dark-button:focus,
.dark-button:hover,
.dark-button:focus {
  background: #000;
  color: white;
}

/* line 57, ../../private/scss/core/_buttons.scss */
button[type="submit"].left-icon-button,
input[type="submit"].left-icon-button,
input[type="button"].left-icon-button,
.left-icon-button {
  position: relative;
  padding-left: 50px;
}
/* line 64, ../../private/scss/core/_buttons.scss */
button[type="submit"].left-icon-button span,
input[type="submit"].left-icon-button span,
input[type="button"].left-icon-button span,
.left-icon-button span {
  display: block;
  background: black;
  color: white;
  padding: 5px;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 36px;
  padding: 10px 10px 10px 8px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  font-size: 23px;
  line-height: 16px;
}
/* line 81, ../../private/scss/core/_buttons.scss */
button[type="submit"].left-icon-button:hover, button[type="submit"].left-icon-button:focus,
input[type="submit"].left-icon-button:hover,
input[type="submit"].left-icon-button:focus,
input[type="button"].left-icon-button:hover,
input[type="button"].left-icon-button:focus,
.left-icon-button:hover,
.left-icon-button:focus {
  background: #797B7F;
  color: white;
}

/* line 87, ../../private/scss/core/_buttons.scss */
button[type="submit"].right-icon-button,
input[type="submit"].right-icon-button,
input[type="button"].right-icon-button,
.right-icon-button {
  position: relative;
  padding-right: 50px;
}
/* line 94, ../../private/scss/core/_buttons.scss */
button[type="submit"].right-icon-button span,
input[type="submit"].right-icon-button span,
input[type="button"].right-icon-button span,
.right-icon-button span {
  display: block;
  background: black;
  color: white;
  padding: 5px;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 36px;
  padding: 10px 10px 10px 8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  font-size: 23px;
  line-height: 16px;
}
/* line 111, ../../private/scss/core/_buttons.scss */
button[type="submit"].right-icon-button:hover, button[type="submit"].right-icon-button:focus,
input[type="submit"].right-icon-button:hover,
input[type="submit"].right-icon-button:focus,
input[type="button"].right-icon-button:hover,
input[type="button"].right-icon-button:focus,
.right-icon-button:hover,
.right-icon-button:focus {
  background: #797B7F;
  color: white;
}

/* Custom styles for specific icon buttons  */
/* line 121, ../../private/scss/core/_buttons.scss */
button[type="submit"].right-arrow-button,
input[type="submit"].right-arrow-button,
input[type="button"].right-arrow-button,
.right-arrow-button {
  padding-right: 40px;
}
@media (min-width: 1024px) {
  /* line 121, ../../private/scss/core/_buttons.scss */
  button[type="submit"].right-arrow-button,
  input[type="submit"].right-arrow-button,
  input[type="button"].right-arrow-button,
  .right-arrow-button {
    padding-right: 45px;
    padding-left: 10px;
  }
}
/* line 132, ../../private/scss/core/_buttons.scss */
button[type="submit"].right-arrow-button span,
input[type="submit"].right-arrow-button span,
input[type="button"].right-arrow-button span,
.right-arrow-button span {
  padding: 10px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 1024px) {
  /* line 132, ../../private/scss/core/_buttons.scss */
  button[type="submit"].right-arrow-button span,
  input[type="submit"].right-arrow-button span,
  input[type="button"].right-arrow-button span,
  .right-arrow-button span {
    padding: 10px 15px 10px 15px;
  }
}

/* line 143, ../../private/scss/core/_buttons.scss */
button[type="submit"].left-arrow-button,
input[type="submit"].left-arrow-button,
input[type="button"].left-arrow-button,
.left-arrow-button {
  padding-left: 40px;
}
@media (min-width: 1024px) {
  /* line 143, ../../private/scss/core/_buttons.scss */
  button[type="submit"].left-arrow-button,
  input[type="submit"].left-arrow-button,
  input[type="button"].left-arrow-button,
  .left-arrow-button {
    padding-left: 45px;
    padding-right: 10px;
  }
}
/* line 154, ../../private/scss/core/_buttons.scss */
button[type="submit"].left-arrow-button span,
input[type="submit"].left-arrow-button span,
input[type="button"].left-arrow-button span,
.left-arrow-button span {
  padding: 10px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 1024px) {
  /* line 154, ../../private/scss/core/_buttons.scss */
  button[type="submit"].left-arrow-button span,
  input[type="submit"].left-arrow-button span,
  input[type="button"].left-arrow-button span,
  .left-arrow-button span {
    padding: 10px 15px 10px 15px;
  }
}

/*********************************************
  :: Forms                             
********************************************/
/* line 4, ../../private/scss/core/_forms.scss */
form {
  float: left;
  width: 100%;
}

/* line 9, ../../private/scss/core/_forms.scss */
legend, fieldset {
  margin: 0px;
  padding: 0px;
  border: none;
}

/* line 15, ../../private/scss/core/_forms.scss */
legend {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

/* line 23, ../../private/scss/core/_forms.scss */
label {
  font-size: 14px;
  line-height: 21px;
  color: #444;
  text-transform: uppercase;
  font-weight: 400;
}

/* line 31, ../../private/scss/core/_forms.scss */
input, textarea, select {
  outline: none;
  border: none;
  background: #F8F8F8;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #212121;
  border: 1px solid #A59D7C;
  width: 100%;
  padding: 5px 10px 5px 10px;
  height: 37px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 45, ../../private/scss/core/_forms.scss */
input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
  border-color: #000;
  color: #000;
}

/* line 52, ../../private/scss/core/_forms.scss */
input[disabled], textarea[disabled], select[disabled] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

/* line 56, ../../private/scss/core/_forms.scss */
textarea {
  height: 60px;
}
@media (min-width: 760px) {
  /* line 56, ../../private/scss/core/_forms.scss */
  textarea {
    height: 80px;
  }
}

/* line 64, ../../private/scss/core/_forms.scss */
select[multiple] {
  height: 80px;
}

/* line 68, ../../private/scss/core/_forms.scss */
input::-webkit-input-placeholder {
  color: #212121;
}

/* line 71, ../../private/scss/core/_forms.scss */
textarea::-webkit-input-placeholder {
  color: #212121;
}

/* line 74, ../../private/scss/core/_forms.scss */
input:-moz-placeholder {
  color: #212121;
}

/* line 78, ../../private/scss/core/_forms.scss */
textarea:-moz-placeholder {
  color: #212121;
}

/*********************************************
  :: Form Layout (Default)                          
********************************************/
/* line 87, ../../private/scss/core/_forms.scss */
.form-field {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
/* line 92, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio {
  float: left;
  width: auto;
  margin-right: 20px;
  text-transform: initial;
  cursor: pointer;
}
/* line 99, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio input {
  box-sizing: border-box;
  padding: 0;
  width: 15px;
  height: 15px;
  vertical-align: top;
  display: inline-block;
  margin-right: 5px;
  margin-top: 3px;
}
/* line 112, ../../private/scss/core/_forms.scss */
.form-field label {
  float: left;
  width: 100%;
  margin-bottom: 3px;
}
/* line 118, ../../private/scss/core/_forms.scss */
.form-field input[type="submit"] {
  float: right;
}
/* line 122, ../../private/scss/core/_forms.scss */
.form-field .note {
  float: left;
  font-size: 12px;
  color: #777;
}

/* line 130, ../../private/scss/core/_forms.scss */
.form-field-container {
  float: left;
  width: 100%;
}

/* (Applied on .form-field-container) Evenly stack fields @ 50% */
@media (min-width: 760px) {
  /* line 140, ../../private/scss/core/_forms.scss */
  .field-width50 .form-field:first-of-type {
    margin-right: 2%;
  }
  /* line 145, ../../private/scss/core/_forms.scss */
  .field-width50 .form-field {
    width: 49%;
  }
}

/* Custom padding separators for fields */
@media (min-width: 760px) {
  /* line 152, ../../private/scss/core/_forms.scss */
  .field-padding-right2 {
    padding-right: 2%;
  }
}

/* (Applied on individual .form-field divs) Custom widths for fields */
@media (min-width: 760px) {
  /* line 159, ../../private/scss/core/_forms.scss */
  .field-width-15 {
    width: 15%;
  }
}

@media (min-width: 760px) {
  /* line 165, ../../private/scss/core/_forms.scss */
  .field-width-20 {
    width: 20%;
  }
}

@media (min-width: 760px) {
  /* line 171, ../../private/scss/core/_forms.scss */
  .field-width-25 {
    width: 25%;
  }
}

@media (min-width: 760px) {
  /* line 177, ../../private/scss/core/_forms.scss */
  .field-width-30 {
    width: 30%;
  }
}

@media (min-width: 760px) {
  /* line 183, ../../private/scss/core/_forms.scss */
  .field-width-40 {
    width: 40%;
  }
}

@media (min-width: 760px) {
  /* line 189, ../../private/scss/core/_forms.scss */
  .field-width-50 {
    width: 50%;
  }
}

/*********************************************
  :: Error/Misc Messages                        
********************************************/
/* line 199, ../../private/scss/core/_forms.scss */
.form-note {
  font-size: 12px;
  line-height: 17px;
  color: #999;
}

/* line 205, ../../private/scss/core/_forms.scss */
input.error, textarea.error, select.error {
  border-color: #DE2828;
}

/* line 209, ../../private/scss/core/_forms.scss */
label.error {
  color: #DE2828;
  margin-top: 10px;
  font-weight: bold;
}

/*********************************************
  :: The Core - Layout & Components                      
********************************************/
/*********************************************
  :: Header                             
********************************************/
/* line 4, ../../private/scss/core/_header.scss */
header {
  float: left;
  width: 100%;
  position: relative;
}

/* Small Screen Triggers */
/* line 12, ../../private/scss/core/_header.scss */
.small-screen-triggers {
  float: left;
  width: 100%;
  background: #EEEEEE;
  padding: 5px 15px 5px 23px;
  height: 35px;
}
@media (min-width: 1024px) {
  /* line 12, ../../private/scss/core/_header.scss */
  .small-screen-triggers {
    display: none;
  }
}
/* line 23, ../../private/scss/core/_header.scss */
.small-screen-triggers button {
  background: none;
  padding: 0px;
  line-height: normal;
  font-size: 22px;
}
/* line 30, ../../private/scss/core/_header.scss */
.small-screen-triggers span[class^="icon-"] {
  color: #999;
  font-size: 18px;
  line-height: 25px;
  vertical-align: top;
  padding-right: 9px;
  margin-right: 12px;
  display: inline-block;
  position: relative;
}
/* line 40, ../../private/scss/core/_header.scss */
.small-screen-triggers span[class^="icon-"]:after {
  content: "";
  height: 14px;
  width: 1px;
  background: #ccc;
  display: block;
  position: absolute;
  top: 5px;
  left: 28px;
}
/* line 53, ../../private/scss/core/_header.scss */
.small-screen-triggers .shopping-cart-button {
  margin-left: -2px;
}
/* line 57, ../../private/scss/core/_header.scss */
.small-screen-triggers .shopping-cart-button .icon-shopping-cart {
  font-size: 22px;
  padding-right: 0px;
  margin-right: 2px;
}
/* line 61, ../../private/scss/core/_header.scss */
.small-screen-triggers .shopping-cart-button .icon-shopping-cart:after {
  display: none;
}
/* line 66, ../../private/scss/core/_header.scss */
.small-screen-triggers .gold-text {
  color: #A59D7E;
  font-weight: 600;
  font-size: 14px;
}
/* line 72, ../../private/scss/core/_header.scss */
.small-screen-triggers .cart-count {
  font-size: 15px;
}
/* line 76, ../../private/scss/core/_header.scss */
.small-screen-triggers a {
  text-decoration: none;
  color: #ccc;
  vertical-align: super;
}

/* Main Header Bar */
/* line 87, ../../private/scss/core/_header.scss */
.main-header-bar {
  float: left;
  width: 100%;
  /*padding: 11px 11px 4px 11px;*/
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  position: relative;
}
@media (min-width: 1024px) {
  /* line 87, ../../private/scss/core/_header.scss */
  .main-header-bar {
    padding: 20px 0px 0px 0px;
    border-bottom: none;
    margin-bottom: 0px;
  }
}
/* line 101, ../../private/scss/core/_header.scss */
.main-header-bar .small-screen-logo {
  width: 206px;
  height: 45px;
  background: url("/images/logo.png") no-repeat;
  background-size: cover;
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  /* line 101, ../../private/scss/core/_header.scss */
  .main-header-bar .small-screen-logo {
    display: none;
  }
}
/* line 117, ../../private/scss/core/_header.scss */
.main-header-bar .logo {
  float: left;
  width: 206px;
  height: 45px;
  background: url("/images/logo.png") no-repeat;
  display: none;
}
@media (min-width: 1024px) {
  /* line 117, ../../private/scss/core/_header.scss */
  .main-header-bar .logo {
    display: block;
    width: 414px;
    height: 93px;
    margin-top: -28px;
  }
}

/* line 136, ../../private/scss/core/_header.scss */
.top-links {
  float: right;
  margin: 0px;
  display: none;
}
@media (min-width: 1024px) {
  /* line 136, ../../private/scss/core/_header.scss */
  .top-links {
    display: block;
  }
}
/* line 145, ../../private/scss/core/_header.scss */
.top-links li {
  float: left;
  border-left: 1px solid #E5E5E5;
  padding-right: 12px;
  padding-left: 15px;
}
/* line 151, ../../private/scss/core/_header.scss */
.top-links li:first-of-type {
  border: none;
}
/* line 155, ../../private/scss/core/_header.scss */
.top-links li:last-of-type {
  padding-right: 0px;
}
/* line 159, ../../private/scss/core/_header.scss */
.top-links li:before {
  display: none;
}
/* line 165, ../../private/scss/core/_header.scss */
.top-links a {
  text-transform: uppercase;
  color: #54565A;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  vertical-align: top;
}
/* line 174, ../../private/scss/core/_header.scss */
.top-links span[class^="icon-"] {
  color: #CCBDB2;
  font-size: 18px;
  padding-right: 6px;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
/* line 183, ../../private/scss/core/_header.scss */
.top-links span.icon-shopping-cart {
  font-size: 24px;
  padding-right: 0px;
  margin-right: -2px;
}
/* line 189, ../../private/scss/core/_header.scss */
.top-links span.icon-user-icon {
  vertical-align: text-top;
  line-height: 19px;
  padding-right: 2px;
}
/* line 195, ../../private/scss/core/_header.scss */
.top-links .account-box-trigger {
  text-transform: none;
}
/* line 199, ../../private/scss/core/_header.scss */
.top-links span.icon-down-arrow {
  font-size: 5px;
  vertical-align: middle;
  margin-left: 3px;
  color: #54565A;
  padding-right: 0px;
}

/* line 209, ../../private/scss/core/_header.scss */
.address {
  color: #C4B9AF;
  font-weight: bold;
  font-size: 13px;
}

/* line 215, ../../private/scss/core/_header.scss */
.number a {
  color: #5C3317;
  font-size: 17.5px;
  line-height: 22px;
}

/* line 221, ../../private/scss/core/_header.scss */
.cart-items {
  vertical-align: top;
  color: #A79D7E;
}

/* line 226, ../../private/scss/core/_header.scss */
.bottom-bar {
  float: left;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  /* line 226, ../../private/scss/core/_header.scss */
  .bottom-bar {
    display: block;
  }
}

/* line 236, ../../private/scss/core/_header.scss */
.check-delivery-areas-button {
  position: absolute;
  top: 280px;
  right: 0px;
  display: block;
}

/* Main Menu - Additional Information */
/* line 2, ../../private/scss/core/_header-small-screen-menu.scss */
.menu-additional-information {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
/* line 7, ../../private/scss/core/_header-small-screen-menu.scss */
.menu-additional-information a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  vertical-align: bottom;
}
@media (min-width: 1024px) {
  /* line 7, ../../private/scss/core/_header-small-screen-menu.scss */
  .menu-additional-information a {
    font-size: 13px;
  }
}
@media (min-width: 340px) {
  /* line 21, ../../private/scss/core/_header-small-screen-menu.scss */
  .menu-additional-information .small-screen-contact-info a {
    font-size: 14px;
    color: #BABABA;
  }
  /* line 26, ../../private/scss/core/_header-small-screen-menu.scss */
  .menu-additional-information .small-screen-contact-info .fb-icon img {
    width: auto;
    height: auto;
  }
}

/*********************************************
  :: Main Menu Toggle                            
********************************************/
/* line 39, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger {
  float: right;
  /*height: 20px;*/
  /*width: 24px;*/
  padding: 5px;
  margin-left: 10px;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  position: static;
  top: 0%;
  left: 0%;
  right: auto;
  border-radius: 0px;
}
/* line 52, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span {
  width: 26px;
  height: 2px;
  background: #55565A;
  margin-bottom: 4px;
  display: block;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  opacity: 1;
}
/* line 63, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span:last-of-type {
  margin-bottom: 0px;
}

/* line 69, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger {
  background: #55565A;
  position: fixed;
  right: 80%;
  top: 0%;
  left: auto;
  height: 36px;
  width: 50px;
  border-right: 1px solid white;
  text-align: center;
  padding-left: 9px;
  padding-top: 4px;
  z-index: 99999;
  padding: 0px;
}
/* line 84, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span {
  margin: 0px;
  background: #fff;
  width: 26px;
  margin-left: 13px;
}
/* line 91, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:last-of-type {
  opacity: 0;
}
/* line 95, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:first-of-type {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 99, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:nth-of-type(2) {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -2px;
}

/*********************************************
  :: Main Menu                            
********************************************/
/* line 112, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu {
  width: 80%;
  background: #fff;
  position: fixed;
  top: 0px;
  right: -80%;
  height: 100%;
  text-align: left;
  z-index: 99;
  overflow-y: auto;
  box-shadow: inset 45px 0px 24px -31px #EDEDED;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 125, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul {
  margin: 0px;
  padding: 0px;
  float: left;
  width: 100%;
  margin-top: 4px;
}
/* line 133, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li {
  list-style-type: none;
}
/* line 137, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li {
  margin-bottom: 0px;
}
/* line 139, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li:before {
  display: none;
}
/* line 144, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li > a {
  font-size: 14px;
  line-height: 23px;
  color: #666666;
  text-decoration: none;
  padding: 10px 25px 10px 23px;
  display: block;
  font-weight: 600;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 0px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 157, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent {
  position: relative;
}
/* line 160, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent .arrow {
  content: '';
  width: 10px;
  height: 2px;
  background: #212121;
  position: absolute;
  right: 20px;
  top: 22px;
  display: block;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 174, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent > a:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  content: '';
  width: 2px;
  height: 10px;
  background: #212121;
  position: absolute;
  right: 24px;
  top: 18px;
  display: block;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 192, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .current a {
  color: #212121;
}
/* line 198, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .current.parent:after {
  /*background: url('../images/sub-menu-arrow-active.png') no-repeat right center;*/
}

/* line 205, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu {
  right: 0px;
}

@media (min-width: 1024px) {
  /* line 209, ../../private/scss/core/_header-small-screen-menu.scss */
  .small-screen-main-menu {
    display: none;
  }
}

/*********************************************
  :: Sub Main Menu                            
********************************************/
/* line 220, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul {
  display: none;
  padding: 0px;
  margin: 0px;
}
/* line 226, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul li {
  list-style-type: none;
}
/* line 230, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul a {
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-decoration: none;
  padding: 10px 25px 10px 25px;
  display: block;
  font-weight: 600;
  border-bottom: 1px solid #DDDDDD;
  background: #EEEEEE;
  margin-bottom: 0px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 244, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul .category-separator a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
}
/* line 249, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul .category-separator a span {
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-size: 11px;
}
/* line 258, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul li:last-of-type a {
  border-bottom: none;
}

/* line 265, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > ul {
  display: block;
}

/* Acive state for sub-menu parent */
/* line 271, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu .arrow {
  /*@include transform(rotate(180deg));*/
  content: '';
  width: 10px;
  height: 2px;
  background: white;
  top: 22px;
}
/* line 280, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > a {
  background: #525358;
  color: white;
}
/* line 283, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > a:after {
  content: '';
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*********************************************
  :: Third Leve; Main Menu                            
********************************************/
/* line 302, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > .parent > ul > .parent.open-sub-menu > a {
  padding-left: 15px;
  background: #333;
}
/* line 307, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > .parent > ul > .parent.open-sub-menu ul {
  margin: 0px;
  padding: 0px;
}
/* line 312, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > .parent > ul > .parent.open-sub-menu ul a {
  padding-left: 15px;
  background: #222;
  font-weight: 400;
}

/* line 322, ../../private/scss/core/_header-small-screen-menu.scss */
.nav-social-icons {
  float: left;
  width: 100%;
  padding: 21px 22px 22px 18px;
}
/* line 327, ../../private/scss/core/_header-small-screen-menu.scss */
.nav-social-icons a {
  color: #D8C8BB;
  font-size: 24px;
  line-height: 17px;
  text-decoration: none;
  margin-right: 2px;
}

/*********************************************
  :: Desktop Main Menu
********************************************/
/* line 4, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu-section {
  float: left;
  width: 100%;
  display: none;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  position: relative;
  margin-top: 10px;
  padding-top: 5px;
}
@media (min-width: 1024px) {
  /* line 4, ../../private/scss/core/_header-large-screen-menu.scss */
  .large-screen-menu-section {
    display: block;
  }
}

/* line 21, ../../private/scss/core/_header-large-screen-menu.scss */
.social-icons {
  float: left;
  margin: 15px 0 0 14px;
}
/* line 25, ../../private/scss/core/_header-large-screen-menu.scss */
.social-icons a {
  text-decoration: none;
  font-size: 24px;
  padding-right: 10px;
}

/* line 33, ../../private/scss/core/_header-large-screen-menu.scss */
.extra-links {
  float: right;
  margin-top: 13px;
}
/* line 37, ../../private/scss/core/_header-large-screen-menu.scss */
.extra-links ul {
  padding: 0px;
  margin: 0px;
}
/* line 42, ../../private/scss/core/_header-large-screen-menu.scss */
.extra-links li {
  margin-bottom: 0px;
  float: left;
}
/* line 45, ../../private/scss/core/_header-large-screen-menu.scss */
.extra-links li:before {
  display: none;
}
/* line 50, ../../private/scss/core/_header-large-screen-menu.scss */
.extra-links a {
  text-decoration: none;
  color: #666666;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  display: inline-block;
  margin-left: 28px;
}
@media (min-width: 1280px) {
  /* line 50, ../../private/scss/core/_header-large-screen-menu.scss */
  .extra-links a {
    margin-left: 33px;
  }
}
/* line 63, ../../private/scss/core/_header-large-screen-menu.scss */
.extra-links .current a {
  color: black;
}

/* line 70, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu-trigger {
  float: left;
  background: none;
  width: 250px;
  color: black;
  border-right: 1px solid #ccc;
  position: relative;
  font-size: 22px;
  line-height: 18px;
  text-align: left;
  vertical-align: middle;
  text-transform: none;
  padding: 0px 10px 23px 13px;
  border-radius: 0px;
}
/* line 85, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu-trigger span {
  font-size: 12px;
  line-height: 17px;
  text-transform: uppercase;
  color: #000;
  display: inline-block;
  vertical-align: inherit;
  width: 100%;
}
/* line 95, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu-trigger:after {
  content: "";
  position: absolute;
  bottom: 29px;
  right: 17px;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e600";
  font-size: 6px;
  color: #54565A;
}
/* line 114, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu-trigger:hover, .large-screen-menu-trigger:focus {
  background: none;
  color: black;
}

/* line 122, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu {
  display: none;
  float: left;
  width: 250px;
  position: absolute;
  top: 64px;
  left: 0px;
  z-index: 90;
  text-align: left;
  border: 1px solid #ddd;
  border-top: 3px solid #5C3317;
  background-color: transparent;
  background-color: rgba(255, 255, 255, 0.95);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F2FFFFFF,endColorstr=#F2FFFFFF);
  zoom: 1;
  /*ul:first-of-type li{*/
  /*    */
  /*    &:first-of-type a,*/
  /*    &:nth-of-type(2) a,*/
  /*    &:nth-of-type(3) a{*/
  /*      font-weight: 700;*/
  /*    }*/
  /*    */
  /*}*/
}
/* line 136, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu:before {
  content: "";
  position: absolute;
  top: -9px;
  right: 17px;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e60d";
  font-size: 6px;
  color: #5C3317;
}
/* line 155, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .menu-section-heading {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #222;
  color: #222;
}
/* line 163, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .menu-section {
  float: left;
  width: 100%;
  margin-bottom: 40px;
  padding-right: 25px;
}
/* line 170, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu ul {
  margin: 0px;
  padding: 15px 20px 15px 22px;
  border-bottom: 1px solid #ddd;
}
/* line 176, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu li {
  margin-bottom: 9px;
}
/* line 179, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu li:before {
  display: none;
}
/* line 183, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu li:last-of-type {
  margin-bottom: 0px;
}
/* line 187, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu li a {
  text-decoration: none;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  display: block;
}
/* line 197, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .current a {
  color: black;
}
/* line 201, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu strong {
  font-weight: 700;
}
/* line 205, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .category-trigger {
  float: left;
  width: 100%;
  height: 65px;
  padding: 0px;
  background: none;
  border: none;
  outline: none;
  color: black;
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding-left: 50px;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  position: relative;
}
/* line 222, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .category-trigger .shop-by {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  display: block;
}
/* line 229, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .category-trigger .arrow {
  content: '';
  width: 10px;
  height: 2px;
  background: #D8C8BB;
  position: absolute;
  left: 20px;
  top: 26px;
  display: block;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 241, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .category-trigger .arrow:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  content: '';
  width: 2px;
  height: 10px;
  background: #D8C8BB;
  position: absolute;
  left: 4px;
  top: -4px;
  display: block;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 259, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .category-container {
  float: left;
  width: 100%;
}
/* line 263, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .category-container ul {
  display: none;
  float: left;
  width: 100%;
}
/* line 273, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .open-category-container ul {
  display: block;
}
/* line 277, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .open-category-container .category-trigger .arrow {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 293, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .social-icons {
  float: left;
  width: 100%;
  padding: 19px 20px 15px 17px;
}
/* line 299, ../../private/scss/core/_header-large-screen-menu.scss */
.large-screen-menu .social-icons a {
  text-decoration: none;
  font-size: 23px;
  line-height: 29px;
  margin-right: 2px;
  color: #D8C8BB;
}

/* line 309, ../../private/scss/core/_header-large-screen-menu.scss */
.open-large-screen-menu .large-screen-menu {
  display: block;
}

@media (min-width: 1024px) {
  /* line 313, ../../private/scss/core/_header-large-screen-menu.scss */
  .page-home .large-screen-menu,
  .page-special-events .large-screen-menu,
  .page-testimonials .large-screen-menu,
  .page-about-us .large-screen-menu,
  .page-contact-us .large-screen-menu,
  .page-edit-address .large-screen-menu,
  .page-register .large-screen-menu {
    display: block;
  }
}

/* Search */
/* Small Screen Search Trigger */
/* line 4, ../../private/scss/core/_header-search.scss */
.search-trigger {
  background: url("../images/search-icon.png") no-repeat center center;
  display: block;
  float: left;
  border-right: 1px solid #ddd;
  padding: 20px 35px 20px 20px;
}

/* line 13, ../../private/scss/core/_header-search.scss */
.search-box-container {
  display: none;
  margin: 0px;
  padding: 10px 20px 10px 20px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1024px) {
  /* line 13, ../../private/scss/core/_header-search.scss */
  .search-box-container {
    display: block;
    float: right;
    margin-top: 5px;
    width: auto;
    margin-bottom: 0px;
    padding-right: 0px;
    border: none;
  }
}
/* line 31, ../../private/scss/core/_header-search.scss */
.search-box-container input, .search-box-container .sod-select {
  background: white;
  border-radius: 0px;
  height: 48px;
  float: left;
  border: none;
  font-size: 16px;
  text-align: left;
}
/* line 41, ../../private/scss/core/_header-search.scss */
.search-box-container input[type="text"] {
  height: 30px;
  border-radius: 0px;
  font-size: 13px;
  width: 100%;
  border: 1px solid #ccc;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 41, ../../private/scss/core/_header-search.scss */
  .search-box-container input[type="text"] {
    width: 222px;
    padding-left: 15px;
    font-size: 18px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 48px;
  }
}
/* line 62, ../../private/scss/core/_header-search.scss */
.search-box-container .sod_select {
  height: 30px;
  border-radius: 0px;
  font-size: 13px;
  width: 100%;
  border: 1px solid #ccc;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 10px;
  background: white;
}
@media (min-width: 1024px) {
  /* line 62, ../../private/scss/core/_header-search.scss */
  .search-box-container .sod_select {
    background: white;
    float: left;
    width: 280px;
    height: 48px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-left: none;
  }
}
@media (min-width: 1024px) {
  /* line 85, ../../private/scss/core/_header-search.scss */
  .search-box-container .sod_select:hover, .search-box-container .sod_select:focus {
    background: white;
    border: 1px solid #ccc;
    border-left: none;
    box-shadow: none;
  }
}
/* line 93, ../../private/scss/core/_header-search.scss */
.search-box-container .sod_select:after {
  top: 4px;
  font-size: 14px;
  line-height: 21px;
}
@media (min-width: 1024px) {
  /* line 93, ../../private/scss/core/_header-search.scss */
  .search-box-container .sod_select:after {
    top: 13px;
    font-size: 18px;
    line-height: 20px;
  }
}
/* line 108, ../../private/scss/core/_header-search.scss */
.search-box-container .sod_select.focus, .search-box-container .sod_select.hover {
  background: white;
  border: 1px solid #ccc;
  border-left: none;
  box-shadow: none;
}
/* line 115, ../../private/scss/core/_header-search.scss */
.search-box-container .sod_label {
  font-size: 13px;
  margin-top: 0px;
  line-height: 17px;
  padding-left: 0px;
  text-align: left;
  font-weight: 600;
}
@media (min-width: 1024px) {
  /* line 115, ../../private/scss/core/_header-search.scss */
  .search-box-container .sod_label {
    font-size: 18px;
    margin-top: 5px;
    padding-left: 5px;
    line-height: 24px;
  }
}
/* line 131, ../../private/scss/core/_header-search.scss */
.search-box-container .sod_select .sod_option {
  text-align: left;
  padding-left: 15px;
}
/* line 136, ../../private/scss/core/_header-search.scss */
.search-box-container .ls-btn {
  display: none;
  background: white;
  border-radius: 0px;
  height: 48px;
  float: left;
  border: none;
  font-size: 16px;
  text-align: left;
  background: #54565A;
  width: 47px;
  padding: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
}
/* line 152, ../../private/scss/core/_header-search.scss */
.search-box-container .ls-btn span {
  font-size: 27px;
  line-height: 27px;
  display: inline-block;
}
@media (min-width: 1024px) {
  /* line 136, ../../private/scss/core/_header-search.scss */
  .search-box-container .ls-btn {
    display: block;
  }
}
/* line 163, ../../private/scss/core/_header-search.scss */
.search-box-container .ss-btn {
  display: block;
  float: right;
  font-size: 12px;
}
@media (min-width: 1024px) {
  /* line 163, ../../private/scss/core/_header-search.scss */
  .search-box-container .ss-btn {
    display: none;
  }
}

/* line 178, ../../private/scss/core/_header-search.scss */
.open-ss-search-box .small-screen-triggers .search-box-trigger span:before {
  content: "";
  background: url("/images/close-section-icon.png") no-repeat;
  width: 14px;
  height: 14px;
  display: block;
  margin-top: 6px;
  background-size: cover;
}
/* line 189, ../../private/scss/core/_header-search.scss */
.open-ss-search-box .search-box-container {
  display: block;
}

/* Login Box */
/* line 2, ../../private/scss/core/_header-login-box.scss */
.login-box {
  display: none;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px 12px 20px;
}
@media (min-width: 1024px) {
  /* line 2, ../../private/scss/core/_header-login-box.scss */
  .login-box {
    position: absolute;
    background: #eee;
    float: left;
    width: 335px;
    padding: 15px 20px 20px 20px;
    left: -10px;
    top: 33px;
    z-index: 9999;
    border: 1px solid #CCBDB1;
    text-align: left;
    left: auto;
    top: 58px;
    z-index: 9999;
    right: 115px;
    position: absolute;
  }
}
/* line 27, ../../private/scss/core/_header-login-box.scss */
.login-box .form-field {
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  /* line 27, ../../private/scss/core/_header-login-box.scss */
  .login-box .form-field {
    margin-bottom: 4px;
  }
}
/* line 34, ../../private/scss/core/_header-login-box.scss */
.login-box label {
  display: none;
}
@media (min-width: 1024px) {
  /* line 34, ../../private/scss/core/_header-login-box.scss */
  .login-box label {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
  }
}
/* line 43, ../../private/scss/core/_header-login-box.scss */
.login-box input[type=text], .login-box input[type=password] {
  height: 30px;
  font-size: 13px;
  line-height: 13px;
}
@media (min-width: 1024px) {
  /* line 43, ../../private/scss/core/_header-login-box.scss */
  .login-box input[type=text], .login-box input[type=password] {
    height: 39px;
    line-height: 16px;
  }
}
@media (min-width: 1024px) {
  /* line 54, ../../private/scss/core/_header-login-box.scss */
  .login-box input::-webkit-input-placeholder {
    color: transparent;
  }
}
@media (min-width: 1024px) {
  /* line 59, ../../private/scss/core/_header-login-box.scss */
  .login-box input:-moz-placeholder {
    color: transparent;
  }
}
/* line 65, ../../private/scss/core/_header-login-box.scss */
.login-box .button-field {
  margin-bottom: 0px;
  margin-top: 0px;
}
@media (min-width: 1024px) {
  /* line 65, ../../private/scss/core/_header-login-box.scss */
  .login-box .button-field {
    margin-top: 11px;
  }
}
/* line 73, ../../private/scss/core/_header-login-box.scss */
.login-box button {
  float: left;
  font-size: 12px;
}
@media (min-width: 1024px) {
  /* line 73, ../../private/scss/core/_header-login-box.scss */
  .login-box button {
    font-size: 11px;
  }
}
/* line 81, ../../private/scss/core/_header-login-box.scss */
.login-box a, .login-box p {
  color: #A59D7E;
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
  display: block;
  font-size: 14px;
  line-height: 15px;
  text-align: left;
}
/* line 92, ../../private/scss/core/_header-login-box.scss */
.login-box p {
  margin: 0px;
  color: #444;
}
/* line 97, ../../private/scss/core/_header-login-box.scss */
.login-box .links {
  float: left;
  padding-left: 10px;
  text-align: left;
}
/* line 103, ../../private/scss/core/_header-login-box.scss */
.login-box .forgot-password-trigger {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  /* line 103, ../../private/scss/core/_header-login-box.scss */
  .login-box .forgot-password-trigger {
    margin-top: 4px;
  }
}
/* line 112, ../../private/scss/core/_header-login-box.scss */
.login-box .password-field {
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 112, ../../private/scss/core/_header-login-box.scss */
  .login-box .password-field {
    margin-bottom: 10px;
  }
}

/* Required for Up Triangle */
/* line 123, ../../private/scss/core/_header-login-box.scss */
.login-box:before, .login-box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  display: none;
}
@media (min-width: 1024px) {
  /* line 123, ../../private/scss/core/_header-login-box.scss */
  .login-box:before, .login-box:after {
    display: block;
  }
}

/* Stroke */
/* line 137, ../../private/scss/core/_header-login-box.scss */
.login-box:before {
  top: -8px;
  right: 158px;
  border-bottom-color: #CCBDB1;
  border-width: 0 9px 8px 9px;
}

/* Fill */
/* line 145, ../../private/scss/core/_header-login-box.scss */
.login-box:after {
  top: -7px;
  right: 158px;
  border-bottom-color: #eee;
  border-width: 0 9px 8px 9px;
}

/* line 155, ../../private/scss/core/_header-login-box.scss */
.open-login-box .small-screen-triggers .login-box-trigger span:before {
  content: "";
  background: url("/images/close-section-icon.png") no-repeat;
  width: 14px;
  height: 14px;
  display: block;
  margin-top: 3px;
  margin-right: 3px;
  background-size: cover;
}
/* line 167, ../../private/scss/core/_header-login-box.scss */
.open-login-box .login-box {
  display: block;
}

/*  Account Box  */
/* line 177, ../../private/scss/core/_header-login-box.scss */
.account-box {
  display: none;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 25px 15px 25px;
}
@media (min-width: 1024px) {
  /* line 177, ../../private/scss/core/_header-login-box.scss */
  .account-box {
    background: #eee;
    float: left;
    width: 220px;
    padding: 15px 20px 15px 20px;
    border: 1px solid #CCBDB1;
    text-align: left;
    left: auto;
    top: 58px;
    z-index: 9999;
    right: 207px;
    position: absolute;
  }
}
/* line 198, ../../private/scss/core/_header-login-box.scss */
.account-box .button {
  width: 175px;
  text-align: left;
  font-size: 12px;
}
@media (min-width: 1024px) {
  /* line 198, ../../private/scss/core/_header-login-box.scss */
  .account-box .button {
    font-size: 13px;
    font-weight: 700;
    width: 179px;
  }
}
/* line 209, ../../private/scss/core/_header-login-box.scss */
.account-box .button:first-of-type {
  margin-bottom: 10px;
}
/* line 214, ../../private/scss/core/_header-login-box.scss */
.account-box .welcome-msg {
  color: #535559;
  margin-bottom: 8px;
  font-weight: 700;
}

/* Required for Down Triangle */
/* line 224, ../../private/scss/core/_header-login-box.scss */
.account-box:before, .account-box:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  display: none;
}
@media (min-width: 1024px) {
  /* line 224, ../../private/scss/core/_header-login-box.scss */
  .account-box:before, .account-box:after {
    display: block;
  }
}

/* Stroke */
/* line 238, ../../private/scss/core/_header-login-box.scss */
.account-box:before {
  top: -8px;
  right: 102px;
  border-bottom-color: #CCBDB1;
  border-width: 0 9px 8px 9px;
}

/* Fill */
/* line 246, ../../private/scss/core/_header-login-box.scss */
.account-box:after {
  top: -7px;
  right: 102px;
  border-bottom-color: #eee;
  border-width: 0 9px 8px 9px;
}

/* line 256, ../../private/scss/core/_header-login-box.scss */
.open-account-box .small-screen-triggers .account-box-trigger span:before {
  content: "";
  background: url("/images/close-section-icon.png") no-repeat;
  width: 14px;
  height: 14px;
  display: block;
  margin-top: 6px;
  background-size: cover;
}
/* line 267, ../../private/scss/core/_header-login-box.scss */
.open-account-box .account-box {
  display: block;
}

/*  Forgot Password Block */
/* line 276, ../../private/scss/core/_header-login-box.scss */
.forgot-password-block {
  display: none;
  text-align: left;
  margin-top: -6px;
}
@media (min-width: 1024px) {
  /* line 276, ../../private/scss/core/_header-login-box.scss */
  .forgot-password-block {
    margin-top: 2px;
  }
}
/* line 285, ../../private/scss/core/_header-login-box.scss */
.forgot-password-block h3 {
  color: #A59D7E;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
/* line 293, ../../private/scss/core/_header-login-box.scss */
.forgot-password-block button {
  margin-right: 12px;
  font-size: 14px;
}

/* line 300, ../../private/scss/core/_header-login-box.scss */
.open-forgot-password .login-block {
  display: none;
}

/* line 304, ../../private/scss/core/_header-login-box.scss */
.open-forgot-password .forgot-password-block {
  display: block;
}

/*********************************************
  :: Footer                           
********************************************/
/* line 4, ../../private/scss/core/_footer.scss */
footer {
  float: left;
  width: 100%;
  text-align: center;
  background: #525358;
}
@media (min-width: 1024px) {
  /* line 4, ../../private/scss/core/_footer.scss */
  footer {
    /*width: 122.25%;*/
    /*padding-left: 120px;*/
    /*padding-right: 120px;*/
    /*margin-left: -120px;*/
    /*margin-top: 0px;*/
  }
}

@media (min-width: 1024px) {
  /* line 20, ../../private/scss/core/_footer.scss */
  .right-section {
    float: right;
    width: auto;
  }
}
/* line 26, ../../private/scss/core/_footer.scss */
.right-section .right-social-icons {
  display: none;
  float: right;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  /* line 26, ../../private/scss/core/_footer.scss */
  .right-section .right-social-icons {
    display: block;
  }
}
/* line 37, ../../private/scss/core/_footer.scss */
.right-section .right-social-icons a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  line-height: 25px;
  margin-left: 11px;
}
/* line 44, ../../private/scss/core/_footer.scss */
.right-section .right-social-icons a:first-of-type {
  margin-left: 0px;
}

/* line 54, ../../private/scss/core/_footer.scss */
.back-to-top-trigger {
  background: none;
  text-transform: none;
  color: #666666;
  font-size: 13px;
  line-height: 21px;
  padding: 0px;
}
@media (min-width: 1024px) {
  /* line 54, ../../private/scss/core/_footer.scss */
  .back-to-top-trigger {
    float: right;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
    margin-top: 3px;
    font-weight: 500;
  }
}
/* line 71, ../../private/scss/core/_footer.scss */
.back-to-top-trigger:hover, .back-to-top-trigger:focus {
  background: none;
  color: #666666;
}
/* line 76, ../../private/scss/core/_footer.scss */
.back-to-top-trigger span {
  display: block;
  font-size: 6px;
  color: #BBBBBB;
  margin-left: 3px;
  margin-bottom: 2px;
}
@media (min-width: 1024px) {
  /* line 76, ../../private/scss/core/_footer.scss */
  .back-to-top-trigger span {
    float: right;
    margin-top: 7px;
    margin-left: 7px;
    color: #54565A;
    font-size: 5px;
  }
}

/* line 95, ../../private/scss/core/_footer.scss */
.footer-top {
  float: left;
  width: 100%;
  background: white;
  padding: 7px 0px 14px 0px;
  text-align: center;
}
@media (min-width: 1024px) {
  /* line 95, ../../private/scss/core/_footer.scss */
  .footer-top {
    padding: 7px 150px 14px 150px;
  }
}
@media (min-width: 1280px) {
  /* line 95, ../../private/scss/core/_footer.scss */
  .footer-top {
    padding: 7px 120px 14px 120px;
  }
}

/* line 110, ../../private/scss/core/_footer.scss */
.breadcrumbs {
  float: left;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  /* line 110, ../../private/scss/core/_footer.scss */
  .breadcrumbs {
    display: block;
    float: left;
    width: auto;
  }
}
/* line 121, ../../private/scss/core/_footer.scss */
.breadcrumbs ul {
  margin: 0px;
  padding: 0px;
}
/* line 126, ../../private/scss/core/_footer.scss */
.breadcrumbs li {
  margin: 0px;
  float: left;
}
/* line 130, ../../private/scss/core/_footer.scss */
.breadcrumbs li:before {
  display: none;
}
/* line 134, ../../private/scss/core/_footer.scss */
.breadcrumbs li:after {
  content: "/";
  color: #999;
  margin-right: 5px;
}
/* line 141, ../../private/scss/core/_footer.scss */
.breadcrumbs li:last-of-type:after {
  display: none;
}
/* line 148, ../../private/scss/core/_footer.scss */
.breadcrumbs a {
  text-decoration: none;
  color: #999;
  font-size: 14px;
  margin-right: 5px;
}

/* line 157, ../../private/scss/core/_footer.scss */
.footer-middle {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 157, ../../private/scss/core/_footer.scss */
  .footer-middle {
    padding-top: 50px;
    padding-bottom: 5px;
    padding-left: 150px;
    padding-right: 150px;
  }
}
@media (min-width: 1280px) {
  /* line 157, ../../private/scss/core/_footer.scss */
  .footer-middle {
    padding-top: 50px;
    padding-bottom: 5px;
    padding-left: 120px;
    padding-right: 120px;
  }
}

/* line 179, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu {
  display: none;
  float: left;
  width: auto;
  text-align: left;
}
/* line 185, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu > ul {
  margin: 0px;
  float: left;
  width: 155px;
  padding-top: 8px;
  padding-bottom: 10px;
}
/* line 193, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu li {
  margin-bottom: 10px;
}
/* line 195, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu li:before {
  display: none;
}
/* line 200, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}
/* line 207, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu a:hover, .large-screen-footer-menu a:focus {
  text-decoration: underline;
}
/* line 213, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .primary {
  width: 152px;
}
/* line 217, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary {
  width: 290px;
  padding-left: 43px;
  margin-right: 45px;
  position: relative;
}
/* line 223, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary:before, .large-screen-footer-menu .secondary:after {
  content: "";
  position: absolute;
  top: 0px;
  height: 100%;
  width: 1px;
  background: #737373;
  display: block;
}
/* line 233, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary:before {
  left: -2px;
}
/* line 237, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary:after {
  right: -2px;
}
/* line 241, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary ul {
  float: left;
  width: 45%;
  margin: 0px;
  margin-right: 10%;
}
/* line 246, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary ul:last-of-type {
  margin-right: 0%;
}
/* line 251, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary li {
  width: 100%;
  float: left;
  margin-bottom: 10px;
  line-height: 15px;
}
/* line 258, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .secondary a {
  color: #CCCCCC;
  font-weight: 400;
  font-size: 15px;
}
/* line 266, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .tertiary {
  padding-left: 5px;
}
/* line 268, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu .tertiary a {
  font-size: 13px;
  line-height: 16px;
  color: #AAAAAA;
  text-transform: uppercase;
  font-weight: 300;
}
@media (min-width: 1024px) {
  /* line 179, ../../private/scss/core/_footer.scss */
  .large-screen-footer-menu {
    display: block;
  }
}

/* line 284, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu.footer-menu-variation .secondary {
  border-left: none;
  padding-left: 0px;
}
/* line 288, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu.footer-menu-variation .secondary:before {
  display: none;
}
/* line 292, ../../private/scss/core/_footer.scss */
.large-screen-footer-menu.footer-menu-variation .secondary li {
  width: 100%;
}

/* line 299, ../../private/scss/core/_footer.scss */
.small-screen-footer-social-icons {
  float: left;
  width: 100%;
  margin-top: 28px;
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  /* line 299, ../../private/scss/core/_footer.scss */
  .small-screen-footer-social-icons {
    display: none;
  }
}
/* line 309, ../../private/scss/core/_footer.scss */
.small-screen-footer-social-icons a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  line-height: 25px;
  margin-left: 11px;
}
/* line 316, ../../private/scss/core/_footer.scss */
.small-screen-footer-social-icons a:first-of-type {
  margin-left: 0px;
}

/* line 326, ../../private/scss/core/_footer.scss */
.footer-contact-info {
  float: left;
  width: 100%;
  text-align: center;
  margin-right: 10px;
}
/* line 332, ../../private/scss/core/_footer.scss */
.footer-contact-info .large-screen-footer-logo {
  display: none;
  background: url("../images/footer-logo.png") no-repeat;
  width: 250px;
  height: 55px;
  margin-top: -6px;
}
@media (min-width: 1024px) {
  /* line 332, ../../private/scss/core/_footer.scss */
  .footer-contact-info .large-screen-footer-logo {
    display: block;
  }
}
/* line 345, ../../private/scss/core/_footer.scss */
.footer-contact-info p, .footer-contact-info a {
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 326, ../../private/scss/core/_footer.scss */
  .footer-contact-info {
    width: auto;
    clear: both;
    text-align: right;
  }
}
/* line 355, ../../private/scss/core/_footer.scss */
.footer-contact-info .number {
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  /* line 355, ../../private/scss/core/_footer.scss */
  .footer-contact-info .number {
    font-size: 18px;
    line-height: 30px;
  }
}
/* line 371, ../../private/scss/core/_footer.scss */
.footer-contact-info .small-screen-address {
  color: white;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 22px;
  margin-bottom: 19px;
}
@media (min-width: 1024px) {
  /* line 371, ../../private/scss/core/_footer.scss */
  .footer-contact-info .small-screen-address {
    display: none;
  }
}

/* Brown Paper Bag Container */
/* line 386, ../../private/scss/core/_footer.scss */
.brownpaperbag-container {
  float: left;
  width: 100%;
  margin-bottom: 21px;
}
@media (min-width: 1024px) {
  /* line 386, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container {
    margin-bottom: 0px;
    padding-bottom: 25px;
    padding-left: 160px;
    padding-right: 160px;
    margin-top: 13px;
  }
  /* line 398, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .left-section {
    float: left;
  }
  /* line 402, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .right-section {
    float: right;
  }
}
@media (min-width: 1280px) {
  /* line 386, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container {
    margin-bottom: 0px;
    padding-bottom: 25px;
    padding-left: 120px;
    padding-right: 120px;
    margin-top: 13px;
  }
  /* line 415, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .left-section {
    float: left;
  }
  /* line 419, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .right-section {
    float: right;
  }
}
/* line 426, ../../private/scss/core/_footer.scss */
.brownpaperbag-container a, .brownpaperbag-container p {
  color: #888;
  margin: 0px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  line-height: 13px;
  font-size: 12px;
}
/* line 435, ../../private/scss/core/_footer.scss */
.brownpaperbag-container a {
  border-bottom: 1px solid white;
  margin-right: 10px;
}
/* line 440, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .attribution {
  border: none;
  margin: 10px 0px 0px 0px;
  display: block;
}
@media (min-width: 1024px) {
  /* line 440, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .attribution {
    margin: 0px;
  }
}

/*********************************************
  :: Main Section                             
********************************************/
/* line 4, ../../private/scss/core/_general.scss */
.main {
  float: left;
  width: 100%;
  padding: 10px 20px 40px 20px;
  border-bottom: 1px solid #DDDDDD;
  min-height: 500px;
  /* Typography Styling inside the content area */
}
@media (min-width: 1024px) {
  /* line 4, ../../private/scss/core/_general.scss */
  .main {
    padding-bottom: 40px;
  }
}
/* line 16, ../../private/scss/core/_general.scss */
.main > p:last-of-type {
  margin-bottom: 0px;
}

@media (min-width: 1024px) {
  /* line 22, ../../private/scss/core/_general.scss */
  .small-screen-only {
    display: none;
  }
}

/* line 28, ../../private/scss/core/_general.scss */
.large-screen-only {
  display: none;
}
@media (min-width: 1024px) {
  /* line 28, ../../private/scss/core/_general.scss */
  .large-screen-only {
    display: block;
  }
}

/* line 35, ../../private/scss/core/_general.scss */
.clear {
  clear: both;
}

/* line 39, ../../private/scss/core/_general.scss */
.clearleft {
  clear: left;
}

/* line 43, ../../private/scss/core/_general.scss */
.decorative-heading {
  font-size: 16px;
  line-height: 23px;
  color: #444444;
  margin-bottom: 8px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  /* line 43, ../../private/scss/core/_general.scss */
  .decorative-heading {
    font-size: 24px;
    line-height: 50px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
  }
  /* line 58, ../../private/scss/core/_general.scss */
  .decorative-heading:before {
    content: "";
    width: 71px;
    height: 52px;
    display: inline-block;
    background: url("../images/header-decoration.png");
    margin-right: 60px;
  }
  /* line 67, ../../private/scss/core/_general.scss */
  .decorative-heading:after {
    content: "";
    width: 71px;
    height: 52px;
    display: inline-block;
    background: url("../images/header-decoration.png");
    margin-left: 60px;
  }
}

/* line 81, ../../private/scss/core/_general.scss */
.container-max-width {
  /*@include breakpoint(gt1280){*/
  /*  max-width: 1310px;*/
  /*  margin: 0 auto;*/
  /*  position: absolute;*/
  /*  left: 50%;*/
  /*  margin-left: -660px;*/
  /*  padding-left: 120px;*/
  /*  background: white;*/
  /*  padding-right: 120px;*/
  /*  box-shadow: 0px 0px 50px -10px #CDCDCD;*/
  /*}*/
}
@media (min-width: 1024px) {
  /* line 81, ../../private/scss/core/_general.scss */
  .container-max-width {
    width: 1310px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -660px;
    background: white;
    box-shadow: 0px 0px 50px -10px #CDCDCD;
  }
}

/* line 107, ../../private/scss/core/_general.scss */
.max-width-block {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 107, ../../private/scss/core/_general.scss */
  .max-width-block {
    padding-left: 150px;
    padding-right: 150px;
  }
}
@media (min-width: 1280px) {
  /* line 107, ../../private/scss/core/_general.scss */
  .max-width-block {
    padding-left: 120px;
    padding-right: 120px;
  }
}

/* line 122, ../../private/scss/core/_general.scss */
.full-max-width {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 122, ../../private/scss/core/_general.scss */
  .full-max-width {
    padding: 0px;
  }
}

/* Content Header */
/* line 134, ../../private/scss/core/_general.scss */
.content-header {
  float: left;
  width: 100%;
}
/* line 138, ../../private/scss/core/_general.scss */
.content-header h1 {
  float: left;
  margin-bottom: 5px;
}
/* line 143, ../../private/scss/core/_general.scss */
.content-header h2 {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
}
/* line 150, ../../private/scss/core/_general.scss */
.content-header .back-button {
  float: right;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: #888;
  position: relative;
}
/* line 158, ../../private/scss/core/_general.scss */
.content-header .back-button:before {
  content: "";
  background: url("../images/left-arrow.png");
  width: 7px;
  height: 11px;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: 5px;
}

/* Featured Image - Generally the main image inside a news article */
/* line 175, ../../private/scss/core/_general.scss */
.featured-image {
  float: left;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* line 180, ../../private/scss/core/_general.scss */
.featured-image img {
  display: block;
}

/* Share Buttons - Generally for an article */
/* line 187, ../../private/scss/core/_general.scss */
.share-actions {
  float: left;
  width: 100%;
  margin-top: 10px;
}
/* line 192, ../../private/scss/core/_general.scss */
.share-actions img {
  float: left;
  margin-right: 10px;
}
/* line 197, ../../private/scss/core/_general.scss */
.share-actions a {
  text-decoration: none;
  display: block;
  float: left;
  font-size: 14px;
  margin-right: 20px;
}

/*
 * Content Block
 * A more comprehensive content block with a fancy heading for <h2>
*/
/* line 212, ../../private/scss/core/_general.scss */
.content-block {
  float: left;
  width: 100%;
  margin-top: 15px;
}
/* line 217, ../../private/scss/core/_general.scss */
.content-block h2 {
  font-size: 18px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
/* line 224, ../../private/scss/core/_general.scss */
.content-block a {
  color: #888;
  font-weight: bold;
}

/*
 * Accordion List with Crosses
 * An Accordion list (and sub lists) with crosses
*/
/* line 236, ../../private/scss/core/_general.scss */
.accordion-list {
  /* First Level */
  /* Second Level */
}
/* line 238, ../../private/scss/core/_general.scss */
.accordion-list a {
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
/* line 246, ../../private/scss/core/_general.scss */
.accordion-list > ul > li:before {
  content: "+";
  background: none;
  width: auto;
  height: auto;
  top: 0px;
  left: -18px;
  font-weight: bold;
  font-size: 14px;
}
/* line 258, ../../private/scss/core/_general.scss */
.accordion-list > ul > li.open-list {
  color: #999;
}
/* line 260, ../../private/scss/core/_general.scss */
.accordion-list > ul > li.open-list:before {
  content: "-";
  color: #000;
}
/* line 268, ../../private/scss/core/_general.scss */
.accordion-list > ul > li > ul {
  display: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 274, ../../private/scss/core/_general.scss */
.accordion-list > ul > li.open-list > ul {
  display: block;
}
/* line 278, ../../private/scss/core/_general.scss */
.accordion-list li.open-list li:first-of-type {
  text-transform: uppercase;
}
/* line 280, ../../private/scss/core/_general.scss */
.accordion-list li.open-list li:first-of-type a {
  font-weight: bold;
}
/* line 285, ../../private/scss/core/_general.scss */
.accordion-list li.open-list li {
  margin: 0px;
}
/* line 287, ../../private/scss/core/_general.scss */
.accordion-list li.open-list li:before {
  content: "-";
  background: none;
  width: auto;
  height: auto;
  top: 0px;
  left: -18px;
  font-weight: bold;
  font-size: 14px;
}
/* line 299, ../../private/scss/core/_general.scss */
.accordion-list li.open-list a {
  font-weight: normal;
}

/*********************************************
  :: Views                       
********************************************/
/*********************************************
  :: Homepage                             
********************************************/
/* line 5, ../../private/scss/views/_home.scss */
.page-home {
  /*.featherlight .featherlight-content{*/
  /*  padding: 0px;*/
  /*  vertical-align: top;*/
  /*  top: 25px;*/
  /*  background: none;*/
  /*}*/
  /**/
  /*.featherlight .featherlight-close-icon{*/
  /*  top: 30px;*/
  /*  right: 15px;*/
  /*}*/
}
/* line 7, ../../private/scss/views/_home.scss */
.page-home .main {
  padding: 0px;
  border: none;
  min-height: initial;
}
@media (min-width: 1024px) {
  /* line 7, ../../private/scss/views/_home.scss */
  .page-home .main {
    border-bottom: 1px solid #DDDDDD;
    padding: 0px;
  }
}
/* line 19, ../../private/scss/views/_home.scss */
.page-home .header-max-width-block {
  position: relative;
  z-index: 6;
  background: rgba(255, 255, 255, 0.9);
}
@media (min-width: 1024px) {
  /* line 37, ../../private/scss/views/_home.scss */
  .page-home .large-screen-menu-section {
    border-bottom: none;
  }
}

/* Hero Image */
/* line 48, ../../private/scss/views/_home.scss */
.hero-image {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 48, ../../private/scss/views/_home.scss */
  .hero-image {
    margin-top: -65px;
    position: relative;
    z-index: 5;
    background-color: #C4C3C0;
  }
  /* line 58, ../../private/scss/views/_home.scss */
  .hero-image img {
    margin-top: 64px;
  }
}

/* Home Variation Strip */
/* line 66, ../../private/scss/views/_home.scss */
.home-variation-strip {
  float: left;
  width: 100%;
  background-color: grey;
  background-size: cover;
}
/* line 72, ../../private/scss/views/_home.scss */
.home-variation-strip h1 {
  font-style: italic;
  font-weight: 100;
  font-size: 30px;
  line-height: 30px;
  color: white;
  float: left;
  margin-bottom: 0px;
  padding: 10px 10px 10px 0px;
}
/* line 83, ../../private/scss/views/_home.scss */
.home-variation-strip a {
  font-weight: 100;
  font-size: 14px;
  line-height: 30px;
  color: white;
  float: right;
  margin-bottom: 0px;
  padding: 10px 10px 10px 0px;
  text-transform: uppercase;
}

/* Featured Blocks */
/* line 97, ../../private/scss/views/_home.scss */
.home-featured-blocks {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 97, ../../private/scss/views/_home.scss */
  .home-featured-blocks {
    max-width: 790px;
    float: left;
    margin-left: 250px;
  }
}
/* line 107, ../../private/scss/views/_home.scss */
.home-featured-blocks .block {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 107, ../../private/scss/views/_home.scss */
  .home-featured-blocks .block {
    width: 50%;
  }
}
/* line 117, ../../private/scss/views/_home.scss */
.home-featured-blocks img {
  width: 100%;
}

/* Multi Popup */
/* line 125, ../../private/scss/views/_home.scss */
.homepage-popup {
  float: left;
  width: 100%;
  max-width: 520px;
  display: none;
}

/*  Popup Logo */
/* line 133, ../../private/scss/views/_home.scss */
.popup-logo {
  float: left;
  width: 100%;
  text-align: center;
  background: white;
  margin-bottom: 3px;
  padding-bottom: 10px;
  padding-top: 10px;
}
/* line 142, ../../private/scss/views/_home.scss */
.popup-logo img {
  display: inline-block;
  width: 305px;
}

/*  Popup Events */
/* line 150, ../../private/scss/views/_home.scss */
.popup-events {
  float: left;
  width: 100%;
  text-align: left;
  background: white;
  margin-bottom: 2px;
  padding: 20px;
}
/* line 158, ../../private/scss/views/_home.scss */
.popup-events p {
  margin-bottom: 10px;
  line-height: 20px;
}
/* line 163, ../../private/scss/views/_home.scss */
.popup-events .event {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
  margin-bottom: 20px;
}
/* line 169, ../../private/scss/views/_home.scss */
.popup-events .event:last-of-type {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 5px;
}

/*  Popup Notification */
/* line 179, ../../private/scss/views/_home.scss */
.popup-notification {
  float: left;
  width: 100%;
  text-align: left;
  background: white;
  margin-bottom: 3px;
  padding: 20px;
}
/* line 187, ../../private/scss/views/_home.scss */
.popup-notification p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 20px;
}

/*********************************************
  :: About Us                             
********************************************/
/* line 6, ../../private/scss/views/_aboutus.scss */
.page-about-us .internal-banner-image {
  float: left;
  height: 150px;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  /* line 6, ../../private/scss/views/_aboutus.scss */
  .page-about-us .internal-banner-image {
    display: block;
  }
}
@media (min-width: 1024px) {
  /* line 19, ../../private/scss/views/_aboutus.scss */
  .page-about-us .main {
    padding-left: 275px;
    padding-top: 20px;
  }
  /* line 24, ../../private/scss/views/_aboutus.scss */
  .page-about-us .large-screen-menu-section {
    border-bottom: none;
  }
}

/*********************************************
  :: Testimonials                            
********************************************/
/* line 6, ../../private/scss/views/_testimonials.scss */
.page-testimonials .internal-banner-image {
  float: left;
  height: 150px;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  /* line 6, ../../private/scss/views/_testimonials.scss */
  .page-testimonials .internal-banner-image {
    display: block;
  }
}
/* line 18, ../../private/scss/views/_testimonials.scss */
.page-testimonials .main {
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  /* line 23, ../../private/scss/views/_testimonials.scss */
  .page-testimonials .main {
    padding-left: 275px;
    padding-top: 20px;
    padding-right: 8px;
  }
  /* line 29, ../../private/scss/views/_testimonials.scss */
  .page-testimonials .large-screen-menu-section {
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  /* line 34, ../../private/scss/views/_testimonials.scss */
  .page-testimonials h1 {
    font-size: 28px;
    margin-bottom: 17px;
  }
}

/* line 43, ../../private/scss/views/_testimonials.scss */
.testimonials-container {
  float: left;
  width: 100%;
}

/* line 48, ../../private/scss/views/_testimonials.scss */
.testimonial-block {
  float: left;
  width: 100%;
}
/* line 52, ../../private/scss/views/_testimonials.scss */
.testimonial-block .header {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 18px;
  padding-top: 5px;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  /* line 52, ../../private/scss/views/_testimonials.scss */
  .testimonial-block .header {
    margin-top: 0px;
  }
}
/* line 67, ../../private/scss/views/_testimonials.scss */
.testimonial-block h2 {
  font-size: 13.5px;
  line-height: 18px;
  color: #A59D7E;
  font-weight: 600;
  float: left;
}
@media (min-width: 1024px) {
  /* line 67, ../../private/scss/views/_testimonials.scss */
  .testimonial-block h2 {
    font-size: 16px;
    line-height: 20px;
  }
}
/* line 81, ../../private/scss/views/_testimonials.scss */
.testimonial-block strong {
  font-weight: 600;
}
/* line 85, ../../private/scss/views/_testimonials.scss */
.testimonial-block .testimonial-trigger {
  float: right;
  font-size: 12px;
  line-height: 18px;
  background: none;
  border: none;
  outline: none;
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
  color: #1F1F1F;
  font-weight: 700;
  text-transform: none;
  position: relative;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  /* line 85, ../../private/scss/views/_testimonials.scss */
  .testimonial-block .testimonial-trigger {
    font-size: 12.5px;
    padding-right: 25px;
  }
}
/* line 106, ../../private/scss/views/_testimonials.scss */
.testimonial-block .testimonial-trigger:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e600";
  font-size: 5px;
  line-height: 6px;
  margin-left: 10px;
  color: #54565A;
  position: absolute;
  top: 6px;
  right: 3px;
}
/* line 127, ../../private/scss/views/_testimonials.scss */
.testimonial-block .content {
  float: left;
  width: 100%;
  height: 122px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  /* line 127, ../../private/scss/views/_testimonials.scss */
  .testimonial-block .content {
    height: 80px;
  }
}
/* line 137, ../../private/scss/views/_testimonials.scss */
.testimonial-block .content p {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 137, ../../private/scss/views/_testimonials.scss */
  .testimonial-block .content p {
    line-height: 23px;
  }
}

/* line 150, ../../private/scss/views/_testimonials.scss */
.testimonial-block.block-expanded .content {
  height: auto;
}
/* line 155, ../../private/scss/views/_testimonials.scss */
.testimonial-block.block-expanded .testimonial-trigger:after {
  content: "\e60d";
  top: 5px;
}

/*********************************************
  :: Special Events                            
********************************************/
/* line 6, ../../private/scss/views/_special-events.scss */
.page-special-events .internal-banner-image {
  float: left;
  height: 150px;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  /* line 6, ../../private/scss/views/_special-events.scss */
  .page-special-events .internal-banner-image {
    display: block;
  }
}
/* line 18, ../../private/scss/views/_special-events.scss */
.page-special-events .main {
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  /* line 23, ../../private/scss/views/_special-events.scss */
  .page-special-events .main {
    padding-left: 275px;
    padding-top: 20px;
    padding-right: 0px;
  }
  /* line 29, ../../private/scss/views/_special-events.scss */
  .page-special-events .large-screen-menu-section {
    border-bottom: none;
  }
}
@media (max-width: 1024px) {
  /* line 34, ../../private/scss/views/_special-events.scss */
  .page-special-events .featherlight-content {
    vertical-align: top !important;
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  /* line 41, ../../private/scss/views/_special-events.scss */
  .page-special-events h1 {
    font-size: 29px;
  }
}
@media (min-width: 1024px) {
  /* line 47, ../../private/scss/views/_special-events.scss */
  .page-special-events .main p {
    line-height: 22px;
    margin-bottom: 13px;
  }
}

/* Grid Gallery Container + Infinite scroll */
/* line 57, ../../private/scss/views/_special-events.scss */
.grid-gallery-container {
  float: left;
  width: 100%;
  margin-top: 19px;
}
/* line 62, ../../private/scss/views/_special-events.scss */
.grid-gallery-container img {
  height: auto;
}
@media (min-width: 1024px) {
  /* line 62, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container img {
    height: 345px;
  }
}
/* line 70, ../../private/scss/views/_special-events.scss */
.grid-gallery-container .gallery-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
/* line 79, ../../private/scss/views/_special-events.scss */
.grid-gallery-container .gallery-image a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
/* line 85, ../../private/scss/views/_special-events.scss */
.grid-gallery-container .gallery-image {
  float: left;
  display: block;
  width: 48%;
  margin-bottom: 10px;
  margin-right: 10px;
  height: 178px;
  overflow: hidden;
}
@media (min-width: 340px) {
  /* line 85, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image {
    height: 195px;
  }
}
@media (min-width: 400px) {
  /* line 85, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image {
    height: 250px;
  }
}
@media (min-width: 600px) {
  /* line 85, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image {
    height: 370px;
  }
}
@media (min-width: 760px) {
  /* line 85, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image {
    height: 420px;
  }
}
/* line 110, ../../private/scss/views/_special-events.scss */
.grid-gallery-container .gallery-image:nth-of-type(2n+2) {
  margin-right: 0px;
}
/* line 113, ../../private/scss/views/_special-events.scss */
.grid-gallery-container .gallery-image:nth-of-type(2n+2) img {
  width: 345px;
}
@media (min-width: 860px) {
  /* line 85, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image {
    height: 460px;
  }
}
@media (min-width: 1024px) {
  /* line 85, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image {
    width: 31%;
    max-width: 250px;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 310px;
    overflow: hidden;
  }
  /* line 131, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image:nth-of-type(2n+2) {
    margin-right: 20px;
  }
  /* line 134, ../../private/scss/views/_special-events.scss */
  .grid-gallery-container .gallery-image:nth-of-type(3n+3) {
    margin-right: 0px;
  }
}

/* line 143, ../../private/scss/views/_special-events.scss */
.grid-gallery-caption {
  float: left;
  width: 100%;
  padding: 10px 10px 1px 0px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #444;
}

/*********************************************
  :: Contact Us                             
********************************************/
/* line 6, ../../private/scss/views/_contactus.scss */
.page-contact-us .internal-banner-image {
  float: left;
  height: 150px;
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  /* line 6, ../../private/scss/views/_contactus.scss */
  .page-contact-us .internal-banner-image {
    display: block;
  }
}
/* line 18, ../../private/scss/views/_contactus.scss */
.page-contact-us .main {
  padding-bottom: 35px;
}
@media (min-width: 1024px) {
  /* line 23, ../../private/scss/views/_contactus.scss */
  .page-contact-us .main {
    padding-left: 275px;
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 45px;
  }
  /* line 30, ../../private/scss/views/_contactus.scss */
  .page-contact-us .large-screen-menu-section {
    border-bottom: none;
  }
}
/* line 35, ../../private/scss/views/_contactus.scss */
.page-contact-us .main {
  text-align: center;
}
@media (min-width: 1024px) {
  /* line 35, ../../private/scss/views/_contactus.scss */
  .page-contact-us .main {
    text-align: left;
  }
}
/* line 42, ../../private/scss/views/_contactus.scss */
.page-contact-us .main h2 {
  font-size: 13px;
  line-height: 21px;
  font-weight: 500;
  color: #AAAAAA;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 42, ../../private/scss/views/_contactus.scss */
  .page-contact-us .main h2 {
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
  }
}
/* line 57, ../../private/scss/views/_contactus.scss */
.page-contact-us .main a {
  color: #1F1F1F;
}
@media (min-width: 1024px) {
  /* line 57, ../../private/scss/views/_contactus.scss */
  .page-contact-us .main a {
    font-size: 14px;
    line-height: 20px;
  }
}

/* line 69, ../../private/scss/views/_contactus.scss */
.contact-map-link {
  margin-top: 15px;
  display: block;
  color: #6C462B;
}
@media (min-width: 1024px) {
  /* line 69, ../../private/scss/views/_contactus.scss */
  .contact-map-link {
    display: none;
  }
}

/* line 80, ../../private/scss/views/_contactus.scss */
.contact-phone-link {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
@media (min-width: 1024px) {
  /* line 80, ../../private/scss/views/_contactus.scss */
  .contact-phone-link {
    font-size: 16px !important;
    line-height: 18px !important;
  }
}

/* line 90, ../../private/scss/views/_contactus.scss */
.contact-email-link {
  font-size: 13px;
  line-height: 24px;
  display: inline-block;
}
@media (min-width: 1024px) {
  /* line 90, ../../private/scss/views/_contactus.scss */
  .contact-email-link {
    text-decoration: none;
  }
}

/* line 99, ../../private/scss/views/_contactus.scss */
.contactus-map {
  display: none;
}
@media (min-width: 1024px) {
  /* line 99, ../../private/scss/views/_contactus.scss */
  .contactus-map {
    display: block;
    width: 450px;
    float: left;
  }
}

/* line 108, ../../private/scss/views/_contactus.scss */
.contact-information-block {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  /* line 108, ../../private/scss/views/_contactus.scss */
  .contact-information-block {
    text-align: left;
    margin-bottom: 7px;
    margin-top: 8px;
  }
}
/* line 120, ../../private/scss/views/_contactus.scss */
.contact-information-block p {
  margin-bottom: 0px;
  color: #202020;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1024px) {
  /* line 120, ../../private/scss/views/_contactus.scss */
  .contact-information-block p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* line 134, ../../private/scss/views/_contactus.scss */
.email-block {
  margin-bottom: 13px;
}

@media (min-width: 1024px) {
  /* line 139, ../../private/scss/views/_contactus.scss */
  .large-screen-section-wrapper {
    float: left;
    width: 450px;
  }
  /* line 143, ../../private/scss/views/_contactus.scss */
  .large-screen-section-wrapper h2 {
    float: left;
    width: 95px;
    display: block;
  }
  /* line 149, ../../private/scss/views/_contactus.scss */
  .large-screen-section-wrapper .content {
    float: left;
  }

  /* line 155, ../../private/scss/views/_contactus.scss */
  .address-block p {
    font-size: 15px;
  }
}
/* line 160, ../../private/scss/views/_contactus.scss */
.store-hours-block {
  padding-bottom: 12px;
  padding-top: 8px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 9px;
}
@media (min-width: 1024px) {
  /* line 160, ../../private/scss/views/_contactus.scss */
  .store-hours-block {
    padding: 0px;
    border: none;
    width: auto;
  }
}
/* line 173, ../../private/scss/views/_contactus.scss */
.store-hours-block .content {
  max-width: 193px;
  display: inline-block;
}
/* line 178, ../../private/scss/views/_contactus.scss */
.store-hours-block h2 {
  margin-bottom: 10px !important;
}
/* line 182, ../../private/scss/views/_contactus.scss */
.store-hours-block strong {
  width: 100px;
  text-align: left;
  float: left;
  display: inline-block;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  /* line 182, ../../private/scss/views/_contactus.scss */
  .store-hours-block strong {
    font-weight: 700;
    font-size: 16px;
  }
}
/* line 194, ../../private/scss/views/_contactus.scss */
.store-hours-block p {
  width: 100%;
  text-align: left;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px !important;
}

/* line 203, ../../private/scss/views/_contactus.scss */
.contact-information-container,
.contact-form-container,
.contact-us-form {
  float: left;
  width: 100%;
}

@media (min-width: 1024px) {
  /* line 210, ../../private/scss/views/_contactus.scss */
  .contact-form-container {
    border-top: 1px solid #DDDDDD;
    padding-top: 40px;
    margin-top: 20px;
  }
}

@media (min-width: 1024px) {
  /* line 218, ../../private/scss/views/_contactus.scss */
  .contact-us-form {
    width: 255px;
  }
}
@media (min-width: 1280px) {
  /* line 218, ../../private/scss/views/_contactus.scss */
  .contact-us-form {
    width: 342px;
  }
}
/* line 228, ../../private/scss/views/_contactus.scss */
.contact-us-form h2 {
  margin-bottom: 10px !important;
}
@media (min-width: 1024px) {
  /* line 228, ../../private/scss/views/_contactus.scss */
  .contact-us-form h2 {
    font-size: 15px !important;
    line-height: 13px !important;
  }
}
/* line 236, ../../private/scss/views/_contactus.scss */
.contact-us-form label {
  text-transform: none;
  font-size: 13px;
}
@media (min-width: 1024px) {
  /* line 236, ../../private/scss/views/_contactus.scss */
  .contact-us-form label {
    margin-bottom: 0px;
    margin-top: 9px;
  }
}
/* line 247, ../../private/scss/views/_contactus.scss */
.contact-us-form .form-field {
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  /* line 247, ../../private/scss/views/_contactus.scss */
  .contact-us-form .form-field {
    margin-bottom: 0px;
  }
}
/* line 254, ../../private/scss/views/_contactus.scss */
.contact-us-form .form-field:last-of-type {
  margin-bottom: 0px;
}
/* line 258, ../../private/scss/views/_contactus.scss */
.contact-us-form .form-field:nth-last-of-type(2) {
  margin-bottom: 5px;
}
/* line 262, ../../private/scss/views/_contactus.scss */
.contact-us-form .form-field .form-note {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 262, ../../private/scss/views/_contactus.scss */
  .contact-us-form .form-field .form-note {
    float: left;
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  /* line 272, ../../private/scss/views/_contactus.scss */
  .contact-us-form .button-field {
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  /* line 278, ../../private/scss/views/_contactus.scss */
  .contact-us-form button {
    float: right;
    font-size: 12px;
  }
}

/*********************************************
  :: Register                           
********************************************/
@media (min-width: 1024px) {
  /* line 7, ../../private/scss/views/_register.scss */
  .page-register .main {
    padding-left: 270px;
    padding-top: 17px;
  }
}
/* line 13, ../../private/scss/views/_register.scss */
.page-register .main {
  text-align: center;
}
@media (min-width: 1024px) {
  /* line 13, ../../private/scss/views/_register.scss */
  .page-register .main {
    text-align: left;
  }
}
/* line 20, ../../private/scss/views/_register.scss */
.page-register .main h1 {
  margin-bottom: 21px;
}
/* line 24, ../../private/scss/views/_register.scss */
.page-register .main p {
  margin-bottom: 12px;
}

/* line 32, ../../private/scss/views/_register.scss */
.register-form-container {
  float: left;
  width: 100%;
  margin-top: 12px;
  text-align: left;
  max-width: 700px;
}
/* line 39, ../../private/scss/views/_register.scss */
.register-form-container hr {
  margin-bottom: 18px;
  margin-top: 16px;
}
/* line 44, ../../private/scss/views/_register.scss */
.register-form-container .form-field {
  margin-bottom: 14px;
}
/* line 48, ../../private/scss/views/_register.scss */
.register-form-container .button-field {
  margin-top: 5px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
/* line 52, ../../private/scss/views/_register.scss */
.register-form-container .button-field button {
  font-size: 13px;
}
/* line 54, ../../private/scss/views/_register.scss */
.register-form-container .button-field button span {
  font-size: 17px;
}
/* line 60, ../../private/scss/views/_register.scss */
.register-form-container #address-line-one, .register-form-container #address1 {
  margin-bottom: 5px;
}

/*********************************************
  :: Homepage                             
********************************************/
/* line 7, ../../private/scss/views/_product-category.scss */
.page-productgrid-category-search .main {
  padding: 10px 20px 0px 20px;
  border: none;
}
@media (min-width: 1024px) {
  /* line 7, ../../private/scss/views/_product-category.scss */
  .page-productgrid-category-search .main {
    border-bottom: 1px solid #DDDDDD;
    padding: 0px 0px 40px 0px;
  }
}

/* Product Grid Banner */
/* line 21, ../../private/scss/views/_product-category.scss */
.product-grid-banner {
  float: left;
  height: 50px;
  float: left;
  width: 100%;
  background-color: grey;
  background-size: cover;
  display: none;
}
@media (min-width: 1024px) {
  /* line 21, ../../private/scss/views/_product-category.scss */
  .product-grid-banner {
    display: block;
  }
}
/* line 34, ../../private/scss/views/_product-category.scss */
.product-grid-banner .heading {
  font-style: italic;
  font-weight: 100;
  font-size: 30px;
  line-height: 30px;
  color: white;
  margin-bottom: 0px;
  display: block;
  padding: 10px 10px 10px 0px;
}

/* Product Header */
/* line 48, ../../private/scss/views/_product-category.scss */
.product-grid-header {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 48, ../../private/scss/views/_product-category.scss */
  .product-grid-header {
    padding-bottom: 39px;
    padding-top: 30px;
  }
}
@media (min-width: 1024px) {
  /* line 57, ../../private/scss/views/_product-category.scss */
  .product-grid-header h1 {
    float: left;
    width: auto;
    margin-bottom: 0px;
    font-size: 29px;
  }
}

/* Product Grid Filter */
/* line 69, ../../private/scss/views/_product-category.scss */
.product-grid-filter {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 69, ../../private/scss/views/_product-category.scss */
  .product-grid-filter {
    float: right;
    width: 500px;
  }
}
@media (min-width: 1024px) {
  /* line 78, ../../private/scss/views/_product-category.scss */
  .product-grid-filter .small-screen-only {
    display: none;
  }
}
/* line 84, ../../private/scss/views/_product-category.scss */
.product-grid-filter .large-screen-only {
  display: none;
}
@media (min-width: 1024px) {
  /* line 84, ../../private/scss/views/_product-category.scss */
  .product-grid-filter .large-screen-only {
    display: block;
  }
}
/* line 92, ../../private/scss/views/_product-category.scss */
.product-grid-filter select, .product-grid-filter .sod_select {
  background-color: white;
  font-size: 14px;
  line-height: 20px;
  height: 32px;
}
/* line 98, ../../private/scss/views/_product-category.scss */
.product-grid-filter select:after, .product-grid-filter .sod_select:after {
  top: 9px;
  right: 6px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  /* line 92, ../../private/scss/views/_product-category.scss */
  .product-grid-filter select, .product-grid-filter .sod_select {
    width: 210px;
    font-size: 16.5px;
    line-height: 25px;
    height: 37px;
    float: left;
  }
  /* line 111, ../../private/scss/views/_product-category.scss */
  .product-grid-filter select:after, .product-grid-filter .sod_select:after {
    top: 10px;
    right: 10px;
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  /* line 121, ../../private/scss/views/_product-category.scss */
  .product-grid-filter form, .product-grid-filter .showing-pages {
    float: right;
    width: auto;
  }
}
/* line 128, ../../private/scss/views/_product-category.scss */
.product-grid-filter .showing-pages {
  margin-right: 68px;
  margin-bottom: 0px;
  margin-top: 7px;
  color: #999;
}
/* line 133, ../../private/scss/views/_product-category.scss */
.product-grid-filter .showing-pages strong {
  font-weight: 700;
  color: black;
}
/* line 139, ../../private/scss/views/_product-category.scss */
.product-grid-filter label.large-screen-only {
  float: left;
  width: auto;
  margin-right: 15px;
  text-transform: none;
  margin-top: 7px;
}
/* line 147, ../../private/scss/views/_product-category.scss */
.product-grid-filter .sort-by.large-screen-only {
  float: left;
}
@media (min-width: 1024px) {
  /* line 151, ../../private/scss/views/_product-category.scss */
  .product-grid-filter .form-field {
    margin-bottom: 0px;
  }
}

/* Product Grid */
/* line 161, ../../private/scss/views/_product-category.scss */
.product-grid {
  float: left;
  width: 100%;
}
/* line 165, ../../private/scss/views/_product-category.scss */
.product-grid .product-grid-item {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  /*background: #f8f8f8;*/
}
/* line 173, ../../private/scss/views/_product-category.scss */
.product-grid .image {
  float: left;
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 0px;
  position: relative;
}
/* line 181, ../../private/scss/views/_product-category.scss */
.product-grid .image img {
  display: inline-block;
  vertical-align: bottom;
}
/* line 187, ../../private/scss/views/_product-category.scss */
.product-grid .details {
  float: left;
  width: 100%;
  text-align: center;
  padding: 3px 0px 0px 0px;
}
@media (min-width: 1024px) {
  /* line 187, ../../private/scss/views/_product-category.scss */
  .product-grid .details {
    padding: 10px 0px 0px 0px;
  }
}
/* line 199, ../../private/scss/views/_product-category.scss */
.product-grid h2, .product-grid a {
  color: #666666;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin: 0px;
  text-decoration: none;
}
@media (min-width: 1024px) {
  /* line 199, ../../private/scss/views/_product-category.scss */
  .product-grid h2, .product-grid a {
    font-size: 18px;
    line-height: 24px;
  }
}
/* line 214, ../../private/scss/views/_product-category.scss */
.product-grid .product-title {
  height: 40px;
  display: block;
  overflow: hidden;
}
@media (min-width: 1024px) {
  /* line 214, ../../private/scss/views/_product-category.scss */
  .product-grid .product-title {
    height: 48px;
  }
}
/* line 224, ../../private/scss/views/_product-category.scss */
.product-grid .from {
  color: #999999;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 5px;
  display: block;
}
@media (min-width: 1024px) {
  /* line 224, ../../private/scss/views/_product-category.scss */
  .product-grid .from {
    font-size: 14px;
    line-height: 20px;
  }
}
/* line 239, ../../private/scss/views/_product-category.scss */
.product-grid .grid-price {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 3px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  /* line 239, ../../private/scss/views/_product-category.scss */
  .product-grid .grid-price {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
/* line 252, ../../private/scss/views/_product-category.scss */
.product-grid .grid-price span {
  font-size: 13px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  /* line 252, ../../private/scss/views/_product-category.scss */
  .product-grid .grid-price span {
    font-size: 14px;
    line-height: 21px;
  }
}
/* line 265, ../../private/scss/views/_product-category.scss */
.product-grid .slashed-price {
  color: #666;
  text-decoration: line-through;
}
/* line 270, ../../private/scss/views/_product-category.scss */
.product-grid .highlighted-price {
  color: #000;
}
/* line 273, ../../private/scss/views/_product-category.scss */
.product-grid .highlighted-price span {
  color: #FF0000;
}

/* Product Sold Out Overlay */
/* line 282, ../../private/scss/views/_product-category.scss */
.product-sold-out {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background-color: transparent;
  background-color: rgba(240, 224, 209, 0.8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCF0E0D1,endColorstr=#CCF0E0D1);
  zoom: 1;
  font-size: 20px;
  color: white;
  text-align: center;
  padding-top: 130px;
  font-weight: 400;
  text-shadow: 0px 0px 14px #909090;
}
@media (min-width: 1024px) {
  /* line 282, ../../private/scss/views/_product-category.scss */
  .product-sold-out {
    padding-top: 205px;
  }
}
/* line 300, ../../private/scss/views/_product-category.scss */
.product-sold-out:before {
  content: "";
  background: url("../images/product-overlay-decoration.png");
  height: 101px;
  width: 136px;
  display: block;
  position: absolute;
  bottom: 55px;
  left: 50%;
  margin-left: -68px;
}
@media (min-width: 1024px) {
  /* line 300, ../../private/scss/views/_product-category.scss */
  .product-sold-out:before {
    bottom: 135px;
  }
}

/* Product Grid Item ==== Grid (widths and margins) */
/* line 321, ../../private/scss/views/_product-category.scss */
.product-grid .product-grid-item {
  width: 49%;
  margin-bottom: 4%;
  /*height: 400px;*/
  margin-right: 2%;
}
/* line 327, ../../private/scss/views/_product-category.scss */
.product-grid .product-grid-item .image img {
  width: 135px;
  height: 180px;
}
@media (min-width: 1024px) {
  /* line 327, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item .image img {
    width: auto;
    height: auto;
  }
}
/* line 338, ../../private/scss/views/_product-category.scss */
.product-grid .product-grid-item:nth-of-type(2n + 2) {
  margin-right: 0%;
}
@media (min-width: 600px) {
  /* line 321, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item {
    margin-right: 4%;
    width: 48%;
    /*height: 380px;*/
  }
}
@media (min-width: 760px) {
  /* line 321, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item {
    margin-right: 3%;
    margin-bottom: 3%;
    width: 31.33%;
    height: 340px;
  }
  /* line 354, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(2n + 2) {
    margin-right: 3%;
  }
  /* line 358, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(2n + 3) {
    margin-right: 3%;
  }
  /* line 362, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(3n) {
    margin-right: 0%;
  }
}
@media (min-width: 1024px) {
  /* line 321, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item {
    margin-right: 2%;
    margin-bottom: 2%;
    width: 23.5%;
    height: 520px;
  }
  /* line 375, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(2n + 1) {
    margin-right: 2%;
  }
  /* line 379, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(2n + 2) {
    margin-right: 2%;
  }
  /* line 383, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(2n + 3) {
    margin-right: 2%;
  }
  /* line 387, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(3n) {
    margin-right: 2%;
  }
  /* line 391, ../../private/scss/views/_product-category.scss */
  .product-grid .product-grid-item:nth-of-type(4n) {
    margin-right: 0%;
  }
}

/* Product Grid Footer */
/* line 401, ../../private/scss/views/_product-category.scss */
.product-grid-footer {
  float: left;
  width: 100%;
}

/* Product Grid Pagination */
/* line 407, ../../private/scss/views/_product-category.scss */
.product-grid-pagination {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 25px;
}
/* line 413, ../../private/scss/views/_product-category.scss */
.product-grid-pagination ul {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}
/* line 419, ../../private/scss/views/_product-category.scss */
.product-grid-pagination li {
  display: inline-block;
  margin-right: 10px;
}
/* line 422, ../../private/scss/views/_product-category.scss */
.product-grid-pagination li:before {
  display: none;
}
/* line 427, ../../private/scss/views/_product-category.scss */
.product-grid-pagination a {
  text-decoration: none;
  font-size: 18px;
  color: #ccc;
  font-weight: 600;
}
/* line 433, ../../private/scss/views/_product-category.scss */
.product-grid-pagination a:hover, .product-grid-pagination a:focus {
  color: #A59D7E;
}
/* line 439, ../../private/scss/views/_product-category.scss */
.product-grid-pagination .current a {
  color: #A59D7E;
}
/* line 443, ../../private/scss/views/_product-category.scss */
.product-grid-pagination button {
  font-size: 13px;
  width: 27px;
  height: 30px;
  padding: 5px;
}
/* line 450, ../../private/scss/views/_product-category.scss */
.product-grid-pagination .previous-page-button {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
/* line 455, ../../private/scss/views/_product-category.scss */
.product-grid-pagination .next-page-button {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

/*********************************************
  :: Product Detail                             
********************************************/
/* line 6, ../../private/scss/views/_product-detail.scss */
.page-product-detail .main {
  padding: 0px;
}
/* line 10, ../../private/scss/views/_product-detail.scss */
.page-product-detail .large-screen-only {
  display: none;
}
@media (min-width: 1024px) {
  /* line 15, ../../private/scss/views/_product-detail.scss */
  .page-product-detail .main {
    padding-top: 35px;
  }
  /* line 19, ../../private/scss/views/_product-detail.scss */
  .page-product-detail .small-screen-only {
    display: none;
  }
  /* line 23, ../../private/scss/views/_product-detail.scss */
  .page-product-detail .large-screen-only {
    display: block;
  }
}
/* line 29, ../../private/scss/views/_product-detail.scss */
.page-product-detail .back-button {
  float: left;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
/* line 34, ../../private/scss/views/_product-detail.scss */
.page-product-detail .back-button .button {
  background: none;
  font-size: 13px;
  color: #525359;
  text-transform: none;
  border-radius: 0px;
  padding: 5px 5px 5px 15px;
  border-right: 1px solid #CCCCCC;
}
/* line 44, ../../private/scss/views/_product-detail.scss */
.page-product-detail .back-button span {
  font-size: 9px;
  margin-right: 3px;
  margin-top: -1px;
}
/* line 52, ../../private/scss/views/_product-detail.scss */
.page-product-detail .featherlight-content {
  /*padding: 10px 10px 0 !important;*/
  /*vertical-align: middle !important;*/
  /*top: auto !important;*/
  /*background: white !important;*/
}
@media (max-width: 1024px) {
  /* line 52, ../../private/scss/views/_product-detail.scss */
  .page-product-detail .featherlight-content {
    vertical-align: top !important;
    margin-top: 10px;
  }
}
/* line 63, ../../private/scss/views/_product-detail.scss */
.page-product-detail .featherlight-close-icon {
  /*top: 20px !important;*/
  /*right: 20px !important;*/
}

/* line 70, ../../private/scss/views/_product-detail.scss */
.product-images-and-small-screen-content {
  float: left;
  width: 100%;
  margin-top: 14px;
}
@media (min-width: 1024px) {
  /* line 70, ../../private/scss/views/_product-detail.scss */
  .product-images-and-small-screen-content {
    width: 37%;
    margin-top: 0px;
  }
}

/* line 82, ../../private/scss/views/_product-detail.scss */
.product-images {
  float: left;
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  /* line 82, ../../private/scss/views/_product-detail.scss */
  .product-images {
    text-align: left;
  }
}
/* line 91, ../../private/scss/views/_product-detail.scss */
.product-images h1 {
  margin-bottom: 10px;
}
/* line 95, ../../private/scss/views/_product-detail.scss */
.product-images img {
  width: 175px;
  height: 230px;
  display: inline-block;
  cursor: pointer;
}
@media (min-width: 1024px) {
  /* line 95, ../../private/scss/views/_product-detail.scss */
  .product-images img {
    width: 26%;
    height: auto;
    float: left;
    margin-bottom: 15px;
  }
  /* line 107, ../../private/scss/views/_product-detail.scss */
  .product-images img:first-of-type {
    margin-right: 6%;
    margin-bottom: 0;
    width: auto;
    max-width: 63.2%;
  }
  /* line 114, ../../private/scss/views/_product-detail.scss */
  .product-images img:last-of-type {
    margin-bottom: 0px;
  }
}
@media (min-width: 1280px) {
  /* line 95, ../../private/scss/views/_product-detail.scss */
  .product-images img {
    width: 30%;
  }
}
/* line 126, ../../private/scss/views/_product-detail.scss */
.product-images .images-container {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 126, ../../private/scss/views/_product-detail.scss */
  .product-images .images-container {
    position: relative;
  }
}
/* line 136, ../../private/scss/views/_product-detail.scss */
.product-images .product-sold-out {
  display: none;
}
@media (min-width: 1024px) {
  /* line 136, ../../private/scss/views/_product-detail.scss */
  .product-images .product-sold-out {
    display: block;
    width: 250px;
  }
}
/* line 144, ../../private/scss/views/_product-detail.scss */
.product-images .images-note {
  float: left;
  width: 100%;
  margin: 0px;
  margin-top: 5px;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 16px;
  color: #999999;
}
@media (min-width: 1024px) {
  /* line 144, ../../private/scss/views/_product-detail.scss */
  .product-images .images-note {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) {
  /* line 163, ../../private/scss/views/_product-detail.scss */
  .small-screen-product-actions {
    display: none;
  }
}

/* line 169, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form-trigger {
  border-radius: 0px;
  border-bottom: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
  text-transform: none;
  float: left;
  width: 100%;
  text-align: left;
  padding: 10px 20px 10px 20px;
  position: relative;
  font-size: 13px;
}
/* line 181, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form-trigger:after {
  content: "";
  position: absolute;
  top: 14px;
  right: 20px;
  width: 14px;
  height: 14px;
  display: block;
  background: url("../images/accordion-expand.png");
}
/* line 192, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form-trigger:hover, .small-screen-actions-form-trigger:focus {
  background: #525358;
}

/* line 200, ../../private/scss/views/_product-detail.scss */
.open-small-screen-actions-form .small-screen-actions-form-trigger:after {
  width: 14px;
  height: 4px;
  top: 19px;
  background: url("../images/accordion-collapse.png");
}

/* line 209, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form {
  float: left;
  width: 100%;
  display: none;
}
/* line 214, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form h2, .small-screen-actions-form label {
  color: #111111;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}
/* line 221, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form h2 {
  margin-bottom: 5px;
}
/* line 225, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form label {
  font-size: 12px;
  line-height: 19px;
  margin-right: 0px !important;
  width: 100% !important;
  border: 1px solid #DDDDDD;
  margin-bottom: 0px;
  border-bottom: none;
  padding: 7px;
}
/* line 237, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .form-field {
  margin: 0px;
  padding: 10px 20px 20px 20px;
  border-bottom: 1px solid #DDDDDD;
}
/* line 243, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .form-field label:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}
/* line 250, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .price {
  float: right;
  color: #A59D7E;
  font-size: 13px;
}
/* line 256, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .option-note {
  float: left;
  width: 100%;
  font-size: 11px;
  color: #999999;
  font-weight: 400;
  margin-left: 23px;
}
/* line 265, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-special-price {
  padding-top: 19px;
}
/* line 268, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-special-price .old-price {
  position: relative;
  color: #999;
}
/* line 272, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-special-price .old-price .price {
  color: #999;
}
/* line 276, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-special-price .old-price:before {
  content: "";
  background: #999;
  height: 2px;
  width: 96%;
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 5px;
}
/* line 290, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-color-choice {
  padding-bottom: 10px;
}
/* line 293, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-color-choice .option-note {
  float: none;
  display: inline-block;
  text-align: center;
  margin: 0px;
  line-height: 16px;
  margin-top: 10px;
}
/* line 304, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-gift-wrap label {
  border: none !important;
  padding: 0px;
}
/* line 309, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-gift-wrap {
  padding-bottom: 10px;
}
/* line 313, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .quantity-label {
  float: left;
  width: 100px !important;
  border: none !important;
  margin-right: 30px !important;
  padding: 0px;
  position: relative;
}
/* line 321, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .quantity-label span {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #AAAAAA;
  font-weight: 600;
}
/* line 329, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .quantity-label input {
  border: 1px solid #A59D7E;
  border-radius: 6px;
  padding-left: 35px;
  font-size: 14px;
  color: #000;
}
/* line 339, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .add-to-cart-btn {
  float: left;
  font-size: 13px;
}
/* line 344, ../../private/scss/views/_product-detail.scss */
.small-screen-actions-form .product-quanity-addtocart {
  padding-bottom: 10px;
  padding-top: 12px;
}

/* line 353, ../../private/scss/views/_product-detail.scss */
.open-small-screen-actions-form .small-screen-actions-form {
  display: block;
}

/* line 357, ../../private/scss/views/_product-detail.scss */
.small-screen-product-description {
  float: left;
  width: 100%;
  padding: 20px;
}
@media (min-width: 1024px) {
  /* line 357, ../../private/scss/views/_product-detail.scss */
  .small-screen-product-description {
    display: none;
  }
}
/* line 366, ../../private/scss/views/_product-detail.scss */
.small-screen-product-description p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 16px;
  color: #444444;
}

/* line 375, ../../private/scss/views/_product-detail.scss */
.lightbox-product-image {
  float: left;
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  /* line 375, ../../private/scss/views/_product-detail.scss */
  .lightbox-product-image {
    text-align: left;
  }
}
/* line 384, ../../private/scss/views/_product-detail.scss */
.lightbox-product-image img {
  display: inline-block;
}
/* line 388, ../../private/scss/views/_product-detail.scss */
.lightbox-product-image .images-note {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 11px;
  line-height: 15px;
  color: #999999;
}
@media (min-width: 1024px) {
  /* line 398, ../../private/scss/views/_product-detail.scss */
  .lightbox-product-image .images-note {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 16px;
  }
  /* line 404, ../../private/scss/views/_product-detail.scss */
  .lightbox-product-image .images-note a {
    display: inline;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
  }
}

/* line 416, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content {
  display: none;
  float: left;
  width: 63%;
  padding-left: 54px;
  padding-top: 7px;
}
/* line 423, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-description {
  margin-bottom: 17px;
  line-height: 22px;
}
@media (min-width: 1024px) {
  /* line 416, ../../private/scss/views/_product-detail.scss */
  .large-screen-product-content {
    display: block;
  }
}
/* line 432, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content h2 {
  color: #AAAAAA;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
/* line 440, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field label {
  float: left;
  width: 100% !important;
  font-weight: 700;
  color: #202020;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 22px;
}
/* line 449, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field label:last-of-type {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
/* line 456, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field {
  padding: 10px 0px 2px 5px;
  border-top: 1px solid #DDDDDD;
}
/* line 460, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field:last-of-type {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
/* line 467, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .price {
  color: #A59D7E;
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  width: 120px;
  display: inline-block;
}
/* line 476, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .option-note {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #999999;
}
/* line 483, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .label {
  vertical-align: top;
}
/* line 487, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-special-pricing {
  padding: 17px 0px 2px 0px;
}
/* line 489, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-special-pricing .old-price {
  font-size: 15.5px;
  color: #999;
  position: relative;
  margin-bottom: 7px;
  display: inline-block;
  width: auto !important;
  margin-right: 0px;
}
/* line 497, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-special-pricing .old-price .price {
  font-size: 18px;
  margin-left: 18px;
  color: #999;
  width: auto !important;
}
/* line 503, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-special-pricing .old-price .price-slashed {
  /*content: "";*/
  background: #999;
  height: 2px;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 11px;
  left: 1px;
}
/* line 516, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-special-pricing .current-price .price {
  margin-left: 18px;
}
/* line 525, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-sizing-options label {
  margin-bottom: 4px;
}
/* line 529, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-sizing-options .label {
  width: 135px;
  text-align: left;
  vertical-align: top;
  display: inline-block;
}
/* line 539, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-wrapping-options .price,
.large-screen-product-content .product-gift-wrap .price {
  font-size: 15px;
  line-height: 22px;
  margin-left: 10px;
  font-weight: 700;
}
/* line 547, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-gift-wrap {
  padding: 17px 0px 5px 0px;
}
/* line 551, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-color-choice .option-note {
  float: left;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 10px;
}
/* line 558, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .product-quanity-addtocart {
  padding-top: 21px;
}
/* line 562, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field .quantity-label {
  float: left;
  width: 115px !important;
  margin-right: 28px;
}
/* line 567, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field .quantity-label span {
  color: #AAAAAA;
  margin-right: 3px;
}
/* line 572, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .form-field .quantity-label input {
  width: 77px;
  border: 1px solid #A59D7E;
  border-radius: 6px;
  background: white;
  text-align: center;
  color: black;
  font-weight: 700;
  font-size: 14px;
}
/* line 585, ../../private/scss/views/_product-detail.scss */
.large-screen-product-content .add-to-cart-btn {
  font-size: 13px;
}

/* line 591, ../../private/scss/views/_product-detail.scss */
.product-addtocart-accept {
  display: none;
  max-width: 500px;
  padding: 5px;
}
/* line 596, ../../private/scss/views/_product-detail.scss */
.product-addtocart-accept p {
  color: #444444;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 596, ../../private/scss/views/_product-detail.scss */
  .product-addtocart-accept p {
    font-size: 14px;
    line-height: 22px;
  }
}
/* line 609, ../../private/scss/views/_product-detail.scss */
.product-addtocart-accept .button {
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
@media (min-width: 400px) {
  /* line 609, ../../private/scss/views/_product-detail.scss */
  .product-addtocart-accept .button {
    margin-bottom: 0px;
  }
}
/* line 620, ../../private/scss/views/_product-detail.scss */
.product-addtocart-accept .close-lightbox-trigger {
  margin-bottom: 0px;
}

/* line 627, ../../private/scss/views/_product-detail.scss */
.related-products {
  float: left;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #DDDDDD;
}
/* line 634, ../../private/scss/views/_product-detail.scss */
.related-products .decorative-heading {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  /* line 627, ../../private/scss/views/_product-detail.scss */
  .related-products {
    padding: 0px;
    margin-top: 35px;
    padding-top: 27px;
    padding-bottom: 20px;
  }
}

/* line 647, ../../private/scss/views/_product-detail.scss */
.lightbox-image-container img {
  max-width: 395px;
  max-height: 190px;
}

/* line 652, ../../private/scss/views/_product-detail.scss */
.enlarged-image-container {
  display: none;
}
/* line 654, ../../private/scss/views/_product-detail.scss */
.enlarged-image-container img {
  max-width: 900px;
  max-height: 900px;
}

/*********************************************
  :: SHopping Cart                             
********************************************/
/* line 7, ../../private/scss/views/_shopping-cart.scss */
.page-shopping-cart .main {
  padding: 10px 0px 0px 0px;
}
@media (min-width: 1024px) {
  /* line 11, ../../private/scss/views/_shopping-cart.scss */
  .page-shopping-cart .main h1 {
    margin-top: 20px;
  }
}
@media (min-width: 1024px) {
  /* line 7, ../../private/scss/views/_shopping-cart.scss */
  .page-shopping-cart .main {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 26px;
  }
}
/* line 23, ../../private/scss/views/_shopping-cart.scss */
.page-shopping-cart .large-screen-only {
  display: none;
}
@media (min-width: 1024px) {
  /* line 23, ../../private/scss/views/_shopping-cart.scss */
  .page-shopping-cart .large-screen-only {
    display: block;
  }
}

/* line 33, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container {
  float: left;
  width: 100%;
  padding: 10px 20px 20px 20px;
}
@media (min-width: 1024px) {
  /* line 33, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container {
    padding: 22px 0px 0px 0px;
  }
}
/* line 42, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item {
  float: left;
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px dashed #DDDDDD;
  position: relative;
}
/* line 50, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item:nth-last-of-type(3) {
  border-bottom: none;
  margin-bottom: 0px;
}
/* line 57, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container [class^="cart-item-"] {
  float: left;
  width: 100%;
}
/* line 62, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-action {
  float: right;
  width: auto;
  position: absolute;
  top: 0px;
  right: 0px;
}
@media (min-width: 1024px) {
  /* line 62, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-action {
    position: static;
    float: left;
    width: 50px;
    margin-top: 35px;
  }
}
/* line 78, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-action button {
  background: transparent url("../images/remove-cart-icon.png") no-repeat;
  padding: 0px;
  width: 23px;
  height: 23px;
  display: block;
  text-indent: -9999px;
}
@media (min-width: 1024px) {
  /* line 87, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-image {
    width: 130px;
  }
}
@media (min-width: 1024px) {
  /* line 93, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-content {
    width: 490px;
  }
}
/* line 99, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-content h2 {
  max-width: 80%;
  font-size: 13px;
  line-height: 18px;
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 99, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-content h2 {
    font-size: 14px;
    margin-bottom: 17px;
  }
}
/* line 114, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-content ul {
  margin: 0px;
}
/* line 118, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-content li {
  margin-bottom: 0px;
  line-height: 16px;
  font-size: 13px;
}
@media (min-width: 1024px) {
  /* line 118, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-content li {
    line-height: 17px;
    font-size: 14px;
    color: #666;
  }
}
/* line 129, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-content li:before {
  display: none;
}
/* line 133, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-content li .price {
  font-size: 12px;
  color: #A59D7E;
  font-weight: 600;
}
/* line 143, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-price-per-item {
  float: right;
  width: auto;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  /* line 143, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-price-per-item {
    width: 145px;
    float: left;
    margin: 0px;
  }
}
/* line 154, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-price-per-item p {
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
  color: #000;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 154, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-price-per-item p {
    font-size: 16px;
  }
}
/* line 169, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-quantity {
  width: auto;
}
@media (min-width: 1024px) {
  /* line 169, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-quantity {
    width: 125px;
  }
}
/* line 176, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-quantity label {
  color: #AAAAAA;
  font-size: 14px;
  line-height: 15px;
  float: left;
  width: auto;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 176, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-quantity label {
    font-weight: 400;
    margin-top: 3px;
  }
}
/* line 193, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-quantity select {
  float: left;
  width: auto;
  margin-left: 10px;
  height: auto;
}
@media (min-width: 1024px) {
  /* line 193, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-quantity select {
    width: 80px;
    margin-top: -6px;
  }
}
@media (min-width: 1024px) {
  /* line 208, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-price-item-total {
    width: 130px;
    text-align: right;
  }
}
/* line 214, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .cart-item-price-item-total p {
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
  color: #000;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 214, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .cart-item-price-item-total p {
    font-size: 16px;
  }
}
/* line 230, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .form-field {
  margin-bottom: 0px;
}
/* line 234, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box-trigger {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 234, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .message-box-trigger {
    margin-bottom: 0px;
    margin-top: 6px;
  }
}
/* line 243, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box-trigger label {
  color: red;
  font-weight: bold;
}
/* line 249, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box {
  display: none;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 249, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .message-box {
    margin-bottom: 0px;
    margin-top: 10px;
  }
}
/* line 258, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box label {
  font-size: 13px;
}
/* line 262, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box label span {
  text-transform: none;
}
/* line 268, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box textarea:-moz-placeholder {
  color: red !important;
}
/* line 271, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box textarea::-moz-placeholder {
  color: red !important;
}
/* line 274, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box textarea:-ms-input-placeholder {
  color: red !important;
}
/* line 277, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .message-box textarea::-webkit-input-placeholder {
  color: red !important;
}
@media (min-width: 1024px) {
  /* line 266, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .message-box textarea {
    width: 430px;
  }
}
/* line 288, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .open-message-box.message-box {
  display: block;
}
/* line 292, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .shopping-cart-total {
  float: left;
  width: 100%;
  border-top: 2px solid #D6D6D6;
  border-bottom: 2px solid #D6D6D6;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  /* line 292, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total {
    padding-top: 10px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 10px;
    text-align: right;
    margin-bottom: 7px;
  }
}
/* line 309, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .shopping-cart-total .total {
  text-transform: uppercase;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  text-align: right;
  color: #000;
}
@media (min-width: 1024px) {
  /* line 309, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total .total {
    font-size: 18px;
    line-height: 16px;
    display: block;
    float: right;
    margin-top: 10px;
  }
}
/* line 326, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .shopping-cart-total .total .text {
  float: left;
  font-weight: 400;
}
@media (min-width: 1024px) {
  /* line 326, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total .total .text {
    float: none;
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  /* line 337, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total .total .price {
    width: 160px;
    display: inline-block;
  }
}
/* line 346, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .shopping-cart-total .coupon {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  text-align: right;
  color: #A59D7B;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 346, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total .coupon {
    font-size: 16px;
    line-height: 18px;
    display: block;
    float: right;
    margin: 0px;
    padding: 0px;
    border: none;
  }
}
/* line 367, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .shopping-cart-total .coupon .text {
  float: left;
  font-weight: 600;
  color: #666666;
  font-size: 13px;
  line-height: 17px;
}
@media (min-width: 1024px) {
  /* line 367, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total .coupon .text {
    float: none;
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  /* line 381, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .shopping-cart-total .coupon .price {
    width: 160px;
    display: inline-block;
  }
}
/* line 392, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .promo-code-field {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid #D6D6D6;
}
@media (min-width: 1024px) {
  /* line 397, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-field label {
    width: auto;
    margin-right: 10px;
    margin-top: 7px;
  }
}
/* line 405, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .promo-code-field input {
  width: 72%;
  float: left;
  margin-right: 3%;
}
@media (min-width: 1024px) {
  /* line 405, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-field input {
    width: 340px;
    margin-right: 10px;
  }
}
/* line 414, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .promo-code-field button {
  width: 25%;
  float: left;
  font-size: 13px;
}
@media (min-width: 1024px) {
  /* line 414, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-field button {
    width: auto;
  }
}
@media (min-width: 1024px) {
  /* line 392, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-field {
    float: left;
    width: 540px;
    padding: 0px;
    margin: 0px;
    border: none;
  }
}
@media (min-width: 1024px) {
  /* line 435, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-applied {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  /* line 439, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-applied .promo-code-field {
    margin-top: 5px;
  }
  /* line 443, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .promo-code-applied .total {
    margin-top: -8px;
    clear: both;
  }
}
/* line 453, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .shopping-cart-footer {
  float: left;
  width: 100%;
}
/* line 458, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .special-instructions {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  /* line 458, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .special-instructions {
    margin: 0px;
    max-width: 430px;
    width: auto;
  }
}
/* line 467, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .special-instructions label {
  font-size: 13px;
  color: red;
  font-weight: bold;
}
@media (min-width: 1024px) {
  /* line 473, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .special-instructions textarea {
    width: 430px;
  }
}
/* line 481, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .buttons {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 481, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .buttons {
    float: right;
    width: auto;
    margin-top: 13px;
  }
}
/* line 491, ../../private/scss/views/_shopping-cart.scss */
.shopping-cart-container .buttons a {
  font-size: 13px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 491, ../../private/scss/views/_shopping-cart.scss */
  .shopping-cart-container .buttons a {
    margin-bottom: 0px;
    margin-left: 15px;
  }
}

/*********************************************
  :: SHopping Cart                             
********************************************/
/* line 7, ../../private/scss/views/_checkout-flow.scss */
.page-checkout-flow .main {
  padding: 20px;
}
@media (min-width: 1024px) {
  /* line 7, ../../private/scss/views/_checkout-flow.scss */
  .page-checkout-flow .main {
    border-bottom: 1px solid #DDDDDD;
    padding: 40px 0px 48px 0px;
  }
}
/* line 18, ../../private/scss/views/_checkout-flow.scss */
.page-checkout-flow .featherlight-content {
  /*padding: 10px 10px 0 !important;*/
  /*vertical-align: middle !important;*/
  /*top: auto !important;*/
  /*background: white !important;*/
}
@media (max-width: 1024px) {
  /* line 18, ../../private/scss/views/_checkout-flow.scss */
  .page-checkout-flow .featherlight-content {
    max-width: 300px;
    vertical-align: top !important;
    margin-top: 10px;
  }
}
/* line 30, ../../private/scss/views/_checkout-flow.scss */
.page-checkout-flow .featherlight-close-icon {
  /*top: 20px !important;*/
  /*right: 20px !important;*/
}

/* line 39, ../../private/scss/views/_checkout-flow.scss */
.checkout-sidebar {
  float: left;
  width: 100%;
  padding: 15px 15px 0px 15px;
  border: 1px solid #CCCCCC;
  margin-bottom: 20px;
  display: none;
}
@media (min-width: 1024px) {
  /* line 39, ../../private/scss/views/_checkout-flow.scss */
  .checkout-sidebar {
    float: left;
    width: 23.5%;
    margin-right: 5%;
    display: block;
  }
}
/* line 54, ../../private/scss/views/_checkout-flow.scss */
.checkout-sidebar h2 {
  color: #AAAAAA;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
/* line 62, ../../private/scss/views/_checkout-flow.scss */
.checkout-sidebar .price {
  font-size: 20px;
  color: #000;
  margin-bottom: 26px;
  font-weight: 600;
  display: block;
  line-height: 17px;
}

/* line 74, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 74, ../../private/scss/views/_checkout-flow.scss */
  .checkout-steps {
    margin-bottom: 20px;
  }
}
/* line 83, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps ul {
  margin: 0px;
  padding: 0px;
}
/* line 88, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps li {
  margin: 0px;
  text-transform: uppercase;
  float: left;
  text-align: center;
  width: 25%;
  color: #444444;
  font-size: 11px;
}
@media (min-width: 1024px) {
  /* line 88, ../../private/scss/views/_checkout-flow.scss */
  .checkout-steps li {
    border-bottom: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    padding: 12px 0px 12px 0px;
  }
}
/* line 103, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps li:before {
  display: none;
}
/* line 107, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps li:last-of-type {
  border-right: none;
}
/* line 113, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps span {
  display: none;
}
@media (min-width: 1024px) {
  /* line 113, ../../private/scss/views/_checkout-flow.scss */
  .checkout-steps span {
    display: inline;
  }
}
/* line 120, ../../private/scss/views/_checkout-flow.scss */
.checkout-steps .current {
  font-weight: 700;
}

/* line 126, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container {
  float: left;
  width: 100%;
  text-align: left;
}
/* line 131, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container h1 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 18px;
}
@media (min-width: 1024px) {
  /* line 131, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container h1 {
    font-size: 24px;
    margin-bottom: 22px;
    line-height: 20px;
  }
}
/* line 144, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container h2 {
  color: #AAAAAA;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  /* line 144, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container h2 {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1024px) {
  /* line 159, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container form {
    padding-right: 2%;
  }
}
@media (min-width: 1024px) {
  /* line 126, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container {
    float: right;
    width: 66.5%;
  }
}
/* line 170, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container hr {
  margin-bottom: 18px;
  margin-top: 16px;
}
/* line 175, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .form-field {
  margin-bottom: 14px;
}
/* line 179, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .button-field {
  text-align: left;
  margin-top: 15px;
  border-top: 1px solid #CCCCCC;
  padding-top: 23px;
}
@media (max-width: 1024px) {
  /* line 179, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container .button-field {
    margin-bottom: 0px;
    margin-top: 5px;
    padding-top: 10px;
  }
}
@media (min-width: 1024px) {
  /* line 179, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container .button-field {
    text-align: right;
  }
}
/* line 195, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .button-field a, .checkout-content-container .button-field button {
  margin-right: 15px;
  font-size: 13px;
  float: left;
  clear: Both;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 195, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container .button-field a, .checkout-content-container .button-field button {
    margin-right: 0px;
    margin-left: 15px;
    float: none;
    clear: none;
    margin-bottom: 0px;
  }
}
/* line 214, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .title-field .sod_select {
  width: 160px;
}
@media (min-width: 1024px) {
  /* line 214, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container .title-field .sod_select {
    width: 100%;
  }
}
/* line 221, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container #address-line-one, .checkout-content-container #address1 {
  margin-bottom: 5px;
}
/* line 225, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .delivery-information {
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 225, ../../private/scss/views/_checkout-flow.scss */
  .checkout-content-container .delivery-information {
    padding: 10px 0px 10px 0px;
    border-top: 1px solid #CCCCCC;
  }
}
/* line 237, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .calendar-field {
  width: 210px;
  margin-right: 70px;
}
/* line 242, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .calendar-field input {
  float: left;
  width: 160px;
}
/* line 247, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .calendar-field .icon-calendar {
  float: left;
  margin-left: 15px;
  font-size: 30px;
  line-height: 37px;
  cursor: pointer;
}
/* line 255, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container .form-note {
  float: left;
  width: 100%;
  margin-bottom: 5px;
  margin-top: 10px;
}
/* line 262, ../../private/scss/views/_checkout-flow.scss */
.checkout-content-container #js-what-time-pickup {
  display: none;
}

/* line 267, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-details {
  float: left;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  padding-top: 10px;
  border-bottom: 1px solid #CCCCCC;
}
@media (min-width: 1024px) {
  /* line 267, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-details {
    padding-bottom: 30px;
  }
}
/* line 278, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-details p {
  margin-bottom: 0px;
}
/* line 282, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-details .checkout-review-address {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  /* line 282, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-details .checkout-review-address {
    width: 50%;
    margin-bottom: 0px;
  }
}
/* line 292, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-details .checkout-review-address strong {
  color: #000;
}

/* line 300, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-shipping {
  float: left;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid #CCCCCC;
}
@media (min-width: 1024px) {
  /* line 300, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-shipping {
    padding-bottom: 30px;
  }
}
/* line 311, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-shipping p {
  margin-bottom: 0px;
}

/* line 317, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-summary {
  float: left;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}
@media (min-width: 1024px) {
  /* line 317, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-summary {
    padding-bottom: 20px;
  }
}
/* line 328, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-summary p {
  margin-bottom: 0px;
}
/* line 332, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-summary [class^="checkout-review-item-"] {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

/* line 342, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item {
  float: left;
  width: 100%;
  border-bottom: 2px dashed #DDDDDD;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  /* line 342, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
/* line 355, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
/* line 361, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item h3 {
  font-size: 13px;
  line-height: 16px;
  color: #666666;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 361, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item h3 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }
}
/* line 376, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item ul {
  margin: 0px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  /* line 376, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item ul {
    margin-bottom: 20px;
  }
}
/* line 384, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item li {
  margin-bottom: 0px;
  line-height: 15px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  /* line 384, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item li {
    line-height: 17px;
    font-size: 14px;
  }
}
/* line 394, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item li:before {
  display: none;
}
/* line 398, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item li .price {
  color: #A59D7E;
  font-weight: 600;
}
/* line 405, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item p {
  line-height: 15px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  /* line 405, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item p {
    line-height: 17px;
    font-size: 14px;
    margin-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  /* line 416, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item .checkout-review-item-content {
    float: left;
    width: 480px;
    margin-bottom: 0px;
  }
}
/* line 424, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item .checkout-review-item-quantity {
  width: auto;
}
@media (min-width: 1024px) {
  /* line 424, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item .checkout-review-item-quantity {
    float: left;
    width: 100px;
  }
}
/* line 432, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item .checkout-review-item-quantity p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #AAAAAA;
  margin-bottom: 0px;
}
/* line 440, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item .checkout-review-item-quantity strong {
  color: #000;
}
/* line 446, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item .checkout-review-item-price {
  width: auto;
  float: right;
}
@media (min-width: 1024px) {
  /* line 446, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item .checkout-review-item-price {
    width: 100px;
    text-align: right;
  }
}
/* line 455, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-item .checkout-review-item-price p {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #000;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 455, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-item .checkout-review-item-price p {
    font-size: 16px;
    line-height: 21px;
  }
}

/* line 474, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-subtotaltable {
  margin-top: 5px;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 474, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-subtotaltable {
    margin-bottom: 5px;
    margin-top: 20px;
  }
}
/* line 483, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-subtotaltable td {
  padding: 0px;
  border: none;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #000;
}
@media (min-width: 1024px) {
  /* line 483, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-subtotaltable td {
    text-align: right;
    font-size: 16px;
    line-height: 30px;
  }
}
/* line 500, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-subtotaltable strong {
  color: #000;
  margin-left: 0px;
  float: right;
  font-weight: 700;
}
@media (min-width: 1024px) {
  /* line 500, ../../private/scss/views/_checkout-flow.scss */
  .checkout-review-subtotaltable strong {
    /*margin-left: 100px;*/
    float: none;
    width: 160px;
    display: inline-block;
  }
}
/* line 515, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-subtotaltable .promo-code-review td {
  color: #666666;
  font-weight: 600;
}
/* line 520, ../../private/scss/views/_checkout-flow.scss */
.checkout-review-subtotaltable .promo-code-review strong {
  color: #A59D7B;
  font-weight: 600;
}

/* line 528, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand {
  display: none;
  width: 100%;
  text-align: center;
  padding: 10px 10px 0px 10px;
}
@media (min-width: 1024px) {
  /* line 528, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand {
    width: 580px;
    padding: 20px 20px 5px 20px;
  }
}
/* line 539, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand > h2, .checkout-chewwing-gum-stand > p {
  text-align: center;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 539, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand > h2, .checkout-chewwing-gum-stand > p {
    text-align: left;
  }
}
/* line 549, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand > h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  /* line 549, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand > h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
/* line 561, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand > p {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  /* line 561, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand > p {
    margin-bottom: 10px;
  }
}
/* line 568, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand .button {
  font-size: 12px;
}
/* line 572, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand .carousel-container {
  float: left;
  width: 300px;
  margin-left: -20px;
}
@media (min-width: 1024px) {
  /* line 572, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand .carousel-container {
    width: 100%;
    margin-left: 0px;
  }
}
/* line 582, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand .product-grid {
  padding-bottom: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1024px) {
  /* line 582, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand .product-grid {
    padding-bottom: 20px;
    margin-bottom: 15px;
  }
}
/* line 594, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand .product-grid-item {
  float: none;
  display: inline-block;
  width: 145px;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  /* line 594, ../../private/scss/views/_checkout-flow.scss */
  .checkout-chewwing-gum-stand .product-grid-item {
    width: 30.33%;
    margin-bottom: 4%;
  }
}
/* line 605, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand .product-grid-item h2, .checkout-chewwing-gum-stand .product-grid-item a {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10px;
}
/* line 611, ../../private/scss/views/_checkout-flow.scss */
.checkout-chewwing-gum-stand .product-grid-item .grid-price {
  margin-bottom: 10px;
}

/* line 620, ../../private/scss/views/_checkout-flow.scss */
.checkout-confirmation {
  float: left;
  width: 100%;
  text-align: left;
}
/* line 625, ../../private/scss/views/_checkout-flow.scss */
.checkout-confirmation h1 {
  text-align: left;
  font-size: 16px;
}
@media (min-width: 1024px) {
  /* line 625, ../../private/scss/views/_checkout-flow.scss */
  .checkout-confirmation h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
/* line 634, ../../private/scss/views/_checkout-flow.scss */
.checkout-confirmation .button {
  font-size: 13px;
}

/*********************************************
  :: Third Party                       
********************************************/
/* ===========================================================
 *
 *  Name:          selectordie_dev.css
 *  Updated:       2014-10-10
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */
/* Remove, change to fit your needs */
/*@import url(http://fonts.googleapis.com/css?family=Lato:300,700);*/
/* line 20, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select,
.sod_select * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
/* line 34, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select {
  display: inline-block;
  position: relative;
  line-height: 1;
  outline-offset: -2px;
  /* Opera */
  cursor: default;
  outline: none;
  border: none;
  background: #F8F8F8;
  font-size: 15px;
  font-weight: 40;
  line-height: 25px;
  color: #212121;
  border: 1px solid #A59D7C;
  width: 100%;
  padding: 5px 10px 5px 10px;
  height: 37px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* Up/Down arrows */
/* line 58, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select:before,
.sod_select:after {
  /*content: "\25B2";*/
  /*position: absolute;*/
  /*right: 10px;*/
  /*top: 12px;*/
  /*font-size: 7px;*/
}

/* Down arrow */
/* line 69, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select:after {
  /*content: "\25BC";*/
  /*top: auto;*/
  /*bottom: 12px;*/
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e60c";
  font-size: 16px;
  line-height: 16px;
  color: #54565A;
}

/* Change the border color on hover, focus and when open */
/* line 99, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select:hover,
.sod_select.open,
.sod_select.focus {
  border-color: #000000;
}

/* line 103, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.open {
  color: #919191;
}

/* When the entire SoD is disabled, go crazy! */
/* line 107, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.disabled {
  border-color: #CECACA;
  color: #b2b2b2;
  cursor: not-allowed;
}

/* line 115, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.disabled:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
/* line 121, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_label {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 15px;
}

/* line 131, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_prefix {
  /* Use this if you're using a prefix and want to style it */
}

/* line 132, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_placeholder {
  /* Use this if you're using a placeholder and want to style it */
}

/* Options list wrapper */
/* line 137, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_list_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  height: auto;
  width: 100%;
  margin: 0 0 0 0px;
  background: #ffffff;
  border-top: none;
  color: #444444;
  font-weight: 300;
  z-index: 1;
  box-shadow: 0px 11px 20px 0px #C8C8C8;
  border-bottom: 3px solid black;
}

/* Shows the option list (don't edit) */
/* line 156, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.open .sod_list_wrapper {
  display: block;
}

/* Don't display the options when  */
/* line 159, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.disabled.open .sod_list_wrapper {
  display: none;
}

/* When the option list is displayed above the SoD */
/* line 162, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.above .sod_list_wrapper {
  top: auto;
  bottom: 100%;
  border-top: 3px solid #000000;
  border-bottom: none;
}

/* Options list container */
/* line 171, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_list {
  display: block;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  max-height: 300px;
}

/* All the options. Keep the first three lines for truncating... */
/* line 181, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  padding: 10px 10px;
  list-style-type: none;
}

/* Optgroups */
/* line 194, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
  background: inherit;
  color: #939393;
  font-size: 10px;
  font-style: italic;
}

/* Children of an optgroup */
/* line 204, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

/* Used together with placeholderOption / data-placeholder-option */
/* line 207, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.is-placeholder {
  display: none;
}

/* Disabled option */
/* line 212, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.disabled {
  background: inherit;
  color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
/* line 219, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.active {
  background: #f7f7f7;
  color: #333333;
}

/*Make room for the check mark */
/* line 226, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.selected {
  font-weight: 700;
  padding-right: 25px;
}

/* Displays a check mark for the selected option */
/* line 233, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.selected:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #808080;
  height: 9px;
  width: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
}

/* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
/* line 250, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.no_highlight .sod_option.selected {
  font-weight: 300;
}

/* line 251, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.no_highlight .sod_option.selected:before {
  display: none;
}

/* line 253, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.link {
  /* If data-link is set on a specific option */
}

/* line 254, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.linkexternal {
  /* If data-link-external is set on a specific option */
}

/* Hide native select */
/* line 259, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select select {
  display: none !important;
}

/* The native select in touch mode. Keep this first line. Sorry, keep everything. */
/* line 262, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.touch select {
  -webkit-appearance: menulist-button;
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
/* line 7, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
/* line 16, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

/* line 22, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 27, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* line 32, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* line 40, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item {
  float: left;
}

/* line 43, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

/* line 47, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
/* line 57, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.grabbing {
  cursor: url(../images/grabbing.png) 8 8, move;
}

/* fix */
/* line 62, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
/* line 79, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls {
  margin-top: 3px;
  text-align: center;
}

/* Styling Next and Prev buttons */
/* line 86, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  text-indent: -9999px;
  top: 95px;
}

/* line 95, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-buttons {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

/* line 103, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-prev {
  left: 20px;
  position: absolute;
  width: 23px;
  height: 39px;
  background: transparent url("../images/carousel-arrow-left.png");
}

/* line 111, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-next {
  right: 20px;
  position: absolute;
  width: 23px;
  height: 39px;
  background: transparent url("../images/carousel-arrow-right.png");
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
/* line 121, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
/* line 129, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

/* line 134, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 1px 6px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #CCCCCC;
}

/* line 145, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #525358;
}

/* If PaginationNumbers is true */
/* line 152, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
/* line 164, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-item.loading {
  min-height: 150px;
  background: url(../images/AjaxLoader.gif) no-repeat center center;
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noel Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  /* line 9, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: transparent;
  }

  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  /* line 31, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight:last-of-type {
    background-color: transparent;
    background-color: rgba(240, 224, 209, 0.8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCF0E0D1,endColorstr=#CCF0E0D1);
    zoom: 1;
    z-index: 90;
  }

  /* line 36, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }

  /* line 45, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
    /* dimensions: handling small or empty content */
    min-width: 30%;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    background: #fff;
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal;
    padding: 0px;
    vertical-align: top;
    top: 25px;
    background: none;
  }

  /* contains the content */
  /* line 82, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }

  /* line 87, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 999999;
    top: 20px;
    right: 20px;
    text-indent: -9999px;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 41px;
    height: 41px;
    /* styling */
    cursor: pointer;
    text-align: center;
    font: Arial, sans-serif;
    background: url("../images/large-circle-cross.png");
    color: #000;
    top: 30px;
    right: 15px;
  }

  /* line 111, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-image {
    /* styling */
    width: 100%;
  }

  /* line 117, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
  }

  /* line 123, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight iframe {
    /* styling */
    border: none;
  }
}
/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  /* line 131, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
/* line 144, ../../private/scss/third-party-js-plugins/_featherlight.scss */
.featherlight-product-variant .featherlight-content {
  padding: 10px 10px 0 !important;
  vertical-align: middle !important;
  top: auto !important;
  background: white !important;
}
@media (max-width: 1024px) {
  /* line 144, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight-product-variant .featherlight-content {
    vertical-align: top !important;
    margin-top: 10px;
  }
}
/* line 155, ../../private/scss/third-party-js-plugins/_featherlight.scss */
.featherlight-product-variant .featherlight-close-icon {
  top: 20px !important;
  right: 20px !important;
  display: none;
}

/* line 164, ../../private/scss/third-party-js-plugins/_featherlight.scss */
.featherlight-enlarged-image .featherlight-close-icon {
  top: 20px !important;
  right: 20px !important;
  display: block !important;
}

/* line 173, ../../private/scss/third-party-js-plugins/_featherlight.scss */
.page-special-events .featherlight-product-variant .featherlight-close-icon {
  display: block;
}

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
/* line 7, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker {
  max-width: 320px;
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 61px;
  display: none;
}
/* line 20, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker td, .picker th {
  padding: 0px;
  text-align: inherit;
  border: none;
}

/**
 * The picker input element.
 */
/* line 33, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__input {
  cursor: default;
}

/**
 * When the picker is opened, the input element is "activated".
 */
/* line 39, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__input.picker__input--active {
  border-color: #0089ec;
}

/**
 * The holder is the only "scrollable" top-level container element.
 */
/* line 45, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__holder {
  width: 100%;
  /*overflow-y: auto;*/
  -webkit-overflow-scrolling: touch;
}

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
/* line 58, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker {
  width: 100%;
}

/**
 * The holder is the base of the picker.
 */
/* line 64, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don't reach the holder.
 */
/* line 88, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__frame {
  padding: 1px;
}

/* line 91, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__wrap {
  margin: -1px;
}

/**
 * When the picker opens...
 */
/* line 97, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}

/* line 112, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker--opened {
  display: block !important;
}

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
/* line 122, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__box {
  padding: 0 1em;
}

/**
 * The header containing the month and year stuff.
 */
/* line 128, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}

/**
 * The month and year labels.
 */
/* line 136, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}

/* line 143, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic;
}

/**
 * The month and year selectors.
 */
/* line 151, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}

@media (min-width: 24.5em) {
  /* line 160, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
/* line 165, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--month {
  width: 35%;
}

/* line 168, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--year {
  width: 22.5%;
}

/* line 171, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}

/**
 * The month navigation buttons.
 */
/* line 178, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}

@media (min-width: 24.5em) {
  /* line 188, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
/* line 193, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}

@media (min-width: 24.5em) {
  /* line 198, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
/* line 202, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}

@media (min-width: 24.5em) {
  /* line 207, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
/* line 211, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}

/* line 222, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}

/* line 226, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}

/* line 232, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}

/**
 * The calendar table of dates
 */
/* line 244, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}

@media (min-height: 33.875em) {
  /* line 255, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__table {
    margin-bottom: .75em;
  }
}
/* line 259, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__table td {
  margin: 0;
  padding: 0;
}

/**
 * The weekday labels
 */
/* line 266, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  background: white;
  /* Increase the spacing a tad */
}

@media (min-height: 33.875em) {
  /* line 276, ../../private/scss/third-party-js-plugins/_pickadate.scss */
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
/* line 283, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}

/* line 288, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--today {
  position: relative;
}

/* line 291, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}

/* line 301, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}

/* line 304, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--outfocus {
  color: #dddddd;
}

/* line 307, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}

/* line 313, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--highlighted {
  border-color: #0089ec;
}

/* line 316, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}

/* line 322, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff;
}

/* line 328, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}

/* line 336, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
/* line 343, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__footer {
  text-align: center;
}

/* line 346, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
  color: #000;
}

/* line 359, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}

/* line 367, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}

/* line 374, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}

/* line 381, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}

/* line 386, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}

/* line 392, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200;
}

/* line 397, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777;
}

/* line 405, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}

/* line 412, ../../private/scss/third-party-js-plugins/_pickadate.scss */
.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
/*********************************************
  :: Styleguide                     
********************************************/
/*********************************************
  :: Styelguide                             
********************************************/
/* line 7, ../../private/scss/views/_styleguide.scss */
.page-styleguide .main, .page-styleguide aside {
  float: left;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 12, ../../private/scss/views/_styleguide.scss */
  .page-styleguide .main {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  /* line 18, ../../private/scss/views/_styleguide.scss */
  .page-styleguide aside {
    width: 30%;
    padding-left: 5%;
  }
}
/* line 25, ../../private/scss/views/_styleguide.scss */
.page-styleguide header, .page-styleguide footer {
  padding: 20px;
  background: #5E5E5E;
  margin-bottom: 20px;
}
/* line 30, ../../private/scss/views/_styleguide.scss */
.page-styleguide header h1, .page-styleguide header p, .page-styleguide header a, .page-styleguide footer h1, .page-styleguide footer p, .page-styleguide footer a {
  color: white;
  margin-bottom: 0px;
}
/* line 36, ../../private/scss/views/_styleguide.scss */
.page-styleguide footer {
  margin-bottom: 0px;
  margin-top: 20px;
}
/* line 41, ../../private/scss/views/_styleguide.scss */
.page-styleguide .brownpaperbag-container {
  float: left;
  width: 100%;
  padding: 0px;
  border: none;
}
/* line 48, ../../private/scss/views/_styleguide.scss */
.page-styleguide .back-to-top-trigger {
  width: auto;
  height: auto;
  display: inline-block;
  background: none;
}
/* line 55, ../../private/scss/views/_styleguide.scss */
.page-styleguide .styles-collection {
  width: 100%;
  margin-bottom: 20px;
}
/* line 60, ../../private/scss/views/_styleguide.scss */
.page-styleguide .icon-collection span {
  font-size: 30px;
  line-height: 40px;
  width: 49%;
  display: inline-block;
  margin-bottom: 10px;
}
/* line 66, ../../private/scss/views/_styleguide.scss */
.page-styleguide .icon-collection span:before {
  margin-right: 10px;
}

/*# sourceMappingURL=styles.css.map */
