@charset "UTF-8";
/*
Theme Name: Wynns
Author: commefort
Author URI: https://www.commefort.com
Description: Thema voor de Wynn's sites
Text Domain: wynns
Version: 0.1
*/
/* Neat 1.7.0.pre
 * http://neat.bourbon.io
 * Copyright 2012–2014 thoughtbot, inc.
 * MIT License */
/**
 * Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
 *
 * @type Bool
 */
html {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/**
 * Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
 *
 * Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
 *
 * @param {Number} $local-max-width ($max-width) - Max width to be applied to the element. Can be a percentage or a measure.
 *
 * @example scss
 *  .element {
 *    @include outer-container(100%);
 *  }
 *
 * @example css
 *  .element {
 *    *zoom: 1;
 *    max-width: 100%;
 *    margin-left: auto;
 *    margin-right: auto;
 *  }
 *
 *  .element:before, .element:after {
 *    content: " ";
 *    display: table;
 *  }
 *
 *  .element:after {
 *    clear: both;
 *  }
 */
/**
 * Changes the display property used by other mixins called in the code block argument.
 *
 * @param {String} $display (block) - Display value to be used within the block. Can be `table` or `block`.
 *
 * @example scss
 *   @include display(table) {
 *    .display-table {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css
 *   // CSS
 *   .display-table {
 *      display: table-cell;
 *      ...
 *   }
 */
/**
 * Changes the direction property used by other mixins called in the code block argument.
 *
 * @param {String} $direction (left-to-right) - Layout direction to be used within the block. Can be `left-to-right` or `right-to-left`.
 *
 * @example scss
 *   @include direction(right-to-left) {
 *    .right-to-left-block {
 *      @include span-columns(6);
 *     }
 *   }
 *
 * @example css
 *   // CSS
 *   .right-to-left-block {
 *     float: right;
 *      ...
 *   }
 */
/*normalize*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

[hidden] {
  display: none;
}

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

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

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

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

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 18px;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: .83em;
  margin: 1.67em 0;
}

h6 {
  font-size: .67em;
  margin: 2.33em 0;
}

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

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

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

p,
pre {
  margin: 1em 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1e m;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

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

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;
}

dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

menu,
ol,
ul {
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

figure {
  margin: 0;
}

form {
  margin: 0;
}

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

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

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

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

input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

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

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

html {
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

ul {
  margin: 0;
  padding: 0;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.caps {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

input, textarea {
  border-radius: 0;
}

/* Variables */
/* Productkiezer kleuren */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* Grid */
.col1 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col1 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col1:last-child {
    margin-right: 0;
  }
  .col1:nth-child(2n) {
    margin-right: 0;
  }
  .col1:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col1 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .col1:last-child {
    margin-right: 0;
  }
  .col1:nth-child(6n) {
    margin-right: 0;
  }
  .col1:nth-child(6n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1040px) {
  .col1 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 6.17215%;
  }
  .col1:last-child {
    margin-right: 0;
  }
  .col1:nth-child(12n) {
    margin-right: 0;
  }
  .col1:nth-child(12n+1) {
    clear: left;
  }
}

.col2 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col2 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col2:last-child {
    margin-right: 0;
  }
  .col2:nth-child(2n) {
    margin-right: 0;
  }
  .col2:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col2 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .col2:last-child {
    margin-right: 0;
  }
  .col2:nth-child(4n) {
    margin-right: 0;
  }
  .col2:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1040px) {
  .col2 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%;
  }
  .col2:last-child {
    margin-right: 0;
  }
  .col2:nth-child(6n) {
    margin-right: 0;
  }
  .col2:nth-child(6n+1) {
    clear: left;
  }
}

.col3 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col3 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col3:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col3 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col3:last-child {
    margin-right: 0;
  }
  .col3:nth-child(2n) {
    margin-right: 0;
  }
  .col3:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1040px) {
  .col3 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .col3:last-child {
    margin-right: 0;
  }
  .col3:nth-child(4n) {
    margin-right: 0;
  }
  .col3:nth-child(4n+1) {
    clear: left;
  }
}

.col4 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col4 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col4:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col4 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col4:last-child {
    margin-right: 0;
  }
  .col4:nth-child(2n) {
    margin-right: 0;
  }
  .col4:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1040px) {
  .col4 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  .col4:last-child {
    margin-right: 0;
  }
  .col4:nth-child(3n) {
    margin-right: 0;
  }
  .col4:nth-child(3n+1) {
    clear: left;
  }
}

.col5 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col5 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col5:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col5 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col5:last-child {
    margin-right: 0;
  }
  .col5:nth-child(2n) {
    margin-right: 0;
  }
  .col5:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1040px) {
  .col5 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
  }
  .col5:last-child {
    margin-right: 0;
  }
}

.col6 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col6 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col6:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col6 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col6:last-child {
    margin-right: 0;
  }
  .col6:nth-child(2n) {
    margin-right: 0;
  }
  .col6:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1040px) {
  .col6 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  .col6:last-child {
    margin-right: 0;
  }
  .col6:nth-child(2n) {
    margin-right: 0;
  }
  .col6:nth-child(2n+1) {
    clear: left;
  }
}

.col7 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col7 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col7:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col7 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col7:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .col7 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%;
  }
  .col7:last-child {
    margin-right: 0;
  }
}

.col8 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col8 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col8:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col8 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col8:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .col8 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
  }
  .col8:last-child {
    margin-right: 0;
  }
}

.col9 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col9 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col9:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col9 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col9:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .col9 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%;
  }
  .col9:last-child {
    margin-right: 0;
  }
}

.col10 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col10 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col10:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col10 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col10:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .col10 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 82.94039%;
  }
  .col10:last-child {
    margin-right: 0;
  }
}

.col11 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col11 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col11:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col11 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col11:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .col11 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 91.4702%;
  }
  .col11:last-child {
    margin-right: 0;
  }
}

.col12 {
  min-height: 1px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .col12 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col12:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .col12 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col12:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1040px) {
  .col12 {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  .col12:last-child {
    margin-right: 0;
  }
  .col12:nth-child(1n) {
    margin-right: 0;
  }
  .col12:nth-child(1n+1) {
    clear: left;
  }
}

/* End Grid */
.wrapper, .subwrapper {
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
}

#map-dealers img, #map-canvas img {
  max-width: none;
}

@media screen and (min-width: 0px) and (max-width: 1040px) {
  .wrapper {
    width: 94%;
  }

  .subwrapper {
    width: 94%;
  }
}
@media screen and (min-width: 1040px) and (max-width: 1350px) {
  .wrapper {
    width: 960px;
  }

  .subwrapper {
    width: 750px;
  }
}
@media screen and (min-width: 1350px) {
  .wrapper {
    width: 1260px;
  }

  .subwrapper {
    width: 800px;
  }
}
/* Navbar */
.navbar {
  background-color: #33117F;
  position: relative;
}
.navbar:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  top: 100%;
  background-color: #5d5d5d;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.logowrapper {
  height: 100%;
}
.logowrapper a {
  display: block;
  height: 100%;
}

nav.topnavigation .menu-hoofdmenu-container {
  float: left;
}
nav.topnavigation ul {
  margin: 0;
  padding: 0;
}
nav.topnavigation ul li {
  list-style-type: none;
  float: left;
  text-align: center;
}
nav.topnavigation ul li.search{
    display: inline-block;
    overflow: hidden;
    background: url('img/icons/search.png') no-repeat center center;
    width: 19px;
    text-indent: 9999px;
    overflow: hidden;
    margin-right: 10px;
  }
nav.topnavigation ul li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 16px 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
nav.topnavigation ul li a:hover {
  color: #e46324;
}
nav.topnavigation ul li.current-menu-item a {
  color: #e46324;
}
nav.topnavigation ul li ul {
  position: absolute;
  background-color: #33117f;
  z-index: 10000;
  display: none;
  padding-bottom: 15px;
}
nav.topnavigation ul li ul li {
  float: none;
  text-align: left;
}
nav.topnavigation ul li ul li a {
  padding: 5px 20px;
}
nav.topnavigation ul li:hover ul {
  display: block;
}

.active .language-chooser {
  display: block;
}

.language-chooser {
  position: absolute;
  right: -37px;
  top: 8px;
  text-decoration: none;
}
.language-chooser .flag-europe #notif{
  color: #fff;
  position: absolute;
  display: none;
  text-align: right;
  background: #33117f;
  margin-top: 30px;
  padding: 15px 20px 5px 20px;
  right: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.language-chooser .flag-europe:hover #notif, .language-chooser .flag-europe #notif:hover{
  display: block;
}

.navbar > .wrapper {
  position: relative;
}

.navbar-b-links {
  margin-right: 10px;
}
.navbar-b-links a {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2em;
}
.navbar-b-links a:hover {
  text-decoration: underline;
}

.type-chooser {
  background-color: #e6e6e6;
  border-bottom: 1px solid #5d5d5d;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.type-chooser .type {
  width: 33.3333%;
  float: left;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
}
.type-chooser .type div.image {
  height: 50px;
  margin-bottom: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.type-chooser .type span.subtitle {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  color: #595959;
  font-weight: 400;
  font-weight: bold;
}
.type-chooser .type.consumer .image {
  background-image: url("img/cars/consumer-car.svg");
}
.type-chooser .type.professional .image {
  background-image: url("img/cars/professional-car.svg");
}
.type-chooser .type.fleet .image {
  background-image: url("img/cars/fleet-car.svg");
}

.no-svg .type-chooser .type.consumer .image {
  background-image: url("img/cars/consumer-car.png");
}
.no-svg .type-chooser .type.professional .image {
  background-image: url("img/cars/professional-car.png");
}
.no-svg .type-chooser .type.fleet .image {
  background-image: url("img/cars/fleet-car.png");
}

footer {
  background-color: #33117F;
  padding: 25px 0;
  color: white;
  z-index: 1900;
  position: relative;
}
footer span {
  display: block;
}
footer .footer-info {
  margin-bottom: 25px;
}
footer .footer-info h6 {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}
footer .footer-info a {
  color: inherit;
  text-decoration: none;
}
footer .footer-info a:hover {
  text-decoration: underline;
}
footer span.copyright {
  display: block;
}
footer span.developer-info {
  display: block;
  line-height: 1.8em;
}
footer span.developer-info a {
  color: inherit;
  text-decoration: none;
}
footer span.developer-info a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
}
address span {
  line-height: 1.7em;
}
address span.caps {
  font-weight: 600;
}

div.footer-logo {
  background-image: url("img/logo.png");
  height: 50px;
  width: 200px;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -ms-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 15px;
}

.no-svg div.footer-logo {
  background-image: url("img/logo.png");
}

/* Homeslider */
#homeslider{
  visibility: hidden;
}
#homeslider div.afbeelding {
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#homeslider div.afbeelding .caption {
  text-align: center;
  height: 100%;
  float: right;
  padding-top: 50px;
}
#homeslider div.afbeelding .caption:empty {
  background-color: transparent;
}
#homeslider div.afbeelding .caption h2 {
  font-weight: bold;
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1em;
  border-bottom: 2px solid white;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
#homeslider div.afbeelding .caption img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
#homeslider div.afbeelding .caption p {
  margin: 0;
  font-size: 18px;
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
#homeslider div.afbeelding .caption p .readmore {
  display: inline-block;
  margin-top: 20px;
}

#customPager a {
  width: 25%;
  background-color: #e6e6e6;
  display: block;
  height: 65px;
  float: left;
  padding: 0 25px;
  border-right: 1px solid white;
  text-decoration: none;
  padding-top: 5px;
  position: relative;
}
#customPager a:last-child {
  border: none;
}
#customPager a.active span.text {
  font-weight: bold;
  color: #c30079;
}
#customPager a:hover span.text {
  font-weight: bold;
}
#customPager a:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: white;
  height: 5px;
  width: 100%;
  content: "";
}
#customPager a .progress-bar {
  position: absolute;
  width: 0;
  height: 5px;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #c30079;
}
#customPager a .progress-full {
  position: absolute;
  width: 0;
  height: 5px;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: #c30079;
}

#customPager a span {
  display: block;
  color: #595959;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

#customPager a span.alternate {
  text-transform: none;
  font-weight: bold;
  color: #c30079;
}

