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

Stylesheet: Main Stylesheet

Calls every scss file in correct order.

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
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,500,500i,700,700i");
@import url("https://use.typekit.net/jhk7yez.css");
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, header, footer, section, article, nav, canvas, aside, figcaption, figure, hgroup, menuitem, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent; }

/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
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.
 */
[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.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  font-size: 62.5%; }

/**
 * Remove default margin.
 */
body {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5em; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
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.
 */
h1 {
  font-size: 2em;
  margin: 0; }

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

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: 700; }

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: none;
  -epub-hyphens: manual;
  hyphens: manual; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

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

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

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

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

small, .small {
  font-size: 75%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 10px 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

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

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: border-box; }

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

/**
 * Remove inner padding and border in Firefox 4+.
 */
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.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

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

/******************************************************************

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
*********************/
/*********************
FONT SIZES
*********************/
/*********************
PADDINGS
*********************/
/*********************
CONTAINER SIZES
*********************/
/******************************************************************

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.

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
::-moz-selection {
  background: #F2EBE8; }
::selection {
  background: #F2EBE8; }

/******************************************************************

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%;
*********************/
/******************************************************************

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? */
/*********************
PSEUDO
*********************/
/* @include pseudo; */
/*********************
CSS TRIANGLE
*********************/
/* @include css-triangle(black, up, 6px false); */
/******************************************************************

Stylesheet: Grid Stylesheet

Still using this pretty basic grid, but it's customized a bit to
feel more like Bootstrap.
Wrap grid columns in grid-skin wrappers.

******************************************************************/
.with-padding {
  padding: 0 10px; }

.with-padding-large {
  padding: 0 20px; }

.grid-skin {
  position: relative;
  margin: 0 -20px; }

.grid-skin-large {
  position: relative;
  margin: 0 -40px; }

/* Mobile Grid Styles */
@media (max-width: 767px) {
  .m-all {
    float: left;
    width: 100%; }
  .m-1of2 {
    float: left;
    width: 50%; }
  .m-1of3 {
    float: left;
    width: 33.33%; }
  .m-2of3 {
    float: left;
    width: 66.66%; }
  .m-1of4 {
    float: left;
    width: 25%; }
  .m-3of4 {
    float: left;
    width: 75%; } }

/* Large Mobile to Tablet Grid Styles */
@media (min-width: 481px) and (max-width: 767px) {
  .mt-all {
    float: left;
    width: 100%; }
  .mt-1of2 {
    float: left;
    width: 50%; }
  .mt-1of3 {
    float: left;
    width: 33.33%; }
  .mt-2of3 {
    float: left;
    width: 66.66%; }
  .mt-1of4 {
    float: left;
    width: 25%; }
  .mt-3of4 {
    float: left;
    width: 75%; }
  .mt-1of5 {
    float: left;
    width: 20%; }
  .mt-2of5 {
    float: left;
    width: 40%; }
  .mt-3of5 {
    float: left;
    width: 60%; }
  .mt-4of5 {
    float: left;
    width: 80%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    width: 100%; }
  .t-1of2 {
    float: left;
    width: 50%; }
  .t-1of3 {
    float: left;
    width: 33.33%; }
  .t-2of3 {
    float: left;
    width: 66.66%; }
  .t-1of4 {
    float: left;
    width: 25%; }
  .t-3of4 {
    float: left;
    width: 75%; }
  .t-1of5 {
    float: left;
    width: 20%; }
  .t-2of5 {
    float: left;
    width: 40%; }
  .t-3of5 {
    float: left;
    width: 60%; }
  .t-4of5 {
    float: left;
    width: 80%; }
  .t-1of6 {
    float: left;
    width: 16.6666666667%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    width: 100%; }
  .d-1of2 {
    float: left;
    width: 50%; }
  .d-1of3 {
    float: left;
    width: 33.33%; }
  .d-2of3 {
    float: left;
    width: 66.66%; }
  .d-1of4 {
    float: left;
    width: 25%; }
  .d-3of4 {
    float: left;
    width: 75%; }
  .d-1of5 {
    float: left;
    width: 20%; }
  .d-2of5 {
    float: left;
    width: 40%; }
  .d-3of5 {
    float: left;
    width: 60%; }
  .d-4of5 {
    float: left;
    width: 80%; }
  .d-1of6 {
    float: left;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    width: 12.5%; }
  .d-1of9 {
    float: left;
    width: 11.1111111111%; }
  .d-1of10 {
    float: left;
    width: 10%; }
  .d-1of11 {
    float: left;
    width: 9.09090909091%; }
  .d-1of12 {
    float: left;
    width: 8.33%; } }

/*********************
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.
*********************/
/******************************************************************

Stylesheet: Wordpress Header

******************************************************************/
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed; } }

@media only screen and (max-width: 782px) {
  .admin-bar header.header {
    top: 46px; }
  .logged-in.admin-bar .mobile-nav,
  .logged-in.admin-bar .sp-mini-cart {
    top: 126px;
    height: calc(100vh - 126px); } }

@media only screen and (min-width: 783px) {
  .admin-bar header.header {
    top: 32px; }
  .logged-in.admin-bar .mobile-nav,
  .logged-in.admin-bar .sp-mini-cart {
    top: 112px;
    height: calc(100vh - 112px); } }

@media only screen and (min-width: 1030px) {
  .admin-bar header.header {
    top: 0; }
  .logged-in.admin-bar .mobile-nav,
  .logged-in.admin-bar .sp-mini-cart {
    top: 126px;
    height: calc(100vh - 126px); } }

/******************************************************************

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.

******************************************************************/
/*********************
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

*********************/
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button, .facets .facetwp-slider-reset, .btn-small, .btn-black, .btn-green, .btn {
  display: inline-block;
  position: relative;
  font-family: "sofia-pro", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4em;
  font-weight: normal;
  padding: 12px 22px;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  text-align: center;
  -webkit-appearance: none;
  box-shadow: 0 2px 6px -3px rgba(0, 0, 0, 0.2);
  transition: background-color 0.14s ease-in-out; }
  .woocommerce .button:hover, .facets .facetwp-slider-reset:hover, .btn-small:hover, .btn-black:hover, .btn-green:hover, .btn:hover, .woocommerce .button:focus, .facets .facetwp-slider-reset:focus, .btn-small:focus, .btn-black:focus, .btn-green:focus, .btn:focus {
    background: black;
    color: #fff;
    text-decoration: none;
    outline: none; }
  .woocommerce .button:active, .facets .facetwp-slider-reset:active, .btn-small:active, .btn-black:active, .btn-green:active, .btn: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.
*/
.btn-green {
  background: #009648;
  color: #fff; }
  .btn-green:hover, .btn-green:focus {
    background: #006330;
    color: #fff; }

.btn-black {
  background: #000;
  border-color: #000;
  color: #fff; }
  .btn-black:hover, .btn-black:focus {
    background: #000;
    color: #fff; }

.btn-small {
  font-size: 1.4rem;
  padding: 7px 10px 6px; }

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: black;
  color: #fff; }

.woocommerce .button.checkout, .woocommerce .button.woocommerce-Button,
.woocommerce a.button.checkout,
.woocommerce a.button.woocommerce-Button,
.woocommerce button.button.checkout,
.woocommerce button.button.woocommerce-Button,
.woocommerce button.button.checkout,
.woocommerce button.button.woocommerce-Button,
.woocommerce input.button.checkout,
.woocommerce input.button.woocommerce-Button {
  background: #000;
  color: #fff; }
  .woocommerce .button.checkout:hover, .woocommerce .button.checkout:focus, .woocommerce .button.woocommerce-Button:hover, .woocommerce .button.woocommerce-Button:focus,
  .woocommerce a.button.checkout:hover,
  .woocommerce a.button.checkout:focus,
  .woocommerce a.button.woocommerce-Button:hover,
  .woocommerce a.button.woocommerce-Button:focus,
  .woocommerce button.button.checkout:hover,
  .woocommerce button.button.checkout:focus,
  .woocommerce button.button.woocommerce-Button:hover,
  .woocommerce button.button.woocommerce-Button:focus,
  .woocommerce button.button.checkout:hover,
  .woocommerce button.button.checkout:focus,
  .woocommerce button.button.woocommerce-Button:hover,
  .woocommerce button.button.woocommerce-Button:focus,
  .woocommerce input.button.checkout:hover,
  .woocommerce input.button.checkout:focus,
  .woocommerce input.button.woocommerce-Button:hover,
  .woocommerce input.button.woocommerce-Button:focus {
    background: black;
    color: #fff; }

.woocommerce .button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #009648; }
  .woocommerce .button.alt:hover, .woocommerce .button.alt:focus,
  .woocommerce a.button.alt:hover,
  .woocommerce a.button.alt:focus,
  .woocommerce button.button.alt:hover,
  .woocommerce button.button.alt:focus,
  .woocommerce button.button.alt:hover,
  .woocommerce button.button.alt:focus,
  .woocommerce input.button.alt:hover,
  .woocommerce input.button.alt:focus {
    background: #006330; }

.woocommerce .button.disabled, .woocommerce .button:disabled, .woocommerce .button.disabled:disabled,
.woocommerce .button .disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button.disabled:disabled,
.woocommerce a.button .disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button.disabled:disabled,
.woocommerce button.button .disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button.disabled:disabled,
.woocommerce button.button .disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button.disabled:disabled,
.woocommerce input.button .disabled[disabled] {
  padding: 12px 14px !important;
  background-color: #009648 !important; }

.woocommerce .button.single_add_to_cart_button,
.woocommerce a.button.single_add_to_cart_button,
.woocommerce button.button.single_add_to_cart_button,
.woocommerce button.button.single_add_to_cart_button,
.woocommerce input.button.single_add_to_cart_button {
  min-width: 165px; }

.woocommerce .button.vipps-express-checkout,
.woocommerce a.button.vipps-express-checkout,
.woocommerce button.button.vipps-express-checkout,
.woocommerce button.button.vipps-express-checkout,
.woocommerce input.button.vipps-express-checkout {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  line-height: 0; }
  .woocommerce .button.vipps-express-checkout img,
  .woocommerce a.button.vipps-express-checkout img,
  .woocommerce button.button.vipps-express-checkout img,
  .woocommerce button.button.vipps-express-checkout img,
  .woocommerce input.button.vipps-express-checkout img {
    margin: 0;
    width: 100%;
    max-width: 240px; }

/******************************************************************

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.

******************************************************************/
/*********************
INPUTS
*********************/
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: auto;
  font-family: "sofia-pro", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4em;
  padding: 7px 10px 6px;
  border-radius: 0;
  color: #000;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #F2EBE8;
  width: 100%;
  max-width: 200px;
  background-color: #f1f1f1;
  transition: background-color 0.24s ease-in-out; }
  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: #e2e2e2;
    box-shadow: 0 0 0 0 #000;
    outline: none;
    color: #000;
    border: 1px solid #000; }
    input[type="text"]:focus::-webkit-input-placeholder, input[type="text"]:active::-webkit-input-placeholder, input[type="password"]:focus::-webkit-input-placeholder, input[type="password"]:active::-webkit-input-placeholder, input[type="datetime"]:focus::-webkit-input-placeholder, input[type="datetime"]:active::-webkit-input-placeholder, input[type="datetime-local"]:focus::-webkit-input-placeholder, input[type="datetime-local"]:active::-webkit-input-placeholder, input[type="date"]:focus::-webkit-input-placeholder, input[type="date"]:active::-webkit-input-placeholder, input[type="month"]:focus::-webkit-input-placeholder, input[type="month"]:active::-webkit-input-placeholder, input[type="time"]:focus::-webkit-input-placeholder, input[type="time"]:active::-webkit-input-placeholder, input[type="week"]:focus::-webkit-input-placeholder, input[type="week"]:active::-webkit-input-placeholder, input[type="number"]:focus::-webkit-input-placeholder, input[type="number"]:active::-webkit-input-placeholder, input[type="email"]:focus::-webkit-input-placeholder, input[type="email"]:active::-webkit-input-placeholder, input[type="url"]:focus::-webkit-input-placeholder, input[type="url"]:active::-webkit-input-placeholder, input[type="search"]:focus::-webkit-input-placeholder, input[type="search"]:active::-webkit-input-placeholder, input[type="tel"]:focus::-webkit-input-placeholder, input[type="tel"]:active::-webkit-input-placeholder, input[type="color"]:focus::-webkit-input-placeholder, input[type="color"]:active::-webkit-input-placeholder, select:focus::-webkit-input-placeholder, select:active::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, textarea:active::-webkit-input-placeholder, .field:focus::-webkit-input-placeholder, .field:active::-webkit-input-placeholder {
      color: #000; }
    input[type="text"]:focus::-moz-placeholder, input[type="text"]:active::-moz-placeholder, input[type="password"]:focus::-moz-placeholder, input[type="password"]:active::-moz-placeholder, input[type="datetime"]:focus::-moz-placeholder, input[type="datetime"]:active::-moz-placeholder, input[type="datetime-local"]:focus::-moz-placeholder, input[type="datetime-local"]:active::-moz-placeholder, input[type="date"]:focus::-moz-placeholder, input[type="date"]:active::-moz-placeholder, input[type="month"]:focus::-moz-placeholder, input[type="month"]:active::-moz-placeholder, input[type="time"]:focus::-moz-placeholder, input[type="time"]:active::-moz-placeholder, input[type="week"]:focus::-moz-placeholder, input[type="week"]:active::-moz-placeholder, input[type="number"]:focus::-moz-placeholder, input[type="number"]:active::-moz-placeholder, input[type="email"]:focus::-moz-placeholder, input[type="email"]:active::-moz-placeholder, input[type="url"]:focus::-moz-placeholder, input[type="url"]:active::-moz-placeholder, input[type="search"]:focus::-moz-placeholder, input[type="search"]:active::-moz-placeholder, input[type="tel"]:focus::-moz-placeholder, input[type="tel"]:active::-moz-placeholder, input[type="color"]:focus::-moz-placeholder, input[type="color"]:active::-moz-placeholder, select:focus::-moz-placeholder, select:active::-moz-placeholder, textarea:focus::-moz-placeholder, textarea:active::-moz-placeholder, .field:focus::-moz-placeholder, .field:active::-moz-placeholder {
      color: #000; }
    input[type="text"]:focus::placeholder, input[type="text"]:active::placeholder,
    input[type="password"]:focus::placeholder,
    input[type="password"]:active::placeholder,
    input[type="datetime"]:focus::placeholder,
    input[type="datetime"]:active::placeholder,
    input[type="datetime-local"]:focus::placeholder,
    input[type="datetime-local"]:active::placeholder,
    input[type="date"]:focus::placeholder,
    input[type="date"]:active::placeholder,
    input[type="month"]:focus::placeholder,
    input[type="month"]:active::placeholder,
    input[type="time"]:focus::placeholder,
    input[type="time"]:active::placeholder,
    input[type="week"]:focus::placeholder,
    input[type="week"]:active::placeholder,
    input[type="number"]:focus::placeholder,
    input[type="number"]:active::placeholder,
    input[type="email"]:focus::placeholder,
    input[type="email"]:active::placeholder,
    input[type="url"]:focus::placeholder,
    input[type="url"]:active::placeholder,
    input[type="search"]:focus::placeholder,
    input[type="search"]:active::placeholder,
    input[type="tel"]:focus::placeholder,
    input[type="tel"]:active::placeholder,
    input[type="color"]:focus::placeholder,
    input[type="color"]:active::placeholder,
    select:focus::placeholder,
    select:active::placeholder,
    textarea:focus::placeholder,
    textarea:active::placeholder,
    .field:focus::placeholder,
    .field:active::placeholder {
      color: #000; }
  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 {
    background-color: #e31800;
    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: #e31800; }
  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 {
    background-color: #009648;
    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: #009648; }
  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;
    background-color: #cfcfcf;
    opacity: 0.6; }
    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: #bdbdbd; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 12px center;
  padding: 7px 40px 6px 10px;
  max-width: 300px; }

#searchform {
  width: 100%; }
  #searchform > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative; }
  #searchform input#s {
    -webkit-appearance: none;
    /* 1 */
    -moz-appearance: none;
    padding: 3px calc(37px + 12px) 1px 0;
    border-radius: 0;
    line-height: 1.8em;
    width: 100%;
    color: #000;
    border-radius: 60px;
    padding: 5px 10px; }
  #searchform button#searchsubmit {
    -webkit-appearance: none;
    /* 1 */
    -moz-appearance: none;
    outline: none;
    text-align: center;
    color: #fff;
    line-height: 1em;
    border: 1px solid #F2EBE8;
    border-left: none;
    position: absolute;
    width: 21px;
    padding: 0;
    border-radius: 0;
    border-color: transparent;
    background: transparent;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    #searchform button#searchsubmit img {
      width: 20px;
      height: auto;
      position: relative; }
    #searchform button#searchsubmit:hover, #searchform button#searchsubmit:focus {
      background: #e0cfc7; }

.woocommerce div.product form.cart .variations select {
  max-width: 228px;
  min-width: 200px; }

/*********************
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.
*********************/
/******************************************************************

Stylesheet: Base Mobile Stylesheet

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "sofia-pro", Helvetica, Arial, sans-serif;
  font-size: 100%;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden; }
  body.nav-active, body.sp-cart-active {
    overflow: hidden; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px; }

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out; }
  .background-overlay.nav-active, .background-overlay.sp-cart-active {
    cursor: url(../images/cursor-cross.png), auto;
    cursor: -webkit-image-set(url(../images/cursor-cross.png) 1x, url(../images/cursor-cross-hi.png) 2x), auto;
    opacity: 1;
    pointer-events: all; }

.large-mobile-up {
  display: none; }

/*********************
LINK STYLES
*********************/
a {
  color: #000;
  /* on hover */ }
  a:hover {
    color: black; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
  text-rendering: optimizelegibility;
  font-weight: 400;
  line-height: 1.2em; }
  .h1 a,
  .h2 a,
  .h3 a,
  .h4 a,
  .h5 a,
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a {
    text-decoration: none; }
  .h1 strong,
  .h2 strong,
  .h3 strong,
  .h4 strong,
  .h5 strong,
  h1 strong,
  h2 strong,
  h3 strong,
  h4 strong,
  h5 strong {
    font-weight: 700; }

.h1,
h1 {
  font-size: 4.2rem; }

.h2,
h2 {
  font-size: 3.4rem; }

.h3,
h3 {
  font-size: 2.3rem; }

.h4,
h4 {
  font-size: 1.6rem; }

.h5,
h5 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px; }

/*********************
HEADER - STORE INFO
*********************/
.store-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #D8232A;
  padding: 5px 0; }
  .store-info span {
    margin: 0 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff; }

/*********************
HEADER STYLES
*********************/
#scrolled-header {
  display: none; }

.store-info {
  display: none; }

.header {
  position: absolute;
  background: #D8232A;
  padding: 10px 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; }
  .header #right-nav {
    display: none; }
  .header #inner-header {
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative; }

.custom-logo-link {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 150px;
  line-height: 0; }
  .custom-logo-link .custom-logo {
    width: 100%;
    height: auto;
    line-height: 1; }
  .footer .custom-logo-link {
    position: relative;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin: 40px 0 0; }

#nav-toggle {
  margin-right: auto;
  width: 28px;
  height: 19px;
  cursor: pointer; }
  #nav-toggle .hamburger-menu,
  #nav-toggle .hamburger-menu:after,
  #nav-toggle .hamburger-menu:before {
    width: 28px;
    height: 3px; }
  #nav-toggle .hamburger-menu {
    position: relative;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    background: #fff;
    transition: all 0 300ms; }
    #nav-toggle .hamburger-menu:before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 8px;
      background: #fff;
      transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1); }
    #nav-toggle .hamburger-menu:after {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      background: #fff;
      transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1); }
  #nav-toggle.nav-active .hamburger-menu {
    background: rgba(0, 0, 0, 0); }
    #nav-toggle.nav-active .hamburger-menu:before {
      bottom: 0;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1); }
    #nav-toggle.nav-active .hamburger-menu:after {
      top: 0;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
      transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1); }

