@charset "UTF-8";
/*********************************************
  :: 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)
********************************************/
/*********************************************
  :: Vertical Align
  :: usage = @include vertical-align();
********************************************/
/*********************************************
  :: The Core                         
********************************************/
/* Project Font */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:600italic,400,300,600,700,800);
/* Brown Paperag Footer Font */
@import url(http://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 10, ../../private/scss/core/_base.scss */
body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 149, ../../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 156, ../../private/scss/core/_base.scss */
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*********************************************
  :: Typography                             
********************************************/
/* line 4, ../../private/scss/core/_typography.scss */
h1, .h1 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
@media (min-width: 960px) {
  /* line 4, ../../private/scss/core/_typography.scss */
  h1, .h1 {
    font-size: 26px;
    line-height: 37px;
    margin-bottom: 15px;
  }
}

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

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

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

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

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

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

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

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

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

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

/* line 120, ../../private/scss/core/_typography.scss */
ul li, nav li {
  list-style-type: none;
  position: relative;
}

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

/* line 143, ../../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 155, ../../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 166, ../../private/scss/core/_typography.scss */
figure {
  width: 100%;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0px;
  padding: 10px;
}
/* line 173, ../../private/scss/core/_typography.scss */
figure img {
  margin-bottom: 5px;
}
/* line 177, ../../private/scss/core/_typography.scss */
figure figcaption {
  font-style: italic;
}

/* line 182, ../../private/scss/core/_typography.scss */
table {
  float: left;
  width: 100%;
}
/* line 186, ../../private/scss/core/_typography.scss */
table td, table th {
  padding: 10px 10px 10px 25px;
}
/* line 190, ../../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;
}
/* line 126, ../../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;
}

/* line 134, ../../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;
}
/* line 139, ../../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;
}

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

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

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

/* line 25, ../../private/scss/core/_forms.scss */
label {
  font-size: 12.5px;
  line-height: 21px;
  color: #666666;
  font-weight: 400;
  margin-top: 12px;
}
@media (min-width: 960px) {
  /* line 25, ../../private/scss/core/_forms.scss */
  label {
    font-size: 15px;
    margin-top: 10px;
  }
}

/* line 37, ../../private/scss/core/_forms.scss */
input,
textarea,
select {
  outline: none;
  border: none;
  background: white;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #212121;
  border: 1px solid #CCCCCC;
  width: 100%;
  padding: 5px 10px 5px 10px;
  height: 40px;
  margin-top: 5px;
  -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;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  behavior: url(../js/lib/PIE.htc);
  -webkit-appearance: none;
}
@media (min-width: 960px) {
  /* line 37, ../../private/scss/core/_forms.scss */
  input,
  textarea,
  select {
    margin-top: 10px;
    height: 41px;
  }
}
/* line 59, ../../private/scss/core/_forms.scss */
input:hover, input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border-color: #000;
  color: #000;
}

/* line 66, ../../private/scss/core/_forms.scss */
textarea {
  height: 91px;
}

/* line 70, ../../private/scss/core/_forms.scss */
input[type="submit"],
button[type="submit"],
input[type="button"] {
  background: #303232;
  color: white;
  font-weight: 300;
  font-size: 12px;
  line-height: 36px;
  display: inline-block;
  padding: 0px 10px;
  width: auto;
  height: 36px;
  text-transform: none;
  float: right;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  behavior: url(../js/lib/PIE.htc);
  -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 88, ../../private/scss/core/_forms.scss */
input[disabled],
textarea[disabled],
select[disabled] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

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

/* line 98, ../../private/scss/core/_forms.scss */
input[type="checkbox"] {
  width: auto;
  height: auto;
  -webkit-appearance: checkbox;
  margin-bottom: 20px;
}

/* line 105, ../../private/scss/core/_forms.scss */
input[type="radio"] {
  width: auto;
  height: auto;
  -webkit-appearance: radio;
  margin-bottom: 5px;
}

/* line 112, ../../private/scss/core/_forms.scss */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #212121;
  font-size: 12px;
  font-weight: 300;
}

/*********************************************
  :: Form Layout (Default)                          
********************************************/
/* line 126, ../../private/scss/core/_forms.scss */
.form-field {
  float: left;
  width: 100%;
}
/* line 129, ../../private/scss/core/_forms.scss */
.form-field.checkbox-radio {
  margin: 29px 0 0 0;
}
/* line 131, ../../private/scss/core/_forms.scss */
.form-field.checkbox-radio p {
  font-size: 15px;
  margin-bottom: 10px;
}
/* line 135, ../../private/scss/core/_forms.scss */
.form-field.checkbox-radio span {
  padding-left: 10px;
  font-size: 14px;
}
/* line 140, ../../private/scss/core/_forms.scss */
.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 22px;
}
@media (min-width: 960px) {
  /* line 140, ../../private/scss/core/_forms.scss */
  .form-field label {
    font-size: 15px;
  }
}
/* line 149, ../../private/scss/core/_forms.scss */
.form-field input[type="submit"] {
  float: right;
}

/* line 155, ../../private/scss/core/_forms.scss */
.form-footer {
  float: left;
  width: 100%;
}
@media (min-width: 960px) {
  /* line 155, ../../private/scss/core/_forms.scss */
  .form-footer {
    margin-top: 13px;
  }
}
/* line 161, ../../private/scss/core/_forms.scss */
.form-footer span {
  font-size: 12px;
  margin-top: 15px;
  color: #666666;
  font-weight: 300;
  float: left;
}
@media (min-width: 960px) {
  /* line 161, ../../private/scss/core/_forms.scss */
  .form-footer span {
    font-size: 15px;
    margin-top: 0px;
  }
}

/* line 175, ../../private/scss/core/_forms.scss */
.width70 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 175, ../../private/scss/core/_forms.scss */
  .width70 {
    width: 77%;
  }
}

/* line 181, ../../private/scss/core/_forms.scss */
.width60 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 181, ../../private/scss/core/_forms.scss */
  .width60 {
    width: 66%;
  }
}

/* line 188, ../../private/scss/core/_forms.scss */
.width50 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 188, ../../private/scss/core/_forms.scss */
  .width50 {
    width: 49%;
  }
}

/* line 195, ../../private/scss/core/_forms.scss */
.width45 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 195, ../../private/scss/core/_forms.scss */
  .width45 {
    width: 45%;
  }
}

/* line 202, ../../private/scss/core/_forms.scss */
.width30 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 202, ../../private/scss/core/_forms.scss */
  .width30 {
    width: 32%;
  }
}

/* line 209, ../../private/scss/core/_forms.scss */
.width25 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 209, ../../private/scss/core/_forms.scss */
  .width25 {
    width: 27%;
  }
}

/* line 216, ../../private/scss/core/_forms.scss */
.width20 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 216, ../../private/scss/core/_forms.scss */
  .width20 {
    width: 20%;
  }
}