.button {
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 3px 10px;
  border-radius: 20px;
  color: white;
  background-color: #c2117a;
  border: 2px solid #f379c1;
  text-decoration: none;
  font-size: 11px;
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.button-high {
  padding: 10px;
}

.button-light {
  font-weight: 300;
}

.button-petrol {
  background-color: #84ba3c;
  border-color: #cce4ab;
}

.button-machines {
  background-color: #7e7e7e;
  border-color: #b6b6b6;
}

.button-diesel {
  background-color: #f2c911;
  border-color: #faeaa2;
}

.button-service {
  background-color: #e46324;
  border-color: #f5c4ac;
}

.button-oil {
  background-color: #ad1130;
  border-color: #f06782;
}

.button-cooling {
  background-color: #0083ca;
  border-color: #64c9ff;
}

.button-airco {
  background-color: #9bcef2;
  border-color: white;
}
.button-storage {
  background-color: #a050b4;
  border-color: white;
}
.button-equipment {
  background-color: #47c8b5;
  border-color: white;
}

.home-text {
  text-align: center;
  padding: 70px 200px;
}
.home-text h2 {
  font-weight: 300;
  font-size: 40px;
  margin: 0;
  margin-bottom: 30px;
}
.home-text p {
  font-size: 16px;
  color: #595959;
  margin: 0;
}
.home-text .additives-overzicht {
  width: 500px;
  margin: 0 auto;
  margin-top: 45px;
}
.home-text .additives-overzicht p {
  color: #32107e;
  font-weight: 600;
  text-align: center;
}
.home-text .additives-overzicht .additive-icon {
  padding-top: 85px;
  margin-top: 40px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 80px 80px;
  text-align: center;
  color: #32107e;
  text-transform: uppercase;
  font-weight: 600;
}
.home-text .additives-overzicht .fuel-icon {
  background-image: url("img/fuel.png");
}
.home-text .additives-overzicht .oil-icon {
  background-image: url("img/oil.png");
}
.home-text .additives-overzicht .coolant-icon {
  background-image: url("img/coolant.png");
}

.svg .home-text .additives-overzicht .fuel-icon {
  background-image: url("img/fuel.svg");
}
.svg .home-text .additives-overzicht .oil-icon {
  background-image: url("img/oil.svg");
}
.svg .home-text .additives-overzicht .coolant-icon {
  background-image: url("img/coolant.svg");
}

#homeProductSlider {
  background-color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #e6e6e6;
  visibility: hidden;
}
#homeProductSlider .overflower {
  background-color: white;
  z-index: 1;
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
#homeProductSlider .slider-nav {
  padding: 75px 0;
  position: relative;
  z-index: 2;
}
#homeProductSlider .slider-nav a {
  text-decoration: none;
  color: #595959;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
#homeProductSlider .slider-nav a.active span {
  color: #c30079;
  position: relative;
  display: inline-block;
  *display: inline;
  zoom: 1;
}
#homeProductSlider .slider-nav a.active span:after {
  position: absolute;
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #c30079;
  content: "";
  left: 50%;
  margin-left: -8px;
  display: none;
}
#homeProductSlider .slider-wrapper {
  position: relative;
  width: 66.66%;
}
#homeProductSlider .product {
  height: 450px;
  width: 100%;
  padding-left: 250px;
  margin-left: 33.33%;
  background-position: 5% top;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0px;
}
#homeProductSlider .product a{
  text-decoration: none;
}
#homeProductSlider .product a h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
  line-height: 1.1em;
  color: #222;
}
#homeProductSlider .product a:hover h3{
  color: #c2117a;
}
#homeProductSlider .product span.subtitle {
  color: #595959;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  margin-top: 5px;
}
#homeProductSlider .product ul {
  padding-left: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}
#homeProductSlider .product ul li {
  list-style-type: disc;
  color: #595959;
  font-size: 10px;
  line-height: 20px;
}
#homeProductSlider .product ul li span {
  color: black;
  font-size: 14px;
  display: block;
  margin-left: -5px;
  margin-top: 2px;
}
#homeProductSlider .product span.label {
  display: block;
  width: 150px;
  margin-top: 10px;
  color: #595959;
}
#homeProductSlider .product .video {
  width: 180px;
  float: left;
  position: relative;
}
#homeProductSlider .product .videolink {
  display: block;
  width: 100%;
  height: 100%;
}
#homeProductSlider .product .videolink:hover:after {
  display: block;
  content: "";
  background-color: rgba(150, 150, 150, 0.5);
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}
#homeProductSlider .product .videolink span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 3;
}
#homeProductSlider .product .videolink img {
  position: relative;
  display: block;
  width: 100%;
}
#homeProductSlider .overlaytext {
  position: absolute;
  top: 0;
  z-index: 2;
  background-color: white;
  width: 300px;
  height: 100%;
}
#homeProductSlider .overlaytext h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
}
#homeProductSlider .overlaytext span.subtitle {
  color: #595959;
  text-transform: uppercase;
  font-size: 16px;
}
#homeProductSlider .overlaytext p.alternate {
  margin-top: 2em;
  text-transform: uppercase;
}
#homeProductSlider .overlaytext p {
  margin: 0;
}
#homeProductSlider .overlaytext .button {
  display: inline-block;
  margin-top: 20px;
}

#homeProductSlider .bx-viewport {
  overflow: visible !important;
}

#geschiedenis .inleiding-afbeelding {
  height: 500px;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#geschiedenis .inleiding-text {
  padding: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#geschiedenis .inleiding-afbeelding h2 {
  color: white;
  font-weight: 300;
  font-size: 70px;
  margin: 0;
  margin-top: 270px;
  text-align: center;
}
#geschiedenis .inleiding-text p {
  color: white;
  margin: 0;
  margin-bottom: 1em;
}
#geschiedenis .inleiding-text p * {
  color: white;
}
#geschiedenis .geschiedenis-item {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
  width: 100%;
  padding: 100px 0;
}
#geschiedenis .geschiedenis-item .button{
  margin-left: 0px;
}
#geschiedenis .geschiedenis-item h3.year {
  font-size: 70px;
  color: #595959;
  font-weight: normal;
  margin: 0;
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: inline-block;
  *display: inline;
  position: relative;
  zoom: 1;
}
#geschiedenis .geschiedenis-item h3.year:after {
  height: 3px;
  width: 60%;
  margin-left: -30%;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: #595959;
  content: "";
  display: block;
}
#geschiedenis .geschiedenis-item p {
  width: 50%;
  font-size: 16px;
}
#geschiedenis .geschiedenis-item.geschiedenis-item-alternate h3 {
  color: white;
}
#geschiedenis .geschiedenis-item.geschiedenis-item-alternate h3:after {
  background-color: white;
}
#geschiedenis .geschiedenis-item.geschiedenis-item-alternate p {
  color: white;
}

p.alternate {
  font-weight: bold;
}

.icon-petrol {
  background-image: url("img/icons/petrol-icon.png");
}

.icon-machines {
  background-image: url("img/icons/machines-icon.png");
}

.icon-diesel {
  background-image: url("img/icons/diesel-icon.png");
}

.icon-service {
  background-image: url("img/icons/service-icon.png");
}

.icon-oil {
  background-image: url("img/icons/oil-icon.png");
}

.icon-cooling {
  background-image: url("img/icons/cooling-icon.png");
}

.icon-airco {
  background-image: url("img/icons/airco-icon.png");
}
.icon-storage {
  background-image: url("img/icons/storage-icon.png");
}
.icon-equipment {
  background-image: url("img/icons/equipment-icon.png");
}

i.icon {
  display: inline-block;
  *display: inline;
  zoom: 1;
  height: 60px;
  width: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  float: left;
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}
i.icon.icon-color.icon-petrol {
  background-image: url("img/icons/petrol-icon-color.png");
}
i.icon.icon-color.icon-machines {
  background-image: url("img/icons/machines-icon-color.png");
}
i.icon.icon-color.icon-diesel {
  background-image: url("img/icons/diesel-icon-color.png");
}
i.icon.icon-color.icon-service {
  background-image: url("img/icons/service-icon-color.png");
}
i.icon.icon-color.icon-oil {
  background-image: url("img/icons/oil-icon-color.png");
}
i.icon.icon-color.icon-cooling {
  background-image: url("img/icons/cooling-icon-color.png");
}
i.icon.icon-color.icon-airco {
  background-image: url("img/icons/airco-icon-color.png");
}
i.icon.icon-color.icon-storage {
  background-image: url("img/icons/storage-icon-color.png");
}
i.icon.icon-color.icon-equipment {
  background-image: url("img/icons/equipment-icon-color.png");
}

#productenkiezer .navigate-products {
  margin-right: 0;
  background-color: #e6e6e6;
  position: relative;
}
#productenkiezer .navigate-products .cars {
  z-index: 2;
  height: 100%;
  background-color: #e6e6e6;
}
#productenkiezer .navigate-products .cars .car {
  display: block;
  text-decoration: none;
  padding-left: 25px;
  width: 175px;
  height: 200px;
}
#productenkiezer .navigate-products .cars .car .voertuig {
  height: 50px;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  background-size: contain;
}
#productenkiezer .navigate-products .cars .car span.title {
  text-decoration: none;
  color: #595959;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  display: block;
}
#productenkiezer .navigate-products .cars .consumer-car .voertuig {
  background-image: url("img/cars/consumer-car-grey.png");
}
#productenkiezer .navigate-products .cars .professional-car .voertuig {
  background-image: url("img/cars/professional-car-grey.png");
}
#productenkiezer .navigate-products .cars .fleet-car .voertuig {
  background-image: url("img/cars/fleet-car-grey.png");
}
#productenkiezer .navigate-products .cars .car:hover.consumer-car .voertuig, #productenkiezer .navigate-products .cars .car.active.consumer-car .voertuig {
  background-image: url("img/cars/consumer-car.png");
}
#productenkiezer .navigate-products .cars .car:hover.professional-car .voertuig, #productenkiezer .navigate-products .cars .car.active.professional-car .voertuig {
  background-image: url("img/cars/professional-car.png");
}
#productenkiezer .navigate-products .cars .car:hover.fleet-car .voertuig, #productenkiezer .navigate-products .cars .car.active.fleet-car .voertuig {
  background-image: url("img/cars/fleet-car.png");
}
#productenkiezer .navigate-products .voertuig-wrapper {
  height: 100%;
}
#productenkiezer .navigate-products nav {
  z-index: 3;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 350ms ease-in;
  transition: all 350ms ease-in;

  /*background-color: #9bcef2;*/
}
#productenkiezer .navigate-products nav:after {
  content: "";
  display: block;
  left: -5px;
  top: 0;
  width: 0px;
  position: absolute;
  height: 100%;
  border-left: 5px solid rgba(0, 0, 0, 0.2);
}
#productenkiezer .navigate-products nav ul li {
  background-color: #9bcef2;
}
#productenkiezer .navigate-products nav ul li.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.open a {
  color: #9bcef2;
  border-left: 5px solid #9bcef2;
}
#productenkiezer .navigate-products nav ul li a {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 20px 15px;
  display: block;
  position: relative;
}
#productenkiezer .navigate-products nav ul li a span {
  display: block;
  float: left;
  margin-top: 20px;
}
#productenkiezer .navigate-products nav ul li:hover i {
  margin-left: 10px;
}
#productenkiezer .navigate-products nav ul li:last-child,
#productenkiezer .navigate-products nav ul li.lijntje {
  border-bottom: 1px solid white;
}
#productenkiezer .navigate-products nav ul li:last-child.open {
  border: none;
}
#productenkiezer .navigate-products nav ul li.open {
  -webkit-transition: all 0 ease-in;
  transition: all 0 ease-in;
}
#productenkiezer .navigate-products nav ul li.open i.icon-petrol {
  background-image: url("img/icons/petrol-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-machines {
  background-image: url("img/icons/machines-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-diesel {
  background-image: url("img/icons/diesel-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-service {
  background-image: url("img/icons/service-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-oil {
  background-image: url("img/icons/oil-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-cooling {
  background-image: url("img/icons/cooling-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-airco {
  background-image: url("img/icons/airco-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-storage {
  background-image: url("img/icons/storage-icon-color.png");
}
#productenkiezer .navigate-products nav ul li.open i.icon-equipment {
  background-image: url("img/icons/equipment-icon-color.png");
}
#productenkiezer .navigate-products.open nav {
  right: -100px;
}
.solutionsforproblem .sub{
  font-size: 16px;
  color: #595959;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 35px;
}
#productenkiezer .overzicht {
  padding: 55px 75px;
}
#productenkiezer .overzicht h1 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
  line-height: 1.1em;
}
#productenkiezer .overzicht p.sub {
  font-size: 16px;
  color: #595959;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 35px;
}
#productenkiezer .overzicht .car {
  position: relative;
}
#productenkiezer .overzicht .car img {
  max-width: 100%;
  display: block;
  margin: 0px auto;
}
#productenkiezer .overzicht .car .overimage {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 350ms ease-in;
  transition: opacity 350ms ease-in;
}
#productenkiezer .overzicht .car .overimage.visible {
  opacity: 1;
}

