/*!
Theme Name: Bedre
Theme URI:
Author:
Author URI:
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bedre
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Bedre is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}


/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
    color: #ff7342;
}

a:visited {}

a:hover,
a:focus,
a:active {
    color: #ff7342;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}


/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}


/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.textright {
    text-align: right;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 4rem 0 4rem;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

.hide {
    display: none
}


/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.container {
    position: relative;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
}


/* For devices larger than 400px */

@media (min-width: 400px) {
    .container {
        width: 85%;
        padding: 0;
    }
}


/* For devices larger than 550px */

@media (min-width: 550px) {
    .container {
        width: 90%;
    }
    .column,
    .columns {
        margin-left: 4%;
    }
    .column:first-child,
    .columns:first-child {
        margin-left: 0;
    }
    .one.column,
    .one.columns {
        width: 4.66666666667%;
    }
    .two.columns {
        width: 13.3333333333%;
    }
    .three.columns {
        width: 22%;
    }
    .four.columns {
        width: 30.6666666667%;
    }
    .five.columns {
        width: 39.3333333333%;
    }
    .six.columns {
        width: 48%;
    }
    .seven.columns {
        width: 56.6666666667%;
    }
    .eight.columns {
        width: 65.3333333333%;
    }
    .nine.columns {
        width: 74.0%;
    }
    .ten.columns {
        width: 82.6666666667%;
    }
    .eleven.columns {
        width: 91.3333333333%;
    }
    .twelve.columns {
        width: 100%;
        margin-left: 0;
    }
    .one-third.column {
        width: 30.6666666667%;
    }
    .two-thirds.column {
        width: 65.3333333333%;
    }
    .one-half.column {
        width: 48%;
    }
    /* Offsets */
    .offset-by-one.column,
    .offset-by-one.columns {
        margin-left: 8.66666666667%;
    }
    .offset-by-two.column,
    .offset-by-two.columns {
        margin-left: 17.3333333333%;
    }
    .offset-by-three.column,
    .offset-by-three.columns {
        margin-left: 26%;
    }
    .offset-by-four.column,
    .offset-by-four.columns {
        margin-left: 34.6666666667%;
    }
    .offset-by-five.column,
    .offset-by-five.columns {
        margin-left: 43.3333333333%;
    }
    .offset-by-six.column,
    .offset-by-six.columns {
        margin-left: 52%;
    }
    .offset-by-seven.column,
    .offset-by-seven.columns {
        margin-left: 60.6666666667%;
    }
    .offset-by-eight.column,
    .offset-by-eight.columns {
        margin-left: 69.3333333333%;
    }
    .offset-by-nine.column,
    .offset-by-nine.columns {
        margin-left: 78.0%;
    }
    .offset-by-ten.column,
    .offset-by-ten.columns {
        margin-left: 86.6666666667%;
    }
    .offset-by-eleven.column,
    .offset-by-eleven.columns {
        margin-left: 95.3333333333%;
    }
    .offset-by-one-third.column,
    .offset-by-one-third.columns {
        margin-left: 34.6666666667%;
    }
    .offset-by-two-thirds.column,
    .offset-by-two-thirds.columns {
        margin-left: 69.3333333333%;
    }
    .offset-by-one-half.column,
    .offset-by-one-half.columns {
        margin-left: 52%;
    }
}


/* Base Styles
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */


/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */

html {
    font-size: 62.5%;
}

body {
    font-size: 1.5em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-weight: 400;
    font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
}


/* Typography
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 300;
}

h1 {
    font-size: 4.0rem;
    line-height: 1.2;
    letter-spacing: -.1rem;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

h3 {
    font-size: 3.0rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
}

h4 {
    font-size: 2.4rem;
    line-height: 1.35;
    letter-spacing: -.08rem;
}

h5 {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
}


/* Larger than phablet */

@media (min-width: 550px) {
    h1 {
        font-size: 5.0rem;
    }
    h2 {
        font-size: 4.2rem;
    }
    h3 {
        font-size: 3.6rem;
    }
    h4 {
        font-size: 3.0rem;
    }
    h5 {
        font-size: 2.4rem;
    }
    h6 {
        font-size: 1.5rem;
    }
}

p {
    margin-top: 0;
}


/* Links
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

a {
    color: #ff7342;
}

a:hover {
    color: #ff7342;
}


/* Buttons
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    height: auto;
    padding: 1.3rem 4rem;
    color: #39332e;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 200;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 0;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    background: #ffc341;
    transition: all ease .2s
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: #FFF;
    outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #FFF;
    background-color: #33C3F0;
    border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #FFF;
    background-color: #1EAEDB;
    border-color: #1EAEDB;
}


/* Forms
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}


/* Removes awkward default styles on some inputs for iOS */

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #33C3F0;
    outline: 0;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label>.label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}


/* Lists
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 1rem;
}


/* Code
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre>code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}


/* Tables
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}


/* Spacing
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

button,
.button {
    margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 2rem;
}


/* Utilities
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}


/* Misc
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}


/* Clearing
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */


/* Self Clearing Goodness */

.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}


/*! Lity - v2.2.2 - 2017-07-17 */

.lity {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background: #0b0b0b;
    background: rgba(0, 0, 0, 0.9);
    outline: none !important;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.lity.lity-opened {
    opacity: 1
}

.lity.lity-closed {
    opacity: 0
}

.lity * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.lity-wrap {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    outline: none !important
}

.lity-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em
}

.lity-loader {
    z-index: 9991;
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -0.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.lity-loading .lity-loader {
    opacity: 1
}

.lity-container {
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: none !important
}

.lity-content {
    z-index: 9993;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: -o-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease
}

.lity-loading .lity-content,
.lity-closed .lity-content {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8)
}

.lity-content:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6)
}