/* line 223, ../../private/scss/core/_forms.scss */
.width15 {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 223, ../../private/scss/core/_forms.scss */
  .width15 {
    width: 15%;
  }
}

/* line 230, ../../private/scss/core/_forms.scss */
.mr2 {
  margin-right: auto;
}
@media (min-width: 960px) {
  /* line 230, ../../private/scss/core/_forms.scss */
  .mr2 {
    margin-right: 2%;
  }
}

/* line 237, ../../private/scss/core/_forms.scss */
.mr3 {
  margin-right: auto;
}
@media (min-width: 960px) {
  /* line 237, ../../private/scss/core/_forms.scss */
  .mr3 {
    margin-right: 5%;
  }
}

/* line 244, ../../private/scss/core/_forms.scss */
.mr4 {
  margin-right: auto;
}
@media (min-width: 960px) {
  /* line 244, ../../private/scss/core/_forms.scss */
  .mr4 {
    margin-right: 4%;
  }
}

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

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

/* line 268, ../../private/scss/core/_forms.scss */
label.error,
span.help-inline {
  color: #DE2828;
  margin-top: 3px;
  font-weight: 500;
  font-size: 11px !important;
  display: block;
}

/*********************************************
  :: Off Canvas Social Icons                            
********************************************/
/* line 4, ../../private/scss/core/_header-small-screen-menu.scss */
.off-canvas-social-icons {
  float: left;
  width: auto;
  margin-left: 25px;
  margin-top: 6px;
}
/* line 10, ../../private/scss/core/_header-small-screen-menu.scss */
.off-canvas-social-icons a {
  text-decoration: none;
  font-size: 21px;
  line-height: 25px;
  margin-right: 5px;
}
/* line 17, ../../private/scss/core/_header-small-screen-menu.scss */
.off-canvas-social-icons .twitter {
  color: #2AA9E0;
}
/* line 21, ../../private/scss/core/_header-small-screen-menu.scss */
.off-canvas-social-icons .facebook {
  color: #3B589E;
}

/*********************************************
  :: Main Menu Toggle                            
********************************************/
/* line 33, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger {
  width: 20px;
  float: right;
  padding: 0px;
  background: white;
  margin-top: 1px;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  position: static;
  top: 0%;
  left: 0%;
  right: auto;
  border-radius: 0px;
  display: inline-block;
  margin-top: 20px;
}
/* line 48, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span {
  width: 20px;
  height: 3px;
  background: #666666;
  margin-bottom: 4px;
  display: block;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  opacity: 1;
}
/* line 59, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 960px) {
  /* line 33, ../../private/scss/core/_header-small-screen-menu.scss */
  button.small-screen-main-menu-trigger {
    display: none;
  }
}

/* line 69, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger {
  background: black;
  position: fixed;
  right: 85%;
  margin: 0px;
  top: 0%;
  left: auto;
  height: 73px;
  width: 53px;
  text-align: center;
  padding-left: 15px;
  z-index: 99999;
  padding: 0px;
}
/* line 83, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span {
  margin: 0px;
  background: #fff;
  width: 27px;
  margin-left: 16px;
}
/* line 90, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:last-of-type {
  opacity: 0;
}
/* line 94, ../../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 98, ../../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 111, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu {
  width: 85%;
  border-left: 1px solid black;
  background: #fff;
  position: fixed;
  top: 0px;
  right: -85%;
  height: 100%;
  text-align: left;
  z-index: 999999;
  overflow-y: auto;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 124, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul {
  margin: 0px;
  padding: 0px;
  float: left;
  width: 100%;
}
/* line 131, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li {
  list-style-type: none;
}
/* line 135, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li {
  margin-bottom: 0px;
}
/* line 137, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li:before {
  display: none;
}
/* line 143, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li > a {
  line-height: 16px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  padding: 13px 20px 13px 0px;
  margin-left: 25px;
  display: block;
  font-weight: 500;
  border-bottom: 1px solid #DFDFD0;
  margin-bottom: 0px;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* 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 {
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 14px;
  display: block;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 173, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .current a {
  color: #212121;
}

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

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

/*********************************************
  :: Sub Main Menu                            
********************************************/
/* line 196, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul {
  height: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 205, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul li {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  vertical-align: top;
  border-bottom: 1px solid #DFDFD0;
  text-align: left;
}
/* line 216, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul img {
  display: block;
  margin-bottom: 5px;
}
/* line 221, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul a {
  margin-bottom: 0px;
  padding: 0px;
  width: 81px;
  font-size: 16px;
  line-height: 16px;
  color: black;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  -moz-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -o-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
  transition: all 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
}
/* line 235, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul li:last-of-type a {
  border-bottom: none;
}

/* line 242, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > ul {
  height: auto;
  background: white;
  text-align: center;
  padding: 20px 20px 0px 0px;
  width: 85%;
  float: right;
}

/* Acive state for sub-menu parent */
/* line 254, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu .arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*********************************************
  :: The Core - Layout & Components                      
********************************************/
/*********************************************
    :: Header                             
********************************************/
/* line 4, ../../private/scss/core/_header.scss */
header {
  float: left;
  width: 100%;
  height: 76px;
  padding-top: 10px;
}
@media (min-width: 960px) {
  /* line 4, ../../private/scss/core/_header.scss */
  header {
    height: 87px;
    padding-top: 20px;
  }
}
/* line 16, ../../private/scss/core/_header.scss */
header .logo, header .logo2 {
  display: inline-block;
  float: left;
  width: 50%;
}
/* line 21, ../../private/scss/core/_header.scss */
header .logo img, header .logo2 img {
  height: auto;
  max-height: 52px;
  float: left;
}
@media (min-width: 960px) {
  /* line 21, ../../private/scss/core/_header.scss */
  header .logo img, header .logo2 img {
    max-height: 52px;
  }
}
/* line 32, ../../private/scss/core/_header.scss */
header .logo2 {
  float: right;
}
/* line 35, ../../private/scss/core/_header.scss */
header .logo2 img {
  float: right;
}

/* line 44, ../../private/scss/core/_header.scss */
.sticky-header {
  width: 100%;
  height: 44px;
  float: left;
  background: #303232;
}
/* line 50, ../../private/scss/core/_header.scss */
.sticky-header p {
  width: 58%;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: white;
  display: inline-block;
  padding: 5px 0 0 6%;
}
@media (min-width: 960px) {
  /* line 50, ../../private/scss/core/_header.scss */
  .sticky-header p {
    width: auto;
    font-style: 26px;
    line-height: 44px;
    padding: 0 0 0 0px;
  }
}
/* line 67, ../../private/scss/core/_header.scss */
.sticky-header .cart {
  float: right;
  width: 107px;
  height: 44px;
  padding-left: 35px;
  background: #d01e2c;
  color: white;
  font-size: 11px;
  line-height: 44px;
  position: relative;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 960px) {
  /* line 67, ../../private/scss/core/_header.scss */
  .sticky-header .cart {
    font-size: 14px;
    line-height: 44px;
    width: 140px;
    height: 44px;
    padding-left: 50px;
  }
}
/* line 89, ../../private/scss/core/_header.scss */
.sticky-header .cart:hover {
  background: #666666;
}
/* line 93, ../../private/scss/core/_header.scss */
.sticky-header .cart:before {
  content: '';
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0px;
  left: -26px;
  background: url(/images/cart.png) no-repeat center center;
  background-size: cover;
  width: 56px;
  height: 44px;
}
@media (min-width: 960px) {
  /* line 93, ../../private/scss/core/_header.scss */
  .sticky-header .cart:before {
    width: 56px;
    height: 47px;
  }
}
/* line 112, ../../private/scss/core/_header.scss */
.sticky-header.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
}

