/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, ../scss/partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 52, ../scss/partials/_normalize.scss */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../scss/partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, ../scss/partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 173, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 181, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 193, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 201, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 208, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 214, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 222, ../scss/partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 230, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 234, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 246, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 253, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 261, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 265, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 275, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 289, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 297, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 309, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 321, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 332, ../scss/partials/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 343, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 357, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 369, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 382, ../scss/partials/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 394, ../scss/partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 404, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 416, ../scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 428, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 437, ../scss/partials/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 448, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 461, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 468, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 475, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 483, ../scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
/* line 485, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
/* line 486, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 493, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 66, ../scss/partials/_typography.scss */
p {
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 34, ../scss/partials/_grid.scss */
.row {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

@media (min-width: 767px) {
  /* line 42, ../scss/partials/_grid.scss */
  .last-col {
    float: right;
  }
}
/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  /* line 56, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  /* line 61, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }

  /* line 66, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 33.33%;
  }

  /* line 71, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 66.66%;
  }

  /* line 76, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 25%;
  }

  /* line 81, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 92, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  /* line 97, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }

  /* line 102, ../scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 33.33%;
  }

  /* line 107, ../scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 66.66%;
  }

  /* line 112, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 25%;
  }

  /* line 117, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 75%;
  }

  /* line 122, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 20%;
  }

  /* line 127, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 40%;
  }

  /* line 132, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 60%;
  }

  /* line 137, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 147, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    padding-right: 0;
  }

  /* line 153, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }

  /* line 158, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 33.33%;
  }

  /* line 163, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 66.66%;
  }

  /* line 168, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 25%;
  }

  /* line 173, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 75%;
  }

  /* line 178, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 20%;
  }

  /* line 183, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 40%;
  }

  /* line 188, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 60%;
  }

  /* line 193, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 80%;
  }

  /* line 198, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 16.6666666667%;
  }

  /* line 203, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 14.2857142857%;
  }

  /* line 208, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 28.5714286%;
  }

  /* line 213, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 42.8571429%;
  }

  /* line 218, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 57.1428572%;
  }

  /* line 223, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 71.4285715%;
  }

  /* line 228, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 85.7142857%;
  }

  /* line 233, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 12.5%;
  }

  /* line 238, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 11.1111111111%;
  }

  /* line 243, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 10%;
  }

  /* line 248, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 9.09090909091%;
  }

  /* line 253, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 8.33%;
  }
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* line 63, ../scss/partials/_hamburger.scss */
.hamburger {
  height: auto !important;
  padding: 0 0 !important;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  background: none !important;
  border: 0;
  margin: 0;
  overflow: visible;
  line-height: initial !important;
}
/* line 84, ../scss/partials/_hamburger.scss */
.hamburger:hover {
  background: none;
  opacity: 0.7;
}
/* line 93, ../scss/partials/_hamburger.scss */
.hamburger:active, .hamburger:focus {
  background: none;
  outline: none;
}

/* line 99, ../scss/partials/_hamburger.scss */
.hamburger-box {
  width: 25px;
  height: 18px;
  display: inline-block;
  position: relative;
}

/* line 106, ../scss/partials/_hamburger.scss */
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
/* line 111, ../scss/partials/_hamburger.scss */
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #222;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
/* line 124, ../scss/partials/_hamburger.scss */
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
/* line 130, ../scss/partials/_hamburger.scss */
.hamburger-inner::before {
  top: -8px;
}
/* line 134, ../scss/partials/_hamburger.scss */
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Squeeze
 */
/* line 144, ../scss/partials/_hamburger.scss */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 148, ../scss/partials/_hamburger.scss */
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
/* line 153, ../scss/partials/_hamburger.scss */
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
/* line 160, ../scss/partials/_hamburger.scss */
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* line 165, ../scss/partials/_hamburger.scss */
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
/* line 172, ../scss/partials/_hamburger.scss */
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 1, ../scss/partials/_jssocials.scss */
.jssocials-shares {
  margin: 0;
}

/* line 4, ../scss/partials/_jssocials.scss */
.jssocials-shares * {
  box-sizing: border-box;
}

/* line 7, ../scss/partials/_jssocials.scss */
.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: -5px 0 0 0.6em;
}

/* line 12, ../scss/partials/_jssocials.scss */
.jssocials-share:last-child {
  margin-right: 0;
}

/* line 15, ../scss/partials/_jssocials.scss */
.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em;
}

/* line 20, ../scss/partials/_jssocials.scss */
img.jssocials-share-logo {
  width: auto;
  height: 1em;
}

/* line 24, ../scss/partials/_jssocials.scss */
.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

/* line 29, ../scss/partials/_jssocials.scss */
.jssocials-share-link.jssocials-share-link-count {
  padding-top: .2em;
}

/* line 31, ../scss/partials/_jssocials.scss */
.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
  display: block;
  font-size: .6em;
  margin: 0 -.5em -.8em -.5em;
}

/* line 35, ../scss/partials/_jssocials.scss */
.jssocials-share-link.jssocials-share-no-count {
  padding-top: .5em;
}

/* line 37, ../scss/partials/_jssocials.scss */
.jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
  height: 1em;
}

/* line 40, ../scss/partials/_jssocials.scss */
.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle;
}

/* line 44, ../scss/partials/_jssocials.scss */
.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default;
}

/* line 51, ../scss/partials/_jssocials.scss */
.jssocials-share-count-box.jssocials-share-no-count {
  display: none;
}

/* line 54, ../scss/partials/_jssocials.scss */
.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle;
}

/* line 1, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-twitter .jssocials-share-link {
  color: #00aced;
}

/* line 3, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-twitter .jssocials-share-link .jssocials-share-label {
  color: #00aced;
}

/* line 5, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-twitter .jssocials-share-link:hover, .jssocials-share-twitter .jssocials-share-link:focus, .jssocials-share-twitter .jssocials-share-link:active {
  color: #0087ba;
}

/* line 7, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-twitter .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-twitter .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-twitter .jssocials-share-link:active .jssocials-share-label {
  color: #0087ba;
}

/* line 10, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-facebook .jssocials-share-link {
  color: #3b5998;
}

/* line 12, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-facebook .jssocials-share-link .jssocials-share-label {
  color: #3b5998;
}

/* line 14, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-facebook .jssocials-share-link:hover, .jssocials-share-facebook .jssocials-share-link:focus, .jssocials-share-facebook .jssocials-share-link:active {
  color: #2d4373;
}

/* line 16, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-facebook .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-facebook .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-facebook .jssocials-share-link:active .jssocials-share-label {
  color: #2d4373;
}

/* line 19, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-googleplus .jssocials-share-link {
  color: #dd4b39;
}

/* line 21, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-googleplus .jssocials-share-link .jssocials-share-label {
  color: #dd4b39;
}

/* line 23, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-googleplus .jssocials-share-link:hover, .jssocials-share-googleplus .jssocials-share-link:focus, .jssocials-share-googleplus .jssocials-share-link:active {
  color: #c23321;
}

/* line 25, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-googleplus .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-googleplus .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-googleplus .jssocials-share-link:active .jssocials-share-label {
  color: #c23321;
}

/* line 28, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-linkedin .jssocials-share-link {
  color: #007bb6;
}

/* line 30, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-linkedin .jssocials-share-link .jssocials-share-label {
  color: #007bb6;
}

/* line 32, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-linkedin .jssocials-share-link:hover, .jssocials-share-linkedin .jssocials-share-link:focus, .jssocials-share-linkedin .jssocials-share-link:active {
  color: #005983;
}

/* line 34, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-linkedin .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-linkedin .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-linkedin .jssocials-share-link:active .jssocials-share-label {
  color: #005983;
}

/* line 37, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pinterest .jssocials-share-link {
  color: #cb2027;
}

/* line 39, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pinterest .jssocials-share-link .jssocials-share-label {
  color: #cb2027;
}

/* line 41, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pinterest .jssocials-share-link:hover, .jssocials-share-pinterest .jssocials-share-link:focus, .jssocials-share-pinterest .jssocials-share-link:active {
  color: #9f191f;
}

/* line 43, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pinterest .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-pinterest .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-pinterest .jssocials-share-link:active .jssocials-share-label {
  color: #9f191f;
}

/* line 46, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-email .jssocials-share-link {
  color: #3490F3;
}

/* line 48, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-email .jssocials-share-link .jssocials-share-label {
  color: #3490F3;
}

/* line 50, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-email .jssocials-share-link:hover, .jssocials-share-email .jssocials-share-link:focus, .jssocials-share-email .jssocials-share-link:active {
  color: #0e76e6;
}

/* line 52, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-email .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-email .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-email .jssocials-share-link:active .jssocials-share-label {
  color: #0e76e6;
}

/* line 55, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-stumbleupon .jssocials-share-link {
  color: #eb4823;
}

/* line 57, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-stumbleupon .jssocials-share-link .jssocials-share-label {
  color: #eb4823;
}

/* line 59, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-stumbleupon .jssocials-share-link:hover, .jssocials-share-stumbleupon .jssocials-share-link:focus, .jssocials-share-stumbleupon .jssocials-share-link:active {
  color: #c93412;
}

/* line 61, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-stumbleupon .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-stumbleupon .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-stumbleupon .jssocials-share-link:active .jssocials-share-label {
  color: #c93412;
}

/* line 64, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-whatsapp .jssocials-share-link {
  color: #29a628;
}

/* line 66, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-whatsapp .jssocials-share-link .jssocials-share-label {
  color: #29a628;
}

/* line 68, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-whatsapp .jssocials-share-link:hover, .jssocials-share-whatsapp .jssocials-share-link:focus, .jssocials-share-whatsapp .jssocials-share-link:active {
  color: #1f7d1e;
}

/* line 70, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-whatsapp .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-whatsapp .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-whatsapp .jssocials-share-link:active .jssocials-share-label {
  color: #1f7d1e;
}

/* line 73, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-telegram .jssocials-share-link {
  color: #2ca5e0;
}

/* line 75, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-telegram .jssocials-share-link .jssocials-share-label {
  color: #2ca5e0;
}

/* line 77, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-telegram .jssocials-share-link:hover, .jssocials-share-telegram .jssocials-share-link:focus, .jssocials-share-telegram .jssocials-share-link:active {
  color: #1c88bd;
}

/* line 79, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-telegram .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-telegram .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-telegram .jssocials-share-link:active .jssocials-share-label {
  color: #1c88bd;
}

/* line 82, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-line .jssocials-share-link {
  color: #25af00;
}

/* line 84, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-line .jssocials-share-link .jssocials-share-label {
  color: #25af00;
}

/* line 86, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-line .jssocials-share-link:hover, .jssocials-share-line .jssocials-share-link:focus, .jssocials-share-line .jssocials-share-link:active {
  color: #1a7c00;
}

/* line 88, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-line .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-line .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-line .jssocials-share-link:active .jssocials-share-label {
  color: #1a7c00;
}

/* line 91, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-viber .jssocials-share-link {
  color: #7b519d;
}

/* line 93, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-viber .jssocials-share-link .jssocials-share-label {
  color: #7b519d;
}

/* line 95, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-viber .jssocials-share-link:hover, .jssocials-share-viber .jssocials-share-link:focus, .jssocials-share-viber .jssocials-share-link:active {
  color: #61407b;
}

/* line 97, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-viber .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-viber .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-viber .jssocials-share-link:active .jssocials-share-label {
  color: #61407b;
}

/* line 100, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pocket .jssocials-share-link {
  color: #ef4056;
}

/* line 102, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pocket .jssocials-share-link .jssocials-share-label {
  color: #ef4056;
}

/* line 104, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pocket .jssocials-share-link:hover, .jssocials-share-pocket .jssocials-share-link:focus, .jssocials-share-pocket .jssocials-share-link:active {
  color: #e9132e;
}

/* line 106, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-pocket .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-pocket .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-pocket .jssocials-share-link:active .jssocials-share-label {
  color: #e9132e;
}

/* line 109, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-messenger .jssocials-share-link {
  color: #0084ff;
}

/* line 111, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-messenger .jssocials-share-link .jssocials-share-label {
  color: #0084ff;
}

/* line 113, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-messenger .jssocials-share-link:hover, .jssocials-share-messenger .jssocials-share-link:focus, .jssocials-share-messenger .jssocials-share-link:active {
  color: #006acc;
}

/* line 115, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-messenger .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-messenger .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-messenger .jssocials-share-link:active .jssocials-share-label {
  color: #006acc;
}

/* line 118, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-vkontakte .jssocials-share-link {
  color: #45668e;
}

/* line 120, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-vkontakte .jssocials-share-link .jssocials-share-label {
  color: #45668e;
}

/* line 122, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-vkontakte .jssocials-share-link:hover, .jssocials-share-vkontakte .jssocials-share-link:focus, .jssocials-share-vkontakte .jssocials-share-link:active {
  color: #344d6c;
}

/* line 124, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-vkontakte .jssocials-share-link:hover .jssocials-share-label, .jssocials-share-vkontakte .jssocials-share-link:focus .jssocials-share-label, .jssocials-share-vkontakte .jssocials-share-link:active .jssocials-share-label {
  color: #344d6c;
}

/* line 127, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-link {
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
}

/* line 130, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
  font-size: .5em;
}

/* line 133, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-label {
  font-size: 0.8em;
  color: #444;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
}

/* line 139, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-count-box {
  margin-left: 0.3em;
  border: 1px solid #efefef;
  border-radius: 0.3em;
}

/* line 143, ../scss/partials/_jssocials-theme-minima.scss */
.jssocials-share-count-box .jssocials-share-count {
  line-height: 1.8em;
  font-size: 0.8em;
  color: #444;
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 21, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 33, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
/* line 27, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 44, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}
/* line 51, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
/* line 62, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9;
}
/* line 66, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
  background-color: #2574a8;
}
/* line 71, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active {
  background-color: #2472a4;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
/* line 23, ../scss/modules/_forms.scss */
fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: none;
}

/* line 30, ../scss/modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #222222;
  border: 1px solid #ddd;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  font-family: "effra", Helvetica, Arial, sans-serif;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
/* line 65, ../scss/modules/_forms.scss */
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: white;
  outline: none;
}
/* line 72, ../scss/modules/_forms.scss */
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
/* line 84, ../scss/modules/_forms.scss */
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 96, ../scss/modules/_forms.scss */
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
/* line 102, ../scss/modules/_forms.scss */
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

/* line 112, ../scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 117, ../scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  padding: 12px;
  line-height: 1.5em;
}

/* line 125, ../scss/modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/* line 138, ../scss/modules/_forms.scss */
body a.button,
body input.button,
body button,
body button.button,
body #respond input#submit.alt,
body a.button.alt,
body button.button.alt,
body input.button.alt,
body input.button:disabled,
body input.button:disabled[disabled],
body #respond input#submit,
body .track-button,
body #yith-become-a-vendor-submit,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce button,
.woocommerce button.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit,
.woocommerce .track-button,
.woocommerce #yith-become-a-vendor-submit,
.woocommerce #yith-wcwtl-output a.button,
.woocommerce #yith-wcwtl-output input.button,
.woocommerce #yith-wcwtl-output button,
.woocommerce #yith-wcwtl-output button.button,
.woocommerce #yith-wcwtl-output #respond input#submit.alt,
.woocommerce #yith-wcwtl-output a.button.alt,
.woocommerce #yith-wcwtl-output button.button.alt,
.woocommerce #yith-wcwtl-output input.button.alt,
.woocommerce #yith-wcwtl-output input.button:disabled,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled],
.woocommerce #yith-wcwtl-output #respond input#submit,
.woocommerce #yith-wcwtl-output .track-button,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit {
  max-width: 100%;
  height: 50px;
  padding: 0 85px 0 55px;
  position: relative;
  display: inline-block;
  background: #e68594 url(../images/arrow-right-button-green.png) 93% center no-repeat;
  -webkit-background-size: 32px;
  background-size: 32px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  font-family: "effra", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 175, ../scss/modules/_forms.scss */
body a.button:hover,
body input.button:hover,
body button:hover,
body button.button:hover,
body #respond input#submit.alt:hover,
body a.button.alt:hover,
body button.button.alt:hover,
body input.button.alt:hover,
body input.button:disabled:hover,
body input.button:disabled[disabled]:hover,
body #respond input#submit:hover,
body .track-button:hover,
body #yith-become-a-vendor-submit:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .track-button:hover,
.woocommerce #yith-become-a-vendor-submit:hover,
.woocommerce #yith-wcwtl-output a.button:hover,
.woocommerce #yith-wcwtl-output input.button:hover,
.woocommerce #yith-wcwtl-output button:hover,
.woocommerce #yith-wcwtl-output button.button:hover,
.woocommerce #yith-wcwtl-output #respond input#submit.alt:hover,
.woocommerce #yith-wcwtl-output a.button.alt:hover,
.woocommerce #yith-wcwtl-output button.button.alt:hover,
.woocommerce #yith-wcwtl-output input.button.alt:hover,
.woocommerce #yith-wcwtl-output input.button:disabled:hover,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled]:hover,
.woocommerce #yith-wcwtl-output #respond input#submit:hover,
.woocommerce #yith-wcwtl-output .track-button:hover,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit:hover {
  background: #f990a0 url(../images/arrow-right-button-green.png) 95% center no-repeat;
  -webkit-background-size: 32px;
  background-size: 32px;
  color: #fff;
}
/* line 182, ../scss/modules/_forms.scss */
body a.button.button-pink,
body input.button.button-pink,
body button.button-pink,
body button.button.button-pink,
body #respond input#submit.alt.button-pink,
body a.button.alt.button-pink,
body button.button.alt.button-pink,
body input.button.alt.button-pink,
body input.button:disabled.button-pink,
body input.button:disabled[disabled].button-pink,
body #respond input#submit.button-pink,
body .track-button.button-pink,
body #yith-become-a-vendor-submit.button-pink,
.woocommerce a.button.button-pink,
.woocommerce input.button.button-pink,
.woocommerce button.button-pink,
.woocommerce button.button.button-pink,
.woocommerce #respond input#submit.alt.button-pink,
.woocommerce a.button.alt.button-pink,
.woocommerce button.button.alt.button-pink,
.woocommerce input.button.alt.button-pink,
.woocommerce input.button:disabled.button-pink,
.woocommerce input.button:disabled[disabled].button-pink,
.woocommerce #respond input#submit.button-pink,
.woocommerce .track-button.button-pink,
.woocommerce #yith-become-a-vendor-submit.button-pink,
.woocommerce #yith-wcwtl-output a.button.button-pink,
.woocommerce #yith-wcwtl-output input.button.button-pink,
.woocommerce #yith-wcwtl-output button.button-pink,
.woocommerce #yith-wcwtl-output button.button.button-pink,
.woocommerce #yith-wcwtl-output #respond input#submit.alt.button-pink,
.woocommerce #yith-wcwtl-output a.button.alt.button-pink,
.woocommerce #yith-wcwtl-output button.button.alt.button-pink,
.woocommerce #yith-wcwtl-output input.button.alt.button-pink,
.woocommerce #yith-wcwtl-output input.button:disabled.button-pink,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled].button-pink,
.woocommerce #yith-wcwtl-output #respond input#submit.button-pink,
.woocommerce #yith-wcwtl-output .track-button.button-pink,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit.button-pink {
  background: #e299a4 url(../images/arrow-right-button-pink.png) 93% center no-repeat;
  -webkit-background-size: 32px;
  background-size: 32px;
}
/* line 187, ../scss/modules/_forms.scss */
body a.button.button-pink:hover,
body input.button.button-pink:hover,
body button.button-pink:hover,
body button.button.button-pink:hover,
body #respond input#submit.alt.button-pink:hover,
body a.button.alt.button-pink:hover,
body button.button.alt.button-pink:hover,
body input.button.alt.button-pink:hover,
body input.button:disabled.button-pink:hover,
body input.button:disabled[disabled].button-pink:hover,
body #respond input#submit.button-pink:hover,
body .track-button.button-pink:hover,
body #yith-become-a-vendor-submit.button-pink:hover,
.woocommerce a.button.button-pink:hover,
.woocommerce input.button.button-pink:hover,
.woocommerce button.button-pink:hover,
.woocommerce button.button.button-pink:hover,
.woocommerce #respond input#submit.alt.button-pink:hover,
.woocommerce a.button.alt.button-pink:hover,
.woocommerce button.button.alt.button-pink:hover,
.woocommerce input.button.alt.button-pink:hover,
.woocommerce input.button:disabled.button-pink:hover,
.woocommerce input.button:disabled[disabled].button-pink:hover,
.woocommerce #respond input#submit.button-pink:hover,
.woocommerce .track-button.button-pink:hover,
.woocommerce #yith-become-a-vendor-submit.button-pink:hover,
.woocommerce #yith-wcwtl-output a.button.button-pink:hover,
.woocommerce #yith-wcwtl-output input.button.button-pink:hover,
.woocommerce #yith-wcwtl-output button.button-pink:hover,
.woocommerce #yith-wcwtl-output button.button.button-pink:hover,
.woocommerce #yith-wcwtl-output #respond input#submit.alt.button-pink:hover,
.woocommerce #yith-wcwtl-output a.button.alt.button-pink:hover,
.woocommerce #yith-wcwtl-output button.button.alt.button-pink:hover,
.woocommerce #yith-wcwtl-output input.button.alt.button-pink:hover,
.woocommerce #yith-wcwtl-output input.button:disabled.button-pink:hover,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled].button-pink:hover,
.woocommerce #yith-wcwtl-output #respond input#submit.button-pink:hover,
.woocommerce #yith-wcwtl-output .track-button.button-pink:hover,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit.button-pink:hover {
  background: #edaeb7 url(../images/arrow-right-button-pink.png) 95% center no-repeat;
  -webkit-background-size: 32px;
  background-size: 32px;
}
/* line 194, ../scss/modules/_forms.scss */
body a.button.button-black,
body input.button.button-black,
body button.button-black,
body button.button.button-black,
body #respond input#submit.alt.button-black,
body a.button.alt.button-black,
body button.button.alt.button-black,
body input.button.alt.button-black,
body input.button:disabled.button-black,
body input.button:disabled[disabled].button-black,
body #respond input#submit.button-black,
body .track-button.button-black,
body #yith-become-a-vendor-submit.button-black,
.woocommerce a.button.button-black,
.woocommerce input.button.button-black,
.woocommerce button.button-black,
.woocommerce button.button.button-black,
.woocommerce #respond input#submit.alt.button-black,
.woocommerce a.button.alt.button-black,
.woocommerce button.button.alt.button-black,
.woocommerce input.button.alt.button-black,
.woocommerce input.button:disabled.button-black,
.woocommerce input.button:disabled[disabled].button-black,
.woocommerce #respond input#submit.button-black,
.woocommerce .track-button.button-black,
.woocommerce #yith-become-a-vendor-submit.button-black,
.woocommerce #yith-wcwtl-output a.button.button-black,
.woocommerce #yith-wcwtl-output input.button.button-black,
.woocommerce #yith-wcwtl-output button.button-black,
.woocommerce #yith-wcwtl-output button.button.button-black,
.woocommerce #yith-wcwtl-output #respond input#submit.alt.button-black,
.woocommerce #yith-wcwtl-output a.button.alt.button-black,
.woocommerce #yith-wcwtl-output button.button.alt.button-black,
.woocommerce #yith-wcwtl-output input.button.alt.button-black,
.woocommerce #yith-wcwtl-output input.button:disabled.button-black,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled].button-black,
.woocommerce #yith-wcwtl-output #respond input#submit.button-black,
.woocommerce #yith-wcwtl-output .track-button.button-black,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit.button-black {
  background-color: #222;
}
/* line 197, ../scss/modules/_forms.scss */
body a.button.button-black:hover,
body input.button.button-black:hover,
body button.button-black:hover,
body button.button.button-black:hover,
body #respond input#submit.alt.button-black:hover,
body a.button.alt.button-black:hover,
body button.button.alt.button-black:hover,
body input.button.alt.button-black:hover,
body input.button:disabled.button-black:hover,
body input.button:disabled[disabled].button-black:hover,
body #respond input#submit.button-black:hover,
body .track-button.button-black:hover,
body #yith-become-a-vendor-submit.button-black:hover,
.woocommerce a.button.button-black:hover,
.woocommerce input.button.button-black:hover,
.woocommerce button.button-black:hover,
.woocommerce button.button.button-black:hover,
.woocommerce #respond input#submit.alt.button-black:hover,
.woocommerce a.button.alt.button-black:hover,
.woocommerce button.button.alt.button-black:hover,
.woocommerce input.button.alt.button-black:hover,
.woocommerce input.button:disabled.button-black:hover,
.woocommerce input.button:disabled[disabled].button-black:hover,
.woocommerce #respond input#submit.button-black:hover,
.woocommerce .track-button.button-black:hover,
.woocommerce #yith-become-a-vendor-submit.button-black:hover,
.woocommerce #yith-wcwtl-output a.button.button-black:hover,
.woocommerce #yith-wcwtl-output input.button.button-black:hover,
.woocommerce #yith-wcwtl-output button.button-black:hover,
.woocommerce #yith-wcwtl-output button.button.button-black:hover,
.woocommerce #yith-wcwtl-output #respond input#submit.alt.button-black:hover,
.woocommerce #yith-wcwtl-output a.button.alt.button-black:hover,
.woocommerce #yith-wcwtl-output button.button.alt.button-black:hover,
.woocommerce #yith-wcwtl-output input.button.alt.button-black:hover,
.woocommerce #yith-wcwtl-output input.button:disabled.button-black:hover,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled].button-black:hover,
.woocommerce #yith-wcwtl-output #respond input#submit.button-black:hover,
.woocommerce #yith-wcwtl-output .track-button.button-black:hover,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit.button-black:hover {
  background-color: #555;
}
/* line 202, ../scss/modules/_forms.scss */
body a.button.button-small,
body input.button.button-small,
body button.button-small,
body button.button.button-small,
body #respond input#submit.alt.button-small,
body a.button.alt.button-small,
body button.button.alt.button-small,
body input.button.alt.button-small,
body input.button:disabled.button-small,
body input.button:disabled[disabled].button-small,
body #respond input#submit.button-small,
body .track-button.button-small,
body #yith-become-a-vendor-submit.button-small,
.woocommerce a.button.button-small,
.woocommerce input.button.button-small,
.woocommerce button.button-small,
.woocommerce button.button.button-small,
.woocommerce #respond input#submit.alt.button-small,
.woocommerce a.button.alt.button-small,
.woocommerce button.button.alt.button-small,
.woocommerce input.button.alt.button-small,
.woocommerce input.button:disabled.button-small,
.woocommerce input.button:disabled[disabled].button-small,
.woocommerce #respond input#submit.button-small,
.woocommerce .track-button.button-small,
.woocommerce #yith-become-a-vendor-submit.button-small,
.woocommerce #yith-wcwtl-output a.button.button-small,
.woocommerce #yith-wcwtl-output input.button.button-small,
.woocommerce #yith-wcwtl-output button.button-small,
.woocommerce #yith-wcwtl-output button.button.button-small,
.woocommerce #yith-wcwtl-output #respond input#submit.alt.button-small,
.woocommerce #yith-wcwtl-output a.button.alt.button-small,
.woocommerce #yith-wcwtl-output button.button.alt.button-small,
.woocommerce #yith-wcwtl-output input.button.alt.button-small,
.woocommerce #yith-wcwtl-output input.button:disabled.button-small,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled].button-small,
.woocommerce #yith-wcwtl-output #respond input#submit.button-small,
.woocommerce #yith-wcwtl-output .track-button.button-small,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit.button-small {
  padding: 10px 20px;
  font-size: 12px;
}
/* line 207, ../scss/modules/_forms.scss */
body a.button img,
body input.button img,
body button img,
body button.button img,
body #respond input#submit.alt img,
body a.button.alt img,
body button.button.alt img,
body input.button.alt img,
body input.button:disabled img,
body input.button:disabled[disabled] img,
body #respond input#submit img,
body .track-button img,
body #yith-become-a-vendor-submit img,
.woocommerce a.button img,
.woocommerce input.button img,
.woocommerce button img,
.woocommerce button.button img,
.woocommerce #respond input#submit.alt img,
.woocommerce a.button.alt img,
.woocommerce button.button.alt img,
.woocommerce input.button.alt img,
.woocommerce input.button:disabled img,
.woocommerce input.button:disabled[disabled] img,
.woocommerce #respond input#submit img,
.woocommerce .track-button img,
.woocommerce #yith-become-a-vendor-submit img,
.woocommerce #yith-wcwtl-output a.button img,
.woocommerce #yith-wcwtl-output input.button img,
.woocommerce #yith-wcwtl-output button img,
.woocommerce #yith-wcwtl-output button.button img,
.woocommerce #yith-wcwtl-output #respond input#submit.alt img,
.woocommerce #yith-wcwtl-output a.button.alt img,
.woocommerce #yith-wcwtl-output button.button.alt img,
.woocommerce #yith-wcwtl-output input.button.alt img,
.woocommerce #yith-wcwtl-output input.button:disabled img,
.woocommerce #yith-wcwtl-output input.button:disabled[disabled] img,
.woocommerce #yith-wcwtl-output #respond input#submit img,
.woocommerce #yith-wcwtl-output .track-button img,
.woocommerce #yith-wcwtl-output #yith-become-a-vendor-submit img {
  display: none !important;
}
/* line 213, ../scss/modules/_forms.scss */
body form .form-row,
.woocommerce form .form-row,
.woocommerce #yith-wcwtl-output form .form-row {
  margin: 0 0 20px;
  padding: 0;
}
/* line 217, ../scss/modules/_forms.scss */
body form .form-row label,
.woocommerce form .form-row label,
.woocommerce #yith-wcwtl-output form .form-row label {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