.lity-close {
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.lity-close::-moz-focus-inner {
    border: 0;
    padding: 0
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.lity-close:active {
    top: 1px
}

.lity-image img {
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
    width: 100%;
    max-width: 964px
}

.lity-iframe-container {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: auto;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch
}

.lity-iframe-container iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000
}

.lity-hide {
    display: none
}


/* Glide
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.glide {
    position: relative;
    width: 100%;
    height: 100%
}

.glide__wrapper {
    overflow: hidden
}

.glide__track {
    position: relative;
    width: 100%;
    height: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -ms-touch-action: pan-Y;
    touch-action: pan-Y;
    overflow: hidden;
    padding: 0
}

.glide__track.dragging {
    cursor: grabbing;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.glide__slide {
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent
}

.glide__slide a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.glide__arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.glide__arrow {
    cursor: pointer
}

.glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.glide--slider .glide__slide {
    float: left;
    clear: none
}

.glide--carousel.glide--vertical .glide__track {
    overflow: visible
}

.glide--carousel .glide__slide {
    float: left;
    clear: none
}

.glide--slideshow .glide__wrapper {
    height: 100%
}

.glide--slideshow .glide__slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: translate3d(0, 0, 0)
}

.glide--slideshow .glide__slide.active {
    z-index: 1
}

.glide__arrows {
    position: absolute
}

.glide--horizontal .glide__arrows {
    top: 50%;
    width: 92%;
    margin-left: 4%
}

.glide--vertical .glide__arrows {
    left: 50%;
    height: 88%;
    margin-top: 6%
}

.glide__arrow {
    position: absolute;
    z-index: 2;
    color: white;
    text-transform: uppercase;
    font: 11px Arial, sans-serif;
    padding: 9px 12px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    opacity: 1;
    -webkit-transition: opacity 150ms ease, border 300ms ease-in-out;
    transition: opacity 150ms ease, border 300ms ease-in-out
}

.glide__arrow.disabled {
    opacity: .33
}

.glide__arrow:focus {
    outline: none
}

.glide__arrow:hover {
    border-color: white
}

.glide--horizontal .glide__arrow {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.glide--horizontal .glide__arrow.prev {
    left: 0
}

.glide--horizontal .glide__arrow.next {
    right: 0
}

.glide--vertical .glide__arrow {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.glide--vertical .glide__arrow.prev {
    top: 0
}

.glide--vertical .glide__arrow.next {
    bottom: 0
}

.glide__bullets {
    position: absolute;
    z-index: 2;
    list-style: none
}

.glide--horizontal .glide__bullets {
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
    text-align: center
}

.glide--vertical .glide__bullets {
    top: 50%;
    right: 8%;
    width: 12px;
    height: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.glide__bullets>* {
    display: inline-block;
    background-color: rgb(65, 34, 19);
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

.glide--horizontal .glide__bullets>* {
    margin: 0 5px
}

.glide--vertical .glide__bullets>* {
    vertical-align: middle
}

.glide__bullets>*.active {
    background-color: #ffc341 !important;
}

.glide__bullets>*:focus {
    outline: none
}

.glide__bullets>*:hover,
.glide__bullets>*:focus {
    border: 2px solid rgb(65, 34, 19);
    background-color: rgb(65, 34, 19)
}


/* Body customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

body {
    color: #1b1a19;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 1.7rem;
    line-height: 2.2rem
}


/* Fonts customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

@font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/bebas-neue-regular.eot?#iefix') format('embedded-opentype'), url('fonts/bebas-neue-regular.otf') format('opentype'), url('fonts/bebas-neue-regular.woff') format('woff'), url('fonts/bebas-neue-regular.ttf') format('truetype'), url('fonts/bebas-neue-regular.svg#bebas-neue-regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeueBook';
    src: url('fonts/BebasNeueBook.eot?#iefix') format('embedded-opentype'), url('fonts/BebasNeueBook.otf') format('opentype'), url('fonts/BebasNeueBook.woff') format('woff'), url('fonts/BebasNeueBook.ttf') format('truetype'), url('fonts/BebasNeueBook.svg#BebasNeueBook') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* Header customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

header.site-header {
    background-color: #412213 !important;
    height: auto;
    border-bottom: 0px solid #191919;
    position: fixed;
    width: 100%;
    border-top: 0rem solid #ffc341;
    z-index: 999;
    top: 0;
    left: 0;
    background-image: url(images/header-dotted-line.png);
    background-repeat: repeat-x;
    background-position: 0 6px;
    padding: 2.6rem 0 0;
    /* height: 190px; */
}

header.site-header>.container {
    margin-bottom: 11px;
}

.site-title img {
    width: 100%;
    max-width: 153px;
}

.main-navigation {
    margin-top: 3rem;
}

.main-navigation ul {
    display: inline-block;
    width: 100%;
}

.main-navigation li {
    float: none;
    position: static;
    display: inline-block;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
    font-size: 2rem;
    padding: 9px 25px;
    transition: all ease .2s;
}

.main-navigation a:hover {
    color: #412213;
    background-color: #e2e2e2;
}

header.site-header .columns {
    margin-left: 0;
}

header.site-header .search-form {
    display: inline-block;
    width: 90%;
    float: right;
    text-align: right;
    margin-top: 0rem;
    position: absolute;
    top: 3.2rem;
    right: 0;
    max-width: 500px;
}

header.site-header .search-form label {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: top;
    width: 70%;
}

header.site-header .screen-reader-text {
    display: none;
}

header.site-header .search-field {
    border-right: 0;
    width: 100%;
    border-radius: 0;
    padding: 8px 12px;
    height: auto;
    margin: 0;
    color: #a1a1a1;
    box-shadow: 0 0 0;
    font-weight: 300;
    border: 1px solid #808080;
    text-transform: uppercase;
    font-size: 1.25rem;
}

header.site-header .search-submit {
    border: 0;
    border-radius: 0;
    width: 35px;
    height: 35px;
    background-image: url(images/icon.png);
    background-color: #808080;
    background-position: -71px -322px;
    background-repeat: no-repeat;
    padding: 0;
    float: none;
    text-indent: -99999px;
    float: right;
}

ul.links {
    margin: 0;
    list-style: none;
    width: 100%;
    text-align: right;
    display: inline-block;
    position: absolute;
}

ul.links li a i {
    float: left;
    font-size: 130%;
    line-height: 30px;
    padding: 0 10px;
}

ul.links li {
    color: #eaeaea;
    float: none;
    margin-top: initial;
    margin-left: 15px;
    display: inline-block;
}

ul.links li a {
    padding-left: 0;
    display: block;
    font-size: 12px;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    color: #ffc341;
    padding-left: 25px;
}

ul.links li a:hover {
    color: #fff;
}