#productenkiezer .navigate-products nav ul li.petrol {
  background-color: #84ba3c;
}
#productenkiezer .navigate-products nav ul li.petrol.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.petrol.open a {
  color: #84ba3c;
  border-left: 5px solid #84ba3c;
}

#productenkiezer .navigate-products nav ul li.machines {
  background-color: #7e7e7e;
}
#productenkiezer .navigate-products nav ul li.machines.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.machines.open a {
  color: #7e7e7e;
  border-left: 5px solid #7e7e7e;
}

#productenkiezer .navigate-products nav ul li.diesel {
  background-color: #f2c911;
}
#productenkiezer .navigate-products nav ul li.diesel.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.diesel.open a {
  color: #f2c911;
  border-left: 5px solid #f2c911;
}

#productenkiezer .navigate-products nav ul li.service {
  background-color: #e46324;
}
#productenkiezer .navigate-products nav ul li.service.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.service.open a {
  color: #e46324;
  border-left: 5px solid #e46324;
}

#productenkiezer .navigate-products nav ul li.oil {
  background-color: #ad1130;
}
#productenkiezer .navigate-products nav ul li.oil.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.oil.open a {
  color: #ad1130;
  border-left: 5px solid #ad1130;
}

#productenkiezer .navigate-products nav ul li.cooling {
  background-color: #0083ca;
}
#productenkiezer .navigate-products nav ul li.cooling.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.cooling.open a {
  color: #0083ca;
  border-left: 5px solid #0083ca;
}

#productenkiezer .navigate-products nav ul li.storage {
  background-color: #a050b4;
}
#productenkiezer .navigate-products nav ul li.storage.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.storage.open a {
  color: #a050b4;
  border-left: 5px solid #a050b4;
}

#productenkiezer .navigate-products nav ul li.equipment {
  background-color: #47c8b5;
}
#productenkiezer .navigate-products nav ul li.equipment.open {
  background-color: #fff;
}
#productenkiezer .navigate-products nav ul li.equipment.open a {
  color: #47c8b5;
  border-left: 5px solid #47c8b5;
}
#productenkiezer .overzicht .car img.car-empty{
  display: none;
}
#productenkiezer .prodkiezerbutton{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 7px 30px;
  text-align: center;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}
#productenkiezer .prodkiezerbutton .upper{
  text-transform: uppercase;
}
#productenkiezer .prodkiezerbuttonwrap{
  text-align: left;
}
#productenkiezer .prodkiezerbuttonwrap:last-child{
  text-align: right;
}
#productenkiezer .petrol-links .prodkiezerbutton{
  background-color: #84ba3c;
}
#productenkiezer .machines-links .prodkiezerbutton{
  background-color: #7e7e7e;
}
#productenkiezer .diesel-links .prodkiezerbutton{
  background-color: #f2c911;
}
#productenkiezer .service-links .prodkiezerbutton{
  background-color: #e46324;
}
#productenkiezer .oil-links .prodkiezerbutton{
  background-color: #ad1130;
}
#productenkiezer .cooling-links .prodkiezerbutton{
  background-color: #0083ca;
}
#productenkiezer .storage-links .prodkiezerbutton{
  background-color: #a050b4;
}
#productenkiezer .airco-links .prodkiezerbutton{
  background-color: #9bcef2;
}
.essentialstitle{
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 0px;
  line-height: 1.1em;
}



#contact #map-canvas {
  height: 500px;
  background-color: #e6e6e6;
}
#contact #map-canvas .gmnoprint {
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in;
  transition: opacity 250ms ease-in;
}
#contact #map-canvas:hover .gmnoprint {
  opacity: 1;
}
#contact .form-wrapper {
  padding: 65px 95px;
}
#contact .form-wrapper .contact-info-wrapper {
  width: 500px;
  margin-bottom: 35px;
}
#contact .form-wrapper h1 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
  margin-bottom: 35px;
}
#contact .form-wrapper p {
  margin: 0;
}
#contact .form-wrapper address {
  margin-bottom: 25px;
}
#contact .form-wrapper a {
  color: #c2117a;
  text-decoration: none;
  display: block;
  font-weight: 600;
}
#contact .form-wrapper a:hover {
  text-decoration: underline;
}
#contact .form-wrapper form {
  width: 500px;
}
#contact .form-wrapper form li {
  list-style-type: none;
  margin-top: 25px;
}

#contact .form-wrapper form li input:not([type="checkbox"]), #contact .form-wrapper form li select, #contact .form-wrapper form li textarea, #contact .form-wrapper form li .sod_select {
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
#contact .form-wrapper form li input, #contact .form-wrapper form li textarea {
  padding: 10px 10px;
  border: 2px solid #b2b2b2;
}
#contact .form-wrapper form li:first-child {
  margin-top: 0;
}
#contact .form-wrapper form .gform_footer {
  margin-top: 25px;
}
#contact .form-wrapper form .gform_footer input {
  -webkit-appearance: none;
  width: 100%;
  background-color: #d8d8d8;
  text-transform: uppercase;
  color: #595959;
  border: 1px solid #595959;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  -webkit-transition: background 150ms ease-in;
  transition: background 150ms ease-in;
}
#contact .form-wrapper form .gform_footer input:hover {
  background-color: #bfbfbf;
}
#contact .form-wrapper form ::-webkit-input-placeholder {
  color: black;
}
#contact .form-wrapper form :-moz-placeholder {
  /* Firefox 18- */
  color: black;
}
#contact .form-wrapper form ::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}
#contact .form-wrapper form :-ms-input-placeholder {
  color: black;
}

hr.enhanced {
  border-top: 2px solid #e6e6e6;
  height: 0;
}

#msds {
  padding: 35px 0;
}
#msds .msds {
  width: 100%;
}
#msds th {
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  color: #c2117a;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 600;
}
#msds td {
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  color: #595959;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}
#msds td a {
  color: inherit;
  text-decoration: none;
}
#msds td.download-msds-wrapper {
  position: relative;
}
#msds td.download-msds-wrapper .download-dropdown {
  position: absolute;
  display: none;
  left: 0%;
  margin-left: -40px;
  z-index: 10;
  top: 100%;
  background-color: white;
  border: 1px solid #cccccc;
  padding: 10px 0;
}
#msds td.download-msds-wrapper .download-dropdown:after {
  position: absolute;
  top: 100%;
  width: 90%;
  margin-left: 5%;
  height: 6px;
  background-color: #cccccc;
  display: block;
  content: "";
}
#msds td.download-msds-wrapper .download-dropdown li {
  padding: 2px 10px;
  padding-left: 40px;
  list-style-type: none;
}
#msds td.download-msds-wrapper .download-dropdown li:hover {
  background-color: #e6e6e6;
}
#msds td.download-msds-wrapper .download-dropdown li.msds-download-field {
  background-image: url("img/icons/msds.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: contain;
}
#msds tr:hover td {
  color: #000;
}
#msds tr:hover td .download-dropdown {
  color: #595959;
}
#msds tr:hover td .download-dropdown a {
  color: #595959;
}
#msds tr:hover td .download-dropdown a:hover {
  color: black;
}

#msds-videos, #msds-brochures {
  padding: 35px 0;
}
#msds-videos h2, #msds-brochures h2 {
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 35px;
}
#msds-videos .video, #msds-videos .brochure, #msds-brochures .video, #msds-brochures .brochure {
  margin-right: 7.04225%;
  width: 28.6385%;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 4px solid #e6e6e6;
}
#msds-videos .video.col4:nth-child(3n), #msds-videos .brochure.col4:nth-child(3n), #msds-brochures .video.col4:nth-child(3n), #msds-brochures .brochure.col4:nth-child(3n) {
  margin-right: 0;
}
#msds-videos .video a, #msds-videos .brochure a, #msds-brochures .video a, #msds-brochures .brochure a {
  display: block;
  text-decoration: none;
}
#msds-videos .video a img, #msds-videos .brochure a img, #msds-brochures .video a img, #msds-brochures .brochure a img {
  width: 100%;
  border: 4px solid #e6e6e6;
}
#msds-videos .video a h3, #msds-videos .brochure a h3, #msds-brochures .video a h3, #msds-brochures .brochure a h3 {
  color: #c30079;
  text-transform: uppercase;
  font-size: 18px;
}
#msds-videos .video p, #msds-videos .brochure p, #msds-brochures .video p, #msds-brochures .brochure p {
  color: #595959;
}

#msds-brochures .brochure a img {
  border: none;
}
.inlineblock {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.dataTables_filter {
  display: none;
  opacity: 0;
  visibility: hidden;
}

table.dataTable.no-footer {
  border: none;
}

form.search-form {
  width: 100%;
  padding: 25px 0;
  border-bottom: 2px solid #e6e6e6;
  text-align: center;
}
form.search-form label {
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: 16px;
  float: left;
  text-align: center;
}
form.search-form label .alternate {
  text-transform: none;
  color: #c30079;
}
form.search-form label span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  float: left;
}
.downloadsearchform label span{
  height: 38px;
  line-height: 38px;
}
form.search-form label input {
  margin-left: 15px;
  border: 1px solid #b2b2b2;
  padding: 10px 10px;
  outline: none;
  width: 745px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #595959;
  -webkit-font-smoothing: antialiased;
  float: left;
}
form.search-form label  .noticeartcode{
    font-weight: normal;
    text-transform: none;
    clear: both;
    margin: 0px;
    padding-bottom: 20px;
    color: #595959;
    font-size: 12px;
}
form.search-form .button {
  float: left;
}

.infowindow p {
  margin-bottom: 0;
  margin-top: 0;
}
.infowindow p.alternate {
  margin-bottom: 15px;
}

table.dataTable thead .sorting_asc {
  background: url("img/icons/sort_asc.png") no-repeat center right;
}

table.dataTable thead .sorting_desc {
  background: url("img/icons/sort_desc.png") no-repeat center right;
}

/* Dealers pagina */
#map-dealers {
  height: 600px;
  width: 100%;
}

.infowindow {
  min-width: 200px;
  min-height: 120px;
}

.map-dealers-wrapper {
  position: relative;
}

div.map-dropdown {
  position: absolute;
  z-index: 1001;
  top: 0;
  margin-top: 20px;
}

.map-dropdown .sod_select .sod_label {
  min-width: 250px;
}

div.filiaallijst {
  margin-top: 10px;
  max-height: 450px;
  overflow: scroll;
}
div.filiaallijst ul li {
  background-color: white;
  list-style-type: none;
  margin-bottom: 5px;
}
div.filiaallijst ul li .header {
  font-size: 12px;
  font-weight: 600;
  color: #595959;
  cursor: pointer;
  padding: 15px;
  -webkit-user-select: none;
}
div.filiaallijst ul li .body {
  display: none;
  padding: 15px;
  padding-top: 0;
}
div.filiaallijst ul li .body address {
  margin-bottom: 15px;
}
div.filiaallijst ul li .body address p {
  margin: 0;
}
div.filiaallijst ul li .body .contactinfo a {
  color: #595959;
  text-decoration: none;
}
div.filiaallijst ul li .body .contactinfo a:hover {
  text-decoration: underline;
}
div.filiaallijst ul li.opened .header {
  color: #c30079;
  font-size: 16px;
}
div.filiaallijst ul li.opened .body {
  display: block;
}
div.filiaallijst ul li .body .dealertype{
  font-weight: bold;
}

