@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()
********************************************/
/*********************************************
  :: 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);
/*********************************************
:: Icon Fonts                    
********************************************/
@font-face {
  font-family: 'icomoon';
  src: url("/fonts/icomoon.eot?l1en53");
  src: url("/fonts/icomoon.eot?#iefixl1en53") format("embedded-opentype"), url("/fonts/icomoon.ttf?l1en53") format("truetype"), url("/fonts/icomoon.woff?l1en53") format("woff"), url("/fonts/icomoon.svg?l1en53#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 22, ../../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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* line 37, ../../private/scss/core/_fonts.scss */
.icon-pinterest-square:before {
  content: "\e901";
}

/* line 40, ../../private/scss/core/_fonts.scss */
.icon-pinterest:before {
  content: "\e902";
}

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

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

/* line 49, ../../private/scss/core/_fonts.scss */
.icon-google-plus-square:before {
  content: "\e905";
}

/* line 52, ../../private/scss/core/_fonts.scss */
.icon-google-plus:before {
  content: "\e906";
}

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

/* line 58, ../../private/scss/core/_fonts.scss */
.icon-youtube:before {
  content: "\e908";
}

/* line 61, ../../private/scss/core/_fonts.scss */
.icon-vimeo-square:before {
  content: "\e909";
}

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

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

/* line 70, ../../private/scss/core/_fonts.scss */
.icon-tumblr-square:before {
  content: "\e90c";
}

/* line 73, ../../private/scss/core/_fonts.scss */
.icon-tumblr:before {
  content: "\e90d";
}

/* line 76, ../../private/scss/core/_fonts.scss */
.icon-linkedin:before {
  content: "\e90e";
}

/* line 79, ../../private/scss/core/_fonts.scss */
.icon-linkedin-square:before {
  content: "\e90f";
}

/* line 82, ../../private/scss/core/_fonts.scss */
.icon-angle-double-down:before {
  content: "\e910";
}

/* line 85, ../../private/scss/core/_fonts.scss */
.icon-angle-double-left:before {
  content: "\e911";
}

/* line 88, ../../private/scss/core/_fonts.scss */
.icon-angle-double-right:before {
  content: "\e912";
}

/* line 91, ../../private/scss/core/_fonts.scss */
.icon-angle-double-up:before {
  content: "\e913";
}

/* line 94, ../../private/scss/core/_fonts.scss */
.icon-angle-down:before {
  content: "\e914";
}

/* line 97, ../../private/scss/core/_fonts.scss */
.icon-angle-left:before {
  content: "\e915";
}

/* line 100, ../../private/scss/core/_fonts.scss */
.icon-angle-right:before {
  content: "\e916";
}

/* line 103, ../../private/scss/core/_fonts.scss */
.icon-angle-up:before {
  content: "\e917";
}

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

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

/* line 112, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-down:before {
  content: "\e91a";
}

/* line 115, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-left:before {
  content: "\e91b";
}

/* line 118, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-right:before {
  content: "\e91c";
}

/* line 121, ../../private/scss/core/_fonts.scss */
.icon-arrow-circle-o-up:before {
  content: "\e91d";
}

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

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

/* line 130, ../../private/scss/core/_fonts.scss */
.icon-bars:before {
  content: "\e920";
}

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

/* line 136, ../../private/scss/core/_fonts.scss */
.icon-check:before {
  content: "\e922";
}

/* line 139, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-down:before {
  content: "\e923";
}

/* line 142, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-left:before {
  content: "\e924";
}

/* line 145, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-right:before {
  content: "\e925";
}

/* line 148, ../../private/scss/core/_fonts.scss */
.icon-chevron-circle-up:before {
  content: "\e926";
}

/* line 151, ../../private/scss/core/_fonts.scss */
.icon-chevron-down:before {
  content: "\e927";
}

/* line 154, ../../private/scss/core/_fonts.scss */
.icon-chevron-left:before {
  content: "\e928";
}

/* line 157, ../../private/scss/core/_fonts.scss */
.icon-chevron-right:before {
  content: "\e929";
}

/* line 160, ../../private/scss/core/_fonts.scss */
.icon-chevron-up:before {
  content: "\e92a";
}

/* line 163, ../../private/scss/core/_fonts.scss */
.icon-envelope-o:before {
  content: "\e92b";
}

/* line 166, ../../private/scss/core/_fonts.scss */
.icon-file:before {
  content: "\e92c";
}

/* line 169, ../../private/scss/core/_fonts.scss */
.icon-info-circle:before {
  content: "\e92d";
}

/* line 172, ../../private/scss/core/_fonts.scss */
.icon-map-marker:before {
  content: "\e92e";
}

/* line 175, ../../private/scss/core/_fonts.scss */
.icon-minus-circle:before {
  content: "\e92f";
}

/* line 178, ../../private/scss/core/_fonts.scss */
.icon-phone:before {
  content: "\e930";
}

/* line 181, ../../private/scss/core/_fonts.scss */
.icon-play:before {
  content: "\e931";
}

/* line 184, ../../private/scss/core/_fonts.scss */
.icon-plus-circle:before {
  content: "\e932";
}

/* line 187, ../../private/scss/core/_fonts.scss */
.icon-question-circle:before {
  content: "\e933";
}

/* line 190, ../../private/scss/core/_fonts.scss */
.icon-search:before {
  content: "\e934";
}

/* line 193, ../../private/scss/core/_fonts.scss */
.icon-search-plus:before {
  content: "\e935";
}

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

/* line 199, ../../private/scss/core/_fonts.scss */
.icon-sort:before {
  content: "\e937";
}

/* line 202, ../../private/scss/core/_fonts.scss */
.icon-tags:before {
  content: "\e938";
}

/* line 205, ../../private/scss/core/_fonts.scss */
.icon-times:before {
  content: "\e939";
}

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

/* line 211, ../../private/scss/core/_fonts.scss */
.icon-youtube-play:before {
  content: "\e93b";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 6, ../../private/scss/core/_base.scss */
.fouc {
  display: none;
}

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

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

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

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

/*********************************************
  :: Layout                            
********************************************/
/* line 40, ../../private/scss/core/_base.scss */
body {
  background: black;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 400;
}

/*********************************************
  :: Typography                             
********************************************/
/* line 5, ../../private/scss/core/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "droid-serif", "Georgia", "Times", "Times New Roman", serif;
}

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

/* line 26, ../../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 26, ../../private/scss/core/_typography.scss */
  h2, .h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

/* line 39, ../../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 39, ../../private/scss/core/_typography.scss */
  h3, .h3 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 53, ../../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 53, ../../private/scss/core/_typography.scss */
  h4, .h4 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 66, ../../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 66, ../../private/scss/core/_typography.scss */
  h5, .h5 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 79, ../../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 79, ../../private/scss/core/_typography.scss */
  h6, .h6 {
    font-size: 20px;
    line-height: 27px;
  }
}

/* line 92, ../../private/scss/core/_typography.scss */
p, li, td, th, a, blockquote {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  font-family: "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}
@media (min-width: 960px) {
  /* line 92, ../../private/scss/core/_typography.scss */
  p, li, td, th, a, blockquote {
    font-size: 15px;
    line-height: 21px;
  }
}

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

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

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

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

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

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

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

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

/*********************************************
  :: Buttons                             
********************************************/
/* line 4, ../../private/scss/core/_buttons.scss */
.button, button {
  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] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
}

/* line 22, ../../private/scss/core/_buttons.scss */
.button {
  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 35, ../../private/scss/core/_buttons.scss */
.button:hover, .button:focus {
  background: #54565A;
  color: white;
}

/* line 41, ../../private/scss/core/_buttons.scss */
.download-pdf {
  width: auto;
  height: 35px;
  line-height: 35px;
  background: #1c1c1c;
  padding: 0 55px 0 20px;
  position: relative;
  color: white;
  display: inline-block;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 52, ../../private/scss/core/_buttons.scss */
.download-pdf:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: url(/images/download-right.png) no-repeat right center;
  background-size: cover;
  width: 35px;
  height: 35px;
}
/* line 63, ../../private/scss/core/_buttons.scss */
.download-pdf:hover {
  box-shadow: 0px 0px 7px #555;
}

/* line 70, ../../private/scss/core/_buttons.scss */
.dark-button {
  background: #54565A;
}
/* line 72, ../../private/scss/core/_buttons.scss */
.dark-button:hover, .dark-button:focus {
  background: #000;
  color: white;
}

/* line 79, ../../private/scss/core/_buttons.scss */
.left-icon-button {
  position: relative;
  padding-left: 50px;
}
/* line 83, ../../private/scss/core/_buttons.scss */
.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 100, ../../private/scss/core/_buttons.scss */
.left-icon-button:hover, .left-icon-button:focus {
  background: #797B7F;
  color: white;
}

/* line 107, ../../private/scss/core/_buttons.scss */
.right-icon-button {
  position: relative;
  padding-right: 50px;
}
/* line 111, ../../private/scss/core/_buttons.scss */
.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 128, ../../private/scss/core/_buttons.scss */
.right-icon-button:hover, .right-icon-button:focus {
  background: #797B7F;
  color: white;
}

/* Custom styles for specific icon buttons  */
/* line 138, ../../private/scss/core/_buttons.scss */
.right-arrow-button {
  padding-right: 40px;
}
/* line 140, ../../private/scss/core/_buttons.scss */
.right-arrow-button span {
  padding: 10px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
}

/* line 149, ../../private/scss/core/_buttons.scss */
.left-arrow-button {
  padding-left: 40px;
}
/* line 151, ../../private/scss/core/_buttons.scss */
.left-arrow-button span {
  padding: 10px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
}

/* line 164, ../../private/scss/core/_buttons.scss */
.loading-spinner {
  text-align: center;
  position: absolute;
  margin: auto;
  top: 40%;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 169, ../../private/scss/core/_buttons.scss */
.loading-spinner > p {
  color: white;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 10px;
}
/* line 175, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner {
  width: 220px;
  text-align: center;
  margin: auto;
}
/* line 181, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner > div {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
/* line 190, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #ea883c;
}
/* line 196, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #faec23;
}
/* line 201, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce3 {
  -webkit-animation-delay: -0.08s;
  animation-delay: -0.08s;
  background-color: #78c8d4;
}
/* line 206, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce4 {
  -webkit-animation-delay: -0.04s;
  animation-delay: -0.04s;
  background-color: #b172a3;
}
/* line 211, ../../private/scss/core/_buttons.scss */
.loading-spinner .spinner .bounce5 {
  -webkit-animation-delay: -0.02s;
  animation-delay: -0.02s;
  background-color: #892b7c;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*********************************************
  :: Forms                             
********************************************/
/* line 4, ../../private/scss/core/_forms.scss */
form {
  float: left;
  width: 100%;
}

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

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

/* line 23, ../../private/scss/core/_forms.scss */
label {
  display: block;
  font-size: 12.5px;
  line-height: 21px;
  color: #989898;
  font-weight: 400;
  margin-top: 12px;
}
@media (min-width: 960px) {
  /* line 23, ../../private/scss/core/_forms.scss */
  label {
    font-size: 14px;
    margin-top: 20px;
  }
}

/* line 37, ../../private/scss/core/_forms.scss */
input, textarea, select {
  outline: none;
  border: none;
  background: black;
  font-size: 15px;
  font-weight: 400;
  line-height: 35px;
  color: white;
  border: 1px solid white;
  width: 100%;
  padding: 5px 10px 5px 10px;
  height: 35px;
  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;
}
/* line 54, ../../private/scss/core/_forms.scss */
input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
  border-color: #989898;
  color: white;
}

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

/* line 69, ../../private/scss/core/_forms.scss */
input[type="submit"], button[type="submit"], input[type="button"] {
  background: #2E2E2E;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 35px;
  display: block;
  padding: 0;
  width: 150px;
  height: 35px;
  text-transform: none;
  float: left;
  -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;
  clear: both;
}

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

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

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

/*********************************************
  :: Form Layout (Default)                          
********************************************/
/* line 105, ../../private/scss/core/_forms.scss */
.form-field {
  float: left;
  width: 100%;
}
/* line 109, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio {
  float: left;
  width: auto;
  margin-right: 20px;
  text-transform: initial;
  cursor: pointer;
}
/* line 116, ../../private/scss/core/_forms.scss */
.form-field label.checkbox-radio input {
  box-sizing: border-box;
  padding: 0;
  width: 15px;
  height: 15px;
  vertical-align: top;
  display: inline-block;
  margin-right: 5px;
  margin-top: 3px;
}
/* line 129, ../../private/scss/core/_forms.scss */
.form-field input[type="submit"] {
  float: right;
}
/* line 134, ../../private/scss/core/_forms.scss */
.form-field:first-of-type label {
  margin-top: 0px;
}

/* line 142, ../../private/scss/core/_forms.scss */
.form-footer {
  float: left;
  width: 100%;
}
@media (min-width: 960px) {
  /* line 142, ../../private/scss/core/_forms.scss */
  .form-footer {
    margin-top: 13px;
  }
}
/* line 151, ../../private/scss/core/_forms.scss */
.form-footer span {
  font-size: 10px;
  margin-bottom: 15px;
  color: white;
  font-weight: 300;
  float: right;
  display: block;
}

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

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

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

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

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

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

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

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

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

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

/* line 225, ../../private/scss/core/_forms.scss */
label.error {
  color: #DE2828;
  margin-top: 3px;
  font-weight: 500;
  font-size: 11px;
}

/*********************************************
  :: Main Menu Toggle                            
********************************************/
/* line 4, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger {
  width: 20px;
  float: right;
  padding: 0px;
  background: transparent;
  margin-top: 1px;
  position: absolute;
  top: 0%;
  right: 6%;
  display: inline-block;
  margin-top: 20px;
  -moz-transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
  -o-transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
  transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
}
/* line 17, ../../private/scss/core/_header-small-screen-menu.scss */
button.small-screen-main-menu-trigger span {
  width: 20px;
  height: 2px;
  background: white;
  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.19, 0.78, 0.27, 1);
  -o-transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
  transition: all 0.8s cubic-bezier(0.19, 0.78, 0.27, 1);
  opacity: 1;
}
/* line 28, ../../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 4, ../../private/scss/core/_header-small-screen-menu.scss */
  button.small-screen-main-menu-trigger {
    display: none;
  }
}

/* line 38, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger {
  height: 33px;
  width: 33px;
  text-align: center;
  z-index: 9999999;
  padding: 0px;
}
/* line 45, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span {
  margin: 0px;
  background: white;
  margin-left: 16px;
}
/* line 51, ../../private/scss/core/_header-small-screen-menu.scss */
.open-menu .small-screen-main-menu-trigger span:last-of-type {
  opacity: 0;
}
/* line 55, ../../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 59, ../../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 72, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu {
  width: 85%;
  background: #1c1c1c;
  position: fixed;
  top: 0px;
  right: -85%;
  height: 100%;
  text-align: center;
  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 84, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul {
  margin: 80px 0 0 0;
  padding: 0px;
  float: left;
  width: 100%;
}
/* line 91, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li {
  list-style-type: none;
}
/* line 95, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li {
  width: 100%;
  margin-bottom: 0px;
}
/* line 107, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu li:before {
  display: none;
}
/* line 113, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu > ul > li > a {
  line-height: 24px;
  font-size: 18px;
  color: #989898;
  text-align: left;
  padding: 5px 20px 5px 0px;
  margin: 0 0 0 23px;
  display: block;
  border-bottom: 1px solid #3d3d3d;
  -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 125, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent {
  position: relative;
}
/* line 128, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent .arrow {
  position: absolute;
  right: 6%;
  top: 10px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
  -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 143, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .current a {
  color: #212121;
}

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

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

/*********************************************
  :: Sub Main Menu                            
********************************************/
/* line 166, ../../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 175, ../../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: 0px 0 0px 40px;
  vertical-align: top;
  border-bottom: 1px solid #3d3d3d;
  text-align: left;
}
/* line 186, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul img {
  display: block;
  margin-bottom: 5px;
}
/* line 191, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .parent ul a {
  margin-bottom: 0px;
  padding: 0px;
  width: 100%;
  font-size: 15px;
  line-height: 16px;
  color: #9b9b9b;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px 10px 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:last-of-type a {
  border-bottom: none;
}
/* line 210, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .active a {
  color: white !important;
  text-decoration: underline !important;
}

/* line 217, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > ul {
  height: auto;
  width: 100%;
  display: inline-block;
}

/* Acive state for sub-menu parent */
/* line 227, ../../private/scss/core/_header-small-screen-menu.scss */
.small-screen-main-menu .open-sub-menu > a {
  color: white;
}
/* line 230, ../../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: 170px;
  margin-top: 10px;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 4, ../../private/scss/core/_header.scss */
  header {
    height: 240px;
  }
}
/* line 15, ../../private/scss/core/_header.scss */
header .logo {
  display: inline-block;
  float: none;
  margin: 0 auto;
}
/* line 20, ../../private/scss/core/_header.scss */
header .logo img {
  height: auto;
  max-height: 150px;
}
@media (min-width: 960px) {
  /* line 20, ../../private/scss/core/_header.scss */
  header .logo img {
    max-height: 168px;
  }
}
/* line 32, ../../private/scss/core/_header.scss */
header .menu {
  display: none;
}
@media (min-width: 960px) {
  /* line 32, ../../private/scss/core/_header.scss */
  header .menu {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
    background: #1c1c1c;
    text-align: center;
    position: relative;
    z-index: 9;
  }
}
/* line 46, ../../private/scss/core/_header.scss */
header .menu nav {
  display: inline-block;
}
/* line 50, ../../private/scss/core/_header.scss */
header .menu ul {
  margin: 10px 0px;
}
/* line 53, ../../private/scss/core/_header.scss */
header .menu ul li {
  display: inline-block;
  margin: 0 20px;
  text-align: center;
  position: relative;
}
/* line 59, ../../private/scss/core/_header.scss */
header .menu ul li:first-of-type {
  margin-left: 0px;
}
/* line 63, ../../private/scss/core/_header.scss */
header .menu ul li a {
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #989898;
  line-height: 41px;
  letter-spacing: 2.7px;
  -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 72, ../../private/scss/core/_header.scss */
header .menu ul li:hover a {
  color: white;
}
/* line 76, ../../private/scss/core/_header.scss */
header .menu ul li:hover ul {
  display: block;
}
/* line 80, ../../private/scss/core/_header.scss */
header .menu ul li:hover ul a {
  color: #989898;
}
/* line 83, ../../private/scss/core/_header.scss */
header .menu ul li:hover ul a:hover {
  color: white;
}
/* line 90, ../../private/scss/core/_header.scss */
header .menu ul ul {
  display: none;
  position: absolute;
  top: 30px;
  left: 0px;
  z-index: 99;
  width: 200px;
  background: #1c1c1c;
  padding: 10px 10px 5px 10px;
}
/* line 100, ../../private/scss/core/_header.scss */
header .menu ul ul li {
  width: 100%;
  margin: 5px 0;
  text-align: left;
}
/* line 105, ../../private/scss/core/_header.scss */
header .menu ul ul li.active a {
  color: white;
  text-decoration: underline;
}
/* line 110, ../../private/scss/core/_header.scss */
header .menu ul ul li a {
  line-height: 21px;
}

/*********************************************
  :: Footer                           
********************************************/
/* line 4, ../../private/scss/core/_footer.scss */
footer {
  width: 100%;
  background: white;
  float: left;
}
/* line 9, ../../private/scss/core/_footer.scss */
footer .links-footer {
  width: 88%;
  display: block;
  margin: 20px auto;
  text-align: center;
}
/* line 15, ../../private/scss/core/_footer.scss */
footer .links-footer a {
  width: auto;
  display: inline-block;
  padding: 0 10px;
  opacity: 1;
  color: black;
  text-align: center;
  -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 23, ../../private/scss/core/_footer.scss */
footer .links-footer a:hover {
  opacity: 0.6;
}
/* line 27, ../../private/scss/core/_footer.scss */
footer .links-footer a .icon {
  height: 22px;
}
@media (min-width: 960px) {
  /* line 27, ../../private/scss/core/_footer.scss */
  footer .links-footer a .icon {
    height: 33px;
  }
}
/* line 35, ../../private/scss/core/_footer.scss */
footer .links-footer .big {
  display: block;
  width: 94%;
  max-width: 700px;
  margin: 10px auto;
}
@media (min-width: 960px) {
  /* line 35, ../../private/scss/core/_footer.scss */
  footer .links-footer .big {
    margin: 30px auto;
  }
}
/* line 46, ../../private/scss/core/_footer.scss */
footer nav {
  width: 100%;
  float: left;
  text-align: center;
}
/* line 51, ../../private/scss/core/_footer.scss */
footer nav ul {
  margin: 0 0 10px 0;
}
@media (min-width: 960px) {
  /* line 51, ../../private/scss/core/_footer.scss */
  footer nav ul {
    margin: 10px 0 30px;
  }
}
/* line 57, ../../private/scss/core/_footer.scss */
footer nav ul li {
  display: inline-block;
  text-align: center;
  padding: 0 6px;
  position: relative;
}
@media (min-width: 960px) {
  /* line 57, ../../private/scss/core/_footer.scss */
  footer nav ul li {
    padding: 0 10px;
  }
}
/* line 67, ../../private/scss/core/_footer.scss */
footer nav ul li:first-of-type:before {
  display: none;
}
/* line 72, ../../private/scss/core/_footer.scss */
footer nav ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  behavior: url(../js/lib/PIE.htc);
  background: black;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: -2px;
}
@media (min-width: 960px) {
  /* line 72, ../../private/scss/core/_footer.scss */
  footer nav ul li:before {
    width: 6px;
    height: 6px;
  }
}
/* line 88, ../../private/scss/core/_footer.scss */
footer nav ul li a {
  font-style: 12px;
  color: black;
  -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;
}
@media (min-width: 960px) {
  /* line 88, ../../private/scss/core/_footer.scss */
  footer nav ul li a {
    font-style: 14px;
  }
}
/* line 96, ../../private/scss/core/_footer.scss */
footer nav ul li a:hover {
  color: #d0021b;
}
/* line 102, ../../private/scss/core/_footer.scss */
footer nav ul li.active:after {
  content: '';
  width: 90%;
  height: 2px;
  position: absolute;
  margin: auto;
  top: 25px;
  left: 0;
  right: 0;
  background: black;
}
/* line 117, ../../private/scss/core/_footer.scss */
footer .brownpaperbag-container {
  float: left;
  width: 100%;
  padding: 10px 0 20px 0;
  border-top: 3px solid black;
}
/* line 123, ../../private/scss/core/_footer.scss */
footer .brownpaperbag-container .left-section {
  text-align: center;
}
@media (min-width: 960px) {
  /* line 123, ../../private/scss/core/_footer.scss */
  footer .brownpaperbag-container .left-section {
    float: left;
    text-align: left;
  }
}
/* line 131, ../../private/scss/core/_footer.scss */
footer .brownpaperbag-container .right-section {
  text-align: center;
  clear: both;
}
@media (min-width: 960px) {
  /* line 131, ../../private/scss/core/_footer.scss */
  footer .brownpaperbag-container .right-section {
    float: right;
    clear: none;
  }
}
/* line 140, ../../private/scss/core/_footer.scss */
footer .brownpaperbag-container a, footer .brownpaperbag-container p {
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #666;
  margin: 0px;
  text-decoration: none;
  line-height: 14px;
  font-size: 11px;
}

/*********************************************
  :: 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 20, ../../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 20, ../../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 35, ../../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;
}

/*********************************************
  :: Modules                    
********************************************/
/*********************************************
  :: Views                       
********************************************/
/*********************************************
  :: Homepage                             
********************************************/
/* line 7, ../../private/scss/views/_home.scss */
.home .home-slideshow-container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
/* line 13, ../../private/scss/views/_home.scss */
.home .home-slideshow-container .slide {
  width: 100%;
  max-height: 500px;
}
/* line 20, ../../private/scss/views/_home.scss */
.home .home-slideshow-container .home-slideshow-controls {
  width: 100%;
  height: 40px;
  position: absolute;
  top: 45%;
  z-index: 999;
}
/* line 27, ../../private/scss/views/_home.scss */
.home .home-slideshow-container .home-slideshow-controls .home-slideshow-prev {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 10px;
  cursor: pointer;
}
/* line 34, ../../private/scss/views/_home.scss */
.home .home-slideshow-container .home-slideshow-controls .home-slideshow-prev:after {
  content: '\f137';
  font-family: FontAwesome;
  font-size: 40px;
  color: white;
}
/* line 42, ../../private/scss/views/_home.scss */
.home .home-slideshow-container .home-slideshow-controls .home-slideshow-next {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
/* line 49, ../../private/scss/views/_home.scss */
.home .home-slideshow-container .home-slideshow-controls .home-slideshow-next:after {
  content: '\f138';
  font-family: FontAwesome;
  font-size: 40px;
  color: white;
}
/* line 63, ../../private/scss/views/_home.scss */
.home .intro-container {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto 40px auto;
  position: relative;
}
@media (min-width: 960px) {
  /* line 63, ../../private/scss/views/_home.scss */
  .home .intro-container {
    margin: 0 auto 150px auto;
  }
}
/* line 73, ../../private/scss/views/_home.scss */
.home .intro-container h3 {
  text-align: center;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #d0021b;
  margin: 60px 0;
  letter-spacing: 3.6px;
}
/* line 81, ../../private/scss/views/_home.scss */
.home .intro-container .product-slideshow {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: url(/images/blackwood.png) no-repeat bottom center;
  background-size: contain;
}
/* line 90, ../../private/scss/views/_home.scss */
.home .intro-container .owl-item {
  -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;
  opacity: 1;
  -webkit-transform: perspective(999px) translateZ(1px) scale(1);
  transform: perspective(999px) translateZ(1px) scale(1);
}
/* line 97, ../../private/scss/views/_home.scss */
.home .intro-container .owl-item.dim {
  opacity: 0.4;
  -webkit-transform: perspective(999px) translateZ(1px) scale(0.95);
  transform: perspective(999px) translateZ(1px) scale(0.95);
}
/* line 103, ../../private/scss/views/_home.scss */
.home .intro-container .owl-item.brighten {
  opacity: 1;
  -webkit-transform: perspective(999px) translateZ(1px) scale(1);
  transform: perspective(999px) translateZ(1px) scale(1);
}
/* line 110, ../../private/scss/views/_home.scss */
.home .intro-container .slide img {
  width: auto;
  max-height: 300px;
  margin: 0 auto;
  vertical-align: bottom;
}
@media (min-width: 960px) {
  /* line 110, ../../private/scss/views/_home.scss */
  .home .intro-container .slide img {
    max-height: 400px;
  }
}
/* line 120, ../../private/scss/views/_home.scss */
.home .intro-container .slide p {
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 18px;
  letter-spacing: 2.7px;
  margin: 30px 0 20px 0;
}
/* line 128, ../../private/scss/views/_home.scss */
.home .intro-container .product-slideshow-prev {
  background: url(/images/arrow-left.png) no-repeat center;
  background-size: cover;
  width: 44px;
  height: 21px;
  position: absolute;
  left: 10px;
  top: 45%;
  z-index: 9;
  cursor: pointer;
}
/* line 141, ../../private/scss/views/_home.scss */
.home .intro-container .product-slideshow-next {
  background: url(/images/arrow-right.png) no-repeat center;
  background-size: cover;
  width: 44px;
  height: 21px;
  position: absolute;
  right: 10px;
  top: 45%;
  z-index: 9;
  cursor: pointer;
}

/*********************************************
  :: About page                             
********************************************/
/* line 8, ../../private/scss/views/_about.scss */
.about .intro-container {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 40px auto;
  position: relative;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 8, ../../private/scss/views/_about.scss */
  .about .intro-container {
    margin: 40px auto 100px auto;
    padding-bottom: 50px;
  }
}
/* line 20, ../../private/scss/views/_about.scss */
.about .intro-container:before {
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  background: url(/images/world.png) no-repeat center;
  background-size: contain;
  width: 100%;
  max-width: 640px;
  height: 100%;
  opacity: 0.5;
  -webkit-animation-name: zoomIng;
  animation-name: zoomIng;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -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;
}
@media (min-width: 960px) {
  /* line 20, ../../private/scss/views/_about.scss */
  .about .intro-container:before {
    opacity: 0.3;
  }
}
@-webkit-keyframes zoomIng {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
  50% {
    opacity: 0.6;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomIng {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }
  50% {
    opacity: 0.6;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* line 71, ../../private/scss/views/_about.scss */
.about .intro-container h3 {
  text-align: center;
  font-size: 20px;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: white;
  margin: 0 0 30px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 960px) {
  /* line 71, ../../private/scss/views/_about.scss */
  .about .intro-container h3 {
    font-size: 27px;
    margin: 20px 0 50px 0;
  }
}
/* line 84, ../../private/scss/views/_about.scss */
.about .intro-container .content {
  max-width: 580px;
  margin: 0 auto;
}
/* line 88, ../../private/scss/views/_about.scss */
.about .intro-container .content p {
  font-size: 18px;
}
@media (min-width: 960px) {
  /* line 88, ../../private/scss/views/_about.scss */
  .about .intro-container .content p {
    font-size: 24px;
    line-height: 35px;
  }
}

/*********************************************
  :: Basic Template page                             
********************************************/
/* line 8, ../../private/scss/views/_basic-template.scss */
.basic .intro-container {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 40px auto;
  position: relative;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 8, ../../private/scss/views/_basic-template.scss */
  .basic .intro-container {
    margin: 40px auto 100px auto;
    padding-bottom: 50px;
  }
}
/* line 20, ../../private/scss/views/_basic-template.scss */
.basic .intro-container h3 {
  text-align: center;
  font-size: 20px;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: white;
  margin: 0 0 30px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 960px) {
  /* line 20, ../../private/scss/views/_basic-template.scss */
  .basic .intro-container h3 {
    font-size: 27px;
    margin: 20px 0 50px 0;
  }
}
/* line 33, ../../private/scss/views/_basic-template.scss */
.basic .intro-container .content {
  max-width: 580px;
  margin: 0 auto 40px auto;
  text-align: center;
}
/* line 38, ../../private/scss/views/_basic-template.scss */
.basic .intro-container .content p {
  font-style: 18px;
}
@media (min-width: 960px) {
  /* line 38, ../../private/scss/views/_basic-template.scss */
  .basic .intro-container .content p {
    font-size: 24px;
    line-height: 35px;
  }
}
/* line 47, ../../private/scss/views/_basic-template.scss */
.basic .intro-container img {
  margin: 0 auto;
  margin-bottom: 15px;
  max-height: 250px;
}
@media (min-width: 960px) {
  /* line 47, ../../private/scss/views/_basic-template.scss */
  .basic .intro-container img {
    max-height: 420px;
  }
}
/* line 56, ../../private/scss/views/_basic-template.scss */
.basic .intro-container .downloads-container {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 70px;
}
/* line 62, ../../private/scss/views/_basic-template.scss */
.basic .intro-container .downloads-container span {
  font-size: 14px;
  line-height: 19px;
  color: #d0021b;
  margin-bottom: 15px;
  display: block;
}

/*********************************************
  :: Our People page                             
********************************************/
/* line 8, ../../private/scss/views/_our-people.scss */
.our-people .intro-container {
  width: 100%;
  display: block;
  margin: 40px auto 40px auto;
  position: relative;
  text-align: center;
}
@media (min-width: 760px) {
  /* line 8, ../../private/scss/views/_our-people.scss */
  .our-people .intro-container {
    margin: 40px auto 100px auto;
    padding-bottom: 50px;
  }
}
/* line 19, ../../private/scss/views/_our-people.scss */
.our-people .intro-container h3 {
  text-align: center;
  font-size: 20px;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: white;
  margin: 0 0 30px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 760px) {
  /* line 19, ../../private/scss/views/_our-people.scss */
  .our-people .intro-container h3 {
    font-size: 27px;
    margin: 20px 0 50px 0;
  }
}
/* line 32, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article {
  width: 100%;
  display: inline-block;
  text-align: center;
  vertical-align: top;
}
@media (min-width: 760px) {
  /* line 32, ../../private/scss/views/_our-people.scss */
  .our-people .intro-container article {
    width: 49%;
    text-align: left;
  }
}
/* line 42, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .img-container {
  width: 100%;
  float: left;
  text-align: center;
  margin: 0px auto 40px auto;
}
/* line 48, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .img-container img {
  margin: 0 auto;
  height: 250px;
}
@media (min-width: 760px) {
  /* line 48, ../../private/scss/views/_our-people.scss */
  .our-people .intro-container article .img-container img {
    height: 400px;
  }
}
/* line 57, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .content {
  display: inline-block;
  max-width: 330px;
  margin: 0 0 40px 0;
  text-align: left;
}
@media (min-width: 760px) {
  /* line 57, ../../private/scss/views/_our-people.scss */
  .our-people .intro-container article .content {
    margin: 0 0 40px 40px;
  }
}
/* line 66, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .content p {
  margin-bottom: 5px;
}
/* line 70, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .content a {
  color: #d0021b;
  -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 74, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .content a:hover {
  color: #989898;
}
/* line 79, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .content .title {
  color: #989898;
  letter-spacing: 1px;
  margin-bottom: 0px;
}
/* line 85, ../../private/scss/views/_our-people.scss */
.our-people .intro-container article .content .job {
  color: #989898;
  margin-bottom: 10px;
}

/*********************************************
  :: Bars & Stores page                             
********************************************/
/* line 8, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container {
  width: 100%;
  display: block;
  margin: 40px auto 40px auto;
  position: relative;
  text-align: center;
}
@media (min-width: 600px) {
  /* line 8, ../../private/scss/views/_bars-stores.scss */
  .bars-stores .intro-container {
    margin: 40px auto 42px auto;
    padding-bottom: 50px;
  }
}
/* line 19, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container h3 {
  text-align: center;
  font-size: 20px;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: white;
  margin: 0 0 30px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 600px) {
  /* line 19, ../../private/scss/views/_bars-stores.scss */
  .bars-stores .intro-container h3 {
    font-size: 27px;
    margin: 20px 0 35px 0;
  }
}
/* line 32, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container .leadcopy {
  margin-bottom: 77px;
}
/* line 36, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container ul {
  float: none;
  width: 100%;
  margin: 0px auto;
}
@media (min-width: 600px) {
  /* line 36, ../../private/scss/views/_bars-stores.scss */
  .bars-stores .intro-container ul {
    width: 100%;
    padding-left: 72px;
  }
}
/* line 48, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container ul li {
  display: block;
  width: 100%;
  text-align: center;
  color: #989898;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  /* line 48, ../../private/scss/views/_bars-stores.scss */
  .bars-stores .intro-container ul li {
    display: inline-block;
    width: 29%;
    text-align: left;
  }
}
@media (min-width: 960px) {
  /* line 48, ../../private/scss/views/_bars-stores.scss */
  .bars-stores .intro-container ul li {
    width: 22%;
  }
}
/* line 63, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container ul li.title {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: white;
}
@media (min-width: 600px) {
  /* line 63, ../../private/scss/views/_bars-stores.scss */
  .bars-stores .intro-container ul li.title {
    margin-bottom: 30px;
    vertical-align: text-bottom;
  }
}
/* line 74, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container ul li a {
  -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 76, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container ul li a:hover {
  color: white;
}
/* line 82, ../../private/scss/views/_bars-stores.scss */
.bars-stores .intro-container br {
  clear: left;
}
/* line 91, ../../private/scss/views/_bars-stores.scss */
.bars-stores #footer-note {
  text-align: center;
  margin: auto auto 45px auto;
  width: 85%;
}
@media (min-width: 960px) {
  /* line 91, ../../private/scss/views/_bars-stores.scss */
  .bars-stores #footer-note {
    margin: auto auto 100px auto;
    width: 100%;
  }
}