ul.links .myaccount a {
    background: transparent url(images/my-account.png) no-repeat left center;
}

ul.links .cart a {
    background: transparent url(images/my-cart.png) no-repeat left center;
}

ul.links .checkout a {
    background: transparent url(images/checkout.png) no-repeat left center;
}

#subscriptionform {
    background: #412213 !important;
    padding: 3rem;
    text-align: center;
    color: #FFF;
    max-width: 360px;
}

#subscriptionform h5 {
    color: rgb(255, 195, 65);
}

.lity-close {
    display: none
}

#subscriptionform .lity-close {
    display: block;
    background: #000;
}

.topbar {
    display: inline-block;
    text-align: center;
    width: 100%;
    top: 0;
    padding: 10px 0;
    background-color: #ffc341;
    font-size: 2rem;
}


/* Page customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

#breadcrumb {
    background: #fff !important;
    margin-bottom: 0rem;
    text-transform: uppercase;
}

#breadcrumb .container {
    padding: 2.4rem 0;
    font-size: 1.8rem;
    color: #2e2e2e;
}

#breadcrumb .container span {
    color: #2e2e2e;
    margin-right: 2px;
    font-size: 1.8rem;
}

#breadcrumb .container span a span {
    color: #9f9f9f;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
}

#content {
    border-top: 2.1rem;
    display: inline-block;
    width: 100%;
    margin-top: 170px;
    padding: 0rem 0 0;
}

.entry-title {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    color: #373737;
    font-size: 6rem;
    line-height: 6rem;
    margin-bottom: 0rem;
    display: inline-block;
    width: 100%;
}

.featureimage img {
    width: 100%;
    height: auto;
    float: left;
}

.page-template-default .entry-content {
    margin: 1.5em 3rem 0;
}

.page-template-default .post-thumbnail {
    margin: 3rem 0 5rem;
}

.comments-link {
    display: none !important
}


/* Search Page customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

body.search .content-area {
    padding: 3rem 0;
}

body.search h1 {
    font-size: 4rem;
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    text-align: center;
}

body.search .content-area article {
    display: inline-block;
    width: calc(100% / 3 - 20px);
    padding: 27px;
    vertical-align: top;
    margin: 0;
}

body.search .content-area article .entry-title {
    font-size: 3.6rem;
    line-height: 3.6rem;
}


/* Home Page customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

#homeslide {}

#homeslide ul {
    padding: 0;
    margin: 0;
}

#homeslide li {
    min-height: 34vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#homeslide li .slidelink {
    position: absolute;
    width: 100%;
    height: 100%;
}

#homeslide li .slidecontent {
    position: absolute;
    bottom: 2vw;
    display: inline-block;
    left: 15vw;
    max-width: 450px;
    pointer-events: none
}

#homeslide li .slidecontent h5 {
    text-shadow: none;
    font-size: 8rem;
    border-width: 0px;
    font-family: BebasNeueRegular;
    color: #ffffff;
    line-height: 7.5rem;
    pointer-events: none;
}

#homeslide li .slidecontent .button {
    font-family: 'Source Sans Pro';
    color: #39332e;
    padding: 22px 26px 22px 26px;
    font-size: 3rem;
    font-weight: 400;
    background-color: rgb(255, 195, 65);
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    height: auto;
}

#homeslide li .slidecontent .button b {
    font-weight: bold
}

.glide--horizontal .glide__arrows {
    top: 50%;
    width: 100%;
    margin-left: 0;
}


/* slider buttons */

.prev.glide__arrow,
.next.glide__arrow {
    height: 74px !important;
    width: 38px !important;
    border: 0;
    font-size: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    transition: all 0.5s ease 0s, background-position 1ms;
    -webkit-transition: all 0.5s ease 0s, background-position 1ms;
    -moz-transition: all 0.5s ease 0s, background-position 1ms;
    opacity: 0
}

#homeslide:hover .glide__arrow {
    opacity: 1;
}

.prev.glide__arrow:hover,
.next.glide__arrow:hover {
    background-color: transparent;
}

.prev.glide__arrow i,
.next.glide__arrow i {
    display: none;
}

.prev.glide__arrow {
    background: transparent url("images/slider-buttons.png") no-repeat center left;
}

.prev.glide__arrow:hover {
    background: transparent url("images/slider-buttons.png") no-repeat -38px center;
}

.next.glide__arrow {
    background: transparent url("images/slider-buttons.png") no-repeat right center !important;
}

.next.glide__arrow:hover {
    background-position: -76px center !important;
}