/* Nieuwspagina */
#nieuwspagina .producttitle a{
  color: #595959;
}
#nieuwspagina .nieuwsbericht {
  border-bottom: 2px solid #e6e6e6;
}
#nieuwspagina .nieuwsbericht:last-child {
  border-bottom: 0;
}
#nieuwspagina article {
  max-width: 630px;
  min-height: 100%;
}
#nieuwspagina article h1, #nieuwspagina article h2 {
  font-size: 35px;
  font-weight: 300;
  margin: 50px 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#nieuwspagina article p.ondertitel {
  font-size: 16px;
  color: #595959;
}
#nieuwspagina article h2, #nieuwspagina article h3, #nieuwspagina article h4, #nieuwspagina article h5, #nieuwspagina article h6 {
  font-weight: normal;
  margin: 1em 0;
  text-transform: uppercase;
}
#nieuwspagina article ul {
  padding-left: 20px;
  margin: 1em;
}

.nieuwsafbeelding {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
@media only screen and (max-width: 767px){
  #nieuwspagina .productafbeelding-achtergrond{
    background-position: center left;
  }
}

.fb_iframe_widget {
  margin-top: 15px;
  margin-bottom: 40px;
}

.overzicht .product {
  padding-bottom: 5px;
  border-bottom: 4px solid #e6e6e6;
}

.overzicht-features {
  padding-top: 50px;
}

.product {
  margin-bottom: 35px;
}
.product .productafbeelding-achtergrond {
  height: 250px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-bottom: 15px;
  display: block;
}
.product .productafbeelding {
  display: block;
}
.product .productafbeelding img {
  display: block;
  margin: 0 auto;
}
.product .producttitle a {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  display: block;
  text-decoration: none;
}

.product .warning{
  font-weight: bold;
}
.product p {
  color: #595959;
}

.breadcrumbs {
  font-size: 18px;
  color: #595959;
  text-align: right;
  margin-bottom: 35px;
}
.breadcrumbs a {
  text-decoration: none;
  color: inherit;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.grey-color, .bx-wrapper .grey-color .bx-caption span {
  color: #595959;
}
.grey-color a {
  color: inherit;
}
.petrol-color, .bx-wrapper .petrol-color .bx-caption span {
  color: #84ba3c;
}
.petrol-color a {
  color: inherit;
}

.machines-color, .bx-wrapper .machines-color .bx-caption span {
  color: #7e7e7e;
}
.machines-color a {
  color: inherit;
}

.diesel-color, .bx-wrapper .diesel-color .bx-caption span {
  color: #f2c911;
}
.diesel-color a {
  color: inherit;
}

.service-color, .bx-wrapper .service-color .bx-caption span {
  color: #e46324;
}
.service-color a {
  color: inherit;
}

.oil-color, .bx-wrapper .oil-color .bx-caption span {
  color: #ad1130;
}
.oil-color a {
  color: inherit;
}

.cooling-color, .bx-wrapper .cooling-color .bx-caption span {
  color: #0083ca;
}
.cooling-color a {
  color: inherit;
}

.airco-color, .bx-wrapper .airco-color .bx-caption span {
  color: #9bcef2;
}
.airco-color a {
  color: inherit;
}

.storage-color, .bx-wrapper .storage-color .bx-caption span {
  color: #a050b4;
}
.storage-color a {
  color: inherit;
}

.equipment-color, .bx-wrapper .equipment-color .bx-caption span {
  color: #47c8b5;
}
.equipment-color a {
  color: inherit;
}

#productenkiezer .subcontent {
  margin-top: 50px;
  margin-bottom: 35px;
}

/* Single Product */
.single-product .overzicht article .icon {
  margin-bottom: 10px;
}
.single-product .overzicht article h3.sub {
  margin: 0;
  text-transform: uppercase;
}
.single-product .overzicht article .product-explanation {
  font-size: 18px;
  color: #595959;
}
.single-product .overzicht article ul {
  padding-left: 20px;
}
.single-product .overzicht article ul li {
  list-style-type: circle;
  display: list-item;
}
.single-product .overzicht article ul li.insprong {
  margin-left: 25px;
}
.single-product .overzicht .video {
  margin-top: 10px;
}
.single-product .overzicht .video a{
  display: block;
  position: relative;
}
.single-product .overzicht .video a img {
  width: 100%;
  border: 4px solid #e6e6e6;
}
.single-product .overzicht .video a span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 10px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 3;
}
.single-product .overzicht .extra-info > div {
  margin-top: 35px;
  border-top: 4px solid #e6e6e6;
  padding-top: 35px;
}
.single-product .overzicht .extra-info > div h3 {
  text-transform: uppercase;
  margin: 0;
}
.single-product .overzicht .extra-info > div p {
  color: #595959;
}
.single-product .overzicht .downloads h3 {
  text-transform: uppercase;
}
.single-product .overzicht .downloads .button {
  font-size: 12px;
  padding: 5px 10px;
}
.single-product .overzicht .downloads .button.button-msds {
  padding-left: 30px;
  background-image: url("img/icons/msds-white.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 4px center;
}
.single-product .overzicht .overzicht-features, .single-product .overzicht .overzicht-related-products {
  margin-top: 35px;
}
.single-product .overzicht .overzicht-features h2, .single-product .overzicht .overzicht-related-products h2 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
  line-height: 1.1em;
}

/* Geschiedenis Pagina */
#wynns .slide {
  height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#wynns .slide > div {
  height: 100%;
  color: white;
}
#wynns .slide.light {
  color: #e6e6e6;
}
#wynns .slide h1 {
  color: white;
  font-weight: 300;
  font-size: 70px;
  margin: 0;
  margin-top: 300px;
}
#wynns .slide h2 {
  font-size: 40px;
  font-weight: 300;
  margin: 0;
  margin-bottom: 40px;
}
#wynns .slide p {
  font-size: 18px;
}
#wynns .slide img {
  margin-bottom: 50px;
}
#wynns .slide ul {
  padding-left: 20px;
}
#wynns .slide ul li {
  font-size: 18px;
  display: list-item;
}
#wynns .slide.center-text {
  text-align: center;
}
#wynns .slide.slide-background-left {
  background-size: contain;
  background-position: left center;
}
#wynns .slide.light-background {
  color: #595959;
}
#wynns .slide.light-background p {
  color: #595959;
}
#wynns .slide.light-background li {
  color: #595959;
}
#wynns .slide.light-background h1, #wynns .slide.light-background h2, #wynns .slide.light-background h3, #wynns .slide.light-background h4, #wynns .slide.light-background h5, #wynns .slide.light-background h6 {
  color: black;
}
#wynns .slide.special-list li {
  margin-bottom: 35px;
  list-style-type: none;
}
#wynns .slide.special-list li p {
  margin: 0;
  font-size: 18px;
  text-align: left;
  margin: 5px 0;
  margin-bottom: 0;
}
#wynns .slide.special-list div.elipse {
  padding: 10px;
  background-color: white;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-align: left;
}
#wynns .slide.special-list div.elipse i {
  height: 26px;
  width: 26px;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  background-color: #e46324;
  color: white;
  font-style: normal;
  line-height: 26px;
  display: inline-block;
  *display: inline;
  text-align: center;
  zoom: 1;
  float: left;
}
#wynns .slide.special-list div.elipse span {
  line-height: 26px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: 18px;
  color: #404040;
  text-transform: uppercase;
  line-height: 26px;
  margin-left: 10px;
  float: left;
}
#wynns .geschiedenis-slider {
  background-attachment: fixed;
  background-size: cover;
  -webkit-transition: background 350ms ease-in;
  transition: background 350ms ease-in;
  background-position: center center;
}
#wynns .geschiedenis-slider .fake-background-attachement {
  display: none;
  height: 100%;
  width: 100%;
  background-size: cover;
  -webkit-transition: background 350ms ease-in;
  transition: background 350ms ease-in;
  position: relative;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
#wynns .geschiedenis-slider #geschiedenis-timeline {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 125px 50px;
  color: white;
  z-index: 2;
  position: relative;
}
#wynns .geschiedenis-slider #geschiedenis-timeline a.year {
  color: white;
  text-decoration: none;
  font-size: 70px;
  display: block;
}
#wynns .geschiedenis-slider #geschiedenis-timeline a.year:hover {
  color: #e46324;
}
#wynns .geschiedenis-slider #geschiedenis-timeline h2.titel {
  color: #e56425;
  font-size: 70px;
  font-weight: 300;
  line-height: 1.2em;
  margin-top: 0;
}
#wynns .geschiedenis-slider #geschiedenis-timeline img {
  margin: 0 auto;
  display: block;
}
#wynns .geschiedenis-slider #geschiedenis-timeline p {
  font-size: 18px;
  margin: 0;
}
#wynns .geschiedenis-slider #geschiedenis-timeline .time {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
#wynns .geschiedenis-slider #geschiedenis-timeline .time:after {
  position: absolute;
  width: 33.3333%;
  left: 33.3333%;
  height: 1px;
  content: "";
  z-index: 2;
  background-color: #e46324;
  top: 100%;
}

.menu-toggle {
  display: none;
  z-index: 2;
  position: absolute;
  right: 20px;
  top: 20px;
  height: 50px;
  width: 30px;
}

.menu-toggle-sub {
  display: block;
  height: 5px;
  width: 30px;
  background: #fff;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-toggle-sub:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 0px;
  width: 30px;
  height: 5px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-toggle-sub:after {
  content: '';
  position: absolute;
  top: 20px;
  width: 30px;
  right: 0px;
  height: 5px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-toggle-sub.active {
  background: transparent;
}
.menu-toggle-sub.active:before {
  -webkit-transform: rotate(45deg);
  top: 10px;
}
.menu-toggle-sub.active:after {
  -webkit-transform: rotate(-45deg);
  top: 10px;
}

/* Splash */
#splash {
  background-image: url("afbeeldingen/a1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
}
#splash:after {
  position: fixed;
  z-index: 2;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#splash .options {
  position: relative;
  z-index: 3;
}
#splash .info {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 5;
}
#splash .info a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 10px;
}
#splash .info a:hover {
  text-decoration: underline;
}
#splash .logo {
  display: block;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 3;
}
#splash .logo img {
  width: 33%;
  margin: 0 auto;
  display: block;
}
#splash p.head {
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px white solid;
  color: white;
}
#splash ul li {
  list-style: none;
  clear: both;
  margin-bottom: 10px;
}
#splash ul li a {
  color: white;
  text-decoration: none;
  display: block;
  overflow: hidden;
  height: 32px;
  line-height: 32px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
#splash ul li a:hover {
  text-decoration: underline;
}
#splash ul li a i {
  margin-right: 10px;
}

/* Flags */
[class^="flag-"] {
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 32px;
  height: 32px;
  background-color: white;
  float: left;
  background: url("img/flags/flags-sprite.png") no-repeat top left;
  display: block;
}

.fix-content {
  z-index: 10000;
  background-color: #e6e6e6;
  clear: both;
}

.flag-austria {
  background-position: 0 0;
}

.flag-finland {
  background-position: 0 -82px;
}

.flag-poland {
  background-position: 0 -164px;
}

.flag-belarus {
  background-position: 0 -246px;
}

.flag-europe {
  background-position: 0 -328px;
}

.flag-romania {
  background-position: 0 -410px;
}

.flag-belgium {
  background-position: 0 -492px;
}

.flag-usa {
  background-position: 0 -574px;
}

.flag-czechrepublic {
  background-position: 0 -656px;
}

.flag-netherlands {
  background-position: 0 -738px;
}

.flag-bulgaria {
  background-position: 0 -820px;
}

.flag-germany {
  background-position: 0 -902px;
}
.flag-globe {
  background-position: -82px -902px;
}
.flag-globe #notif{
 color: rgba(0,0,0,0);
 text-decoration: none;
}

.flag-russia {
  background-position: 0 -984px;
}

.flag-lithuania {
  background-position: 0 -1066px;
}

.flag-australia {
  background-position: 0 -1148px;
}

.flag-serbia {
  background-position: 0 -1230px;
}

.flag-france {
  background-position: 0 -1312px;
}

.flag-ukraine {
  background-position: 0 -1394px;
}

.flag-hungary {
  background-position: 0 -1476px;
}

.flag-unitedkingdom {
  background-position: 0 -1558px;
}

.flag-greece {
  background-position: 0 -1640px;
}

.flag-morocco {
  background-position: 0 -1722px;
}

.flag-algeria {
  background-position: 0 -1804px;
}

.flag-cyprus {
  background-position: 0 -1886px;
}

.flag-senegal {
  background-position: -82px 0;
}

.flag-uab {
  background-position: -82px -82px;
}

