/* Import LESS Framework
-------------------------------- */
/* Browser reset  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

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

/* General  */
.block {
    display: block;
}

.inlineblock {
    display: inline-block;
}

.none {
    display: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

/* Float & align  */
.fl {
    float: left;
}

.fr {
    float: right;
}

.fn {
    float: none;
}

.cb {
    clear: both !important;
}

.al {
    text-align: left !important;
}

.ar {
    text-align: right !important;
}

.ac {
    text-align: center !important;
}

/* Grid  */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grid {
    margin: 0 auto;
    text-align: center;
}

.grid:after {
    clear: both !important;
    content: "";
    display: table;
}

[class*='col-'] {
    float: left;
}

.module {
    text-align: left;
}

/* Columns  */
.col-1-1 {
    float: none;
    width: 100%;
}

.col-4-5 {
    width: 80%;
}

.col-3-4 {
    width: 75%;
}

.col-2-3 {
    width: 66.66666%;
}

.col-3-5 {
    width: 60%;
}

.col-1-2 {
    width: 50%;
}

.col-2-5 {
    width: 40%;
}

.col-1-4 {
    width: 25%;
}

.col-1-5 {
    width: 20%;
}

.col-1-3 {
    width: 33.33333%;
}

.col-1-8 {
    width: 12.5%;
}

.col-1-6 {
    width: 16.66%;
}

.col-5-6 {
    width: 83.33%;
}

/* Fonts  */
.arial {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.helvetica {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.garamond {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
}

.georgia {
    font-family: Georgia, Times, "Times New Roman", serif;
}

.palatino {
    font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
}

/* Mixins  */
@font-face {
    font-family: 'Montserrat Bold';
    src: url('../fonts/montserrat-bold.eot?') format('eot'), url('../fonts/montserrat-bold.svg') format('svg'), url('../fonts/montserrat-bold.woff') format('woff'), url('../fonts/montserrat-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('../fonts/montserrat-regular.eot?') format('eot'), url('../fonts/montserrat-regular.svg') format('svg'), url('../fonts/montserrat-regular.woff') format('woff'), url('../fonts/montserrat-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Titillium Semibold';
    src: url('../fonts/titillium-semibold.eot?') format('eot'), url('../fonts/titillium-semibold.svg') format('svg'), url('../fonts/titillium-semibold.woff') format('woff'), url('../fonts/titillium-semibold.ttf') format('truetype');
}

@font-face {
    font-family: 'Titillium Regular';
    src: url('../fonts/titillium-regular.eot?') format('eot'), url('../fonts/titillium-regular.svg') format('svg'), url('../fonts/titillium-regular.woff') format('woff'), url('../fonts/titillium-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Arvo Regular';
    src: url('../fonts/arvo-regular.eot?') format('eot'), url('../fonts/arvo-regular.svg') format('svg'), url('../fonts/arvo-regular.woff') format('woff'), url('../fonts/arvo-regular.ttf') format('truetype');
}

.montserrat-bold {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.montserrat-regular {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.titillium-semibold {
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.titillium-regular {
    font-family: 'Titillium Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.arvo-regular {
    font-family: 'Arvo Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

/* LESS Variables and Mixins
-------------------------------- */
/* General
-------------------------------- */
html,
body {
    width: 100%;
    height: 100%;
    color: #555;
    font-size: 13px;
    background: #fff;
}

html.home,
body.home {
    overflow: hidden;
}

body {
    padding-top: 80px;
}

.grid {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.grid .col-left {
    padding: 0 40px 0 0;
}

.sprite {
    background-image: url(../images/sprite.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-color: transparent;
}

ul.gfield_radio {
    display: block;
    margin-top: 17px !important;
}

ul.gfield_radio li {
    margin-bottom: -8px !important;
}

ul.gfield_radio li label {
    position: relative;
    top: 13px;
}

.gform_wrapper ul.gform_fields li.gfield {
    margin-top: 15px !important;
}

.gform_wrapper ul.gform_fields li.gfield_price {
    padding-left: 1em;
}

.gform_wrapper ul.gform_fields li.gfield_price:nth-child(odd) {
    background-color: #f7f7f7;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}

.page-content .wysiwyg .gform_footer .button {
    float: none;
}

.gform_wrapper ul.gform_fields li.gfield_price input {
    margin-top: -1.5em;
}

.gform_wrapper ul.gform_fields li.gfield_price .gfield_label {
    display: block;
    width: 100%;
    margin-bottom: .75em;
}

.page-content #gform_wrapper_9 li input, .page-content #gform_wrapper_9 li textarea {
    background: #fff !important;
    border-color: #555;
}


.page-content #gform_wrapper_9 li:not(.gfield_price) label,
.page-content #gform_wrapper_9 li:not(.gfield_price) input, .page-content #gform_wrapper_9 li:not(.gfield_price) textarea {
    float: none;

}

.page-content #gform_wrapper_9 .ginput_quantity_label {
    display: none;
}

.page-content #gform_wrapper_9 li:not(.gfield_price) label + input {
    font-weight: 100 !important;
}

.page-content #gform_wrapper_9 h2 {
    font-size: 20px;
    font-weight: 900 !important;
    border-bottom: 1px solid;
    padding-bottom: .5em;
    margin-bottom: 0;
    margin-top: 2em;
}

.sidebar {
    position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    ul.gfield_radio li label {
        position: relative;
        top: 6px;
    }
}

@-moz-document url-prefix() {
    ul.gfield_radio li label {
        position: relative;
        top: 6px;
    }
}

/* Images
-------------------------------- */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Links
-------------------------------- */
a,
a:link,
a:visited {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    color: #b39964;
}

a:hover,
a:link:hover,
a:visited:hover {
    color: #887143;
}

/* Responsive video embed
-------------------------------- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Header
-------------------------------- */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    background: #444343;
}

.page-header .logo {
    display: block;
    padding: 8px 0;
}

.page-header .logo img {
    display: block;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    left: 0;
    max-width: 100%;
}

.page-header .page-navigation {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    display: block;
    width: auto;
    margin-top: 32px;
    font-size: 13px;
}

.page-header .page-navigation ul {
    margin: 0 -10px;
}

.page-header .page-navigation ul li {
    display: block;
    float: left;
    padding: 0 10px;
    border-left: 1px solid #707070;
}

.page-header .page-navigation ul li a {
    display: block;
    position: relative;
    -webkit-transition: color 0.1s ease-in-out;
    -moz-transition: color 0.1s ease-in-out;
    -ms-transition: color 0.1s ease-in-out;
    -o-transition: color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out;
    color: #fff;
    height: 20px;
    line-height: 20px;
}

.page-header .page-navigation ul li:first-child {
    border: 0;
}

.page-header .page-navigation ul li:hover a {
    color: #b39964;
}

.page-header .page-navigation ul li.current-menu-item a {
    color: #b39964;
}

.page-header .page-navigation ul li.current-menu-item a:before {
    display: block;
    position: absolute;
    background: #b39964;
    height: 2px;
    width: 100%;
    bottom: -2px;
    left: 0;
    right: 0;
    content: '';
}

.page-header .where-to-buy {
    width: auto;
    float: right;
    margin-right: 20px;
    margin-top: 26px;
}

.page-header .where-to-buy ul li a {
    display: block;
    padding: 10px 20px;
    background: #b39964;
    color: white;
}

.page-header .where-to-buy ul li a:hover {
    background: white;
    color: #b39964;
}

.page-header .language-selector {
    width: auto;
    float: right;
}

.page-header .language-selector ul {
    float: right;
    display: block;
    margin: 34px -3px 0 -3px;
}

.page-header .language-selector ul li {
    float: left;
    display: block;
    background-image: url(../images/sprite.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-color: transparent;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    width: 16px;
    height: 11px;
    margin: 0 3px;
}

.page-header .language-selector ul li a {
    display: block;
    width: 16px;
    height: 11px;
    text-indent: -9999px;
}

.page-header .language-selector ul li.icl-en {
    background-position: -16px 0;
}

.page-header .language-selector ul li.icl-es {
    background-position: -32px 0;
}

.page-header .navigation-handle {
    display: none;
}

/* Social media
-------------------------------- */
.social-links {
    display: block;
    margin: 0 -2px;
}

.social-links li {
    display: block;
    background-image: url(../images/sprite.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-color: transparent;
    float: left;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-opacity: 0.85;
    -moz-opacity: 0.85;
    opacity: 0.85;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    margin: 0 2px;
}

.social-links li a {
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
}

.social-links li.facebook {
    background-color: #3b5998;
    background-position: 0 -11px;
}

.social-links li.twitter {
    background-color: #00aced;
    background-position: -40px -11px;
}

.social-links li.pinterest {
    background-color: #cb2027;
    background-position: -80px -11px;
}

.social-links li.instagram {
    background-color: #c13584;
    background-image: url(../images/instagram.png);
    background-size: 22px;
    background-position: 9px;
}

.social-links li:hover {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.social-box {
    margin-top: 60px;
}

.social-box p {
    margin-bottom: 10px;
}

.social-box .social-links {
    clear: both !important;
    overflow: hidden;
}

.social-box .social-links li {
    margin: 0 6px 0 0;
}

.social-box .mc-subscribe {
    padding-top: 20px;
    overflow: hidden;
}

.social-box .mc-subscribe h3.subscribe-to-our-newsletter {
    padding: 0 !important;
    margin: 0 !important;
}

.social-box .mc-subscribe input {
    display: block;
    float: left;
    width: 75%;
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    font-size: 13px;
    background: #fff;
    border: 1px solid #d7d7d7;
    color: #555;
    height: 30px;
    padding: 3px;
    margin: 0;
}

.social-box .mc-subscribe input[type="submit"] {
    width: 25%;
    color: #fff;
    background: #b39964;
    border: 1px solid #988255;
    cursor: pointer;
    margin: 0 0 0 -1px;
}

.social-box a.subscribe-to-newsletter {
    clear: both !important;
    display: inline-block;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    margin-top: 16px;
}

/* Page heading
-------------------------------- */
.page-heading {
    position: relative;
    height: 130px;
    margin-bottom: 40px;
    width: 100%;
    overflow: hidden;
}

.page-heading .page-heading-img {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -960px;
}

.page-heading .page-heading-img img {
    display: block;
    min-width: 100%;
    max-width: none;
    height: auto;
}

.page-heading .page-heading-title {
    position: absolute;
    display: block;
    font-family: 'Titillium Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    top: 50%;
    height: 50px;
    margin-top: -25px;
    font-size: 50px;
    color: #fff;
    z-index: 100;
}

.page-heading .page-heading-title.no-background {
    text-shadow: none;
    color: #555;
}

/*.page-template-page-b2b .content-part{*/
/*  max-width: 757px;*/
/*}*/

.page-template-page-b2b #navigation .items {
    display: block;
}

@media all and (min-width: 992px) {
    .page-template-page-b2b #navigation .items {
        display: flex;
        flex-wrap: wrap;
    }
}

@media all and (max-width: 991px) {
    .page-template-page-b2b #navigation .items .item {
        display: block;
        margin-bottom: 1em;
        margin-bottom: 3em;
        font-size: 10px;
    }

    .page-template-page-b2b #navigation .items .item:last-child {
        margin-bottom: 0;
    }
}

.page-template-page-b2b #navigation .navi-title {
    font-family: 'Titillium Regular', sans-serif;
    font-weight: 700;
    display: block;
    margin-bottom: 30px;
}

.page-template-page-b2b a.btn {
    margin-right: 15px;
    padding: 10px 20px;
    background: #b39964;
    color: white;
}

.page-template-page-b2b .page-heading {
    margin-bottom: 0;
}

.page-template-page-b2b .supplier, .page-template-page-kerst .supplier {
    background: #fff;
    border-radius: 5px;
}

.page-template-page-b2b #christmas, .page-template-page-kerst #christmas, .page-template-page-b2b #relation {
    background: rgba(179, 153, 100, .2);
}

.page-template-page-b2b #christmas .cta {
    display: block;
    text-align: center;
    margin-top: 45px;
}

.page-template-page-b2b section:not(.page-content), .page-template-page-kerst section:not(.page-content) {
    padding-top: 40px;
}

.page-template-page-b2b .gallery-slider .item {
    background-size: cover;
    height: 400px;
    background-position: center;
}

@media all and (min-width: 981px) {
    .page-template-page-b2b .supplier {
        width: calc(25% - 2em);
        margin-right: 2em;
        margin-bottom: 2em;
    }
}

@media only screen and (max-width: 768px) {
    .page-template-page-b2b .supplier-group {
        margin: 0 auto !important;
        max-width: 100%;
    }

    .page-template-page-b2b .supplier {
        margin-bottom: 2em;
        width: calc(50% - 1em) !important;
    }

    .page-template-page-b2b .supplier:nth-child(odd) {
        margin-right: 1em;
    }

    .page-template-page-b2b .supplier:nth-child(even) {
        margin-left: 1em
    }
}


/* General page contents
-------------------------------- */
.page-content {
    padding-bottom: 20px;
    background: #fff;
}

.page-content .columns {
    display: block;
    margin: 20px -20px;
}

.page-content .columns:after {
    clear: both !important;
    content: "";
    display: table;
}

.page-content .columns [class*='col-'] > .module {
    display: block;
    padding: 20px;
}

.page-content .post-thumbnail {
    margin-top: -40px;
    margin-bottom: 40px;
}

.page-content .post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.page-content .post-thumbnail.windmill {
    clear: both !important;
}

.page-content .wysiwyg {
    padding-bottom: 40px;
}

.page-content .wysiwyg:after {
    clear: both !important;
    content: "";
    display: table;
}

.page-content .wysiwyg h1,
.page-content .wysiwyg h2,
.page-content .wysiwyg h3,
.page-content .wysiwyg h4,
.page-content .wysiwyg h5,
.page-content .wysiwyg h6 {
    font-family: 'Titillium Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 36px;
    margin-bottom: 20px;
    color: #292828;
}

.page-content .wysiwyg h2 {
    font-size: 32px;
}

.page-content .wysiwyg h3 {
    font-size: 26px;
}

.page-content .wysiwyg h4 {
    font-size: 22px;
}

.page-content .wysiwyg h5 {
    font-size: 18px;
}

.page-content .wysiwyg h6 {
    font-size: 16px;
}

.page-content .wysiwyg p {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: justify;
}

.page-content .wysiwyg p strong {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.page-content .wysiwyg .woocommerce,
.page-content .wysiwyg td,
.page-content .wysiwyg th {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.page-content .wysiwyg blockquote {
    background: url('../images/quote.png') no-repeat 0px 4px;
    padding-left: 55px;
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 14px;
}

.page-content .wysiwyg blockquote p {
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 14px;
}

.page-content .wysiwyg img.aligncenter {
    display: block;
    width: auto;
    margin: 0 auto;
    text-align: center;
}

.page-content .wysiwyg img.alignleft {
    display: block;
    width: auto;
    float: left;
    margin: 0 20px 0 0;
}

.page-content .wysiwyg img.alignright {
    display: block;
    width: auto;
    float: right;
    margin: 0 0 0 20px;
}

.page-content .wysiwyg img.alignnone {
    float: none;
}

.page-content .wysiwyg ul, .page-content .wysiwyg ol {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.page-content .wysiwyg .button {
    display: block;
    float: right;
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    font-size: 13px;
    background: #3a3939;
    border: none;
    height: 34px;
    line-height: 34px;
    padding: 0 30px;
    text-align: center;
    color: #fff;
    margin-top: 46px;
}

.page-content .wysiwyg .button:hover {
    background: #585757;
}

.page-content .wysiwyg .button.button-webshops {
    margin-top: 0;
}

.page-content .wysiwyg.no-padding-bottom {
    padding-bottom: 0;
}

.page-content .wysiwyg.padding-bottom-20 {
    padding-bottom: 20px;
}

.page-content .sidebar .widget {
    display: block;
    padding: 30px;
    background: #f1f1f1;
    margin-bottom: 30px;
}

.page-content .sidebar .widget.nobg {
    background: none;
    padding: 30px 0;
}

.page-content .sidebar .widget h1,
.page-content .sidebar .widget h2,
.page-content .sidebar .widget h3 {
    font-family: 'Titillium Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    padding: 0 0 15px 0;
}

.page-content .sidebar .widget ul {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    line-height: 20px;
}

.page-content .sidebar .widget ul li {
    display: block;
}

.page-content .sidebar .widget p {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    line-height: 20px;
}

.page-content form {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    color: #555;
}

.page-content form .form-row {
    clear: both !important;
    overflow: hidden;
    margin: 3px 0;
}

.page-content form label {
    display: block;
    float: left;
    width: 35%;
    line-height: 32px;
}

.page-content form input,
.page-content form textarea {
    display: block;
    float: right;
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    width: 60%;
    font-size: 13px;
    background: #f1f1f1;
    border: 1px solid #d7d7d7;
    color: #555;
    height: 30px;
    padding: 3px;
    margin: 0;
}

.page-content form input:focus,
.page-content form textarea:focus {
    border: 1px solid #b1b1b1;
}

.page-content form input.wpcf7-not-valid,
.page-content form textarea.wpcf7-not-valid {
    border: 1px solid #f99;
}

.page-content form textarea {
    height: 150px;
    resize: vertical;
}

.page-content form input[type="submit"] {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    background: #3a3939;
    border: 0;
    width: auto;
    padding: 8px 16px;
    color: #fff;
    margin-top: 5px;
    cursor: pointer;
    line-height: 135%;
}

.page-content form input[type="submit"]:hover {
    background: #585757;
}

.page-content form img.ajax-loader {
    float: right;
    margin: 13px 10px 0 0;
}

.page-content form .wpcf7-response-output {
    padding: 10px;
    width: 100%;
    margin: 0 0 20px 0;
}

.page-content form .wpcf7-response-output.wpcf7-validation-errors {
    color: #ff6a6a;
    border: 1px solid #f99;
}

.page-content form .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #383;
    border: 1px solid #0a0;
}

.page-content form .wpcf7-form-control-wrap {
    display: block !important;
}

.page-content form .wpcf7-not-valid-tip {
    display: none;
}

/* Carousel (BxSlider)
-------------------------------- */
.bx-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 90px 0;
    *zoom: 1;
}

.bx-wrapper img {
    display: block;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    width: auto;
    height: auto;
    padding: 30px;
}

.bx-wrapper img:hover {
    -webkit-opacity: 0.55;
    -moz-opacity: 0.55;
    opacity: 0.55;
}

.bx-wrapper .bx-controls .bx-controls-direction {
    display: block;
    position: absolute;
    height: 40px;
    width: 90px;
    left: 50%;
    margin-left: -45px;
    bottom: 40px;
}

.bx-wrapper .bx-controls .bx-controls-direction a {
    display: block;
    float: left;
    position: relative;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border: 2px solid #d7d7d7;
    line-height: 36px;
    text-indent: -9999px;
    height: 40px;
    width: 40px;
}

.bx-wrapper .bx-controls .bx-controls-direction a:before {
    position: absolute;
    display: block;
    background-image: url(../images/sprite.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 36px;
    width: 36px;
    left: 0;
    top: 0;
    content: '';
}

.bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
    margin: 0 10px 0 0;
}

.bx-wrapper .bx-controls .bx-controls-direction a.bx-prev:before {
    background-position: -7px -108px;
}

.bx-wrapper .bx-controls .bx-controls-direction a.bx-next:before {
    background-position: -57px -108px;
}

.bx-wrapper .bx-controls .bx-controls-direction a:hover {
    border: 20px solid #d7d7d7;
}

.bx-wrapper .bx-controls .bx-controls-direction a:hover.bx-prev:before {
    background-position: -7px -58px;
}

.bx-wrapper .bx-controls .bx-controls-direction a:hover.bx-next:before {
    background-position: -57px -58px;
}

/* Backslider
-------------------------------- */
.backslider {
    position: fixed;
    left: 0;
    top: 0;
    background: #3a3939;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.backslider .bs-slides li {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.backslider .bs-slides li img {
    width: 100%;
    height: 100%;
    max-width: none;
}

.backslider .bs-slides .bs-landscape {
    height: 100%;
    width: 100%;
}

.backslider .bs-slides .bs-portrait {
    height: 100%;
    width: 100%;
}

.backslider .bs-overlay,
.backslider .bs-preload,
.backslider .bs-coverslide {
    width: 100%;
    height: 100%;
}

.backslider .bs-coverslide {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 40;
    overflow: hidden;
}

.backslider .bs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

.backslider .bs-preload {
    position: absolute;
    background: #3a3939;
    z-index: 100;
}

.backslider .bs-preload-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    margin-left: -16px;
    background-image: url(../images/preloader.gif);
}

.backslider .bs-captions > li {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 60;
    opacity: 0;
    font-size: 22px;
    line-height: 30px;
}

.backslider .bs-captions > li.active {
    opacity: 1;
}

.backslider .bs-captions > li.active .module {
    background: rgba(255, 255, 255, 0.4);
}

.backslider .bs-captions > li .module {
    max-width: 50%;
    margin-top: -140px;
    background: rgba(255, 255, 255, 0);
    padding: 40px;
}

.backslider .bs-captions > li .module .heading {
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 36px;
    line-height: 36px;
}

.backslider .bs-captions > li .module a {
    color: #b39964;
}

.backslider .bs-captions > li .module a:hover {
    color: #86734b;
}

.backslider .bs-captions > li .module .text {
    font-family: 'Arvo Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    color: #3a3939;
    padding: 20px 0;
}

.backslider .bs-captions > li .module .go {
    font-family: 'Arvo Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.backslider .bs-controls {
    display: none;
    z-index: 100;
    z-index: 99999;
}

.backslider .bs-controls .bs-next,
.backslider .bs-controls .bs-previous {
    background-image: url(../images/sprite.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-color: transparent;
    display: block;
    position: absolute;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    top: 50%;
    margin-top: -25px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    outline: none;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
}

.backslider .bs-controls .bs-previous {
    background-position: 0 -51px;
    left: -50px;
}

.backslider .bs-controls .bs-previous:hover {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.backslider .bs-controls .bs-next {
    background-position: -50px -51px;
    right: -50px;
}

.backslider .bs-controls .bs-next:hover {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.backslider:hover .bs-controls .bs-previous {
    left: 0;
}

.backslider:hover .bs-controls .bs-next {
    right: 0;
}

.tp-bannertimer {
    display: none !important;
}

.tp-thumbs {
    display: none !important;
}

.rev_slider .module {
    max-width: 480px;
    margin-top: -140px;
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 40px;
}

.rev_slider .module .heading {
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 30px;
    line-height: 30px;
}

.rev_slider .module a {
    color: #b39964;
}

.rev_slider .module a:hover {
    color: #86734b;
}

.rev_slider .module .text {
    font-family: 'Arvo Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    color: #3a3939;
    padding: 20px 0;
    white-space: normal;
    font-size: 20px;
    line-height: 30px;
}

.rev_slider .module .go {
    font-family: 'Arvo Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
}

/* Homepage (adjusted footer)
-------------------------------- */
.home .page-footer {
    position: fixed;
    background: transparent;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.home .page-footer li a {
    pointer-events: auto;
}

/* Template: 'Collectie'
-------------------------------- */
.page-template-page-collectie-php .productgroups .productgroup,
.page-template-page-kerst-php .productgroups .productgroup {
    position: relative;
}

.page-template-page-collectie-php .productgroups .productgroup img,
.page-template-page-kerst-php .productgroups .productgroup img {
    display: block;
    position: relative;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    width: 100%;
    height: auto;
}

.page-template-page-collectie-php .productgroups .productgroup .overlay,
.page-template-page-kerst-php .productgroups .productgroup .overlay {
    position: absolute;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 100, 100, 0);
    z-index: 1;
}

.page-template-page-collectie-php .productgroups .productgroup .overlay h3,
.page-template-page-kerst-php .productgroups .productgroup .overlay h3 {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    display: block;
    position: relative;
    text-align: center !important;
    -webkit-transition: all 0.3s 0.1s;
    -moz-transition: all 0.3s 0.1s;
    -ms-transition: all 0.3s 0.1s;
    -o-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    top: 40%;
    left: 0;
    font-size: 24px;
    height: 52px;
    line-height: 26px;
    width: 100%;
    padding: 0 20px;
    margin-top: -26px;
}

.page-template-page-collectie-php .productgroups .productgroup:hover img,
.page-template-page-kerst-php .productgroups .productgroup:hover img {
    -webkit-opacity: 0.15;
    -moz-opacity: 0.15;
    opacity: 0.15;
}

.page-template-page-collectie-php .productgroups .productgroup:hover .overlay,
.page-template-page-kerst-php .productgroups .productgroup:hover .overlay {
    background: rgba(187, 187, 187, 0.2);
}

.page-template-page-collectie-php .productgroups .productgroup:hover .overlay h3,
.page-template-page-kerst-php .productgroups .productgroup:hover .overlay h3 {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    top: 50%;
}

/* Taxonomy: 'Productgroep'
-------------------------------- */
.tax-productgroep .tab-navigation {
    display: block;
}

@media all and (min-width: 981px) {
    .tax-productgroep .tab-navigation {
        margin: -20px -1px 20px -1px;
    }
}

.tax-productgroep .tab-navigation:after {
    clear: both !important;
    content: "";
    display: table;
}

.tax-productgroep .tab-navigation li {
    width: 25%;
    float: left;
}

.tax-productgroep .tab-navigation li a {
    display: block;
    background: #444343;
    color: #fff;
    padding: 12px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 2px solid #fff;
}

.tax-productgroep .tab-navigation li a:hover,
.tax-productgroep .tab-navigation li a:active,
.tax-productgroep .tab-navigation li a.active {
    background: #777;
}

.tax-productgroep .tab-navigation.no-products li {
    width: 33.33333%;
}

.tax-productgroep .tabs-content .tab {
    display: none;
}

.tax-productgroep .tabs-content .tab.active {
    display: block;
}

.tax-productgroep .tabs-content .products-list .product a {
    position: relative;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.tax-productgroep .tabs-content .products-list .product a:hover {
    -webkit-opacity: 0.55;
    -moz-opacity: 0.55;
    opacity: 0.55;
}

.tax-productgroep .tabs-content .products-list .product img {
    margin: 0 auto 1em;
}

.tax-productgroep .tabs-content .products-list .product:nth-child(4n + 1) {
    clear: left;
}

/* Single: 'Product'
-------------------------------- */
.single-product .product {
    padding: 20px 0 40px 0;
}

.single-product .product.no-main-image {
    margin-top: 100px;
}

.single-product .product .main-image,
.single-product .product .left-image,
.single-product .product .additional-image {
    width: 100%;
    padding: 0 0 20px 0;
}

.single-product .product .columns {
    margin: 0 -10px;
}

.single-product .product .columns .module {
    padding: 0 10px 20px 10px;
}

.single-product .product .wysiwyg {
    position: relative;
    margin-top: -100px;
    z-index: 1;
    padding: 30px 50px 50px;
    background: #fff;
}

.single-product .product .wysiwyg h1 {
    font-size: 50px;
    margin-bottom: 6px;
}

.single-product .product .wysiwyg p {
    font-size: 16px;
}

.single-product .product .addthis_sharing_toolbox {
    float: right;
    margin-bottom: 20px;
}

.single-product .product .addthis_sharing_toolbox .at-share-btn {
    -webkit-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -ms-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
}

.single-product .product .addthis_sharing_toolbox .at-share-btn:hover {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

body .back-to-overview {
    position: relative;
    display: inline-block;
    padding: 10px 16px 9px 28px;
    background: #f1f1f1;
    color: #555;
}

body .back-to-overview:hover,
body .back-to-overview:active {
    background: #484848;
    color: #eee;
}

body .back-to-overview::before {
    position: absolute;
    display: block;
    top: 10px;
    left: 15px;
    content: "<";
}

body h1 span {
    display: block;
    width: 100%;
}

body h1 a.back-to-overview {
    font-size: 1rem;
    display: inline-block;
    width: auto;
}

/* Template: 'In de pers'
-------------------------------- */
.page-template-page-in-de-pers-php .publications-list {
    margin: 0 -10px !important;
}

.page-template-page-in-de-pers-php .publications-list li {
    max-height: 224px;
}

.page-template-page-in-de-pers-php .publications-list .press-publication {
    padding: 10px !important;
    height: 100%;
}

.page-template-page-in-de-pers-php .publications-list .press-publication img {
    display: block;
    height: 100%;
}

/* Template: 'B2B'
-------------------------------- */
.page-template-page-b2b-php .page-content .supplier-group img {
    width: 210px;
    height: 140px;
}

.page-template-page-b2b-php .page-content .supplier-group .col-1-4:nth-child(4n+1) {
    clear: left;
}

/* Template: 'Webshops'
-------------------------------- */
.page-template-page-webshops-php .webshops li h2 {
    font-family: 'Montserrat Bold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    font-size: 26px;
    margin-bottom: 20px;
    color: #292828;
}

.page-template-page-webshops-php .webshops li h3 {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 5px;
}

/* Template: 'Over ons'
-------------------------------- */
.page-template-page-over-ons-php .quote {
    margin-top: 60px;
}

.page-template-page-over-ons-php .sidebar {
    margin-top: 20px;
}

/* Template: 'Waar te koop'
-------------------------------- */
.page-template-page-waar-te-koop-php .page-content #store-locator-form {
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-template-page-waar-te-koop-php .page-content #store-locator-form input {
    display: block;
    height: 35px;
    width: 100%;
    margin: 0;
}

.page-template-page-waar-te-koop-php .page-content #store-locator-form input[type="submit"] {
    display: block;
}

.page-template-page-waar-te-koop-php .page-content .locator-map {
    width: 100%;
    height: 100%;
    margin-bottom: 40px;
}

.page-template-page-waar-te-koop-php .page-content .locator-map img {
    max-width: none;
}

.page-template-page-waar-te-koop-php .page-content .locator-map #stores-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.page-template-page-waar-te-koop-php .page-content .locator-map #stores-map div.store-tooltip {
    padding: 10px 5px;
}

.page-template-page-waar-te-koop-php .page-content .locator-map #stores-map div.store-tooltip h4 {
    font-size: 16px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.page-template-page-waar-te-koop-php .page-content .locator-map #stores-map div.store-tooltip .address-details li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 5px;
    white-space: nowrap;
}

.page-template-page-waar-te-koop-php .page-content .locator-results {
    clear: both !important;
}

.page-template-page-waar-te-koop-php .page-content .locator-results .result-list {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.page-template-page-waar-te-koop-php .page-content .locator-results .result-list li {
    display: block;
    width: 25%;
    float: left;
    padding-right: 15px;
    margin-bottom: 40px;
}

.page-template-page-waar-te-koop-php .page-content .locator-results .result-list li.no-results {
    float: none;
    width: 100%;
}

.page-template-page-waar-te-koop-php .page-content .locator-results .result-list li h4 {
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

.page-template-page-waar-te-koop-php .page-content .locator-results .result-list li ul.address-details li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 5px;
}

/* Template: 'Kerst'
-------------------------------- */
.term-kerstverpakkingen-en-producten .module .col-1-3 {
    padding-right: 20px;
}

/* Footer
-------------------------------- */
.page-footer .slogan {
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    float: left;
    display: block;
    cursor: default;
    height: 100px;
    max-width: 132px;
    padding: 16px 20px;
    line-height: 22px;
    font-size: 19px;
    color: #fff;
    background: #444343;
    margin: 0;
}

.page-footer .social-links {
    margin-top: 35px;
}

.page-footer .footer-navigation {
    margin-top: 22px;
}

.page-footer .footer-navigation ul {
    display: block;
}

.page-footer .footer-navigation ul:after {
    clear: both !important;
    content: "";
    display: table;
}

.page-footer .footer-navigation ul li {
    display: block;
    float: left;
    padding: 5px 0;
}

.page-footer .footer-navigation ul li a {
    -webkit-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -ms-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
    color: #555;
}

.page-footer .footer-navigation ul li a:hover {
    color: #808080;
}

.page-footer .footer-navigation ul li:not(:last-child)::after {
    display: inline-block;
    content: "•";
    padding: 0 10px;
}

.page-footer .copyright-notice {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    margin-top: 7px;
    color: #bbb;
}

/* Page overlay
---------------------------------------- */
.page-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
}

.page-overlay.on {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

/* < 1024
---------------------------------------- */
@media only screen and (max-width: 1024px) {
    /* General
      ------------------------------------ */
    .grid {
        padding: 0 20px;
    }

    /* Homepage (w/ adjusted footer)
      -------------------------------- */
    .home {
        width: 100%;
        height: auto;
    }

    .home .backslider .bs-slides {
        /* 				img								{ .absolute; top:0; right: -35%; height: auto; } */
    }

    /* Single: 'Product'
      -------------------------------- */
    .single-product .product .addthis_sharing_toolbox {
        float: none;
    }
}

/* < 768
---------------------------------------- */
@media only screen and (max-width: 768px) {
    /* Header
      ------------------------------------ */
    .page-header {
        position: relative;
        margin-top: -80px;
    }

    .page-header .logo {
        width: 33.33333%;
        float: none;
    }

    .page-header .page-navigation {
        float: none;
        width: 100%;
        margin-top: 0;
    }

    .page-header .page-navigation ul {
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -ms-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0 -20px;
        text-align: left;
    }

    .page-header .page-navigation ul li {
        display: block;
        position: relative;
        float: none;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transition: all 0.2s ease-in-out 0.1s;
        -moz-transition: all 0.2s ease-in-out 0.1s;
        -ms-transition: all 0.2s ease-in-out 0.1s;
        -o-transition: all 0.2s ease-in-out 0.1s;
        transition: all 0.2s ease-in-out 0.1s;
        left: -20px;
        width: 100%;
        padding: 0 10px;
        border: none;
        border-bottom: 1px solid #605f5f;
    }

    .page-header .page-navigation ul li a {
        display: block;
        position: relative;
        color: #fff;
        height: 44px;
        line-height: 44px;
    }

    .page-header .page-navigation ul li:first-child {
        border-top: 1px solid #605f5f;
        border-bottom: 1px solid #605f5f;
    }

    .page-header .page-navigation ul li:last-child {
        border-bottom: none;
    }

    .page-header .page-navigation ul li:hover a {
        color: #b39964;
    }

    .page-header .page-navigation ul li.current-menu-item {
        border-bottom: 2px solid #b39964;
    }

    .page-header .page-navigation ul li.current-menu-item a {
        color: #b39964;
    }

    .page-header .page-navigation ul li.current-menu-item a:before {
        display: none;
    }

    .page-header .page-navigation.on ul {
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        max-height: 350px;
    }

    .page-header .page-navigation.on ul li {
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        left: 0;
    }

    .page-header .where-to-buy {
        float: none;
        width: 100%;
        margin-top: 0;
    }

    .page-header .where-to-buy ul {
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -ms-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0 -20px;
        text-align: left;
    }

    .page-header .where-to-buy ul li {
        text-align: center;
    }

    .page-header .where-to-buy.on ul {
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        max-height: 350px;
    }

    .page-header .language-selector {
        display: none;
    }

    .page-header .navigation-handle {
        display: block;
        position: absolute;
        top: 25px;
        right: 10px;
        cursor: pointer;
    }

    .page-header .navigation-handle > div {
        position: relative;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        width: 36px;
        height: 4px;
        background: #858585;
        margin-bottom: 4px;
    }

    .page-header .navigation-handle.on > div {
        background: #605f5f;
    }

    .page-header .navigation-handle.on .one {
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transform: translate(0, 10px);
        -moz-transform: translate(0, 10px);
        -ms-transform: translate(0, 10px);
        -o-transform: translate(0, 10px);
        transform: translate(0, 10px);
    }

    .page-header .navigation-handle.on .three {
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transform: translate(0, -10px);
        -moz-transform: translate(0, -10px);
        -ms-transform: translate(0, -10px);
        -o-transform: translate(0, -10px);
        transform: translate(0, -10px);
    }

    /* Footer
      ------------------------------------ */
    .page-footer .slogan {
        float: none;
        width: 100%;
        position: relative;
        left: -20px;
        margin-bottom: 20px;
    }

    .page-footer .copyright-notice,
    .page-footer .footer-navigation {
        float: none;
        width: 100%;
        margin: 0;
    }

    .page-footer .copyright-notice {
        padding: 10px 0;
    }

    /* Homepage (adjusted footer)
      -------------------------------- */
    body.home {
        /* overflow: auto; */
    }

    body.home .page-content {
        padding: 0;
    }

    body.home .page-footer .slogan {
        display: none;
        float: left;
        left: 0;
        margin-bottom: 0;
    }

    body.home .backslider .bs-slides {
        /* 				img							{ .absolute; top:0; right: -50%; height:  auto; } */
    }

    /* Template: 'Collectie'
      -------------------------------- */
    .page-template-page-collectie-php .productgroups {
        margin: 20px 0 0;
    }

    .page-template-page-collectie-php .productgroups .productgroup img {
        display: block;
        position: relative;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        width: 100%;
        height: auto;
    }

    .page-template-page-collectie-php .productgroups .productgroup .overlay {
        position: relative;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: none;
        z-index: 1;
    }

    .page-template-page-collectie-php .productgroups .productgroup .overlay h3 {
        font-family: 'montserrat regular', sans-serif;
        font-weight: normal !important;
        -webkit-font-smoothing: antialiased;
        display: block;
        position: relative;
        text-align: center !important;
        -webkit-transition: all 0.3s 0.1s;
        -moz-transition: all 0.3s 0.1s;
        -ms-transition: all 0.3s 0.1s;
        -o-transition: all 0.3s 0.1s;
        transition: all 0.3s 0.1s;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        top: 0;
        left: 0;
        font-size: 16px;
        height: auto;
        line-height: 20px;
        width: 100%;
        padding: 10px 20px;
        margin-top: 0;
    }

    .page-template-page-collectie-php .productgroups .productgroup:hover img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
    }

    .page-template-page-collectie-php .productgroups .productgroup:hover .overlay {
        background: none;
    }

    .page-template-page-collectie-php .productgroups .productgroup:hover .overlay h3 {
        -webkit-opacity: 1;
        -moz-opacity: 1;
        opacity: 1;
        top: 0;
    }

    /* Taxonomy: 'Productgroep'
      -------------------------------- */
    .tax-productgroep .tab-navigation li {
        width: 50%;
    }

    /* Template: 'Waar te koop'
      -------------------------------- */
    .page-template-page-waar-te-koop-php .page-content .wysiwyg {
        padding-bottom: 0;
    }

    .page-template-page-waar-te-koop-php .page-content .col-2-5,
    .page-template-page-waar-te-koop-php .page-content .col-3-5 {
        float: none;
        width: 100%;
    }

    .page-template-page-waar-te-koop-php .page-content .locator-results .result-list li {
        width: 50%;
    }

    /* Template: 'B2B'
      -------------------------------- */
    .page-template-page-b2b-php .page-content .supplier-group img {
        border: 5px solid #d7d7d7;
    }

    /* Backslider
      -------------------------------- */
    .backslider .bs-captions > li .module {
        max-width: 100%;
        margin-left: 70px;
        margin-right: 70px;
    }

    .backslider .bs-controls .bs-previous {
        left: 0;
    }

    .backslider .bs-controls .bs-next {
        right: 0;
    }

    .rev_slider_wrapper .rev_slider ul li .tp-caption {
        display: none;
    }

    /* Page heading
      -------------------------------- */
    .page-heading {
        height: 100px;
    }

    .page-heading .page-heading-img {
        margin-left: -800px;
    }

    .page-heading .page-heading-img img {
        width: 1600px;
    }

    .page-heading .page-heading-title {
        height: 40px;
        margin-top: -20px;
        font-size: 40px;
    }

    /* General page contents
      -------------------------------- */
    .page-content .columns > .col-1-6 {
        width: 33.33333%;
    }

    .page-content .columns > .col-1-4 {
        width: 50%;
    }

    .page-content .columns > .col-1-4:nth-child(4n + 1) {
        clear: none;
    }

    .page-content .columns > .col-1-4:nth-child(odd) {
        clear: left;
    }

    .page-content .col-left {
        width: 50%;
        padding: 0 20px 0 0;
    }

    .page-content .col-right {
        width: 50%;
        padding: 0 0 0 20px;
    }

    /* Template: 'Waar te koop'
      -------------------------------- */
    .page-template-page-waar-te-koop-php .page-content .search-form {
        float: none;
        width: 100%;
    }

    .page-template-page-waar-te-koop-php .page-content .webshops {
        float: none;
        width: 100%;
    }

    .page-template-page-waar-te-koop-php .page-content .webshops .wysiwyg .button {
        float: none;
        width: 100%;
        margin: -20px 0 40px 0;
    }
}

/* < 480
---------------------------------------- */
@media only screen and (max-width: 480px) {
    /* General
      ------------------------------------ */
    body {
        padding-top: 72px;
    }

    .grid {
        padding: 0 10px;
        overflow: hidden;
    }

    /* General page contents
      -------------------------------- */
    .page-content .columns > .col-1-2 {
        float: none;
        width: 100%;
    }

    .page-content .columns > .col-1-6 {
        width: 50%;
    }

    .page-content .columns > .col-1-3 {
        width: 50%;
    }

    .page-content .col-left,
    .page-content .col-right {
        float: none;
        width: 100%;
        padding: 0;
    }

    /* Header
      ------------------------------------ */
    .page-header .page-navigation ul {
        margin: 0 -10px;
    }

    /* Footer
      ------------------------------------ */
    .page-footer .slogan {
        left: 0;
        height: auto;
        max-width: 100%;
        margin-bottom: 10px;
        text-align: center;
        font-size: 16px;
    }

    .page-footer .footer-navigation ul {
        display: block;
        margin: 0 -5px;
    }

    .page-footer .footer-navigation ul li {
        width: 33.33333%;
    }

    .page-footer .footer-navigation ul li a {
        display: block;
        padding: 10px 0;
        border: 1px solid #d7d7d7;
        margin: 0 5px;
        font-size: 12px;
    }

    .page-footer .footer-navigation ul li a:hover {
        color: #808080;
    }

    .page-footer .footer-navigation ul li:not(:last-child)::after {
        display: none;
    }

    .page-footer .copyright-notice {
        text-align: center;
        font-size: 11px;
    }

    /* Homepage (adjusted footer)
      -------------------------------- */
    .home .page-footer .slogan {
        display: none;
    }

    /* Single: 'Product'
      -------------------------------- */
    .single-product .product {
        padding: 20px 0 0 0;
    }

    .single-product .product .col-1-2 {
        float: none;
        width: 100%;
    }

    .single-product .product .back-to-overview {
        display: block;
        width: 100%;
        margin-bottom: 1em;
    }

    .single-product .product .wysiwyg {
        margin-top: 0;
        padding: 10px 0 30px 0;
    }

    /* Template: 'Waar te koop'
      -------------------------------- */
    .page-template-page-waar-te-koop-php .page-content .locator-map {
        margin-top: -30px;
    }

    .page-template-page-waar-te-koop-php .page-content .locator-results .result-list li {
        float: none;
        width: 100%;
    }

    /* Backslider
      -------------------------------- */
    .backslider .bs-captions > li {
        top: 110px;
    }

    .backslider .bs-captions > li.active .module {
        background: none;
    }

    .backslider .bs-captions > li .module {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        font-size: 16px;
        line-height: 22px;
        background: none;
    }

    .backslider .bs-captions > li .module .heading {
        font-size: 30px;
    }

    .backslider .bs-controls .bs-previous,
    .backslider .bs-controls .bs-next {
        display: none;
    }


    /* Page heading
      -------------------------------- */
    .page-heading {
        height: 125px;
        background: #eee;
        margin-bottom: 50px;
    }

    .page-heading .page-heading-img {
        margin-left: -700px;
    }

    .page-heading .page-heading-img img {
        width: 1400px;
    }

    .page-heading .page-heading-title {
        height: 30px;
        margin-top: -15px;
        font-size: 35px;
    }

    .tax-productgroep .tab-navigation li {
        width: 100% !important;
    }

    .tax-productgroep .tab-navigation li a {
        width: 100%;
    }
}

/* resize header image */
.product .col-1-1 {
    position: relative;
    padding-top: 45.9%;
}

.product .col-1-1 .main-image {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Fix for product collections*/
.carousel,
.tabs-content .columns,
.page-content .columns {
    display: flex;
    flex-wrap: wrap;
}

.carousel .product,
.tabs-content .columns .product,
.page-content .columns .product {
    border: 1px solid #fff;
    transition-duration: 0.2s;
}

.carousel .product:hover,
.tabs-content .columns .product:hover,
.page-content .columns .product:hover {
    border: 1px solid #3a3939;
}

.carousel img,
.tabs-content .columns img,
.page-content .columns img {
    margin: 0 auto 1em;
    padding-bottom: 0 !important;
    object-fit: contain;
    align-self: flex-start;
}

.carousel a,
.tabs-content .columns a,
.page-content .columns a {
    text-align: center;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.carousel a > span,
.tabs-content .columns a > span,
.page-content .columns a > span {
    margin-top: auto;
    display: block;
    min-height: 3.5em;
}

.carousel a > span .price,
.tabs-content .columns a > span .price,
.page-content .columns a > span .price {
    display: block;
    color: #3a3939;
    margin-bottom: 0.5em;
}

.cart-single {
    background-color: #f1f1f1;
    padding: 1.5em;
    margin: 1em 0 2em;
}

.cart-single p.price {
    margin-bottom: 0.5em;
}

.woocommerce div.product form.cart {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: stretch;
}

.woocommerce div.product form.cart .button {
    margin-top: 0;
    flex-grow: 3;
    background-color: #b39964;
}

.woocommerce div.product form.cart input.qty {
    background-color: #fff;
    font-size: 1.25em;
}

body.woocommerce div.product p.price,
body.woocommerce div.product span.price {
    color: #3a3939 !important;
}

.woocommerce-page .page-content .wysiwyg .woocommerce-message .button {
    line-height: 1;
    height: auto;
    padding: 0.5em 1em;
}

.woocommerce-cart .page-content .wysiwyg button:hover {
    color: #fff !important;
}

.actions button {
    margin-top: 0 !important;
    line-height: 1 !important;
}

.coupon + button {
    margin-left: auto !important;
}

.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: auto !important;
}

#place_order {
    background-color: #b39964 !important;
}

.checkout-button {
    background-color: #b39964 !important;
    line-height: 1 !important;
    height: auto !important;
}

.page-content .woocommerce form label {
    width: auto !important;
    float: none !important;
}

.page-content .woocommerce form .form-row:not(.form-row-wide) {
    clear: none !important;
}

.select2-container .select2-selection--single {
    margin-bottom: -3px !important;
}

.ship-to-different-address label {
    display: flex;
}

.ship-to-different-address label input {
    width: auto;
}

.tabs-content {
    text-align: left;
}

#select_categorie {
    padding: 0.5em 1em;
}

.single-product .product .wysiwyg p.request-quote {
    font-size: 1em;
    text-align: right;
    margin: 1em 0 0;
}

.single-product .product .wysiwyg p.request-quote a {
    text-decoration: underline;
}

.single-product .product .wysiwyg p.request-quote a:hover {
    text-decoration: none;
}

.page-content .wysiwyg .cart-collaterals {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-content .wysiwyg .cart-collaterals .cross-sells h2 {
    font-size: 1.5rem;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .products {
    display: flex;
    flex-wrap: wrap;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product {
    width: 30%;
    flex-basis: 150px;
    padding: 3%;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition-duration: 0.2s;
    border: 1px solid #fff;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product:hover {
    border: 1px solid #3a3939;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product a {
    display: flex;
    flex-direction: column;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product a .price {
    margin-bottom: 0;
    color: #3a3939 !important;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product h2 {
    order: 2;
    color: #b39964;
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product img {
    max-width: 80%;
    margin: 0 auto 0.5em;
}

.page-content .wysiwyg .cart-collaterals .cross-sells .product .button {
    margin-top: auto;
    align-self: flex-end;
    white-space: nowrap;
}

.page-content .wysiwyg .cart-collaterals .cross-sells ul.products li.product .price {
    color: #b39964;
}

.page-content .wysiwyg .cart-collaterals .button {
    font-size: 11px;
}

.page-content .wysiwyg .cart-collaterals .button:hover {
    color: #fff;
}

.dutch-design-checkout-upsells {
    display: flex;
    flex-wrap: wrap;
    width: 48%;
    flex-grow: 1;
}

.dutch-design-checkout-upsells h2 {
    width: 100%;
    flex-grow: 1;
}

.dutch-design-checkout-upsells a {
    flex-basis: 150px;
    display: block;
    padding: 1em;
    text-align: center;
    margin: 0 1em 2em;
    transition-duration: 0.2s;
    border: 1px solid #fff;
}

.dutch-design-checkout-upsells a:hover {
    border: 1px solid #3a3939;
}

.dutch-design-checkout-upsells a img {
    margin-bottom: 0.5em;
}

.dutch-design-checkout-upsells a .price {
    color: #3a3939;
    display: block;
}

.back-to-store {
    display: block;
    margin: 0 0 1em 0;
}

.specifications {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 2em;
    line-height: 1.5;
}

.specifications div {
    display: flex;
    margin-bottom: 0.5em;
    padding: 0.5em 1em 0.75em;
    border-bottom: 1px solid #d7d7d7;
}

.specifications div label {
    font-family: 'Titillium Regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    flex-basis: 10em;
    flex-shrink: 0;
}

.fl-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shares {
    display: inline-flex;
}

.shares a {
    display: inline-block;
    height: 38px;
    margin-left: 8px;
    transition-duration: 0.2s;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}

.spec-row > span {
    margin-left: 1em;
}

.shares a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.shares a img {
    height: 100%;
    width: auto;
}

.tax-productgroep .page-heading {
    overflow: initial;
}

body .woocommerce-message {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b39964;
    border-color: #3a3939;
    color: #fff;
    flex-wrap: wrap;
}

body .woocommerce-message .msg {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
}

@media all and (min-width: 981px) {
    body .woocommerce-message .msg {
        justify-content: space-between;
    }
}

body .woocommerce-message .msg a {
    flex-basis: 9em;
}

body .woocommerce-message a {
    margin: 1em 0.5em !important;
    white-space: nowrap;
}

body .woocommerce-message:before {
    color: #b39964;
    top: 50%;
    transform: translateY(-50%) scale(1.5);
}

body .woocommerce-message > * {
    margin: auto 0.5em !important;
}

body .woocommerce-message .button:hover {
    color: #fff !important;
}

#store-cart-contents:before {
    font-family: 'WooCommerce';
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: 0.618em;
    content: '\e01d';
    text-decoration: none;
}

.tabs-content h2 {
    font-family: 'Titillium Semibold', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    color: #3a3939;
    font-size: 2em;
    margin-top: 2em;
}

.usps-box {
    height: 100%;
}

.usps-box .shop-usps {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    float: right;
    max-width: 65%;
    margin: 0;
    transform: translateY(-20%);
    position: relative;
    top: 50%;
    overflow: initial;
}

@media all and (min-width: 481px) {
    .usps-box .shop-usps {
        transform: translateY(-50%);
    }
}

.shop-usps {
    font-family: 'montserrat regular', sans-serif;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    text-align: left;
    margin: 11px;
}

.shop-usps li {
    margin-bottom: 0.5em;
    font-size: 0.8em;
}

@media all and (min-width: 481px) {
    .shop-usps li {
        font-size: 1em;
    }
}

.shop-usps li:before {
    content: '\e017';
    font-family: 'WooCommerce';
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: 0.618em;
    color: #b39964;
    text-decoration: none;
}

a.cta {
    display: inline-block;
    background-color: #b39964;
    color: #fff;
    padding: 0.5em 1em;
    margin: 1em 0;
}

a.cta:hover {
    color: #fff;
}

@media all and (max-width: 600px) {
    html.home,
    body.home {
        overflow: initial;
        padding-bottom: 5em;
    }
}

html body .gform_wrapper label.gfield_label,
html body .gform_wrapper legend.gfield_label {
    font-weight: 400;
}

html body .gform_wrapper ul.gform_fields:not(.top_label) .gfield_label {
    margin-bottom: 0;
}

html body .gform_wrapper form ul.gform_fields.left_label li.gfield,
html body .gform_wrapper form ul.gform_fields.right_label li.gfield,
html body .gform_wrapper ul.gform_fields.left_label li.gfield,
html body .gform_wrapper ul.gform_fields.right_label li.gfield {
    margin-bottom: 1px;
}

html body .gform_wrapper ul li.gfield {
    width: 100%;
    float: left;
    margin-top: 4px !important;
}

html body .gform_wrapper .left_label .gfield_error input.large,
html body .gform_wrapper .left_label .gfield_error select.large,
html body .gform_wrapper .left_label .gfield_error textarea.textarea,
html body .gform_wrapper .right_label .gfield_error input.large,
html body .gform_wrapper .right_label .gfield_error select.large,
html body .gform_wrapper .right_label .gfield_error textarea.textarea,
html body .gform_wrapper .left_label textarea.large,
html body .gform_wrapper .left_label textarea.medium,
html body .gform_wrapper .left_label textarea.small,
html body .gform_wrapper .right_label textarea.large,
html body .gform_wrapper .right_label textarea.medium,
html body .gform_wrapper .right_label textarea.small,
html body .gform_wrapper .left_label textarea.large,
html body .gform_wrapper .left_label input.large,
html body .gform_wrapper .left_label select.large,
html body .gform_wrapper .right_label input.large,
html body .gform_wrapper .right_label select.large {
    width: 100%;
}

html body .gfield_checkbox li {
    display: flex;
    align-items: center;
}

html body .gfield_checkbox li input {
    margin-right: 1em;
}

html body .gfield_checkbox li input,
html body .gfield_checkbox li label {
    float: none;
}

html body .gform_wrapper ul li.field_description_below div.ginput_container_checkbox,
html body .gform_wrapper ul li.field_description_below div.ginput_container_radio {
    margin-top: 6px;
}

html body .gform_wrapper ul li.field_description_below div.ginput_container_checkbox label,
html body .gform_wrapper ul li.field_description_below div.ginput_container_radio label {
    line-height: 1.2;
}

html body .gform_wrapper .gfield_required {
    color: #b39964;
}

h3.subscribe-to-our-newsletter + div {
    margin-top: 1em;
}

/* Validation errors */
body {
    /*  errors */
}

body .gform_wrapper div.validation_error {
    border-bottom: 0;
    border-top: 0;
    color: #b39964;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 25px;
}

body .gform_wrapper .top_label div.ginput_container {
    margin-top: 0 !important;
}

body .gform_wrapper .gfield_error .gfield_label,
body .gform_wrapper li.gfield_error div.ginput_complex.ginput_container label,
body .gform_wrapper li.gfield_error ul.gfield_checkbox,
body .gform_wrapper li.gfield_error ul.gfield_radio {
    color: #000;
}

body .gform_wrapper li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    border-left: none;
    border-right: none;
    border-top: none;
}

body .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
    margin-top: 0;
}

body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
body .gform_wrapper .field_description_below .gfield_description {
    background-color: transparent;
    border-color: transparent;
    padding: 0;
}

body .gform_wrapper div.validation_error,
body .gform_confirmation_message {
    color: #b39964;
    padding: 0;
    text-align: left;
}

body .gform_wrapper .validation_message {
    color: #b39964;
    font-weight: 300;
    margin-top: 0;
    padding: 0.5em !important;
}

@media all and (max-width: 768px) {
    .woocommerce table.shop_table_responsive tr td,
    .woocommerce-page table.shop_table_responsive tr td {
        float: left;
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    body.woocommerce-page table.cart tr:nth-child(2n) td,
    body.woocommerce-page table.cart .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background-color: transparent !important;
    }

    body.woocommerce-page table.cart tr:nth-child(2n),
    body.woocommerce-page table.cart .woocommerce-page table.shop_table_responsive tr:nth-child(2n) {
        background-color: #f9f9f9;
    }

    body.woocommerce-page table.cart tr.cart_item {
        float: left;
        width: 100%;
        margin-bottom: 1em;
    }

    body.woocommerce-page table.cart .product-thumbnail {
        border-top: 0;
        display: block;
        pointer-events: none;
        margin-top: -20px;
    }

    body.woocommerce-page table.cart .product-thumbnail:before {
        display: none;
    }

    body.woocommerce-page table.cart .product-thumbnail a {
        pointer-events: auto;
    }

    body.woocommerce-page table.cart .product-thumbnail img {
        float: right;
        max-height: 50px;
        width: auto;
    }

    body.woocommerce-page table.cart .product-remove {
        padding-bottom: 0;
    }

    body.woocommerce-page table.cart .product-thumbnail {
        padding-top: 0;
    }
}


/*
*
* Product sample form
*
*/


.gform_wrapper .product-option{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.gform_wrapper .product-option .gfield_label{
    order: 2;
    padding-left: 1em;
    flex: 1;
    margin-bottom: 0 !important;
}

.gform_wrapper .product-option .gfield_description{
    order: 1;
    flex-basis: 100px;
}

.gform_wrapper .product-option .gfield_description img{
    max-height: 60px;
}

.gform_wrapper .product-option .ginput_container{
    order: 3;
    flex: 1;
}

.gform_wrapper .product-option .ginput_container .ginput_quantity{
    margin-top: 0;
}

.gform_wrapper .product-option .ginput_product_price_label, .gform_wrapper .product-option .ginput_product_price{
    display: none;
}