/* Our Story customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.page-template-page-our-story .hentry {
    margin-top: 0rem;
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    margin-bottom: 0;
}

#storyheader {
    max-width: 970px;
    margin: 0 auto;
    padding: 15px;
    background: transparent url(images/our-story-bg.png) repeat left top;
}

#storyheader .border {
    border: 1px solid #FFF;
    padding: 4rem 4rem 2rem;
    color: #FFF;
}

#storyheader h1 {
    font-size: 9.4rem;
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
}

#storyheader p {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2rem;
    line-height: 1.75;
}

.featuredsections {}

.featuredsections li {
    margin: 0;
    display: flex;
}

.featuredsections .image {
    width: 45%;
    margin: 0;
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.featuredsections .content {
    width: 55%;
    vertical-align: top;
    padding: 7rem;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 20px;
    line-height: 2.4rem;
}

.featuredsections .content h5 {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    text-transform: uppercase;
    font-size: 7.6rem;
    margin-top: 0;
    line-height: 7rem;
    color: #342a22;
    max-width: 450px;
}

.featuredsections .content p {}

.featuredsections .content .button {
    display: inline-block;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2.6rem;
    padding: 10px 20px;
    background-color: #ffc341;
    text-transform: uppercase;
    color: #39332e;
    font-weight: normal;
    border: none;
    border-radius: 0;
    height: auto;
}

.featuredsections .content .button:hover {
    transition: all ease .3s;
    color: #FFF;
}

.page-template-page-our-story #content {
    display: block;
    background-color: #E8EDED;
}


/* Our Story customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.page-template-page-visit .hentry {
    margin-top: 0rem;
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    margin-bottom: 0;
}

#visitheader {
    display: block;
    width: 95%;
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

#visitheader h1 {
    text-align: center;
    text-transform: uppercase;
    font-family: 'BebasNeueBook';
    font-size: 8rem;
    color: #373737;
}

#visitheader .button {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2.3rem;
    padding: 1rem 2rem;
    display: inline-block;
    text-align: center;
    background-color: #ffc341;
    text-decoration: none;
    color: #39332e;
    text-transform: uppercase;
    width: auto;
    border: none;
    height: auto;
    border-radius: 0;
    transition: all ease .3s;
    margin-top: 2rem;
    font-weight: normal;
}

#visitheader .button:hover {
    color: #FFF
}

.visitimages {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.visitimages li {
    height: 26vw;
    width: 100%;
    max-width: 50%;
    display: inline-block;
    float: left;
    margin-bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Find Us customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.page-template-page-find-us .hentry {
    margin: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#findusheader {
    text-align: center;
    padding: 10rem 0 17rem;
}

#findusheader h1 {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1 !important;
    padding: 20px 0 10px;
    position: relative;
    margin-top: 0;
    margin-bottom: 5rem;
}

.featured_locations {
    margin: 0;
    width: 100%;
}

.featured_locations li {
    background: #616161;
    text-align: center;
    padding: 0 20px;
    border: 1px solid #545454;
    border-width: 0 1px 1px 1px;
    height: 470px;
    width: calc(100% / 3);
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    margin: 0;
    float: left;
    position: relative;
}

.featured_locations li:nth-child(even) {
    background: #4a4a4a;
}

.featured_locations .locationinfo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.featured_locations li h5 {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #fff;
    line-height: 1 !important;
    padding: 20px 0 10px;
    position: relative;
    margin-top: 0;
}

.featured_locations li h5:before,
.featured_locations li h5:after,
#findusheader h1:before,
#findusheader h1:after {
    content: '';
    display: block;
    height: 4px;
    width: 148px;
    background-color: #dea43f;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.featured_locations li h5:after,
#findusheader h1:after {
    top: auto;
    bottom: 0;
}

.featured_locations li p {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 1.8rem;
    color: #FFF;
}

.page-template-page-find-us .wpsl-search {
    margin-bottom: 0;
    padding: 12px 12px 0;
    background: #ffc341;
}

.page-template-page-find-us #wpsl-search-wrap .wpsl-input,
.page-template-page-find-us #wpsl-search-wrap .wpsl-select-wrap {
    display: inline-block;
    width: 43%;
}

.page-template-page-find-us #wpsl-search-wrap .wpsl-input label {
    width: 130px;
}

.page-template-page-find-us .wpsl-input label,
.page-template-page-find-us #wpsl-radius label,
.page-template-page-find-us #wpsl-category label {
    width: 105px;
    padding-top: 5px;
}

.page-template-page-find-us #wpsl-results label {
    width: auto;
    padding-top: 5px;
}

.page-template-page-find-us #wpsl-search-input {
    width: calc(100% - 200px);
}

.page-template-page-find-us #wpsl-wrap {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.page-template-page-find-us #wpsl-search-btn {
    display: inline-block;
    height: auto;
    padding: .7rem 2rem;
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 0;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    background: #39332e;
    transition: all ease .2s;
    float: none;
}

body select.wpsl-dropdown {
    padding: 5px 8px;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #412213 url(images/dropdown-arrow.png) no-repeat center right 7%;
    display: block;
    clear: both;
    width: 100%;
    color: #fff;
    min-height: 53px;
    background-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
}


/* Media Page customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.page-template-page-media #main {
    margin: 3rem auto;
}

.page-template-page-media #main h1 {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 6rem;
    text-transform: uppercase;
}

.page-template-page-media #main h3 {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 3rem;
    text-transform: uppercase;
}

.page-template-page-media #main ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}

.page-template-page-media #main li {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
}

hr {}


/* MegaMenu customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

#mega-menu-wrap-menu-header {
    background: none !important;
}

#mega-menu-wrap-menu-header #mega-menu-menu-header>li.mega-menu-item>a.mega-menu-link {
    text-transform: uppercase;
    margin-left: 1rem;
    margin-right: 1rem;
    transition: all .2s ease;
    font-family: Raleway, Arial, Helvetica, serif;
    font-size: 1.8rem
}

#mega-menu-wrap-menu-header #mega-menu-menu-header>li.mega-menu-item>a.mega-menu-link:hover {
    background: #ffc341;
    color: #333;
}

#mega-menu-wrap-menu-header #mega-menu-menu-header>li.mega-menu-megamenu>ul.mega-sub-menu {
    position: fixed;
    left: 0;
    background: #fff url(images/menu-bg.png) repeat-x top left;
}

#mega-menu-wrap-menu-header #mega-menu-menu-header li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
    padding: 20px;
}

.main-navigation ul ul li {
    float: none;
    position: static;
    display: inline-block;
    width: 100%;
    box-shadow: none;
    margin-bottom: 10px;
}

.main-navigation ul ul ul {
    left: 0;
    top: 0;
    color: #333;
    box-shadow: none;
    position: static;
}

.main-navigation ul ul a {
    color: #000;
    text-transform: uppercase;
    font-size: 1.5rem;
    width: auto;
    display: inline-block;
    padding: 0;
    margin: 0 0 10px;
    float: none;
}

.main-navigation ul ul .sub-menu li {
    padding: 0;
    margin: 0px 0 3px;
}

.main-navigation ul ul .sub-menu a {
    width: 100%;
    color: #000;
    text-transform: none;
    font-size: 1.4rem;
    width: 100%;
    display: inline-block;
    padding: 0;
    margin: 0;
    float: none;
}

.main-navigation li {
    float: none;
    position: static;
    display: inline-block;
    width: auto;
    box-shadow: none;
}

.main-navigation ul ul a:hover {
    color: #ffc341 !important;
    background: none
}

#mega-menu-wrap-menu-header #mega-menu-menu-header li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row {
    width: 90%;
    float: none;
    max-width: 1350px;
    display: block;
    margin: 0 auto;
}

#mega-menu-wrap-menu-header #mega-menu-menu-header li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
    padding: 20px 0;
}

.main-navigation ul ul .textwidget {
    line-height: 1.5rem;
}

.main-navigation ul ul .textwidget a {
    text-transform: none;
    text-decoration: underline !important;
    font-weight: bold;
    width: 100%;
}

.main-navigation ul ul .textwidget p a {
    width: auto;
}

.main-navigation ul ul .textwidget a img {
    width: 100%;
    display: inline-block;
}

.main-navigation ul ul .textwidget h4 {
    font-family: Raleway, Arial, Helvetica, serif;
    font-size: 2rem;
    margin: 0;
}


/* Contact Us customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.page-template-page-contact-us #content {
    background: #ffc341;
}

.page-template-page-contact-us #breadcrumb {
    display: none
}

.page-template-page-contact-us #content h1 {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 62px;
    line-height: 1;
    color: #58595b;
    margin-top: 35px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 0;
    outline: 0;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: auto;
    padding: 18px 15px;
    background-color: #fff;
    border: 0px solid #D1D1D1;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 1.5rem;
    width: 100%;
}

select {
    padding: 5px 8px;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #412213 url(images/dropdown-arrow.png) no-repeat center right 7%;
    display: block;
    clear: both;
    width: 100%;
    color: #fff;
    min-height: 53px;
    background-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
}

.wpcf7-form-control-wrap {
    position: relative;
    margin-right: 12px;
    display: inline-block;
    width: 100%;
    max-width: 330px;
    vertical-align: top;
}

.wpcf7-form-control-wrap.your-message {
    max-width: none
}

.wpcf7 label {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 25px;
    margin: 20px 0 10px;
    color: #58595b;
    font-weight: 300;
    text-transform: uppercase;
}

.wpcf7 input[type="submit"] {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2rem;
    padding: 10px 40px;
    display: inline-block;
    text-align: center;
    border: 0;
    background-color: #412213;
    height: auto;
    color: #FFF;
    border-radius: 0;
    margin-right: 15px;
}

.screen-reader-response {
    display: inline-block;
    color: red;
    width: 100%;
    border: 1px solid;
    padding: 10px 15px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}

span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
}

.screen-reader-response li {
    display: inline-block;
    width: 100%;
}

.screen-reader-response ul {
    margin-bottom: 0
}


/* Woocomerce customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.shoptitle {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 5.4rem;
    padding: 25px 0 10px;
    background-color: #7d251d;
    color: #fff;
    text-align: center;
    margin: 0;
}

.categorytitle {
    background-color: #7d251d;
}

.categorytitle h1 {
    font-family: 'BebasNeueRegular', Raleway, Arial, Helvetica, serif;
    font-size: 6.8rem;
    color: #fff;
    background-color: #7d251d;
    line-height: 1;
    padding: 20px 0 7px 0px;
    margin: 0;
}

.woocommerce-page {
    background: #fff !important;
}

.categorylist {
    margin-top: 8rem;
}

.categorylist li {
    display: inline-block;
    margin: 0 3rem 6rem;
    width: calc(33% - 6rem);
}

.categorylist li a {}

.categorylist li a img {}

.wc-nested-category-layout-category-title a {
    font-family: 'BebasNeueRegular', Raleway, Arial, Helvetica, serif;
    margin: 0 !important;
    display: block !important;
    padding: 15px 0 8px;
    color: #373737;
    transition: all ease .2s
}

.wc-nested-category-layout-category-title a:hover {
    color: #fff;
}

.wc-nested-category-layout-category-title {
    font-family: 'BebasNeueRegular', Raleway, Arial, Helvetica, serif;
    font-size: 4.8rem;
    color: #412213;
    background-color: #ffc341;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.woocommerce .products ul,
.woocommerce ul.products {
    margin: 5rem 0 0em;
    display: flex;
    flex-wrap: wrap;
}

.home .woocommerce ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none;
    margin: 0 5rem 5rem;
    padding: 0;
    position: relative;
    width: calc(100% / 3 - 11rem);
    display: inline-block;
    font-size: 0;
    vertical-align: top;
}

.woocommerce ul.products li.product .product_type_simple.ajax_add_to_cart {
    display: none;
}

.home #breadcrumb {
    display: none
}

.home #content {
    background: #fff !important;
}

.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .price {
    display: none
}

.woocommerce ul.products li.product .yith-wcqv-button {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0;
    width: 50px;
    height: 50px;
    background: url(images/show-modal.png);
    border-radius: 0;
    border: none
}

.woocommerce ul.products li.product a img {
    margin: 0;
}

.woocommerce ul.products li.product a {
    position: relative;
    display: block;
    width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 auto;
    font-family: 'BebasNeueRegular', Raleway, Arial, Helvetica, serif;
    font-size: 4.2rem;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    line-height: 3.7rem;
    padding: 15px 15px 7px;
    width: 100%;
    clear: none;
    text-align: center;
}


/* .archive.woocommerce ul.products li.product .woocommerce-loop-product__title {
    position: inherit;
    color: #000;
    font-size: 2.5rem;
    padding: 15px 0 7px;
    background: none;
    text-align: left;
    width: calc(100% - 60px);
    display: inline-block;
}

.archive.woocommerce ul.products li.product .price {
    font-size: 2rem;
    text-align: left;
    color: #9c7a50;
    display: block;
}

.archive.woocommerce ul.products li.product .star-rating {
    font-size: 1.2rem;
    margin: 0 0 10px;
} */

.woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce-ordering {
    display: none
}

.woocommerce #breadcrumb .container span:nth-of-type(3) {
    display: none
}

#breadcrumb .container span:nth-of-type(1) span:before {
    content: ''
}

#breadcrumb .container span span:before {
    content: ' > '
}

#yith-quick-view-content div.images {
    width: 60%;
}

#yith-quick-view-content div.summary {
    padding: 35px 50px 35px 20px;
    width: 40%;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    color: #9c7a50;
    font-weight: 600;
    font-size: 3rem;
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    background: transparent url(images/product-name-underline.png) repeat-x center bottom;
    border: 0;
    margin-bottom: 30px;
    padding: 5px 0 30px;
}

#yith-quick-view-modal .yith-quick-view-overlay {
    background: none;
}

#yith-quick-view-modal .yith-wcqv-main {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#yith-quick-view-modal.open .yith-wcqv-main {
    overflow-y: hidden;
}

#yith-quick-view-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    z-index: 100;
    background: transparent url(images/close-button.png) no-repeat center center;
    background-size: cover;
    cursor: pointer;
    font-size: 0;
}

#yith-quick-view-modal .content {
    display: none
}

.woocommerce div.product form.cart .button {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    color: #39332e;
    background-color: #ffc341;
    border: 0;
    padding: 15px;
    font-weight: 300;
    height: auto;
    font-size: 2rem;
    border-radius: 0;
    padding: 20px 18px;
}