.flag-japan {
  background-position: -82px -164px;
}

.flag-skorea {
  background-position: -82px -246px;
}

.flag-turkey {
  background-position: -82px -328px;
}

.flag-philippines {
  background-position: -82px -410px;
}

.flag-italy {
  background-position: -82px -492px;
}

.flag-spain {
  background-position: -82px -574px;
}

.flag-sweden {
  background-position: -82px -656px;
}

.flag-switzerland {
  background-position: -82px -738px;
}

.flag-tunesia {
  background-position: -82px -820px;
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -ms-transform: translatez(0);
  transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(img/slider/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(img/slider/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url(img/slider/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(img/slider/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 11000;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("img/icons/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: 0px;
  right: -50px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 8040;
  background-image: url("img/icons/close_button.png");
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("img/icons/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 11000;
  background: url("img/icons/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("img/icons/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("img/icons/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/* ===========================================================
 *
 *  Name:          selectordie.css
 *  Updated:       2014-07-07
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */
/* Remove, change to fit your needs */
.sod_select,
.sod_select * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select {
  display: inline-block;
  position: relative;
  line-height: 1;
  padding: 10px 10px;
  border: 2px solid #b2b2b2;
  background: #ffffff;
  color: black;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  outline: 0;
  outline-offset: -2px;
  /* Opera */
  cursor: default;
}

/* Down arrow */
.sod_select:before {
  content: "";
  right: 42px;
  width: 2px;
  height: 100%;
  background-color: #b2b2b2;
  position: absolute;
  top: 0;
}

.open.sod_select:before {
  display: none;
}

.sod_select:after {
  content: "\25BC";
  top: auto;
  bottom: 10px;
  position: absolute;
  right: 15px;
  font-size: 14px;
}

.open.sod_select:after {
  content: "▲";
}

.sod_select.open {
  color: #919191;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
.sod_select .sod_label {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 45px;
  line-height: 20px;
}

/* Options list wrapper */
.sod_select .sod_list_wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  height: auto;
  width: 100%;
  margin: 0 0 0 -2px;
  background: #ffffff;
  border: 2px solid #b2b2b2;
  border-top: none;
  color: #444444;
  font-weight: 300;
  z-index: 1;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

/* Shows the option list (don't edit) */
.sod_select.open .sod_list_wrapper {
  display: block;
  max-height: 400px;
  overflow: scroll;
}

/* Don't display the options when  */
.sod_select.disabled.open .sod_list_wrapper {
  display: none;
}

/* When the option list is displayed above the SoD */
.sod_select.above .sod_list_wrapper {
  top: auto;
  bottom: 100%;
  border-top: 3px solid #000000;
  border-bottom: none;
}

/* Options list container */
.sod_select .sod_list {
  display: block;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

/* All the options. Keep the first three lines for truncating... */
.sod_select .sod_option {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  padding: 10px 10px;
  list-style-type: none;
}
.sod_select .sod_option:hover {
  cursor: pointer;
}

/* Optgroups */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
  background: inherit;
  color: #939393;
  font-size: 10px;
}

/* Children of an optgroup */
.sod_select .sod_option.groupchild {
  padding-left: 20px;
}

/* Disabled option */
.sod_select .sod_option.disabled {
  background: inherit;
  color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
.sod_select .sod_option.active {
  background: #f7f7f7;
  color: #333333;
}

/*Make room for the check mark */
.sod_select .sod_option.selected {
  font-weight: 700;
  padding-right: 25px;
}

/* Displays a check mark for the selected option */
.sod_select .sod_option.selected:before {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  color: #808080;
  height: 9px;
  width: 10px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
}

/* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
.sod_select.no_highlight .sod_option.selected {
  font-weight: 300;
}

.sod_select.no_highlight .sod_option.selected:before {
  display: none;
}

.sod_select .sod_option.link {
  /* If data-link is set on a specific option */
}

.sod_select .sod_option.linkexternal {
  /* If data-link-external is set on a specific option */
}

/* Hide native select */
.sod_select select {
  display: none !important;
}

/* The native select in touch mode. Keep this first line. Sorry, keep everything. */
.sod_select.touch select {
  -webkit-appearance: menulist-button;
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

.ui-autocomplete {
  background-color: #fff;
  border: 1px solid #b2b2b2;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  line-height: normal;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  z-index: 100000;
}
.ui-autocomplete:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 95%;
  margin-left: 2.5%;
  background-color: rgba(0, 0, 0, 0.2);
  height: 8px;
}

.ui-autocomplete li {
  background-color: #fff;
  cursor: pointer;
  margin: 0;
  overflow: hidden;
  padding: 0.5em 0.8em;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

.ui-autocomplete li:hover, .ui-autocomplete li.ui-state-hover {
  background-color: #e6e6e6;
}

/* Mobile */
@media only screen and (max-width: 767px) {
  table.responsive {
    margin-bottom: 0;
  }

  .pinned {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 47.5%;
    overflow: hidden;
    overflow-x: scroll;
  }

  .pinned table {
    border-right: none;
    border-left: none;
    width: 100%;
  }

  .pinned table th, .pinned table td {
    white-space: nowrap;
    width: 100%;
  }

  .pinned td:last-child {
    border-bottom: 0;
  }

  div.table-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
  }

  div.table-wrapper div.scrollable {
    margin-left: 50%;
  }

  div.table-wrapper div.scrollable {
    overflow: scroll;
    overflow-y: hidden;
  }

  table.responsive td, table.responsive th {
    position: relative;
    white-space: nowrap;
  }

  table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td {
    display: none;
  }
}
/* ==========================================================================
   Media Queries
   ========================================================================== */
@media screen and (max-width: 767px) {
  .wrapper .wrapper {
    width: 100%;
  }

  #productenkiezer .navigate-products.open nav {
    right: 0px;
  }

  #productenkiezer .navigate-products {
    height: auto !important;
  }

  #productenkiezer .navigate-products nav {
    width: 75%;
    height: auto !important;
  }

  #productenkiezer .navigate-products .cars {
    min-height: 0 !important;
    height: auto !important;
  }

  #productenkiezer .overzicht {
    height: auto !important;
  }

  #homeProductSlider .bx-viewport {
    overflow: hidden !important;
  }

  #contact .form-wrapper {
    padding: 15px 3%;
  }

  #productenkiezer .overzicht {
    padding: 15px;
  }

  .type-chooser .type div.image {
    height: 25px;
  }

  .type-chooser .type span.subtitle {
    font-size: 16px;
  }

  #homeProductSlider .overlaytext {
    position: relative;
  }

  #homeProductSlider .slider-wrapper {
    width: 100%;
  }

  #homeProductSlider .overflower {
    width: 0;
  }

  #customPager a {
    width: 100%;
  }

  #homeslider div.afbeelding .caption {
    padding: 25px;
  }

  #homeslider div.afbeelding .caption p .readmore {
    margin-left: 0;
  }

  nav.topnavigation ul li {
    float: none;
  }

  .topnavigation {
    float: none;
  }

  .logowrapper {
    float: none;
    padding-top: 0 !important;
  }

  .language-chooser {
    float: none;
  }

  .navbar-b-links {
    float: none;
    padding-top: 0 !important;
    margin-right: 0;
  }

  nav.topnavigation ul {
    padding-bottom: 15px;
  }

  nav.topnavigation ul li {
    text-align: left;
  }

  nav.topnavigation ul li ul {
    position: relative;
    display: block;
    padding-bottom: 0;
  }

  nav.topnavigation ul li ul li a {
    padding-left: 35px;
  }

  nav.topnavigation ul li a {
    padding: 7.5px 20px;
  }

  #geschiedenis .inleiding-text {
    padding: 25px;
  }

  #homeProductSlider .product {
    padding-left: 0;
    margin-left: 0;
  }

  #homeProductSlider .overlaytext {
    width: auto;
    margin-bottom: 25px;
  }

  #homeProductSlider .product {
    height: auto;
    margin-top: 40px;
    padding-top: 100px;
    background-size: auto 100px;
    background-position: center top;
  }

  #splash .logo img {
    width: 80%;
  }

  #homeslider div.afbeelding .caption p .readmore {
    margin-left: 0;
  }

  nav.topnavigation ul li {
    float: none;
  }

  .topnavigation {
    float: none;
  }

  .logowrapper {
    float: none;
    padding-top: 0 !important;
  }

  .language-chooser {
    float: none;
  }

  .navbar-b-links {
    float: none;
    padding-top: 0 !important;
    margin-right: 0;
  }

  nav.topnavigation ul {
    padding-bottom: 15px;
  }

  nav.topnavigation ul li {
    text-align: left;
  }

  nav.topnavigation ul li ul {
    position: relative;
    display: block;
    padding-bottom: 0;
  }

  nav.topnavigation ul li ul li a {
    padding-left: 35px;
  }

  nav.topnavigation ul li a {
    padding: 7.5px 20px;
  }

  #geschiedenis .inleiding-text {
    padding: 25px;
  }

  #homeProductSlider .product {
    padding-left: 0;
    margin-left: 0;
  }

  #homeProductSlider .overlaytext {
    width: auto;
    margin-bottom: 25px;
  }

  #contact .form-wrapper .contact-info-wrapper {
    width: 100%;
  }

  #contact .form-wrapper form {
    width: 100%;
  }

  .touch #wynns .geschiedenis-slider .fake-background-attachement {
    display: block;
  }
  .touch .fake-background-margin {
    margin-top: -50%;
  }

  .nieuwsafbeelding {
    background-attachment: scroll;
  }

  .menu-toggle {
    display: block;
  }

  .logowrapper, .navbar-b-links {
    display: inline-block;
    *display: inline;
    zoom: 1;
  }

  .topnavigation {
    display: none;
  }

  .logowrapper {
    margin: 15px 0;
  }

  #homeProductSlider .product {
    margin-top: 0;
    height: auto;
    padding-top: 200px;
    background-size: auto 200px;
    background-position: center top;
  }

  #homeProductSlider .bx-viewport {
    overflow: hidden !important;
  }

  .fancybox-close {
    top: -50px;
    right: 0px;
  }

  .tax-doelgroep .cars, .category .cars {
    display: none;
  }

  #productenkiezer .navigate-products {
    width: 100%;
    margin-right: 0;
  }

  #productenkiezer .navigate-products .cars .car {
    width: 33.3333%;
    float: left;
  }

  #productenkiezer .navigate-products nav {
    width: 100%;
    border: none;
    position: relative;
  }

  #productenkiezer .overzicht {
    padding: 15px;
  }

  .type-chooser .type span.subtitle {
    font-size: 12px;
  }

  #homeProductSlider .overlaytext {
    position: relative;
  }

  #homeProductSlider .slider-wrapper {
    width: 100%;
  }

  #homeProductSlider .overflower {
    width: 0;
  }

  #homeslider div.afbeelding .caption {
    padding: 25px;
    width: 100%;
  }

  #wynns .geschiedenis-slider #geschiedenis-timeline {
    width: 100%;
  }

  form.search-form label input {
    width: 94%;
    margin: 15px 0;
    float: none;
  }

  form.search-form label span {
    float: none;
  }

  form.search-form .button {
    float: none;
  }

  #msds-videos .video, #msds-videos .brochure, #msds-brochures .video, #msds-brochures .brochure {
    margin-right: 0;
    width: 100%;
  }
  #msds-videos .video:nth-child(2n), #msds-videos .brochure:nth-child(2n), #msds-brochures .video:nth-child(2n), #msds-brochures .brochure:nth-child(2n) {
    margin-right: 0 !important;
  }

  #homeslider div.afbeelding .caption p .readmore {
    margin-left: 0;
  }

  nav.topnavigation ul li {
    float: none;
  }

  .topnavigation {
    float: none;
  }

  .logowrapper {
    float: none;
    padding-top: 0 !important;
  }

  .language-chooser {
    float: none;
  }

  .navbar-b-links {
    float: none;
    padding-top: 0 !important;
    margin-right: 0;
  }

  #wynns .slide h1 {
    font-size: 25px;
  }

  #wynns .slide h2 {
    font-size: 20px;
  }

  #wynns .slide p {
    font-size: 15px;
  }

  #nieuwspagina article {
    padding: 25px;
  }

  .nieuwsafbeelding {
    height: 300px;
  }

  #nieuwspagina article h1 {
    margin: 20px 0;
  }

  #wynns .slide.special-list div.elipse {
    padding: 5px;
  }

  #wynns .slide.special-list div.elipse span, #wynns .slide.special-list li p {
    font-size: 15px;
  }

  #wynns .slide.slide-background-left {
    background-position: left bottom;
  }

  #wynns .geschiedenis-slider #geschiedenis-timeline {
    padding: 50px 10px;
  }

  #wynns .geschiedenis-slider #geschiedenis-timeline h2.titel {
    font-size: 35px;
    padding-top: 20px;
  }

  #wynns .geschiedenis-slider #geschiedenis-timeline p {
    font-size: 15px;
  }

  #geschiedenis .inleiding-text h2 {
    font-size: 35px;
    margin-top: 30px;
  }

  #msds td {
    font-size: 12px;
  }

  #msds .scrollable .msds {
    width: 400px;
  }

  #map-dealers {
    height: 800px;
  }

  div.filiaallijst {
    max-height: 300px;
  }

  #geschiedenis .geschiedenis-item p {
    width: 100%;
  }

  #geschiedenis .geschiedenis-item {
    background-image: none !important;
    background-color: #e6e6e6;
  }
  #geschiedenis .geschiedenis-item:nth-child(2n) {
    background-color: #595959;
  }
  #geschiedenis .geschiedenis-item:nth-child(2n) h3, #geschiedenis .geschiedenis-item:nth-child(2n) p {
    color: #e6e6e6;
  }
  #geschiedenis .geschiedenis-item:nth-child(2n) h3:after {
    background-color: #e6e6e6;
  }

  div.map-dropdown {
    width: 94%;
  }

  .sod_select {
    width: 100%;
  }

  #nieuwspagina .nieuwsbericht {
    height: auto !important;
  }

  #contact .form-wrapper h1 {
    font-size: 35px;
  }

  .language-chooser {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 15px;
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  #productenkiezer .navigate-products.open nav {
    right: 0px;
  }

  #productenkiezer .navigate-products {
    height: auto !important;
  }

  #productenkiezer .navigate-products nav {
    width: 75%;
    height: auto !important;
  }

  #productenkiezer .navigate-products .cars {
    min-height: 0 !important;
    height: auto !important;
  }

  #productenkiezer .overzicht {
    height: auto !important;
  }

  #homeProductSlider .bx-viewport {
    overflow: hidden !important;
  }

  #productenkiezer .navigate-products {
    width: 100%;
    margin-right: 0;
  }

  #productenkiezer .navigate-products .cars .car {
    width: 33.3333%;
    float: left;
  }

  #productenkiezer .navigate-products nav {
    width: 100%;
    border: none;
    position: relative;
  }

  #contact .form-wrapper {
    padding: 35px;
  }

  #productenkiezer .overzicht {
    padding: 15px;
  }

  .type-chooser .type div.image {
    height: 30px;
  }

  .type-chooser .type span.subtitle {
    font-size: 14px;
  }

  #homeProductSlider .overlaytext {
    position: relative;
  }

  #homeProductSlider .slider-wrapper {
    width: 100%;
  }

  #homeProductSlider .overflower {
    width: 0;
  }

  #homeslider div.afbeelding .caption {
    padding: 25px;
    width: 100%;
  }

  #homeProductSlider .slider-nav a {
    width: 33.3333%;
    margin-right: 0;
    clear: none;
  }

  #wynns .geschiedenis-slider #geschiedenis-timeline {
    width: 100%;
  }

  form.search-form label input {
    width: 400px;
  }

  #msds-videos .video.col4:nth-child(3n), #msds-videos .brochure.col4:nth-child(3n), #msds-brochures .video.col4:nth-child(3n), #msds-brochures .brochure.col4:nth-child(3n) {
    margin-right: 2.35765%;
  }

  #msds-videos .video, #msds-videos .brochure, #msds-brochures .video, #msds-brochures .brochure {
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  #msds-videos .video:nth-child(2n), #msds-videos .brochure:nth-child(2n), #msds-brochures .video:nth-child(2n), #msds-brochures .brochure:nth-child(2n) {
    margin-right: 0 !important;
  }

  #homeslider div.afbeelding .caption p .readmore {
    margin-left: 0;
  }

  nav.topnavigation ul li {
    float: none;
  }

  .topnavigation {
    float: none;
  }

  .logowrapper {
    float: none;
    padding-top: 0 !important;
  }

  .language-chooser {
    float: none;
  }

  .navbar-b-links {
    float: none;
    padding-top: 0 !important;
    margin-right: 0;
  }

  nav.topnavigation ul {
    padding-bottom: 15px;
  }

  nav.topnavigation ul li {
    text-align: left;
  }

  nav.topnavigation ul li ul {
    position: relative;
    display: block;
    padding-bottom: 0;
  }

  nav.topnavigation ul li ul li a {
    padding-left: 35px;
  }

  nav.topnavigation ul li a {
    padding: 7.5px 20px;
  }

  #geschiedenis .inleiding-text {
    padding: 25px;
  }

  #homeProductSlider .product {
    padding-left: 0;
    margin-left: 0;
  }

  #homeProductSlider .overlaytext {
    width: auto;
    margin-bottom: 25px;
  }

  #contact .form-wrapper .contact-info-wrapper {
    width: 100%;
  }

  #contact .form-wrapper form {
    width: 100%;
  }

  #contact .form-wrapper {
    padding: 35px;
  }

  .touch #wynns .geschiedenis-slider .fake-background-attachement {
    display: block;
  }
  .touch .fake-background-margin {
    margin-top: -50%;
  }

  .nieuwsafbeelding {
    background-attachment: scroll;
  }

  .menu-toggle {
    display: block;
  }

  .logowrapper, .navbar-b-links {
    display: inline-block;
    *display: inline;
    zoom: 1;
  }

  .topnavigation {
    display: none;
  }

  .logowrapper {
    margin: 15px 0;
  }

  #homeProductSlider .product {
    margin-top: 0;
    height: auto;
    padding-top: 200px;
    background-size: auto 200px;
    background-position: center top;
  }

  #homeProductSlider .bx-viewport {
    overflow: hidden !important;
  }

  .fancybox-close {
    top: -50px;
    right: 0px;
  }

  .tax-doelgroep .cars, .category .cars {
    display: none;
  }

  #productenkiezer .navigate-products .cars .car {
    height: 200px !important;
  }

  .overzicht img {
    margin-bottom: 15px;
  }

  #nieuwspagina .nieuwsbericht {
    height: auto !important;
  }

  .language-chooser {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 15px;
    display: none;
  }

  #geschiedenis .geschiedenis-item {
    background-image: none !important;
    background-color: #e6e6e6;
  }
  #geschiedenis .geschiedenis-item:nth-child(2n) {
    background-color: #595959;
  }
  #geschiedenis .geschiedenis-item:nth-child(2n) h3, #geschiedenis .geschiedenis-item:nth-child(2n) p {
    color: #e6e6e6;
  }
  #geschiedenis .geschiedenis-item:nth-child(2n) h3:after {
    background-color: #e6e6e6;
  }

  div.filiaallijst {
    max-width: 275px;
    overflow: hidden;
    overflow-y: scroll;
    max-height: 300px;
  }

  .nieuwsafbeelding {
    height: 300px;
  }

  #nieuwspagina article {
    padding: 25px;
  }

  .nieuwsafbeelding {
    height: 300px;
    width: 100%;
    float: none;
  }

  #nieuwspagina article {
    min-height: 0;
    max-width: none;
    width: 100% !important;
  }

  #nieuwspagina article h1 {
    margin: 20px 0;
  }
}
@media screen and (min-width: 1040px) and (max-width: 1349px) {
  nav.topnavigation ul li a {
    padding: 15px;
  }

  #contact .form-wrapper .contact-info-wrapper {
    width: 100%;
  }

  #contact .form-wrapper form {
    width: 100%;
  }

  #contact .form-wrapper {
    padding: 35px;
  }

  #productenkiezer .overzicht {
    padding: 35px;
    width: 68.23843%;
  }

  #homeProductSlider .product {
    margin-left: 45%;
  }

  #geschiedenis .geschiedenis-item {
    background-position: 75% bottom;
  }
}
@media screen and (min-width: 1350px) {
  #splash .logo img {
    width: 25%;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

#tenreasonswrap h2{
  text-align: center;
  padding-top: 60px;
  padding-bottom: 20px;
}
#tenreasons{
  list-style: none;
}
#tenreasons li{
  background: #d9d9d9;
  padding: 10px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#tenreasons li span.nr{
  background: #c2127b;
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  color: #d9d9d9;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 15px;
  margin-right: 10px;
}