/* Slider */
/* line 3, ../scss/modules/_slick.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 17, ../scss/modules/_slick.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 24, ../scss/modules/_slick.scss */
.slick-list:focus {
  outline: none;
}
/* line 28, ../scss/modules/_slick.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 33, ../scss/modules/_slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 42, ../scss/modules/_slick.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
/* line 48, ../scss/modules/_slick.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 54, ../scss/modules/_slick.scss */
.slick-track:after {
  clear: both;
}
/* line 58, ../scss/modules/_slick.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 62, ../scss/modules/_slick.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
/* line 66, ../scss/modules/_slick.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 69, ../scss/modules/_slick.scss */
.slick-slide img {
  display: block;
}
/* line 72, ../scss/modules/_slick.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 78, ../scss/modules/_slick.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 82, ../scss/modules/_slick.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 86, ../scss/modules/_slick.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 90, ../scss/modules/_slick.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 96, ../scss/modules/_slick.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  font-family: "effra", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #222222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 28, ../scss/breakpoints/_base.scss */
.desktop {
  display: none !important;
}

/* line 32, ../scss/breakpoints/_base.scss */
h1, h2, h3 {
  margin-top: 0;
}

/* line 37, ../scss/breakpoints/_base.scss */
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  clear: both;
}

/* line 42, ../scss/breakpoints/_base.scss */
h1.page-title,
.h1.page-title {
  margin: 15px 0;
  background: url(../images/separator.png) center center no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
  font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
  text-align: center;
}
/* line 51, ../scss/breakpoints/_base.scss */
h1.page-title span,
.h1.page-title span {
  padding: 0 15px;
  background: #fff;
}

/* line 62, ../scss/breakpoints/_base.scss */
.grey h1.page-title span,
.grey .h1.page-title span {
  background: #f8f8f4;
}

/* line 70, ../scss/breakpoints/_base.scss */
.entry-content p {
  font-size: 14px;
}

/* line 75, ../scss/breakpoints/_base.scss */
a, button, input, select {
  outline: none !important;
}

/* line 79, ../scss/breakpoints/_base.scss */
a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 85, ../scss/breakpoints/_base.scss */
img {
  max-width: 100%;
}

/* line 90, ../scss/breakpoints/_base.scss */
a img {
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 96, ../scss/breakpoints/_base.scss */
a img:hover {
  opacity: 0.7;
}

/* line 102, ../scss/breakpoints/_base.scss */
.quimby {
  font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
}

/* line 106, ../scss/breakpoints/_base.scss */
.effra {
  font-family: "effra", Helvetica, Arial, sans-serif;
}

/* line 110, ../scss/breakpoints/_base.scss */
.tar {
  text-align: right;
}

/* line 114, ../scss/breakpoints/_base.scss */
.tac {
  text-align: center;
}

/* line 118, ../scss/breakpoints/_base.scss */
.grey {
  background: #f8f8f4;
}

/* line 122, ../scss/breakpoints/_base.scss */
.separator {
  width: 100%;
  height: 3px;
  margin: 10px 0;
  background: url(../images/separator.png) right 0 no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 135, ../scss/breakpoints/_base.scss */
.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 14px;
}

/* line 141, ../scss/breakpoints/_base.scss */
.fl {
  float: left;
}

/* line 142, ../scss/breakpoints/_base.scss */
.fr {
  float: right;
}

/* line 143, ../scss/breakpoints/_base.scss */
.fli {
  float: left !important;
}

/* line 144, ../scss/breakpoints/_base.scss */
.fri {
  float: right !important;
}

/* line 146, ../scss/breakpoints/_base.scss */
.cb {
  clear: both;
}

/* line 147, ../scss/breakpoints/_base.scss */
.cl {
  clear: left;
}

/* line 149, ../scss/breakpoints/_base.scss */
.posr {
  position: relative;
}

/*********************
LINK STYLES
*********************/
/* line 155, ../scss/breakpoints/_base.scss */
a {
  color: #e68594;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 159, ../scss/breakpoints/_base.scss */
a:hover {
  color: #de5f73;
}
/* line 169, ../scss/breakpoints/_base.scss */
a:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 183, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-weight: normal;
}
/* line 186, ../scss/breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 191, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 26px;
  line-height: 1.333em;
}

/* line 196, ../scss/breakpoints/_base.scss */
h1.page-title,
#wpsp_front_popup_body h1 {
  text-align: center;
  font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
}

/* line 202, ../scss/breakpoints/_base.scss */
#wpsp_front_popup_body h1 {
  color: #222;
}

/* line 206, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 20px;
}

/* line 212, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 18px;
}

/* line 216, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 16px;
  font-weight: 700;
}

/* line 221, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 14px;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER STYLES
*********************/
/* line 232, ../scss/breakpoints/_base.scss */
.header-toolbar {
  padding: 3px 0;
  background: #f4e0df;
  font-size: 10px;
}
/* line 237, ../scss/breakpoints/_base.scss */
.header-toolbar .wrap {
  padding: 0;
}
/* line 240, ../scss/breakpoints/_base.scss */
.header-toolbar .wrap a {
  color: #222222;
  font-size: 12px;
  text-decoration: none;
}
/* line 245, ../scss/breakpoints/_base.scss */
.header-toolbar .wrap a.ht-free-delivery {
  position: relative;
}
/* line 248, ../scss/breakpoints/_base.scss */
.header-toolbar .wrap a.ht-free-delivery:after {
  width: 0;
  height: 14px;
  content: '';
  position: absolute;
  top: 0;
  right: -6px;
  border-right: 1px solid #d78494;
}
/* line 260, ../scss/breakpoints/_base.scss */
.header-toolbar .wrap a + a {
  margin-left: 8px;
}