/*********************************************
  :: Footer                           
********************************************/
/* line 4, ../../private/scss/core/_footer.scss */
footer {
  width: 100%;
  background: #f3f3f3;
  border-bottom: 4px solid #d01e2c;
  float: left;
}

/* line 11, ../../private/scss/core/_footer.scss */
.contact-block {
  width: 100%;
  float: left;
  border-left: 1px solid #979797;
  padding: 25px 0 0 15px;
}
@media (min-width: 960px) {
  /* line 11, ../../private/scss/core/_footer.scss */
  .contact-block {
    padding: 13px 0 0 19px;
    width: 365px;
    height: 132px;
  }
}
/* line 24, ../../private/scss/core/_footer.scss */
.contact-block:last-of-type {
  padding-top: 15px;
}
@media (min-width: 960px) {
  /* line 24, ../../private/scss/core/_footer.scss */
  .contact-block:last-of-type {
    padding-top: 73px;
  }
}
/* line 32, ../../private/scss/core/_footer.scss */
.contact-block p {
  margin-bottom: 0px;
}
/* line 35, ../../private/scss/core/_footer.scss */
.contact-block p a {
  color: #d01e2c;
}
/* line 40, ../../private/scss/core/_footer.scss */
.contact-block .address {
  margin-bottom: 20px;
}

/* Brown Paper Bag Container */
/* line 46, ../../private/scss/core/_footer.scss */
.brownpaperbag-container {
  float: left;
  width: 100%;
  margin: 25px 0;
}
/* line 51, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .left-section {
  float: left;
}
/* line 54, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .left-section br {
  display: inline-block;
}
@media (min-width: 960px) {
  /* line 54, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .left-section br {
    display: none;
  }
}
/* line 63, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .right-section {
  float: left;
  clear: both;
}
@media (min-width: 960px) {
  /* line 63, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .right-section {
    float: right;
    clear: none;
  }
}
/* line 73, ../../private/scss/core/_footer.scss */
.brownpaperbag-container a, .brownpaperbag-container p {
  color: #999;
  margin: 0px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  line-height: 18px;
  font-size: 11px;
}
/* line 82, ../../private/scss/core/_footer.scss */
.brownpaperbag-container .copyright a {
  font-size: 9px;
  padding: 0 5px;
  vertical-align: middle;
}
@media (min-width: 960px) {
  /* line 82, ../../private/scss/core/_footer.scss */
  .brownpaperbag-container .copyright a {
    font-size: 11px;
    padding: 0px;
  }
}

/*********************************************
  :: Main Section                             
********************************************/
/* line 4, ../../private/scss/core/_general.scss */
.main {
  float: left;
  width: 100%;
}

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

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

/* line 17, ../../private/scss/core/_general.scss */
.container-max-width {
  width: 88%;
  margin: 0 6%;
  position: relative;
  *zoom: 1;
}
/* line 433, ../../private/scss/jeet/_grid.scss */
.container-max-width:before, .container-max-width:after {
  content: '';
  display: table;
}
/* line 438, ../../private/scss/jeet/_grid.scss */
.container-max-width:after {
  clear: both;
}
@media (min-width: 960px) {
  /* line 17, ../../private/scss/core/_general.scss */
  .container-max-width {
    width: auto;
    max-width: 960px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 0 10px;
  }
}

/* line 31, ../../private/scss/core/_general.scss */
.slider-max-width {
  width: 100%;
  margin: 0;
  position: relative;
  *zoom: 1;
}
/* line 433, ../../private/scss/jeet/_grid.scss */
.slider-max-width:before, .slider-max-width:after {
  content: '';
  display: table;
}
/* line 438, ../../private/scss/jeet/_grid.scss */
.slider-max-width:after {
  clear: both;
}
@media (min-width: 960px) {
  /* line 31, ../../private/scss/core/_general.scss */
  .slider-max-width {
    width: auto;
    max-width: 960px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 0 10px;
  }
}

/* line 45, ../../private/scss/core/_general.scss */
.full-max-width {
  width: 100%;
  *zoom: 1;
  position: relative;
  clear: both;
}
/* line 433, ../../private/scss/jeet/_grid.scss */
.full-max-width:before, .full-max-width:after {
  content: '';
  display: table;
}
/* line 438, ../../private/scss/jeet/_grid.scss */
.full-max-width:after {
  clear: both;
}

/* line 57, ../../private/scss/core/_general.scss */
.hex {
  width: 20px;
  height: 20px;
  border: 1px solid #AAAAAA;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  behavior: url(../js/lib/PIE.htc);
}
@media (min-width: 600px) {
  /* line 57, ../../private/scss/core/_general.scss */
  .hex {
    margin-right: 18px;
  }
}
/* line 72, ../../private/scss/core/_general.scss */
.hex.red {
  background: #e20e37;
}
/* line 76, ../../private/scss/core/_general.scss */
.hex.orange {
  background: #f3a632;
}
/* line 80, ../../private/scss/core/_general.scss */
.hex.yellow {
  background: #f7e523;
}
/* line 84, ../../private/scss/core/_general.scss */
.hex.green {
  background: #82d120;
}
/* line 88, ../../private/scss/core/_general.scss */
.hex.blue {
  background: #203d75;
}
/* line 92, ../../private/scss/core/_general.scss */
.hex.purple {
  background: #8c17fb;
}
/* line 96, ../../private/scss/core/_general.scss */
.hex.brown {
  background: #c57408;
}
/* line 100, ../../private/scss/core/_general.scss */
.hex.none {
  background: white;
  border: 1px solid white;
}