/*overrides gravityforms css*/
.validation_error, .gfield_error .validation_message{
  color: #ad1130 !important;
}
.gform_wrapper li.gfield.gfield_error{
  border: none !important;

}
.gform_validation_container{
  display: none;
}
.validation_error{
  margin-bottom: 20px;
}

/*prodimageslider vertical align bottom*/
#prodimageslider li .prodimagewrapper{
  position: relative;
}
#prodimageslider li img{
  position: absolute;
  bottom: 0px;

}
#prodimageslider .bx-caption{
  text-align: center;

  background: none;
}

/*panel voor tissen in andere talen*/
#otherlanguagetis, #otherlanguagemsds{
  display: none;
}
.productimages{
  text-align: center;
}

.feitenenfabels{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.feitenenfabels iframe,
.feitenenfabels object,
.feitenenfabels embed{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:
  100%;
}
.feitenvideo{
  padding-bottom: 50px;
}

#belangchooser{
  margin-left: 20px;
  color: #fff;
  font-weight: bold;
}
#belangchooser a{
  color: #fff;
  text-decoration: none;
}
#belangchooser a:hover{
  text-decoration: underline;
}

/* Fixed sidebar */
.fixed--content ul.sidenav {
  z-index: 11;
  right: 0;
  position: fixed;
  top: 155px;
    height: 100px;
}
.fixed--content ul.sidenav-fixed {
  visibility: hidden;
}
.fixed--content .midnight-nav {
  z-index: 99;
  width: 30px;
  left: auto !important;
  top: 120px !important;
}
.fixed--content .midnightInner ul.sidenav-fixed {
  height: 30px;
  width: 30px;
  position: relative;
  top: 0;
  display: block;
  visibility: visible;
}
.fixed--content ul.sidenav {
  margin: 0;
  zoom: 1;
  padding: 0;
}
.fixed--content ul.sidenav:before, .fixed--content ul.sidenav:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.fixed--content ul.sidenav:after {
  clear: both;
}
.fixed--content ul.sidenav > li {
  display: block;
  list-style: none;
  margin-bottom: 3px;
  background-color: #003043;
  height: 30px;
  width: 30px;
  float: right;
  clear: both;
}
.fixed--content ul.sidenav > li a {
  color: #698C95;
  padding: 0;
  text-align: center;
  text-decoration: none;
  line-height: 30px;
  display: block;
}
.fixed--content ul.sidenav > li.contact-link {
  width: 30px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  margin-bottom: 0;
  white-space: nowrap;
  padding: 0px;
  position: relative;
  height: auto;
  background-color: #33117F;
  -webkit-transition: 250ms all ease-in;
          transition: 250ms all ease-in;
}
.fixed--content ul.sidenav > li.contact-link.opened {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  width: 700px;
}
.fixed--content ul.sidenav > li.contact-link > a {
  color: white;
  height: 100px;
  width: 30px;
  background-color: #33117F;
  background-image: url("img/icons/newsletter-tab.png");
  background-repeat: no-repeat;
  background-size: auto 80px;
  background-position: center center;
  float: left;
  margin-left: -30px;
}
.fixed--content ul.sidenav > li.contact-link > a:hover {
  background-color: #c30079;
}
.fixed--content ul.sidenav > li.contact-link .form--side-wrapper {
  position: relative;
  float: left;
  bottom: 0;
  width: 100%;
  padding: 55px;
  text-align: center;
  color: white;
}
.fixed--content ul.sidenav > li.contact-link .form--side-wrapper form {
  width: 100%;
}
.fixed--content ul.sidenav > li.contact-link input[type="submit"] {
  background-color: #003043;
}
.fixed--content ul.sidenav > li.contact-link input[type="submit"]:hover {
  background-color: #000b10;
}
.fixed--content .contactheightpush {
  height: 100px;
}
.fixed--content .white ul.sidenav > li.contact-link, .fixed--content .default ul.sidenav > li.contact-link {
  background-color: #33117F;
}
.fixed--content .white ul.sidenav > li.contact-link a, .fixed--content .default ul.sidenav > li.contact-link a {
  color: white;
}
.fixed--content .white .icon-social, .fixed--content .default .icon-social {
  background-position: center 7.5px;
}
.fixed--content .blue ul.sidenav > li {
  background-color: #698c95;
}
.fixed--content .blue ul.sidenav > li a {
  color: #003043;
}
.fixed--content .blue ul.sidenav > li.contact-link {
  background-color: #33117F;
}
.fixed--content .blue ul.sidenav > li.contact-link a {
  color: white;
}
.fixed--content .blue .icon-social {
  background-position: center -7.5px;
}
.fixed--content .icon-social {
  height: 30px;
  width: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center 7.5px;
}
/*form styling*/
.fixed--content .mc_custom_border_hdr{
  font-size: 2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fixed--content .widget_mailchimpsf_widget{

}
.fixed--content .widget-title{

}
.fixed--content #mc_signup{

}
.fixed--content #mc_subheader{

}
.fixed--content .mc_form_inside{

}
.fixed--content .mc_header{

}
.fixed--content .mc_merge_var{
  margin-bottom: 0px !important;
}
.fixed--content .mc_form_inside .mc_merge_var{
  width: 48%;
  float: left;
}
.fixed--content .mc_form_inside .mc_merge_var:nth-child(3),
.fixed--content .mc_form_inside .mc_merge_var:nth-child(5){
  float: right;
}
.fixed--content .mc_input{
  border-width: 2px;
  padding: 10px;
  display: block;
  margin-bottom: 15px;
}
.fixed--content #mc_mv_MMERGE3-addr1,
.fixed--content #mc_mv_MMERGE3-addr2,
.fixed--content #mc_mv_MMERGE3-city,
.fixed--content #mc_mv_MMERGE3-state,
.fixed--content #mc_mv_MMERGE3-zip,
.fixed--content #mc_mv_MMERGE3-country{
  width: 48%;
  float: left;
}
.fixed--content #mc_mv_MMERGE3-addr2,
.fixed--content #mc_mv_MMERGE3-state,
.fixed--content #mc_mv_MMERGE3-country{
  float: right;
}
.fixed--content .mc_header_address{

}
.fixed--content .mc_radio_label{

}
.fixed--content #mc-indicates-required{
  clear: both;
}
.fixed--content .updated{
  margin-bottom: 15px;
}
.fixed--content #mc_signup_submit{
  display: inline-block;
  zoom: 1;
  padding: 3px 10px;
  border-radius: 20px;
  color: white;
  background-color: #c2117a;
  border: 2px solid #f379c1;
  text-decoration: none;
  font-size: 11px;
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 10px;
  clear: both;
  width: 100%;
}
#footernewsflash{
  margin-bottom: 40px;
  display: none;
}
@media screen and (max-width: 767px) and (min-width: 0px){
  #footernewsflash{
    display: block;
  }
  .fixed--content{
    display: none;
  }
}
#footernewsflash .mc_custom_border_hdr{
  text-transform: uppercase;
  font-size: 1.5em;
}
#footernewsflash span{
  display: inline;
}
#footernewsflash .mc_input{
  border-width: 2px;
  padding: 10px;
  display: block;
}