/* line 266, ../scss/breakpoints/_base.scss */
.header {
  background: #fcf4f2;
}
/* line 269, ../scss/breakpoints/_base.scss */
.header .wrap {
  padding: 0;
}
/* line 273, ../scss/breakpoints/_base.scss */
.header .logo {
  margin: 12px 0;
  display: block;
  text-align: center;
}
/* line 278, ../scss/breakpoints/_base.scss */
.header .logo img {
  width: 80%;
}
/* line 281, ../scss/breakpoints/_base.scss */
.header .logo img:hover {
  opacity: 1;
}
/* line 287, ../scss/breakpoints/_base.scss */
.header .search-wrap {
  padding: 7px 10px;
  background: #ececeb;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  clear: both;
}
/* line 294, ../scss/breakpoints/_base.scss */
.header .search-wrap label {
  display: none;
}
/* line 298, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform {
  position: relative;
}
/* line 301, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s {
  margin: 0;
  padding-left: 38px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}
/* line 308, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s::-webkit-input-placeholder {
  color: #222222;
}
/* line 311, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s::-moz-placeholder {
  color: #222222;
}
/* line 314, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s:-ms-input-placeholder {
  color: #222222;
}
/* line 317, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s:-moz-placeholder {
  color: #222222;
}
/* line 322, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s:focus::-webkit-input-placeholder, .header .search-wrap #yith-ajaxsearchform #yith-s:active::-webkit-input-placeholder {
  color: #ccc;
}
/* line 325, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s:focus::-moz-placeholder, .header .search-wrap #yith-ajaxsearchform #yith-s:active::-moz-placeholder {
  color: #ccc;
}
/* line 328, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s:focus:-ms-input-placeholder, .header .search-wrap #yith-ajaxsearchform #yith-s:active:-ms-input-placeholder {
  color: #ccc;
}
/* line 331, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-s:focus:-moz-placeholder, .header .search-wrap #yith-ajaxsearchform #yith-s:active:-moz-placeholder {
  color: #ccc;
}
/* line 337, ../scss/breakpoints/_base.scss */
.header .search-wrap #yith-ajaxsearchform #yith-searchsubmit {
  width: 19px;
  height: 19px;
  margin-top: -9px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 10px;
  background: transparent url(../images/search.png) 0 0 no-repeat;
  -webkit-background-size: 19px;
  background-size: 19px;
  border: none;
  text-indent: -9999px;
}
/* line 354, ../scss/breakpoints/_base.scss */
.header .hamburger {
  margin: 40px 0 0 5px;
}
/* line 358, ../scss/breakpoints/_base.scss */
.header .mobile .ht-bag {
  width: 21px;
  height: 25px;
  margin-top: 35px;
  float: right;
  position: relative;
  display: block;
  background: url(../images/bag.png) 0 center no-repeat;
  -webkit-background-size: 21px;
  background-size: 21px;
  text-decoration: none;
}
/* line 370, ../scss/breakpoints/_base.scss */
.header .mobile .ht-bag span {
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 1px;
  left: -14px;
  display: block;
  background: #222222;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}

/* line 393, ../scss/breakpoints/_base.scss */
.woocommerce-checkout .header {
  border-top: 8px solid #f4e0df;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
/* line 410, ../scss/breakpoints/_base.scss */
.top-nav,
.mobile-nav {
  display: none;
  background: #fff;
}
/* line 417, ../scss/breakpoints/_base.scss */
.top-nav li a,
.mobile-nav li a {
  padding: 15px 15px;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}

/* line 425, ../scss/breakpoints/_base.scss */
.nav,
.mobile-nav {
  margin: 0;
  border-bottom: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 430, ../scss/breakpoints/_base.scss */
.nav li,
.mobile-nav li {
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
/* line 432, ../scss/breakpoints/_base.scss */
.nav li a,
.mobile-nav li a {
  display: block;
  color: #222222;
  text-decoration: none;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
/* line 443, ../scss/breakpoints/_base.scss */
.nav li a:hover,
.mobile-nav li a:hover {
  color: #e68594;
}
/* line 464, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a,
.mobile-nav li ul.sub-menu li a,
.mobile-nav li ul.children li a {
  padding-left: 30px;
}

/* end .nav */
/* line 499, ../scss/breakpoints/_base.scss */
.mobile-nav li a {
  font-size: 15px;
}
/* line 506, ../scss/breakpoints/_base.scss */
.mobile-nav li.menu-item-has-children > a {
  position: relative;
}
/* line 509, ../scss/breakpoints/_base.scss */
.mobile-nav li.menu-item-has-children > a:before {
  content: '';
  width: 13px;
  height: 7px;
  margin: -4px 0 0;
  position: absolute;
  top: 50%;
  right: 14px;
  background: url(../images/arrow-down-grey.png) 0 0 no-repeat;
  -webkit-background-size: 13px;
  background-size: 13px;
}
/* line 528, ../scss/breakpoints/_base.scss */
.mobile-nav li li.menu-item-has-children > a:before {
  background: url(../images/arrow-down-black.png) center center no-repeat;
  -webkit-background-size: 10px;
  background-size: 10px;
}
/* line 536, ../scss/breakpoints/_base.scss */
.mobile-nav ul {
  margin: 0;
  display: none;
  background: #fcf4f2;
}
/* line 543, ../scss/breakpoints/_base.scss */
.mobile-nav ul ul li a {
  padding-left: 45px !important;
  text-transform: none;
}

/*********************
HOME
*********************/
/* line 556, ../scss/breakpoints/_base.scss */
.home-banner {
  margin: 20px 0 0;
  padding: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 20px;
  text-align: center;
  line-height: 24px;
}

/* line 567, ../scss/breakpoints/_base.scss */
.home-features {
  margin: 20px 0 0;
}
/* line 570, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1,
.home-features .tf-height-2,
.home-features .tf-height-3 {
  margin: 0 0 14px;
  display: block;
  position: relative;
  background-color: #f8f8f4;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-size 0.4s;
  -o-transition: background-size 0.4s;
  transition: background-size 0.4s;
}
/* line 587, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title,
.home-features .tf-height-2 .tf-title,
.home-features .tf-height-3 .tf-title {
  padding: 5px 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 597, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title.tf-title-bg,
.home-features .tf-height-2 .tf-title.tf-title-bg,
.home-features .tf-height-3 .tf-title.tf-title-bg {
  background: rgba(255, 255, 255, 0.8);
}
/* line 601, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title h2,
.home-features .tf-height-1 .tf-title h3,
.home-features .tf-height-2 .tf-title h2,
.home-features .tf-height-2 .tf-title h3,
.home-features .tf-height-3 .tf-title h2,
.home-features .tf-height-3 .tf-title h3 {
  margin: 0;
}
/* line 606, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title h2,
.home-features .tf-height-2 .tf-title h2,
.home-features .tf-height-3 .tf-title h2 {
  color: #222;
  font-size: 17px;
}
/* line 611, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title h3,
.home-features .tf-height-2 .tf-title h3,
.home-features .tf-height-3 .tf-title h3 {
  color: #a7a7a7;
  font-size: 11px;
}
/* line 621, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1:hover .tf-title.tf-title-bg,
.home-features .tf-height-2:hover .tf-title.tf-title-bg,
.home-features .tf-height-3:hover .tf-title.tf-title-bg {
  background: rgba(255, 255, 255, 0.95);
}
/* line 628, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 {
  height: 130px;
}
/* line 631, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title {
  padding: 5px 0;
}
/* line 634, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title.tf-title-center {
  bottom: 30%;
}
/* line 638, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title h2 {
  font-size: 17px;
}
/* line 642, ../scss/breakpoints/_base.scss */
.home-features .tf-height-1 .tf-title h3 {
  font-size: 11px;
}
/* line 648, ../scss/breakpoints/_base.scss */
.home-features .tf-height-2 {
  height: 272px;
}
/* line 653, ../scss/breakpoints/_base.scss */
.home-features .tf-height-2 .tf-title.tf-title-center {
  bottom: 40%;
}
/* line 659, ../scss/breakpoints/_base.scss */
.home-features .tf-height-3 {
  height: 418px;
}
/* line 664, ../scss/breakpoints/_base.scss */
.home-features .tf-height-3 .tf-title.tf-title-center {
  bottom: 45%;
}

/* line 671, ../scss/breakpoints/_base.scss */
.sidebar .home-box {
  margin-bottom: 15px !important;
  padding: 10px;
  text-align: center;
}
/* line 676, ../scss/breakpoints/_base.scss */
.sidebar .home-box h3 {
  margin: 0 0 10px;
  font-size: 30px;
}
/* line 681, ../scss/breakpoints/_base.scss */
.sidebar .home-box h4 {
  margin: 0;
  color: #a7a7a7;
}
/* line 689, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 img, .sidebar .home-box.home-box-3 img {
  width: 112px;
  height: 112px;
  padding: 5px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
/* line 699, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 {
  background: #f4e0df;
}
/* line 702, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 h3 {
  margin: 0;
  font-size: 30px;
}
/* line 706, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 h3 a {
  font-size: 30px;
}
/* line 711, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 h4 {
  margin: 0 0 15px;
  color: #a7a7a7;
  font-size: 18px;
  font-weight: normal;
}
/* line 718, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 p {
  font-size: 14px;
}
/* line 722, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 a {
  color: #222222;
  font-size: 18px;
  text-decoration: none;
}
/* line 727, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-1 a:hover {
  color: #e68594;
}
/* line 733, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-2 {
  background: #fbf1ee;
}
/* line 737, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-3 {
  background: #e9e8e8;
}
/* line 740, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-3 h3 {
  margin: 0;
}
/* line 744, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-3 a {
  color: #222222;
  font-size: 18px;
  text-decoration: none;
}
/* line 749, ../scss/breakpoints/_base.scss */
.sidebar .home-box.home-box-3 a:hover {
  color: #e68594;
}
/* line 755, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border {
  padding: 20px;
  border: 2px solid #fff;
}
/* line 759, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social {
  float: none !important;
  display: inline-block;
  -webkit-background-size: 181px;
  background-size: 181px;
}
/* line 765, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social.facebook {
  width: 15px;
  height: 29px;
  background-position: 0px 0px;
}
/* line 771, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social.twitter {
  width: 28px;
  height: 29px;
  background-position: -15px 0px;
}
/* line 777, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social.instagram {
  width: 29px;
  height: 29px;
  background-position: -43px 0px;
}
/* line 783, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social.pinterest {
  width: 29px;
  height: 29px;
  background-position: -72px 0px;
}
/* line 789, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social.googleplus {
  width: 47px;
  height: 29px;
  background-position: -101px 0px;
}
/* line 795, ../scss/breakpoints/_base.scss */
.sidebar .home-box .border .social.email {
  width: 33px;
  height: 27px;
  margin-right: 0;
  background-position: -148px 0px;
}

/* line 805, ../scss/breakpoints/_base.scss */
.featured-category {
  margin: 0 0 20px;
}
/* line 808, ../scss/breakpoints/_base.scss */
.featured-category a {
  display: block;
  color: #222222;
  font-size: 12px;
  text-decoration: none;
}
/* line 814, ../scss/breakpoints/_base.scss */
.featured-category a:hover {
  color: #e68594;
}
/* line 817, ../scss/breakpoints/_base.scss */
.featured-category a:hover img {
  opacity: 0.7;
}
/* line 822, ../scss/breakpoints/_base.scss */
.featured-category a img {
  margin: 0 0 10px;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 831, ../scss/breakpoints/_base.scss */
.featured-category a p {
  margin: 0;
}

/*********************
PRODUCT LISTINGS
*********************/
/* line 841, ../scss/breakpoints/_base.scss */
.woocommerce-breadcrumb {
  display: none;
}

/* line 845, ../scss/breakpoints/_base.scss */
.woocommerce-result-count {
  display: none;
}

/* line 849, ../scss/breakpoints/_base.scss */
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
}

/* line 853, ../scss/breakpoints/_base.scss */
.tax-product_cat .sidebar-show {
  display: block !important;
}

/* line 859, ../scss/breakpoints/_base.scss */
.sidebar-shop h2 {
  font-size: 20px;
}
/* line 863, ../scss/breakpoints/_base.scss */
.sidebar-shop .woocommerce-ordering {
  float: none;
}
/* line 869, ../scss/breakpoints/_base.scss */
.sidebar-shop .price_slider_amount input {
  width: 45%;
  float: left;
}
/* line 873, ../scss/breakpoints/_base.scss */
.sidebar-shop .price_slider_amount input#max_price {
  float: right;
}
/* line 878, ../scss/breakpoints/_base.scss */
.sidebar-shop .price_slider_amount button.button {
  height: 35px;
  -webkit-background-size: 24px;
  background-size: 24px;
  line-height: 35px;
}
/* line 886, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget {
  padding: 20px 0 0;
  background: url(../images/filter-sep.png) 0 0 no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
}
/* line 892, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget h4 {
  margin: 0 0 5px;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 898, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget li {
  padding: 6px 0 6px 30px !important;
  position: relative;
  font-size: 12px;
}
/* line 903, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget li a {
  color: #222222;
  font-weight: bold;
  text-decoration: none;
}
/* line 909, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget li a:hover {
  color: #e68594;
}
/* line 913, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget li a:before {
  content: '' !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
/* line 930, ../scss/breakpoints/_base.scss */
.sidebar-shop .widget li.chosen a:after {
  content: '';
  width: 12px;
  height: 11px;
  position: absolute;
  top: 9px;
  left: 5px;
  z-index: 999;
  background: url(../images/tick.png) 0 0 no-repeat;
  -webkit-background-size: 12px;
  background-size: 12px;
}
/* line 945, ../scss/breakpoints/_base.scss */
.sidebar-shop a.close {
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/close.png) 0 0 no-repeat;
  -webkit-background-size: 15px;
  background-size: 15px;
  opacity: 1;
  text-indent: -9999px;
}
/* line 958, ../scss/breakpoints/_base.scss */
.sidebar-shop a.close:hover {
  opacity: 0.6;
}

/* line 968, ../scss/breakpoints/_base.scss */
.woocommerce .term-description,
.home .term-description,
.single .term-description {
  text-align: center;
}
/* line 971, ../scss/breakpoints/_base.scss */
.woocommerce .term-description p,
.home .term-description p,
.single .term-description p {
  font-size: 14px;
}
/* line 979, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product,
.woocommerce ul.products div.product,
.woocommerce .cross-sells-carousel li.product,
.woocommerce .cross-sells-carousel div.product,
.home ul.products li.product,
.home ul.products div.product,
.home .cross-sells-carousel li.product,
.home .cross-sells-carousel div.product,
.single ul.products li.product,
.single ul.products div.product,
.single .cross-sells-carousel li.product,
.single .cross-sells-carousel div.product {
  margin: 0 0 20px;
  text-align: center;
}
/* line 984, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product a,
.woocommerce ul.products div.product a,
.woocommerce .cross-sells-carousel li.product a,
.woocommerce .cross-sells-carousel div.product a,
.home ul.products li.product a,
.home ul.products div.product a,
.home .cross-sells-carousel li.product a,
.home .cross-sells-carousel div.product a,
.single ul.products li.product a,
.single ul.products div.product a,
.single .cross-sells-carousel li.product a,
.single .cross-sells-carousel div.product a {
  color: #222222;
  text-decoration: none;
}
/* line 988, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product a:hover,
.woocommerce ul.products div.product a:hover,
.woocommerce .cross-sells-carousel li.product a:hover,
.woocommerce .cross-sells-carousel div.product a:hover,
.home ul.products li.product a:hover,
.home ul.products div.product a:hover,
.home .cross-sells-carousel li.product a:hover,
.home .cross-sells-carousel div.product a:hover,
.single ul.products li.product a:hover,
.single ul.products div.product a:hover,
.single .cross-sells-carousel li.product a:hover,
.single .cross-sells-carousel div.product a:hover {
  color: #e68594;
}
/* line 992, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product a h3,
.woocommerce ul.products div.product a h3,
.woocommerce .cross-sells-carousel li.product a h3,
.woocommerce .cross-sells-carousel div.product a h3,
.home ul.products li.product a h3,
.home ul.products div.product a h3,
.home .cross-sells-carousel li.product a h3,
.home .cross-sells-carousel div.product a h3,
.single ul.products li.product a h3,
.single ul.products div.product a h3,
.single .cross-sells-carousel li.product a h3,
.single .cross-sells-carousel div.product a h3 {
  font-size: 12px;
}
/* line 997, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products div.product a.woocommerce-LoopProduct-link,
.woocommerce .cross-sells-carousel li.product a.woocommerce-LoopProduct-link,
.woocommerce .cross-sells-carousel div.product a.woocommerce-LoopProduct-link,
.home ul.products li.product a.woocommerce-LoopProduct-link,
.home ul.products div.product a.woocommerce-LoopProduct-link,
.home .cross-sells-carousel li.product a.woocommerce-LoopProduct-link,
.home .cross-sells-carousel div.product a.woocommerce-LoopProduct-link,
.single ul.products li.product a.woocommerce-LoopProduct-link,
.single ul.products div.product a.woocommerce-LoopProduct-link,
.single .cross-sells-carousel li.product a.woocommerce-LoopProduct-link,
.single .cross-sells-carousel div.product a.woocommerce-LoopProduct-link {
  position: relative;
  display: block;
}
/* line 1001, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link .onsale,
.woocommerce ul.products div.product a.woocommerce-LoopProduct-link .onsale,
.woocommerce .cross-sells-carousel li.product a.woocommerce-LoopProduct-link .onsale,
.woocommerce .cross-sells-carousel div.product a.woocommerce-LoopProduct-link .onsale,
.home ul.products li.product a.woocommerce-LoopProduct-link .onsale,
.home ul.products div.product a.woocommerce-LoopProduct-link .onsale,
.home .cross-sells-carousel li.product a.woocommerce-LoopProduct-link .onsale,
.home .cross-sells-carousel div.product a.woocommerce-LoopProduct-link .onsale,
.single ul.products li.product a.woocommerce-LoopProduct-link .onsale,
.single ul.products div.product a.woocommerce-LoopProduct-link .onsale,
.single .cross-sells-carousel li.product a.woocommerce-LoopProduct-link .onsale,
.single .cross-sells-carousel div.product a.woocommerce-LoopProduct-link .onsale {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto !important;
  background: #fcf4f2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #e68594;
  line-height: 1.2;
}
/* line 1020, ../scss/breakpoints/_base.scss */
.woocommerce ul.products li.product .price,
.woocommerce ul.products div.product .price,
.woocommerce .cross-sells-carousel li.product .price,
.woocommerce .cross-sells-carousel div.product .price,
.home ul.products li.product .price,
.home ul.products div.product .price,
.home .cross-sells-carousel li.product .price,
.home .cross-sells-carousel div.product .price,
.single ul.products li.product .price,
.single ul.products div.product .price,
.single .cross-sells-carousel li.product .price,
.single .cross-sells-carousel div.product .price {
  color: #222222;
  font-size: 12px;
  font-weight: bold;
}
/* line 1035, ../scss/breakpoints/_base.scss */
.woocommerce .cross-sells-carousel li.product a.woocommerce-LoopProduct-link .onsale,
.woocommerce .cross-sells-carousel div.product a.woocommerce-LoopProduct-link .onsale,
.home .cross-sells-carousel li.product a.woocommerce-LoopProduct-link .onsale,
.home .cross-sells-carousel div.product a.woocommerce-LoopProduct-link .onsale,
.single .cross-sells-carousel li.product a.woocommerce-LoopProduct-link .onsale,
.single .cross-sells-carousel div.product a.woocommerce-LoopProduct-link .onsale {
  left: 10%;
}
/* line 1043, ../scss/breakpoints/_base.scss */
.woocommerce .instagallery-items button,
.home .instagallery-items button,
.single .instagallery-items button {
  width: 18px;
  height: 30px;
  position: absolute;
  top: 100px;
  z-index: 10;
  margin: 0;
  padding: 0;
  background: none;
  text-indent: -9999px;
  opacity: 1;
}
/* line 1055, ../scss/breakpoints/_base.scss */
.woocommerce .instagallery-items button.slick-prev,
.home .instagallery-items button.slick-prev,
.single .instagallery-items button.slick-prev {
  left: 0;
  background: url(../images/arrow-left-grey.png) 0 0 no-repeat;
  -webkit-background-size: 18px;
  background-size: 18px;
}
/* line 1062, ../scss/breakpoints/_base.scss */
.woocommerce .instagallery-items button.slick-next,
.home .instagallery-items button.slick-next,
.single .instagallery-items button.slick-next {
  right: 0;
  background: url(../images/arrow-right-grey.png) 0 0 no-repeat;
  -webkit-background-size: 18px;
  background-size: 18px;
}
/* line 1069, ../scss/breakpoints/_base.scss */
.woocommerce .instagallery-items button:hover,
.home .instagallery-items button:hover,
.single .instagallery-items button:hover {
  opacity: 0.5;
}

/* line 1086, ../scss/breakpoints/_base.scss */
.woocommerce .related.products ul.products li.product a img {
  width: 80%;
  margin: 0 auto 1em;
}

/* line 1096, ../scss/breakpoints/_base.scss */
.cross-sells-carousel {
  text-align: center;
}
/* line 1099, ../scss/breakpoints/_base.scss */
.cross-sells-carousel img {
  width: 80%;
  height: auto;
  margin: 0 auto 10px;
}
/* line 1105, ../scss/breakpoints/_base.scss */
.cross-sells-carousel h3 {
  padding: 0 10px;
}

/* line 1112, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul,
nav.pagination ul {
  margin: 0 0 20px;
  border: none;
}
/* line 1116, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li,
nav.pagination ul li {
  margin: 0 5px;
  background: none;
  border: none;
  overflow: visible;
}
/* line 1122, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span.current,
nav.pagination ul li a,
nav.pagination ul li span.current {
  width: 32px;
  height: 32px;
  padding: 0;
  display: block;
  background: #f8f8f4;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  color: #222222;
  font-size: 14px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
}
/* line 1140, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current:hover,
nav.pagination ul li a:hover,
nav.pagination ul li span.current:hover {
  background: #f4e0df;
  color: #222222;
}
/* line 1145, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a.prev, .woocommerce nav.woocommerce-pagination ul li a.next, .woocommerce nav.woocommerce-pagination ul li span.current.prev, .woocommerce nav.woocommerce-pagination ul li span.current.next,
nav.pagination ul li a.prev,
nav.pagination ul li a.next,
nav.pagination ul li span.current.prev,
nav.pagination ul li span.current.next {
  width: auto;
  margin: 0 25px;
  position: relative;
  background: none;
}
/* line 1152, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a.prev:before, .woocommerce nav.woocommerce-pagination ul li a.next:before, .woocommerce nav.woocommerce-pagination ul li span.current.prev:before, .woocommerce nav.woocommerce-pagination ul li span.current.next:before,
nav.pagination ul li a.prev:before,
nav.pagination ul li a.next:before,
nav.pagination ul li span.current.prev:before,
nav.pagination ul li span.current.next:before {
  content: '';
  width: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  display: block;
  background-color: #f8f8f4;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 1171, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a.prev:hover:before, .woocommerce nav.woocommerce-pagination ul li a.next:hover:before, .woocommerce nav.woocommerce-pagination ul li span.current.prev:hover:before, .woocommerce nav.woocommerce-pagination ul li span.current.next:hover:before,
nav.pagination ul li a.prev:hover:before,
nav.pagination ul li a.next:hover:before,
nav.pagination ul li span.current.prev:hover:before,
nav.pagination ul li span.current.next:hover:before {
  background-color: #f4e0df;
}
/* line 1178, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a.prev:before, .woocommerce nav.woocommerce-pagination ul li span.current.prev:before,
nav.pagination ul li a.prev:before,
nav.pagination ul li span.current.prev:before {
  left: -40px;
  background-image: url(../images/arrow-left-black.png);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: 8px;
  background-size: 8px;
}
/* line 1189, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li a.next:before, .woocommerce nav.woocommerce-pagination ul li span.current.next:before,
nav.pagination ul li a.next:before,
nav.pagination ul li span.current.next:before {
  right: -40px;
  background-image: url(../images/arrow-right-black.png);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: 8px;
  background-size: 8px;
}
/* line 1200, ../scss/breakpoints/_base.scss */
.woocommerce nav.woocommerce-pagination ul li span.current,
nav.pagination ul li span.current {
  background: #f4e0df;
}

/* line 1207, ../scss/breakpoints/_base.scss */
nav.pagination {
  margin: 0;
}
/* line 1210, ../scss/breakpoints/_base.scss */
nav.pagination ul {
  margin: 30px 0 40px;
}

/*********************
SINGLE PRODUCT
*********************/
/* line 1221, ../scss/breakpoints/_base.scss */
.woocommerce .by-vendor-name {
  display: none;
}
/* line 1225, ../scss/breakpoints/_base.scss */
.woocommerce.single-product span.onsale {
  display: none;
  background-color: #d78494;
}
/* line 1230, ../scss/breakpoints/_base.scss */
.woocommerce div.product p.price del, .woocommerce div.product span.price del {
  color: #d78494;
}
/* line 1234, ../scss/breakpoints/_base.scss */
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
  color: #d78494;
}
/* line 1238, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails {
  width: 90%;
  margin: 20px auto 0;
  padding: 0 !important;
  position: relative;
}
/* line 1246, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails div a {
  width: 90% !important;
  margin: 0 auto !important;
  float: none !important;
  display: block;
  position: relative;
}
/* line 1254, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails div a.thumbnail-video span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(74, 74, 74, 0.5) url(../images/play-button.png) center center no-repeat;
  -webkit-background-size: 27px;
  background-size: 27px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 1267, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails div a.thumbnail-video span:hover {
  background: rgba(74, 74, 74, 0.8) url(../images/play-button.png) center center no-repeat;
  -webkit-background-size: 27px;
  background-size: 27px;
}
/* line 1277, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails button {
  width: 32px;
  height: 32px;
  margin: -16px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  background: #f8f8f4;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  border-radius: 32px;
  text-indent: -9999px;
}
/* line 1292, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails button.slick-prev {
  left: -30px;
  background: transparent url(../images/arrow-left-black.png) center center no-repeat;
  -webkit-background-size: 8px;
  background-size: 8px;
}
/* line 1299, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails button.slick-next {
  right: -30px;
  background: transparent url(../images/arrow-right-black.png) center center no-repeat;
  -webkit-background-size: 8px;
  background-size: 8px;
}
/* line 1306, ../scss/breakpoints/_base.scss */
.woocommerce .thumbnails button:hover {
  background-color: #eee;
}
/* line 1314, ../scss/breakpoints/_base.scss */
.woocommerce .summary form.cart {
  clear: both;
}
/* line 1321, ../scss/breakpoints/_base.scss */
.woocommerce .summary p.price span,
.woocommerce .summary .price span {
  color: #222222;
  font-size: 16px;
  font-weight: bold;
}
/* line 1328, ../scss/breakpoints/_base.scss */
.woocommerce .summary .sku_wrapper {
  margin: 18px 0 0 5px;
  float: left;
  font-size: 14px;
}
/* line 1334, ../scss/breakpoints/_base.scss */
.woocommerce .summary .yith-par-message {
  display: none;
}
/* line 1338, ../scss/breakpoints/_base.scss */
.woocommerce .summary p.stock {
  clear: both;
}
/* line 1342, ../scss/breakpoints/_base.scss */
.woocommerce .summary .stock.in-stock {
  display: none;
}
/* line 1346, ../scss/breakpoints/_base.scss */
.woocommerce .summary .personalisation {
  border: none;
}
/* line 1349, ../scss/breakpoints/_base.scss */
.woocommerce .summary .personalisation h2,
.woocommerce .summary .personalisation .personalisation-options {
  padding: 15px;
}
/* line 1354, ../scss/breakpoints/_base.scss */
.woocommerce .summary .personalisation h2 {
  font-size: 14px;
}
/* line 1357, ../scss/breakpoints/_base.scss */
.woocommerce .summary .personalisation h2 span {
  font-size: 12px;
}
/* line 1366, ../scss/breakpoints/_base.scss */
.woocommerce .summary .personalisation .personalisation-options div.product-addon .form-row {
  margin: 0 0 10px;
  padding: 0;
}
/* line 1374, ../scss/breakpoints/_base.scss */
.woocommerce .summary #product-addons-total {
  display: none;
}
/* line 1378, ../scss/breakpoints/_base.scss */
.woocommerce .summary .qty-wrap {
  width: 100%;
}
/* line 1381, ../scss/breakpoints/_base.scss */
.woocommerce .summary .qty-wrap span.mobile {
  display: block;
  text-align: left;
}
/* line 1388, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-product-rating {
  margin: 0 !important;
  font-size: 14px;
}
/* line 1392, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-product-rating .star-rating {
  margin-top: 3px !important;
  color: #e68594;
  font-size: 18px;
}
/* line 1397, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-product-rating .star-rating:before {
  content: "\53\53\53\53\53";
  color: #f4e0df;
}
/* line 1403, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-product-rating a {
  text-decoration: none;
}
/* line 1408, ../scss/breakpoints/_base.scss */
.woocommerce .sharing {
  margin: 0 0 10px;
}
/* line 1416, ../scss/breakpoints/_base.scss */
.woocommerce .product_meta .tagged_as a {
  margin: 0 6px 6px 0;
  padding: 6px 10px;
  display: inline-block;
  background: #f4e0df;
  border: 1px solid #d78494;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: #222222;
  font-size: 12px;
  text-decoration: none;
}
/* line 1431, ../scss/breakpoints/_base.scss */
.woocommerce .product_meta .tagged_as a:hover {
  background: #d78494;
}
/* line 1438, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation {
  margin: 20px 0;
  background: #fbf1ee;
}
/* line 1442, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation h2 {
  margin: 0;
  padding: 25px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  text-transform: uppercase;
}
/* line 1449, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation h2 span {
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
}
/* line 1454, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation h2 span input {
  margin: 0 10px 0 0;
}
/* line 1460, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation .personalisation-options {
  padding: 15px 15px 0 !important;
}
/* line 1463, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation .personalisation-options div.product-addon {
  margin: 0 0 20px;
}
/* line 1466, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation .personalisation-options div.product-addon h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
/* line 1472, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation .personalisation-options div.product-addon .form-row {
  margin: 0;
  padding: 0 20px 0 0;
}
/* line 1478, ../scss/breakpoints/_base.scss */
.woocommerce .personalisation .personalisation-options #product-addons-total {
  display: none;
}
/* line 1484, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-override {
  margin: 0 0 15px;
  padding: 15px;
  background: #e9e8e8;
  border: 1px solid #ddd;
  font-size: 14px;
}
/* line 1491, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-override .product-addon {
  margin: 0;
}
/* line 1494, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-override .product-addon h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
/* line 1500, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-override .product-addon p {
  margin: 0;
}
/* line 1506, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-info {
  margin: 0 0 20px;
  padding: 20px 20px 20px 75px;
  background: url(../images/delivery-info.png) 20px center no-repeat;
  -webkit-background-size: 40px;
  background-size: 40px;
  border: 1px solid #ddd;
}
/* line 1514, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-info p {
  margin: 0;
}
/* line 1517, ../scss/breakpoints/_base.scss */
.woocommerce .delivery-info p label {
  font-size: 14px;
}
/* line 1523, ../scss/breakpoints/_base.scss */
.woocommerce div.product form.cart .button {
  width: 100%;
}
/* line 1527, ../scss/breakpoints/_base.scss */
.woocommerce div.pp_woocommerce div.ppt {
  display: none !important;
}
/* line 1531, ../scss/breakpoints/_base.scss */
.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
}
/* line 1536, ../scss/breakpoints/_base.scss */
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0;
}
/* line 1544, ../scss/breakpoints/_base.scss */
.woocommerce .star-rating span, .woocommerce .star-rating:before {
  color: #e68594;
}

/* line 1551, ../scss/breakpoints/_base.scss */
.product-support {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 0.8em;
}
/* line 1556, ../scss/breakpoints/_base.scss */
.product-support a {
  text-decoration: none;
}
/* line 1559, ../scss/breakpoints/_base.scss */
.product-support a:hover {
  background: none;
  color: #e68594;
}

/* line 1566, ../scss/breakpoints/_base.scss */
.sharing {
  font-size: 14px;
}
/* line 1569, ../scss/breakpoints/_base.scss */
.sharing span {
  display: none;
}
/* line 1573, ../scss/breakpoints/_base.scss */
.sharing .shares {
  display: inline-block;
  font-size: 20px;
}

/* line 1579, ../scss/breakpoints/_base.scss */
.woocommerce div.product .woocommerce-tabs ul.tabs,
.support_bs ul.nav-tabs {
  margin: 0 0 15px;
  padding: 0;
}
/* line 1584, ../scss/breakpoints/_base.scss */
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.support_bs ul.nav-tabs li {
  margin: 0;
  padding: 0;
  float: left;
  background: #fff;
  border: 1px solid #ddd;
  border-bottom: none;
  border-left: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 1598, ../scss/breakpoints/_base.scss */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.support_bs ul.nav-tabs li.active {
  background: #fcf4f2;
}
/* line 1602, ../scss/breakpoints/_base.scss */
.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child,
.support_bs ul.nav-tabs li:first-child {
  border-left: 1px solid #ddd;
}
/* line 1606, ../scss/breakpoints/_base.scss */
.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.support_bs ul.nav-tabs li:before,
.support_bs ul.nav-tabs li:after {
  display: none;
}
/* line 1611, ../scss/breakpoints/_base.scss */
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.support_bs ul.nav-tabs li a {
  margin: 0 !important;
  padding: 15px;
  background: none !important;
  border: none !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: 0 !important;
  color: #222222;
  font-size: 12px;
  font-weight: normal;
  line-height: 0.8;
  text-transform: uppercase;
}

/*********************
CART
*********************/
/* line 1634, ../scss/breakpoints/_base.scss */
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background: #fcf4f2;
}