/* line 109, ../../private/scss/core/_general.scss */
.steps {
  float: left;
  width: 100%;
  border-bottom: none;
  margin: 20px 0 4px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 960px) {
  /* line 109, ../../private/scss/core/_general.scss */
  .steps {
    margin-bottom: 25px;
  }
}
/* line 122, ../../private/scss/core/_general.scss */
.steps ul {
  float: left;
  width: 100%;
  margin: 0px;
}
/* line 128, ../../private/scss/core/_general.scss */
.steps li {
  float: left;
  list-style-type: none;
  margin-right: 5px;
}
@media (min-width: 960px) {
  /* line 128, ../../private/scss/core/_general.scss */
  .steps li {
    margin-right: 15px;
  }
}
/* line 138, ../../private/scss/core/_general.scss */
.steps li a {
  font-size: 14px;
  color: #333;
}
@media (min-width: 960px) {
  /* line 138, ../../private/scss/core/_general.scss */
  .steps li a {
    font-size: 15px;
  }
}
/* line 147, ../../private/scss/core/_general.scss */
.steps li span {
  display: none;
}
@media (min-width: 960px) {
  /* line 147, ../../private/scss/core/_general.scss */
  .steps li span {
    display: inline-block;
  }
}
/* line 155, ../../private/scss/core/_general.scss */
.steps li.current a {
  color: black;
  font-weight: 600;
}
/* line 161, ../../private/scss/core/_general.scss */
.steps li:last-of-type {
  margin: 0px;
}