.woocommerce div.product form.cart .button::last-word {
    font-weight: bold;
}

.woocommerce .quantity .qty {
    width: auto;
    text-align: center;
    max-width: 70px;
    border-radius: 0;
    height: 60px;
    padding: 14px;
    font-size: 2.3rem;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
}

#yith-quick-view-content div.images {
    pointer-events: none;
}

.woocommerce-tabs .wc-tabs {
    display: none;
}

.woocommerce #primary div.product .product_title {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 7.2rem;
    line-height: .9;
    margin: 30px 0 0;
    color: #58595b;
}

.woocommerce #primary .product_weight {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2.1rem;
    color: #121212;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    margin-top: .5rem;
}

.woocommerce #primary div.product p.price {
    font-size: 5rem;
    padding-bottom: 4rem;
    line-height: 5rem;
}

.woocommerce #primary div.product .product_dimensions {
    font-size: small;
    line-height: 15px;
    margin-bottom: 2rem;
}

.qty {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2.3rem;
    margin: 0;
    padding: 15px;
    color: #58595b;
    float: left;
}

.product_share span {
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 2.3rem;
    margin: 0;
    padding: 15px;
    color: #58595b;
    float: left;
}

.ssba a {
    text-decoration: none;
    background: none;
    font-size: 11px;
    font-weight: normal;
    margin: 1px 6px;
}

.related h2,
.upsells h2 {
    background: #ffc341;
    text-transform: uppercase;
    font-family: 'BebasNeueRegular', Raleway, Arial, Helvetica, serif;
    font-size: 4.2rem;
    padding: 15px 0 5px 0;
    text-align: center;
}

#yith-quick-view-content .product_dimensions,
#yith-quick-view-content .alergy,
#yith-quick-view-content .product_share {
    display: none;
}

#yith-quick-view-content .entry-title {
    font-size: 4.7rem;
    line-height: 4.7rem;
}

body.single-product .woocommerce-product-details__short-description .short {
    display: none;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: #FFF;
    color: #000;
    border: 2px solid #000000;
    font-family: Raleway;
    font-weight: lighter;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: #FFF;
    color: #000;
    border: 2px solid #000000;
    font-family: Raleway;
    font-weight: normal;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #ff7342;
    color: #fff;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #ff7342;
    color: #fff;
}

.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
    background-color: #ff7342;
    color: #fff;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
    width: 132px;
    padding: 12px;
}

.woocommerce-checkout .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-account .entry-content {
    margin: 3rem 0 0;
}

.woocommerce-Reviews-title {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 4rem;
    line-height: .9;
    margin: 30px 0 20px;
    color: #58595b;
}

.woocommerce #reviews #reply-title {
    font-family: 'BebasNeueBook', Raleway, Arial, Helvetica, serif;
    font-size: 2.5rem;
    line-height: .9;
    margin: 13px 0;
    color: #444;
    display: inline-block;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    background: #FFF;
}

.stars a,
.woocommerce .star-rating span::before {
    color: #ffc341
}

#review_form_wrapper textarea,
#review_form_wrapper input {
    max-width: 500px;
    border: 1px solid #eaeaea;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 0px solid #aaa;
    border-radius: 0;
}

.select2-container .select2-selection--single {
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px;
    right: 6px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 100px;
    box-shadow: none;
}

.woocommerce div.product p.price ins {
    background: none;
}

.page-id-237 .related.products {
    display: none;
}

.first-payment-date {
    display: none
}