/* line 1638, ../scss/breakpoints/_base.scss */
.woocommerce-info {
  border-top-color: #ccc;
}
/* line 1641, ../scss/breakpoints/_base.scss */
.woocommerce-info:before {
  color: #aaa;
}

/* line 1646, ../scss/breakpoints/_base.scss */
.woocommerce-message {
  border-color: #e68594;
}
/* line 1649, ../scss/breakpoints/_base.scss */
.woocommerce-message:before {
  color: #e68594;
}

/* line 1654, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table {
  border: none;
}
/* line 1657, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr, .woocommerce table.shop_table th, .woocommerce table.shop_table td {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

/* line 1665, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table,
table#tblFontEndTickets {
  margin: 0 0 20px;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border-collapse: collapse;
}
/* line 1676, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr,
table#tblFontEndTickets tr {
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-collapse: collapse;
}
/* line 1682, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr th,
table#tblFontEndTickets tr th {
  background: #fcf4f2;
  border: none;
  border-collapse: collapse;
}
/* line 1687, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr th:last-child,
table#tblFontEndTickets tr th:last-child {
  border-right: 1px solid #ddd;
}
/* line 1692, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td,
table#tblFontEndTickets tr td {
  background: #fff !important;
  border: none;
  border-collapse: collapse;
  vertical-align: top;
}
/* line 1700, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-thumbnail img,
table#tblFontEndTickets tr td.product-thumbnail img {
  margin: 0;
  display: block;
}
/* line 1706, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name,
table#tblFontEndTickets tr td.product-name {
  text-align: left !important;
}
/* line 1709, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name:before,
table#tblFontEndTickets tr td.product-name:before {
  display: none;
}
/* line 1713, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name a,
table#tblFontEndTickets tr td.product-name a {
  margin: 0 0 15px;
  display: block;
  color: #222222;
  font-size: 16px;
  text-decoration: none;
}
/* line 1721, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name img,
table#tblFontEndTickets tr td.product-name img {
  width: 80px;
  margin-right: 15px;
}
/* line 1726, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name dl.variation,
table#tblFontEndTickets tr td.product-name dl.variation {
  margin: 0;
  float: left;
}
/* line 1730, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name dl.variation dt,
.woocommerce table.shop_table tr td.product-name dl.variation dd,
table#tblFontEndTickets tr td.product-name dl.variation dt,
table#tblFontEndTickets tr td.product-name dl.variation dd {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 16px;
}
/* line 1737, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name dl.variation dt p,
.woocommerce table.shop_table tr td.product-name dl.variation dd p,
table#tblFontEndTickets tr td.product-name dl.variation dt p,
table#tblFontEndTickets tr td.product-name dl.variation dd p {
  color: #222222;
  font-size: 12px;
  line-height: 16px;
}
/* line 1744, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-name dl.variation dt,
table#tblFontEndTickets tr td.product-name dl.variation dt {
  margin-right: 10px;
}
/* line 1750, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-quantity,
table#tblFontEndTickets tr td.product-quantity {
  clear: left;
}
/* line 1754, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-subtotal,
table#tblFontEndTickets tr td.product-subtotal {
  font-weight: bold;
}
/* line 1757, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-subtotal:before,
table#tblFontEndTickets tr td.product-subtotal:before {
  display: none;
}
/* line 1762, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.product-quantity, .woocommerce table.shop_table tr td.product-subtotal,
table#tblFontEndTickets tr td.product-quantity,
table#tblFontEndTickets tr td.product-subtotal {
  font-size: 14px;
}
/* line 1768, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td.order-actions a.button,
table#tblFontEndTickets tr td.order-actions a.button {
  width: 170px;
  height: 35px;
  padding-left: 15px;
  float: right;
  clear: right;
  -webkit-background-size: 24px;
  background-size: 24px;
  line-height: 35px;
  text-align: left;
}
/* line 1781, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td a.remove,
table#tblFontEndTickets tr td a.remove {
  width: auto;
  display: inline;
  color: #d78494 !important;
  font-size: 12px;
  font-weight: normal;
}
/* line 1788, ../scss/breakpoints/_base.scss */
.woocommerce table.shop_table tr td a.remove:hover,
table#tblFontEndTickets tr td a.remove:hover {
  background: none;
  color: #e68594 !important;
}

/* line 1797, ../scss/breakpoints/_base.scss */
.qty-wrap {
  width: 165px;
  margin: -5px 0 10px;
  float: left;
  position: relative;
  text-align: center;
}
/* line 1804, ../scss/breakpoints/_base.scss */
.qty-wrap .qty-inc,
.qty-wrap .qty-dec,
.qty-wrap input {
  width: 30px !important;
  height: 30px;
  margin: 0 5px;
  padding: 0;
  float: left;
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: #4f4f4f;
  font-size: 16px;
  text-align: center;
  line-height: 27px;
  text-indent: 1px;
  cursor: pointer;
}
/* line 1828, ../scss/breakpoints/_base.scss */
.qty-wrap .qty-inc,
.qty-wrap .qty-dec {
  color: #e68594;
  font-size: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 1836, ../scss/breakpoints/_base.scss */
.qty-wrap .qty-inc:hover,
.qty-wrap .qty-dec:hover {
  background: #e68594;
  border: 1px solid #e68594;
  color: #fff;
}

/* line 1844, ../scss/breakpoints/_base.scss */
.cart-update {
  width: 100%;
  margin: 0 0 20px !important;
}

/* line 1849, ../scss/breakpoints/_base.scss */
.coupon {
  margin-top: 20px;
}

/* line 1853, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap {
  margin-bottom: 20px;
  padding: 0;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
/* line 1860, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap h2 {
  margin: 0;
  padding: 20px;
  background: #fcf4f2;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: bold;
}
/* line 1869, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap .table-wrap {
  padding: 0 20px;
}
/* line 1873, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap table.shop_table {
  width: 100%;
  border: none;
}
/* line 1877, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap table.shop_table th, .woocommerce .cart_totals_wrap table.shop_table td {
  padding: 0;
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: normal;
  text-transform: none;
}
/* line 1886, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap table.shop_table td {
  text-align: right;
}
/* line 1889, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap table.shop_table td span {
  font-size: 16px !important;
  font-weight: normal !important;
}
/* line 1895, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap table.shop_table tr.order-total {
  border: none !important;
}
/* line 1898, ../scss/breakpoints/_base.scss */
.woocommerce .cart_totals_wrap table.shop_table tr.order-total th, .woocommerce .cart_totals_wrap table.shop_table tr.order-total td, .woocommerce .cart_totals_wrap table.shop_table tr.order-total span {
  font-size: 20px !important;
}

/* line 1906, ../scss/breakpoints/_base.scss */
#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  margin: 0;
  padding: 0 20px 20px;
}
/* line 1912, ../scss/breakpoints/_base.scss */
#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  margin: 0;
}

/* line 1918, ../scss/breakpoints/_base.scss */
.cart-collaterals img {
  margin: 20px 0 0 !important;
}

/* line 1925, ../scss/breakpoints/_base.scss */
.woocommerce .coupon .cart_totals_wrap {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 1929, ../scss/breakpoints/_base.scss */
.woocommerce .coupon .cart_totals_wrap .table-wrap {
  padding: 20px;
}

/* line 1935, ../scss/breakpoints/_base.scss */
.cart-delivery {
  padding: 10px;
  background: #f4e0df;
}
/* line 1939, ../scss/breakpoints/_base.scss */
.cart-delivery .border {
  padding: 0 0;
  border: 2px solid #fff;
}
/* line 1943, ../scss/breakpoints/_base.scss */
.cart-delivery .border p {
  margin: 20px auto;
  padding: 0;
  font-weight: bold;
  text-align: center;
}
/* line 1949, ../scss/breakpoints/_base.scss */
.cart-delivery .border p img {
  margin: 0 7px 0 0;
  vertical-align: middle;
}
/* line 1954, ../scss/breakpoints/_base.scss */
.cart-delivery .border p a {
  text-decoration: none;
}

/* line 1963, ../scss/breakpoints/_base.scss */
.cross-sells-carousel button {
  width: 9px;
  height: 15px;
  position: absolute;
  top: 65px;
  z-index: 10;
  margin: 0;
  padding: 0;
  background: none;
  text-indent: -9999px;
  opacity: 1;
}
/* line 1975, ../scss/breakpoints/_base.scss */
.cross-sells-carousel button.slick-prev {
  left: 0;
  background: url(../images/arrow-left-grey.png) 0 0 no-repeat;
  -webkit-background-size: 9px;
  background-size: 9px;
}
/* line 1982, ../scss/breakpoints/_base.scss */
.cross-sells-carousel button.slick-next {
  right: 0;
  background: url(../images/arrow-right-grey.png) 0 0 no-repeat;
  -webkit-background-size: 9px;
  background-size: 9px;
}
/* line 1989, ../scss/breakpoints/_base.scss */
.cross-sells-carousel button:hover {
  opacity: 0.5;
}

/* line 1995, ../scss/breakpoints/_base.scss */
.cart-confirm {
  width: 90%;
  padding: 50px 20px 20px;
  display: none;
  position: absolute;
  z-index: 20;
  top: 5%;
  left: 5%;
  background: #f4e0df;
  border: 5px solid #f4e0df;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
/* line 2008, ../scss/breakpoints/_base.scss */
.cart-confirm h2 {
  margin: 0 0 10px;
}
/* line 2012, ../scss/breakpoints/_base.scss */
.cart-confirm p {
  margin: 25px 0;
  font-size: 14px;
}
/* line 2016, ../scss/breakpoints/_base.scss */
.cart-confirm p input {
  margin-right: 10px;
}
/* line 2023, ../scss/breakpoints/_base.scss */
.cart-confirm table tr {
  border-bottom: 1px solid #b2cac2;
}
/* line 2026, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td {
  padding: 20px 0;
  vertical-align: top;
}
/* line 2030, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td a {
  color: #222222;
  font-weight: bold;
  text-decoration: none;
}
/* line 2035, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td a:hover {
  color: #e68594;
}
/* line 2040, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td dl {
  font-size: 14px;
}
/* line 2043, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td dl dd, .cart-confirm table tr td dl dt {
  float: left;
  display: inline-block;
}
/* line 2047, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td dl dd p, .cart-confirm table tr td dl dt p {
  margin: 0;
}
/* line 2052, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td dl dt {
  margin-right: 10px;
  clear: left;
}
/* line 2058, ../scss/breakpoints/_base.scss */
.cart-confirm table tr td.product-subtotal {
  font-weight: bold;
  text-align: right;
}
/* line 2066, ../scss/breakpoints/_base.scss */
.cart-confirm a.button {
  display: inline-block;
}
/* line 2070, ../scss/breakpoints/_base.scss */
.cart-confirm a.close {
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  background: url(../images/close.png) 0 0 no-repeat;
  -webkit-background-size: 15px;
  background-size: 15px;
  opacity: 1;
  text-indent: -9999px;
}
/* line 2083, ../scss/breakpoints/_base.scss */
.cart-confirm a.close:hover {
  opacity: 0.6;
}

/* line 2089, ../scss/breakpoints/_base.scss */
.cart-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background: rgba(255, 255, 255, 0.85);
}

/*********************
CHECKOUT
*********************/
/* line 2108, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout h2 {
  padding: 15px 20px 0;
  font-size: 30px;
}
/* line 2113, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap {
  border: 1px solid #ddd;
  border-right: none;
  border-left: none;
}
/* line 2118, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap h3 {
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: bold;
}
/* line 2126, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap h4 {
  margin: 0 20px;
}
/* line 2130, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .checkout-content {
  padding: 20px 20px 0;
}
/* line 2134, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .checkout-content-secondary {
  padding: 0 20px;
}
/* line 2138, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .checkout-content-last {
  padding: 0 20px 20px;
}
/* line 2144, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-billing-fields h3 {
  background: #e9e8e8;
}
/* line 2151, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order h3 {
  background: #fbf1ee;
}
/* line 2155, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order .checkout-content {
  padding: 0 20px 20px;
}
/* line 2160, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table {
  border: none !important;
}
/* line 2163, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td {
  padding: 30px 0;
  background: #fff;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  vertical-align: top;
}
/* line 2171, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th.product-thumbnail,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td.product-thumbnail {
  width: 70px;
  padding-right: 10px;
}
/* line 2176, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th img,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td img {
  width: 60px !important;
  margin: 0 10px 0 0;
  display: block;
}
/* line 2182, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th p,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td p {
  margin: 0;
  clear: both;
}
/* line 2187, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th span.amount,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td span.amount {
  font-size: 14px;
}
/* line 2191, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th.product-total,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td.product-total {
  width: 35%;
  text-align: right;
}
/* line 2198, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot th,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot td {
  padding: 5px 0;
  border: none;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}
/* line 2206, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot th span.amount,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot td span.amount {
  font-size: 14px;
  font-weight: normal;
}
/* line 2213, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 16px;
  font-weight: bold;
}
/* line 2218, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot tr.order-total th span.amount,
.woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table tfoot tr.order-total td span.amount {
  font-weight: bold;
}
/* line 2226, ../scss/breakpoints/_base.scss */
.woocommerce .woocommerce-checkout .checkout-wrap .required {
  color: #222222 !important;
}

/* line 2233, ../scss/breakpoints/_base.scss */
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 2241, ../scss/breakpoints/_base.scss */
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
  padding: 0 0 20px;
}
/* line 2244, ../scss/breakpoints/_base.scss */
#add_payment_method #payment ul.payment_methods .payment_box, .woocommerce-cart #payment ul.payment_methods .payment_box, .woocommerce-checkout #payment ul.payment_methods .payment_box {
  margin-bottom: 0;
}
/* line 2249, ../scss/breakpoints/_base.scss */
#add_payment_method #payment div.place-order, .woocommerce-cart #payment div.place-order, .woocommerce-checkout #payment div.place-order {
  padding: 0;
}
/* line 2252, ../scss/breakpoints/_base.scss */
#add_payment_method #payment div.place-order .button, .woocommerce-cart #payment div.place-order .button, .woocommerce-checkout #payment div.place-order .button {
  margin: 0 !important;
}

/*********************
ORDER SUCCESS
*********************/
/* line 2264, ../scss/breakpoints/_base.scss */
.order_details strong.product-quantity {
  display: block;
}

/*********************
BLOG ARCHIVES
*********************/
/* line 2273, ../scss/breakpoints/_base.scss */
.blog .sidebar,
.category .sidebar {
  width: 100%;
  float: none;
  text-align: center;
}
/* line 2279, ../scss/breakpoints/_base.scss */
.blog .sidebar .widgettitle, .blog .sidebar label,
.category .sidebar .widgettitle,
.category .sidebar label {
  display: none;
}
/* line 2283, ../scss/breakpoints/_base.scss */
.blog .sidebar select,
.category .sidebar select {
  width: 300px;
  display: inline-block;
}

/* line 2289, ../scss/breakpoints/_base.scss */
.article-colour-1 .post-listing {
  background-color: #fbf1ee;
}

/* line 2293, ../scss/breakpoints/_base.scss */
.article-colour-2 .post-listing {
  background-color: #f4e0df;
}

/* line 2297, ../scss/breakpoints/_base.scss */
.article-colour-3 .post-listing {
  background-color: #e9e8e8;
}

/* line 2301, ../scss/breakpoints/_base.scss */
.post-listing-wrap {
  margin-bottom: 20px;
}
/* line 2304, ../scss/breakpoints/_base.scss */
.post-listing-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 2313, ../scss/breakpoints/_base.scss */
.post-listing-wrap img:hover {
  opacity: 0.7;
}
/* line 2318, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content {
  padding: 10px;
  text-align: center;
}
/* line 2324, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border h2 {
  margin: 0 0 5px;
  font-size: 18px;
}
/* line 2329, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border p {
  margin: 0;
}
/* line 2333, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border .entry-content {
  margin: 0;
  display: none;
  color: #a7a7a7;
}
/* line 2339, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border a {
  color: #222222;
  text-decoration: none;
}
/* line 2343, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border a.read-more {
  font-size: 12px;
  text-transform: uppercase;
}
/* line 2348, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border a:hover {
  color: #e68594;
}
/* line 2353, ../scss/breakpoints/_base.scss */
.post-listing-wrap .post-listing-content .post-listing-border .entry-meta {
  color: #222222;
  font-style: normal;
  font-size: 12px;
}
/* line 2367, ../scss/breakpoints/_base.scss */
.post-listing-wrap.article-first .post-listing-content .post-listing-border h2 {
  font-size: 23px;
}
/* line 2373, ../scss/breakpoints/_base.scss */
.post-listing-wrap.article-first .post-listing-content .post-listing-border a.read-more {
  font-size: 14px;
}
/* line 2378, ../scss/breakpoints/_base.scss */
.post-listing-wrap.article-first .post-listing-content .post-listing-border .entry-content {
  display: block;
  font-size: 13px;
}

/*********************
INSTAGRAM FEED
*********************/
/* line 2391, ../scss/breakpoints/_base.scss */
.instagram {
  margin-bottom: 15px;
  padding: 0;
}
/* line 2395, ../scss/breakpoints/_base.scss */
.instagram h2.h1 {
  margin-top: 0;
}
/* line 2398, ../scss/breakpoints/_base.scss */
.instagram h2.h1 img {
  position: relative;
  top: 4px;
}
/* line 2404, ../scss/breakpoints/_base.scss */
.instagram .instagram-intro {
  margin: 0 0 15px;
  padding: 10px !important;
  background: #f8f8f4;
  text-align: center;
}
/* line 2410, ../scss/breakpoints/_base.scss */
.instagram .instagram-intro .border {
  padding: 10px 20px;
  border: 2px solid #fff;
}
/* line 2414, ../scss/breakpoints/_base.scss */
.instagram .instagram-intro .border h3 {
  margin: 0 0 5px;
  font-size: 30px;
}
/* line 2419, ../scss/breakpoints/_base.scss */
.instagram .instagram-intro .border p {
  margin: 0;
  font-size: 14px;
}
/* line 2428, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .slick-list {
  margin: 0 -10px;
}
/* line 2432, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .ig-item {
  /*width: 50% !important;*/
  padding: 0 10px;
  float: left;
  display: block;
}
/* line 2438, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .ig-item img {
  width: 100%;
  display: block;
}
/* line 2443, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .ig-item:nth-child(3), .instagram .instagallery-items .ig-item:nth-child(4) {
  display: none;
}
/* line 2449, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .slick-arrow {
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: #fff !important;
  border: 5px solid #fff !important;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 2465, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .slick-prev {
  left: 0;
}
/* line 2469, ../scss/breakpoints/_base.scss */
.instagram .instagallery-items .slick-next {
  right: -1px !important;
}

/*********************
FAQS
*********************/
/* line 2479, ../scss/breakpoints/_base.scss */
ul.faq-group {
  padding: 0 !important;
  list-style-type: none !important;
  border-top: 1px solid #e3e4e8;
}
/* line 2484, ../scss/breakpoints/_base.scss */
ul.faq-group li {
  border-bottom: 1px solid #e3e4e8;
}
/* line 2487, ../scss/breakpoints/_base.scss */
ul.faq-group li h3 {
  margin: 0;
  padding: 10px 0;
  position: relative;
  font-size: 16px;
  font-weight: normal;
}
/* line 2494, ../scss/breakpoints/_base.scss */
ul.faq-group li h3:after {
  content: '';
  width: 12px;
  height: 12px;
  margin: -6px 0 0;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/plus-minus.png) 0 -17px no-repeat;
  -webkit-background-size: 12px;
  background-size: 12px;
}
/* line 2509, ../scss/breakpoints/_base.scss */
ul.faq-group li h3.open:after {
  background-position: 0 -65px;
}
/* line 2515, ../scss/breakpoints/_base.scss */
ul.faq-group li .answer {
  display: none;
}

/*********************
DELIVERY INFORMATION
*********************/
/* line 2525, ../scss/breakpoints/_base.scss */
.delivery-pricing {
  margin: 0 0 20px;
  padding: 0 0 40px;
  border: 1px solid #ddd;
  text-align: center;
}
/* line 2531, ../scss/breakpoints/_base.scss */
.delivery-pricing h3 {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: bold;
}
/* line 2538, ../scss/breakpoints/_base.scss */
.delivery-pricing.delivery-pricing-1 {
  background: url(../images/heart-triple-green.png) center 93% no-repeat;
  -webkit-background-size: 74px;
  background-size: 74px;
}
/* line 2543, ../scss/breakpoints/_base.scss */
.delivery-pricing.delivery-pricing-1 h3 {
  background: #f4e0df;
}
/* line 2548, ../scss/breakpoints/_base.scss */
.delivery-pricing.delivery-pricing-2 {
  background: url(../images/heart-triple-pink.png) center 93% no-repeat;
  -webkit-background-size: 74px;
  background-size: 74px;
}
/* line 2553, ../scss/breakpoints/_base.scss */
.delivery-pricing.delivery-pricing-2 h3 {
  background: #fbf1ee;
}
/* line 2558, ../scss/breakpoints/_base.scss */
.delivery-pricing.delivery-pricing-3 {
  background: url(../images/heart-triple-grey.png) center 93% no-repeat;
  -webkit-background-size: 74px;
  background-size: 74px;
}
/* line 2563, ../scss/breakpoints/_base.scss */
.delivery-pricing.delivery-pricing-3 h3 {
  background: #e9e8e8;
}
/* line 2568, ../scss/breakpoints/_base.scss */
.delivery-pricing p {
  margin: 0 0 10px !important;
  padding: 0 15px;
  font-size: 14px !important;
}
/* line 2573, ../scss/breakpoints/_base.scss */
.delivery-pricing p strong {
  font-size: 16px;
}

/*********************
CONTACT US
*********************/
/* line 2583, ../scss/breakpoints/_base.scss */
#gform_wrapper_1,
.gform_confirmation_message,
#yith-become-a-vendor form.register {
  margin-right: -14px;
  margin-bottom: 15px;
  margin-left: -14px;
  padding: 15px;
  background: #fbf1ee;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 2599, ../scss/breakpoints/_base.scss */
#gform_wrapper_1 ul,
.gform_confirmation_message ul,
#yith-become-a-vendor form.register ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* line 2605, ../scss/breakpoints/_base.scss */
#gform_wrapper_1 .gform_button,
.gform_confirmation_message .gform_button,
#yith-become-a-vendor form.register .gform_button {
  width: 100%;
}

/*********************
SUPPORT
*********************/
/* line 2614, ../scss/breakpoints/_base.scss */
.support_bs input,
.support_bs button,
.support_bs select,
.support_bs textarea {
  margin-bottom: 0;
}