/*********************************************
  :: Views                       
********************************************/
/*********************************************
  :: Homepage                             
********************************************/
/* line 5, ../../private/scss/views/_home.scss */
.home {
  width: 100%;
  float: left;
}
/* line 9, ../../private/scss/views/_home.scss */
.home .intro-container {
  width: 100%;
  float: left;
  text-align: center;
  margin: 30px 0 10px 0;
}
@media (min-width: 960px) {
  /* line 9, ../../private/scss/views/_home.scss */
  .home .intro-container {
    margin: 60px 0;
  }
}
/* line 20, ../../private/scss/views/_home.scss */
.home .intro-container h1 {
  margin: 0px 0 5px 0;
  font-weight: 600;
}
/* line 25, ../../private/scss/views/_home.scss */
.home .intro-container p {
  font-size: 14px;
  color: #AAAAAA;
}
@media (min-width: 960px) {
  /* line 25, ../../private/scss/views/_home.scss */
  .home .intro-container p {
    font-size: 18px;
  }
}
/* line 38, ../../private/scss/views/_home.scss */
.home .selection-container {
  width: 100%;
  float: left;
  background: #979797;
  padding: 30px 0;
}
@media (min-width: 960px) {
  /* line 38, ../../private/scss/views/_home.scss */
  .home .selection-container {
    padding: 40px 0;
  }
}
/* line 49, ../../private/scss/views/_home.scss */
.home .selection-container p {
  max-width: 485px;
  color: white;
  font-size: 16px;
  display: inline-block;
  float: left;
  padding: 10px 30px 0 0;
}
/* line 58, ../../private/scss/views/_home.scss */
.home .selection-container form {
  width: auto;
  display: inline-block;
  float: left;
}
/* line 63, ../../private/scss/views/_home.scss */
.home .selection-container form input[type="submit"] {
  margin-left: 6px;
  margin-top: 1px;
  height: 39px;
  width: 39px;
}
/* line 75, ../../private/scss/views/_home.scss */
.home .results-container {
  width: 100%;
  float: left;
  padding: 30px 0;
}
/* line 80, ../../private/scss/views/_home.scss */
.home .results-container h2 {
  width: 100%;
  color: #666666;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  float: left;
  border-bottom: 1px solid #979797;
  padding: 0px 0 10px 0;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  /* line 80, ../../private/scss/views/_home.scss */
  .home .results-container h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
/* line 97, ../../private/scss/views/_home.scss */
.home .results-container article {
  width: 100%;
  float: left;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 960px) {
  /* line 97, ../../private/scss/views/_home.scss */
  .home .results-container article {
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #ededed;
  }
}
/* line 111, ../../private/scss/views/_home.scss */
.home .results-container article input[type="text"] {
  width: 60px;
  height: 36px;
  float: left;
  display: inline-block;
  margin: 0px;
}
/* line 61, ../../../../../../usr/local/lib/ruby/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.home .results-container article input[type="text"]:-moz-placeholder {
  color: #e6e6e6;
  font-size: smaller;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
/* line 64, ../../../../../../usr/local/lib/ruby/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.home .results-container article input[type="text"]::-moz-placeholder {
  color: #e6e6e6;
  font-size: smaller;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
/* line 67, ../../../../../../usr/local/lib/ruby/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.home .results-container article input[type="text"]:-ms-input-placeholder {
  color: #e6e6e6;
  font-size: smaller;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
/* line 56, ../../../../../../usr/local/lib/ruby/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */
.home .results-container article input[type="text"]::-webkit-input-placeholder {
  color: #e6e6e6;
  font-size: smaller;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
/* line 128, ../../private/scss/views/_home.scss */
.home .results-container article input[type="submit"] {
  margin-left: 8px;
  float: left;
}
/* line 133, ../../private/scss/views/_home.scss */
.home .results-container article .mob-wrap {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  /* line 133, ../../private/scss/views/_home.scss */
  .home .results-container article .mob-wrap {
    width: auto;
    float: none;
    margin: auto;
  }
}
/* line 145, ../../private/scss/views/_home.scss */
.home .results-container article .content {
  float: left;
  width: 60%;
}
@media (min-width: 960px) {
  /* line 145, ../../private/scss/views/_home.scss */
  .home .results-container article .content {
    float: left;
    clear: none;
    width: 35.83333%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }
}
/* line 156, ../../private/scss/views/_home.scss */
.home .results-container article .content .price, .home .results-container article .content h3 {
  font-size: 15px;
  font-weight: 600;
  color: black;
  margin-bottom: 0px;
}
@media (min-width: 960px) {
  /* line 156, ../../private/scss/views/_home.scss */
  .home .results-container article .content .price, .home .results-container article .content h3 {
    font-size: 20px;
  }
}
/* line 167, ../../private/scss/views/_home.scss */
.home .results-container article .content .price {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  /* line 167, ../../private/scss/views/_home.scss */
  .home .results-container article .content .price {
    margin-bottom: 10px;
  }
}
/* line 175, ../../private/scss/views/_home.scss */
.home .results-container article .content .price span {
  margin-bottom: 0px;
}
/* line 180, ../../private/scss/views/_home.scss */
.home .results-container article .content span {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #000000;
}
@media (min-width: 960px) {
  /* line 180, ../../private/scss/views/_home.scss */
  .home .results-container article .content span {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
/* line 193, ../../private/scss/views/_home.scss */
.home .results-container article .content .js-toggle-description {
  cursor: pointer;
  display: block;
}
@media (min-width: 960px) {
  /* line 193, ../../private/scss/views/_home.scss */
  .home .results-container article .content .js-toggle-description {
    display: none;
  }
}
/* line 202, ../../private/scss/views/_home.scss */
.home .results-container article .content .description {
  display: none;
}
@media (min-width: 960px) {
  /* line 202, ../../private/scss/views/_home.scss */
  .home .results-container article .content .description {
    display: block !important;
  }
}
/* line 211, ../../private/scss/views/_home.scss */
.home .results-container article .colour {
  width: 100%;
  float: right;
  background: #f5f5f5;
  position: relative;
  padding: 10px 0;
}
@media (min-width: 960px) {
  /* line 211, ../../private/scss/views/_home.scss */
  .home .results-container article .colour {
    float: left;
    clear: none;
    width: 33.33333%;
    margin-left: 0;
    margin-right: 0;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    behavior: url(../js/lib/PIE.htc);
    padding: 10px 20px;
  }
}
/* line 227, ../../private/scss/views/_home.scss */
.home .results-container article .colour:before {
  content: '';
  position: absolute;
  top: 0px;
  left: -6%;
  width: 6%;
  height: 100%;
  background: #f5f5f5;
}
@media (min-width: 960px) {
  /* line 227, ../../private/scss/views/_home.scss */
  .home .results-container article .colour:before {
    display: none;
  }
}
/* line 241, ../../private/scss/views/_home.scss */
.home .results-container article .colour:after {
  content: '';
  position: absolute;
  top: 0px;
  right: -6%;
  width: 6%;
  height: 100%;
  background: #f5f5f5;
}
@media (min-width: 960px) {
  /* line 241, ../../private/scss/views/_home.scss */
  .home .results-container article .colour:after {
    display: none;
  }
}
/* line 255, ../../private/scss/views/_home.scss */
.home .results-container article .colour p {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
}
@media (min-width: 960px) {
  /* line 255, ../../private/scss/views/_home.scss */
  .home .results-container article .colour p {
    font-size: 16px;
  }
}
/* line 265, ../../private/scss/views/_home.scss */
.home .results-container article .colour .row {
  width: 100%;
  height: 28px;
  float: left;
  border-bottom: 1px solid #CCCCCC;
}
/* line 271, ../../private/scss/views/_home.scss */
.home .results-container article .colour .row p {
  font-size: 12px;
  line-height: 28px;
  color: black;
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
}
/* line 281, ../../private/scss/views/_home.scss */
.home .results-container article .colour input[type="text"] {
  width: 60px;
  height: 28px;
  float: right;
  display: inline-block;
  margin: 0px;
}
/* line 289, ../../private/scss/views/_home.scss */
.home .results-container article .colour input[type="submit"] {
  margin-top: 10px;
  float: right;
}
/* line 295, ../../private/scss/views/_home.scss */
.home .results-container article .image {
  float: right;
  margin-bottom: 20px;
  position: relative;
  width: 40%;
}
@media (min-width: 960px) {
  /* line 295, ../../private/scss/views/_home.scss */
  .home .results-container article .image {
    float: left;
    clear: none;
    width: 30.83333%;
    margin-left: 0;
    margin-right: 0;
    float: right;
  }
}
/* line 307, ../../private/scss/views/_home.scss */
.home .results-container article .image div {
  float: right;
}
/* line 309, ../../private/scss/views/_home.scss */
.home .results-container article .image div img {
  border: 1px solid #CCCCCC;
  max-height: 240px;
}
@media (min-width: 960px) {
  /* line 309, ../../private/scss/views/_home.scss */
  .home .results-container article .image div img {
    width: 240px;
  }
}
/* line 319, ../../private/scss/views/_home.scss */
.home .results-container article .image div span {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #ababab;
}
/* line 333, ../../private/scss/views/_home.scss */
.home .results-container article.type2 .image {
  float: left;
}
/* line 336, ../../private/scss/views/_home.scss */
.home .results-container article.type2 .image img {
  float: left;
}

/*********************************************
  :: Cart                            
********************************************/
/* line 5, ../../private/scss/views/_cart.scss */
.cart {
  width: 100%;
  float: left;
}
/* line 9, ../../private/scss/views/_cart.scss */
.cart .intro-container {
  width: 100%;
  float: left;
  text-align: center;
  margin: 30px 0 10px 0;
}
@media (min-width: 960px) {
  /* line 9, ../../private/scss/views/_cart.scss */
  .cart .intro-container {
    margin: 60px 0 18px 0;
  }
}
/* line 20, ../../private/scss/views/_cart.scss */
.cart .intro-container h1 {
  margin: 0px;
  text-align: left;
  font-weight: 300;
  float: left;
}
/* line 26, ../../private/scss/views/_cart.scss */
.cart .intro-container .button {
  width: auto;
  height: 34px;
  font-size: 12px;
  font-weight: 300;
  line-height: 34px;
  padding: 0px 29px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../js/lib/PIE.htc);
  background: #303232;
  color: white;
  text-transform: uppercase;
  float: right;
  clear: both;
  text-align: center;
  margin-bottom: 5px;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 960px) {
  /* line 26, ../../private/scss/views/_cart.scss */
  .cart .intro-container .button {
    margin-left: 5px;
    clear: none;
    float: right;
    margin-bottom: 0px;
  }
}
/* line 54, ../../private/scss/views/_cart.scss */
.cart .intro-container .button:hover {
  background: #666666;
}
/* line 63, ../../private/scss/views/_cart.scss */
.cart .cart-container {
  width: 100%;
  float: left;
  text-align: center;
}
/* line 68, ../../private/scss/views/_cart.scss */
.cart .cart-container .products-container {
  width: 100%;
  float: left;
}
/* line 73, ../../private/scss/views/_cart.scss */
.cart .cart-container article {
  width: 100%;
  float: left;
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 960px) {
  /* line 73, ../../private/scss/views/_cart.scss */
  .cart .cart-container article {
    padding: 20px 0 40px 0;
  }
}
/* line 84, ../../private/scss/views/_cart.scss */
.cart .cart-container article .product {
  width: 100%;
  float: left;
}
@media (min-width: 960px) {
  /* line 84, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .product {
    width: 325px;
  }
}
/* line 93, ../../private/scss/views/_cart.scss */
.cart .cart-container article .product img {
  width: 107px;
  border: 1px solid #CCCCCC;
  float: left;
  display: inline-block;
}
/* line 100, ../../private/scss/views/_cart.scss */
.cart .cart-container article .product h2 {
  width: 170px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  float: left;
  text-align: left;
  vertical-align: top;
  padding: 5px 0 0 10px;
}
@media (min-width: 600px) {
  /* line 100, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .product h2 {
    width: 210px;
    padding: 10px 0 0 20px;
  }
}
/* line 119, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail {
  width: 100%;
  float: left;
  margin: 10px 0 0px 0;
}
@media (min-width: 960px) {
  /* line 119, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail {
    max-width: 615px;
    margin: 0 0 0px 0;
  }
}
/* line 130, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details {
  width: 100%;
  max-width: 400px;
  float: left;
  text-align: left;
  margin: 0 0 5px 0;
}
@media (min-width: 960px) {
  /* line 130, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail .details {
    max-width: 615px;
    height: 34px;
  }
}
/* line 143, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row {
  display: inline-block;
  text-align: left;
  width: 18%;
}
/* line 148, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row:first-of-type, .cart .cart-container article .cart-detail .details .row:nth-of-type(2) {
  width: 25%;
}
/* line 152, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row:nth-of-type(4) {
  width: 50px;
  text-align: right;
}
/* line 157, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row:last-of-type {
  width: 10px;
  text-align: right;
}
@media (min-width: 960px) {
  /* line 163, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail .details .row:first-of-type {
    width: 200px;
  }
  /* line 167, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail .details .row:nth-of-type(2) {
    width: 155px;
  }
  /* line 171, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail .details .row:nth-of-type(3) {
    width: 120px;
  }
  /* line 175, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail .details .row:nth-of-type(4) {
    width: 70px;
  }
  /* line 179, ../../private/scss/views/_cart.scss */
  .cart .cart-container article .cart-detail .details .row:last-of-type {
    width: 50px;
  }
}
/* line 185, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row p {
  display: inline-block;
  margin: 0px;
  line-height: 34px;
}
/* line 191, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row input {
  width: 100%;
  max-width: 65px;
  height: 34px;
  font-size: 11px;
  color: black;
  text-align: center;
}
/* line 200, ../../private/scss/views/_cart.scss */
.cart .cart-container article .cart-detail .details .row .fa {
  padding-left: 10px;
}
/* line 211, ../../private/scss/views/_cart.scss */
.cart .cart-container article.title {
  display: none;
}
@media (min-width: 960px) {
  /* line 211, ../../private/scss/views/_cart.scss */
  .cart .cart-container article.title {
    display: block;
    padding: 0px;
  }
}
/* line 220, ../../private/scss/views/_cart.scss */
.cart .cart-container article.title .product {
  opacity: 0;
}
/* line 224, ../../private/scss/views/_cart.scss */
.cart .cart-container article.title .row:nth-of-type(3) {
  padding-left: 15px;
}
/* line 228, ../../private/scss/views/_cart.scss */
.cart .cart-container article.title .row:last-of-type {
  padding-left: 30px;
}
/* line 238, ../../private/scss/views/_cart.scss */
.cart .subtotaltable td, .cart .subtotaltable td span {
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
/* line 242, ../../private/scss/views/_cart.scss */
.cart .subtotaltable {
  float: right;
  width: 100%;
  vertical-align: top;
  margin: 30px 0;
  text-align: right;
}
@media (min-width: 960px) {
  /* line 242, ../../private/scss/views/_cart.scss */
  .cart .subtotaltable {
    width: 350px;
  }
}
/* line 254, ../../private/scss/views/_cart.scss */
.cart .subtotaltable td {
  font-weight: 300;
  font-size: 14px;
  line-height: 27px;
  color: black;
  padding: 5px 0;
}
/* line 261, ../../private/scss/views/_cart.scss */
.cart .subtotaltable td:first-of-type {
  text-align: left;
}
/* line 265, ../../private/scss/views/_cart.scss */
.cart .subtotaltable td:first-of-type {
  font-weight: 500;
}
/* line 270, ../../private/scss/views/_cart.scss */
.cart .subtotaltable .total-amount, .cart .subtotaltable .total-text span {
  font-weight: 600;
  font-size: 18px;
  color: black;
  padding-top: 15px;
}
/* line 277, ../../private/scss/views/_cart.scss */
.cart .subtotaltable .total-text {
  font-weight: 400;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
/* line 285, ../../private/scss/views/_cart.scss */
.cart .buttons {
  float: right;
  width: 100%;
  padding: 30px 0 60px 0;
  text-align: right;
  border-top: 1px solid #EEEEEE;
}
@media (min-width: 960px) {
  /* line 285, ../../private/scss/views/_cart.scss */
  .cart .buttons {
    padding: 43px 0 170px 0;
  }
}
/* line 297, ../../private/scss/views/_cart.scss */
.cart .buttons .back {
  font-weight: 600;
  color: #d01e2c;
  float: left;
  padding: 0 0 20px 0;
}
@media (min-width: 960px) {
  /* line 297, ../../private/scss/views/_cart.scss */
  .cart .buttons .back {
    float: none;
    padding: 0 10px;
  }
}
/* line 309, ../../private/scss/views/_cart.scss */
.cart .buttons .back .fa {
  font-size: 22px;
  font-weight: 600;
  color: #303232;
  padding-right: 5px;
  vertical-align: sub;
}
/* line 318, ../../private/scss/views/_cart.scss */
.cart .buttons .button {
  width: auto;
  height: 34px;
  font-size: 12px;
  font-weight: 300;
  line-height: 34px;
  padding: 0px 29px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../js/lib/PIE.htc);
  background: #303232;
  color: white;
  text-transform: uppercase;
  float: left;
  clear: both;
  text-align: center;
  margin-bottom: 5px;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 960px) {
  /* line 318, ../../private/scss/views/_cart.scss */
  .cart .buttons .button {
    margin-left: 5px;
    clear: none;
    float: none;
    margin-bottom: 0px;
  }
}
/* line 346, ../../private/scss/views/_cart.scss */
.cart .buttons .button:hover {
  background: #666666;
}

/*********************************************
  :: checkout-billing                         
********************************************/
/* line 5, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout {
  width: 100%;
  padding: 0 6%;
  float: left;
  clear: both;
}
@media (min-width: 960px) {
  /* line 5, ../../private/scss/views/_checkout-billing.scss */
  .shopping-cart-checkout {
    padding: 0px;
  }
}
/* line 13, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .sidebar {
  display: none;
  margin: 0px;
}
@media (min-width: 960px) {
  /* line 13, ../../private/scss/views/_checkout-billing.scss */
  .shopping-cart-checkout .sidebar {
    display: block;
    float: left;
    clear: none;
    width: 23.33333%;
    margin-left: 0;
    margin-right: 0;
    border: 1px solid #ccc;
    padding: 24px 25px 30px 25px;
    padding-bottom: 280px;
    margin: 51px 0;
  }
}
/* line 24, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .sidebar h3 {
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  margin-bottom: 0px;
}
/* line 29, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .sidebar h3 .inc {
  font-size: 14px;
  font-weight: 300;
}
/* line 34, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .sidebar .price {
  font-weight: 300;
  font-size: 18px;
  color: #aaa;
  line-height: 30px;
  margin-bottom: 10px;
  display: block;
}
/* line 42, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .sidebar .button {
  display: inline-block;
  padding: 10px;
  text-align: center;
  background: #d01e2c;
  color: white;
  width: 173px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  behavior: url(../js/lib/PIE.htc);
  text-transform: uppercase;
  font-size: 15px;
}
/* line 56, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content {
  width: 100%;
  margin: 0px;
}
@media (min-width: 960px) {
  /* line 56, ../../private/scss/views/_checkout-billing.scss */
  .shopping-cart-checkout .content {
    float: left;
    clear: none;
    width: 76.66667%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 23px;
    margin: 48px 0;
  }
}
/* line 64, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .form {
  float: left;
  width: 100%;
  margin: -2px 0 4px 0;
}
@media (min-width: 960px) {
  /* line 64, ../../private/scss/views/_checkout-billing.scss */
  .shopping-cart-checkout .content .form {
    margin: -2px 0 25px 0;
  }
}
/* line 71, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .form h1 {
  display: none;
}
@media (min-width: 960px) {
  /* line 71, ../../private/scss/views/_checkout-billing.scss */
  .shopping-cart-checkout .content .form h1 {
    display: block;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 300;
    color: black;
  }
}
/* line 81, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .form label, .shopping-cart-checkout .content .form p {
  padding-left: 10px;
  color: black;
}
/* line 85, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .form label.shipping-checkbox {
  font-size: initial;
  display: inline;
}
/* line 89, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .form .controls .radio input {
  margin-right: 10px;
}
/* line 94, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .sod_select {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  behavior: url(../js/lib/PIE.htc);
  border: 1px solid #CCCCCC;
  margin-top: 10px;
  height: 41px;
}
/* line 100, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .form-field h3 {
  padding-top: 20px;
  margin-top: 28px;
  border-top: 1px solid #EEEEEE;
}
/* line 105, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content #shipping-info {
  display: none;
  float: left;
  padding: 0 0 27px 0;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 20px;
}
/* line 112, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content #account-info {
  display: none;
  float: left;
  padding-left: 20px;
}
/* line 116, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content #account-info input {
  width: 50%;
  margin-left: 10px;
}
/* line 121, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .note {
  float: left;
  color: #999;
  font-style: italic;
  padding: 20px 30% 0 0;
}
/* line 126, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .content .note a {
  color: #d01e2c;
}
/* line 134, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .buttons .button {
  width: auto;
  height: 34px;
  font-size: 12px;
  font-weight: 300;
  line-height: 34px;
  padding: 0px 29px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../js/lib/PIE.htc);
  background: #303232;
  color: white;
  text-transform: uppercase;
  float: left;
  clear: both;
  text-align: center;
  margin-bottom: 5px;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 960px) {
  /* line 134, ../../private/scss/views/_checkout-billing.scss */
  .shopping-cart-checkout .buttons .button {
    margin-left: 5px;
    clear: none;
    float: none;
    margin-bottom: 0px;
  }
}
/* line 156, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .buttons .button:hover {
  background: #666666;
}
/* line 161, ../../private/scss/views/_checkout-billing.scss */
.shopping-cart-checkout .buttons .button {
  float: left !important;
  margin-top: 20px;
}