/* Footer customization
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

footer.site-footer {
    border-top: 27px solid #311609;
    background-color: #412213;
    border-bottom: 21px solid #ffc341;
}

.menu-footer-menu-container {}

footer.site-footer ul.menu {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 4rem 0 0;
    margin-bottom: 0;
}

footer.site-footer ul.menu li {
    float: none;
    position: static;
    display: inline-block;
}

footer.site-footer ul.menu a {
    display: block;
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
    font-size: 2rem;
    padding: 0 25px;
    transition: all ease .2s;
    margin: 0px 4rem;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif
}

footer.site-footer ul.menu a:hover {
    color: #ffc341;
}

.footer-social h4 {
    display: inline-block;
    color: #fff;
    margin: 10px 17px 0 0;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1.8rem;
    vertical-align: top;
}

{
    margin: 0 106px 0 0;
    text-align: right;
    color: #bababa;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 13px;
}

.footer-social ul {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-social li {
    float: none;
    display: inline-block;
    line-height: 1;
}

.footer-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    background: transparent url("images/footer-social-icons.png") no-repeat;
    text-indent: -900px;
    margin: 0 2px;
    font-size: 0
}

.footer-social .facebook a {
    background-position: left bottom;
}

.footer-social .twitter a {
    background-position: -36px bottom;
}

.footer-social .instagram a {
    background-position: -72px bottom;
}

.footer-social .pinterest a {
    background-position: -108px bottom;
}

.footer-social .tripadvisor a {
    background-position: -144px bottom;
}

.footer-social li a:hover {
    background-position-y: top;
}

.footer_highlights:after,
.footer_highlights:before {
    content: '';
    background: url(images/header-dotted-line.png);
    background-repeat: repeat-x;
    display: inline-block;
    width: 100%;
    height: 8px;
    margin: 2rem 0;
}

.footer_highlights {}

.footer_highlights ul {
    text-align: center;
    margin: 0 0 1rem;
}

.footer_highlights ul li {
    display: inline-block;
    padding: 13px 40px 13px 105px;
    font-size: 1.6rem;
    border: 2px solid #fff;
    position: relative;
    line-height: 1.4;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    color: #FFF;
    margin: 0.5rem 2rem;
}

.footer_highlights ul li img {
    position: absolute;
    left: 13px;
    top: -13px;
}

.footer_logos {}

.footer_logos ul {
    margin-left: 0rem
}

.footer_logos ul li {
    display: inline-block;
    position: relative;
    margin: 0 1rem;
}

.footer_logos ul li a {
    display: inline-block;
    position: relative;
    transition: all ease .2s
}

.footer_logos ul li a .yellow {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.footer_logos ul li a:hover .yellow {
    opacity: 1;
}

.footer_logos ul li a:hover .white {
    opacity: 0;
}

.footer-info {
    text-align: right;
    color: #bababa;
    font-family: 'Source Sans Pro', Raleway, Arial, Helvetica, serif;
    font-size: 1.3rem;
}

.footer-info a {
    color: #FFF;
}

.site-footer .row {
    max-width: 90%;
    margin: 0 auto;
}

body a {
    text-decoration: none !important
}

.main-navigation li.hidethis {
    display: none
}

.myaccount_notice {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    border: 2px solid #412213;
    padding: 18px;
    text-align: center;
}

.wts_control_nav {
    height: 0
}

.woocommerce-product-gallery__image img {
    width: 200% !important;
    height: auto !important;
}

.woocommerce-product-gallery__image a img {
    width: 100% !important;
    height: auto !important;
}

.page-template-page-special-product .entry-content .single-product {
    margin-top: 5rem
}


/* Popup Discount
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.pum-theme-3528 .pum-container,
.pum-theme-lightbox .pum-container {
    padding: 18px;
    border-radius: 3px;
    border: 8px solid #412213 !important;
    box-shadow: 0px 0px 30px 0px rgba( 2, 2, 2, 1.00);
    background-color: #412213 !important;
    color: #FFF;
    text-align: center;
}

.pum-container.pum-responsive #discountpopup img {
    max-width: 100%;
    height: auto;
    width: 250px;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
}

.pum-container.pum-responsive #discountpopup h5 {
    color: #FFF;
    text-align: center;
    line-height: 3rem;
    margin-bottom: 0;
    font-size: 2.2rem;
}

.pum-container.pum-responsive #discountpopup h5 .discount {
    font-size: 5.5rem;
    line-height: 6rem;
    margin-bottom: 0rem;
    display: inline-block;
    font-weight: bold;
    width: 100%;
}

.pum-container.pum-responsive #discountpopup iframe {
    max-width: 100%;
    margin-top: 1rem;
    overflow: hidden;
}

.pum-container.pum-responsive #discountpopup br {
    display: none
}

.pum-container.pum-responsive #discountpopup p {
    margin-bottom: 0;
    text-align: center;
}

.pum-container.pum-responsive #discountpopup strong {
	width: 100%;
    display: inline-block;
    font-size: 3.6rem;
    margin-bottom: 0rem;
}
.pum-container.pum-responsive .yellow{
	color: #ffc341
}
.pum-container.pum-responsive #discountpopup .smaller{
	font-weight: bold;
}
.pum-container.pum-responsive #discountpopup .item {
    color: #FFF;
    font-size: 2rem;
}
.pum-container.pum-responsive #discountpopup .popmake-close {
    cursor: pointer;
    background: #777;
    color: #FFF;
    font-size: 2rem;
    padding: 2rem;
    line-height: 10px;
    margin-top: -1rem;
}

.pum-container.pum-responsive #discountpopup .popmake-close:hover {
    cursor: pointer;
    background: #777;
    color: #FFF;
}

.pum-theme-lightbox .pum-container {
    padding-bottom: 0 !important
}

.topbar a {
    color: #000;
    font-weight: bold;
}

.topbar br {
    display: none;
}

.search_mobile_trigger {
    display: none
}

.woocommerce-checkout .woocommerce form .form-row .input-text,.woocommerce-checkout .woocommerce-page form .form-row .input-text {
    border: 1px solid #CCC;
}
.woocommerce-checkout .woocommerce .select2-container--default .select2-selection--single {
    border: 1px solid #CCC;
}
.gift_checkbox_container .optional{
    display:none;
}
/* Media Queries
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

@media (max-width: 1500px) {
    .home .woocommerce ul.products li.product,
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        margin: 0 3rem 5rem;
        width: calc(100% / 3 - 7rem);
    }
}

@media (max-width: 1250px) {
    .footer_highlights ul li {
        width: calc(100% / 3 - 6rem);
        text-align: center;
        padding: 15px;
        vertical-align: top;
    }
    .footer_highlights ul li img {
        position: static;
        display: block;
        margin-bottom: 10px;
        margin: 0 auto 8px;
        max-height: 50px;
        width: auto;
    }
}

@media (max-width: 1170px) {
    html {
        font-size: 54.5%;
    }
}

@media (max-width: 1200px) {
    .featured_locations li {
        height: 350px;
    }
}

@media (max-width: 1030px) {
    html {
        font-size: 46.5%;
    }
    /* header.site-header{
        height: 155px;
    } */
    #content {
        margin-top: 150px;
    }
}

@media (max-width: 960px) {
    button#responsive-menu-button {
        top: 36px !important;
    }
    header.site-header {
        /* height: 148px; */
    }
    #content {
        margin-top: 148px;
    }
    .site-title img {
        width: 118%;
    }
    header.site-header .search-form {
        top: 3.8rem;
        right: 80px;
        max-width: 300px;
    }
    header.site-header .search-submit {
        width: 31px;
        height: 31px;
        background-position: -74px -323px;
    }
    ul.links {
        right: 80px;
    }
    #storyheader {
        max-width: 80%;
    }
    .page-template-page-find-us #wpsl-search-wrap .wpsl-input,
    .page-template-page-find-us #wpsl-search-wrap .wpsl-select-wrap {
        width: 80%;
    }
    .wpsl-select-wrap {
        display: none !important
    }
    .page-template-page-find-us #main .container {
        width: 100%;
        padding: 0;
    }
    .categorylist li {
        width: calc(50% - 7rem);
    }
    .home .woocommerce ul.products li.product,
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        margin: 0 3rem 5rem;
        width: calc(100% / 2 - 7rem);
    }
    .woocommerce .products ul,
    .woocommerce ul.products {
        display: block;
    }
}