/*********************************************
  :: Product Detail                             
********************************************/
/* line 8, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto 40px auto;
  position: relative;
}
@media (min-width: 960px) {
  /* line 8, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container {
    margin: 0 auto 150px auto;
  }
}
/* line 18, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container h3 {
  text-align: center;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #d0021b;
  margin: 30px 0 10px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 960px) {
  /* line 18, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container h3 {
    margin: 60px 0 10px 0;
  }
}
/* line 29, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .intro {
  max-width: 780px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 29, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container .intro {
    margin: 0 auto 80px auto;
    font-size: 36px;
    line-height: 45px;
  }
}
/* line 41, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slideshow-container {
  width: 100%;
  position: relative;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 50% 60%;
}
/* line 49, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .detail-slideshow {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: url(/images/blur.png) no-repeat center center;
  background-size: contain;
}
/* line 57, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .detail-slideshow .owl-controls {
  display: none;
}
/* line 63, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slide .bottle {
  width: auto;
  max-height: 300px;
  margin: -20px auto 0 auto;
  vertical-align: bottom;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  /* line 63, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container .slide .bottle {
    max-height: 400px;
    margin: -30px auto 0 auto;
  }
}
/* line 76, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slide .logo {
  width: 274px;
  height: 142px;
  margin: 0 auto;
  background: white;
  border: 7px solid #979797;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* line 86, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slide .logo img {
  max-width: 120px;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 94, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slide .title {
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 20px;
  color: white;
}
@media (min-width: 960px) {
  /* line 94, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container .slide .title {
    font-size: 36px;
    line-height: 49px;
  }
}
/* line 107, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slide p {
  color: #999999;
}
/* line 111, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .slide .download-pdf {
  display: inline-block;
  text-align: center;
  margin: 10px auto;
}
@media (min-width: 960px) {
  /* line 111, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container .slide .download-pdf {
    margin: 30px auto;
  }
}
/* line 122, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .detail-slideshow-prev {
  background: url(/images/arrow-left.png) no-repeat center;
  background-size: cover;
  width: 44px;
  height: 21px;
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 9;
  cursor: pointer;
}
@media (min-width: 960px) {
  /* line 122, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container .detail-slideshow-prev {
    top: 60%;
  }
}
/* line 138, ../../private/scss/views/_product-detail.scss */
.product-detail .product-container .detail-slideshow-next {
  background: url(/images/arrow-right.png) no-repeat center;
  background-size: cover;
  width: 44px;
  height: 21px;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 9;
  cursor: pointer;
}
@media (min-width: 960px) {
  /* line 138, ../../private/scss/views/_product-detail.scss */
  .product-detail .product-container .detail-slideshow-next {
    top: 60%;
  }
}