/* line 2621, ../scss/breakpoints/_base.scss */
.filter_item table {
  border: none;
}
/* line 2624, ../scss/breakpoints/_base.scss */
.filter_item table tr, .filter_item table td {
  border: none;
}

/* line 2630, ../scss/breakpoints/_base.scss */
.support_bs #tab_faq,
.support_bs #tab_ticket_dashboard {
  display: none !important;
}
/* line 2635, ../scss/breakpoints/_base.scss */
.support_bs .btn {
  border: none;
}
/* line 2639, ../scss/breakpoints/_base.scss */
.support_bs .btn-success {
  background-color: #e68594;
}
/* line 2642, ../scss/breakpoints/_base.scss */
.support_bs .btn-success:hover {
  background-color: #f990a0;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 2665, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* end .hentry */
/* line 2672, ../scss/breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
/* line 2697, ../scss/breakpoints/_base.scss */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}

/* entry content */
/* line 2706, ../scss/breakpoints/_base.scss */
.entry-content {
  padding: 0;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
/* line 2709, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 2716, ../scss/breakpoints/_base.scss */
.entry-content ul, .entry-content ol {
  padding: 0 0 0 20px;
  list-style-type: initial;
}
/* line 2736, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 1.5em;
}
/* line 2741, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 2750, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #ccc;
}
/* line 2754, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 10px;
  border-right: 1px solid #ccc;
  vertical-align: top;
}
/* line 2759, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 2765, ../scss/breakpoints/_base.scss */
.entry-content td p:last-child, .entry-content td p:last-of-type {
  margin: 0;
}
/* line 2772, ../scss/breakpoints/_base.scss */
.entry-content th {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: left;
  vertical-align: top;
}
/* line 2779, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 2784, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
/* line 2799, ../scss/breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 2806, ../scss/breakpoints/_base.scss */
.entry-content img {
  max-width: 100%;
  height: auto;
}
/* line 2821, ../scss/breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
/* line 2831, ../scss/breakpoints/_base.scss */
.entry-content pre {
  font-family: "effra", Helvetica, Arial, sans-serif;
  margin: 0 0 1.5em;
}
/* line 2835, ../scss/breakpoints/_base.scss */
.entry-content pre span {
  font-family: "effra", Helvetica, Arial, sans-serif !important;
}

/* end .entry-content */
/* line 2842, ../scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
/* line 2848, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 2854, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 2888, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 2896, ../scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

/* line 2900, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 2903, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 2912, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #323944;
}
/* line 2921, ../scss/breakpoints/_base.scss */
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #2980b9;
}
/* line 2933, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #2980b9;
  color: #fff;
}
/* line 2939, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #222222;
}
/* line 2943, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #222222;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 2956, ../scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 2960, ../scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*********************
ACCOUNT
*********************/
/* line 2970, ../scss/breakpoints/_base.scss */
.account-login,
.account-register,
.woocommerce-checkout form.login {
  margin: 0 0 20px;
  padding: 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
/* line 2982, ../scss/breakpoints/_base.scss */
.account-login h2,
.account-register h2,
.woocommerce-checkout form.login h2 {
  margin: 0 0 5px;
}
/* line 2986, ../scss/breakpoints/_base.scss */
.account-login form.login,
.account-login form.register,
.account-register form.login,
.account-register form.register,
.woocommerce-checkout form.login form.login,
.woocommerce-checkout form.login form.register {
  margin: 0;
  padding: 0;
  border: none;
}
/* line 2992, ../scss/breakpoints/_base.scss */
.account-login form.login p.form-row,
.account-login form.register p.form-row,
.account-register form.login p.form-row,
.account-register form.register p.form-row,
.woocommerce-checkout form.login form.login p.form-row,
.woocommerce-checkout form.login form.register p.form-row {
  width: 100%;
}
/* line 2995, ../scss/breakpoints/_base.scss */
.account-login form.login p.form-row label.inline,
.account-login form.register p.form-row label.inline,
.account-register form.login p.form-row label.inline,
.account-register form.register p.form-row label.inline,
.woocommerce-checkout form.login form.login p.form-row label.inline,
.woocommerce-checkout form.login form.register p.form-row label.inline {
  margin-top: 10px;
  display: block;
}
/* line 3001, ../scss/breakpoints/_base.scss */
.account-login form.login .button,
.account-login form.register .button,
.account-register form.login .button,
.account-register form.register .button,
.woocommerce-checkout form.login form.login .button,
.woocommerce-checkout form.login form.register .button {
  width: 100%;
}

/* line 3007, ../scss/breakpoints/_base.scss */
.account-login,
.woocommerce-checkout form.login {
  background: #f1f1f1;
}

/* line 3012, ../scss/breakpoints/_base.scss */
.account-register {
  background: #fbf1ee;
}

/* line 3016, ../scss/breakpoints/_base.scss */
.ywot_order_details {
  margin: 0 0 20px;
}

/* line 3022, ../scss/breakpoints/_base.scss */
#yith-become-a-vendor form.register {
  padding: 0;
  border: none;
}

/* line 3030, ../scss/breakpoints/_base.scss */
.ywot_order_details a.track-button {
  margin-top: 15px;
}

/* line 3036, ../scss/breakpoints/_base.scss */
.addresses .col-1, .addresses .col-2 {
  margin-bottom: 15px;
}

/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 3046, ../scss/breakpoints/_base.scss */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #323944;
  /* number of comments span */
}

/* line 3065, ../scss/breakpoints/_base.scss */
.commentlist {
  margin: 0;
  list-style-type: none;
}

/* line 3070, ../scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #323944;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 3077, ../scss/breakpoints/_base.scss */
.comment .comment-author {
  padding: 7px;
  border: 0;
}
/* line 3083, ../scss/breakpoints/_base.scss */
.comment .vcard {
  margin-left: 50px;
}
/* line 3086, ../scss/breakpoints/_base.scss */
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
/* line 3094, ../scss/breakpoints/_base.scss */
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
/* line 3099, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
/* line 3103, ../scss/breakpoints/_base.scss */
.comment .vcard time a:hover {
  text-decoration: underline;
}
/* line 3113, ../scss/breakpoints/_base.scss */
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
/* line 3121, ../scss/breakpoints/_base.scss */
.comment:last-child {
  margin-bottom: 0;
}
/* line 3125, ../scss/breakpoints/_base.scss */
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
/* line 3143, ../scss/breakpoints/_base.scss */
.comment[class*=depth-] {
  margin-top: 1.1em;
}
/* line 3147, ../scss/breakpoints/_base.scss */
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
/* line 3152, ../scss/breakpoints/_base.scss */
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
/* line 3165, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 3168, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #323944;
}

/* comment meta */
/* comment content */
/* line 3202, ../scss/breakpoints/_base.scss */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
/* line 3211, ../scss/breakpoints/_base.scss */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
/* line 3223, ../scss/breakpoints/_base.scss */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 3236, ../scss/breakpoints/_base.scss */
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #323944;
}

/* line 3242, ../scss/breakpoints/_base.scss */
#reply-title {
  margin: 0;
}

/* line 3246, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* line 3251, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #222222;
}

/* line 3256, ../scss/breakpoints/_base.scss */
.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

/* line 3260, ../scss/breakpoints/_base.scss */
.form-allowed-tags {
  padding: 1.5em;
  background-color: #323944;
  font-size: 0.9em;
}

/* comment submit button */
/* line 3267, ../scss/breakpoints/_base.scss */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
/* line 3274, ../scss/breakpoints/_base.scss */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 3287, ../scss/breakpoints/_base.scss */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
/* line 3292, ../scss/breakpoints/_base.scss */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 3302, ../scss/breakpoints/_base.scss */
.sidebar .widget {
  margin: 0 0 20px;
}
/* line 3305, ../scss/breakpoints/_base.scss */
.sidebar .widget h2, .sidebar .widget h3 {
  font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
}
/* line 3309, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu, .sidebar .widget.widget_categories {
  padding: 20px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
/* line 3316, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu h4, .sidebar .widget.widget_categories h4 {
  margin: 0 0 10px;
  font-family: "effra", Helvetica, Arial, sans-serif;
  font-size: 24px;
}
/* line 3322, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu ul, .sidebar .widget.widget_categories ul {
  margin: 0;
}
/* line 3325, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu ul li, .sidebar .widget.widget_categories ul li {
  border-top: 1px solid #e3e4e8;
}
/* line 3328, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu ul li:first-child, .sidebar .widget.widget_categories ul li:first-child {
  border: none;
}
/* line 3332, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu ul li a, .sidebar .widget.widget_categories ul li a {
  padding: 4px 0;
  display: block;
  color: #222222;
  text-decoration: none;
}
/* line 3338, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu ul li a:hover, .sidebar .widget.widget_categories ul li a:hover {
  color: #e68594;
}
/* line 3344, ../scss/breakpoints/_base.scss */
.sidebar .widget.widget_nav_menu ul li.current-menu-item a, .sidebar .widget.widget_categories ul li.current-menu-item a {
  color: #e68594;
}
/* line 3352, ../scss/breakpoints/_base.scss */
.sidebar .widget .social {
  margin: 15px 15px 20px 0;
  float: left;
  background-image: url(../images/social-small-pink.png);
  -webkit-background-size: 134px;
  background-size: 134px;
  opacity: 1;
  text-indent: -9999px;
}
/* line 3361, ../scss/breakpoints/_base.scss */
.sidebar .widget .social.facebook {
  width: 12px;
  height: 22px;
  background-position: 0px 0px;
}
/* line 3367, ../scss/breakpoints/_base.scss */
.sidebar .widget .social.twitter {
  width: 20px;
  height: 22px;
  background-position: -12px 0px;
}
/* line 3373, ../scss/breakpoints/_base.scss */
.sidebar .widget .social.instagram {
  width: 21px;
  height: 22px;
  background-position: -32px 0px;
}
/* line 3379, ../scss/breakpoints/_base.scss */
.sidebar .widget .social.pinterest {
  width: 21px;
  height: 22px;
  background-position: -54px 0px;
}
/* line 3385, ../scss/breakpoints/_base.scss */
.sidebar .widget .social.googleplus {
  width: 34px;
  height: 22px;
  background-position: -75px 0px;
}
/* line 3391, ../scss/breakpoints/_base.scss */
.sidebar .widget .social.email {
  width: 25px;
  height: 22px;
  margin-right: 0;
  background-position: -109px 0px;
}
/* line 3398, ../scss/breakpoints/_base.scss */
.sidebar .widget .social:hover {
  opacity: 0.6;
}
/* line 3403, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom {
  padding: 10px;
  text-align: center;
}
/* line 3407, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom .widget-border {
  padding: 20px;
  border: 2px solid #fff;
}
/* line 3412, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom h2 {
  margin: 0;
  font-size: 36px;
}
/* line 3417, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom p {
  margin: 0;
  color: #a7a7a7;
  font-size: 18px;
  line-height: 18px;
}
/* line 3424, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom a.social {
  float: none;
  display: inline-block;
}
/* line 3429, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom a {
  color: #222222;
  font-size: 18px;
  text-decoration: none;
}
/* line 3434, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-custom a:hover {
  color: #e68594;
}
/* line 3440, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic {
  text-align: left;
}
/* line 3443, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic p {
  margin: 0;
  color: #222222;
  font-size: 16px;
}
/* line 3448, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic p:first-child {
  margin-bottom: 6px;
}
/* line 3452, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic p strong {
  font-size: 20px;
  font-weight: normal;
}
/* line 3458, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic .contact-detail {
  padding: 10px 0 0 30px;
}
/* line 3462, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic .contact-detail-address {
  background: url(../images/contact-detail-address.png) 0 10px no-repeat;
  -webkit-background-size: 19px;
  background-size: 19px;
}
/* line 3468, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic .contact-detail-telephone {
  background: url(../images/contact-detail-phone.png) 0 10px no-repeat;
  -webkit-background-size: 18px;
  background-size: 18px;
}
/* line 3474, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic .contact-detail-email {
  background: url(../images/contact-detail-email.png) 0 14px no-repeat;
  -webkit-background-size: 21px;
  background-size: 21px;
}
/* line 3480, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic .contact-detail-support {
  padding-top: 0;
  background: url(../images/contact-detail-support.png) 0 1px no-repeat;
  -webkit-background-size: 19px;
  background-size: 19px;
}
/* line 3486, ../scss/breakpoints/_base.scss */
.sidebar .widget .widget-basic .contact-detail-support p:first-child {
  margin: 0 0 5px;
}
/* line 3492, ../scss/breakpoints/_base.scss */
.sidebar .widget hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #e4d6d1;
}
/* line 3503, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget .widget-custom {
  display: block;
  text-decoration: none;
}
/* line 3507, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget .widget-custom p {
  color: #222222;
  line-height: 1.4;
}
/* line 3514, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-green .widget-custom {
  background: #f0f0ec;
}
/* line 3517, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-green .widget-custom p {
  padding-left: 35px;
  background: url(../images/delivery-track.png) 0 center no-repeat;
  -webkit-background-size: 33px;
  background-size: 33px;
}
/* line 3524, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-green .widget-custom:hover {
  background: #ebebe7;
}
/* line 3529, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-pink .widget-custom {
  background: #fbf1ee;
}
/* line 3532, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-pink .widget-custom p {
  padding-left: 35px;
  background: url(../images/tag.png) 5px center no-repeat;
  -webkit-background-size: 27px;
  background-size: 27px;
}
/* line 3539, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-pink .widget-custom:hover {
  background: #f4eae7;
}
/* line 3544, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-grey .widget-custom {
  background: #e9e8e8;
}
/* line 3547, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-grey .widget-custom p {
  padding-left: 45px;
  background: url(../images/heart-single-outline.png) 15px center no-repeat;
  -webkit-background-size: 35px;
  background-size: 35px;
}
/* line 3554, ../scss/breakpoints/_base.scss */
.sidebar.sidebar-horizontal .widget-horizontal-grey .widget-custom:hover {
  background: #c9c8c8;
}
/* line 3561, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog img {
  width: 112px;
  height: 112px;
  padding: 5px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
/* line 3570, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog h3 {
  margin: 0;
  font-size: 36px;
}
/* line 3574, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog h3 a {
  font-size: 30px;
}
/* line 3579, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog h4 {
  margin: 0 0 15px;
  color: #a7a7a7;
  font-size: 18px;
  font-weight: normal;
}
/* line 3586, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog p {
  margin: 10px 0 !important;
  color: #222222 !important;
  font-size: 14px !important;
}
/* line 3592, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog a {
  color: #222222;
  font-size: 18px;
  text-decoration: none;
}
/* line 3597, ../scss/breakpoints/_base.scss */
.sidebar .widget-blog a:hover {
  color: #e68594;
}
/* line 3603, ../scss/breakpoints/_base.scss */
.sidebar .no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #e3e4e8;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/* line 3618, ../scss/breakpoints/_base.scss */
.blog .sidebar .widget.widget_nav_menu, .blog .sidebar .widget.widget_categories,
.category .sidebar .widget.widget_nav_menu,
.category .sidebar .widget.widget_categories {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*********************
FOOTER STYLES
*********************/
/* line 3632, ../scss/breakpoints/_base.scss */
.footer-top {
  padding: 25px 0 20px;
  background: #f4e0df;
  text-align: center;
}
/* line 3637, ../scss/breakpoints/_base.scss */
.footer-top .social {
  margin: 0 15px;
  display: inline-block;
  background-image: url(../images/social-large-green.png);
  -webkit-background-size: 148px;
  background-size: 148px;
  opacity: 1;
  text-indent: -9999px;
}
/* line 3646, ../scss/breakpoints/_base.scss */
.footer-top .social.facebook {
  width: 15px;
  height: 29px;
  background-position: 0px 0px;
}
/* line 3652, ../scss/breakpoints/_base.scss */
.footer-top .social.twitter {
  width: 28px;
  height: 29px;
  background-position: -15px 0px;
}
/* line 3658, ../scss/breakpoints/_base.scss */
.footer-top .social.instagram {
  width: 29px;
  height: 29px;
  background-position: -43px 0px;
}
/* line 3664, ../scss/breakpoints/_base.scss */
.footer-top .social.pinterest {
  width: 29px;
  height: 29px;
  background-position: -72px 0px;
}
/* line 3670, ../scss/breakpoints/_base.scss */
.footer-top .social.googleplus {
  width: 47px;
  height: 29px;
  background-position: -101px 0px;
}
/* line 3676, ../scss/breakpoints/_base.scss */
.footer-top .social:hover {
  opacity: 0.6;
}
/* line 3681, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-bubble {
  width: 100%;
}
/* line 3684, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-bubble span.quimby {
  font-size: 26px;
}
/* line 3689, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form {
  width: 100%;
}
/* line 3692, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form p {
  margin: 0 0 10px;
  font-size: 14px;
}
/* line 3697, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form {
  position: relative;
}
/* line 3700, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form input {
  padding-left: 38px;
  background: #fff url(../images/email-faded.png) 10px center no-repeat;
  -webkit-background-size: 21px;
  background-size: 21px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}
/* line 3709, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form input::-webkit-input-placeholder {
  color: #222222;
}
/* line 3712, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form input::-moz-placeholder {
  color: #222222;
}
/* line 3715, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form input:-ms-input-placeholder {
  color: #222222;
}
/* line 3718, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form input:-moz-placeholder {
  color: #222222;
}
/* line 3723, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form button {
  width: 28px;
  height: 28px;
  padding: 0;
  display: block;
  position: absolute;
  top: 6px;
  right: 10px;
  opacity: 1;
  background: #222 url(../images/arrow-right-white.png) center center no-repeat;
  -webkit-background-size: 6px;
  background-size: 6px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  -ms-border-radius: 28px;
  -o-border-radius: 28px;
  border-radius: 28px;
  text-indent: -9999px;
}
/* line 3742, ../scss/breakpoints/_base.scss */
.footer-top .newsletter-form form button:hover {
  opacity: 0.7;
}

/* line 3750, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #fff;
  color: #222222;
  font-size: 12px;
  text-align: center;
}

/* line 3760, ../scss/breakpoints/_base.scss */
.footer-middle h3 {
  margin: 20px 0 5px;
}

/* line 3765, ../scss/breakpoints/_base.scss */
.footer-bottom {
  margin: 0 0 20px;
  font-size: 12px;
}
/* line 3769, ../scss/breakpoints/_base.scss */
.footer-bottom a {
  color: #222222;
  text-decoration: none;
}
/* line 3773, ../scss/breakpoints/_base.scss */
.footer-bottom a:hover {
  color: #e68594 !important;
}
/* line 3778, ../scss/breakpoints/_base.scss */
.footer-bottom p {
  margin: 0;
  text-align: center !important;
}

/*--------------------------------*/
/* 404 */
/*--------------------------------*/
/* line 3788, ../scss/breakpoints/_base.scss */
#post-not-found input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------*/
/* COOKIE POPUP */
/*--------------------------------*/
/* line 3797, ../scss/breakpoints/_base.scss */
#cc-container {
  width: 100%;
  padding: 10px 10px 0;
  background: #f4e0df;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 8;
  vertical-align: baseline;
}
/* line 3807, ../scss/breakpoints/_base.scss */
#cc-container * {
  vertical-align: baseline;
  color: #222222;
}
/* line 3812, ../scss/breakpoints/_base.scss */
#cc-container .cc-wrap {
  margin: 0 auto;
  padding: 25px 20px 25px 70px;
  position: relative;
  border: 1px solid #fff;
  border-bottom: none;
}
/* line 3819, ../scss/breakpoints/_base.scss */
#cc-container .cc-wrap:before {
  content: '';
  width: 31px;
  height: 31px;
  position: absolute;
  top: 20px;
  left: 20px;
  background: url(../images/cookies.png) 0 0 no-repeat;
  -webkit-background-size: 31px;
  background-size: 31px;
}
/* line 3831, ../scss/breakpoints/_base.scss */
#cc-container .cc-wrap a {
  font-weight: normal;
  text-decoration: underline;
  vertical-align: baseline;
}
/* line 3836, ../scss/breakpoints/_base.scss */
#cc-container .cc-wrap a.accept-link {
  padding: 10px 30px;
  display: inline-block;
  border: 1px solid #222;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}
/* line 3849, ../scss/breakpoints/_base.scss */
#cc-container .cc-wrap a.accept-link:hover {
  background-color: #fff;
  color: #222222;
}
/* line 3858, ../scss/breakpoints/_base.scss */
#cc-container .cc-wrap #cc-notice p {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
}

/*--------------------------------*/
/* PROMOTION */
/*--------------------------------*/
/* line 3872, ../scss/breakpoints/_base.scss */
.promo {
  display: none;
}

/*--------------------------------*/
/* MINI CART */
/*--------------------------------*/
/* line 3880, ../scss/breakpoints/_base.scss */
.mini-cart {
  display: none;
}

/*--------------------------------*/
/* VENDORS */
/*--------------------------------*/
/* line 3888, ../scss/breakpoints/_base.scss */
.vendor-register-label,
.by-vendor-name {
  display: none !important;
}

/* line 3893, ../scss/breakpoints/_base.scss */
.store-header-wrapper {
  margin: 15px 0;
  background: url(../images/separator.png) center center no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
  border: none;
  font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
  text-align: center;
}
/* line 3902, ../scss/breakpoints/_base.scss */
.store-header-wrapper .store-socials,
.store-header-wrapper .store-contact {
  display: none;
}
/* line 3907, ../scss/breakpoints/_base.scss */
.store-header-wrapper .store-info {
  width: auto !important;
  margin: 0 auto;
  padding: 0;
  float: none !important;
  background: none;
}
/* line 3914, ../scss/breakpoints/_base.scss */
.store-header-wrapper .store-info .store-name {
  color: #222;
  font-size: 36px;
  font-weight: normal;
  text-align: center;
  text-transform: none;
}
/* line 3922, ../scss/breakpoints/_base.scss */
.store-header-wrapper .store-info .owner-avatar {
  margin: 0;
  padding: 0 15px;
  background: #fff;
  display: inline-block !important;
}
/* line 3928, ../scss/breakpoints/_base.scss */
.store-header-wrapper .store-info .owner-avatar .avatar {
  display: none;
}

/* line 3936, ../scss/breakpoints/_base.scss */
.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #e68594;
}

@media only screen and (max-width: 767px) {
  /* line 3941, ../scss/breakpoints/_base.scss */
  .woocommerce div.product p.price {
    font-size: 0;
    margin: 10px 0px;
  }

  /* line 3945, ../scss/breakpoints/_base.scss */
  .woocommerce div.product .summary-mobile p.price del {
    opacity: 1;
  }

  /* line 3948, ../scss/breakpoints/_base.scss */
  .woocommerce div.product .summary-mobile p.price del span {
    color: #999;
  }
}
/* overall container ul */
/* line 3954, ../scss/breakpoints/_base.scss */
#inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav {
  position: relative !important;
}

/* inividual mega sub menus */
/* line 3958, ../scss/breakpoints/_base.scss */
#inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu {
  position: absolute !important;
  width: 100%;
  top: 46px !important;
}

