@charset "UTF-8";
/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700;900&&display=swap");
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/**
   * If a `width` and/or `height` attribute has been explicitly defined, let’s
   * not make the image fluid.
   */
img[width],
img[height] {
  max-width: none; }

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */ }

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * Grid-like layout system.
 *
 * The layout object provides us with a column-style layout system. This file
 * contains the basic structural elements, but classes should be complemented
 * with width utilities, for example:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *   </div>
 *
 * The above will create a two-column structure in which each column will
 * fluidly fill half of the width of the parent. We can have more complex
 * systems:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/1  u-1/3@medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3@medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3@medium">
 *     </div>
 *   </div>
 *
 * The above will create a system in which the first item will be 100% width
 * until we enter our medium breakpoint, when it will become 33.333% width. The
 * second and third items will be 50% of their parent, until they also become
 * 33.333% width at the medium breakpoint.
 *
 * We can also manipulate entire layout systems by adding a series of modifiers
 * to the `.o-layout` block. For example:
 *
 *   <div class="o-layout  o-layout--reverse">
 *
 * This will reverse the displayed order of the system so that it runs in the
 * opposite order to our source, effectively flipping the system over.
 *
 *   <div class="o-layout  o-layout--[right|center]">
 *
 * This will cause the system to fill up from either the centre or the right
 * hand side. Default behaviour is to fill up the layout system from the left.
 *
 * There are plenty more options available to us: explore them below.
 */
/* Default/mandatory classes
   ========================================================================== */
/**
 * 1. Allows us to use the layout object on any type of element.
 * 2. We need to defensively reset any box-model properties.
 * 3. Use the negative margin trick for multi-row grids:
 *    http://csswizardry.com/2011/08/building-better-grid-systems/
 */
.o-layout {
  display: block;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  list-style: none;
  /* [1] */
  margin-left: -24px;
  /* [3] */
  font-size: 0; }

/**
   * 1. Required in order to combine fluid widths with fixed gutters.
   * 2. Allows us to manipulate grids vertically, with text-level properties,
   *    etc.
   * 3. Default item alignment is with the tops of each other, like most
   *    traditional grid/layout systems.
   * 4. By default, all layout items are full-width (mobile first).
   * 5. Gutters provided by left padding:
   *    http://csswizardry.com/2011/08/building-better-grid-systems/
   * 6. Fallback for old IEs not supporting `rem` values.
   */
.o-layout__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* [1] */
  display: inline-block;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  padding-left: 24px;
  /* [5] */
  font-size: 16px;
  /* [6] */
  font-size: 1rem; }

/* Gutter size modifiers
   ========================================================================== */
.o-layout--flush {
  margin-left: 0; }

.o-layout--flush > .o-layout__item {
  padding-left: 0; }

.o-layout--tiny {
  margin-left: -6px; }

.o-layout--tiny > .o-layout__item {
  padding-left: 6px; }

.o-layout--small {
  margin-left: -12px; }

.o-layout--small > .o-layout__item {
  padding-left: 12px; }

.o-layout--large {
  margin-left: -48px; }

.o-layout--large > .o-layout__item {
  padding-left: 48px; }

.o-layout--huge {
  margin-left: -96px; }

.o-layout--huge > .o-layout__item {
  padding-left: 96px; }

/* Vertical alignment modifiers
   ========================================================================== */
/**
 * Align all grid items to the middles of each other.
 */
.o-layout--middle > .o-layout__item {
  vertical-align: middle; }

/**
 * Align all grid items to the bottoms of each other.
 */
.o-layout--bottom > .o-layout__item {
  vertical-align: bottom; }

/**
 * Stretch all grid items of each row to have an equal-height.
 * Please be aware that this modifier class doesn’t take any effect in IE9 and
 * below and other older browsers due to the lack of `display: flex` support.
 */
.o-layout--stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.o-layout--stretch > .o-layout__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.o-layout--stretch.o-layout--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.o-layout--stretch.o-layout--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.o-layout--stretch.o-layout--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

/* Fill order modifiers
   ========================================================================== */
/**
 * Fill up the layout system from the centre.
 */
.o-layout--center {
  text-align: center; }

.o-layout--center > .o-layout__item {
  text-align: left; }

/**
 * Fill up the layout system from the right-hand side.
 */
.o-layout--right {
  text-align: right; }

.o-layout--right > .o-layout__item {
  text-align: left; }

/**
 * Fill up the layout system from the left-hand side. This will likely only be
 * needed when using in conjunction with `.o-layout--reverse`.
 */
.o-layout--left {
  text-align: left; }

.o-layout--left > .o-layout__item {
  text-align: left; }

/**
 * Reverse the rendered order of the grid system.
 */
.o-layout--reverse {
  direction: rtl; }

.o-layout--reverse > .o-layout__item {
  direction: ltr; }

/* Auto-widths modifier
   ========================================================================== */
/**
 * Cause layout items to take up a non-explicit amount of width.
 */
.o-layout--auto > .o-layout__item {
  width: auto; }

/* ==========================================================================
   #PRINT
   ========================================================================== */
/**
 * Very crude, reset-like styles taken from the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
 * https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
 */
@media print {
  /**
   * 1. Black prints faster: http://www.sanbeiji.com/archives/953
   */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* [1] */
    -webkit-box-shadow: none !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) ")"; }
  /**
   * Don’t show links that are fragment identifiers, or use the `javascript:`
   * pseudo protocol.
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /**
   * Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

/* ==========================================================================
   #WIDTHS
   ========================================================================== */
/**
 * inuitcss generates a series of utility classes that give a fluid width to
 * whichever element they’re applied, e.g.:
 *
 *   <img src="" alt="" class="u-1/2" />
 *
 * These classes are most commonly used in conjunction with our layout system,
 * e.g.:
 *
 *   <div class="o-layout__item  u-1/2">
 *
 * By default, inuitcss will also generate responsive variants of each of these
 * classes by using your Sass MQ configuration, e.g.:
 *
 *   <div class="o-layout__item  u-1/1  u-1/2@tablet  u-1/3@desktop">
 *
 * Optionally, inuitcss can generate offset classes which can push and pull
 * elements left and right by a specified amount, e.g.:
 *
 *   <div class="o-layout__item  u-2/3  u-pull-1/3">
 *
 * This is useful for making very granular changes to the rendered order of
 * items in a layout.
 *
 * N.B. This option is turned off by default.
 */
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes take a fraction-like format (e.g. `.u-2/3`). Use these in
 * your markup:
 *
 * <div class="u-7/12">
 *
 * The following will generate widths helper classes based on the fractions
 * defined in the `$inuit-fractions` list.
 */
.u-1\/1 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/1 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-1\/1 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/2 {
  width: 50% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/2 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 50% !important; }