a.cart-toggle {
  padding: 0;
  display: inline-block;
  width: 24px;
  height: 32px;
  position: relative;
  top: 1px; }
  a.cart-toggle img.cart-icon {
    width: 24px;
    height: auto; }
  a.cart-toggle .number-of-products {
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 15px;
    height: 15px;
    font-size: 1.1rem;
    line-height: 15px;
    text-align: center;
    background: #D8232A;
    color: #fff;
    box-shadow: 0 0 0 2px white;
    border-radius: 50%; }
  a.cart-toggle:focus, a.cart-toggle:hover {
    color: #000; }
  a.cart-toggle:focus {
    outline: none; }

/*********************
Top Bar
*********************/
.top_bar {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 7px 20px;
  text-align: center;
  width: 100%;
  background: #000; }
  .top_bar a {
    color: #fff;
    text-decoration: none; }
    .top_bar a:focus, .top_bar a:hover {
      text-decoration: underline; }

/*********************
NAVIGATION STYLES
*********************/
.header {
  z-index: 999; }
  .header #searchform {
    display: none; }
  .header nav {
    display: none; }

.mobile-nav {
  position: fixed;
  height: calc(100vh - 80px);
  top: 80px;
  left: 0;
  width: 300px;
  background: #D8232A;
  padding: 0 20px 80px;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  z-index: 12;
  pointer-events: none;
  overflow: auto;
  transition: all 0.2s ease-in-out; }
  .mobile-nav.nav-active {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    pointer-events: all; }
  .mobile-nav #searchform {
    display: block;
    margin-bottom: 20px; }
    .mobile-nav #searchform input#s {
      padding: 10px calc(37px + 12px) 10px 15px;
      width: 100%;
      max-width: none; }
    .mobile-nav #searchform button {
      right: 16px !important; }
  .mobile-nav h4 {
    font-size: 2.3rem;
    font-weight: 400;
    margin: 40px 0 10px; }
  .mobile-nav .extra-nav-info {
    padding: 20px 0;
    border-top: 2px solid #f1f1f1; }
  .mobile-nav .my-account {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    text-decoration: none;
    color: #fff;
    position: relative;
    margin-bottom: 0; }
    .mobile-nav .my-account span {
      margin-right: 10px;
      margin-top: 1px; }
    .mobile-nav .my-account img {
      width: 27px; }
    .mobile-nav .my-account:after {
      content: none; }
  .mobile-nav .main-cat-menu-nav {
    margin-top: 20px; }
    .mobile-nav .main-cat-menu-nav ul li a {
      color: #fff; }

.mobile-menu,
.my-account {
  margin-bottom: 20px; }
  .mobile-menu:after,
  .my-account:after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #f1f1f1;
    margin-top: 20px; }

.nav {
  margin: 10px 0 20px; }
  .nav > li {
    display: block;
    margin: 10px 0; }
    .nav > li > a {
      display: inline-block;
      padding: 8px 0;
      color: #000;
      font-size: 1.8rem;
      text-decoration: none;
      text-align: center;
      position: relative; }
      .nav > li > a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: #fff;
        transition: width 0.2s ease-in-out; }
      .nav > li > a.active {
        color: #fff; }
        .nav > li > a.active:after {
          width: 100%; }
    .nav > li ul.sub-menu {
      display: none; }
  .nav.mobile-menu, .nav.primary-menu {
    display: none; }
    .nav.mobile-menu.active, .nav.primary-menu.active {
      display: block; }

/*********************
SP WOOCOMMERCE MINI CART
*********************/
.sp-mini-cart {
  position: fixed;
  height: calc(100vh - 80px);
  top: 80px;
  right: 0;
  width: 300px;
  background: #fff;
  padding: 0 0 80px;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  z-index: 12;
  pointer-events: none;
  overflow-y: auto;
  transition: all 0.2s ease-in-out; }
  .sp-mini-cart.sp-cart-active {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    pointer-events: all; }
  .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
    background: #fff; }
    .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:nth-of-type(even) {
      background: #f1f1f1; }
      .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:nth-of-type(even) .quantity,
      .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item:nth-of-type(even) dl.variation {
        border-top: 1px solid #e4e4e4; }
    .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a {
      display: inline-block; }
      .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove {
        background: #D8232A;
        color: #fff !important;
        margin-right: auto;
        width: 24px;
        height: 24px;
        font-size: 1.8rem;
        line-height: 24px; }
        .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove:focus, .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a.remove:hover {
          background: #ac1c21; }
      .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item a:nth-of-type(2) {
        width: calc(100% - 38px);
        color: #000;
        text-decoration: none;
        line-height: 48px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
    .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item dl {
      width: 50%;
      padding-left: 0;
      border-left: 0; }
      .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item dl dd {
        padding: 0;
        margin: 0; }
    .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item .quantity {
      display: inline-block;
      width: 50%;
      text-align: right; }
    .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item .quantity,
    .sp-mini-cart ul.woocommerce-mini-cart li.woocommerce-mini-cart-item dl.variation {
      width: 100%;
      margin-top: 10px;
      border-top: 1px solid #f1f1f1;
      padding-top: 10px; }
  .sp-mini-cart .total {
    padding: 0 20px;
    margin: 20px 0;
    font-size: 2.3rem;
    color: #000; }
    .sp-mini-cart .total .amount {
      text-decoration: underline;
      letter-spacing: 1px; }
      .sp-mini-cart .total .amount .woocommerce-price-suffix {
        display: none; }
        .sp-user-exclude-tax .sp-mini-cart .total .amount .woocommerce-price-suffix {
          display: inline-block; }
  .sp-mini-cart .buttons {
    padding: 0 20px; }
    .sp-mini-cart .buttons .button {
      display: block;
      width: 100%;
      margin-bottom: 10px; }
      .sp-mini-cart .buttons .button:last-of-type {
        margin-bottom: 0; }
  .sp-mini-cart .woocommerce-mini-cart__empty-message {
    padding: 40px;
    text-align: center; }
    .sp-mini-cart .woocommerce-mini-cart__empty-message img.duck-walking {
      max-width: 140px;
      display: inline-block; }
    .sp-mini-cart .woocommerce-mini-cart__empty-message > * {
      margin-bottom: 20px;
      display: block; }
      .sp-mini-cart .woocommerce-mini-cart__empty-message > *:last-child {
        margin-bottom: 0; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  padding: 0;
  margin-top: 49px; }
  .error404 #content, .page-template-default #content, .page-template-page-sitemap #content {
    padding: 40px 0; }
  .page-hide-title #content {
    padding-top: 0; }
  .search #content, .woocommerce #content, .woocommerce.archive #content {
    border-top: 1px solid #f1f1f1; }
  .search #content {
    padding-top: 20px; }

.page-title,
.single-title {
  margin: 0 0 20px; }
  .page-template-page-builder .page-title, .page-template-page-builder .single-title {
    margin: 20px 0; }

/* post meta */
.byline {
  color: #F2EBE8;
  font-style: italic;
  margin: 0; }

/* entry content */
.entry-content > *,
.text > * {
  margin-bottom: 20px; }
  .entry-content > *:last-child,
  .text > *:last-child {
    margin-bottom: 0; }

.entry-content ol,
.entry-content ul,
.text ol,
.text ul {
  margin-top: 0;
  padding: 0; }
  .entry-content ol li,
  .entry-content ul li,
  .text ol li,
  .text ul li {
    list-style: initial;
    margin-left: 20px; }
    .entry-content ol li a,
    .entry-content ul li a,
    .text ol li a,
    .text ul li a {
      display: inline; }

.entry-content ol li,
.text ol li {
  list-style-type: decimal; }

.entry-content table,
.text table {
  width: 100%;
  border: 1px solid #f1f1f1 !important; }
  .entry-content table caption,
  .text table caption {
    margin: 0 0 7px;
    font-size: 0.75em;
    color: #F2EBE8;
    text-transform: uppercase;
    letter-spacing: 1px; }

.entry-content tr,
.text tr {
  border-bottom: 1px solid #f1f1f1; }

.entry-content td,
.text td {
  padding: 0 8px !important !important;
  border-right: 1px solid #f1f1f1; }
  .entry-content td:last-child,
  .text td:last-child {
    border-right: 0; }

.entry-content th:last-child,
.text th:last-child {
  border-right: 0; }

.entry-content blockquote,
.text blockquote {
  padding: 0 0 0 20px;
  border-left: 3px solid #000;
  font-style: italic;
  color: #F2EBE8; }
  .entry-content blockquote > *,
  .text blockquote > * {
    margin-bottom: 20px; }
  .entry-content blockquote:last-child,
  .text blockquote:last-child {
    margin-bottom: 0; }

.entry-content dd,
.text dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 5px; }

.entry-content img,
.text img {
  margin: 0 0 20px;
  max-width: 100%;
  height: auto; }

.entry-content .wc-block-grid__product,
.text .wc-block-grid__product {
  margin: 0;
  list-style: none; }

.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
.text .size-auto,
.text .size-full,
.text .size-large,
.text .size-medium,
.text .size-thumbnail {
  max-width: 100%;
  height: auto; }

.entry-content .alignfull,
.text .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  max-width: 1000%; }

.entry-content .alignwide,
.text .alignwide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
  width: auto;
  max-width: 1000%; }

.entry-content .alignfull img,
.entry-content .alignwide img,
.text .alignfull img,
.text .alignwide img {
  display: block;
  margin: 0 auto; }

.has-sidebar .entry-content .alignfull, .has-sidebar .entry-content .alignwide, .has-sidebar .text .alignfull, .has-sidebar .text .alignwide {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%; }

.entry-content pre,
.text pre {
  background: #000;
  color: #f1f1f1;
  font-size: 0.9em;
  padding: 5px;
  margin: 0 0 20px;
  border-radius: 0; }

/* end .entry-content */
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  justify-content: flex-start;
  align-items: center; }
  .gallery .gallery-item {
    padding: 0 10px; }
    .gallery .gallery-item a {
      display: block;
      line-height: 0; }
    .gallery .gallery-item img {
      margin: 0; }
  .gallery.gallery-columns-2 .gallery-item {
    width: 50%; }
  .gallery.gallery-columns-3 .gallery-item {
    width: 33.333333%; }
  .gallery.gallery-columns-4 .gallery-item {
    width: 25%; }
  .gallery.gallery-columns-5 .gallery-item {
    width: 20%; }
  .gallery.gallery-columns-6 .gallery-item {
    width: 16.666666667%; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
.tags {
  margin: 0; }

.video-container {
  position: relative;
  padding-bottom: 44.25%;
  /* 16:9 */
  height: 0;
  width: 100%; }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.sitemap-block h2 {
  margin-bottom: 20px; }

.sitemap-block ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2; }
  .sitemap-block ul li a {
    color: #000;
    text-decoration: none; }
    .sitemap-block ul li a:hover {
      text-decoration: underline; }

/*********************
WOOCOMMERCE STYLES
*********************/
.woocommerce span.onsale {
  top: auto;
  bottom: -10px;
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  border-radius: 0;
  background: #D8232A;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.5em;
  padding: 2px 8px;
  min-height: 1px;
  min-width: 1px;
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.1); }

.variations_button {
  zoom: 1;
  margin-top: 20px; }
  .variations_button:after, .variations_button:before {
    content: "";
    display: table; }
  .variations_button:after {
    clear: both; }

.woocommerce-breadcrumb {
  display: block;
  color: #000 !important;
  font-size: 1.4rem !important;
  line-height: 1.7em;
  word-spacing: 2px;
  margin: 10px 0 10px !important !important;
  padding: 20px 0 !important !important;
  border-bottom: 1px solid #f1f1f1;
  font-weight: bold; }
  .woocommerce-breadcrumb a {
    color: #000 !important;
    text-decoration: none;
    font-weight: 400; }
    .woocommerce-breadcrumb a:focus, .woocommerce-breadcrumb a:hover {
      text-decoration: underline; }
  .woocommerce.archive .woocommerce-breadcrumb {
    clear: both;
    text-align: center;
    display: block;
    float: none;
    margin: 0 0 20px !important !important; }
  .woocommerce-breadcrumb .seperator {
    width: 6px;
    position: relative;
    top: 1px;
    margin: 0 6px; }

.woocommerce-notices-wrapper {
  width: 100%; }

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 0 0 0;
  padding: 20px 20px 20px 60px !important !important; }
  .woocommerce-error a,
  .woocommerce-info a,
  .woocommerce-message a {
    order: 3; }
  .woocommerce-error:before,
  .woocommerce-info:before,
  .woocommerce-message:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.woocommerce-message {
  border-top-color: #009648; }
  .woocommerce-message:before {
    color: #009648; }

.woocommerce-error {
  border-top-color: #D8232A; }
  .woocommerce-error:before {
    color: #D8232A; }

.woocommerce-info {
  border-top-color: #000; }
  .woocommerce-info:before {
    color: #000; }

.vipps-info {
  border-color: #fe5b24;
  background: #fff !important;
  justify-content: flex-start; }
  .vipps-info a {
    order: initial; }
    .vipps-info a img {
      margin: 0 4px;
      height: 2ex;
      -webkit-filter: brightness(0);
              filter: brightness(0); }
  .vipps-info:before {
    color: #fe5b24; }

.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 1px solid #F2EBE8;
  padding: 0 20px;
  border-radius: 0; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0; }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
      list-style: none;
      margin: 0;
      width: 100%;
      font-size: 1.5rem; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        display: block;
        display: inline-block;
        color: rgba(0, 0, 0, 0.7);
        text-decoration: none;
        position: relative;
        font-size: 1.4rem;
        width: 100%;
        letter-spacing: 0.5px;
        padding: 17px 0; }
        .woocommerce-account .woocommerce-MyAccount-navigation ul li a:after {
          content: '';
          display: inline-block;
          width: 25px;
          height: 25px;
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
          right: 0;
          opacity: 0.4;
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
        color: #000;
        font-weight: 600; }
        .woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:after {
          opacity: 1; }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:after {
        background-image: url("../images/dashboard.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:after {
        background-image: url("../images/shipping-box.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:after {
        background-image: url("../images/downloads.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:after {
        background-image: url("../images/address.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:after {
        background-image: url("../images/account.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:after {
        background-image: url("../images/log-out.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--tinv_wishlist a:after {
        background-image: url("../images/favorite-heart.svg"); }
      .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--pre-orders a:after {
        background-image: url("../images/preorder.svg"); }

.woocommerce-account .woocommerce-MyAccount-content > * {
  margin-bottom: 20px; }
  .woocommerce-account .woocommerce-MyAccount-content > *:last-child {
    margin-bottom: 0; }

.woocommerce .woocommerce-ordering {
  margin: 0 auto 20px; }
  .woocommerce .woocommerce-ordering select {
    margin: 0; }

.woocommerce form > * {
  margin-bottom: 10px; }
  .woocommerce form > *:last-child {
    margin-bottom: 0; }

.woocommerce form.login, .woocommerce form.register {
  border: 1px solid #F2EBE8;
  border-radius: 0 !important; }

.woocommerce form .form-row {
  padding: 5px 0; }

.woocommerce address,
.woocommerce fieldset {
  border: 1px solid #F2EBE8;
  padding: 20px;
  margin: 10px 0;
  display: block;
  border-radius: 0; }

.woocommerce table.variations tr {
  display: flex;
  flex-direction: column; }

.woocommerce table.variations td.label {
  margin-bottom: 5px; }

.woocommerce table.shop_table {
  border: 1px solid #f1f1f1;
  border-radius: 0; }
  .woocommerce table.shop_table thead tr {
    background: #f1f1f1;
    border: none !important; }
    .woocommerce table.shop_table thead tr th {
      border: none; }
  .woocommerce table.shop_table tbody tr {
    border: none !important; }
    .woocommerce table.shop_table tbody tr th {
      border: none !important; }
  .woocommerce table.shop_table tbody td {
    border: none !important;
    padding: 6px 12px !important !important; }
    .woocommerce table.shop_table tbody td.product-thumbnail {
      width: 80px; }
      .woocommerce table.shop_table tbody td.product-thumbnail a {
        display: block;
        width: 100%;
        line-height: 0; }
      .woocommerce table.shop_table tbody td.product-thumbnail img {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important !important; }

.woocommerce table.cart input#coupon_code {
  padding: 12px 14px !important !important;
  background: #fff; }

.woocommerce table.cart input.button {
  padding: 13px 14px 14px !important !important;
  background: #000;
  color: #fff;
  border: none; }

#pwgc-redeem-gift-card-form #pwgc-redeem-gift-card-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap; }
  #pwgc-redeem-gift-card-form #pwgc-redeem-gift-card-container label {
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px; }

#pwgc-redeem-gift-card-form #pwgc-redeem-error {
  width: 100%;
  margin-bottom: 10px; }

#pwgc-redeem-gift-card-form #pwgc-redeem-gift-card-number {
  margin-right: 0;
  padding: 12px 14px !important;
  background: #fff; }

#pwgc-redeem-gift-card-form #pwgc-redeem-button {
  max-width: 50%; }

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #f1f1f1;
  border-radius: 0; }
  #add_payment_method #payment ul.payment_methods,
  .woocommerce-cart #payment ul.payment_methods,
  .woocommerce-checkout #payment ul.payment_methods {
    border-color: #e4e4e4; }
  #add_payment_method #payment .place-order,
  .woocommerce-cart #payment .place-order,
  .woocommerce-checkout #payment .place-order {
    background: #e4e4e4;
    margin: 0;
    border-radius: 0 0 0 0; }
  #add_payment_method #payment li,
  .woocommerce-cart #payment li,
  .woocommerce-checkout #payment li {
    list-style: none; }
  #add_payment_method #payment div.payment_box,
  .woocommerce-cart #payment div.payment_box,
  .woocommerce-checkout #payment div.payment_box {
    background: #e4e4e4; }
    #add_payment_method #payment div.payment_box:before,
    .woocommerce-cart #payment div.payment_box:before,
    .woocommerce-checkout #payment div.payment_box:before {
      border: 1em solid #e4e4e4;
      border-right-color: transparent;
      border-left-color: transparent;
      border-top-color: transparent; }

div#klarna_container iframe {
  max-width: initial !important; }

form.woocommerce-checkout div#customer_details h3#ship-to-different-address label span {
  position: relative;
  top: 3px;
  margin-left: 10px; }

form.woocommerce-checkout div#customer_details .col-1 {
  margin-bottom: 20px; }

form.woocommerce-checkout #wc_checkout_add_ons label.checkbox {
  font-size: 2.3rem; }
  form.woocommerce-checkout #wc_checkout_add_ons label.checkbox input {
    position: relative;
    top: -2px;
    margin-right: 10px; }
  form.woocommerce-checkout #wc_checkout_add_ons label.checkbox:before {
    display: inline-block;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("../images/gift.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px; }

.woocommerce-order > * {
  margin-bottom: 20px; }
  .woocommerce-order > *:last-child {
    margin-bottom: 0; }

.woocommerce-order .woocommerce-thankyou-order-received {
  color: #009648;
  font-weight: 600;
  margin-bottom: 20px; }

.tinv-wishlist .tinv-header {
  display: none; }

.tinv-wishlist table {
  box-shadow: 0 0 0 1px #F2EBE8;
  border: 1px solid transparent;
  border-radius: 0; }
  .tinv-wishlist table thead tr {
    background: #f1f1f1;
    border: none !important; }
    .tinv-wishlist table thead tr th {
      border: none; }
  .tinv-wishlist table thead td {
    padding: 6px 12px !important !important; }
  .tinv-wishlist table tbody tr {
    border: none !important; }
    .tinv-wishlist table tbody tr th {
      border: none !important; }
  .tinv-wishlist table tbody td {
    border: none !important;
    border: 1px solid transparent !important;
    padding: 6px 12px !important !important; }
    .tinv-wishlist table tbody td.product-thumbnail {
      width: 80px; }
      .tinv-wishlist table tbody td.product-thumbnail a {
        display: block;
        width: 100%;
        line-height: 0; }
      .tinv-wishlist table tbody td.product-thumbnail img {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important !important; }
  .tinv-wishlist table button {
    font-size: 1.2rem !important;
    padding: 11px 22px !important !important; }
  .tinv-wishlist table .product-remove button {
    background: transparent !important;
    font-size: 1.5rem !important;
    padding: 3px 0 0 !important !important;
    display: block;
    text-align: center;
    border-radius: 100%;
    color: red !important;
    text-decoration: none;
    font-weight: 700;
    border: 0; }
    .tinv-wishlist table .product-remove button:focus, .tinv-wishlist table .product-remove button:hover {
      background: red !important;
      color: #fff !important; }
  .tinv-wishlist table .amount {
    color: #009648;
    font-weight: bold; }
    .tinv-wishlist table .amount .woocommerce-price-suffix {
      display: none; }
      .sp-user-exclude-tax .tinv-wishlist table .amount .woocommerce-price-suffix {
        display: inline-block; }
  .tinv-wishlist table tfoot {
    background: #e4e4e4; }
    .tinv-wishlist table tfoot td {
      padding: 1em !important !important;
      border: 1px solid transparent !important; }

/*********************
WOOCOMMERCE FILTERS
*********************/
.facetwp-counts {
  margin-right: 39px;
  margin-bottom: 0; }

.facet-toggle {
  display: inline-block !important;
  text-decoration: none;
  color: #fff;
  margin-right: 20px; }
  .facet-toggle:after {
    display: inline-block;
    position: relative;
    content: '';
    width: 14px;
    height: 7px;
    background-image: url("../images/down-arrow-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 0 2px 9px;
    transition: all 0.14s ease-in-out; }
  .facet-toggle:hover {
    background: #000;
    color: #fff; }
  .facet-toggle:focus {
    outline: none; }
  .facet-toggle.active:after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.facet-reset {
  display: inline-block !important;
  text-decoration: none;
  color: #000;
  background: none;
  outline: none;
  border: none;
  -webkit-appearance: none;
  margin-right: 0;
  text-decoration: underline; }

.extra-filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  width: 100%; }

.archive .woocommerce-products-header {
  width: 100%;
  text-align: left;
  border-bottom: 0;
  padding: 0; }

.sp-facet-container {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
  background: transparent;
  border: none;
  margin: 0;
  overflow: visible; }
  .sp-facet-container h4 {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4em;
    padding: 7px 10px 6px;
    background: #f1f1f1;
    border: 1px solid #f1f1f1; }
    .sp-facet-container h4 span.sp-facet-count {
      margin-left: 8px;
      font-weight: 600;
      padding: 3px;
      background: #fff;
      border-radius: 50%;
      width: 19px;
      height: 19px;
      line-height: 1;
      display: inline-block;
      text-align: center;
      font-size: 13px;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); }
    .sp-facet-container h4:after {
      position: absolute;
      display: inline-block;
      content: '';
      width: 15px;
      height: 8px;
      background-image: url("../images/down-arrow.svg");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      right: 10px;
      top: 13px;
      transition: all 0.14s ease-in-out; }
    .sp-facet-container h4.active {
      border-color: #000; }
      .sp-facet-container h4.active:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
  .sp-facet-container .facet-dropdown {
    display: none;
    margin: 20px 0 0; }
  .sp-facet-container .facetwp-facet.facetwp-type-checkboxes, .sp-facet-container .facetwp-facet.facetwp-type-radio,
  .sp-facet-container .product-categories.facetwp-type-checkboxes,
  .sp-facet-container .product-categories.facetwp-type-radio {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 0 20px;
    padding: 10px; }
    .sp-facet-container .facetwp-facet.facetwp-type-checkboxes .facetwp-checkbox,
    .sp-facet-container .facetwp-facet.facetwp-type-checkboxes .facetwp-radio, .sp-facet-container .facetwp-facet.facetwp-type-radio .facetwp-checkbox,
    .sp-facet-container .facetwp-facet.facetwp-type-radio .facetwp-radio,
    .sp-facet-container .product-categories.facetwp-type-checkboxes .facetwp-checkbox,
    .sp-facet-container .product-categories.facetwp-type-checkboxes .facetwp-radio,
    .sp-facet-container .product-categories.facetwp-type-radio .facetwp-checkbox,
    .sp-facet-container .product-categories.facetwp-type-radio .facetwp-radio {
      display: block;
      text-align: left; }
  .sp-facet-container .facetwp-color.checked:after {
    margin: 10px 8px;
    width: 12px;
    height: 5px; }
  .sp-facet-container .facetwp-slider-wrap {
    max-width: 400px;
    margin: 0 auto; }
  .sp-facet-container .facetwp-overlay {
    background-color: #f1f1f1; }

.facetwp-facet,
.product-categories {
  position: absolute;
  left: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05);
  width: calc(100vw - 40px);
  max-width: calc(100vw - 40px);
  z-index: 3;
  margin: 0; }
  .facetwp-facet.facetwp-type-color,
  .product-categories.facetwp-type-color {
    padding: 20px 20px 0; }
  .facetwp-facet.facetwp-facet-produktkategorier,
  .product-categories.facetwp-facet-produktkategorier {
    padding: 20px; }
  .facetwp-facet.facetwp-type-pager,
  .product-categories.facetwp-type-pager {
    background: transparent;
    box-shadow: none;
    position: static;
    display: block;
    left: 0;
    right: 0; }
    .facetwp-facet.facetwp-type-pager button,
    .product-categories.facetwp-type-pager button {
      display: block;
      margin: 0 auto; }

.archive-header {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%; }
  .archive-header .woocommerce-ordering {
    margin-left: auto; }
  .archive-header .extra-filters {
    width: 100%;
    margin-bottom: 20px; }

.facetwp-counts {
  display: none;
  margin: 7px 0 10px; }

.facet-reset,
.facet-toggle {
  display: none !important; }

.facetwp-facet {
  margin: 0 auto;
  padding: 0;
  margin-bottom: 0 !important; }
  .facetwp-facet span.facetwp-counter {
    display: none; }
  .facetwp-facet.facetwp-type-color {
    text-align: center; }

.product-categories ul.sub-terms {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 0; }

.product-categories li {
  display: inline-block;
  width: 50%;
  text-align: left;
  line-height: 1.3; }
  .product-categories li a {
    text-decoration: none;
    display: inline-block;
    padding: 5px 0; }
    .product-categories li a.current-cat {
      font-weight: 700; }
    .product-categories li a.go-back {
      padding-left: 20px;
      position: relative;
      font-weight: 600; }
      .product-categories li a.go-back:before {
        content: '';
        display: inline-block;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background-image: url("../../library/images/back-icon.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
  .product-categories li:last-of-type a {
    border-bottom: none; }

.facetwp-slider-wrap {
  padding: 0 1px 20px; }
  .facetwp-slider-wrap .noUi-connects {
    border-radius: 0; }
  .facetwp-slider-wrap .noUi-connect {
    background: #F2EBE8; }
  .facetwp-slider-wrap .noUi-origin {
    top: 2px; }
  .facetwp-slider-wrap .noUi-target {
    border: none;
    border-radius: 50px;
    box-shadow: none;
    margin-top: 10px;
    padding: 0 14px 0 0; }
  .facetwp-slider-wrap .noUi-horizontal {
    height: 6px; }
    .facetwp-slider-wrap .noUi-horizontal .noUi-handle {
      width: 14px;
      height: 14px;
      border: none;
      border-radius: 50%; }
      .facetwp-slider-wrap .noUi-horizontal .noUi-handle:after, .facetwp-slider-wrap .noUi-horizontal .noUi-handle:before {
        content: none; }
  .facetwp-slider-wrap .noUi-handle {
    background: #000;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0);
    cursor: -webkit-grab;
    transition: all 0.214s ease-in-out; }
    .facetwp-slider-wrap .noUi-handle.noUi-active {
      box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.4);
      cursor: -webkit-grabbing; }

.facetwp-slider-reset {
  margin-top: 10px; }

.facetwp-color {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3) !important;
  border-radius: 50%;
  margin: 0 5px 12px !important !important;
  width: 28px !important;
  height: 28px !important; }
  .facetwp-color.checked:after {
    margin: 8px 0 0 -8px !important !important; }

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -14px !important; }

.facetwp-selections {
  margin-top: 20px; }
  .facetwp-selections ul {
    margin: 0;
    padding: 0; }
    .facetwp-selections ul li {
      display: block; }
      .facetwp-selections ul li span.facetwp-selection-label {
        margin-right: 10px; }
      .facetwp-selections ul li span.facetwp-selection-value {
        display: inline-block;
        margin-right: 10px;
        padding: 0;
        background: transparent; }
        .facetwp-selections ul li span.facetwp-selection-value:after {
          content: '';
          position: relative;
          display: inline-block;
          width: 12px;
          height: 12px;
          margin-left: 5px;
          background: url("../images/cross-black.svg");
          background-size: 8px;
          background-position: center;
          background-repeat: no-repeat;
          top: 4px;
          background-color: #f1f1f1;
          border-radius: 50%;
          padding: 3px; }

.sp-badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% - 20px);
  justify-content: center; }
  .sp-badges .sp-badge {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1em;
    padding: 6px 12px;
    border-radius: 20px;
    pointer-events: none;
    color: #fff;
    background: #D8232A;
    z-index: 1;
    margin-right: 5px;
    transition: all 0.35s ease-in-out; }
    .sp-badges .sp-badge:last-of-type {
      margin-right: 0; }
    .sp-badges .sp-badge.new {
      background: #000; }

/*********************
SEARCH ARCHIVE STYLES
*********************/
body.search-no-results .archive-title,
body.search-results .archive-title {
  display: block;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: 2.3rem;
  padding: 0 0 20px;
  position: relative; }
  body.search-no-results .archive-title:after,
  body.search-results .archive-title:after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background: #f1f1f1;
    position: absolute;
    bottom: 0;
    left: 0; }

/*********************
WOOCOMMERCE ARCHIVE STYLES
*********************/
.archive-title.margin-bottom,
h1.margin-bottom {
  margin-bottom: 40px; }

.woocommerce .desktop-facets {
  display: none; }

.woocommerce.archive .woocommerce-products-header, .woocommerce.tax-pwb-brand .woocommerce-products-header {
  padding: 0 0 30px;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 20px; }
  .woocommerce.archive .woocommerce-products-header h1, .woocommerce.tax-pwb-brand .woocommerce-products-header h1 {
    margin: 0;
    font-size: 2.3rem; }
  .woocommerce.archive .woocommerce-products-header .term-description, .woocommerce.tax-pwb-brand .woocommerce-products-header .term-description {
    margin: 20px auto 0;
    z-index: 1;
    position: relative;
    background: #fff;
    display: block;
    width: 100%; }
  .woocommerce.archive .woocommerce-products-header .cat-image, .woocommerce.tax-pwb-brand .woocommerce-products-header .cat-image {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 180px; }
    .woocommerce.archive .woocommerce-products-header .cat-image h1, .woocommerce.tax-pwb-brand .woocommerce-products-header .cat-image h1 {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #fff;
      background: #D8232A;
      padding: 10px 20px; }

.woocommerce.archive .archive-filters-wrapper, .woocommerce.tax-pwb-brand .archive-filters-wrapper {
  display: inline-block;
  float: right; }

.woocommerce ul.products[class*=columns-] li.product {
  margin-bottom: 20px; }

.woocommerce ul.products li.product {
  margin-bottom: 0;
  background: #fff; }
  .woocommerce ul.products li.product .onsale {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin: 0;
    border-radius: 50%;
    background: #D8232A;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0;
    min-height: 50px;
    min-width: 50px;
    line-height: 48px;
    box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.1); }
  .woocommerce ul.products li.product .wc-thumb-wrap {
    position: relative;
    margin: 0 auto 20px;
    padding-bottom: 100%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); }
    .woocommerce ul.products li.product .wc-thumb-wrap > img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0);
      margin: 0;
      width: auto;
      height: auto;
      max-width: calc(100% - 20px);
      max-height: calc(100% - 20px);
      transition: all 0.614s ease-in-out; }
      .woocommerce ul.products li.product .wc-thumb-wrap > img.sticker {
        display: inline-block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: auto; }
      .woocommerce ul.products li.product .wc-thumb-wrap > img.has-colors-icon {
        display: inline-block;
        position: absolute;
        bottom: 20px;
        right: 20px;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        width: 20px;
        height: auto;
        -o-object-fit: initial;
           object-fit: initial;
        top: auto;
        left: auto; }
  .woocommerce ul.products li.product .sp-available-sizes {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    font-size: 1.4rem;
    pointer-events: none; }
    .woocommerce ul.products li.product .sp-available-sizes p {
      -webkit-transform: translate3d(0, -2px, 0);
              transform: translate3d(0, -2px, 0);
      opacity: 0;
      transition: all 0.214s ease-in-out; }
    .woocommerce ul.products li.product .sp-available-sizes ul {
      margin: 0; }
      .woocommerce ul.products li.product .sp-available-sizes ul li {
        display: inline-block;
        padding: 2px 4px;
        color: #000;
        line-height: 1;
        margin: 0;
        opacity: 0;
        -webkit-transform: translate3d(0, -5px, 0);
                transform: translate3d(0, -5px, 0);
        transition: all 0.214s ease-in-out; }
        .woocommerce ul.products li.product .sp-available-sizes ul li.out-of-stock {
          color: #a0a0a0; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(2) {
          transition-delay: 0.1s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(3) {
          transition-delay: 0.12s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(4) {
          transition-delay: 0.14s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(5) {
          transition-delay: 0.18s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(6) {
          transition-delay: 0.2s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(7) {
          transition-delay: 0.22s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(8) {
          transition-delay: 0.24s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(9) {
          transition-delay: 0.26s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(10) {
          transition-delay: 0.28s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(11) {
          transition-delay: 0.3s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(12) {
          transition-delay: 0.32s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(13) {
          transition-delay: 0.34s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(14) {
          transition-delay: 0.36s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(15) {
          transition-delay: 0.38s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(16) {
          transition-delay: 0.40s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(17) {
          transition-delay: 0.42s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(18) {
          transition-delay: 0.44s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(19) {
          transition-delay: 0.46s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(20) {
          transition-delay: 0.48s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(21) {
          transition-delay: 0.5s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(22) {
          transition-delay: 0.52s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(23) {
          transition-delay: 0.54s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(24) {
          transition-delay: 0.56s; }
        .woocommerce ul.products li.product .sp-available-sizes ul li:nth-of-type(25) {
          transition-delay: 0.58s; }
  .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    color: #000;
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid #fff; }
    .woocommerce ul.products li.product a.woocommerce-LoopProduct-link > *:last-child {
      padding-bottom: 20px; }
    .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .product-brand {
      display: inline-block;
      font-size: 1.5rem;
      line-height: 1.4em;
      padding: 0 20px;
      margin-bottom: 10px;
      position: absolute;
      top: 4px; }
      .woocommerce ul.products li.product a.woocommerce-LoopProduct-link .product-brand img {
        max-width: 80px;
        max-height: 53px;
        height: auto;
        width: auto;
        margin: 0 auto; }
  .woocommerce ul.products li.product .variations_form {
    padding: 0 20px;
    margin: 0; }
    .woocommerce ul.products li.product .variations_form .variations {
      margin-bottom: 10px; }
      .woocommerce ul.products li.product .variations_form .variations:last-child {
        margin-bottom: 0; }
  .woocommerce ul.products li.product a.add_to_cart_button {
    display: none !important;
    margin: 20px 30px 0;
    width: calc(100% - 60px);
    background: #009648;
    border-radius: 3px; }
  .woocommerce ul.products li.product a.added_to_cart {
    margin: 0 0 20px;
    padding: 0 20px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h3 {
    text-transform: none;
    font-weight: 500;
    font-size: 1.8rem;
    padding: 0 20px;
    margin: 0;
    text-align: center; }
  .woocommerce ul.products li.product .price {
    color: #000;
    font-weight: 500;
    font-size: 1.8rem;
    padding: 0 20px;
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center; }
    .woocommerce ul.products li.product .price .woocommerce-price-suffix {
      display: none; }
  .woocommerce ul.products li.product .archive-sku {
    font-size: 1.2rem;
    color: #F2EBE8;
    margin: 0 0 5px; }

body.sp-user-exclude-tax ul.products li.product .price .woocommerce-price-suffix {
  display: inline-block; }

.sp-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 11; }
  .sp-loader:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    border: 0 solid #000;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: loading 1000ms ease-out forwards infinite;
            animation: loading 1000ms ease-out forwards infinite; }

@-webkit-keyframes loading {
  0% {
    border: 0 solid #000; }
  20% {
    border: 10px solid #000;
    width: 0;
    height: 0; }
  100% {
    border: 10px solid #000;
    width: 100%;
    height: 100%; } }

@keyframes loading {
  0% {
    border: 0 solid #000; }
  20% {
    border: 10px solid #000;
    width: 0;
    height: 0; }
  100% {
    border: 10px solid #000;
    width: 100%;
    height: 100%; } }

/*********************
BRANDS ARCHIVE STYLES
*********************/
.pwb-brands-cols-outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin-left: -15px;
  margin-right: -15px; }
  .pwb-brands-cols-outer .pwb-brands-col3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 15px !important !important;
    text-align: center;
    margin-bottom: 40px; }
    .pwb-brands-cols-outer .pwb-brands-col3 img {
      margin: 0; }
    .pwb-brands-cols-outer .pwb-brands-col3 > div {
      height: 100%;
      width: 100%;
      margin: 0 auto; }
      .pwb-brands-cols-outer .pwb-brands-col3 > div > a {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        padding: 10px; }
    .pwb-brands-cols-outer .pwb-brands-col3 > p:first-child {
      display: none; }
    .pwb-brands-cols-outer .pwb-brands-col3 a {
      display: block; }

/*********************
WOOCOMMERCE SINGLE PRODUCT
*********************/
/* Make image 85% width to make room to its right */
.woocommerce.single-product div.product {
  width: 100%; }
  .woocommerce.single-product div.product div.summary {
    position: relative;
    padding: 20px;
    background: #fff;
    clear: both !important; }
    .woocommerce.single-product div.product div.summary > * {
      margin-bottom: 20px; }
    .woocommerce.single-product div.product div.summary p {
      margin-bottom: 20px; }
  .woocommerce.single-product div.product span.onsale {
    display: none; }
  .woocommerce.single-product div.product div.sp-woocommerce-stickers {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    pointer-events: none; }
    .woocommerce.single-product div.product div.sp-woocommerce-stickers img.sticker {
      width: 55px;
      height: auto;
      float: right;
      margin: 20px; }
  .woocommerce.single-product div.product div.images .flex-viewport {
    width: 85%;
    float: right; }
  .woocommerce.single-product div.product div.images .flex-control-thumbs {
    width: 15%;
    float: left; }
    .woocommerce.single-product div.product div.images .flex-control-thumbs li {
      width: 100%; }
      .woocommerce.single-product div.product div.images .flex-control-thumbs li img {
        width: 90%;
        float: none;
        margin: 0 10% 10% 0; }
  .woocommerce.single-product div.product form.cart .reset_variations {
    display: none !important; }
  .woocommerce.single-product div.product .woocommerce-variation-price {
    display: none; }

.woocommerce.single-product .pwb-single-product-brands {
  position: absolute;
  top: 20px;
  right: 20px; }
  .woocommerce.single-product .pwb-single-product-brands a {
    display: block; }
    .woocommerce.single-product .pwb-single-product-brands a img {
      max-width: 100px;
      height: auto; }

.woocommerce.single-product .tinvwl_add_to_wishlist_button {
  background: #F2EBE8;
  padding: 12px 22px;
  border-radius: 3px;
  font-weight: bold;
  width: 100%;
  text-align: center; }
  .woocommerce.single-product .tinvwl_add_to_wishlist_button:focus, .woocommerce.single-product .tinvwl_add_to_wishlist_button:hover {
    background: #e0cfc7; }
  .woocommerce.single-product .tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
    background: #595959;
    color: rgba(255, 255, 255, 0.6); }
    .woocommerce.single-product .tinvwl_add_to_wishlist_button.tinvwl-product-in-list:focus, .woocommerce.single-product .tinvwl_add_to_wishlist_button.tinvwl-product-in-list:hover {
      color: #fff;
      background: #404040; }

.woocommerce.single-product iframe.zoid-component-frame {
  z-index: 2 !important; }

.woocommerce div.product div.images {
  float: left !important; }

.woocommerce div.product .product_title {
  font-size: 3.4rem;
  max-width: calc(90% - 100px);
  word-break: break-word; }

.woocommerce div.product .product_sku {
  font-size: 0.8em;
  font-weight: bold;
  position: relative;
  top: -20px; }

.woocommerce div.product .product_meta {
  font-size: 1.4rem;
  color: #F2EBE8;
  margin: 0 0 20px; }

.woocommerce div.product p.price {
  font-size: 2.3rem;
  font-weight: 600;
  color: #009648;
  margin-bottom: 20px; }
  .woocommerce div.product p.price .woocommerce-price-suffix {
    display: none; }

.woocommerce div.product p.stock {
  color: #009648; }
  .woocommerce div.product p.stock.out-of-stock {
    color: #D8232A; }

.woocommerce div.product .quantity {
  margin: 0 10px 0 0; }
  .woocommerce div.product .quantity .qty {
    border-radius: 3px;
    width: 100px;
    padding: 12px; }

.woocommerce div.product .single_add_to_cart_button {
  width: calc(100% - 104px);
  border-radius: 3px; }

.woocommerce div.product ul.list-inline.variable-items-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start; }

.woocommerce div.product .button-variable-item,
.woocommerce div.product .variable-item {
  display: inline-block;
  box-shadow: 0 0 0 0 black;
  border: none;
  background: #F2EBE8;
  color: #000;
  border-radius: 0;
  font-size: 1.4rem;
  margin: 0 10px 10px 0 !important !important;
  opacity: 1;
  min-width: 48px;
  width: auto;
  min-height: 48px;
  height: auto;
  cursor: pointer;
  padding: 0 !important !important;
  border: none !important;
  text-align: center !important; }
  .woocommerce div.product .button-variable-item span,
  .woocommerce div.product .variable-item span {
    font-size: 1.4rem;
    padding: 0 15px;
    width: auto;
    height: 48px;
    display: block;
    line-height: 48px;
    border-radius: 0; }
  .woocommerce div.product .button-variable-item.selected,
  .woocommerce div.product .variable-item.selected {
    background-color: #D8232A;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    color: #fff;
    border: none !important; }
    .woocommerce div.product .button-variable-item.selected:active, .woocommerce div.product .button-variable-item.selected:focus, .woocommerce div.product .button-variable-item.selected:hover,
    .woocommerce div.product .variable-item.selected:active,
    .woocommerce div.product .variable-item.selected:focus,
    .woocommerce div.product .variable-item.selected:hover {
      border: none; }
  .woocommerce div.product .button-variable-item.disabled,
  .woocommerce div.product .variable-item.disabled {
    box-shadow: 0 0 0 1px #f1f1f1; }
    .woocommerce div.product .button-variable-item.disabled span,
    .woocommerce div.product .variable-item.disabled span {
      color: #F2EBE8; }
  .woocommerce div.product .button-variable-item:active, .woocommerce div.product .button-variable-item:focus, .woocommerce div.product .button-variable-item:hover,
  .woocommerce div.product .variable-item:active,
  .woocommerce div.product .variable-item:focus,
  .woocommerce div.product .variable-item:hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    quan: none; }

.woocommerce div.product form.cart .variations td.label,
.woocommerce div.product form.cart .variations th.label {
  display: block; }
  .woocommerce div.product form.cart .variations td.label label,
  .woocommerce div.product form.cart .variations th.label label {
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 20px; }
  .woocommerce div.product .woocommerce-tabs ul.tabs:before {
    border-bottom: none; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 8px 8px 0;
    padding: 0;
    border-radius: 0;
    border: none;
    background-color: transparent;
    font-size: 1.4rem; }
    .woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce div.product .woocommerce-tabs ul.tabs li:before {
      content: none;
      box-shadow: none;
      border: none;
      border-radius: 0; }
    .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
      background: transparent; }
      .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
        background: #000;
        color: #fff; }
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
      width: 100%;
      background: #F2EBE8;
      text-transform: uppercase;
      padding: 7px 16px 6px;
      font-size: 1.2rem; }
      .woocommerce div.product .woocommerce-tabs ul.tabs li a:focus {
        outline: none; }

.woocommerce div.product .woocommerce-tabs .panel {
  line-height: 1.4em; }

.woocommerce div.product .related {
  clear: both; }
  .woocommerce div.product .related h2 {
    margin-bottom: 20px; }

.woocommerce div.product input,
.woocommerce div.product select {
  max-width: 100%; }

.woocommerce div.product .wc-pao-addon {
  background: #fff;
  margin: 0 !important !important; }
  .woocommerce div.product .wc-pao-addon > * {
    margin-bottom: 0 !important; }
  .woocommerce div.product .wc-pao-addon h3 {
    padding: 20px 0 5px; }
  .woocommerce div.product .wc-pao-addon .wc-pao-addon-description p {
    margin-bottom: 0 !important; }
  .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering, .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt {
    position: relative; }
    .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3, .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt h3 {
      display: block;
      margin-top: 0;
      position: relative;
      padding: 0 110px 20px 40px;
      cursor: pointer; }
      .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3:before, .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt h3:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: -1px;
        left: 0;
        background-repeat: no-repeat;
        background-size: contain;
        width: 26px;
        height: 26px; }
      .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3:after, .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt h3:after {
        content: '';
        position: absolute;
        top: -2px;
        right: 0;
        background-image: url("../images/plus-black.svg");
        background-size: contain;
        width: 26px;
        height: 26px;
        -webkit-transform: rotate(0);
                transform: rotate(0);
        transition: all 0.35s ease-in-out; }
      .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3.active:after, .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt h3.active:after {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
    .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering:after, .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt:after {
      content: 'Legg til';
      display: inline-block;
      position: absolute;
      top: 1px;
      right: 40px;
      text-transform: uppercase;
      font-size: 1.4rem;
      font-weight: bold;
      pointer-events: none; }
  .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3 {
    cursor: auto; }
  .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering:after {
    content: none; }
  .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3:before {
    background-image: url("../images/needle.svg"); }
  .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnebrodering h3:after {
    content: none; }
  .woocommerce div.product .wc-pao-addon.wc-pao-addon-navnegravering-valgfritt h3:before {
    background-image: url("../images/laser-cutter.svg"); }

.woocommerce.sp-user-exclude-tax div.product p.price .woocommerce-price-suffix {
  display: inline-block; }

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells {
  width: 100%;
  float: none;
  margin-top: 20px; }
  .woocommerce .cart-collaterals .cross-sells h2,
  .woocommerce-page .cart-collaterals .cross-sells h2 {
    margin-bottom: 20px; }
  .woocommerce .cart-collaterals .cross-sells ul.products,
  .woocommerce-page .cart-collaterals .cross-sells ul.products {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between; }
    .woocommerce .cart-collaterals .cross-sells ul.products li.product:nth-of-type(1), .woocommerce .cart-collaterals .cross-sells ul.products li.product:nth-of-type(3),
    .woocommerce-page .cart-collaterals .cross-sells ul.products li.product:nth-of-type(1),
    .woocommerce-page .cart-collaterals .cross-sells ul.products li.product:nth-of-type(3) {
      margin-right: auto; }

.sp-alternate-colors {
  margin: 20px 0 40px !important !important; }
  .sp-alternate-colors h3 {
    font-size: 1.4rem;
    text-transform: uppercase; }
  .sp-alternate-colors li {
    display: inline-block;
    margin: 0 5px;
    position: relative; }
    .sp-alternate-colors li a {
      display: inline-block; }
    .sp-alternate-colors li span {
      display: inline-block;
      width: 45px;
      height: 25px; }
    .sp-alternate-colors li.sp-current-color:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      height: 2px;
      width: 100%;
      background: #000; }
    .sp-alternate-colors li:first-of-type {
      margin-left: 0; }
    .sp-alternate-colors li:last-of-type {
      margin-right: 0; }

/*********************
BUILDER STYLES
*********************/
.builder > * {
  margin-bottom: 40px; }
  .builder > *:first-child {
    margin-top: 0; }
  .builder > *:last-child {
    margin-bottom: 40px; }
  .builder > *.box-grid:last-child {
    margin-bottom: 0; }

.slider {
  position: relative; }
  .slider .my-siema__list {
    height: 100%;
    overflow: hidden; }
  .slider .next,
  .slider .prev {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 56px;
    line-height: 0;
    padding: 20px; }
    .slider .next img,
    .slider .prev img {
      width: 100%;
      height: auto; }
  .slider .next {
    left: auto;
    right: 0; }

.banner {
  line-height: 0; }
  .banner .banner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #595959;
    text-decoration: none; }
    .banner .banner-link img.banner-image {
      width: 100%;
      height: auto; }
    .banner .banner-link h2 {
      font-size: 4.2rem;
      font-weight: 400;
      line-height: 1.3em;
      position: absolute;
      top: 50%;
      left: 40px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: calc(100% - 80px); }
      .banner .banner-link h2.align-text-top {
        top: 10%;
        -webkit-transform: translateY(0);
                transform: translateY(0); }
      .banner .banner-link h2.align-text-bottom {
        top: auto;
        bottom: 10%;
        -webkit-transform: translateY(0);
                transform: translateY(0); }
  .banner.one-column h2 {
    width: calc(100% - 40px);
    max-width: 480px; }
  .banner.two-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; }
    .banner.two-columns h2 {
      left: 40px;
      width: calc(100% - 80px);
      text-align: right; }
    .banner.two-columns .banner-link {
      width: 50%; }
      .banner.two-columns .banner-link:first-of-type h2 {
        text-align: left; }
      .banner.two-columns .banner-link:nth-of-type(2) h2 {
        text-align: right; }

.box-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin: 0 auto 40px;
  max-width: 100%; }
  .box-grid .box {
    margin-bottom: 20px; }
    .box-grid .box .boksen {
      position: relative;
      background-size: 50%;
      background-position: center;
      background-repeat: no-repeat;
      padding-bottom: 100%;
      display: block;
      color: #fff;
      text-decoration: none; }
      .box-grid .box .boksen.med-link {
        background-size: cover; }
      .box-grid .box .boksen.image-size-cover {
        background-size: cover; }
      .box-grid .box .boksen.image-size-fixed {
        background-attachment: fixed;
        background-size: cover; }
    .box-grid .box .box-text {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px; }
  .box-grid + .box-grid {
    margin-top: -40px; }

@media (min-width: 768px) {
  .hide-on-desktop {
    display: none !important; } }

.link-section .link-section-link {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 1.4;
  text-decoration: none;
  padding: 40px 0; }
  .link-section .link-section-link svg {
    display: none; }
    @media (min-width: 768px) {
      .link-section .link-section-link svg {
        transition: all .3s ease-in-out;
        display: inline-block;
        margin-left: 8px;
        height: 36px;
        width: auto;
        position: relative;
        bottom: -6px; } }
  @media (min-width: 768px) {
    .link-section .link-section-link {
      padding: 80px 0; } }
  @media (max-width: 767px) {
    .link-section .link-section-link:hover .mobile-faux-btn, .link-section .link-section-link:focus .mobile-faux-btn {
      color: #000;
      background: #fff; } }
  @media (min-width: 768px) {
    .link-section .link-section-link:hover svg, .link-section .link-section-link:focus svg {
      -webkit-transform: translateX(4px);
              transform: translateX(4px); } }
.link-section .mobile-faux-btn {
  display: inline-block;
  border: 2px solid #fff;
  padding: 12px 24px;
  margin-top: 20px;
  transition: all .3s ease-in-out; }

.image-and-text {
  margin: 40px auto;
  max-width: 1134px;
  width: 100%;
  position: relative; }
  .image-and-text a {
    display: block;
    color: #595959; }
  .image-and-text .it-image {
    width: 100%;
    height: auto; }
  .image-and-text .it-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 20px; }
    .image-and-text .it-text > * {
      margin-bottom: 20px;
      line-height: 1.2em;
      font-size: 2.3rem; }
      .image-and-text .it-text > *:last-child {
        margin-bottom: 0; }
    .image-and-text .it-text h1,
    .image-and-text .it-text h2,
    .image-and-text .it-text h3,
    .image-and-text .it-text h4 {
      font-size: 4.2rem;
      font-weight: 700; }
    .image-and-text .it-text a {
      display: inline-block;
      color: #000;
      text-decoration: none;
      position: relative; }
      .image-and-text .it-text a:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: #000; }
      .image-and-text .it-text a:focus, .image-and-text .it-text a:hover {
        background: #000;
        color: #fff;
        text-shadow: none; }
  .image-and-text.left-aligned {
    text-align: right; }
  .image-and-text.right-aligned {
    text-align: left; }

.two-cols {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 2.3rem;
  line-height: 1.4em; }
  .two-cols .two-cols-image {
    margin-bottom: 20px; }
  .two-cols .two-cols-text > * {
    margin-bottom: 20px; }
  .two-cols .two-cols-text h1,
  .two-cols .two-cols-text h2,
  .two-cols .two-cols-text h3,
  .two-cols .two-cols-text h4 {
    margin-bottom: 10px; }
  .two-cols .two-cols-text:last-child {
    margin-bottom: 0; }
  .two-cols.left-aligned .two-cols-image, .two-cols.right-aligned .two-cols-image {
    order: 1; }
  .two-cols.left-aligned .two-cols-text, .two-cols.right-aligned .two-cols-text {
    order: 2; }

.regular-content {
  padding: 0 20px;
  max-width: 1134px;
  margin-left: auto;
  margin-right: auto; }
  .regular-content > * {
    margin-bottom: 20px; }
    .regular-content > *:last-child {
      margin-bottom: 0; }

.multibudskap .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; }

.multibudskap .budskap {
  text-transform: uppercase;
  margin: 10px 0;
  font-weight: 600; }

.grid-header,
.slider-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between; }

.product-grid-title,
.product-slider-title {
  margin-right: auto;
  margin-bottom: 10px; }

.product-grid-link,
.product-slider-link {
  margin-left: auto;
  display: inline-flex;
  text-decoration: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border: 1px solid #000;
  transition: all .215s ease-in-out; }
  .product-grid-link img,
  .product-slider-link img {
    display: inline-block;
    margin-left: 10px; }
  .product-grid-link:hover, .product-grid-link:focus,
  .product-slider-link:hover,
  .product-slider-link:focus {
    background: #000;
    color: #fff; }

.slider-container {
  position: relative;
  width: calc(100% + 20px);
  left: -10px;
  text-align: center; }

.slider-pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none; }
  .slider-pagination .next,
  .slider-pagination .prev {
    pointer-events: all;
    background: #fff;
    outline: none;
    border: none;
    padding: 10px;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.15);
    width: 45px;
    height: 45px; }
    .slider-pagination .next img,
    .slider-pagination .prev img {
      width: 8px;
      height: auto;
      margin-top: 4px; }

.grid-container {
  text-align: center; }

.product-grid {
  text-align: left; }

.woocommerce-page.product-carousel,
.woocommerce.product-carousel {
  text-align: left; }
  .woocommerce-page.product-carousel ul.products,
  .woocommerce.product-carousel ul.products {
    margin: 0;
    position: relative;
    width: calc(100% - 0); }
    .woocommerce-page.product-carousel ul.products li.product,
    .woocommerce.product-carousel ul.products li.product {
      width: 100%;
      margin: 0;
      background: transparent; }
      .woocommerce-page.product-carousel ul.products li.product > a.woocommerce-LoopProduct-link,
      .woocommerce.product-carousel ul.products li.product > a.woocommerce-LoopProduct-link {
        margin: 0 10px;
        background: #fff; }
        .woocommerce-page.product-carousel ul.products li.product > a.woocommerce-LoopProduct-link > *,
        .woocommerce.product-carousel ul.products li.product > a.woocommerce-LoopProduct-link > * {
          pointer-events: none; }
      .woocommerce-page.product-carousel ul.products li.product .variations_form,
      .woocommerce.product-carousel ul.products li.product .variations_form {
        padding: 0 20px 20px;
        margin: 0 10px 10px;
        width: calc(100% - 20px);
        background: #fff; }
        .woocommerce-page.product-carousel ul.products li.product .variations_form .variations,
        .woocommerce.product-carousel ul.products li.product .variations_form .variations {
          margin-bottom: 10px; }
          .woocommerce-page.product-carousel ul.products li.product .variations_form .variations:last-child,
          .woocommerce.product-carousel ul.products li.product .variations_form .variations:last-child {
            margin-bottom: 0; }
      .woocommerce-page.product-carousel ul.products li.product a.add_to_cart_button,
      .woocommerce.product-carousel ul.products li.product a.add_to_cart_button {
        margin: 20px 30px 0;
        width: calc(100% - 60px);
        background: #009648;
        border-radius: 3px; }
      .woocommerce-page.product-carousel ul.products li.product a.added_to_cart,
      .woocommerce.product-carousel ul.products li.product a.added_to_cart {
        display: block;
        text-align: center;
        margin: 20px 0 0;
        padding: 0 20px; }
      .woocommerce-page.product-carousel ul.products li.product .variations_form.wvs-archive-variation-wrapper,
      .woocommerce.product-carousel ul.products li.product .variations_form.wvs-archive-variation-wrapper {
        background: #fff;
        max-width: calc(100% - 20px);
        margin-left: 10px; }

/*********************
PAGE NAVI STYLES
*********************/
.facetwp-pager {
  display: block;
  margin: 5px 0 20px;
  padding: 0; }
  .facetwp-pager a.facetwp-page {
    background: #fff;
    color: #000;
    padding: 11px 13px;
    line-height: 1;
    font-size: 1.4rem;
    border-radius: 0;
    margin: 0 10px 20px 0;
    min-width: 36px; }
    .facetwp-pager a.facetwp-page.active, .facetwp-pager a.facetwp-page:focus, .facetwp-pager a.facetwp-page:hover {
      color: #fff;
      background: #000; }

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 0; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #F2EBE8; }
  .pagination a,
  .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 5px;
    min-width: 1em;
    display: block;
    color: #000; }
    .pagination a:focus, .pagination a:hover,
    .pagination span:focus,
    .pagination span:hover {
      background-color: #000;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #000; }
    .pagination .current:focus, .pagination .current:hover {
      background-color: #fff;
      color: #000; }

/* end .bones_page_navi */
/*********************
SINGLE POST
*********************/
.nextprevious-nav {
  margin: 20px 0;
  padding: 20px 0 0;
  border-top: 1px solid #f1f1f1; }
  .nextprevious-nav a.nav-item {
    display: block;
    text-decoration: none;
    margin-bottom: 20px; }
    .nextprevious-nav a.nav-item h3 {
      text-decoration: underline; }
    .nextprevious-nav a.nav-item:hover {
      text-decoration: underline; }

/*********************
SIDEBARS & ASIDES
*********************/
.no-widgets {
  background-color: #fff;
  padding: 5px;
  text-align: center;
  border: 1px solid #F2EBE8;
  border-radius: 0;
  margin-bottom: 5px; }

.footer .widget {
  margin-bottom: 40px;
  line-height: 1.4em; }
  .footer .widget .widgettitle {
    margin-bottom: 10px;
    font-weight: 700; }
  .footer .widget ul.menu {
    margin: 0;
    padding: 0; }
    .footer .widget ul.menu li {
      margin: 3px 0; }
      .footer .widget ul.menu li a {
        color: #fff;
        text-decoration: none; }
  .footer .widget:last-of-type {
    margin-bottom: 0; }
  .footer .widget .textwidget > * {
    margin-bottom: 10px; }
    .footer .widget .textwidget > *:last-child {
      margin-bottom: 0; }

#mc_embed_signup_scroll {
  text-align: left; }
  #mc_embed_signup_scroll label {
    display: none; }
  #mc_embed_signup_scroll #mce-EMAIL {
    width: calc(100% - 110px);
    float: left;
    background: #fefefe;
    border: 1px solid #e0cfc7;
    border-right: none;
    border-radius: 0; }
    #mc_embed_signup_scroll #mce-EMAIL:active, #mc_embed_signup_scroll #mce-EMAIL:focus {
      background: #dddddd; }
  #mc_embed_signup_scroll #mc-embedded-subscribe {
    width: 110px;
    float: right;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    background: #000;
    padding: 12px 22px;
    border: 1px solid black;
    font-size: 1.5rem;
    line-height: 1.4em; }
    #mc_embed_signup_scroll #mc-embedded-subscribe:focus, #mc_embed_signup_scroll #mc-embedded-subscribe:hover {
      background: black;
      color: #fff; }

#ct_size_guide {
  padding: 20px;
  border-radius: 0;
  max-width: 95%; }
  #ct_size_guide hr {
    border: none; }
  #ct_size_guide table tr {
    margin: 0 5px 0 0; }
    #ct_size_guide table tr td,
    #ct_size_guide table tr th {
      padding: 10px 5px; }
    #ct_size_guide table tr:last-of-type {
      margin-right: 0; }
  #ct_size_guide div {
    max-width: 95% !important; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #D8232A;
  color: #fff; }
  .footer .custom-logo-link {
    margin-top: 40px; }
  .footer a {
    color: #fff; }
  .footer .footer-widgets {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px 0; }
  .footer #inner-footer {
    color: #fff;
    text-align: center;
    font-size: 1.4rem; }
    .footer #inner-footer > .wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap; }
    .footer #inner-footer .copyright {
      order: 2;
      margin-top: 20px;
      display: block;
      text-align: center;
      width: 100%; }
    .footer #inner-footer .betalingslosninger {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 20px; }
      .footer #inner-footer .betalingslosninger img {
        -webkit-filter: brightness(9);
                filter: brightness(9);
        height: auto;
        width: 100%;
        max-width: 320px;
        margin-bottom: 20px; }
        .footer #inner-footer .betalingslosninger img:first-of-type {
          width: 100%;
          max-width: 200px; }
    .footer #inner-footer a {
      color: #fff; }
  .footer .social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    max-width: 30px; }
    .footer .social-links a img {
      width: 100%;
      height: auto; }
  .footer #mc_embed_signup {
    margin-bottom: 20px; }

/*********************
SP POP UP STYLES
*********************/
#sp-popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999; }
  #sp-popup .underlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    -webkit-animation: fadein 0.5s;
            animation: fadein 0.5s; }
  #sp-popup .modal {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 0;
    max-width: 320px;
    width: 100%;
    -webkit-animation: popin 0.3s;
            animation: popin 0.3s; }
    #sp-popup .modal .modal-image {
      display: none; }
    #sp-popup .modal .modal-content {
      font-size: 2rem;
      padding: 20px;
      line-height: 1.4em; }
      #sp-popup .modal .modal-content > * {
        margin-bottom: 20px; }
        #sp-popup .modal .modal-content > *:last-child {
          margin-bottom: 0; }
      #sp-popup .modal .modal-content .popup-title {
        font-size: 3.4rem;
        font-weight: 400; }
    #sp-popup .modal a {
      color: #000; }
  #sp-popup #mc_embed_signup_scroll #mce-EMAIL {
    width: 100%;
    float: none;
    margin-bottom: 10px;
    border-right: 1px solid black;
    border-radius: 0;
    color: #fff; }
  #sp-popup #mc_embed_signup_scroll #mc-embedded-subscribe {
    width: 100%;
    float: none;
    padding: 12px 22px;
    background: #000;
    border: none;
    border-radius: 0;
    transition: all 0.214s ease-in-out; }
    #sp-popup #mc_embed_signup_scroll #mc-embedded-subscribe:focus, #sp-popup #mc_embed_signup_scroll #mc-embedded-subscribe:hover {
      background: black; }
  #sp-popup nf-fields-wrap .nf-field-container {
    margin: 0; }
  #sp-popup nf-fields-wrap nf-field {
    display: block;
    margin: 5px 0; }
  #sp-popup .nf-error-msg,
  #sp-popup .nf-error-wrap {
    font-size: 1.4rem;
    line-height: 1.4em;
    margin: 0; }
  #sp-popup .btn-green {
    width: 100%; }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes popin {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0; }
  85% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
    opacity: 1; }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1; } }