.search-resuls h3{
    font-weight: 600;
}
.search-results a {
    color: #2B2B2B;
    text-decoration: none;
}
.search-everything-highlight {
    color: #33117F;
}
#gform_wrapper_4 ul{
    list-style: none;
}

/*new bottle landingpage*/
#bottlecontainer{

}
#bottlecontainer header{
  color: #283a97;
}
#bottlecontainer header strong{
  color: #f58220;
  text-transform: uppercase;
}
/*
background: #f48326;
  background: -moz-linear-gradient(45deg,  #f48326 20%, #eb008b 44%, #332a85 81%);
  background: -webkit-linear-gradient(45deg,  #f48326 20%,#eb008b 44%,#332a85 81%);
  background: linear-gradient(45deg,  #f48326 20%,#eb008b 44%,#332a85 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f48326', endColorstr='#332a85',GradientType=1 );

*/
#bottlecontainer header #bottleimg{
  display: block;
  width: 100%;
}
 #bottlecontainer header #bottleimg-desktop{
  display: none;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 1023px){
  #bottlecontainer header #bottleimg{
    display: none;
  }
  #bottlecontainer header #bottleimg-desktop{
    display: block;
	width: 100%;
  }
}
#bottlecontainer .embed-container{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  z-index: 5;
}
#bottlecontainer .embed-container iframe,
#bottlecontainer .embed-container object,
#bottlecontainer .embed-container embed{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clear: both;
}
@media screen and (min-width: 1023px){
  #bottlecontainer #videowrapper{
    width: 35%;
    margin: -300px auto 0px auto;
  }
}
@media screen and (min-width: 1260px){
  #bottlecontainer #videowrapper{
    margin-top: -400px;
  }
}
#bottlecontainer header #intro{
  font-size: 1.2em;
  float: right;
  width: 50%;
  margin-top: -40%;
  padding-right: 6%;
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 920px){
  #bottlecontainer header #intro{
    font-size: 1.8em;
  }
}
#bottlecontainer #intro #new{
  display: none;
}
@media screen and (min-width: 1023px){
  #bottlecontainer header #intro{
    font-size: 1em;
    color: #fff;
    width: 26%
  }
  #bottlecontainer header #intro #new{
    display: inline-block;

    width: 40%;
  }
  #bottlecontainer header #intro strong{
    color: #fff;
  }
}
@media screen and (min-width: 1500px){
  #bottlecontainer header #intro{
    font-size: 1.3em;
  }
}

#bottlecontainer main{

}
#bottlecontainer main h2{
  color: #f58220;
  text-decoration: underline;
  font-size: 2.2em;
  font-weight: bolder;
  clear: both;
  margin-top: 60px;
}
#bottlecontainer main ul#keyfeatures{
  list-style: none;

}

#bottlecontainer main ul#keyfeatures li{
  display: inline-block;
  width: 50%;
  float: left;
  padding: 5% 10%;
}
#bottlecontainer main ul#keyfeatures li figure{

}
#bottlecontainer main ul#keyfeatures li figure img{
  display: inline-block;
  margin-bottom: 10px;
}
#bottlecontainer main ul#keyfeatures li figure img.innovation{
  height: 60px;
}
#bottlecontainer main ul#keyfeatures li figure img.patent{
  height: 60px;
}
#bottlecontainer main ul#keyfeatures li figure img.fuel{
  height: 60px;
}
#bottlecontainer main ul#keyfeatures li figure img.easy{
  height: 60px;
}
#bottlecontainer main ul#keyfeatures li figure figcaption{
  color: #283a97;
  font-size: 1.5em;
  font-weight: bold;
}
#bottlecontainer main #bottledescription{
  display: none;
}
#bottlecontainer main p{
  color: #283a97;
  font-style: italic;
  font-size: 1.8em;
  background-image: url('img/wynns-arrow-orange.svg');
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 0px 20px;
  padding-left: 40px;
  margin-bottom: 20px;
}
#bottlecontainer main p strong{
  color: #f58220;
  font-style: normal;
  text-transform: uppercase;
}
#bottlecontainer main #whatsnewfootnote p{
  margin-left: 40px;
  border-top: 1px solid #f58220;
  padding-top: 50px;
  background-image: none;
  padding-left: 0px;
}
#bottlecontainer main #whatsnewfootnote p strong{
  text-transform: none;
  color: #283a97;

}

@media only screen and (min-width: 930px){
  #bottlecontainer main #keyfeatureswrap{
    float:left;
    width: 30%;
  }
  #bottlecontainer main ul#keyfeatures li{

    width: 100%;
    float: none;

  }
  #bottlecontainer main #whatsnewwrap{
    float: left;
    width: 70%;
  }
}
@media screen and (min-width: 930px){
  #bottlecontainer main #keyfeatureswrap,
  #bottlecontainer main #whatsnewwrap{
    margin-top: 80px;
  }
  #bottlecontainer main #whatsnewwrap h2{
    font-size: 2.2em;
  }
}
@media screen and (min-width: 1260px){
  #bottlecontainer .wrapper{
    width: 90%;

  }
  #bottlecontainer main #keyfeatureswrap,
  #bottlecontainer main #whatsnewwrap{
    margin-top: 100px;
  }
  #bottlecontainer main #whatsnewwrap{
    font-size: 0.7em;
  }




  #bottlecontainer main ul#keyfeatures li{
    width: 50%;
    float: left;
    padding: 0px 15% 15% 0px;
  }
  #bottlecontainer main #bottledescription{
    display: block;
    width: 30%;
    float: left;
  }
  #bottlecontainer main #bottledescriptiontext{
    float: right;
    width: 70%;
  }
  #bottlecontainer main p{
    background-image: none;
    padding: 20px;
    margin-top: 0px;
  }
  #bottlecontainer main p:nth-child(3){
    background: #feecde;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
  }
  #bottlecontainer main #whatsnewfootnote p{
    margin-left: 20px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 1500px){
  #bottlecontainer main #whatsnewwrap{
    font-size: 0.9em;
  }
}

#bottlecontainer main #bandage{
  display: none;
}
@media only screen and (min-width: 930px){
  #bottlecontainer main #bandage{
    display: block;
  }
}
#bottlecontainer #form{
  background: #f2f2f2;
  padding-top: 60px;
  padding-bottom: 100px;
  margin-top: 120px;
}
@media only screen and (min-width: 930px){
  #bottlecontainer #form{
    margin-top: 0px;
  }
}
#bottlecontainer #form .wrapper{
  width: 100%;
}
#bottlecontainer #form .gform_heading{
  margin-left: 6%;
}
@media only screen and (min-width: 1023px){
  #bottlecontainer #form .gform_heading{
    margin-left: 0px;
    text-align: center;
  }
}
#bottlecontainer #form .gform_title{
  color: #f58220;
  text-decoration: underline;
  font-size: 2em;
  font-weight: bolder;
  margin-bottom: 0px;
}
#bottlecontainer #form ul{
  list-style: none;
  margin: 0px;
}
#bottlecontainer #form ul li label{
  display: none;
}
#bottlecontainer #form ul li input,
#bottlecontainer #form ul li textarea{
  background: #f2f2f2;
  border-top: none;
  border-right: none;
  border-bottom: 2px solid #fff;
  border-left: none;
  display: block;
  width: 100%;
  color: #4d4d4d;
  font-size: 1.8em;
  font-weight: 100;
  padding: 60px 6% 10px 6%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

#bottlecontainer #form ul li input:focus,
#bottlecontainer #form ul li textarea:focus{
  outline: none;
  border-bottom-color: #4d4d4d;
}
#bottlecontainer #form ul li textarea{
  border-top: 2px solid #fff;
  margin-top: 130px;
  font-style: italic;
  font-size: 1.6em;
  padding-top: 3%;
  resize: none;
}
#bottlecontainer #form ul li textarea:focus{
  border-top-color:#4d4d4d;
}
#bottlecontainer ::-webkit-input-placeholder{
    color:    #4d4d4d;
}
#bottlecontainer :-moz-placeholder{
   color:    #4d4d4d;
   opacity:  1;
}
#bottlecontainer ::-moz-placeholder{
   color:    #4d4d4d;
   opacity:  1;
}
#bottlecontainer :-ms-input-placeholder{
   color:    #4d4d4d;
}
#bottlecontainer #form .validation_error,
#bottlecontainer #form .validation_message{
  padding: 5px 6%;
}
#bottlecontainer  .gform_confirmation_message{
  color: #f58220;
  text-decoration: underline;
  font-size: 2em;
  font-weight: bolder;
  margin-bottom: 0px;
  padding: 0px 6%;
}
#bottlecontainer .gform_button{
  display: inline-block;
  margin: 50px auto auto 6%;
  border: 2px solid #fff;
  padding: 15px 30px;
  text-transform: none;
  font-weight: normal;
  font-size: 1.2em;
  background: #f48326;
  background: -moz-linear-gradient(-90deg,  #f48326 20%, #eb008b 44%, #332a85 81%);
  background: -webkit-linear-gradient(-90deg,  #f48326 20%,#eb008b 44%,#332a85 81%);
  background: linear-gradient(-90deg,  #f48326 20%,#eb008b 44%,#332a85 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f48326', endColorstr='#332a85',GradientType=1 );
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}

@media only screen and (min-width: 1023px){
  #bottlecontainer #form .wrapper{
    width: 90%;
    margin: 0px auto;
	min-height: 850px;
	max-width: 1400px;
  }
  #bottlecontainer #form ul li{
    display: block;
    width: 48%;
    padding-right: 2%;
  }
    #bottlecontainer #form ul li:nth-last-child(2){
        float: right;
        padding-left: 2%;
        padding-right: 0px;
        margin-top: -550px;
    }
    #bottlecontainer #form ul li:last-child{
        float: right;
        padding-left: 0;
        padding-right: 0px;
        margin-top: -37px;
    }
  #bottlecontainer #form ul li textarea{
    border: 2px solid #fff;
    padding: 5%;
  }
  #bottlecontainer #form ul li textarea:focus{
    border: 2px solid #4d4d4d;
  }
  #bottlecontainer .gform_button{
    float: right;
    margin-left: 20px;
        margin-top: -30px;
  }
  #bottlecontainer .validation_error{
    width: 100%;
    text-align: center;
  }
  #bottlecontainer .gform_ajax_spinner{
  float: right;
  }
}
#bandage { width: 100%;}