/*********************************************
  :: checkout-review                           
********************************************/
/* line 5, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review {
  width: 100%;
  padding: 0 6%;
  float: left;
  clear: both;
}
@media (min-width: 960px) {
  /* line 5, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review {
    padding: 0px;
  }
}
/* line 16, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .sidebar {
  display: none;
  margin: 0px;
}
@media (min-width: 960px) {
  /* line 16, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .sidebar {
    display: block;
    float: left;
    clear: none;
    width: 23.33333%;
    margin-left: 0;
    margin-right: 0;
    border: 1px solid #ccc;
    padding: 24px 25px 30px 25px;
    padding-bottom: 280px;
    margin: 51px 0;
  }
}
/* line 32, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .sidebar h3 {
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  margin-bottom: 0px;
}
/* line 38, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .sidebar h3 .inc {
  font-size: 14px;
  font-weight: 300;
}
/* line 44, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .sidebar .price {
  font-weight: 300;
  font-size: 18px;
  color: #aaa;
  line-height: 30px;
  margin-bottom: 10px;
  display: block;
}
/* line 53, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .sidebar .button {
  display: inline-block;
  padding: 10px;
  text-align: center;
  background: #d01e2c;
  color: white;
  width: 173px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  behavior: url(../js/lib/PIE.htc);
  text-transform: uppercase;
  font-size: 15px;
}
/* line 71, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .content {
  width: 100%;
  margin: 0px;
}
@media (min-width: 960px) {
  /* line 71, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .content {
    float: left;
    clear: none;
    width: 76.66667%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 23px;
    margin: 48px 0;
  }
}
/* line 83, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .content h1 {
  display: none;
}
@media (min-width: 960px) {
  /* line 83, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .content h1 {
    display: block;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 300;
    color: black;
  }
}
/* line 95, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .content h3 {
  color: #d01e2c;
  margin-bottom: 20px;
}
/* line 100, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .content .billing-container {
  width: 100%;
  float: left;
  margin-bottom: 38px;
}
/* line 105, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .content .billing-container .billing {
  width: 275px;
  float: left;
  margin-top: 20px;
}
@media (min-width: 960px) {
  /* line 105, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .content .billing-container .billing {
    margin-top: 0px;
  }
}
/* line 115, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .content .billing-container .billing p {
  font-size: 14px;
  color: #AAAAAA;
  margin-bottom: 0px;
}
/* line 129, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container {
  width: 100%;
  float: left;
}
/* line 133, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article {
  width: 100%;
  float: left;
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}
@media (min-width: 960px) {
  /* line 133, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .items-container article {
    padding: 20px 0 40px 0;
  }
}
/* line 144, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .product {
  width: 100%;
  float: left;
}
@media (min-width: 960px) {
  /* line 144, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .items-container article .product {
    width: 50%;
  }
}
/* line 153, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .product h2 {
  width: 170px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  float: left;
  text-align: left;
  vertical-align: top;
  padding: 5px 0 0 10px;
}
@media (min-width: 600px) {
  /* line 153, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .items-container article .product h2 {
    width: 100%;
    padding: 10px 0 0 20px;
  }
}
/* line 172, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail {
  width: 100%;
  float: left;
  margin: 10px 0 0px 0;
}
@media (min-width: 960px) {
  /* line 172, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .items-container article .cart-detail {
    width: 50%;
    margin: 0 0 0px 0;
  }
}
/* line 183, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail .details {
  width: 100%;
  max-width: 400px;
  float: left;
  text-align: left;
  margin: 0 0 5px 0;
}
@media (min-width: 960px) {
  /* line 183, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .items-container article .cart-detail .details {
    max-width: 615px;
    height: 34px;
  }
}
/* line 196, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail .details .row {
  display: inline-block;
  text-align: left;
  width: 25%;
}
/* line 201, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail .details .row .hex {
  margin-right: 0px;
}
/* line 204, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail .details .row p {
  display: inline-block;
  margin: 0px;
  padding: 0 0 0 20px;
  line-height: 34px;
}
/* line 211, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail .details .row:first-of-type {
  width: 45%;
}
/* line 215, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article .cart-detail .details .row:last-of-type {
  width: 25%;
}
/* line 226, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article.title {
  display: none;
}
@media (min-width: 960px) {
  /* line 226, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .items-container article.title {
    display: block;
    padding: 0px;
  }
}
/* line 235, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article.title .row p {
  padding: 0px !important;
  color: #9b9b9b;
}
/* line 240, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article.title .product p {
  color: #9b9b9b;
  margin-bottom: 0px;
  line-height: 40px;
}
/* line 246, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .items-container article.title .row:nth-of-type(2) p {
  padding-left: 8px !important;
}
/* line 256, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .subtotaltable {
  float: right;
  width: 100%;
  vertical-align: top;
  margin: 30px 0;
  text-align: right;
}
@media (min-width: 960px) {
  /* line 256, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .subtotaltable {
    width: 350px;
  }
}
/* line 268, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .subtotaltable td {
  font-weight: 300;
  font-size: 14px;
  line-height: 27px;
  color: black;
  padding: 5px 0;
}
/* line 275, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .subtotaltable td:first-of-type {
  text-align: left;
}
/* line 279, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .subtotaltable td:first-of-type {
  font-weight: 500;
}
/* line 284, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .subtotaltable .total-amount, .shopping-cart-review .subtotaltable .total-text span {
  font-weight: 600;
  font-size: 18px;
  color: black;
  padding-top: 15px;
}
/* line 291, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .subtotaltable .total-text {
  font-weight: 400;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
/* line 302, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .buttons {
  float: right;
  width: 100%;
  padding: 30px 0 60px 0;
  text-align: right;
  border-top: 1px solid #EEEEEE;
}
@media (min-width: 960px) {
  /* line 302, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .buttons {
    padding: 43px 0 170px 0;
  }
}
/* line 314, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .buttons .back {
  font-weight: 600;
  color: #d01e2c;
  padding: 0 0 20px 0;
  float: left;
}
@media (min-width: 960px) {
  /* line 314, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .buttons .back {
    float: none;
    padding: 0 10px;
  }
}
/* line 326, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .buttons .back .fa {
  font-size: 22px;
  font-weight: 600;
  color: #303232;
  padding-right: 5px;
  vertical-align: sub;
}
/* line 335, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .buttons .button {
  width: auto;
  height: 34px;
  font-size: 12px;
  font-weight: 300;
  line-height: 34px;
  padding: 0px 29px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../js/lib/PIE.htc);
  background: #303232;
  color: white;
  text-transform: uppercase;
  float: left;
  clear: both;
  text-align: center;
  margin-bottom: 5px;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 960px) {
  /* line 335, ../../private/scss/views/_checkout-review.scss */
  .shopping-cart-review .buttons .button {
    margin-left: 5px;
    clear: none;
    float: none;
    margin-bottom: 0px;
  }
}
/* line 363, ../../private/scss/views/_checkout-review.scss */
.shopping-cart-review .buttons .button:hover {
  background: #666666;
}