@keyframes popin {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0; }
  85% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
    opacity: 1; }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1; } }

/*********************
COOKIE NOTICE FOR GDPR (DFACTORY)
*********************/
#cookie-notice {
  font-size: 1.5rem;
  line-height: 1.5em; }
  #cookie-notice p {
    margin-bottom: 10px; }
  #cookie-notice .button {
    display: inline-block;
    padding: 5px 12px;
    text-decoration: none;
    color: #000;
    background: #fff;
    font-size: 1.5rem;
    transition: background-color 0.14s ease-in-out; }
    #cookie-notice .button:focus, #cookie-notice .button:hover {
      background: #e6e6e6;
      color: #000;
      text-decoration: none;
      outline: none; }
    #cookie-notice .button:active {
      top: 1px; }

/*********************
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) {
  /******************************************************************

Stylesheet: 481px and Up Stylesheet

******************************************************************/
  .large-mobile-up {
    display: block; }
  /*********************
NAVIGATION STYLES
*********************/
  .sp-mini-cart,
  .mobile-nav {
    width: 380px; }
  .mobile-nav #searchform input#s {
    padding: 15px calc(37px + 12px) 14px 15px; }
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft,
    .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright,
    .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter,
    .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  /*********************
SINGLE POST
*********************/
  .nextprevious-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between; }
    .nextprevious-nav a.nav-item {
      display: inline-block;
      width: 50%; }
      .nextprevious-nav a.nav-item:nth-of-type(1) {
        margin-right: auto; }
      .nextprevious-nav a.nav-item:nth-of-type(2) {
        margin-left: auto;
        text-align: right; }
  /*********************
BUILDER STYLES
*********************/
  .box-grid .box {
    margin-bottom: 0; }
  .box-grid.box-grid-css-grid .box {
    align-self: start;
    overflow: hidden; }
  .multibudskap {
    font-size: 1.5rem; }
    .multibudskap .wrap {
      flex-direction: row;
      flex-wrap: nowrap; }
    .multibudskap .budskap {
      padding: 0 10px;
      text-align: center; }
      .multibudskap .budskap:first-of-type {
        margin-right: auto; }
      .multibudskap .budskap:last-of-type {
        margin-left: auto; }
    .multibudskap.budskap-2 .budskap {
      width: 50%; }
    .multibudskap.budskap-3 .budskap {
      width: 33.333333%; }
    .multibudskap.budskap-4 .budskap {
      width: 25%; }
    .multibudskap.budskap-5 .budskap {
      width: 20%; }
  /*********************
WOOCOMMERCE STYLES
*********************/
  .woocommerce-breadcrumb {
    float: right;
    margin: 19px 0 10px !important;
    z-index: 9; }
    .single-product .woocommerce-breadcrumb {
      float: none; }
  /*********************
WOOCOMMERCE ARCHIVE STYLES
*********************/
  .woocommerce .woocommerce-ordering {
    width: auto; }
  .woocommerce ul.products li.product .wc-thumb-wrap img.sticker {
    width: 55px; }
  .woocommerce ul.products li.product .onsale {
    font-size: 1rem;
    min-height: 60px;
    min-width: 60px;
    line-height: 60px; }
  .woocommerce ul.products li.product .sp-available-sizes {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px); }
  /*********************
WOOCOMMERCE FILTERS
*********************/
  .sp-facet-container .product-categories.facetwp-type-radio, .sp-facet-container .product-categories.facetwp-type-checkboxes,
  .sp-facet-container .facetwp-facet.facetwp-type-radio,
  .sp-facet-container .facetwp-facet.facetwp-type-checkboxes {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-categories li {
    width: 33.333%; }
  /*********************
SIDEBARS & ASIDES
*********************/
  #ct_size_guide table tr th,
  #ct_size_guide table tr td {
    padding: 13px 10px; }
  /*********************
FOOTER STYLES
*********************/
  .footer .footer-widgets {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
    position: relative;
    margin: 0 -10px; }
    .footer .footer-widgets .widget {
      width: calc(50% - 20px);
      margin: 0 10px 20px; }
  .footer .social-links a {
    margin: 0 10px 0 0; }
  /*********************
SP POP UP STYLES
*********************/
  #sp-popup .modal {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 400px; }
    #sp-popup .modal .modal-content {
      width: 50%; }
      #sp-popup .modal .modal-content.no-image {
        width: 100%; }
    #sp-popup .modal .modal-image {
      display: inline-block;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 50%;
      border-radius: 0 0 0 0; } }