@media (max-width: 767px) {
    ul.links {
        position: static;
        width: 100%;
        text-align: center;
        height: 48px;
        margin-top: 24px;
    }
    header.site-header .ten.columns {
        display: none;
    }
    header.site-header .two.columns {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin: 12px 0;
    }
    header.site-header {
        /* height: 240px; */
    }
    #content {
        margin-top: 240px;
    }
    button#responsive-menu-button {
        top: 114px !important;
    }
    footer.site-footer ul.menu a {
        padding: 0 17px;
        margin: 0;
    }
    .footer_highlights ul li {
        width: 100%;
        text-align: center;
        padding: 10px;
        vertical-align: top;
        max-width: 289px;
        margin-bottom: 20px;
        margin-top: 15px;
        text-align: center;
        padding-left: 70px;
    }
    .footer_highlights ul li img {
        position: absolute;
        display: block;
        margin-bottom: 10px;
        margin: 0 auto 8px;
        max-height: 63px;
        width: auto;
    }
    footer .six.columns {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .footer-info {
        text-align: center;
    }
    .footer_highlights:after,
    .footer_highlights:before {
        margin: 1rem 0;
    }
    .home .woocommerce ul.products li.product,
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        margin: 0 3rem 5rem;
        width: calc(100% - 6rem);
        max-width: 360px;
    }
    .woocommerce ul.products[class*=columns-] li.product:nth-child(2n),
    .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
        float: none;
    }
    .woocommerce .products ul,
    .woocommerce ul.products {
        text-align: center;
    }
    #homeslide li .slidecontent h5 {
        font-size: 5rem;
        line-height: 5.5rem;
    }
    #homeslide li .slidecontent .button {
        padding: 10px 17px 10px 17px;
        font-size: 2.5rem;
    }
    ul.links li.getdeals {
        margin-left: 0
    }
    ul.links li.getdeals a {
        padding-left: 0
    }
    .featured_locations li {
        height: auto;
        width: 100%;
        height: 260px;
    }
    #wpsl-wrap #wpsl-result-list ul li {
        list-style: none !important;
        display: inline-block;
        width: 100%;
        padding: 20px;
    }
    .woocommerce ul.products li.product .yith-wcqv-button {
        pointer-events: none;
    }
    .woocommerce ul.products[class*=columns-] li.product,
    .woocommerce-page ul.products[class*=columns-] li.product {
        margin: 0 0 5rem;
    }
    .woocommerce table.shop_table_responsive .product-quantity {
        height: auto;
        display: inline-block;
        width: 100%;
    }
    .woocommerce table.shop_table_responsive .product-quantity .qty {
        float: right;
        padding: 0;
        height: 33px;
    }
    /* .archive.woocommerce ul.products li.product .woocommerce-loop-product__title {
        display: block;
        margin: 0;
    }
    .search_mobile_trigger {
        display: inline-block;
        background-image: url(images/mobile_search.png);
        position: absolute;
        width: 27px;
        height: 27px;
        left: 2%;
        background-size: contain;
        top: 105px !important;
    } */
}

@media (max-width: 450px) {
    body li.myaccount {
        display: none
    }
    .site-title img {
        max-width: 160px;
    }
    header.site-header .two.columns {
        margin: 5px 0;
    }
    #homeslide li .slidecontent h5 {
        font-size: 3.5rem;
        line-height: 2.5rem;
    }
    #homeslide li .slidecontent .button {
        padding: 0px 13px 0px 13px;
        font-size: 2rem;
    }
    html {
        font-size: 42.5%;
    }
    footer.site-footer ul.menu a {
        padding: 0 10px;
    }
    #breadcrumb .container {
        width: 90%;
    }
    .featuredsections .content {
        font-size: 2rem;
        line-height: 3.4rem;
    }
    .featuredsections .content {
        width: 100%;
    }
    .featuredsections .image {
        height: 190px;
        width: 100%;
    }
    .featuredsections li {
        margin: 20px 0 0;
        display: inline-block;
        width: 100%;
    }
    .featuredsections .content h5 {
        font-size: 5.6rem;
        line-height: 6rem;
    }
    body {
        font-size: 2rem;
        line-height: 2.7rem;
    }
    .visitimages li {
        height: 54vw;
        width: 100%;
        max-width: 100%;
    }
    #findusheader {
        text-align: center;
        padding: 7rem 0 10rem;
    }
    .woocommerce ul.products[class*=columns-] li.product,
    .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100%;
        float: left;
        clear: both;
        margin: 0 0 3rem;
    }
    header.site-header {
        /* height: 190px; */
        padding-top: 0;
        border: none
    }
    .topbar {
        margin-bottom: 0 !important;
        position: static;
        line-height: 14px;
    }
    #content {
        margin-top: 190px;
    }
    .pum-theme-3528 .pum-container.custom-position {
        left: auto;
        top: auto;
        margin-left: inherit;
        position: fixed !important;
        top: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        left: 0 !important;
        height: 120vh;
        overflow: hidden !important;
    }
    html.pum-open.pum-open-overlay,
    html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
        overflow: hidden !important;
    }
    html.pum-open.pum-open-overlay,
    html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .pum-container .pum-content+.pum-close {
        display: none;
    }
    .pum-container.pum-responsive #discountpopup img {
        width: 150px;
    }
    .pum-theme-3528 .pum-container,
    .pum-theme-lightbox .pum-container {
        padding: 5px 30px;
    }
    header.site-header .ten.columns {
        display: block
    }
    header.site-header .search-form {
        top: 25.7rem;
        right: 0;
        max-width: none;
        width: 100vw;
        position: fixed;
        height: 0px;
        overflow: hidden;
        transition: all ease 0.5s;
    }
    header.site-header .search-form.active {
        height: 60px;
    }
    .search_mobile_trigger {
        display: inline-block;
        background-image: url(images/mobile_search.png);
        position: absolute;
        width: 27px;
        height: 27px;
        left: 8%;
        background-size: contain;
        top: 105px !important;
    }
    button#responsive-menu-button {
        top: 93px !important;
    }
    header.site-header .search-form label {
        display: inline-block;
        margin: 0;
        padding: 0;
        vertical-align: top;
        width: 100%;
    }
    header.site-header .search-submit {
        width: 31px;
        height: 30px;
        background-position: -72px -324px;
        margin-top: -30px;
        z-index: 99;
        position: relative;
    }
    body.search .content-area article {
        display: inline-block;
        width: 100%;
        padding: 27px;
        vertical-align: top;
        margin: 0;
    }
}

.summary p.alergy {
    width: 100%;
    float: none;
    display: block;
}

.summary p.alergy::after {
    clear: both;
    display: block;
    content: "";
}