/*********************************************
	:: Contact                   
********************************************/
/* line 5, ../../private/scss/views/_contact-us.scss */
.contact {
  margin-bottom: 55px;
}
@media (min-width: 960px) {
  /* line 5, ../../private/scss/views/_contact-us.scss */
  .contact {
    margin-bottom: 100px;
  }
}
/* line 11, ../../private/scss/views/_contact-us.scss */
.contact .intro-container {
  width: 100%;
}
/* line 14, ../../private/scss/views/_contact-us.scss */
.contact .intro-container h3 {
  text-align: center;
  font-size: 20px;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: white;
  margin: 0 0 30px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 960px) {
  /* line 14, ../../private/scss/views/_contact-us.scss */
  .contact .intro-container h3 {
    font-size: 27px;
    margin: 50px 0 35px 0;
  }
}
/* line 31, ../../private/scss/views/_contact-us.scss */
.contact .contact-left {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 31, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* line 37, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .block {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  /* line 37, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .block {
    width: 49%;
  }
}
@media (min-width: 960px) {
  /* line 37, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left .block {
    width: 100%;
    margin-bottom: 30px;
  }
}
/* line 50, ../../private/scss/views/_contact-us.scss */
.contact .contact-left p {
  font-size: 15px;
  color: white;
  margin-bottom: 0px;
  text-align: center;
}
@media (min-width: 960px) {
  /* line 50, ../../private/scss/views/_contact-us.scss */
  .contact .contact-left p {
    text-align: left;
  }
}
/* line 60, ../../private/scss/views/_contact-us.scss */
.contact .contact-left .email {
  color: #d0021b;
}
/* line 69, ../../private/scss/views/_contact-us.scss */
.contact .contact-right {
  width: 100%;
}
@media (min-width: 960px) {
  /* line 69, ../../private/scss/views/_contact-us.scss */
  .contact .contact-right {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* line 75, ../../private/scss/views/_contact-us.scss */
.contact .contact-right h3 {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-family: "droid-sans", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: white;
  margin: 30px 0 10px 0;
  letter-spacing: 3.6px;
}
@media (min-width: 960px) {
  /* line 75, ../../private/scss/views/_contact-us.scss */
  .contact .contact-right h3 {
    display: none;
  }
}

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

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

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

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

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

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

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

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
/* line 115, ../../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 125, ../../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 126, ../../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 131, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_list_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  height: auto;
  width: 100%;
  margin: 0 0 0 0px;
  background: #ffffff;
  border-top: none;
  color: #444444;
  font-weight: 300;
  z-index: 1;
  box-shadow: 0px 11px 20px 0px #C8C8C8;
  border-bottom: 3px solid black;
}

/* Shows the option list (don't edit) */
/* line 150, ../../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 156, ../../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 165, ../../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 187, ../../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 197, ../../private/scss/third-party-js-plugins/_selectordie.scss */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

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

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

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

/* line 244, ../../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 247, ../../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 252, ../../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 255, ../../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 136, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 147, ../../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 160, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

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

/* line 170, ../../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 176, ../../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 183, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

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

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

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 198, ../../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 206, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

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

/* line 218, ../../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 236, ../../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 243, ../../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 247, ../../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 262, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

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

/* line 282, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-controls {
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 5%;
}

/* line 295, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-dots {
  width: 100%;
  height: 15px;
  text-align: center;
}

/* line 301, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-dot {
  margin: 0 3px;
  width: 8px;
  height: 8px;
  border: 1px solid #989898;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  behavior: url(../js/lib/PIE.htc);
  background: #989898;
  display: inline-block;
}
/* line 310, ../../private/scss/third-party-js-plugins/_owlcarousel.scss */
.owl-dot.active {
  background: white;
  border: 1px solid white;
}

/* Magnific Popup CSS */
/* line 2, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

/* line 13, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

/* line 23, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

/* line 33, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 39, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 42, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  width: 88%;
  max-width: 700px;
  text-align: left;
  z-index: 1045;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  behavior: url(../js/lib/PIE.htc);
}

/* line 55, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 60, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-ajax-cur {
  cursor: progress;
}

/* line 63, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* line 68, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 74, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 77, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 85, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-loading.mfp-figure {
  display: none;
}

/* line 88, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-hide {
  display: none !important;
}

/* line 92, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

/* line 102, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-preloader a {
  color: #CCC;
}

/* line 104, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-preloader a:hover {
  color: #FFF;
}

/* line 107, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 110, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-s-error .mfp-content {
  display: none;
}

/* line 113, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

/* line 127, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 131, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

/* line 146, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

/* line 149, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-close:active {
  top: 1px;
}

/* line 152, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-close-btn-in .mfp-close {
  color: #1c1c1c;
  display: none;
}

/* line 157, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

/* line 165, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

/* line 174, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

/* line 184, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow:active {
  margin-top: -54px;
}

/* line 186, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

/* line 189, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

/* line 201, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

/* line 205, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

/* line 210, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow-left {
  left: 0;
}

/* line 212, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

/* line 215, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

/* line 219, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow-right {
  right: 0;
}

/* line 221, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

/* line 224, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

/* line 227, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 230, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

/* line 234, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* line 237, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

/* line 242, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
/* line 253, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
/* line 264, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-figure {
  line-height: 0;
}

/* line 266, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

/* line 279, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

/* line 284, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-figure figure {
  margin: 0;
}

/* line 287, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 295, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

/* line 302, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 305, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  /* line 312, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 315, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  /* line 317, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  /* line 320, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  /* line 323, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  /* line 331, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  /* line 333, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  /* line 336, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media (min-width: 960px) {
  /* line 350, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  /* line 353, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  /* line 356, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  /* line 359, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* overlay at start */
/* line 372, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* overlay animate in */
/* line 380, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
/* line 384, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
/* line 389, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* content animate it */
/* line 397, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
/* line 401, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Default Fade-zoom animation */
/* line 413, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-in .lightbox-popup {
  /* start state */
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
}

/* line 418, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-in.mfp-ready .lightbox-popup,
.mfp-zoom-in.mfp-ready .mfp-close {
  /* animate in */
  opacity: 1;
  transform: scale(1);
}

/* line 423, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-in.mfp-removing .lightbox-popup,
.mfp-zoom-in.mfp-removing .mfp-close {
  /* animate out */
  opacity: 0;
  transform: scale(0.9);
}

/* line 429, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-in.mfp-bg {
  /* Dark overlay, start state */
  opacity: 0;
  transition: all 0.3s ease-out;
  background: rgba(0, 0, 0, 0.69);
}