/*********************
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) {
  /******************************************************************

Stylesheet: Tablet & Small Desktop Stylesheet

******************************************************************/
  .mobile-nav #searchform input#s {
    padding: 15px calc(37px + 12px) 14px 15px; }
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  .page-template-default article.hentry.page {
    max-width: 800px;
    margin: 0 auto; }
  .woocommerce-page article.hentry.page, .page-id-68941 article.hentry.page {
    max-width: 1134px; }
  .page-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; }
    .page-narrow .wrap {
      width: auto; }
  .article-header.page-narrow {
    max-width: 800px;
    margin: 0 auto;
    width: auto; }
  .entry-content .woocommerce.columns-4 {
    margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
    width: auto;
    max-width: 1000%; }
  /*********************
BUILDER STYLES
*********************/
  .banner {
    max-height: 100vh; }
    .banner .banner-link h2 {
      font-size: 10rem;
      left: 80px;
      width: calc(100% - 160px); }
    .banner.one-column .banner-link, .banner.two-columns .banner-link {
      max-height: 100vh; }
    .banner.one-column h2 {
      max-width: 830px;
      left: 80px; }
  .box-grid .box .boksen {
    padding-bottom: 100%;
    background-size: 100% auto;
    overflow: hidden; }
    .box-grid .box .boksen:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.35);
      opacity: 0;
      transition: all 0.214s linear; }
    .box-grid .box .boksen .box-title {
      transition: all 0.214s ease-in-out; }
    .box-grid .box .boksen.med-link:hover:before, .box-grid .box .boksen.med-link:focus:before {
      opacity: 1; }
    .box-grid .box .boksen.med-link:hover .box-title, .box-grid .box .boksen.med-link:focus .box-title {
      -webkit-transform: translate3d(0, calc(-50% - 4px), 0);
              transform: translate3d(0, calc(-50% - 4px), 0); }
  .box-grid .box .box-text {
    padding: 40px; }
  .box-grid-css-grid {
    grid-template-columns: repeat(12, 1fr);
    display: grid;
    padding: 0; }
    .box-grid-css-grid .box {
      height: 100%;
      width: 100%;
      padding: 0; }
      .box-grid-css-grid .box .boksen {
        padding-bottom: 0;
        height: 500px; }
        .box-grid-css-grid .box .boksen.equal_ratio {
          padding-bottom: 100%;
          height: auto; }
        .box-grid-css-grid .box .boksen.wide_plus {
          height: 70vh;
          max-height: 700px; }
      .box-grid-css-grid .box.t-1of3 {
        grid-column: span 4; }
      .box-grid-css-grid .box.t-1of4 {
        grid-column: span 3; }
      .box-grid-css-grid .box.t-1of6 {
        grid-column: span 2; }
      .box-grid-css-grid .box.t-3of4 {
        grid-column: span 9; }
      .box-grid-css-grid .box.t-2of3 {
        grid-column: span 8; }
      .box-grid-css-grid .box.t-1of2 {
        grid-column: span 6; }
      .box-grid-css-grid .box.t-all {
        grid-column: span 12; }
  .image-and-text {
    padding: 0 20px; }
    .image-and-text .it-image {
      width: 66%;
      height: auto; }
    .image-and-text .it-text {
      font-size: 4.2rem;
      max-width: 50%; }
      .image-and-text .it-text h1,
      .image-and-text .it-text h2,
      .image-and-text .it-text h3,
      .image-and-text .it-text h4 {
        font-size: 10rem; }
      .image-and-text .it-text p {
        max-width: 85%; }
      .image-and-text .it-text > * {
        font-size: 3.4rem; }
    .image-and-text.left-aligned .it-text {
      left: 0; }
      .image-and-text.left-aligned .it-text p {
        float: right; }
    .image-and-text.left-aligned .it-image {
      float: right; }
    .image-and-text.right-aligned .it-text {
      right: 0;
      text-align: left;
      float: right; }
    .image-and-text.right-aligned .it-image {
      float: left; }
  .two-cols {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #f1f1f1; }
    .two-cols .two-cols-image {
      margin-bottom: 0;
      width: 30%; }
    .two-cols .two-cols-text {
      width: calc(70% - 40px);
      margin-left: 40px; }
    .two-cols.left-aligned .two-cols-image {
      order: 1; }
    .two-cols.left-aligned .two-cols-text {
      order: 2; }
    .two-cols.right-aligned .two-cols-image {
      order: 2; }
    .two-cols.right-aligned .two-cols-text {
      order: 1;
      margin-left: 0;
      margin-right: 40px; }
    .two-cols:last-of-type {
      border: none; }
  .woocommerce.product-carousel ul.products li.product,
  .woocommerce-page.product-carousel ul.products li.product {
    width: 100% !important;
    margin: 0; }
    .woocommerce.product-carousel ul.products li.product > a.woocommerce-LoopProduct-link,
    .woocommerce-page.product-carousel ul.products li.product > a.woocommerce-LoopProduct-link {
      margin: 0 10px;
      background: #fff; }
  .product-grid ul.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch; }
  /*********************
WOOCOMMERCE FILTERS
*********************/
  .sp-facet-container {
    min-width: 33.333333%; }
  /*********************
WOOCOMMERCE ARCHIVE STYLES
*********************/
  .extra-filters {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    margin: 0 2.6% 2.992em 0;
    width: 23.05%; }
  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: 31.6%; }
  .woocommerce ul.products li.last,
  .woocommerce-page ul.products li.last {
    margin-right: 0; }
  .woocommerce ul.products li.product {
    transition: all 0.414s ease-in-out; }
    .woocommerce ul.products li.product a {
      transition: all 0.414s ease-in-out; }
    .woocommerce ul.products li.product:hover, .woocommerce ul.products li.product:focus {
      box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.05); }
      .woocommerce ul.products li.product:hover a .wc-thumb-wrap > img, .woocommerce ul.products li.product:focus a .wc-thumb-wrap > img {
        opacity: .8; }
      .woocommerce ul.products li.product:hover a .sp-available-sizes p, .woocommerce ul.products li.product:focus a .sp-available-sizes p {
        -webkit-transform: translate3d(0, 0px, 0);
                transform: translate3d(0, 0px, 0);
        opacity: 1; }
      .woocommerce ul.products li.product:hover a .sp-available-sizes ul li, .woocommerce ul.products li.product:focus a .sp-available-sizes ul li {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        opacity: 1; }
  /*********************
WOOCOMMERCE SINGLE PRODUCT
*********************/
  /* Make image 85% width to make room to its right */
  .woocommerce.single-product div.product {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between; }
    .woocommerce.single-product div.product .related {
      width: 100%; }
    .woocommerce.single-product div.product div.sp-woocommerce-stickers {
      width: 48%; }
  .sp-alternate-colors li:hover:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #000; }
  /*********************
WOOCOMMERCE STYLES
*********************/
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 240px; }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 300px); }
  .woocommerce form.woocommerce-cart-form {
    margin-bottom: 20px; }
  .woocommerce table.shop_table tbody tr td {
    padding: 10px 12px !important; }
  .woocommerce table.cart input#coupon_code {
    width: 120px !important; }
  .woocommerce table.cart td.actions {
    background: #f1f1f1; }
  .woocommerce .cart-collaterals .cart_totals {
    width: 100%; }
    .woocommerce .cart-collaterals .cart_totals h2 {
      margin-bottom: 20px; }
  .woocommerce .cart-collaterals .cross-sells ul.products,
  .woocommerce-page .cart-collaterals .cross-sells ul.products {
    justify-content: flex-start; }
    .woocommerce .cart-collaterals .cross-sells ul.products li.product,
    .woocommerce-page .cart-collaterals .cross-sells ul.products li.product {
      width: 22.05%;
      margin: 0 3.8% 2.992em 0; }
      .woocommerce .cart-collaterals .cross-sells ul.products li.product:nth-of-type(4),
      .woocommerce-page .cart-collaterals .cross-sells ul.products li.product:nth-of-type(4) {
        margin-right: 0; }
  form.woocommerce-checkout div#customer_details {
    width: 48%;
    float: left; }
    form.woocommerce-checkout div#customer_details .col-1,
    form.woocommerce-checkout div#customer_details .col-2 {
      width: 100%;
      float: none; }
  form.woocommerce-checkout #order_review_heading,
  form.woocommerce-checkout #order_review,
  form.woocommerce-checkout #wc_checkout_add_ons {
    width: 48%;
    float: right; }
  /*********************
SIDEBARS & ASIDES
*********************/
  #ct_size_guide {
    padding: 40px; }
    #ct_size_guide table tr th,
    #ct_size_guide table tr td {
      padding: 10px; }
  /*********************
FOOTER STYLES
*********************/
  .footer .footer-widgets .widget {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 1.5em;
    width: calc(25% - 20px); }
  .footer #inner-footer .betalingslosninger {
    flex-direction: row; }
  /*********************
SP POP UP STYLES
*********************/
  #sp-popup .modal {
    max-width: 560px; } }