/* line 3963, ../scss/breakpoints/_base.scss */
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
  width: 17.05% !important;
}

/* line 3966, ../scss/breakpoints/_base.scss */
#inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li .mega-sub-menu {
  position: static !important;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 33, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 34, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 35, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 36, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 81, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 85, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 90, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 95, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /* line 22, ../scss/breakpoints/_768up.scss */
  .desktop {
    display: block !important;
  }

  /* line 27, ../scss/breakpoints/_768up.scss */
  button.desktop, a.button.desktop {
    display: inline !important;
  }

  /* line 32, ../scss/breakpoints/_768up.scss */
  .mobile {
    display: none !important;
  }

  /* line 36, ../scss/breakpoints/_768up.scss */
  .entry-content {
    margin-bottom: 30px;
  }
  /* line 39, ../scss/breakpoints/_768up.scss */
  .entry-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  /* line 45, ../scss/breakpoints/_768up.scss */
  h1 {
    font-size: 36px;
  }

  /* line 49, ../scss/breakpoints/_768up.scss */
  h1.page-title,
  .h1.page-title {
    margin: 25px 0;
    -webkit-background-size: auto;
    background-size: auto;
    font-size: 36px;
  }
  /* line 56, ../scss/breakpoints/_768up.scss */
  h1.page-title span,
  .h1.page-title span {
    padding: 0 20px;
  }

  /* line 61, ../scss/breakpoints/_768up.scss */
  h2, .h2 {
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: 20px;
  }

  /* line 67, ../scss/breakpoints/_768up.scss */
  h2.heading-bar {
    font-size: 36px;
    text-align: center;
  }

  /* line 72, ../scss/breakpoints/_768up.scss */
  h3, .h3 {
    font-size: 20px;
  }

  /* line 76, ../scss/breakpoints/_768up.scss */
  h4, .h4 {
    font-size: 18px;
    font-weight: 700;
  }

  /* line 81, ../scss/breakpoints/_768up.scss */
  h5, .h5 {
    font-size: 16px;
    line-height: 2.09em;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 92, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 760px;
    padding: 0;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 101, ../scss/breakpoints/_768up.scss */
  .header-toolbar,
  .header {
    padding: 0;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    text-transform: uppercase;
  }
  /* line 109, ../scss/breakpoints/_768up.scss */
  .header-toolbar a,
  .header a {
    height: 38px;
    margin-right: 10px;
    padding-right: 10px;
    padding-left: 30px;
    display: inline-block;
  }
  /* line 116, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-free-delivery,
  .header a.ht-free-delivery {
    padding-left: 45px;
    display: inline-block !important;
    position: relative;
    background: url(../images/delivery-track.png) 0 center no-repeat;
    -webkit-background-size: 33px;
    background-size: 33px;
  }
  /* line 124, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-free-delivery.mobile,
  .header a.ht-free-delivery.mobile {
    display: none !important;
  }
  /* line 128, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-free-delivery:after,
  .header a.ht-free-delivery:after {
    width: 0;
    height: 20px !important;
    content: '';
    position: absolute;
    top: 9px !important;
    right: 0 !important;
    border-right: 1px solid #d78494;
  }
  /* line 139, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-track-order,
  .header a.ht-track-order {
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
  }
  /* line 145, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-login,
  .header a.ht-login {
    position: relative;
    background: url(../images/key.png) 0 center no-repeat;
    -webkit-background-size: 22px;
    background-size: 22px;
  }
  /* line 151, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-login:after,
  .header a.ht-login:after {
    width: 0;
    height: 20px;
    content: '';
    position: absolute;
    top: 9px;
    right: 0;
    border-right: 1px solid #d78494;
  }
  /* line 162, ../scss/breakpoints/_768up.scss */
  .header-toolbar a.ht-bag,
  .header a.ht-bag {
    display: inline-block !important;
    margin-right: 0;
    padding-right: 0;
    background: url(../images/bag.png) 0 center no-repeat;
    -webkit-background-size: 21px;
    background-size: 21px;
  }
  /* line 171, ../scss/breakpoints/_768up.scss */
  .header-toolbar a:hover,
  .header a:hover {
    color: #e68594;
  }

  /* line 181, ../scss/breakpoints/_768up.scss */
  .header-toolbar .wrap a + a {
    margin-left: 0;
  }

  /* line 187, ../scss/breakpoints/_768up.scss */
  .header {
    height: 220px;
    position: relative;
    line-height: 21px;
    text-align: center;
  }
  /* line 193, ../scss/breakpoints/_768up.scss */
  .header #inner-header > div {
    height: 173px;
  }
  /* line 197, ../scss/breakpoints/_768up.scss */
  .header .strapline {
    padding: 52px 38px 0;
    position: relative;
    font-size: 27px;
    line-height: 30px;
    text-transform: none;
  }
  /* line 204, ../scss/breakpoints/_768up.scss */
  .header .strapline:before, .header .strapline:after {
    content: '';
    width: 38px;
    height: 32px;
    margin-top: -16px;
    position: absolute;
    top: 50%;
    background: url(../images/heart-single-pink.png) 0 0 no-repeat;
    -webkit-background-size: 38px;
    background-size: 38px;
  }
  /* line 217, ../scss/breakpoints/_768up.scss */
  .header .strapline:before {
    left: 0;
  }
  /* line 221, ../scss/breakpoints/_768up.scss */
  .header .strapline:after {
    right: 0;
  }
  /* line 227, ../scss/breakpoints/_768up.scss */
  .header .logo {
    margin: 0;
  }
  /* line 230, ../scss/breakpoints/_768up.scss */
  .header .logo img {
    width: 200px;
    padding-top: 25px;
  }
  /* line 236, ../scss/breakpoints/_768up.scss */
  .header .search-wrap {
    padding: 62px 0 0;
    background: none;
    border: none;
    clear: none;
  }
  /* line 242, ../scss/breakpoints/_768up.scss */
  .header .search-wrap #yith-ajaxsearchform {
    position: relative;
  }
  /* line 245, ../scss/breakpoints/_768up.scss */
  .header .search-wrap #yith-ajaxsearchform:before {
    content: '';
    width: 56px;
    height: 23px;
    position: absolute;
    top: -17px;
    left: 21px;
    background: url(../images/search-arrow.png);
    -webkit-background-size: 56px;
    background-size: 56px;
  }

  /* line 263, ../scss/breakpoints/_768up.scss */
  .woocommerce-checkout .header {
    height: auto;
    line-height: 38px;
  }
  /* line 267, ../scss/breakpoints/_768up.scss */
  .woocommerce-checkout .header .header-checkout {
    height: auto !important;
    margin-top: 60px;
  }
  /* line 272, ../scss/breakpoints/_768up.scss */
  .woocommerce-checkout .header a {
    color: #222222;
    text-decoration: none;
  }
  /* line 276, ../scss/breakpoints/_768up.scss */
  .woocommerce-checkout .header a:after {
    display: none;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 287, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav {
    position: static !important;
    background: none;
  }
  /* line 291, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav {
    width: 100%;
    background: none;
    display: block;
    position: relative !important;
    clear: both;
    border: 0;
    text-align: center;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 300, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item {
    padding: 0 5px;
    float: left;
    position: static !important;
    background: transparent url(../images/dots-grey-menu.png) right top no-repeat !important;
    -webkit-background-size: 3px !important;
    background-size: 3px !important;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 308, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:last-child {
    background: none !important;
  }
  /* line 312, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item a.mega-menu-link {
    height: auto;
    margin: 0;
    padding: 0;
    background: none !important;
    border-bottom: 0;
    color: #222222 !important;
    font-size: 12px;
    font-weight: normal;
    text-align: center !important;
    text-transform: uppercase;
    line-height: 21px !important;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* line 332, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item a.mega-menu-link:hover, #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item a.mega-menu-link:focus {
    background: none !important;
    color: #e68594;
  }
  /* line 339, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link:hover {
    color: #e68594 !important;
  }
  /* line 350, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu {
    padding: 20px 12%;
    top: 100%;
    background: #fff;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-bottom: 1px solid #ddd;
    /* highlight sub-menu current page */
  }
  /* line 358, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li {
    padding: 0;
    background: none;
  }
  /* line 362, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li a {
    margin: 0 0 8px;
    padding: 0 0 8px;
    display: inline-block;
    background: none;
    border: none;
    border-bottom: 1px solid #c5c5c5;
    color: #e68594 !important;
    font-size: 15px;
    text-align: left !important;
  }
  /* line 373, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li a:hover, #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li a:focus {
    color: #e68594 !important;
  }
  /* line 379, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li .mega-sub-menu {
    margin: 0 0 10px;
    padding: 0;
    display: block;
    position: static;
    background: none;
    border: none;
  }
  /* line 387, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li .mega-sub-menu li {
    padding: 2px 0;
  }
  /* line 390, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li .mega-sub-menu li a {
    margin: 0;
    padding: 0;
    border: none;
    color: #222222 !important;
    text-transform: none;
  }
  /* line 397, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li .mega-sub-menu li a:hover, #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item .mega-sub-menu li .mega-sub-menu li a:focus {
    color: #222222 !important;
  }
  /* line 416, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    width: 250px;
    padding: 20px;
  }
  /* line 420, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu ul.mega-sub-menu {
    width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }
  /* line 435, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item.mega-item-product ul.mega-sub-menu li a {
    font-size: 13px;
  }
  /* line 443, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item:hover > .sub-menu {
    display: block;
  }
  /* line 453, ../scss/breakpoints/_768up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav li.current-menu-item a,
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav li.current_page_item a,
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav li.current_page_ancestor a {
    color: #e68594;
  }

  /* end .nav */
  /*#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
  	clear: none !important;
  }*/
  /* line 464, ../scss/breakpoints/_768up.scss */
  .nav-feature {
    height: 215px !important;
    display: block !important;
    position: relative !important;
    background-color: #f8f8f4 !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    border: none !important;
    text-align: center !important;
    text-decoration: none !important;
  }
  /* line 477, ../scss/breakpoints/_768up.scss */
  .nav-feature .tf-title {
    padding: 15px 0 10px !important;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  /* line 487, ../scss/breakpoints/_768up.scss */
  .nav-feature .tf-title.tf-title-bg {
    background: rgba(255, 255, 255, 0.8);
  }
  /* line 491, ../scss/breakpoints/_768up.scss */
  .nav-feature .tf-title h2,
  .nav-feature .tf-title h3 {
    margin: 0;
    line-height: 0.8;
    text-align: center !important;
  }
  /* line 498, ../scss/breakpoints/_768up.scss */
  .nav-feature .tf-title h2 {
    color: #222;
    font-size: 30px;
  }
  /* line 503, ../scss/breakpoints/_768up.scss */
  .nav-feature .tf-title h3 {
    color: #a7a7a7;
    font-size: 14px;
  }
  /* line 513, ../scss/breakpoints/_768up.scss */
  .nav-feature:hover .tf-title.tf-title-bg {
    background: rgba(255, 255, 255, 0.95);
  }

  /*********************
  HOME
  *********************/
  /* line 524, ../scss/breakpoints/_768up.scss */
  .home-banner {
    height: 90px;
    margin: 20px 0 0;
    padding: 0;
    font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
    font-size: 24px;
    text-align: center;
    line-height: 90px;
  }
  /* line 533, ../scss/breakpoints/_768up.scss */
  .home-banner .button {
    position: relative;
    top: -5px;
    margin-left: 15px;
    opacity: 1;
  }
  /* line 539, ../scss/breakpoints/_768up.scss */
  .home-banner .button:hover {
    opacity: 0.7;
  }

  /* line 545, ../scss/breakpoints/_768up.scss */
  .home-features {
    margin: 20px 0 0;
  }
  /* line 548, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1,
  .home-features .tf-height-2,
  .home-features .tf-height-3 {
    margin: 0 0 20px;
    display: block;
    background-color: #f8f8f4;
    -webkit-background-size: cover;
    background-size: cover;
    text-align: center;
  }
  /* line 558, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1 .tf-title,
  .home-features .tf-height-2 .tf-title,
  .home-features .tf-height-3 .tf-title {
    padding: 25px 0;
  }
  /* line 561, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1 .tf-title h2,
  .home-features .tf-height-2 .tf-title h2,
  .home-features .tf-height-3 .tf-title h2 {
    font-size: 36px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  /* line 568, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1 .tf-title h3,
  .home-features .tf-height-2 .tf-title h3,
  .home-features .tf-height-3 .tf-title h3 {
    font-size: 18px;
  }
  /* line 573, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1:hover,
  .home-features .tf-height-2:hover,
  .home-features .tf-height-3:hover {
    -webkit-background-size: auto 107%;
    background-size: auto 107%;
  }
  /* line 577, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1:hover h2,
  .home-features .tf-height-2:hover h2,
  .home-features .tf-height-3:hover h2 {
    color: #e68594;
  }
  /* line 583, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1 {
    height: 246px;
  }
  /* line 586, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-1 .tf-title {
    padding: 15px 0;
  }
  /* line 591, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-2 {
    height: 512px;
  }
  /* line 595, ../scss/breakpoints/_768up.scss */
  .home-features .tf-height-3 {
    height: 778px;
  }

  /* line 600, ../scss/breakpoints/_768up.scss */
  .home-box {
    margin: 0 0 20px !important;
  }
  /* line 603, ../scss/breakpoints/_768up.scss */
  .home-box .border {
    height: 320px;
  }
  /* line 606, ../scss/breakpoints/_768up.scss */
  .home-box .border h3 {
    margin: 50px 0 0;
    font-size: 36px;
  }
  /* line 610, ../scss/breakpoints/_768up.scss */
  .home-box .border h3 a {
    font-size: 36px;
  }
  /* line 615, ../scss/breakpoints/_768up.scss */
  .home-box .border h4 {
    margin: 0 0 15px;
    color: #a7a7a7;
    font-size: 18px;
    font-weight: normal;
  }
  /* line 622, ../scss/breakpoints/_768up.scss */
  .home-box .border .social {
    float: none !important;
    display: inline-block;
  }
  /* line 632, ../scss/breakpoints/_768up.scss */
  .home-box.home-box-1 .border h3 {
    margin: 0;
    font-size: 30px;
  }

  /* line 640, ../scss/breakpoints/_768up.scss */
  .featured-category {
    margin: 0 0 30px;
  }
  /* line 643, ../scss/breakpoints/_768up.scss */
  .featured-category a {
    font-size: 18px;
  }
  /* line 646, ../scss/breakpoints/_768up.scss */
  .featured-category a img {
    margin: 0 0 15px;
  }

  /*********************
  PRODUCT LISTINGS
  *********************/
  /* line 656, ../scss/breakpoints/_768up.scss */
  .term-description {
    width: 66%;
    margin: 0 auto 30px;
    text-align: center;
  }
  /* line 661, ../scss/breakpoints/_768up.scss */
  .term-description p {
    font-size: 16px !important;
  }

  /* line 666, ../scss/breakpoints/_768up.scss */
  .sidebar-shop {
    margin-bottom: 50px;
    padding: 20px;
    background: #fcf4f2;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  }

  /* line 683, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products li.product,
  .woocommerce ul.products div.product,
  .woocommerce .cross-sells-carousel li.product,
  .woocommerce .cross-sells-carousel div.product,
  .woocommerce .instagallery-items li.product,
  .woocommerce .instagallery-items div.product,
  .home ul.products li.product,
  .home ul.products div.product,
  .home .cross-sells-carousel li.product,
  .home .cross-sells-carousel div.product,
  .home .instagallery-items li.product,
  .home .instagallery-items div.product,
  .single ul.products li.product,
  .single ul.products div.product,
  .single .cross-sells-carousel li.product,
  .single .cross-sells-carousel div.product,
  .single .instagallery-items li.product,
  .single .instagallery-items div.product {
    width: 22.95%;
    margin-bottom: 30px;
  }
  /* line 690, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products li.product a h3,
  .woocommerce ul.products div.product a h3,
  .woocommerce .cross-sells-carousel li.product a h3,
  .woocommerce .cross-sells-carousel div.product a h3,
  .woocommerce .instagallery-items li.product a h3,
  .woocommerce .instagallery-items div.product a h3,
  .home ul.products li.product a h3,
  .home ul.products div.product a h3,
  .home .cross-sells-carousel li.product a h3,
  .home .cross-sells-carousel div.product a h3,
  .home .instagallery-items li.product a h3,
  .home .instagallery-items div.product a h3,
  .single ul.products li.product a h3,
  .single ul.products div.product a h3,
  .single .cross-sells-carousel li.product a h3,
  .single .cross-sells-carousel div.product a h3,
  .single .instagallery-items li.product a h3,
  .single .instagallery-items div.product a h3 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 16px;
  }
  /* line 696, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products li.product a .price,
  .woocommerce ul.products div.product a .price,
  .woocommerce .cross-sells-carousel li.product a .price,
  .woocommerce .cross-sells-carousel div.product a .price,
  .woocommerce .instagallery-items li.product a .price,
  .woocommerce .instagallery-items div.product a .price,
  .home ul.products li.product a .price,
  .home ul.products div.product a .price,
  .home .cross-sells-carousel li.product a .price,
  .home .cross-sells-carousel div.product a .price,
  .home .instagallery-items li.product a .price,
  .home .instagallery-items div.product a .price,
  .single ul.products li.product a .price,
  .single ul.products div.product a .price,
  .single .cross-sells-carousel li.product a .price,
  .single .cross-sells-carousel div.product a .price,
  .single .instagallery-items li.product a .price,
  .single .instagallery-items div.product a .price {
    font-size: 18px;
  }
  /* line 702, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products li.product,
  .woocommerce .cross-sells-carousel li.product,
  .woocommerce .instagallery-items li.product,
  .home ul.products li.product,
  .home .cross-sells-carousel li.product,
  .home .instagallery-items li.product,
  .single ul.products li.product,
  .single .cross-sells-carousel li.product,
  .single .instagallery-items li.product {
    margin-left: 1%;
    margin-right: 1%;
  }
  /* line 707, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products button,
  .woocommerce .cross-sells-carousel button,
  .woocommerce .instagallery-items button,
  .home ul.products button,
  .home .cross-sells-carousel button,
  .home .instagallery-items button,
  .single ul.products button,
  .single .cross-sells-carousel button,
  .single .instagallery-items button {
    width: 18px;
    height: 30px;
    position: absolute;
    top: 100px;
    z-index: 10;
    margin: 0;
    padding: 0;
    background: none;
    text-indent: -9999px;
    opacity: 1;
  }
  /* line 719, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products button.slick-prev,
  .woocommerce .cross-sells-carousel button.slick-prev,
  .woocommerce .instagallery-items button.slick-prev,
  .home ul.products button.slick-prev,
  .home .cross-sells-carousel button.slick-prev,
  .home .instagallery-items button.slick-prev,
  .single ul.products button.slick-prev,
  .single .cross-sells-carousel button.slick-prev,
  .single .instagallery-items button.slick-prev {
    left: 0;
    background: url(../images/arrow-left-grey.png) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 726, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products button.slick-next,
  .woocommerce .cross-sells-carousel button.slick-next,
  .woocommerce .instagallery-items button.slick-next,
  .home ul.products button.slick-next,
  .home .cross-sells-carousel button.slick-next,
  .home .instagallery-items button.slick-next,
  .single ul.products button.slick-next,
  .single .cross-sells-carousel button.slick-next,
  .single .instagallery-items button.slick-next {
    right: 0;
    background: url(../images/arrow-right-grey.png) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 733, ../scss/breakpoints/_768up.scss */
  .woocommerce ul.products button:hover,
  .woocommerce .cross-sells-carousel button:hover,
  .woocommerce .instagallery-items button:hover,
  .home ul.products button:hover,
  .home .cross-sells-carousel button:hover,
  .home .instagallery-items button:hover,
  .single ul.products button:hover,
  .single .cross-sells-carousel button:hover,
  .single .instagallery-items button:hover {
    opacity: 0.5;
  }

  /* line 742, ../scss/breakpoints/_768up.scss */
  .instagallery-items button {
    width: 18px;
    height: 30px;
    position: absolute;
    top: 100px;
    z-index: 10;
    margin: 0;
    padding: 0;
    background: none;
    text-indent: -9999px;
    opacity: 1;
  }
  /* line 754, ../scss/breakpoints/_768up.scss */
  .instagallery-items button.slick-prev {
    left: 0;
    background: url(../images/arrow-left-grey.png) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 761, ../scss/breakpoints/_768up.scss */
  .instagallery-items button.slick-next {
    right: 0;
    background: url(../images/arrow-right-grey.png) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 768, ../scss/breakpoints/_768up.scss */
  .instagallery-items button:hover {
    opacity: 0.5;
  }

  /* line 776, ../scss/breakpoints/_768up.scss */
  .woocommerce nav.woocommerce-pagination ul,
  nav.pagination ul {
    margin: 40px 0 50px;
  }

  /*********************
  SINGLE PRODUCT
  *********************/
  /* line 785, ../scss/breakpoints/_768up.scss */
  .single-product #inner-content {
    padding-top: 20px;
  }

  /* line 789, ../scss/breakpoints/_768up.scss */
  .woocommerce #content div.product div.images, .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images,
  .woocommerce #content div.product div.summary, .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 50%;
  }

  /* line 799, ../scss/breakpoints/_768up.scss */
  .woocommerce.single-product span.onsale {
    display: block;
    top: 0 !important;
    left: 55px !important;
    z-index: 9;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  /* line 811, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-main-image {
    position: relative;
    display: block;
  }
  /* line 815, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-main-image:before {
    content: '';
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: #fff url(../images/search.png) center center no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  /* line 838, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-main-image:hover:before {
    width: 60px;
    height: 60px;
  }
  /* line 845, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails {
    width: 70%;
    margin: 20px auto 0;
    padding: 0 !important;
    position: relative;
  }
  /* line 853, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails div a {
    width: 90% !important;
    margin: 0 auto !important;
    float: none !important;
    display: block;
  }
  /* line 860, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails div a.thumbnail-video:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7) url(../images/play-button.png) center center no-repeat;
    -webkit-background-size: 27px;
    background-size: 27px;
  }
  /* line 875, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails button {
    width: 32px;
    height: 32px;
    margin: -16px 0 0;
    padding: 0;
    position: absolute;
    top: 50%;
    background: #f8f8f4;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
    text-indent: -9999px;
  }
  /* line 890, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails button.slick-prev {
    left: -45px;
    background: #f8f8f4 url(../images/arrow-left-black.png) 11px center no-repeat;
    -webkit-background-size: 8px;
    background-size: 8px;
  }
  /* line 897, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails button.slick-next {
    right: -45px;
    background: #f8f8f4 url(../images/arrow-right-black.png) 13px center no-repeat;
    -webkit-background-size: 8px;
    background-size: 8px;
  }
  /* line 904, ../scss/breakpoints/_768up.scss */
  .woocommerce .thumbnails button:hover {
    background-color: #eee;
  }
  /* line 912, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary p.price,
  .woocommerce .summary .price {
    float: left;
    margin: 0;
  }
  /* line 917, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary p.price span,
  .woocommerce .summary .price span {
    font-size: 30px;
  }
  /* line 922, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary h1.product_title {
    font-size: 30px;
  }
  /* line 926, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .separator {
    width: 100%;
    height: 5px;
    margin: 15px 0 20px;
    background: url(../images/separator.png) right 0 no-repeat;
  }
  /* line 933, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .woocommerce-product-rating,
  .woocommerce .summary .sharing {
    width: 50%;
    float: left;
  }
  /* line 939, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .sharing {
    margin-bottom: 0;
    text-align: right;
  }
  /* line 944, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .product_meta {
    clear: both;
  }
  /* line 948, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary table.variations {
    margin: 30px 0 -30px !important;
  }
  /* line 951, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary table.variations a.reset_variations {
    position: relative;
    top: -10px;
  }
  /* line 957, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation {
    border: 1px solid #ddd;
    			/*&.single_variation_wrap {
    
    				.personalisation-options {
    
    					div.product-addon {
    
    						&:nth-child(2n+1) {
    							padding-right: 0;
    							clear: none;
    						}
    
    						&:nth-child(2n) {
    							padding-right: 20px;
    							clear: left;
    						}
    					}
    				}
    			}*/
  }
  /* line 960, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation h2 {
    padding: 25px 20px;
    font-size: 18px;
  }
  /* line 964, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation h2 span {
    font-size: 14px;
  }
  /* line 972, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options {
    padding: 20px 20px 0 !important;
  }
  /* line 975, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon {
    width: 50%;
    float: left;
    margin-bottom: 15px;
    padding-right: 20px;
  }
  /* line 981, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon:nth-child(2n) {
    padding-right: 0;
  }
  /* line 985, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon:nth-child(2n+1) {
    clear: left;
  }
  /* line 989, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon label, .woocommerce .summary .personalisation .personalisation-options div.product-addon h3 {
    margin: 0;
    line-height: 1.2;
  }
  /* line 994, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon small {
    display: none;
  }
  /* line 997, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon small.chars_remaining {
    display: inline;
  }
  /* line 1002, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon .form-row {
    margin: 0;
    padding: 0;
  }
  /* line 1007, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon .form-row + .form-row {
    margin: 15px 0 0;
  }
  /* line 1013, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .personalisation .personalisation-options div.product-addon.product-addon-text-fields h3 {
    display: none;
  }
  /* line 1040, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .delivery-override {
    margin: 0 0 20px;
    padding: 20px;
  }
  /* line 1045, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .qty-wrap {
    width: 130px;
    margin-top: 10px;
    margin-right: 10px;
    float: right !important;
  }
  /* line 1051, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .qty-wrap input {
    width: 35px;
  }
  /* line 1056, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .product-buy {
    padding: 20px;
    background: #fcf4f2;
    border: 1px solid #ddd;
  }
  /* line 1061, ../scss/breakpoints/_768up.scss */
  .woocommerce .summary .product-buy .button {
    width: auto !important;
  }

  /* line 1068, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs,
  .support_bs ul.nav-tabs {
    margin: 0;
    padding: 0;
  }
  /* line 1073, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs:before,
  .support_bs ul.nav-tabs:before {
    border: none;
  }
  /* line 1077, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs li,
  .support_bs ul.nav-tabs li {
    margin: 0;
    padding: 0;
    float: left;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    border-left: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  /* line 1091, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
  .support_bs ul.nav-tabs li.active {
    background: #fcf4f2;
  }
  /* line 1095, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs li:first-child,
  .support_bs ul.nav-tabs li:first-child {
    border-left: 1px solid #ddd;
  }
  /* line 1099, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after,
  .support_bs ul.nav-tabs li:before,
  .support_bs ul.nav-tabs li:after {
    display: none;
  }
  /* line 1104, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs ul.tabs li a,
  .support_bs ul.nav-tabs li a {
    margin: 0 !important;
    padding: 20px 40px;
    background: none !important;
    border: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important;
    color: #222222;
    font-size: 18px;
    line-height: 0.8;
    text-transform: uppercase;
  }

  /* line 1122, ../scss/breakpoints/_768up.scss */
  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px 40px;
    background: #fcf4f2;
    border: 1px solid #ddd;
  }

  /* line 1128, ../scss/breakpoints/_768up.scss */
  .product-support {
    padding: 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  /* line 1134, ../scss/breakpoints/_768up.scss */
  .sharing {
    margin: 4px 0 0;
  }
  /* line 1137, ../scss/breakpoints/_768up.scss */
  .sharing span {
    display: inline;
  }
  /* line 1141, ../scss/breakpoints/_768up.scss */
  .sharing .shares {
    float: right;
    font-size: 20px;
  }

  /*********************
  CART
  *********************/
  /* line 1151, ../scss/breakpoints/_768up.scss */
  .woocommerce-error, .woocommerce-info, .woocommerce-message {
    line-height: 2.9;
  }

  /* line 1157, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table {
    border: 1px solid #ddd;
  }
  /* line 1160, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr {
    border: none;
  }
  /* line 1163, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr th {
    padding: 20px 30px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    text-transform: uppercase;
  }
  /* line 1171, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td {
    padding: 30px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  /* line 1176, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-thumbnail {
    width: 288px;
  }
  /* line 1179, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-thumbnail img {
    width: 228px;
  }
  /* line 1185, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-name a {
    margin: 0;
    color: #222222;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
  }
  /* line 1192, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-name a:hover {
    color: #e68594;
  }
  /* line 1197, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-name dl.variation {
    margin: 15px 0 0;
  }
  /* line 1200, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-name dl.variation dt,
  .woocommerce table.shop_table tr td.product-name dl.variation dd {
    font-size: 14px;
    line-height: 18px;
  }
  /* line 1205, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-name dl.variation dt p,
  .woocommerce table.shop_table tr td.product-name dl.variation dd p {
    font-size: 14px;
    line-height: 18px;
  }
  /* line 1213, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td.product-quantity, .woocommerce table.shop_table tr td.product-subtotal {
    width: 220px;
  }
  /* line 1218, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td span.amount {
    font-size: 20px;
    font-weight: bold;
  }
  /* line 1223, ../scss/breakpoints/_768up.scss */
  .woocommerce table.shop_table tr td a.remove {
    color: #222222 !important;
    font-size: 14px;
    font-weight: bold;
  }
  /* line 1232, ../scss/breakpoints/_768up.scss */
  .woocommerce .cart-collaterals {
    width: 100%;
  }
  /* line 1235, ../scss/breakpoints/_768up.scss */
  .woocommerce .cart-collaterals .cart_totals_wrap {
    width: 100%;
  }
  /* line 1240, ../scss/breakpoints/_768up.scss */
  .woocommerce .cart-collaterals .cart_totals_wrap table.shop_table th, .woocommerce .cart-collaterals .cart_totals_wrap table.shop_table td {
    padding: 15px 0;
    border-bottom: 1px solid #ddd !important;
  }
  /* line 1247, ../scss/breakpoints/_768up.scss */
  .woocommerce .cart-collaterals .cart_totals_wrap table.shop_table tr.order-total th, .woocommerce .cart-collaterals .cart_totals_wrap table.shop_table tr.order-total td {
    border: none !important;
  }
  /* line 1255, ../scss/breakpoints/_768up.scss */
  .woocommerce .cart-update {
    position: absolute !important;
    bottom: 30px;
    right: 30px;
  }

  /* line 1262, ../scss/breakpoints/_768up.scss */
  .qty-wrap {
    width: 120px;
    margin-top: 0;
  }

  /* line 1267, ../scss/breakpoints/_768up.scss */
  .cart-update {
    width: auto;
    margin: 0 !important;
  }

  /* line 1272, ../scss/breakpoints/_768up.scss */
  .coupon {
    margin-top: 0;
  }

  /* line 1276, ../scss/breakpoints/_768up.scss */
  .product-carousel {
    padding: 0 15px;
  }
  /* line 1279, ../scss/breakpoints/_768up.scss */
  .product-carousel img {
    width: 80%;
    height: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    margin-left: auto;
  }

  /* line 1288, ../scss/breakpoints/_768up.scss */
  .cart-confirm {
    width: 640px;
    margin: 0 0 0 -320px;
    padding: 50px 30px 30px;
    position: fixed;
    top: 10%;
    left: 50%;
  }
  /* line 1296, ../scss/breakpoints/_768up.scss */
  .cart-confirm .confirm-cart-table-wrap {
    max-height: 250px;
    overflow: scroll;
  }

  /*********************
  CHECKOUT
  *********************/
  /* line 1310, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-checkout h2 {
    padding: 0;
  }
  /* line 1314, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap {
    border: 1px solid #ddd;
  }
  /* line 1317, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table {
    border-bottom: 1px solid #ddd !important;
  }
  /* line 1323, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th.product-thumbnail,
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td.product-thumbnail {
    width: 110px;
    padding-right: 0;
  }
  /* line 1328, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th img,
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td img {
    width: 100px !important;
    display: block;
  }
  /* line 1333, ../scss/breakpoints/_768up.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table th.product-total,
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td.product-total {
    width: 170px;
  }

  /*********************
  BLOG ARCHIVES
  *********************/
  /* line 1347, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap {
    height: 512px;
  }
  /* line 1350, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing {
    height: 100%;
    overflow: hidden;
  }
  /* line 1354, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content {
    padding: 10px;
  }
  /* line 1357, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border {
    height: 216px;
    padding: 15px;
    border: 2px solid #fff;
  }
  /* line 1362, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border h2 {
    margin: 0 0 2px;
    font-size: 36px;
  }
  /* line 1367, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border p {
    margin: 0;
  }
  /* line 1371, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border .entry-content {
    margin: 10px 0 15px;
    display: block;
  }
  /* line 1376, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border a.read-more {
    font-size: 16px;
    font-weight: bold;
  }
  /* line 1381, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border .entry-meta {
    font-size: 14px;
  }
  /* line 1391, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.d-2of3 img, .post-listing-wrap.news-height-half img {
    width: 50%;
    float: left;
  }
  /* line 1396, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.d-2of3 .post-listing-content, .post-listing-wrap.news-height-half .post-listing-content {
    width: 50%;
    height: 100%;
    float: right;
  }
  /* line 1401, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.d-2of3 .post-listing-content .post-listing-border, .post-listing-wrap.news-height-half .post-listing-content .post-listing-border {
    height: 100%;
  }
  /* line 1409, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.d-2of3 .post-listing-content {
    padding: 15px;
  }
  /* line 1412, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.d-2of3 .post-listing-content .post-listing-border {
    padding-top: 140px;
  }
  /* line 1418, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.news-height-half {
    height: 246px;
  }
  /* line 1423, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.news-height-half .post-listing-content .post-listing-border {
    padding: 50px 10px 0;
  }
  /* line 1426, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.news-height-half .post-listing-content .post-listing-border h2 {
    font-size: 27px !important;
    line-height: 1;
  }
  /* line 1431, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.news-height-half .post-listing-content .post-listing-border .entry-meta {
    font-size: 12px;
  }
  /* line 1435, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.news-height-half .post-listing-content .post-listing-border .entry-content {
    display: none;
  }
  /* line 1439, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.news-height-half .post-listing-content .post-listing-border a.read-more {
    font-size: 14px;
  }
  /* line 1452, ../scss/breakpoints/_768up.scss */
  .post-listing-wrap.article-first .post-listing-content .post-listing-border .entry-content {
    font-size: 16px;
  }

  /*********************
  INSTAGRAM FEED
  *********************/
  /* line 1464, ../scss/breakpoints/_768up.scss */
  .instagram {
    margin-bottom: 15px;
  }
  /* line 1467, ../scss/breakpoints/_768up.scss */
  .instagram h2.h1 {
    margin-top: 0;
  }
  /* line 1470, ../scss/breakpoints/_768up.scss */
  .instagram h2.h1 img {
    position: relative;
    top: 4px;
  }
  /* line 1476, ../scss/breakpoints/_768up.scss */
  .instagram .instagram-intro {
    margin: 0;
    padding: 10px !important;
    background: #f8f8f4;
    text-align: center;
  }
  /* line 1482, ../scss/breakpoints/_768up.scss */
  .instagram .instagram-intro .border {
    height: 165px;
    padding: 15px 20px 0;
    border: 2px solid #fff;
  }
  /* line 1487, ../scss/breakpoints/_768up.scss */
  .instagram .instagram-intro .border h3 {
    margin: 0 0 5px;
    font-size: 24px;
  }
  /* line 1492, ../scss/breakpoints/_768up.scss */
  .instagram .instagram-intro .border p {
    margin: 0;
    font-size: 14px;
  }
  /* line 1501, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .slick-list {
    margin: 0 -10px;
  }
  /* line 1505, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .ig-item {
    /*width: 16.666666666667% !important;*/
    padding: 0 10px;
    float: left;
    display: block;
  }
  /* line 1511, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .ig-item img {
    display: block;
  }
  /* line 1515, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .ig-item:nth-child(3), .instagram .instagallery-items .ig-item:nth-child(4) {
    display: block;
  }
  /* line 1521, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .slick-arrow {
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    background-color: #fff !important;
    border: 5px solid #fff !important;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  /* line 1537, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .slick-prev {
    left: 0;
  }
  /* line 1541, ../scss/breakpoints/_768up.scss */
  .instagram .instagallery-items .slick-next {
    right: 0 !important;
  }

  /*********************
  FAQS
  *********************/
  /* line 1551, ../scss/breakpoints/_768up.scss */
  ul.faq-group {
    margin: 0 0 50px;
  }
  /* line 1556, ../scss/breakpoints/_768up.scss */
  ul.faq-group li h3 {
    padding: 20px 0 20px 35px;
    position: relative;
    font-size: 18px;
    cursor: pointer;
  }
  /* line 1562, ../scss/breakpoints/_768up.scss */
  ul.faq-group li h3:after {
    content: '';
    width: 18px;
    height: 18px;
    margin: -9px 0 0;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/plus-minus.png) 0 -25px no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 1577, ../scss/breakpoints/_768up.scss */
  ul.faq-group li h3.open:after {
    background-position: 0 -97px;
  }
  /* line 1584, ../scss/breakpoints/_768up.scss */
  ul.faq-group li:nth-child(3n) h3 {
    background: url(../images/heart-single-green.png) 0 center no-repeat;
    -webkit-background-size: 22px;
    background-size: 22px;
  }
  /* line 1592, ../scss/breakpoints/_768up.scss */
  ul.faq-group li:nth-child(3n-1) h3 {
    background: url(../images/heart-single-grey.png) 0 center no-repeat;
    -webkit-background-size: 22px;
    background-size: 22px;
  }
  /* line 1600, ../scss/breakpoints/_768up.scss */
  ul.faq-group li:nth-child(3n-2) h3 {
    background: url(../images/heart-single-pink.png) 0 center no-repeat;
    -webkit-background-size: 22px;
    background-size: 22px;
  }
  /* line 1607, ../scss/breakpoints/_768up.scss */
  ul.faq-group li .answer {
    padding: 0 0 0 35px;
  }

  /*********************
  DELIVERY INFORMATION
  *********************/
  /* line 1617, ../scss/breakpoints/_768up.scss */
  .delivery-pricing {
    margin: 0 0 40px;
  }

  /*********************
  CONTACT US
  *********************/
  /* line 1625, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1,
  .gform_confirmation_message,
  #yith-become-a-vendor form.register {
    margin: 0;
    padding: 30px;
    border: 1px solid #ddd;
  }
  /* line 1632, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 h3,
  .gform_confirmation_message h3,
  #yith-become-a-vendor form.register h3 {
    font-size: 24px;
  }
  /* line 1636, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 ul,
  .gform_confirmation_message ul,
  #yith-become-a-vendor form.register ul {
    margin: 0;
    padding: 0;
  }
  /* line 1640, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 ul li,
  .gform_confirmation_message ul li,
  #yith-become-a-vendor form.register ul li {
    width: 50%;
    float: left;
    clear: none;
  }
  /* line 1645, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 ul li.field-left,
  .gform_confirmation_message ul li.field-left,
  #yith-become-a-vendor form.register ul li.field-left {
    padding-right: 10px;
  }
  /* line 1649, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 ul li.field-right,
  .gform_confirmation_message ul li.field-right,
  #yith-become-a-vendor form.register ul li.field-right {
    padding-left: 10px;
  }
  /* line 1653, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 ul li#field_1_7,
  .gform_confirmation_message ul li#field_1_7,
  #yith-become-a-vendor form.register ul li#field_1_7 {
    width: 100%;
    clear: both;
  }
  /* line 1660, ../scss/breakpoints/_768up.scss */
  #gform_wrapper_1 .gform_button,
  .gform_confirmation_message .gform_button,
  #yith-become-a-vendor form.register .gform_button {
    width: auto;
  }

  /*********************
  ACCOUNT
  *********************/
  /* line 1669, ../scss/breakpoints/_768up.scss */
  .account-login,
  .account-register {
    margin: 0 0 100px;
    padding: 30px;
  }
  /* line 1674, ../scss/breakpoints/_768up.scss */
  .account-login form.login,
  .account-login form.register,
  .account-register form.login,
  .account-register form.register {
    margin: 0;
    padding: 0;
    border: none;
  }
  /* line 1680, ../scss/breakpoints/_768up.scss */
  .account-login form.login p.form-row,
  .account-login form.register p.form-row,
  .account-register form.login p.form-row,
  .account-register form.register p.form-row {
    width: auto;
  }
  /* line 1683, ../scss/breakpoints/_768up.scss */
  .account-login form.login p.form-row label.inline,
  .account-login form.register p.form-row label.inline,
  .account-register form.login p.form-row label.inline,
  .account-register form.register p.form-row label.inline {
    margin-top: 0;
    display: inline;
  }
  /* line 1689, ../scss/breakpoints/_768up.scss */
  .account-login form.login input.button,
  .account-login form.register input.button,
  .account-register form.login input.button,
  .account-register form.register input.button {
    width: auto;
    margin-right: 20px;
  }
  /* line 1694, ../scss/breakpoints/_768up.scss */
  .account-login form.login .lost_password,
  .account-login form.register .lost_password,
  .account-register form.login .lost_password,
  .account-register form.register .lost_password {
    margin: 13px 0 0;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 1706, ../scss/breakpoints/_768up.scss */
  .sidebar .widget {
    margin: 0 0 20px;
  }
  /* line 1709, ../scss/breakpoints/_768up.scss */
  .sidebar .widget .widget-basic {
    text-align: left;
  }
  /* line 1712, ../scss/breakpoints/_768up.scss */
  .sidebar .widget .widget-basic p {
    margin: 0;
    color: #222222;
    font-size: 16px;
  }
  /* line 1717, ../scss/breakpoints/_768up.scss */
  .sidebar .widget .widget-basic p strong {
    font-size: 20px;
  }
  /* line 1722, ../scss/breakpoints/_768up.scss */
  .sidebar .widget .widget-basic a {
    color: #222222;
    text-decoration: none;
  }

  /*********************
  FOOTER STYLES
  *********************/
  /* line 1746, ../scss/breakpoints/_768up.scss */
  .footer {
    text-align: left;
  }

  /* line 1750, ../scss/breakpoints/_768up.scss */
  .footer-top {
    padding: 25px 0;
    text-align: left;
  }
  /* line 1754, ../scss/breakpoints/_768up.scss */
  .footer-top .d-1of3 {
    padding: 30px 0 45px;
    border-right: 1px solid #d78494;
  }
  /* line 1758, ../scss/breakpoints/_768up.scss */
  .footer-top .d-1of3 p {
    margin: 0 0 17px;
    font-size: 20px;
  }
  /* line 1764, ../scss/breakpoints/_768up.scss */
  .footer-top .social {
    margin: 0 7px;
  }
  /* line 1768, ../scss/breakpoints/_768up.scss */
  .footer-top .newsletter-bubble {
    width: 30%;
    height: 134px;
    margin: 7px 0 0;
    padding: 20px 4% 0 4%;
    background: url(../images/speech-bubble.png) center 0 no-repeat;
    -webkit-background-size: 150px;
    background-size: 150px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
  }
  /* line 1780, ../scss/breakpoints/_768up.scss */
  .footer-top .newsletter-bubble span {
    font-size: 30px;
  }
  /* line 1785, ../scss/breakpoints/_768up.scss */
  .footer-top .newsletter-form {
    width: 70%;
    margin-top: 30px;
  }
  /* line 1789, ../scss/breakpoints/_768up.scss */
  .footer-top .newsletter-form p {
    font-size: 20px;
  }

  /* line 1797, ../scss/breakpoints/_768up.scss */
  .footer-middle .d-1of3 {
    margin: 0 0 25px;
    font-size: 15px;
    line-height: 31px;
  }
  /* line 1802, ../scss/breakpoints/_768up.scss */
  .footer-middle .d-1of3 h3 {
    margin: 45px 0 20px;
    font-size: 26px;
  }

  /* line 1809, ../scss/breakpoints/_768up.scss */
  .footer-bottom {
    margin: 0;
    padding: 25px 0 70px;
    background: url(../images/separator.png) center 0 no-repeat;
    font-size: 15px;
  }
  /* line 1815, ../scss/breakpoints/_768up.scss */
  .footer-bottom p {
    text-align: left !important;
    margin: 0;
  }
  /* line 1820, ../scss/breakpoints/_768up.scss */
  .footer-bottom .tar p {
    text-align: right !important;
  }

  /* line 1827, ../scss/breakpoints/_768up.scss */
  .woocommerce-checkout .footer-bottom {
    margin-top: 60px;
    padding-top: 50px;
  }
  /* line 1831, ../scss/breakpoints/_768up.scss */
  .woocommerce-checkout .footer-bottom p {
    margin-top: 20px;
  }

  /*--------------------------------*/
  /* COOKIE POPUP */
  /*--------------------------------*/
  /* line 1842, ../scss/breakpoints/_768up.scss */
  #cc-container {
    width: 390px;
    right: 10%;
  }
  /* line 1850, ../scss/breakpoints/_768up.scss */
  #cc-container .cc-wrap a.accept-link {
    font-size: 16px;
  }
  /* line 1857, ../scss/breakpoints/_768up.scss */
  #cc-container .cc-wrap #cc-notice p {
    font-size: 16px;
  }

  /*--------------------------------*/
  /* PROMOTION */
  /*--------------------------------*/
  /* line 1868, ../scss/breakpoints/_768up.scss */
  .promo {
    width: 837px;
    height: 462px;
    margin: -231px 0 0 -419px;
    padding: 52px 445px 0 35px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    display: none;
    background-color: #fff;
    -webkit-background-size: cover;
    background-size: cover;
    border: 10px solid #f4e0df;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
  /* line 1885, ../scss/breakpoints/_768up.scss */
  .promo .newsletter-bubble {
    width: 186px;
    height: 166px;
    margin: 0 auto;
    padding: 40px 4% 0 4%;
    background: url(../images/speech-bubble.png) center 0 no-repeat;
    -webkit-background-size: 186px;
    background-size: 186px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  /* line 1897, ../scss/breakpoints/_768up.scss */
  .promo .newsletter-bubble span {
    font-size: 36px;
  }
  /* line 1902, ../scss/breakpoints/_768up.scss */
  .promo p {
    font-size: 14px;
  }
  /* line 1907, ../scss/breakpoints/_768up.scss */
  .promo form input {
    padding-left: 38px;
    background: #fff url(../images/email-faded.png) 10px center no-repeat;
    -webkit-background-size: 21px;
    background-size: 21px;
    font-size: 14px;
  }
  /* line 1916, ../scss/breakpoints/_768up.scss */
  .promo button {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
    background-image: none;
    text-align: center;
  }
  /* line 1923, ../scss/breakpoints/_768up.scss */
  .promo button:hover {
    background-image: none;
  }
  /* line 1928, ../scss/breakpoints/_768up.scss */
  .promo a.close {
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    background: url(../images/close.png) 0 0 no-repeat;
    -webkit-background-size: 15px;
    background-size: 15px;
    opacity: 1;
    text-indent: -9999px;
  }
  /* line 1941, ../scss/breakpoints/_768up.scss */
  .promo a.close:hover {
    opacity: 0.6;
  }

  /*--------------------------------*/
  /* MINI CART */
  /*--------------------------------*/
  /* line 1951, ../scss/breakpoints/_768up.scss */
  .mini-cart {
    width: 350px;
    padding: 0 20px 20px;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 1;
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    line-height: 0.8;
  }
  /* line 1967, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr {
    border-bottom: 1px solid #ddd;
  }
  /* line 1970, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr td {
    padding: 20px 0;
    font-size: 12px;
    text-align: left;
    vertical-align: top;
  }
  /* line 1976, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr td p {
    margin: 0 0 5px;
    text-transform: none;
  }
  /* line 1981, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr td a {
    height: auto;
    margin: 0;
    padding: 0;
    display: inline;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-transform: none;
  }
  /* line 1991, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr td a img {
    width: 66px;
    height: auto;
    display: block;
    margin-right: 10px !important;
  }
  /* line 1998, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr td a.remove {
    color: #e68594 !important;
    font-size: 12px;
    font-weight: normal;
  }
  /* line 2005, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr td.product-thumbnail {
    width: 76px;
  }
  /* line 2010, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr.sub-total {
    border: none;
  }
  /* line 2013, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr.sub-total td {
    font-size: 14px;
    font-weight: bold;
  }
  /* line 2017, ../scss/breakpoints/_768up.scss */
  .mini-cart table tr.sub-total td.tar {
    text-align: right;
  }
  /* line 2025, ../scss/breakpoints/_768up.scss */
  .mini-cart .button {
    width: 48%;
    height: 40px !important;
    margin: 0;
    padding-right: 0 !important;
    padding-left: 0 !important;
    background-image: none !important;
    color: #fff !important;
    line-height: 40px !important;
    text-align: center !important;
  }
  /* line 2036, ../scss/breakpoints/_768up.scss */
  .mini-cart .button:hover {
    background-image: none !important;
  }

  /*********************
  CHECKBOX REPLACEMENT
  *********************/
  /* line 2046, ../scss/breakpoints/_768up.scss */
  label.checkbox-replace {
    padding: 0 0 0 30px;
    position: relative;
  }
  /* line 2050, ../scss/breakpoints/_768up.scss */
  label.checkbox-replace input {
    display: none !important;
  }
  /* line 2054, ../scss/breakpoints/_768up.scss */
  label.checkbox-replace:before {
    content: '' !important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -2px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
  }
  /* line 2071, ../scss/breakpoints/_768up.scss */
  label.checkbox-replace.ticked:after {
    content: '';
    width: 12px;
    height: 11px;
    position: absolute;
    top: 4px;
    left: 5px;
    z-index: 999;
    background: url(../images/tick.png) 0 0 no-repeat;
    -webkit-background-size: 12px;
    background-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 1, ../scss/breakpoints/_768down.scss */
  .wrap {
    padding: 0 14px !important;
  }

  /* line 5, ../scss/breakpoints/_768down.scss */
  form {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
  }

  /* line 10, ../scss/breakpoints/_768down.scss */
  input[type="text"],
  input[type="search"] {
    -webkit-appearance: none !important;
  }

  /* line 15, ../scss/breakpoints/_768down.scss */
  a.button.filter-switch {
    height: auto;
    margin: 0 0 20px;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    padding: 12px 0;
    color: #222222;
    font-size: 13px;
    line-height: 0.8;
    text-align: center;
  }
  /* line 27, ../scss/breakpoints/_768down.scss */
  a.button.filter-switch:hover {
    background: #fff;
    color: #222222;
  }

  /* line 35, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    display: none !important;
  }
  /* line 41, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar h2 {
    font-family: "quimby-mayoral", "Georgia", Cambria, Times New Roman, Times, serif;
    font-size: 26px;
    text-align: center;
  }
  /* line 47, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar h4 {
    margin: 0;
    position: relative;
    cursor: pointer;
  }
  /* line 52, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar h4:before {
    content: '';
    width: 10px;
    height: 7px;
    margin: -4px 0 0;
    position: absolute;
    top: 50%;
    right: 14px;
    background: url(../images/arrow-down-black.png) 0 0 no-repeat;
    -webkit-background-size: 10px;
    background-size: 10px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  /* line 70, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar h4.closed:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  /* line 78, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar .widget {
    clear: both;
  }
  /* line 82, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar form, .tax-product_cat .sidebar ul {
    margin: 10px 0;
  }
  /* line 86, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar form li, .tax-product_cat .sidebar ul li {
    width: 33%;
    margin-bottom: 10px;
    float: left;
  }
  /* line 93, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar form.woocommerce-ordering {
    display: block;
  }

  /* line 99, ../scss/breakpoints/_768down.scss */
  .tax-product_cat .sidebar-show {
    display: block !important;
  }

  /* line 103, ../scss/breakpoints/_768down.scss */
  .summary-mobile {
    padding: 15px 15px 0;
    text-align: center;
  }
  /* line 107, ../scss/breakpoints/_768down.scss */
  .summary-mobile h1 {
    font-size: 18px;
  }
  /* line 111, ../scss/breakpoints/_768down.scss */
  .summary-mobile .price {
    margin: 0;
    background: url(../images/separator.png) center center no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
  }
  /* line 117, ../scss/breakpoints/_768down.scss */
  .summary-mobile .price span {
    padding: 0 15px;
    background: #fff;
    color: #222222;
    font-size: 14px;
    font-weight: bold;
  }
  /* line 124, ../scss/breakpoints/_768down.scss */
  .summary-mobile .price span span {
    padding: 0;
  }
  /* line 130, ../scss/breakpoints/_768down.scss */
  .summary-mobile .sharing {
    width: 100%;
    float: none;
  }
  /* line 134, ../scss/breakpoints/_768down.scss */
  .summary-mobile .sharing #shares {
    float: none;
    display: inline;
  }
  /* line 138, ../scss/breakpoints/_768down.scss */
  .summary-mobile .sharing #shares div {
    display: inline-block;
  }
  /* line 146, ../scss/breakpoints/_768down.scss */
  .summary-mobile .woocommerce-product-rating .star-rating {
    margin: 0 auto;
    float: none;
  }
  /* line 152, ../scss/breakpoints/_768down.scss */
  .summary-mobile .sku_wrapper,
  .summary-mobile .separator {
    display: none;
  }

  /* line 160, ../scss/breakpoints/_768down.scss */
  .woocommerce-checkout #inner-content {
    padding: 0;
  }
  /* line 163, ../scss/breakpoints/_768down.scss */
  .woocommerce-checkout #inner-content .row,
  .woocommerce-checkout #inner-content .m-all {
    margin: 0 !important;
    padding: 0;
  }
  /* line 170, ../scss/breakpoints/_768down.scss */
  .woocommerce-checkout #main {
    margin-bottom: 30px;
  }

  /* line 175, ../scss/breakpoints/_768down.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap .woocommerce-checkout-review-order-table td.product-total {
    width: 20%;
  }

  /* line 179, ../scss/breakpoints/_768down.scss */
  .woocommerce .woocommerce-checkout .checkout-wrap .checkout-content {
    margin: 0 0 15px;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  /* line 189, ../scss/breakpoints/_768down.scss */
  .woocommerce-order-received #inner-content .m-all {
    margin: 0 !important;
    padding: 0 15px;
  }
  /* line 193, ../scss/breakpoints/_768down.scss */
  .woocommerce-order-received #inner-content .m-all .woocommerce-thankyou-order-details {
    margin: 0;
    padding: 0;
  }
  /* line 197, ../scss/breakpoints/_768down.scss */
  .woocommerce-order-received #inner-content .m-all .woocommerce-thankyou-order-details li {
    margin-bottom: 15px;
  }
  /* line 204, ../scss/breakpoints/_768down.scss */
  .woocommerce-order-received #inner-content .m-all .shop_table th, .woocommerce-order-received #inner-content .m-all .shop_table td {
    padding: 8px;
  }
  /* line 209, ../scss/breakpoints/_768down.scss */
  .woocommerce-order-received #inner-content .m-all .col-1, .woocommerce-order-received #inner-content .m-all .col-2 {
    margin-bottom: 15px;
  }

  /* line 217, ../scss/breakpoints/_768down.scss */
  .woocommerce .woocommerce-MyAccount-content table.shop_table th,
  .woocommerce .woocommerce-MyAccount-content table.shop_table td {
    padding: 5px;
    font-size: 12px;
  }

  /* line 224, ../scss/breakpoints/_768down.scss */
  #wpsp_front_popup_inner {
    top: 5%;
    height: 90%;
  }
  /* line 228, ../scss/breakpoints/_768down.scss */
  #wpsp_front_popup_inner #wpsp_front_popup_close_btn {
    top: 5%;
  }
  /* line 232, ../scss/breakpoints/_768down.scss */
  #wpsp_front_popup_inner input, #wpsp_front_popup_inner textarea, #wpsp_front_popup_inner button {
    margin: 0;
  }

  /* line 237, ../scss/breakpoints/_768down.scss */
  .woocommerce-error, .woocommerce-info, .woocommerce-message {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
  }
  /* line 241, ../scss/breakpoints/_768down.scss */
  .woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button {
    width: 100%;
    margin: 0 0 10px !important;
  }

  /* line 249, ../scss/breakpoints/_768down.scss */
  .cart_totals_wrap .button {
    width: 100%;
  }

  /* line 254, ../scss/breakpoints/_768down.scss */
  #wpsp_extension_form {
    height: auto;
  }

  /* line 258, ../scss/breakpoints/_768down.scss */
  #wpsp_front_popup_close_btn {
    top: 5%;
  }

  /* line 262, ../scss/breakpoints/_768down.scss */
  .cart-delivery {
    padding-top: 15px;
  }
  /* line 265, ../scss/breakpoints/_768down.scss */
  .cart-delivery .border {
    border: none;
  }
  /* line 268, ../scss/breakpoints/_768down.scss */
  .cart-delivery .border p {
    margin: 0;
    padding: 0 0 10px;
  }
  /* line 273, ../scss/breakpoints/_768down.scss */
  .cart-delivery .border img {
    margin: 0 auto 5px !important;
    display: block;
  }
  /* line 280, ../scss/breakpoints/_768down.scss */
  .cart-delivery .border .cart-delivery-help img {
    display: none;
  }

  /* line 287, ../scss/breakpoints/_768down.scss */
  .woocommerce .cart_totals_wrap {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  /* line 294, ../scss/breakpoints/_768down.scss */
  .product-quantity .qty-wrap .qty-inc,
  .product-quantity .qty-wrap .qty-dec {
    border: none;
  }

  /* line 300, ../scss/breakpoints/_768down.scss */
  .wrap.instagram {
    width: 100% !important;
  }

  /* line 304, ../scss/breakpoints/_768down.scss */
  .home-banner {
    font-size: 22px;
  }

  /* line 308, ../scss/breakpoints/_768down.scss */
  .sidebar .home-box.home-box-1 h3 {
    line-height: 20px;
  }
  /* line 311, ../scss/breakpoints/_768down.scss */
  .sidebar .home-box.home-box-1 h3 a {
    font-size: 22px;
  }

  /* line 318, ../scss/breakpoints/_768down.scss */
  .footer-top .d-1of3 {
    padding: 10px 15px 10px 10px;
  }
  /* line 322, ../scss/breakpoints/_768down.scss */
  .footer-top .social {
    margin-bottom: 15px;
  }
  /* line 326, ../scss/breakpoints/_768down.scss */
  .footer-top .newsletter-form {
    width: 65%;
  }
  /* line 330, ../scss/breakpoints/_768down.scss */
  .footer-top .newsletter-bubble {
    width: 35%;
  }

  /* line 335, ../scss/breakpoints/_768down.scss */
  .woocommerce ul.products li.product {
    width: 48%;
  }

  /* line 339, ../scss/breakpoints/_768down.scss */
  .woocommerce #content div.product div.images, .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images,
  .woocommerce #content div.product div.summary, .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    margin-top: 20px;
    float: left !important;
  }

  /* line 347, ../scss/breakpoints/_768down.scss */
  .woocommerce table.shop_table_responsive tbody th,
  .woocommerce table.shop_table_responsive thead,
  .woocommerce-page table.shop_table_responsive tbody th,
  .woocommerce-page table.shop_table_responsive thead {
    display: table-header-group;
  }

  /* line 354, ../scss/breakpoints/_768down.scss */
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
    display: table-row;
  }
  /* line 357, ../scss/breakpoints/_768down.scss */
  .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
    display: table-cell;
  }

  /* line 362, ../scss/breakpoints/_768down.scss */
  .woocommerce .cart_totals table.shop_table_responsive tbody th {
    display: none;
  }

  /* line 366, ../scss/breakpoints/_768down.scss */
  .woocommerce table.shop_table tr td.product-name a, table#tblFontEndTickets tr td.product-name a {
    font-size: 16px;
  }

  /* line 370, ../scss/breakpoints/_768down.scss */
  .woocommerce table.cart .product-thumbnail,
  .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
    display: table-cell;
  }
  /* line 374, ../scss/breakpoints/_768down.scss */
  .woocommerce table.cart .product-thumbnail:before,
  .woocommerce-page #content table.cart .product-thumbnail:before, .woocommerce-page table.cart .product-thumbnail:before {
    display: none;
  }

  /* line 379, ../scss/breakpoints/_768down.scss */
  .sidebar-horizontal {
    display: none;
  }

  /* line 383, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap {
    height: auto;
  }
  /* line 386, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap a.desktop {
    display: none !important;
  }
  /* line 390, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap a.mobile {
    display: block !important;
  }

  /* line 395, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap.d-2of3 .post-listing-content, .post-listing-wrap.news-height-half .post-listing-content,
  .post-listing-wrap.d-2of3 img, .post-listing-wrap.news-height-half img {
    width: 100% !important;
  }

  /* line 400, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap.d-2of3 .post-listing-content .post-listing-border, .post-listing-wrap.news-height-half .post-listing-content .post-listing-border,
  .post-listing-wrap.news-height-half {
    height: auto !important;
  }

  /* line 405, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap.d-2of3 .post-listing-content .post-listing-border,
  .post-listing-wrap.news-height-half .post-listing-content .post-listing-border {
    padding-top: 15px;
  }

  /* line 410, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap .post-listing .post-listing-content {
    padding: 10px !important;
  }

  /* line 414, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border {
    height: 200px !important;
  }

  /* line 418, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap .post-listing-content .post-listing-border .entry-content {
    display: none !important;
  }

  /* line 422, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border h2 {
    font-size: 30px !important;
    line-height: 1.4;
  }

  /* line 427, ../scss/breakpoints/_768down.scss */
  .post-listing-wrap .post-listing .post-listing-content .post-listing-border .entry-meta {
    font-size: 14px;
  }

  /* line 433, ../scss/breakpoints/_768down.scss */
  .instagallery-items button {
    width: 18px;
    height: 30px;
    position: absolute;
    top: 100px;
    z-index: 10;
    margin: 0;
    padding: 0;
    background: none;
    text-indent: -9999px;
    opacity: 1;
  }
  /* line 445, ../scss/breakpoints/_768down.scss */
  .instagallery-items button.slick-prev {
    left: 0;
    background: url(../images/arrow-left-grey.png) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 452, ../scss/breakpoints/_768down.scss */
  .instagallery-items button.slick-next {
    right: 0;
    background: url(../images/arrow-right-grey.png) 0 0 no-repeat;
    -webkit-background-size: 18px;
    background-size: 18px;
  }
  /* line 459, ../scss/breakpoints/_768down.scss */
  .instagallery-items button:hover {
    opacity: 0.5;
  }

  /* line 465, ../scss/breakpoints/_768down.scss */
  .account-login, .account-register {
    margin: 0 0 20px;
  }

  /* line 469, ../scss/breakpoints/_768down.scss */
  table#tblFontEndTickets tr th,
  table#tblFontEndTickets tr td {
    font-size: 10px;
  }

  /* line 474, ../scss/breakpoints/_768down.scss */
  .ht-track-order {
    display: none !important;
  }

  /* line 478, ../scss/breakpoints/_768down.scss */
  .instagram {
    padding: 0 !important;
  }

  /* line 482, ../scss/breakpoints/_768down.scss */
  .instagram-intro-wrap {
    width: 100% !important;
    margin-bottom: 15px;
  }
  /* line 486, ../scss/breakpoints/_768down.scss */
  .instagram-intro-wrap .instagram-intro .border {
    height: auto;
    padding-bottom: 15px;
  }

  /* line 492, ../scss/breakpoints/_768down.scss */
  .woocommerce.single-product span.onsale {
    top: 20px !important;
  }
}
@media only screen and (max-width: 700px) {
  /* line 1, ../scss/breakpoints/_700down.scss */
  .header .wrap {
    padding: 0 !important;
  }

  /* line 7, ../scss/breakpoints/_700down.scss */
  .home-features .last-col {
    padding: 0;
    position: relative;
  }
  /* line 11, ../scss/breakpoints/_700down.scss */
  .home-features .last-col .tf-height-1,
  .home-features .last-col .tf-height-2,
  .home-features .last-col .tf-height-3 {
    width: 50%;
    border-right: 10px solid #fff;
    border-left: 10px solid #fff;
  }
  /* line 19, ../scss/breakpoints/_700down.scss */
  .home-features .last-col .tf-height-2 {
    position: absolute;
    top: 0;
    right: 0;
  }

  /* line 29, ../scss/breakpoints/_700down.scss */
  .footer-top .newsletter-form {
    width: 100%;
  }
  /* line 33, ../scss/breakpoints/_700down.scss */
  .footer-top .newsletter-bubble {
    width: 100%;
  }

  /* line 39, ../scss/breakpoints/_700down.scss */
  .summary h1.product_title,
  .summary .price,
  .summary .sku_wrapper,
  .summary .separator,
  .summary .sharing,
  .summary .woocommerce-product-rating {
    display: none;
  }
  /* line 49, ../scss/breakpoints/_700down.scss */
  .summary .product-buy .price {
    display: block;
  }

  /* line 55, ../scss/breakpoints/_700down.scss */
  .cart-delivery {
    margin: 0 -14px;
  }

  /* line 59, ../scss/breakpoints/_700down.scss */
  .woocommerce table.shop_table_responsive tbody th,
  .woocommerce table.shop_table_responsive thead,
  .woocommerce-page table.shop_table_responsive tbody th,
  .woocommerce-page table.shop_table_responsive thead {
    display: none;
  }

  /* line 66, ../scss/breakpoints/_700down.scss */
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
    display: block;
  }
  /* line 69, ../scss/breakpoints/_700down.scss */
  .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
    display: block;
  }

  /* line 74, ../scss/breakpoints/_700down.scss */
  .woocommerce table.cart .product-thumbnail,
  .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
    display: none;
  }

  /* line 81, ../scss/breakpoints/_700down.scss */
  #sidebar1 .widget_nav_menu {
    display: none;
  }

  /* line 86, ../scss/breakpoints/_700down.scss */
  .wrap.instagram {
    padding: 0 !important;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1030up.scss */
  .wrap {
    width: 1040px;
  }

  /* line 20, ../scss/breakpoints/_1030up.scss */
  .header-toolbar .wrap a {
    font-size: 14px;
  }

  /* line 30, ../scss/breakpoints/_1030up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item {
    padding: 0 15px;
  }
  /* line 33, ../scss/breakpoints/_1030up.scss */
  #inner-header #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item a.mega-menu-link {
    font-size: 16px;
  }

  /* line 44, ../scss/breakpoints/_1030up.scss */
  .instagram .instagram-intro .border {
    padding: 25px 50px 0;
  }
  /* line 47, ../scss/breakpoints/_1030up.scss */
  .instagram .instagram-intro .border h3 {
    font-size: 28px;
  }

  /* line 55, ../scss/breakpoints/_1030up.scss */
  .woocommerce .cart-collaterals {
    width: 25%;
  }

  /* line 67, ../scss/breakpoints/_1030up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-green .widget-custom p,
  .sidebar.sidebar-horizontal .widget-horizontal-pink .widget-custom p,
  .sidebar.sidebar-horizontal .widget-horizontal-grey .widget-custom p {
    line-height: 3;
  }
  /* line 74, ../scss/breakpoints/_1030up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-green .widget-custom p {
    padding-left: 35px;
    background: url(../images/delivery-track.png) 0 center no-repeat;
    -webkit-background-size: 33px;
    background-size: 33px;
  }
  /* line 84, ../scss/breakpoints/_1030up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-pink .widget-custom p {
    padding-left: 35px;
    background: url(../images/tag.png) 5px center no-repeat;
    -webkit-background-size: 27px;
    background-size: 27px;
  }
  /* line 94, ../scss/breakpoints/_1030up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-grey .widget-custom p {
    padding-left: 45px;
    background: url(../images/heart-single-outline.png) 35px center no-repeat;
    -webkit-background-size: 35px;
    background-size: 35px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1240up.scss */
  .wrap {
    width: 1228px;
  }

  /* line 22, ../scss/breakpoints/_1240up.scss */
  .instagram .instagram-intro .border h3 {
    font-size: 36px;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 39, ../scss/breakpoints/_1240up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-green .widget-custom p {
    padding-left: 35px;
    background: url(../images/delivery-track.png) 25px center no-repeat;
    -webkit-background-size: 33px;
    background-size: 33px;
  }
  /* line 49, ../scss/breakpoints/_1240up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-pink .widget-custom p {
    padding-left: 35px;
    background: url(../images/tag.png) 45px center no-repeat;
    -webkit-background-size: 27px;
    background-size: 27px;
  }
  /* line 59, ../scss/breakpoints/_1240up.scss */
  .sidebar.sidebar-horizontal .widget-horizontal-grey .widget-custom p {
    padding-left: 45px;
    background: url(../images/heart-single-outline.png) 75px center no-repeat;
    -webkit-background-size: 35px;
    background-size: 35px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