/*********************************************
  :: ThankYou                      
********************************************/
/* line 5, ../../private/scss/views/_thankyou.scss */
.thankyou {
  width: 100%;
  padding: 0 0 30px 0;
  float: left;
  clear: both;
}
@media (min-width: 960px) {
  /* line 5, ../../private/scss/views/_thankyou.scss */
  .thankyou {
    padding: 0 0 340px 0;
  }
}
/* line 16, ../../private/scss/views/_thankyou.scss */
.thankyou h1 {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px 0 20px 0;
  margin-bottom: 25px;
  font-weight: 300;
  width: 100%;
}
@media (min-width: 960px) {
  /* line 16, ../../private/scss/views/_thankyou.scss */
  .thankyou h1 {
    font-size: 30px;
    padding: 38px 0 20px 0;
  }
}
/* line 29, ../../private/scss/views/_thankyou.scss */
.thankyou p {
  max-width: 400px;
  clear: both;
}
/* line 34, ../../private/scss/views/_thankyou.scss */
.thankyou .buttons {
  width: 100%;
  float: left;
}
/* line 39, ../../private/scss/views/_thankyou.scss */
.thankyou .button {
  width: auto;
  height: 44px;
  padding: 0px 29px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../js/lib/PIE.htc);
  background: #303232;
  float: left;
  text-align: center;
  margin: 0 5px 5px 0;
  display: table;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 960px) {
  /* line 39, ../../private/scss/views/_thankyou.scss */
  .thankyou .button {
    margin: 0 5px 5px 0px;
  }
}
/* line 59, ../../private/scss/views/_thankyou.scss */
.thankyou .button:hover {
  background: #666666;
}
/* line 63, ../../private/scss/views/_thankyou.scss */
.thankyou .button p {
  max-width: 207px;
  color: white;
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  text-transform: uppercase;
}