/*********************
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) {
  /******************************************************************

Stylesheet: Desktop Stylsheet

******************************************************************/
  .wrap {
    width: 100%;
    max-width: 1134px; }
  /*********************
HEADER STYLES
*********************/
  .store-info {
    display: flex; }
  .header {
    position: relative;
    top: 0; }
    .header #searchform {
      display: inline-block;
      position: relative;
      width: 200px;
      margin-left: auto;
      font-family: "sofia-pro", Helvetica, Arial, sans-serif; }
    .header nav.main-cat-menu-nav {
      margin-top: 20px; }
  #scrolled-header,
  .header {
    height: auto;
    padding: 0;
    z-index: 11; }
    #scrolled-header #inner-header,
    .header #inner-header {
      padding: 20px 20px 0; }
    #scrolled-header #inner-header,
    #scrolled-header #scrolled-inner-header,
    .header #inner-header,
    .header #scrolled-inner-header {
      height: auto;
      justify-content: space-between;
      flex-wrap: wrap; }
      #scrolled-header #inner-header .cart-toggle,
      #scrolled-header #scrolled-inner-header .cart-toggle,
      .header #inner-header .cart-toggle,
      .header #scrolled-inner-header .cart-toggle {
        display: none; }
    #scrolled-header #scrolled-inner-header,
    .header #scrolled-inner-header {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      padding: 10px 20px 0;
      position: relative; }
    #scrolled-header #right-nav a.cart-toggle,
    .header #right-nav a.cart-toggle {
      top: 4px; }
      #scrolled-header #right-nav a.cart-toggle img,
      .header #right-nav a.cart-toggle img {
        width: 100%; }
    #scrolled-header #scrolled-right-nav a.cart-toggle,
    .header #scrolled-right-nav a.cart-toggle {
      top: 5px; }
    #scrolled-header #right-nav,
    #scrolled-header #scrolled-right-nav,
    .header #right-nav,
    .header #scrolled-right-nav {
      display: inline-flex;
      flex-direction: row;
      align-items: flex-start; }
      #scrolled-header #right-nav a,
      #scrolled-header #scrolled-right-nav a,
      .header #right-nav a,
      .header #scrolled-right-nav a {
        font-size: 1.5rem;
        padding: 4px 3px;
        position: relative; }
      #scrolled-header #right-nav .my-account,
      #scrolled-header #scrolled-right-nav .my-account,
      .header #right-nav .my-account,
      .header #scrolled-right-nav .my-account {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        text-decoration: none;
        color: #fff;
        position: relative;
        margin-bottom: 0; }
        #scrolled-header #right-nav .my-account span,
        #scrolled-header #scrolled-right-nav .my-account span,
        .header #right-nav .my-account span,
        .header #scrolled-right-nav .my-account span {
          margin-right: 10px;
          margin-top: 1px; }
        #scrolled-header #right-nav .my-account img,
        #scrolled-header #scrolled-right-nav .my-account img,
        .header #right-nav .my-account img,
        .header #scrolled-right-nav .my-account img {
          width: 27px; }
        #scrolled-header #right-nav .my-account:after,
        #scrolled-header #scrolled-right-nav .my-account:after,
        .header #right-nav .my-account:after,
        .header #scrolled-right-nav .my-account:after {
          content: none; }
      #scrolled-header #right-nav .wishlist-link,
      #scrolled-header #scrolled-right-nav .wishlist-link,
      .header #right-nav .wishlist-link,
      .header #scrolled-right-nav .wishlist-link {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        text-decoration: none;
        position: relative;
        margin-bottom: 0;
        top: 1px;
        color: #fff; }
        #scrolled-header #right-nav .wishlist-link span,
        #scrolled-header #scrolled-right-nav .wishlist-link span,
        .header #right-nav .wishlist-link span,
        .header #scrolled-right-nav .wishlist-link span {
          margin-right: 10px;
          margin-top: 1px; }
        #scrolled-header #right-nav .wishlist-link img,
        #scrolled-header #scrolled-right-nav .wishlist-link img,
        .header #right-nav .wishlist-link img,
        .header #scrolled-right-nav .wishlist-link img {
          width: 27px;
          height: auto; }
      #scrolled-header #right-nav .cart-toggle,
      #scrolled-header #scrolled-right-nav .cart-toggle,
      .header #right-nav .cart-toggle,
      .header #scrolled-right-nav .cart-toggle {
        display: inline-block;
        float: right;
        padding: 0;
        width: 26px;
        order: 3; }
        #scrolled-header #right-nav .cart-toggle:before,
        #scrolled-header #scrolled-right-nav .cart-toggle:before,
        .header #right-nav .cart-toggle:before,
        .header #scrolled-right-nav .cart-toggle:before {
          font-size: 1.4rem; }
    #scrolled-header nav,
    .header nav {
      display: inline-block; }
      #scrolled-header nav#primary-menu, #scrolled-header nav#scrolled-primary-menu,
      .header nav#primary-menu,
      .header nav#scrolled-primary-menu {
        margin-right: auto; }
      #scrolled-header nav.main-cat-menu-nav,
      .header nav.main-cat-menu-nav {
        display: inline-block;
        margin-right: auto; }
    #scrolled-header #right-nav,
    #scrolled-header #scrolled-right-nav,
    .header #right-nav,
    .header #scrolled-right-nav {
      margin-left: 40px; }
  .custom-logo-link {
    position: relative;
    width: 170px;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
    .footer .custom-logo-link {
      -webkit-transform: translate(0, 0) !important;
              transform: translate(0, 0) !important; }
  .mobile-nav {
    display: none; }
  #nav-toggle {
    display: none; }
  #scrolled-header {
    display: block;
    background: #D8232A;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    transition: all 0.25s ease-in-out; }
    #scrolled-header.scrolled {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1; }
    #scrolled-header nav.main-cat-menu-nav {
      top: 0; }
    #scrolled-header nav ul li a {
      color: #fff; }
      #scrolled-header nav ul li a.active, #scrolled-header nav ul li a:focus, #scrolled-header nav ul li a:hover {
        color: #fff; }
    #scrolled-header nav ul.sub-menu li a {
      color: #000; }
      #scrolled-header nav ul.sub-menu li a.active, #scrolled-header nav ul.sub-menu li a:focus, #scrolled-header nav ul.sub-menu li a:hover {
        color: #000; }
    #scrolled-header #scrolled-right-nav {
      margin-top: -8px; }
      #scrolled-header #scrolled-right-nav .cart-toggle {
        width: 18px; }
      #scrolled-header #scrolled-right-nav .my-account,
      #scrolled-header #scrolled-right-nav .wishlist-link {
        margin-right: 10px; }
        #scrolled-header #scrolled-right-nav .my-account span,
        #scrolled-header #scrolled-right-nav .wishlist-link span {
          font-size: 1.3rem; }
        #scrolled-header #scrolled-right-nav .my-account img,
        #scrolled-header #scrolled-right-nav .wishlist-link img {
          width: 23px; }
    #scrolled-header .nav > li {
      margin: 0 7px; }
      #scrolled-header .nav > li > a {
        padding: 4px 3px 10px;
        font-size: 1.3rem; }
      #scrolled-header .nav > li:first-of-type {
        margin-left: 0; }
      #scrolled-header .nav > li:last-of-type {
        margin-right: 0; }
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    border: 0;
    margin: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav > li {
      float: left;
      margin: 0 10px; }
      .nav > li > a {
        font-size: 1.5rem;
        padding: 4px 3px 20px;
        position: relative;
        background: transparent;
        border-radius: 0;
        color: #fff; }
        .nav > li > a:focus, .nav > li > a:hover {
          color: #fff;
          text-decoration: none; }
        .nav > li > a.active {
          color: #fff;
          text-decoration: none; }
      .nav > li:after {
        content: none; }
      .nav > li.menu-item-has-children > a:after {
        content: none; }
      .nav > li.menu-item-has-children:after {
        display: inline-block;
        content: '';
        width: 14px;
        height: 7px;
        background-image: url("../images/down-arrow.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        bottom: 2px;
        padding-left: 3px;
        transition: all 0.14s ease-in-out;
        -webkit-filter: invert(1);
                filter: invert(1); }
      .nav > li.menu-item-has-children:hover:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
      .nav > li:first-of-type {
        margin-left: 0; }
      .nav > li:last-of-type {
        margin-right: 0; }
    .nav > li {
      position: initial; }
      .nav > li > ul.sub-menu {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        position: absolute;
        /* left: $base-padding; */
        right: auto !important;
        width: auto;
        max-width: 100%;
        background: #fff;
        margin: 0;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
        border-radius: 0;
        padding: 0;
        pointer-events: none;
        opacity: 0;
        -webkit-transform: translate(0, 10px);
                transform: translate(0, 10px);
        transition: all 0.214s ease-in-out; }
        .nav > li > ul.sub-menu > li {
          display: inline-block;
          padding: 0 40px;
          margin: 30px 0;
          float: left; }
          .nav > li > ul.sub-menu > li:first-of-type {
            padding-left: 20px; }
          .nav > li > ul.sub-menu > li.menu-item {
            border-right: 1px solid #f1f1f1; }
            .nav > li > ul.sub-menu > li.menu-item.last-of-type {
              padding-right: 0;
              border: none; }
          .nav > li > ul.sub-menu > li.inactive-link > a {
            cursor: default; }
          .nav > li > ul.sub-menu > li > a {
            font-weight: 500;
            position: relative;
            display: inline-block;
            padding: 2px 3px;
            font-size: 1.5rem;
            text-decoration: none;
            color: #000; }
          .nav > li > ul.sub-menu > li ul {
            margin: 10px 0 0;
            display: block;
            min-width: 150px; }
            .nav > li > ul.sub-menu > li ul li {
              display: block;
              float: none;
              margin: 3px 0; }
              .nav > li > ul.sub-menu > li ul li a {
                display: block;
                color: #000;
                font-size: 1.5rem;
                padding: 2px 3px;
                text-decoration: none; }
              .nav > li > ul.sub-menu > li ul li:last-of-type {
                margin-bottom: 0; }
          .nav > li > ul.sub-menu > li.hidden-menu-item > a {
            position: absolute;
            pointer-events: none;
            visibility: hidden; }
          .nav > li > ul.sub-menu > li.hidden-menu-item > ul.sub-menu {
            margin-top: 0; }
        .nav > li > ul.sub-menu.with-image {
          width: calc(100% - 40px);
          justify-content: space-between; }
          .nav > li > ul.sub-menu.with-image li.menu-image {
            padding-right: 0;
            position: relative;
            display: block;
            margin-left: auto;
            margin-top: 0;
            margin-bottom: 0;
            width: 100%;
            max-width: 300px;
            line-height: 0; }
            .nav > li > ul.sub-menu.with-image li.menu-image img {
              position: absolute;
              top: 0;
              right: 0;
              width: 100%;
              height: 100%;
              -o-object-fit: cover;
                 object-fit: cover; }
      .nav > li.align-left > ul.sub-menu {
        left: 20px; }
      .nav > li:hover > ul.sub-menu {
        pointer-events: all;
        opacity: 1;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0); }
  /* end .nav */
  /*********************
SP WOOCOMMERCE MINI CART
*********************/
  .sp-mini-cart {
    top: 0;
    height: 100vh; }
  /*********************
POSTS & CONTENT STYLES
*********************/
  #content {
    margin-top: 0; }
    .home #content {
      margin-top: 0; }
    #content.nav-active:after {
      opacity: 0; }
    #content.sp-cart-active:after {
      opacity: 1; }
  /*********************
PAGE NAVI STYLES
*********************/
  .facetwp-pager {
    width: calc(100% - 250px - 20px);
    display: inline-block;
    float: right; }
  /*********************
WOOCOMMERCE STYLES
*********************/
  .woocommerce-breadcrumb {
    display: block;
    width: 100%; }
    .woocommerce.archive .woocommerce-breadcrumb {
      display: inline-block;
      text-align: left; }
  /*********************
WOOCOMMERCE SINGLE PRODUCT
*********************/
  .woocommerce.single-product div.product {
    justify-content: space-between; }
  /*********************
WOOCOMMERCE ARCHIVE STYLES
*********************/
  .search .facets,
  .tax-pwb-brand .facets,
  .woocommerce .facets {
    display: none; }
  .search.archive .woocommerce-products-header, .search.tax-pwb-brand .woocommerce-products-header,
  .tax-pwb-brand.archive .woocommerce-products-header,
  .tax-pwb-brand.tax-pwb-brand .woocommerce-products-header,
  .woocommerce.archive .woocommerce-products-header,
  .woocommerce.tax-pwb-brand .woocommerce-products-header {
    text-align: left;
    border-bottom: 0;
    padding: 0;
    margin-right: auto;
    width: auto; }
  .search.archive .woocommerce-ordering, .search.tax-pwb-brand .woocommerce-ordering,
  .tax-pwb-brand.archive .woocommerce-ordering,
  .tax-pwb-brand.tax-pwb-brand .woocommerce-ordering,
  .woocommerce.archive .woocommerce-ordering,
  .woocommerce.tax-pwb-brand .woocommerce-ordering {
    margin-right: 0;
    max-width: calc(33.333% - 13px); }
  .search .sp-facet-container,
  .tax-pwb-brand .sp-facet-container,
  .woocommerce .sp-facet-container {
    min-width: 250px;
    margin-bottom: 0; }
  .search .facetwp-facet,
  .tax-pwb-brand .facetwp-facet,
  .woocommerce .facetwp-facet {
    left: 0;
    width: 100%; }
  .search .desktop-facets,
  .tax-pwb-brand .desktop-facets,
  .woocommerce .desktop-facets {
    display: inline-block;
    width: 250px;
    float: left;
    margin-right: 20px;
    min-height: calc(100vh - 218px); }
    .search .desktop-facets .facetwp-facet,
    .search .desktop-facets .product-categories,
    .tax-pwb-brand .desktop-facets .facetwp-facet,
    .tax-pwb-brand .desktop-facets .product-categories,
    .woocommerce .desktop-facets .facetwp-facet,
    .woocommerce .desktop-facets .product-categories {
      display: none;
      margin-bottom: 20px;
      padding: 20px; }
    .search .desktop-facets .facetwp-facet,
    .search .desktop-facets .product-categories,
    .tax-pwb-brand .desktop-facets .facetwp-facet,
    .tax-pwb-brand .desktop-facets .product-categories,
    .woocommerce .desktop-facets .facetwp-facet,
    .woocommerce .desktop-facets .product-categories {
      padding: 0;
      position: relative;
      left: 0;
      width: 250px;
      max-width: 250px;
      background: transparent;
      box-shadow: none; }
      .search .desktop-facets .facetwp-facet ul.sub-terms,
      .search .desktop-facets .product-categories ul.sub-terms,
      .tax-pwb-brand .desktop-facets .facetwp-facet ul.sub-terms,
      .tax-pwb-brand .desktop-facets .product-categories ul.sub-terms,
      .woocommerce .desktop-facets .facetwp-facet ul.sub-terms,
      .woocommerce .desktop-facets .product-categories ul.sub-terms {
        display: block; }
      .search .desktop-facets .facetwp-facet li,
      .search .desktop-facets .product-categories li,
      .tax-pwb-brand .desktop-facets .facetwp-facet li,
      .tax-pwb-brand .desktop-facets .product-categories li,
      .woocommerce .desktop-facets .facetwp-facet li,
      .woocommerce .desktop-facets .product-categories li {
        width: 100%;
        display: block; }
        .search .desktop-facets .facetwp-facet li a.current-cat, .search .desktop-facets .facetwp-facet li a:hover,
        .search .desktop-facets .product-categories li a.current-cat,
        .search .desktop-facets .product-categories li a:hover,
        .tax-pwb-brand .desktop-facets .facetwp-facet li a.current-cat,
        .tax-pwb-brand .desktop-facets .facetwp-facet li a:hover,
        .tax-pwb-brand .desktop-facets .product-categories li a.current-cat,
        .tax-pwb-brand .desktop-facets .product-categories li a:hover,
        .woocommerce .desktop-facets .facetwp-facet li a.current-cat,
        .woocommerce .desktop-facets .facetwp-facet li a:hover,
        .woocommerce .desktop-facets .product-categories li a.current-cat,
        .woocommerce .desktop-facets .product-categories li a:hover {
          text-decoration: underline; }
        .search .desktop-facets .facetwp-facet li:nth-of-type(3),
        .search .desktop-facets .product-categories li:nth-of-type(3),
        .tax-pwb-brand .desktop-facets .facetwp-facet li:nth-of-type(3),
        .tax-pwb-brand .desktop-facets .product-categories li:nth-of-type(3),
        .woocommerce .desktop-facets .facetwp-facet li:nth-of-type(3),
        .woocommerce .desktop-facets .product-categories li:nth-of-type(3) {
          margin-bottom: 20px; }
    .search .desktop-facets > *:first-of-type h4:after,
    .tax-pwb-brand .desktop-facets > *:first-of-type h4:after,
    .woocommerce .desktop-facets > *:first-of-type h4:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .search .desktop-facets > *:first-of-type h4.active:after,
    .tax-pwb-brand .desktop-facets > *:first-of-type h4.active:after,
    .woocommerce .desktop-facets > *:first-of-type h4.active:after {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    .search .desktop-facets > *:first-of-type .facetwp-facet,
    .search .desktop-facets > *:first-of-type .product-categories,
    .tax-pwb-brand .desktop-facets > *:first-of-type .facetwp-facet,
    .tax-pwb-brand .desktop-facets > *:first-of-type .product-categories,
    .woocommerce .desktop-facets > *:first-of-type .facetwp-facet,
    .woocommerce .desktop-facets > *:first-of-type .product-categories {
      display: block; }
  .search .archive-header,
  .tax-pwb-brand .archive-header,
  .woocommerce .archive-header {
    width: calc(100% - 250px - 20px);
    position: relative; }
    .search .archive-header .extra-filters,
    .tax-pwb-brand .archive-header .extra-filters,
    .woocommerce .archive-header .extra-filters {
      grid-template-columns: 1fr 1fr 1fr; }
      .search .archive-header .extra-filters .facet-categories,
      .tax-pwb-brand .archive-header .extra-filters .facet-categories,
      .woocommerce .archive-header .extra-filters .facet-categories {
        display: none !important; }
  .search.archive ul.products, .search.search-no-results ul.products, .search.search-results ul.products,
  .tax-pwb-brand.archive ul.products,
  .tax-pwb-brand.search-no-results ul.products,
  .tax-pwb-brand.search-results ul.products,
  .woocommerce.archive ul.products,
  .woocommerce.search-no-results ul.products,
  .woocommerce.search-results ul.products {
    width: calc(100% - 250px - 20px);
    display: inline-block; }
    .search.archive ul.products .facetwp-template, .search.search-no-results ul.products .facetwp-template, .search.search-results ul.products .facetwp-template,
    .tax-pwb-brand.archive ul.products .facetwp-template,
    .tax-pwb-brand.search-no-results ul.products .facetwp-template,
    .tax-pwb-brand.search-results ul.products .facetwp-template,
    .woocommerce.archive ul.products .facetwp-template,
    .woocommerce.search-no-results ul.products .facetwp-template,
    .woocommerce.search-results ul.products .facetwp-template {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: stretch; }
      .search.archive ul.products .facetwp-template li.product, .search.search-no-results ul.products .facetwp-template li.product, .search.search-results ul.products .facetwp-template li.product,
      .tax-pwb-brand.archive ul.products .facetwp-template li.product,
      .tax-pwb-brand.search-no-results ul.products .facetwp-template li.product,
      .tax-pwb-brand.search-results ul.products .facetwp-template li.product,
      .woocommerce.archive ul.products .facetwp-template li.product,
      .woocommerce.search-no-results ul.products .facetwp-template li.product,
      .woocommerce.search-results ul.products .facetwp-template li.product {
        margin-bottom: 20px; }
  .search.single-product .archive-header,
  .tax-pwb-brand.single-product .archive-header,
  .woocommerce.single-product .archive-header {
    width: 100%; }
  .search .related ul.products,
  .tax-pwb-brand .related ul.products,
  .woocommerce .related ul.products {
    width: 100%; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1174px) {
  /******************************************************************

Stylesheet: Super Large Monitor Stylesheet

******************************************************************/ }

/*********************
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) {
  /******************************************************************

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.

******************************************************************/ }

/*********************
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 {
  /******************************************************************

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.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