/* line 435, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-in.mfp-ready.mfp-bg {
  /* animate in */
  opacity: 1;
}

/* line 438, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-zoom-in.mfp-removing.mfp-bg {
  /* animate out */
  opacity: 0;
}

/*********************************************
  :: Lightbox Custom Styles (for: Magnific Popup)
********************************************/
/* line 453, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.mfp-wrap {
  overflow: visible !important;
}

/* line 457, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup {
  max-width: 712px;
  margin: 0 auto;
  overflow: visible;
}
/* line 462, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content {
  width: 100%;
  float: left;
  text-align: left;
  padding: 25px 20px;
  background: black;
  border-radius: 0 0 4px 4px;
  border: 4px solid #979797;
}
/* line 471, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content p {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: white;
  margin: 20px auto;
  max-width: 500px;
}
/* line 480, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content img {
  margin: 0 auto;
}
/* line 484, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content .stamp-area {
  position: relative;
}
/* line 488, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content .enter-click {
  width: 90px;
  margin: 60px auto;
  cursor: pointer;
}
/* line 494, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content .enter-stamp {
  width: 180px;
  position: absolute;
  margin: auto;
  top: -33px;
  left: 0px;
  right: 0px;
  display: none;
  cursor: pointer;
}
/* line 502, ../../private/scss/third-party-js-plugins/_magnific-popup.scss */
.legal-popup .popup-content .enter-stamp.active {
  display: inline-block;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(3.3, 3.3, 3.3);
    transform: scale3d(3.3, 3.3, 3.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(3.3, 3.3, 3.3);
    transform: scale3d(3.3, 3.3, 3.3);
  }
  50% {
    opacity: 1;
  }
}
/* ==========================================================================
   $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 */