/* line 3, ../../private/scss/views/_payment.scss */
.mandatory {
  display: inline;
  color: #aaa;
  font-size: 13px;
  padding-left: 20px;
  line-height: 35px;
}

/*********************************************
  :: 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 33, ../../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: white;
  font-size: 15px;
  font-weight: 40;
  line-height: 25px;
  color: black;
  border: 1px solid #A59D7C;
  width: 100%;
  padding: 5px 10px 5px 10px;
  width: 233px;
  height: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  behavior: url(../js/lib/PIE.htc);
  -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 68, ../../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: "\e600";
  font-size: 6px;
  line-height: 16px;
  color: black;
}

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

/* line 100, ../../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: #828282;
  color: #b2b2b2;
  cursor: not-allowed;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
/* line 114, ../../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 122, ../../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 125, ../../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 129, ../../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;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  behavior: url(../js/lib/PIE.htc);
}

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

/* Don't display the options when  */
/* line 153, ../../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 158, ../../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 166, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_list {
  display: block;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

/* All the options. Keep the first three lines for truncating... */
/* line 174, ../../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 185, ../../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 194, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

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

/* Disabled option */
/* line 204, ../../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 210, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.active {
  background: #f7f7f7;
  color: #333333;
}

/*Make room for the check mark */
/* line 216, ../../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 222, ../../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 238, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select.no_highlight .sod_option.selected {
  font-weight: 300;
}

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

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

/* line 249, ../../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 253, ../../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 258, ../../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;
}

/* 
 *  Owl Carousel - Animate Plugin
 */
/* line 4, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 10, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 13, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* Transitions */
/* line 18, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 43, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 74, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-height {
  -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;
}

/* 
 *  Core Owl Carousel CSS File
 */
/* line 85, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 93, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

/* line 97, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 105, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 111, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 122, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 125, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 129, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 132, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-refresh .owl-item {
  display: none;
}

/* line 135, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 147, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

/* line 152, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* line 158, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

/* line 165, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

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

/* No Js */
/* line 173, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 180, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 188, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
/* line 195, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 200, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

/* line 218, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

/* line 225, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 229, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 244, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* line 250, ../../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;
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël 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: 2;
    /* 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;
  }

  /* line 35, ../../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 44, ../../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;
  }

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

  /* line 80, ../../private/scss/third-party-js-plugins/_featherlight.scss */
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    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;
  }

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

  /* line 108, ../../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 114, ../../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 122, ../../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;
  }
}
/* ==========================================================================
   $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 */