.u-pull-1\/2 {
  position: relative !important;
  right: 50% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/2 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/2 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-2\/2 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/3 {
  width: 33.33333% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 33.33333% !important; }

.u-pull-1\/3 {
  position: relative !important;
  right: 33.33333% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/3 {
  width: 66.66667% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 66.66667% !important; }

.u-pull-2\/3 {
  position: relative !important;
  right: 66.66667% !important;
  left: auto !important;
  /* [1] */ }

.u-3\/3 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-3\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-3\/3 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/4 {
  width: 25% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 25% !important; }

.u-pull-1\/4 {
  position: relative !important;
  right: 25% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/4 {
  width: 50% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 50% !important; }

.u-pull-2\/4 {
  position: relative !important;
  right: 50% !important;
  left: auto !important;
  /* [1] */ }

.u-3\/4 {
  width: 75% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-3\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 75% !important; }

.u-pull-3\/4 {
  position: relative !important;
  right: 75% !important;
  left: auto !important;
  /* [1] */ }

.u-4\/4 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-4\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-4\/4 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/5 {
  width: 20% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 20% !important; }

.u-pull-1\/5 {
  position: relative !important;
  right: 20% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/5 {
  width: 40% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 40% !important; }

.u-pull-2\/5 {
  position: relative !important;
  right: 40% !important;
  left: auto !important;
  /* [1] */ }

.u-3\/5 {
  width: 60% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-3\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 60% !important; }

.u-pull-3\/5 {
  position: relative !important;
  right: 60% !important;
  left: auto !important;
  /* [1] */ }

.u-4\/5 {
  width: 80% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-4\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 80% !important; }

.u-pull-4\/5 {
  position: relative !important;
  right: 80% !important;
  left: auto !important;
  /* [1] */ }

.u-5\/5 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-5\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-5\/5 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

/**
 * If we’re using Sass-MQ, automatically generate grid system(s) for each of our
 * defined breakpoints, and give them a Responsive Suffix, e.g.:
 *
 * <div class="u-3/12@mobile">
 */
@media (min-width: 29.9375em) {
  .u-1\/1\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@mobile {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@mobile {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@mobile {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@mobile {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@mobile {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@mobile {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@mobile {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@mobile {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@mobile {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@mobile {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@mobile {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@mobile {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@mobile {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@mobile {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@mobile {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@mobile {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@mobile {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@mobile {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@mobile {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@mobile {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@mobile {
    left: auto !important; }
  .u-pull-none\@mobile {
    right: auto !important; } }

@media (min-width: 46.25em) {
  .u-1\/1\@ipad-port {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@ipad-port {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@ipad-port {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@ipad-port {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@ipad-port {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@ipad-port {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@ipad-port {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@ipad-port {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@ipad-port {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@ipad-port {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@ipad-port {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@ipad-port {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@ipad-port {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@ipad-port {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@ipad-port {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@ipad-port {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@ipad-port {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@ipad-port {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@ipad-port {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@ipad-port {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@ipad-port {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@ipad-port {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@ipad-port {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@ipad-port {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@ipad-port {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@ipad-port {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@ipad-port {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@ipad-port {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@ipad-port {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@ipad-port {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@ipad-port {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@ipad-port {
    left: auto !important; }
  .u-pull-none\@ipad-port {
    right: auto !important; } }

@media (min-width: 64em) {
  .u-1\/1\@ipad-land {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@ipad-land {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@ipad-land {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@ipad-land {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@ipad-land {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@ipad-land {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@ipad-land {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@ipad-land {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@ipad-land {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@ipad-land {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@ipad-land {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@ipad-land {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@ipad-land {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@ipad-land {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@ipad-land {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@ipad-land {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@ipad-land {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@ipad-land {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@ipad-land {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@ipad-land {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@ipad-land {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@ipad-land {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@ipad-land {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@ipad-land {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@ipad-land {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@ipad-land {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@ipad-land {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@ipad-land {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@ipad-land {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@ipad-land {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@ipad-land {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@ipad-land {
    left: auto !important; }
  .u-pull-none\@ipad-land {
    right: auto !important; } }

@media (min-width: 64.0625em) {
  .u-1\/1\@laptop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@laptop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@laptop {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@laptop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@laptop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@laptop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@laptop {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@laptop {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@laptop {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@laptop {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@laptop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@laptop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@laptop {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@laptop {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@laptop {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@laptop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@laptop {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@laptop {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@laptop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@laptop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@laptop {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@laptop {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@laptop {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@laptop {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@laptop {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@laptop {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@laptop {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@laptop {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@laptop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@laptop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@laptop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@laptop {
    left: auto !important; }
  .u-pull-none\@laptop {
    right: auto !important; } }

@media (min-width: 84.9375em) {
  .u-1\/1\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@desktop {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@desktop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@desktop {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@desktop {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@desktop {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@desktop {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@desktop {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@desktop {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@desktop {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@desktop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@desktop {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@desktop {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@desktop {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@desktop {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@desktop {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@desktop {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@desktop {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@desktop {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@desktop {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@desktop {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@desktop {
    left: auto !important; }
  .u-pull-none\@desktop {
    right: auto !important; } }

@media (min-width: 103.75em) {
  .u-1\/1\@big {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@big {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@big {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@big {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@big {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@big {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@big {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@big {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@big {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@big {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@big {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@big {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@big {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@big {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@big {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@big {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@big {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@big {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@big {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@big {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@big {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@big {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@big {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@big {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@big {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@big {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@big {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@big {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@big {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@big {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@big {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@big {
    left: auto !important; }
  .u-pull-none\@big {
    right: auto !important; } }

@media (min-width: 127.625em) {
  .u-1\/1\@retina {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@retina {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@retina {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@retina {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@retina {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@retina {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@retina {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@retina {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@retina {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@retina {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@retina {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@retina {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@retina {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@retina {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@retina {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@retina {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@retina {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@retina {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@retina {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@retina {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@retina {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@retina {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@retina {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@retina {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@retina {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@retina {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@retina {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@retina {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@retina {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@retina {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@retina {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@retina {
    left: auto !important; }
  .u-pull-none\@retina {
    right: auto !important; } }

html,
body {
  margin: 0;
  padding: 0; }

.wrap {
  max-width: 1170px;
  margin: 0 auto; }

@media (max-width: 63.99em) {
  .wrap {
    padding: 0 2%; } }

@media (min-width: 64em) and (max-width: 84.9275em) {
  .wrap {
    padding: 0 2%; } }

.wrap--small {
  max-width: 940px;
  margin: 0 auto; }

.go-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 32px;
  height: 32px;
  background: #F44B00;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  z-index: 999; }

@media (max-width: 63.99em) {
  .go-top {
    bottom: 70px; } }

.go-top:after {
  display: block;
  color: #ffffff;
  font-family: FontAwesome;
  font-size: 22px;
  content: '\f106'; }

.go-top:hover {
  background: #DB4300; }

.post-item,
.grid-sizer {
  width: 32%;
  margin-bottom: 2%; }

.gutter-sizer {
  width: 2%; }

.filter-btns {
  display: inline-block;
  width: 100%; }

.filter-btns .filter-label {
  display: block;
  width: 100%;
  margin-bottom: 20px; }

@media (max-width: 29.9275em) {
  .post-item,
  .grid-sizer {
    width: 100%;
    margin-bottom: 4%; }
  .gutter-sizer {
    width: 0; }
  .filter-btns .filter-label {
    margin-bottom: 5px;
    text-align: center; }
  .filter-btns button {
    width: 100%;
    margin-top: 5px;
    padding: 0;
    font-size: 14px;
    text-align: center; }
  .filter-btns button:first-child {
    margin-top: 0; } }

@media (max-width: 63.99em) {
  .post-item,
  .grid-sizer {
    width: 100%;
    margin-bottom: 4%; }
  .gutter-sizer {
    width: 0; }
  .filter-btns .filter-label {
    margin-bottom: 5px;
    text-align: center; }
  .filter-btns button {
    width: 49%;
    margin-top: 5px;
    padding: 0;
    float: left;
    font-size: 14px;
    text-align: center; }
  .filter-btns button:nth-child(even) {
    margin-right: 2%; }
  .filter-btns button:first-child {
    margin-top: 0; } }

@media (min-width: 64.0625em) {
  .post-item,
  .grid-sizer {
    width: 32%;
    margin-bottom: 4%; }
  .gutter-sizer {
    width: 2%; } }

@media (min-width: 103.75em) {
  .post-item,
  .grid-sizer {
    width: 32%;
    margin-bottom: 4%; }
  .gutter-sizer {
    width: 2%; } }

.content .search-results {
  display: inline-block;
  margin-bottom: 30px; }

.content .search-results .result {
  padding: 10px; }

.content .search-results .result a {
  -webkit-box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
  background: #ffffff;
  display: inline-block;
  padding: 30px 0; }

.content .search-results .result p {
  color: #000000;
  font-weight: bold;
  text-align: center; }

.content .search-results .result img {
  width: 100%;
  height: 100%; }

.content .search-results .result .button-orange {
  width: 180px;
  margin: 0 auto !important;
  display: block !important; }

.content .search-results .numbered-pages {
  text-align: center; }

.content .search-results span.page-numbers.current {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #F44B00;
  border-radius: 0;
  color: #ffffff;
  background: #F44B00;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 300; }

.content .search-results span.page-numbers.dots {
  width: 30px;
  height: 30px;
  margin: 0 3px;
  display: inline-block;
  text-align: center;
  line-height: 30px; }

.content .search-results a.page-numbers,
.content .search-results a.next.page-numbers {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #333;
  background: #ffffff;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 300; }

.content .search-results a.page-numbers:hover,
.content .search-results a.next.page-numbers:hover {
  background: #DB4300;
  color: #ffffff; }

.searchform-container {
  padding: 60px 0; }

.searchform-container #searchform {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 80%; }

@media (max-width: 63.99em) {
  .searchform-container #searchform {
    width: 100%; } }

.searchform-container #searchform input#search {
  width: 100%;
  height: 80px;
  line-height: 80px;
  background-color: #ffffff;
  padding: 0 0 0 10px;
  border: 0;
  font-size: 16px;
  font-weight: 900; }

.searchform-container #searchform input#search:placeholder {
  font-weight: 100; }

.searchform-container #searchform input#search:focus {
  outline: none; }

.searchform-container #searchform button#searchsubmit {
  font-size: 0;
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0; }

.searchform-container #searchform button#searchsubmit:focus {
  outline: none; }

.searchform-container #searchform button#searchsubmit:hover {
  cursor: pointer; }

.searchform-container #searchform button#searchsubmit:after {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 20px;
  height: 80px;
  width: 80px;
  background: #F44B00;
  display: block;
  color: #ffffff;
  text-align: center;
  line-height: 80px; }

.error404 .error {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  height: 400px;
  top: 50%;
  margin-top: -200px; }

.error404 .error .logo img {
  width: 140px;
  margin: 0 auto;
  display: block; }

.error404 .error .melding h1 {
  font-size: 32px;
  margin: 0; }

.error404 .error .melding p {
  font-size: 18px;
  margin: -10px 0 0 0; }

.error404 .error .button {
  margin-top: 30px; }

.error404 .error .button a {
  background: #F44B00;
  color: #ffffff;
  padding: 15px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.error404 .error .button a:hover {
  background: #DB4300; }

a {
  text-decoration: none; }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: 300;
  letter-spacing: 0.3px;
  text-rendering: optimizeLegibility; }

ul {
  list-style: none; }

h1,
.h1 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  margin-bottom: 20px; }

h2,
.h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 900;
  margin-bottom: 20px; }

h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 20px; }

h4 {
  font-size: 18px;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 20px; }

h5 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px; }

.sub-pagina-titel {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  margin: 0; }

p {
  margin-bottom: 10px; }

strong,
.strong {
  font-weight: 700; }

.videowrapper iframe {
  width: 100%; }

figure {
  margin: 0; }

.mt {
  margin-top: 60px; }

@media (max-width: 46.24em) {
  .mt {
    margin-top: 30px; } }

.mb {
  margin-bottom: 60px; }

@media (max-width: 46.24em) {
  .mb {
    margin-bottom: 30px; } }

.mbs {
  margin-bottom: 30px; }

@media (max-width: 46.24em) {
  .mbs {
    margin: 0; } }

.mb6 {
  margin-bottom: 6px; }

@media (max-width: 46.24em) {
  .mb6 {
    margin: 0; } }

.pl {
  padding-left: 30px; }

@media (max-width: 46.24em) {
  .pl {
    padding: 0;
    margin-top: 30px; } }

.pr {
  padding-right: 30px; }

@media (max-width: 46.24em) {
  .pr {
    padding: 0;
    margin-top: 30px; } }

.pl-small {
  padding-left: 15px; }

@media (max-width: 46.24em) {
  .pl-small {
    padding: 0;
    margin-top: 30px; } }

.pr-small {
  padding-right: 15px; }

@media (max-width: 46.24em) {
  .pr-small {
    padding: 0;
    margin-top: 30px; } }

.fll {
  float: left; }

.flr {
  float: right; }

.tal {
  text-align: left; }

.tac {
  text-align: center; }

.tar {
  text-align: right; }

.bg--white {
  background: #ffffff; }

.bg--black {
  background: #000000; }

.bg--grey {
  background: #eff0f3;
  padding: 30px 0 40px 0; }

.table {
  display: table; }

.table__cell {
  display: table-cell;
  vertical-align: middle; }

address {
  display: block;
  margin: auto;
  font-style: normal;
  line-height: 21px;
  color: #999;
  padding-top: 10px;
  margin-top: 10px;
  text-align: left;
  padding-bottom: 15px;
  margin-bottom: 10px; }

.site {
  padding-top: 90px; }

main {
  width: 100%;
  position: relative;
  z-index: 1; }

.content {
  background: #eff0f3;
  padding: 30px 0 40px 0; }

@media (max-width: 46.24em) {
  .content {
    padding: 10px 0 60px 0; } }

.content a {
  color: #F44B00; }

.content .afbeelding-3-koloms p,
.content .afbeelding-2-koloms p {
  min-height: 100px;
  margin: 20px 0 0 0; }

.content .afbeelding-3-koloms a,
.content .afbeelding-2-koloms a {
  color: #ffffff;
  margin-top: 30px; }

.content .afbeelding-3-koloms img,
.content .afbeelding-2-koloms img {
  width: 100%; }

.content .afbeelding-3-koloms a {
  margin-top: 10px; }

.box {
  background: #F44B00;
  color: #ffffff;
  width: 100%;
  height: 200px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding: 20px;
  border: 1px solid #ffffff; }

.box:hover {
  background: #DB4300; }

.banner__bannertekst {
  padding: 50px 40px; }

@media (max-width: 46.24em) {
  .banner__bannertekst {
    padding: 30px; } }

.banner__bannertekst .button-orange {
  color: #ffffff;
  text-decoration: none;
  margin-top: -10px; }

.banner__image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat; }

@media (max-width: 46.24em) {
  .banner__image {
    height: auto; } }

.banner__titel {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold; }

.banner__tekst {
  color: #ffffff;
  font-size: 18px;
  margin-top: 10px;
  padding-bottom: 20px; }

.footer {
  width: 100%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.footer__blocks {
  background: #000000;
  padding: 40px 0 10px 0; }

@media (max-width: 46.24em) {
  .footer__blocks {
    text-align: center; } }

.footer .block {
  padding-bottom: 30px; }

.footer .bold {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 0; }

.footer__menu .menu {
  padding: 0;
  line-height: 30px; }

.footer__menu .menu a {
  color: #ffffff; }

.footer__menu ul {
  margin: 0; }

.footer__tekst {
  color: #eff0f3;
  font-size: 16px;
  line-height: 24px; }

.footer__tekst p {
  color: #ffffff;
  display: block;
  margin: 10px 0; }

.footer .socialmedia {
  font-weight: bold;
  margin-top: 10px; }

.footer .socialmedia img {
  height: 32px;
  margin-left: 3px; }

.footer__copyright {
  height: 50px;
  background: #F44B00;
  color: #ffffff;
  font-size: 12px;
  line-height: 50px;
  text-align: center; }

.footer__copyright--author a {
  color: #ffffff; }

.footer__socialmedia {
  width: 32px;
  height: 32px;
  margin-left: 10px;
  float: left; }

.footer__socialmedia:first-child {
  margin-left: 0; }

.footer__icon {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; }

@media (max-width: 63.99em) {
  .footer__column {
    padding: 20px; }
  .footer__column:first-child {
    padding: 0; }
  .footer__copyright {
    height: auto;
    min-height: 50px;
    padding: 10px 5%;
    line-height: 20px;
    text-align: center; }
  .footer__copyright--author {
    display: block; } }

.heroheader {
  width: 100%;
  height: 350px; }

.heroheader__image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover; }

.header__slider {
  position: relative;
  width: 100%;
  height: 350px; }

@media (min-width: 29.9375em) and (max-width: 46.24em) {
  .header__slider {
    height: 280px; } }

@media (max-width: 46.24em) {
  .header__slider {
    height: 150px; } }

.header__slider .header__slider-inner,
.header__slider .owl-carousel,
.header__slider .owl-stage-outer,
.header__slider .owl-stage,
.header__slider .owl-item {
  width: 100%;
  height: 100%; }

.header__slider .owl-nav .owl-prev,
.header__slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  font-size: 0; }

.header__slider .owl-nav .owl-prev:before,
.header__slider .owl-nav .owl-next:before {
  font-family: FontAwesome;
  font-size: 50px;
  line-height: 50px;
  color: #ffffff; }

.header__slider .owl-nav .owl-prev {
  left: 0; }

.header__slider .owl-nav .owl-prev:before {
  content: "\f104";
  text-shadow: 4px 3px 10px rgba(0, 0, 0, 0.6); }

.header__slider .owl-nav .owl-next {
  right: 0; }

.header__slider .owl-nav .owl-next:before {
  content: "\f105";
  text-shadow: -4px 3px 10px rgba(0, 0, 0, 0.6); }

.header__slider .header__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center; }

.header__slider .heroheader__headertext {
  position: absolute;
  z-index: 999; }

.header__slider .owl-theme .owl-dots .owl-dot span {
  background: #595959; }

.header__slider .owl-theme .owl-dots .owl-dot.active span, .header__slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #e10930; }

.home .content {
  background: #ffffff; }

.home .content .usps {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px; }

.home .content .usps a {
  color: #000000; }

.home .content .usps img,
.home .content .usps svg {
  width: 70px;
  height: 70px;
  margin-right: 10px; }

@media (max-width: 63.99em) {
  .home .content .usps {
    text-align: center; }
  .home .content .usps img {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 10px; } }

.home .content .menu__block {
  position: relative;
  margin: 10px; }

.home .content .menu__block img {
  width: 100%;
  border-radius: 3px; }

.home .content .menu__block .block-text {
  position: absolute;
  width: 100%;
  top: 44%;
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  z-index: 1; }

.home .content .menu .overlay {
  position: absolute;
  background: #000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1; }

.home .content .menu .overlay:hover {
  opacity: 0.3; }

.klantenservice {
  position: relative;
  padding: 30px;
  overflow: hidden; }

@media (max-width: 46.24em) {
  .klantenservice {
    background-color: #ffffff; } }

.klantenservice h3 {
  margin: 0 0 10px 0;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  z-index: 1; }

.klantenservice p {
  margin: 0;
  position: relative;
  z-index: 1; }

.klantenservice .socialmedia {
  position: relative;
  z-index: 1; }

.klantenservice .socialmedia img {
  margin-top: 10px;
  margin-right: 5px; }

.klantenservice .bus {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0; }

@media (max-width: 46.24em) {
  .klantenservice .bus {
    display: none; } }

.single .heroheader {
  height: 322px; }

.single .quote {
  font-style: italic; }

.single .videoWrapper {
  position: relative;
  height: 0;
  padding-top: 25px;
  padding-bottom: 56.25%; }

.single .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.page-template-template-vacatures .content .c-layout__item {
  margin: 0 auto;
  display: block; }

.page-template-template-vacatures h1,
.page-template-template-vacatures h2 {
  color: #000000; }

.page-template-template-vacatures h4 span {
  color: #000000; }

.page-template-template-vacatures span.btn {
  color: #000000;
  margin-top: 40px; }

.page-template-template-vacatures span.btn:hover {
  color: #ffffff; }

.page-template-template-vacatures .vacatures h3 {
  font-size: 16px; }

.page-template-template-vacatures .vacatures__block {
  background: #999999;
  padding: 30px 30px 10px 30px; }

@media (max-width: 29.9275em) {
  .page-template-template-vacatures .vacatures__block {
    padding: 10px 20px; } }

@media (max-width: 29.9275em) {
  .page-template-template-vacatures .vacatures .btn {
    margin-bottom: 60px; } }

.single-vacatures .content {
  padding: 100px 0 0 0; }

.single-vacatures .content__navigation a:hover {
  color: #000000; }

.single-vacatures .content h1 {
  color: #000000; }

.single-vacatures .content span {
  color: #000000; }

.single-vacatures .content .btn {
  float: left; }

.vacature__tekst {
  float: left; }

.vacature__info {
  padding: 20px 0 60px 0; }

.vacature__info .icon {
  width: 22px;
  height: 22px;
  float: left;
  margin: 2px 2px 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

.vacature__info .icon.icon-place {
  background-image: url(../img/map_icon.svg); }

.vacature__info .icon.icon-clock {
  background-image: url(../img/clock_icon.svg); }

.vacature__info .icon.icon-opleiding {
  background-image: url(../img/education_icon.svg); }

.vacature__info .vacature-info {
  float: left; }

.vacature__info .vacature__info--text {
  float: left;
  color: #000000 !important;
  font-size: 18px;
  margin: -5px 30px 0 0; }

.woocommerce form .form-row .required {
  color: #F44B00 !important; }

.woocommerce .checkout #order_comments_field {
  display: none; }

.woocommerce .woocommerce-shipping-destination {
  display: none; }

.woocommerce .woocommerce-shipping-methods:before {
  content: "\f00c";
  font-family: FontAwesome;
  float: left;
  margin-right: 5px;
  color: #33A953; }

.woocommerce #place_order {
  background: #000000; }

.woocommerce .woocommerce-checkout {
  padding: 25px;
  position: relative;
  margin-top: 20px;
  padding-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 0 rgba(200, 200, 200, 0.2);
          box-shadow: 0 5px 0 rgba(200, 200, 200, 0.2); }

.woocommerce .woocommerce-checkout #customer_details h3,
.woocommerce .woocommerce-checkout #customer_details .step-title,
.woocommerce .woocommerce-checkout #customer_details #ship-to-different-address {
  font-size: 20px; }

.woocommerce .woocommerce-checkout #customer_details .form-row label {
  font-size: 13px; }

.woocommerce .woocommerce-checkout #customer_details .form-row input.input-text,
.woocommerce .woocommerce-checkout #customer_details .form-row textarea,
.woocommerce .woocommerce-checkout #customer_details .form-row .select2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  background: #ffffff;
  color: #000000;
  border: 1px #989898 solid;
  padding: 10px; }

.woocommerce .woocommerce-checkout #customer_details .form-row input.input-text::-webkit-input-placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row textarea::-webkit-input-placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row .select2::-webkit-input-placeholder {
  font-size: 14px; }

.woocommerce .woocommerce-checkout #customer_details .form-row input.input-text:-ms-input-placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row textarea:-ms-input-placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row .select2:-ms-input-placeholder {
  font-size: 14px; }

.woocommerce .woocommerce-checkout #customer_details .form-row input.input-text::-ms-input-placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row textarea::-ms-input-placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row .select2::-ms-input-placeholder {
  font-size: 14px; }

.woocommerce .woocommerce-checkout #customer_details .form-row input.input-text::placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row textarea::placeholder,
.woocommerce .woocommerce-checkout #customer_details .form-row .select2::placeholder {
  font-size: 14px; }

.woocommerce .woocommerce-checkout #order_review_heading {
  font-size: 20px; }

.woocommerce .woocommerce-checkout #order_review table {
  border-radius: 0 !important;
  border: none;
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate; }

.woocommerce .woocommerce-checkout #order_review table thead th {
  background-color: #fff;
  color: #222;
  border-top: #ececec double;
  border-bottom: #ececec double;
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em;
  font-size: 13px; }

.woocommerce .woocommerce-checkout #order_review table tbody .cart_item .woocommerce-Price-amount.amount {
  display: none; }

.woocommerce .woocommerce-checkout #order_review table tbody td {
  vertical-align: middle;
  line-height: 1.5em;
  padding: 16px 12px !important;
  border-top: none;
  font-size: 13px; }

.woocommerce .woocommerce-checkout #order_review table tfoot .cart-subtotal,
.woocommerce .woocommerce-checkout #order_review table tfoot .fee {
  display: none; }

.woocommerce .woocommerce-checkout #order_review table tfoot th {
  padding: 9px 12px;
  line-height: 1.5em;
  font-size: 13px;
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.woocommerce .woocommerce-checkout .woocommerce-checkout-payment {
  width: 100%;
  background-color: #eff0f3 !important; }

.woocommerce .woocommerce-checkout .woocommerce-checkout-payment .payment_box {
  background-color: #dddee1 !important; }

.woocommerce .woocommerce-checkout .woocommerce-checkout-payment .payment_box:before {
  color: #dddee1 !important; }

.woocommerce .woocommerce-checkout .woocommerce-checkout-payment .payment_box select {
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  background: #ffffff;
  color: #000000;
  border: 1px #989898 solid;
  padding: 10px;
  width: 35%; }

.woocommerce .woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods svg {
  width: 50px !important;
  height: auto !important; }

.woocommerce .woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  font-size: 13px;
  text-align: center; }

.woocommerce .woocommerce-checkout .form-row.privacy {
  font-size: 13px;
  text-align: center; }

.woocommerce-checkout-review-order .woocommerce-shipping-totals.shipping {
  margin-bottom: 10px; }

.woocommerce-checkout-review-order .woocommerce-shipping-totals.shipping:first-child {
  display: none; }

.woocommerce-checkout-review-order .woocommerce-shipping-totals.shipping h3 {
  font-size: 20px;
  margin: 0; }

.woocommerce-error {
  display: none; }

.woocommerce-cart .woocommerce-error {
  display: block;
  background: #000000;
  border: 0;
  color: #ffffff; }

.woocommerce-cart .woocommerce-error:before {
  color: #ffffff; }

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.cart-empty.woocommerce-info {
  background-color: #33A953; }

.woocommerce .woocommerce-error {
  background-color: #000000; }

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.cart-empty.woocommerce-info {
  display: block;
  border: 0;
  line-height: 40px;
  color: #ffffff;
  margin: 0 0 10px 0; }

.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:before,
.cart-empty.woocommerce-info:before {
  color: #ffffff; }

.woocommerce .woocommerce-error a,
.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-message a,
.cart-empty.woocommerce-info a {
  color: #ffffff;
  text-decoration: underline; }

.woocommerce .woocommerce-error a.button,
.woocommerce .woocommerce-info a.button,
.woocommerce .woocommerce-message a.button,
.cart-empty.woocommerce-info a.button {
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  background: #F44B00;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 2; }

.woocommerce .woocommerce-error a.button:before,
.woocommerce .woocommerce-info a.button:before,
.woocommerce .woocommerce-message a.button:before,
.cart-empty.woocommerce-info a.button:before {
  content: '';
  width: 120%;
  height: 480%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #DB4300;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
          transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1; }

.woocommerce .woocommerce-error a.button:hover,
.woocommerce .woocommerce-info a.button:hover,
.woocommerce .woocommerce-message a.button:hover,
.cart-empty.woocommerce-info a.button:hover {
  color: #ffffff; }

.woocommerce .woocommerce-error a.button:hover:before,
.woocommerce .woocommerce-info a.button:hover:before,
.woocommerce .woocommerce-message a.button:hover:before,
.cart-empty.woocommerce-info a.button:hover:before {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
          transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1; }

.return-to-shop a.button.wc-backward {
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  background: #F44B00;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 2; }

.return-to-shop a.button.wc-backward:before {
  content: '';
  width: 120%;
  height: 480%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #DB4300;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
          transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1; }

.return-to-shop a.button.wc-backward:hover {
  color: #ffffff; }

.return-to-shop a.button.wc-backward:hover:before {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
          transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1; }

.woocommerce-pagination {
  width: 100%;
  text-align: center;
  margin-top: 30px; }

.woocommerce-pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  border: 0 !important; }

.woocommerce-pagination ul.page-numbers li {
  display: inline-block;
  border: 0 !important;
  margin: 0 4px !important; }

.woocommerce-pagination ul.page-numbers li span.current, .woocommerce-pagination ul.page-numbers li:hover {
  background: #F44B00 !important;
  border-color: #F44B00 !important;
  color: #ffffff !important; }

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  padding: 10px !important;
  font-size: 16px !important;
  font-weight: 300 !important; }

.woocommerce-pagination ul.page-numbers li a {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #333;
  background: #ffffff; }

.woocommerce-pagination ul.page-numbers li a:hover {
  background: #F44B00 !important;
  border-color: #F44B00 !important;
  color: #ffffff !important; }

.content #sidebar aside.woocommerce {
  padding: 20px;
  position: relative;
  margin-top: 0;
  background: #ffffff;
  -webkit-box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px; }

.content #sidebar aside.widget_text img {
  width: 100%; }

.content #sidebar h3.widget-title {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 20px 0;
  padding-bottom: 0; }

.content #sidebar ul {
  margin: 0;
  padding: 0; }

.content #sidebar ul.yith-wcan-list > li, .content #sidebar ul.product-categories > li {
  list-style: none;
  position: relative;
  display: inline-block;
  width: 100%;
  border-bottom: 1px #ececec solid;
  padding: 0; }

.content #sidebar ul.yith-wcan-list > li.cat-parent > a, .content #sidebar ul.product-categories > li.cat-parent > a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  padding: 15px 0;
  display: inline-block; }

.content #sidebar ul.yith-wcan-list > li.cat-parent:before, .content #sidebar ul.product-categories > li.cat-parent:before {
  display: none; }

.content #sidebar ul.yith-wcan-list > li.cat-parent.open-cat:after, .content #sidebar ul.product-categories > li.cat-parent.open-cat:after {
  content: "\f068"; }

.content #sidebar ul.yith-wcan-list > li.cat-parent.current-cat-parent:after, .content #sidebar ul.product-categories > li.cat-parent.current-cat-parent:after {
  content: "\f068"; }

.content #sidebar ul.yith-wcan-list > li.cat-parent.current-cat-parent.close-cat:after, .content #sidebar ul.product-categories > li.cat-parent.current-cat-parent.close-cat:after {
  content: "\f067"; }

.content #sidebar ul.yith-wcan-list > li.cat-parent:after, .content #sidebar ul.product-categories > li.cat-parent:after {
  content: "\f067";
  color: #555;
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 14px;
  height: 24px;
  width: 24px;
  vertical-align: top;
  text-align: center;
  font-family: FontAwesome;
  font-weight: normal;
  background-repeat: no-repeat; }

.content #sidebar ul.yith-wcan-list > li.cat-parent ul, .content #sidebar ul.product-categories > li.cat-parent ul {
  padding-bottom: 10px; }

.content #sidebar ul.yith-wcan-list > li a, .content #sidebar ul.product-categories > li a {
  color: #999999;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none; }

.content #sidebar ul.yith-wcan-list > li:before, .content #sidebar ul.product-categories > li:before {
  content: '\f10c';
  font-family: FontAwesome;
  font-size: 5px;
  padding-right: 6px;
  color: #999999;
  vertical-align: middle; }

.content #sidebar ul.yith-wcan-list .count, .content #sidebar ul.product-categories .count {
  display: none; }

.content #sidebar ul.yith-wcan-list .chosen a,
.content #sidebar ul.yith-wcan-list .current-cat a, .content #sidebar ul.product-categories .chosen a,
.content #sidebar ul.product-categories .current-cat a {
  color: #989898;
  font-weight: bold; }

.content #sidebar ul.yith-wcan-list .chosen a:before,
.content #sidebar ul.yith-wcan-list .current-cat a:before, .content #sidebar ul.product-categories .chosen a:before,
.content #sidebar ul.product-categories .current-cat a:before {
  display: none; }

.content #sidebar ul #yith-woo-ajax-reset-navigation-2 {
  display: none; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget {
  padding: 0; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item {
  border-bottom: 1px #eeeeee solid;
  position: relative;
  margin: 0;
  padding: 8px 0 10px 0; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item a.remove {
  left: auto;
  right: -8px;
  top: 6px;
  border: 1px solid #000000;
  border-radius: 100%;
  color: #000000 !important;
  width: 15px;
  height: 15px;
  line-height: 13px;
  font-size: 12px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item a.remove:hover {
  background: #000000;
  color: #ffffff !important; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item a {
  font-size: 10px;
  line-height: 13px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item a img {
  width: 80px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin: 0 15px 0 0 !important;
  float: left !important;
  height: auto !important; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item .productname {
  width: 98%; }

.content #sidebar aside.widget_shopping_cart ul.product_list_widget .mini_cart_item .quantity {
  display: none; }

.content #sidebar aside.widget_shopping_cart .woocommerce-mini-cart__total {
  display: none; }

.content #sidebar aside.widget_shopping_cart .woocommerce-mini-cart__buttons {
  margin: 10px 0 0 0; }

.content #sidebar aside.widget_shopping_cart .woocommerce-mini-cart__buttons .button {
  background: #000000;
  overflow: hidden;
  color: #ffffff;
  border-radius: 0;
  font-size: 12px !important;
  font-weight: bold !important;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  width: 100%; }

.content .page-title {
  display: none; }

.woocommerce #customer_login h2 {
  font-size: 30px; }

.woocommerce #customer_login .woocommerce-form.woocommerce-form-login.login,
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register.register {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1); }

.woocommerce #customer_login .woocommerce-form.woocommerce-form-login.login .woocommerce-Input.woocommerce-Input--text.input-text,
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register.register .woocommerce-Input.woocommerce-Input--text.input-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #000000;
  border: 1px #989898 solid;
  padding: 10px; }

.woocommerce #customer_login .woocommerce-form.woocommerce-form-login.login a,
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register.register a {
  color: #000000;
  text-decoration: none; }

.woocommerce #customer_login .woocommerce-form.woocommerce-form-login.login .woocommerce-form-login__rememberme,
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register.register .woocommerce-form-login__rememberme {
  margin-top: 25px; }

.woocommerce #customer_login .woocommerce-form.woocommerce-form-login.login .woocommerce-privacy-policy-text,
.woocommerce #customer_login .woocommerce-form.woocommerce-form-register.register .woocommerce-privacy-policy-text {
  display: none; }

.woocommerce form.woocommerce-form.woocommerce-form-login.login button,
.woocommerce form.woocommerce-form.woocommerce-form-register.register button,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button {
  height: 40px !important;
  line-height: 40px !important;
  padding: 0 30px !important;
  text-align: center !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: bold !important;
  background: #F44B00 !important;
  border-radius: 3px !important;
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
  z-index: 2 !important;
  margin-top: 20px; }

.woocommerce form.woocommerce-form.woocommerce-form-login.login button:before,
.woocommerce form.woocommerce-form.woocommerce-form-register.register button:before,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button:before {
  content: '' !important;
  width: 120% !important;
  height: 480% !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  background: #DB4300 !important;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0) !important;
          transform: translate3d(-50%, -50%, 0) scale(0) !important;
  -webkit-transform-origin: 50% 50% !important;
          transform-origin: 50% 50% !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
  z-index: -1 !important; }

.woocommerce form.woocommerce-form.woocommerce-form-login.login button:hover,
.woocommerce form.woocommerce-form.woocommerce-form-register.register button:hover,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button:hover {
  color: #ffffff !important; }

.woocommerce form.woocommerce-form.woocommerce-form-login.login button:hover:before,
.woocommerce form.woocommerce-form.woocommerce-form-register.register button:hover:before,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button:hover:before {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1) !important;
          transform: translate3d(-50%, -50%, 0) scale(1) !important;
  opacity: 1 !important; }

.woocommerce form.woocommerce-form.woocommerce-form-login.login button:focus,
.woocommerce form.woocommerce-form.woocommerce-form-register.register button:focus,
.woocommerce form.woocommerce-ResetPassword.lost_reset_password button:focus {
  outline: none !important;
  border: none !important; }

.woocommerce .woocommerce-ResetPassword.lost_reset_password {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  padding: 30px 40px 40px 40px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1); }

.woocommerce .woocommerce-ResetPassword.lost_reset_password .woocommerce-Input.woocommerce-Input--text.input-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #000000;
  border: 1px #989898 solid;
  padding: 10px; }

.woocommerce-order {
  background: #ffffff;
  padding: 20px; }

.woocommerce-order .woocommerce-order-details .woocommerce-table__line-item.order_item .woocommerce-Price-amount.amount {
  display: none; }

.woocommerce-order .woocommerce-order-details tfoot tr:first-child {
  display: none; }

.single-product .content {
  padding: 0;
  background: #ffffff; }

.single-product .product_cat-weekmenu .product-intro .shopping-list h3 .price,
.single-product .product_cat-grote-proefbox .product-intro .shopping-list h3 .price,
.single-product .product_cat-zomerbox .product-intro .shopping-list h3 .price,
.single-product .product_cat-grote-box .product-intro .shopping-list h3 .price,
.single-product .product_cat-kleine-box .product-intro .shopping-list h3 .price {
  display: block; }

.single-product .product_cat-weekmenu .product-intro .shopping-list .usp .usp-icon.gerechten,
.single-product .product_cat-grote-proefbox .product-intro .shopping-list .usp .usp-icon.gerechten,
.single-product .product_cat-zomerbox .product-intro .shopping-list .usp .usp-icon.gerechten,
.single-product .product_cat-grote-box .product-intro .shopping-list .usp .usp-icon.gerechten,
.single-product .product_cat-kleine-box .product-intro .shopping-list .usp .usp-icon.gerechten {
  display: none; }

.single-product .product-intro {
  width: 100%;
  display: inline-block;
  padding: 60px 0;
  background: #eff0f3;
  position: relative; }

.single-product .product-intro:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
  width: 0;
  z-index: 1;
  height: 0;
  border-bottom: solid 50px #ffffff;
  border-left: solid 50px transparent;
  border-right: solid 50px transparent; }

.single-product .product-intro h1 {
  margin: 0; }

.single-product .product-intro img.product-intro-image {
  width: 80%;
  margin-top: 20px; }

.single-product .product-intro .subtitle p {
  margin: 0;
  font-size: 22px;
  font-weight: 300; }

.single-product .product-intro .subtitle p strong {
  font-weight: 900; }

.single-product .product-intro .shopping-list {
  background: #ffffff;
  -webkit-box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
  padding: 30px; }

.single-product .product-intro .shopping-list h3 {
  margin: 0;
  padding: 0 0 10px 0;
  border-bottom: 2px dashed #000000;
  display: inline-block;
  width: 100%; }

.single-product .product-intro .shopping-list h3 .title {
  float: left; }

.single-product .product-intro .shopping-list h3 .price {
  font-size: 14px;
  color: #000000;
  float: right;
  display: none; }

.single-product .product-intro .shopping-list h3 .price p {
  margin: 0; }

.single-product .product-intro .shopping-list .bezorging-container {
  width: 100%;
  padding-bottom: 10px;
  margin: 10px 0;
  border-bottom: 2px solid #000000; }

.single-product .product-intro .shopping-list .bezorging-container div {
  width: 100%;
  display: inline-block; }

.single-product .product-intro .shopping-list .bezorging-container div .text {
  float: left; }

.single-product .product-intro .shopping-list .bezorging-container div .price {
  float: right;
  font-size: 16px;
  color: #000000; }

.single-product .product-intro .shopping-list .bezorging-container div .price .strikethrough {
  position: relative; }

.single-product .product-intro .shopping-list .bezorging-container div .price .strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg); }

.single-product .product-intro .shopping-list .stock {
  display: none; }

.single-product .product-intro .shopping-list .add-to-cart {
  margin: 20px 0 0 0; }

.single-product .product-intro .shopping-list .add-to-cart .cart {
  margin: 0; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity {
  padding-top: 5px; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity #smntcswcb {
  border: 0 !important;
  width: 30px;
  height: 30px;
  line-height: 30px; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .minus,
.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .plus {
  height: 30px;
  line-height: 30px;
  width: 30px;
  padding: 0;
  text-align: center;
  outline: none; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .minus:hover,
.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .plus:hover {
  cursor: pointer; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .input-text.qty.text {
  outline: none; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .minus {
  color: #ffffff !important;
  border: 0 !important;
  background: #000000 !important; }

.single-product .product-intro .shopping-list .add-to-cart .cart .quantity .plus {
  background: #33A953 !important;
  border: 0 !important;
  color: #ffffff !important; }

.single-product .product-intro .shopping-list .add-to-cart .cart button.button {
  height: 40px;
  line-height: 40px;
  padding: 0 30px !important;
  text-align: center;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: bold;
  background: #000000 !important;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 2;
  outline: none; }

.single-product .product-intro .shopping-list .add-to-cart .cart button.button:hover {
  background: #33A953; }

.single-product .product-intro .shopping-list .add-to-cart .cart button.button:disabled[disabled] {
  background: #D8D8D8 !important;
  opacity: 1 !important;
  color: #eff0f3 !important; }

.single-product .product-intro .shopping-list .usp {
  width: 100%;
  display: inline-block;
  margin-top: 20px; }

.single-product .product-intro .shopping-list .usp .usp-icon {
  width: 100%;
  display: block;
  font-size: 18px;
  margin-top: 10px; }

.single-product .product-intro .shopping-list .usp .usp-icon:first-child {
  margin-top: 0; }

.single-product .product-intro .shopping-list .usp .usp-icon i {
  color: #33A953; }

.single-product .product-intro .bereidingswijze {
  width: 100%;
  margin: 30px 0 20px 0;
  display: inline-block;
  text-align: center; }

.single-product .product-intro .bereidingswijze__icon {
  padding: 0 30px; }

.single-product .product-intro .bereidingswijze img {
  display: block;
  margin: 0 auto 20px;
  width: 70px; }

.single-product .product-information {
  width: 100%;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
  overflow: hidden; }

.single-product .product-information .product-information-image {
  position: absolute;
  height: 40vw;
  width: auto;
  right: -30vw;
  z-index: 5;
  display: block;
  top: 50%;
  margin-top: -20vw;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center; }

@media (max-width: 29.9275em) {
  .single-product .product-information .product-information-image {
    display: none; } }

.single-product .product-information h3 {
  font-weight: 900; }

.single-product .product-information table {
  width: 100%; }

.single-product .product-information table tr {
  border-top: 1px solid #000000; }

.single-product .product-information table tr:first-child {
  border: 0; }

.single-product .product-information table tr td {
  padding: 5px 20px; }

.single-product .product-information table tr td:nth-child(2) {
  text-align: right; }

.single-product .product-information .weekmenu_gerechten {
  width: 100%;
  display: inline-block; }

.single-product .product-information .weekmenu_gerechten h3 {
  text-transform: uppercase; }

.single-product .product-information .weekmenu_gerechten a {
  color: #000000;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 10px 5px;
  border: 1px solid #eff0f3;
  margin: 5px; }

.single-product .product-information .weekmenu_gerechten img {
  display: block; }

.single-product .product-information .weekmenu_gerechten p {
  display: block;
  width: 100%;
  min-height: 60px;
  margin: 10px 0 0 0; }

.single-product .related-products {
  display: inline-block;
  padding: 60px 0;
  background: #eff0f3;
  position: relative;
  width: 100%; }

.single-product .related-products:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50px;
  width: 0;
  z-index: 1;
  height: 0;
  border-top: solid 50px #ffffff;
  border-left: solid 50px transparent;
  border-right: solid 50px transparent; }

@media (max-width: 46.24em) {
  .content .woocommerce_producten {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .content .woocommerce_producten .push {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .content .woocommerce_producten .pull {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

.content .woocommerce_producten .woocommerce-notices-wrapper {
  display: none; }

.content .woocommerce_producten .category-description-image {
  width: 100%; }

.content .woocommerce_producten .woocommerce-result-count {
  display: inline-block;
  float: none;
  text-align: center;
  font-size: 11px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px; }

.content .woocommerce_producten .woocommerce-ordering {
  float: right;
  margin-top: 20px; }

.content .woocommerce_producten .woocommerce-ordering label.left {
  display: inline;
  float: left;
  margin-right: 10px;
  padding: 6px 0;
  font-size: 11px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.content .woocommerce_producten .woocommerce-ordering .orderby {
  background: none repeat scroll 0 0 #ffffff;
  cursor: pointer;
  margin: 0 auto;
  outline: medium none;
  padding: 5px 15px;
  position: relative;
  width: 150px;
  float: left;
  color: #333;
  border: 1px solid #ddd;
  font-size: 13px;
  padding: 5px 1px; }

.content .products {
  width: 100%;
  display: inline-block;
  margin-top: 20px !important; }

.content .products li.product {
  background: #ffffff;
  padding: 40px 10px !important; }

.content .products li.product a {
  color: #000000;
  text-align: center; }

.content .products li.product a .onsale {
  display: none; }

.content .products li.product a .woocommerce-loop-product__title {
  font-size: 16px !important;
  padding: 0 !important;
  font-weight: 600;
  line-height: 18px !important;
  min-height: 40px; }

.content .products li.product a .price {
  color: #000000 !important;
  font-weight: bold !important;
  display: none !important; }

.content .products li.product a .price ins {
  text-decoration: none !important; }

.content .products li.product .button {
  font-size: 12px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  padding: 18px !important;
  line-height: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  border: 1px solid #000000 !important;
  margin: 0 auto !important;
  display: block !important;
  width: 130px !important;
  height: 18px !important;
  margin-top: 10px !important; }

.content .products li.product .button:before {
  content: "\f07a" !important;
  font-family: FontAwesome !important;
  display: inline-block;
  position: static;
  width: auto;
  height: auto;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  margin-right: 10px;
  color: #000000 !important; }

.content .products li.product .button:hover {
  background: #000000 !important;
  color: #ffffff !important; }

.content .products li.product .button:hover:before {
  color: #ffffff !important; }

.woocommerce-account a {
  color: #000000;
  text-decoration: none; }

.woocommerce-account a:hover {
  color: #F44B00; }

.woocommerce-account .woocommerce {
  padding: 25px;
  position: relative;
  margin-top: 0;
  padding-bottom: 30px;
  background: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #f5f5f5 #eeeeee #d5d5d5 #eeeeee;
  -webkit-box-shadow: 0 5px 0 rgba(200, 200, 200, 0.2);
          box-shadow: 0 5px 0 rgba(200, 200, 200, 0.2); }

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  -webkit-box-shadow: none;
          box-shadow: none;
  float: right;
  width: 24%;
  border: none;
  z-index: inherit;
  background: inherit;
  margin-top: 20px;
  margin-bottom: 20px; }

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: auto;
  padding: 0; }

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  padding: 6px 0;
  border-bottom: 1px #eff0f3 solid; }

.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  float: left;
  width: 72%;
  margin-top: 20px;
  margin-bottom: 20px; }

.woocommerce-account .woocommerce .woocommerce-Addresses .col-1 {
  border-right: 1px solid #eff0f3;
  padding-right: 20px; }

.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address-title a {
  color: #F44B00; }

.woocommerce form fieldset {
  border: 0 none;
  margin: 0;
  padding: 0; }

.woocommerce form fieldset legend {
  font-weight: bold; }

.woocommerce form .form-row {
  padding: 3px;
  -webkit-box-flex: 0;
      -ms-flex: 0 49%;
          flex: 0 49%;
  margin: 0 1px 0; }

.woocommerce form .form-row label {
  text-align: left;
  display: block; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row .select2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #000000;
  border: 1px #989898 solid;
  padding: 10px; }

.woocommerce form .form-row .select2 .select2-selection {
  border: 0; }

.woocommerce form .form-row .select2 .select2-selection__arrow {
  top: 8px;
  right: 10px; }

.woocommerce .woocommerce-orders-table .woocommerce-button {
  height: 35px !important;
  line-height: 35px !important;
  padding: 0 10px !important;
  margin: 0 2px; }

.woocommerce .woocommerce-orders-table .woocommerce-button:hover {
  color: #ffffff; }

.woocommerce .woocommerce-orders-table .woocommerce-button.pay {
  background-color: #33A953 !important;
  color: #ffffff; }

.woocommerce .woocommerce-orders-table .woocommerce-button.view {
  background: #eff0f3 !important; }

.woocommerce .woocommerce-orders-table .woocommerce-button.cancel {
  background-color: #eff0f3 !important; }

.shoppingcart__page {
  width: 100%;
  display: inline-block; }

.shoppingcart__page .shoppingcart {
  padding-right: 100px; }

.shoppingcart__page .shoppingcart h2 {
  margin: 0 0 30px 0; }

.shoppingcart__page .shop_table {
  width: 100%;
  display: inline-block; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item {
  width: 100%;
  border-bottom: 2px solid #353535;
  padding: 20px 0;
  display: inline-block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-thumbnail {
  width: 25%;
  float: left; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info {
  width: 75%;
  padding-left: 20px;
  float: left; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-name {
  width: 100%;
  display: inline-block;
  margin-bottom: 30px; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-name a {
  color: #000000;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none !important; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity {
  float: left;
  width: 25%; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity {
  padding-top: 5px; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity #smntcswcb {
  border: 0 !important;
  width: 30px;
  height: 30px;
  line-height: 30px; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .minus,
.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .plus {
  height: 30px;
  line-height: 30px;
  width: 30px;
  padding: 0;
  text-align: center;
  outline: none; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .minus:hover,
.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .plus:hover {
  cursor: pointer; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .input-text.qty.text {
  outline: none; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .minus {
  color: #ffffff !important;
  border: 0 !important;
  background: #000000 !important; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-quantity .quantity .plus {
  background: #33A953 !important;
  border: 0 !important;
  color: #ffffff !important; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-price {
  float: left;
  width: 75%;
  text-align: right;
  display: none; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-price .woocommerce-Price-amount.amount {
  font-weight: 700;
  font-size: 18px; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-price .product-price-sub {
  display: block;
  margin-top: 10px; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-price .product-price-sub > span {
  font-weight: 300; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-info .product-price .product-price-sub .woocommerce-Price-amount.amount {
  font-weight: 700;
  font-size: 23px; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-remove {
  position: absolute;
  top: 20px;
  right: 0; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-remove a {
  border: 1px solid #000000;
  border-radius: 100%;
  color: #000000 !important;
  width: 20px;
  height: 20px;
  line-height: 18px;
  font-size: 16px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.shoppingcart__page .shop_table .woocommerce-cart-form__cart-item .product-remove a:hover {
  background: #000000;
  color: #ffffff !important; }

.shoppingcart__page .cart-collaterals {
  margin-top: 60px; }

.shoppingcart__page .cart-collaterals .cross-sells {
  width: 100% !important;
  display: inline-block; }

.shoppingcart__page .cart-collaterals .cross-sells .product {
  float: left;
  margin: 0 3.8% 0 0;
  padding: 0;
  position: relative;
  width: 30.75% !important;
  margin-left: 0;
  text-align: center; }

.shoppingcart__page .cart-collaterals .cart_totals {
  display: none; }

.cart_totals {
  background: #ffffff;
  -webkit-box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px -10px rgba(0, 0, 0, 0.3);
  padding: 30px; }

.cart_totals h3 {
  font-weight: 900;
  font-size: 20px;
  margin: 0; }

.cart_totals .cart-subtotal {
  display: none; }

.cart_totals .cart-subtotal h3 {
  margin: 0; }

.cart_totals .fee {
  display: none; }

.cart_totals .woocommerce-shipping-totals.shipping,
.cart_totals .fee {
  margin-bottom: 20px; }

.cart_totals .woocommerce-shipping-methods li {
  position: relative; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"],
.cart_totals .woocommerce-shipping-methods li input[type="radio"] {
  position: absolute;
  opacity: 0; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"] + label,
.cart_totals .woocommerce-shipping-methods li input[type="radio"] + label {
  cursor: pointer;
  padding: 0; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"] + label:before,
.cart_totals .woocommerce-shipping-methods li input[type="radio"] + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  float: left;
  border: 1px solid #33A953;
  background: transparent; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"]:hover + label:before,
.cart_totals .woocommerce-shipping-methods li input[type="radio"]:hover + label:before {
  background: #eff0f3; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"]:focus + label:before,
.cart_totals .woocommerce-shipping-methods li input[type="radio"]:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12); }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"]:disabled + label,
.cart_totals .woocommerce-shipping-methods li input[type="radio"]:disabled + label {
  color: #b8b8b8;
  cursor: auto; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"]:disabled + label:before,
.cart_totals .woocommerce-shipping-methods li input[type="radio"]:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none; }

.cart_totals .woocommerce-shipping-methods li input[type="checkbox"]:checked + label:after,
.cart_totals .woocommerce-shipping-methods li input[type="radio"]:checked + label:after {
  content: "\f00c";
  position: absolute;
  left: 4px;
  top: 0;
  color: #33A953;
  width: 2px;
  height: 2px;
  font-family: FontAwesome; }

.cart_totals .woocommerce-shipping-methods li input[type="radio"] + label:before {
  border-radius: 20px; }

.cart_totals .woocommerce-shipping-methods li input[type="radio"]:checked + label:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33A953;
  content: ""; }

.cart_totals .shipping-calculator-button {
  color: #000000; }

.cart_totals .order-total .woocommerce-Price-amount {
  font-size: 20px;
  font-weight: normal; }

.cart_totals .coupon {
  width: 100%;
  display: inline-block;
  margin-top: 30px; }

.cart_totals .coupon input[type="text"] {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  display: block;
  line-height: 45px;
  font-size: 12px;
  vertical-align: middle;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 0 20px 0; }

.cart_totals .wc-proceed-to-checkout .checkout-button {
  margin: 0 !important;
  background: #33A953 !important;
  padding: 0 !important;
  display: block;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: normal; }

.cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: #F44B00; }

.cart_totals #coupon_code {
  font-size: 14px; }

.cart_totals button {
  width: 100%; }

.shoppingcart-button .button,
.coupon .button,
.update .button {
  height: 40px;
  line-height: 40px;
  padding: 0 30px !important;
  text-align: center;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: bold;
  background: #000000 !important;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 2; }

.shoppingcart-button .button:hover,
.coupon .button:hover,
.update .button:hover {
  background: #33A953; }

.shoppingcart-button .button:disabled[disabled],
.coupon .button:disabled[disabled],
.update .button:disabled[disabled] {
  background: #000000 !important;
  opacity: 0.2 !important;
  color: #ffffff !important; }

.shoppingcart-button .button,
.update .button {
  margin-top: 20px !important; }

.vacature-accordion {
  width: 100%;
  display: inline-block; }

.vacature-accordion .accordion {
  width: 100%;
  margin: 30px auto 30px;
  background: #ffffff; }

.vacature-accordion .accordion .accordion-item {
  position: relative;
  border-top: 1px solid #999999;
  padding: 10px 20px; }

.vacature-accordion .accordion .accordion-item:first-child {
  border-top: 0; }

.vacature-accordion .accordion .accordion-item .heading {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  text-align: left; }

.vacature-accordion .accordion .accordion-item .heading .accordion-title {
  color: #000000;
  font-size: 28px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin: 0;
  text-align: left; }

.vacature-accordion .accordion .accordion-item .heading .accordion-title:after {
  font-family: FontAwesome;
  content: "\f107";
  color: #000000;
  float: right; }

.vacature-accordion .accordion .accordion-item.active .accordion-title:after {
  content: "\f106"; }

.vacature-accordion .accordion .accordion-item .accordion-content {
  display: none;
  padding: 20px;
  text-align: left;
  background-color: #f8f8f8;
  margin: 20px 0; }

.vacature-accordion .accordion .accordion-item .accordion-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.vacature-accordion .accordion .accordion-item .accordion-content ul li {
  position: relative;
  padding-left: 35px;
  margin-top: 15px; }

.vacature-accordion .accordion .accordion-item .accordion-content ul li:first-child {
  margin-top: 0; }

.vacature-accordion .accordion .accordion-item .accordion-content ul li:before {
  font-family: FontAwesome;
  content: "\f054";
  color: #000000;
  position: absolute;
  left: 0;
  font-size: 12px; }

.vacature-accordion .accordion .accordion-item .accordion-content a.none.button-clean.button--rayen-clean {
  width: auto;
  padding: 0 20px 0 20px; }

.vacature-accordion .accordion .accordion-item .accordion-content p {
  margin-top: 0; }

.vacature-accordion .accordion .button-clean {
  display: inline-block; }

.reveal {
  -webkit-animation: width;
          animation: width;
  -webkit-animation: height;
          animation: height;
  -webkit-animation: background;
          animation: background;
  -webkit-animation: opacity;
          animation: opacity;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s; }

.animated {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none; } }

.fadeInDown,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown; }

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); } }

@keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); } }

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); } }

@keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); } }

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
            transform: translateY(9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg); } }

@keyframes inT {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
            transform: translateY(9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg); } }

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
            transform: translateY(9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg); } }

@keyframes outT {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
            transform: translateY(9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg); } }

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
            transform: translateY(-9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
            transform: translateY(-9px) rotate(135deg); } }

@keyframes inBtm {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
            transform: translateY(-9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
            transform: translateY(-9px) rotate(135deg); } }

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
            transform: translateY(-9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
            transform: translateY(-9px) rotate(135deg); } }

@keyframes outBtm {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
            transform: translateY(-9px) rotate(0deg); }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
            transform: translateY(-9px) rotate(135deg); } }

.button-orange,
.woocommerce button[type=submit].button,
.woocommerce .button,
.woocommerce-mini-cart__buttons .button,
.woocommerce input[type=submit].button {
  height: 40px !important;
  line-height: 40px !important;
  padding: 0 30px !important;
  text-align: center !important;
  color: #ffffff;
  font-size: 14px !important;
  font-weight: bold !important;
  background: #F44B00;
  border-radius: 3px !important;
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  -webkit-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
  z-index: 2 !important;
  outline: none !important; }

.button-orange:before,
.woocommerce button[type=submit].button:before,
.woocommerce .button:before,
.woocommerce-mini-cart__buttons .button:before,
.woocommerce input[type=submit].button:before {
  content: '';
  width: 120%;
  height: 480%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #DB4300;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
          transform: translate3d(-50%, -50%, 0) scale(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1; }

.button-orange:hover,
.woocommerce button[type=submit].button:hover,
.woocommerce .button:hover,
.woocommerce-mini-cart__buttons .button:hover,
.woocommerce input[type=submit].button:hover {
  color: #ffffff; }

.button-orange:hover:before,
.woocommerce button[type=submit].button:hover:before,
.woocommerce .button:hover:before,
.woocommerce-mini-cart__buttons .button:hover:before,
.woocommerce input[type=submit].button:hover:before {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
          transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1; }

.accordion {
  width: 100%;
  margin: 30px auto 30px;
  background: #ffffff;
  border: 1px solid primarycolor; }

.accordion .accordion-item {
  position: relative;
  border-top: 10px solid #eff0f3;
  padding: 4px 14px; }

.accordion .accordion-item:first-child {
  border-top: 0; }

.accordion .accordion-item .heading {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  text-align: left; }

.accordion .accordion-item .heading .accordion-title {
  color: #000000;
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin: 0;
  text-align: left; }

.accordion .accordion-item .heading .accordion-title:after {
  font-family: FontAwesome;
  font-size: 22px;
  content: "\f107";
  color: #000000;
  float: left;
  margin-right: 10px; }

.accordion .accordion-item .accordion-content {
  display: none;
  text-align: left; }

.accordion .accordion-item .accordion-content p {
  margin: 15px 0;
  padding: 0 5px; }

.gform_wrapper {
  display: block; }

.gform_wrapper .gform_heading {
  display: none; }

.gform_wrapper .gform_body ul li {
  margin: 10px 0 0 0;
  padding: 0; }

.gform_wrapper .gform_body ul li.bedrijf-field {
  display: none; }

.gform_wrapper .gform_body ul li label {
  font-size: 16px;
  float: left;
  height: 45px;
  line-height: 45px;
  font-weight: 300;
  margin: 0; }

.gform_wrapper .gform_body ul li label .gfield_required {
  margin: 0;
  color: #eff0f3; }

.gform_wrapper .gform_body ul li.gfield_error {
  padding: 0;
  border: 0;
  margin: 0;
  background: none; }

.gform_wrapper .gform_body ul li.gfield_error label {
  margin: 0; }

.gform_wrapper .gform_body ul li.gfield_error .gfield_description {
  padding: 0;
  margin-bottom: 10px; }

.gform_wrapper .gform_body ul li.gfield_error .ginput_container {
  margin-right: 0;
  margin-top: 0; }

.gform_wrapper .gform_body ul li .ginput_container {
  width: 60%; }

@media (max-width: 63.99em) {
  .gform_wrapper .gform_body ul li .ginput_container {
    width: 100%; } }

.gform_wrapper .gform_body ul li .ginput_container input[type="text"],
.gform_wrapper .gform_body ul li .ginput_container input[type="email"],
.gform_wrapper .gform_body ul li .ginput_container input[type="search"],
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"],
.gform_wrapper .gform_body ul li .ginput_container input[type="number"],
.gform_wrapper .gform_body ul li .ginput_container input[type="url"],
.gform_wrapper .gform_body ul li .ginput_container select,
.gform_wrapper .gform_body ul li .ginput_container textarea,
.gform_wrapper .gform_body ul li .ginput_container .field {
  width: 100%;
  height: 45px;
  padding: 0 10px;
  display: block;
  line-height: 45px;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  vertical-align: middle;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0; }

@media (max-width: 63.99em) {
  .gform_wrapper .gform_body ul li .ginput_container input[type="text"],
  .gform_wrapper .gform_body ul li .ginput_container input[type="email"],
  .gform_wrapper .gform_body ul li .ginput_container input[type="search"],
  .gform_wrapper .gform_body ul li .ginput_container input[type="tel"],
  .gform_wrapper .gform_body ul li .ginput_container input[type="number"],
  .gform_wrapper .gform_body ul li .ginput_container input[type="url"],
  .gform_wrapper .gform_body ul li .ginput_container select,
  .gform_wrapper .gform_body ul li .ginput_container textarea,
  .gform_wrapper .gform_body ul li .ginput_container .field {
    width: 100%; } }

.gform_wrapper .gform_body ul li .ginput_container input[type="text"]:focus, .gform_wrapper .gform_body ul li .ginput_container input[type="text"]:active,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"]:focus,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"]:active,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"]:focus,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"]:active,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"]:focus,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"]:active,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"]:focus,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"]:active,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"]:focus,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"]:active,
.gform_wrapper .gform_body ul li .ginput_container select:focus,
.gform_wrapper .gform_body ul li .ginput_container select:active,
.gform_wrapper .gform_body ul li .ginput_container textarea:focus,
.gform_wrapper .gform_body ul li .ginput_container textarea:active,
.gform_wrapper .gform_body ul li .ginput_container .field:focus,
.gform_wrapper .gform_body ul li .ginput_container .field:active {
  border-bottom: 2px solid black;
  margin: 0; }

.gform_wrapper .gform_body ul li .ginput_container input[type="text"].placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"].placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"].placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"].placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"].placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"].placeholder,
.gform_wrapper .gform_body ul li .ginput_container select.placeholder,
.gform_wrapper .gform_body ul li .ginput_container textarea.placeholder,
.gform_wrapper .gform_body ul li .ginput_container .field.placeholder {
  font-size: 12px;
  color: #eff0f3; }

.gform_wrapper .gform_body ul li .ginput_container input[type="text"] option.placeholder, .gform_wrapper .gform_body ul li .ginput_container input[type="text"] option:checked,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"] option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"] option:checked,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"] option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"] option:checked,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"] option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"] option:checked,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"] option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"] option:checked,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"] option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"] option:checked,
.gform_wrapper .gform_body ul li .ginput_container select option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container select option:checked,
.gform_wrapper .gform_body ul li .ginput_container textarea option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container textarea option:checked,
.gform_wrapper .gform_body ul li .ginput_container .field option.placeholder,
.gform_wrapper .gform_body ul li .ginput_container .field option:checked {
  font-size: 12px;
  color: #eff0f3; }

.gform_wrapper .gform_body ul li .ginput_container input[type="text"].LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"].LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"].LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"].LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"].LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"].LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container select.LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container textarea.LV_invalid_field,
.gform_wrapper .gform_body ul li .ginput_container .field.LV_invalid_field {
  background-image: url(../img/error.png);
  background-repeat: no-repeat;
  background-position: 98% center; }

.gform_wrapper .gform_body ul li .ginput_container input[type="text"].LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="email"].LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="search"].LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="tel"].LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="number"].LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container input[type="url"].LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container select.LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container textarea.LV_valid_field,
.gform_wrapper .gform_body ul li .ginput_container .field.LV_valid_field {
  background-image: url(../img/valid.png);
  background-repeat: no-repeat;
  background-position: 98% center; }

.gform_wrapper .gform_body ul li .ginput_container .ginput_full label {
  width: 100%; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio li {
  float: left;
  position: relative;
  width: 90px; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio li > label {
  line-height: 20px;
  height: 20px; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio li input[type="radio"]:focus {
  border: 0;
  background: none; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"],
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"] {
  position: absolute;
  opacity: 0; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"] + li,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"] + li {
  cursor: pointer;
  padding: 0; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"] + li:before,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"] + li:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  float: left;
  background: #f1f1f1; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"]:hover + li:before,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:hover + li:before {
  background: #eff0f3; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"]:focus + li:before,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:focus + li:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12); }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"]:checked + li:before,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:checked + li:before {
  background: #eff0f3; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"]:disabled + li,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:disabled + li {
  color: #b8b8b8;
  cursor: auto; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"]:disabled + li:before,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:disabled + li:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="checkbox"]:checked + li:after,
.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:checked + li:after {
  content: "\f00c";
  position: absolute;
  left: 4px;
  top: 0;
  color: #ffffff;
  width: 2px;
  height: 2px;
  font-family: FontAwesome; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"] + li:before {
  border-radius: 20px; }

.gform_wrapper .gform_body ul li .ginput_container.ginput_container_radio input[type="radio"]:checked + li:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  content: ""; }

.gform_wrapper .gform_footer input[type="submit"] {
  height: 45px;
  line-height: 43px;
  padding: 0 20px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  overflow: visible;
  color: #eff0f3;
  border: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  outline: 0;
  font-weight: 300;
  font-size: 15px;
  color: #ffffff;
  background: #000000; }

.gform_wrapper .gform_footer input[type="submit"]:hover {
  background: #000000;
  color: #ffffff; }

.gform_wrapper .validation_message {
  color: #3c7ab5;
  font-weight: 300; }

.c-layout__item {
  display: inline-block;
  width: 100%;
  vertical-align: top; }

[canvas=container],
[off-canvas] {
  padding: 10px 20px; }

[class*=js-] {
  cursor: pointer; }

html,
body,
[canvas=container],
[off-canvas] {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

[canvas] {
  z-index: 1; }

[canvas=container] {
  width: 100%;
  height: 100%;
  position: relative;
  background: #ffffff;
  overflow-scrolling: touch; }

[canvas=container]:before,
[canvas=container]:after {
  clear: both;
  content: '';
  display: table; }

[off-canvas] {
  display: none;
  position: fixed;
  overflow: hidden;
  overflow-y: auto;
  background: #000000;
  color: #ffffff;
  overflow-scrolling: touch; }

[off-canvas*=top] {
  width: 100%;
  height: 255px;
  top: 0; }

[off-canvas*=right] {
  width: 255px;
  height: 100%;
  top: 0;
  right: 0; }

[off-canvas*=bottom] {
  width: 100%;
  height: 255px;
  bottom: 0; }

[off-canvas*=left] {
  width: 255px;
  height: 100%;
  top: 0;
  left: 0; }

[off-canvas*=reveal] {
  z-index: 0; }

[off-canvas*=push] {
  z-index: 1; }

[off-canvas*=overlay] {
  z-index: 9999; }

[off-canvas*=shift] {
  z-index: 0; }

[canvas],
[off-canvas] {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

[off-canvas*=shift][off-canvas*=right] {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }

@media print {
  [canvas] {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  [off-canvas] {
    display: none; } }

div.header__togglemenu.js-toggle-left-slidebar.active {
  margin: 32px 250px 0 0; }

.header {
  width: 100%;
  height: 90px;
  top: 0;
  left: 0;
  z-index: 999;
  position: fixed;
  background: #F44B00; }

.header__logo {
  height: 40px;
  margin: 25px 0;
  float: left;
  display: block;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative; }

.header__logo .whiteblock {
  overflow: hidden;
  width: 2000px;
  height: 91px;
  position: absolute;
  right: -70px;
  top: -8px; }

.header__logo .whiteblock:before {
  height: 110px;
  content: '';
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 120px;
  display: block;
  background: #ffffff; }

.header__logo--image {
  width: auto;
  height: 74px;
  display: inline-block;
  position: relative;
  z-index: 2; }

.header__logo img {
  height: 100%;
  width: auto; }

.header__nav {
  margin-left: 80px;
  display: block;
  display: none; }

.header__nav--list {
  margin: 0;
  padding: 0; }

.header__nav--list li {
  display: inline-block;
  position: relative; }

.header__nav--list li a {
  margin: 0 10px;
  padding: 0 10px;
  display: block;
  line-height: 90px;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #ffffff; }

.header__nav--list li.menu-item-has-children a:after {
  content: "\f107";
  font-family: FontAwesome;
  color: #000000;
  font-size: 22px;
  margin-left: 5px;
  float: right; }

.header__nav--list li.current_page_item a {
  color: #ffffff; }

.header__nav--list li:hover a {
  color: #ffffff; }

.header__nav--list li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%; }

.header__nav--list li .sub-menu {
  position: absolute;
  left: 0;
  top: 90px;
  width: 270px;
  text-align: left;
  background: #222222;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding: 0; }

.header__nav--list li .sub-menu li {
  width: 100%;
  display: inline-block; }

.header__nav--list li .sub-menu li:after {
  display: none; }

.header__nav--list li .sub-menu li:first-child {
  margin: 0; }

.header__nav--list li .sub-menu li a {
  color: #ffffff;
  margin: 0;
  line-height: 60px;
  padding-left: 15px;
  font-size: 16px; }

.header__nav--list li .sub-menu li a:hover {
  background: #F44B00; }

.header__nav--list li .sub-menu li a:after {
  display: none; }

.header .right-menu {
  float: right;
  height: 90px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.header .right-menu .icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  float: left; }

.header .right-menu .profile {
  width: 34px;
  height: 100%;
  display: inline-block;
  float: left;
  background-image: url(../img/profile.svg);
  background-repeat: no-repeat;
  background-position: left;
  position: relative; }

.header .right-menu .search {
  width: 34px;
  height: 100%;
  display: inline-block;
  float: left;
  background-image: url(../img/search.svg);
  background-repeat: no-repeat;
  background-position: left;
  position: relative;
  margin-right: 20px; }

.header .right-menu .shoppingcart-icon {
  width: 55px;
  height: 100%;
  display: inline-block;
  float: left;
  background-image: url(../img/cart.svg);
  background-repeat: no-repeat;
  background-position: left;
  position: relative; }

.header .right-menu .shoppingcart-icon > a {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%; }

.header .right-menu .shoppingcart-icon .cart-contents.menu-item {
  height: 100%;
  display: inline-block; }

.header .right-menu .shoppingcart-icon .cart-contents .cart-contents-count {
  width: 20px;
  height: 20px;
  background: #000000;
  color: #ffffff;
  text-align: center;
  line-height: 20px;
  border-radius: 20px;
  font-size: 10px;
  display: block;
  position: absolute;
  top: 25px;
  right: 10px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.header .right-menu .shoppingcart-icon:hover {
  cursor: pointer; }

.header .right-menu .widget_shopping_cart_content {
  background: #ffffff;
  top: 90px;
  padding: 20px;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
  z-index: 100;
  border-top: 0;
  display: none;
  position: absolute;
  right: -50px;
  margin-top: 0;
  visibility: visible;
  min-width: 300px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1); }

.header .right-menu .widget_shopping_cart_content a.wc-forward {
  border-radius: 3px !important;
  font-size: 0 !important; }

.header .right-menu .widget_shopping_cart_content a.wc-forward:after {
  content: "Winkelmand" !important;
  font-size: 14px !important; }

.header .right-menu .widget_shopping_cart_content a.checkout {
  border-radius: 3px !important;
  font-size: 0 !important; }

.header .right-menu .widget_shopping_cart_content a.checkout:after {
  content: "Afrekenen" !important;
  font-size: 14px !important; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
  margin: 0; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__buttons.buttons {
  margin: 0 5px 0 0 !important; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget {
  width: 100%;
  margin: 0;
  padding: 0; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li {
  width: 100%;
  display: inline-block; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .thumb,
.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .product-info {
  float: left; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .thumb {
  margin-right: 10px;
  width: 100px;
  height: auto; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .thumb img {
  width: 100%;
  height: auto; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .product-info {
  padding: 0 0 0 0;
  width: 124px;
  line-height: 16px; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .product-info .productname {
  font-weight: 100; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .product-info .quantity {
  font-weight: bold;
  display: block; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li .product-info .woocommerce-Price-amount.amount {
  display: none; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li a {
  color: #000000; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li a.remove {
  float: right;
  color: #989898 !important;
  font-weight: 100 !important; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart.cart_list.product_list_widget li a.remove:hover {
  color: #000000 !important;
  background: transparent; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  width: 100%;
  display: inline-block;
  margin: 0; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
  overflow: hidden;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-weight: bold; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__buttons .wc-forward {
  float: left;
  background: #eff0f3;
  color: #000000;
  padding: 0 20px !important; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__buttons .wc-forward:hover {
  color: #ffffff; }

.header .right-menu .widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout {
  float: right !important;
  background: #F44B00 !important;
  color: #ffffff !important;
  padding: 0 20px !important; }

.header .right-menu .widget_shopping_cart_content.active {
  display: block; }

.header .right-menu img {
  height: 34px; }

.header .right-menu .profile {
  margin-right: 15px; }

.header .right-menu .woocommerce-mini-cart__total.total {
  display: none; }

.header__togglemenu {
  display: block;
  float: right;
  height: 25px;
  margin: 34px 0 0 0;
  position: relative; }

.header__togglemenu--title {
  float: left;
  display: inline-block;
  padding-right: 40px;
  margin: 0;
  font-size: 12px;
  color: #eff0f3;
  line-height: 25px; }

.header__togglemenu--trigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; }

.header__togglemenu--trigger i {
  background: #ffffff;
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px; }

.header__togglemenu--trigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
          animation: outT 0.8s backwards;
  animation-direction: reverse; }

.header__togglemenu--trigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
          animation: outM 0.8s backwards;
  animation-direction: reverse; }

.header__togglemenu--trigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
          animation: outBtm 0.8s backwards;
  animation-direction: reverse; }

.header__togglemenu--trigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
          animation: inT 0.8s forwards; }

.header__togglemenu--trigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
          animation: inM 0.8s forwards; }

.header__togglemenu--trigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
          animation: inBtm 0.8s forwards; }

@media (max-width: 63.99em) {
  .sub-menu {
    padding-left: 15px; } }

@media (min-width: 64em) {
  .header {
    height: 90px; }
  .header__logo {
    height: 74px;
    margin: 7px 0; }
  .header__logo img {
    height: 100%;
    width: auto; }
  .header__nav {
    display: block;
    float: left; }
  .header__nav li a {
    font-size: 18px; }
  .header__togglemenu {
    display: none; }
  .scrolled .header {
    height: 60px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .scrolled .header .whiteblock {
    overflow: hidden;
    width: 2000px;
    height: 60px;
    position: absolute;
    right: -70px;
    top: -4px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .scrolled .header__logo {
    margin: 4px 0; }
  .scrolled .header__logo img {
    width: auto;
    height: 54px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .scrolled .header__nav li a {
    line-height: 60px;
    font-size: 16px; }
  .scrolled .right-menu {
    float: right;
    height: 60px;
    line-height: 60px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .scrolled .right-menu img {
    height: 28px; }
  .scrolled .right-menu .shoppingcart-icon .cart-contents .cart-contents-count {
    top: 10px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .scrolled .right-menu .widget_shopping_cart_content {
    top: 60px; } }

@media (max-width: 63.99em) {
  .header .whiteblock {
    top: -26px; }
  .header__logo img {
    margin-top: -16px; } }

.mobilenav {
  background: #000000;
  padding: 10px; }

.mobilenav__nav {
  padding: 0; }

.mobilenav__nav li {
  width: 100%;
  display: block;
  border-bottom: 1px solid #1a1a1a; }

.mobilenav__nav li a {
  color: #ffffff;
  line-height: 40px;
  padding: 0 10px; }

.owl-carousel {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-playing .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.no-js .owl-carousel {
  display: block; }

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

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

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center; }

.owl-theme .owl-nav .owl-nav [class*='owl-'] {
  color: #ffffff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }

.owl-theme .owl-nav .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #ffffff;
  text-decoration: none; }

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

.owl-theme .owl-nav .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-nav .owl-dots {
  text-align: center; }

.owl-theme .owl-nav .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px; }

.owl-theme .owl-nav .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

.owl-theme .owl-nav .owl-dots .owl-dot.active span,
.owl-theme .owl-nav .owl-dots .owl-dot:hover span {
  background: #869791; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.social-links__list {
  list-style: none;
  margin: 0;
  padding: 0; }

.social-links__item {
  display: inline-block; }

.social-links__link {
  display: block;
  padding: 6px 12px;
  text-decoration: none;
  font-family: FontAwesome; }

.social-links__link[href*="facebook"] {
  background: #3b5998;
  border-radius: 2px;
  color: #ffffff;
  -webkit-transition: background linear 0.2s;
  transition: background linear 0.2s; }

.social-links__link[href*="facebook"]:hover {
  background: #263961; }

.social-links__link[href*="twitter"] {
  background: #1da1f2;
  border-radius: 2px;
  color: #ffffff;
  -webkit-transition: background linear 0.2s;
  transition: background linear 0.2s; }

.social-links__link[href*="twitter"]:hover {
  background: #0b76b8; }

.social-links__link[href*="linkedin"] {
  background: #0077b5;
  border-radius: 2px;
  color: #ffffff;
  -webkit-transition: background linear 0.2s;
  transition: background linear 0.2s; }

.social-links__link[href*="linkedin"]:hover {
  background: #004569; }

.social-links__link[href*="pinterest"] {
  background: #c92228;
  border-radius: 2px;
  color: #ffffff;
  -webkit-transition: background linear 0.2s;
  transition: background linear 0.2s; }

.social-links__link[href*="pinterest"]:hover {
  background: #88171b; }

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

.hide {
  display: none; }

.show {
  display: block; }

  .mtsnb {
    position: fixed!important;
    bottom:  0!important;
    top:  auto!important;
  }