#bottlepage-subscribe-newsflash{
  color: #fff;
  display: block;
  background: #f48326;
  background: -moz-linear-gradient(-90deg,  #f48326 20%, #eb008b 44%, #332a85 81%);
  background: -webkit-linear-gradient(-90deg,  #f48326 20%,#eb008b 44%,#332a85 81%);
  background: linear-gradient(-90deg,  #f48326 20%,#eb008b 44%,#332a85 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f48326', endColorstr='#332a85',GradientType=1 );
  text-decoration: underline;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  padding: 50px 3%;
}
#bottlepage-subscribe-newsflash:hover{
  text-decoration: none;
}
@media only screen and (min-width: 930px) {
    #bottlecontainer #form {
        margin-top: -100px !important;
    }
}

@media only screen and (min-width: 1400px) {
    #bottlecontainer #form {
        margin-top: -180px !important;
    }
}

#bottlecontainer #form input[type=checkbox] {
    position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

#bottlecontainer #form input[type=checkbox] + label{
    padding-left:40px;
    height:30px;
    line-height:30px;
    background-repeat:no-repeat;
    background-position: 0 0;
    vertical-align:middle;
    cursor:pointer;
    background-image:url(/wp-content/themes/wynns/img/checkboxes.gif);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display:inline-block !important;
    color: #4d4d4d;
    font-size: 1.6em;
    font-weight: 100;
    margin-left: -100%;
}

#bottlecontainer #form input[type=checkbox]:checked + label{
    background-position: 0 -30px;
}

div.form-right {
    width: 50%;
    float: right;
}
div.form-left {
     width: 50%;
     float: left;
 }

@media screen and (max-width: 1022px){
    #bottlecontainer #form input[type=checkbox] + label{
        margin-top: 25px;
        margin-left: 10px;
    }
    #bottlecontainer #form ul li:nth-last-child(2){
        margin-top: -60px;
    }
}
@media only screen and (min-width:1260px) and (max-width: 1410px)  {
#bottledescriptiontext {
	margin-top: -50px;
}
}

@media only screen and (min-width:1500px) and (max-width: 1610px)  {
#bottledescriptiontext {
	margin-top: -50px;
}
}

@media only screen and (min-width:1790px) and (max-width: 2000px)  {
#bottledescriptiontext {
	margin-top: 30px;
}
}

body[data-url="https://www.wynns.es"] #map-canvas {display: none}
body[data-url="https://www.wynns.uk.com"] #map-canvas {display: none}

#contact .form-wrapper form li.acceptance label, #contact .form-wrapper form li.acceptance label a{ display: inline;}
#contact .form-wrapper form li.acceptance label .gfield_required { display: none;}
#contact .form-wrapper form li.acceptance input:checked + label { font-weight: normal;}

.multiserve_map {padding: 0 15px;}
.multiserve_map .js-wpv-view-layout {margin-right: -15px; margin-left: -15px;}

.popup {max-width: 220px;}
.popup h4 { margin-top: 10px; margin-bottom: 5px; font-size: 16px; text-transform: uppercase;}
.popup .services{margin-top:7px;margin-bottom: 7px;}
.popup .country::first-letter {text-transform: uppercase;}

.map-search input[name="wpv-postcode"] {   padding: 10px 10px;  border: 2px solid #b2b2b2;min-width: 168px;}
.map-search .form-group {  position: absolute; z-index: 2; padding: 15px; background: #fff; margin: 15px; border: 1px solid #ccc; max-width: 372px;}
body[data-url="https://www.wynns.nl"] .map-search .form-group, body[data-url="https://www.wynns.be"] .map-search .form-group {max-width: 329px;}
.map-search .form-group p {margin-top: 0; color: #595959;line-height: 1;margin-top: 5px;}
.map-search .form-group .tip {margin-bottom: 0;}
.zero-results {position: absolute; margin: 149px 15px 15px 34px; z-index: 3;}
.zero-results .button {margin-left: 0; background-color: #33117F; border-color: white;margin-top: 15px;}
#wpv_control_select_province {width: 100%; height: 35px; border: 2px solid #ccc;}

/* 80 aniversario Promo */
@font-face {
    font-family: 'Bebas Neue';
    src: url('https://www.wynns.es/wp-content/uploads/sites/15/2019/05/BebasNeueBold.woff2') format('woff2'),
        url('https://www.wynns.es/wp-content/uploads/sites/15/2019/05/BebasNeueBold.woff') format('woff'),
        url('https://www.wynns.es/wp-content/uploads/sites/15/2019/05/BebasNeueBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
.page-template-page-80aniv-promo > header, .page-template-page-promo-free-fuel > header {display: none;}
.promo-80aniv .logo {padding: 30px 15px; text-align: center; margin-bottom: -131px}
.promo-80aniv .logo img {min-width: 280px;}
.promo-80aniv .main-content {background: url(https://www.wynns.es/wp-content/uploads/sites/15/2019/05/promo-bg.svg) no-repeat top center; padding-top: 90px; }
.promo-80aniv .container {max-width: 830px; margin: 0 auto; padding: 0 15px;}
.promo-80aniv .main-content .logo-80aniv {float: left; width: 30%; margin-right: 2%; padding-top:45px}
.promo-80aniv .main-content .promo-heading {float: left; width: 68%;}
.promo-80aniv .main-content h1 {background: #EB6028; padding: 27px 20px 15px; text-transform: uppercase; color: #fff; text-align: center; font-size: 80px;line-height: .8;margin-bottom: 15px;}
.promo-80aniv .main-content h1, .promo-80aniv .main-content h2 {transform: skewY( -8deg); font-family: Bebas Neue;}
.promo-80aniv .main-content h2 {text-align: right; color: #fff; text-transform: uppercase;font-size: 50px;line-height: 1;margin-top: 0;z-index: 3; position: relative;}
.promo-80aniv .main-content h2 span {display: block;   font-size: 67px;}
.promo-80aniv .main-content .super-hero img {margin-top: -154px;  margin-left: -30px;  z-index: 2;  position: relative;}
.promo-80aniv .promo-form {border: 2px solid #EB6028; padding: 30px 30px 45px; margin-bottom: 45px;background: #fff;}
.promo-form form, .boton-contacto, .enlace-bases {max-width: 460px; margin: 0 auto;}
.promo-form label {font-weight: normal !important; text-transform: uppercase;font-size: 12px !important;}
.promo-form form input[type="text"] {border: 1px solid #949494; font-size: 16px; line-height:2}
.promo-form form .descripcion {text-align: center; font-size: 22px; color: #37247A;}
.promo-form form ul.gform_fields li.gfield {padding-right: 0}
.promo-form .gform_wrapper .validation_message {padding-left: 15px;padding-bottom: 10px;  font-weight: normal;  line-height: 1.6;  font-size: 14px;}
.enlace-bases {text-align: center;margin-top: 35px; font-size: 12px }
.enlace-bases a {color: #a2a0a0}
.promo-form  #field_3_8 .gfield_label {display: none;}
.promo-form #field_3_8 label a {white-space: nowrap}
.promo-form  #field_3_8 input {vertical-align: top; margin-top: 2px;}


.alert.alert-danger {color: #721c24;background-color: #f8d7da;border: 1px solid #f5c6cb;padding: .75rem 1.25rem }
.promo-form .gform_wrapper .gform_page_footer {border-top: none; width: 100%; padding: 0;}
.promo-form .gform_wrapper .gform_page_footer .gform_previous_button {display: none!important;}
.promo-form .gform_wrapper .gform_page_footer  input[type="button"], .promo-form .gform_wrapper .gform_page_footer  input[type="submit"]{width: 100%; border-radius: 0; background:#37247A; border-color: #37247A; line-height: 2;margin-right: 0;transition: all ease .25s;}
.promo-form .gform_wrapper .gform_page_footer  input[type="button"]:hover, .promo-form .gform_wrapper .gform_page_footer  input[type="submit"]:hover {background: #EB6028; border-color:#EB6028;}
.promo-form .gform_wrapper .top_label div.ginput_container { margin-top: 4px}
.promo-form .gfield_checkbox label {  text-transform: none;}
.promo-form .gform_wrapper.gf_browser_gecko select {  border: 1px solid #949494;}
.promo-form .boton-contacto {text-align: center;margin-top: 45px;}
.promo-form .boton-contacto a {color: #a2a0a0;}
.promo-form .boton-contacto .button {background: none; border:1px solid #37247A; color: #37247A;}
.gracias-por-participar {text-align: center; color: #155724; font-size: }
.gracias-por-participar h3 {font-size: 30px;color: #155724; background: #d4edda; }
.promo-80aniv .suerte {text-transform: uppercase; color: #EB6028; text-align: center; font-size: 80px;line-height: .8;margin-bottom: 15px;transform: skewY( -8deg); font-family: Bebas Neue;}

.below-promo-form {overflow: auto; background: #EEEEEE; padding: 45px 15px;}
.below-promo-form .container {max-width: 980px; margin: 0 auto;}
.below-promo-form h2 {font-weight: 300;font-size: 44px; margin-bottom: 15px;}
.below-promo-form h4 {font-size: 1.5em; margin-top: 0;}
.below-promo-form p.lead {color:#595959; font-size: 20px;}

.promo-80aniv.uk .main-content {background-size: auto 670px;}
.promo-80aniv.uk .main-content h1 {position: relative; z-index: 1; font-size: 87px;}
.promo-80aniv.uk .main-content h2 {margin-top: -32px; position: relative; z-index: 0; }
.promo-80aniv .main-content .super-hero img {margin-top: -179px;}
.bg-pink {background: #DB0E76; display: inline-block !important; padding: 22px 45px 0px;margin-right: -35px; margin-bottom: 10px;font-size: 74px!Important;}

@media screen and (max-width:800px){
  .promo-80aniv .logo {margin-left: 6%}
  .promo-80aniv .main-content .logo-80aniv {padding-top: 0; margin-top: -60px; max-width: 150px; margin-left: 6%}
  .promo-80aniv .main-content .super-hero img {margin-top: -100px; margin-left: 0}
  .promo-80aniv .main-content .promo-heading {width: 100%; clear: both; float: none}
}
@media screen and (max-width:600px){
  .promo-80aniv .main-content .logo-80aniv {margin-left: 0; max-width: 120px}
  .promo-80aniv .logo img {min-width: 190px}
  .below-promo-form img {max-height: 350px}
}
@media screen and (max-width:540px){
  .promo-80aniv .main-content h1 {font-size: 52px; padding: 20px 20px 7px}
  .promo-80aniv .main-content .super-hero img {margin-top: -50px}
  .promo-80aniv .main-content h2 {font-size: 36px;}
  .promo-80aniv .main-content h2 span {font-size: 48px !important;}
  .promo-80aniv.uk .main-content h1 {font-size: 60px}
}
@media screen and (max-width:425px){
  .promo-80aniv .logo {margin-left: 17%}
}
@media screen and (max-width:400px){
.promo-80aniv.uk .main-content .super-hero img {margin-top: -30px;}
}

.bases-promo ol[type="a"] {padding: 0 15px;}
