@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

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

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,400i,800,800i");
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 14px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Nunito+Sans", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
}
.row::before, .row::after {
  display: table;
  content: " ";
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.7142857143rem;
  margin-left: -0.7142857143rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -1.0714285714rem;
    margin-left: -1.0714285714rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -1.0714285714rem;
    margin-left: -1.0714285714rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 1.0714285714rem;
  padding-left: 1.0714285714rem;
}

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 1.0714285714rem;
    padding-left: 1.0714285714rem;
  }
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem;
}

.small-centered {
  margin-right: auto;
  margin-left: auto;
}
.small-centered, .small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 1.0714285714rem;
    padding-left: 1.0714285714rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 1.0714285714rem;
    padding-left: 1.0714285714rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
.column-block {
  margin-bottom: 1.4285714286rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 2.1428571429rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito+Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #7b7a7a;
}

h1 {
  font-size: 1.5714285714rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.2857142857rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.2857142857rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.1428571429rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.0714285714rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 1.7142857143rem;
  }
  h2 {
    font-size: 1.2857142857rem;
  }
  h3 {
    font-size: 1.2142857143rem;
  }
  h4 {
    font-size: 1.1428571429rem;
  }
  h5 {
    font-size: 1.0714285714rem;
  }
  h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #007ac2;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #0069a7;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 70rem;
  height: 0;
  margin: 1.4285714286rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #7b7a7a;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.6428571429rem 1.4285714286rem 0 1.3571428571rem;
  border-left: 1px solid #7b7a7a;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #656464;
}

cite {
  display: block;
  font-size: 0.9285714286rem;
  color: #656464;
}
cite:before {
  content: "— ";
}

abbr {
  border-bottom: 1px dotted #000000;
  color: #000000;
  cursor: help;
}

figure {
  margin: 0;
}

code {
  padding: 0.1428571429rem 0.3571428571rem 0.0714285714rem;
  border: 1px solid #7b7a7a;
  background-color: #dbdbdb;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
}

kbd {
  margin: 0;
  padding: 0.1428571429rem 0.2857142857rem 0;
  background-color: #dbdbdb;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #000000;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #656464;
}

.lead {
  font-size: 17.5px;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

.no-bullet {
  margin-left: 0;
  list-style: none;
}

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

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #656464;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.7857142857rem;
  margin: 0 0 1.1428571429rem;
  padding: 0.5714285714rem;
  border: 1px solid #7b7a7a;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1.1428571429rem;
  font-weight: normal;
  color: #000000;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #656464;
  background-color: #ffffff;
  box-shadow: 0 0 5px #7b7a7a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::placeholder,
textarea::placeholder {
  color: #7b7a7a;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #dbdbdb;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1.1428571429rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5714285714rem;
  margin-right: 1.1428571429rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5714285714rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.8;
  color: #000000;
}
label.middle {
  margin: 0 0 1.1428571429rem;
  padding: 0.6428571429rem 0;
}

.help-text {
  margin-top: -0.5714285714rem;
  font-size: 0.9285714286rem;
  font-style: italic;
  color: #000000;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1.1428571429rem;
}
.input-group > :first-child {
  border-radius: 0 0 0 0;
}
.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #7b7a7a;
  background: #dbdbdb;
  color: #000000;
  text-align: center;
  white-space: nowrap;
  width: 1%;
  height: 100%;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  height: 2.8571428571rem;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  height: 2.8571428571rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.1428571429rem;
}

.input-group .input-group-button {
  display: table-cell;
}

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

legend {
  max-width: 100%;
  margin-bottom: 0.5714285714rem;
}

.fieldset {
  margin: 1.2857142857rem 0;
  padding: 1.4285714286rem;
  border: 1px solid #7b7a7a;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.2142857143rem;
  padding: 0 0.2142857143rem;
  background: #ffffff;
}

select {
  height: 2.7857142857rem;
  margin: 0 0 1.1428571429rem;
  padding: 0.5714285714rem;
  appearance: none;
  border: 1px solid #7b7a7a;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1.1428571429rem;
  line-height: normal;
  color: #000000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28101, 100, 100%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.1428571429rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.7142857143rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #656464;
  background-color: #ffffff;
  box-shadow: 0 0 5px #7b7a7a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #dbdbdb;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5714285714rem;
  margin-bottom: 1.1428571429rem;
  font-size: 0.8571428571rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #007ac2;
  color: #ffffff;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #0068a5;
  color: #ffffff;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #007ac2;
  color: #ffffff;
}
.button.primary:hover, .button.primary:focus {
  background-color: #00629b;
  color: #ffffff;
}
.button.secondary {
  background-color: #f09000;
  color: #000000;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #c07300;
  color: #000000;
}
.button.success {
  background-color: #3adb76;
  color: #000000;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #000000;
}
.button.warning {
  background-color: #ffae00;
  color: #000000;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #000000;
}
.button.alert {
  background-color: #cc4b37;
  color: #000000;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #000000;
}
.button.hollow {
  border: 1px solid #007ac2;
  color: #007ac2;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #003d61;
  color: #003d61;
}
.button.hollow.primary {
  border: 1px solid #007ac2;
  color: #007ac2;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #003d61;
  color: #003d61;
}
.button.hollow.secondary {
  border: 1px solid #f09000;
  color: #f09000;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #784800;
  color: #784800;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #007ac2;
  color: #ffffff;
}
.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: #007ac2;
  color: #ffffff;
}
.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #f09000;
  color: #000000;
}
.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #3adb76;
  color: #000000;
}
.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ffae00;
  color: #000000;
}
.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #000000;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after {
  border-top-color: #007ac2;
}
.button.dropdown.hollow.primary::after {
  border-top-color: #007ac2;
}
.button.dropdown.hollow.secondary::after {
  border-top-color: #f09000;
}
.button.dropdown.hollow.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

.accordion {
  margin-left: 0;
  background: #ffffff;
  list-style-type: none;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #dbdbdb;
  border-bottom: 0;
  font-size: 0.8571428571rem;
  line-height: 1;
  color: #007ac2;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #dbdbdb;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #dbdbdb;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #dbdbdb;
  border-bottom: 0;
  background-color: #ffffff;
  color: #000000;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #007ac2 transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #007ac2;
  color: #ffffff;
}
.badge.primary {
  background: #007ac2;
  color: #ffffff;
}
.badge.secondary {
  background: #f09000;
  color: #000000;
}
.badge.success {
  background: #3adb76;
  color: #000000;
}
.badge.warning {
  background: #ffae00;
  color: #000000;
}
.badge.alert {
  background: #cc4b37;
  color: #000000;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.7857142857rem;
  color: #000000;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  top: 1px;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #7b7a7a;
}
.breadcrumbs a {
  color: #007ac2;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #7b7a7a;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:last-child {
  width: 100%;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.3333333333% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
  display: inline-block;
  width: calc(25% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
  display: inline-block;
  width: calc(20% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
  display: inline-block;
  width: calc(16.6666666667% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.primary .button {
  background-color: #007ac2;
  color: #ffffff;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #00629b;
  color: #ffffff;
}
.button-group.secondary .button {
  background-color: #f09000;
  color: #000000;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #c07300;
  color: #000000;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #000000;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #000000;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #000000;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #000000;
}
.button-group.alert .button {
  background-color: #cc4b37;
  color: #000000;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #000000;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  width: 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 39.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  background-color: white;
  color: #000000;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d0edff;
  color: #000000;
}
.callout.secondary {
  background-color: #ffefd7;
  color: #000000;
}
.callout.success {
  background-color: #e1faea;
  color: #000000;
}
.callout.warning {
  background-color: #fff3d9;
  color: #000000;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #000000;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  margin-bottom: 1rem;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #000000;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  padding: 1rem;
  background: #dbdbdb;
}
.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}

.close-button {
  position: absolute;
  color: #656464;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #000000;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  margin: 0;
  list-style-type: none;
}
.menu > li {
  display: table-cell;
  vertical-align: middle;
}
[data-whatinput=mouse] .menu > li {
  outline: 0;
}
.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  vertical-align: middle;
}
.menu > li > a img + span,
.menu > li > a i + span,
.menu > li > a svg + span {
  vertical-align: middle;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  margin-right: 0.25rem;
  display: inline-block;
}
.menu > li, .menu.horizontal > li {
  display: table-cell;
}
.menu.expanded {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.menu.expanded > li:first-child:last-child {
  width: 100%;
}
.menu.vertical > li {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal > li {
    display: table-cell;
  }
  .menu.medium-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.medium-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.medium-vertical > li {
    display: block;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal > li {
    display: table-cell;
  }
  .menu.large-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.large-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.large-vertical > li {
    display: block;
  }
}
.menu.simple li {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}
.menu.simple a {
  padding: 0;
}
.menu.simple li {
  margin-left: 0;
  margin-right: 1rem;
}
.menu.simple.align-right li {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.align-right::before, .menu.align-right::after {
  display: table;
  content: " ";
}
.menu.align-right::after {
  clear: both;
}
.menu.align-right > li {
  float: right;
}
.menu.icon-top > li > a {
  text-align: center;
}
.menu.icon-top > li > a img,
.menu.icon-top > li > a i,
.menu.icon-top > li > a svg {
  display: block;
  margin: 0 auto 0.25rem;
}
.menu.icon-top.vertical a > span {
  margin: auto;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  background: #007ac2;
  color: #ffffff;
}
.menu.menu-bordered li {
  border: 1px solid #dbdbdb;
}
.menu.menu-bordered li:not(:first-child) {
  border-top: 0;
}
.menu.menu-hover li:hover {
  background-color: #dbdbdb;
}

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered {
  text-align: center;
}
.menu-centered > .menu {
  display: inline-block;
  vertical-align: top;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  content: "";
}
.menu-icon:hover::after {
  background: #7b7a7a;
  box-shadow: 0 7px 0 #7b7a7a, 0 14px 0 #7b7a7a;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #000000;
  box-shadow: 0 7px 0 #000000, 0 14px 0 #000000;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #656464;
  box-shadow: 0 7px 0 #656464, 0 14px 0 #656464;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  transition: transform 0.15s linear;
}
.is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}

.drilldown-submenu-cover-previous {
  min-height: 100%;
}

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #007ac2;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #007ac2 transparent transparent;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  border-left-width: 0;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: block;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #7b7a7a;
  border-radius: 0;
  background-color: #ffffff;
  font-size: 1rem;
}
.dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #007ac2 transparent transparent;
  right: 5px;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #007ac2 transparent transparent;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #007ac2;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #007ac2 transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #007ac2 transparent transparent;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #007ac2;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #007ac2 transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #007ac2 transparent transparent;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #007ac2;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #7b7a7a;
  background: #ffffff;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #007ac2 transparent transparent;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #007ac2;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1.1428571429rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #007ac2;
  color: #ffffff;
}
.label.primary {
  background: #007ac2;
  color: #ffffff;
}
.label.secondary {
  background: #f09000;
  color: #000000;
}
.label.success {
  background: #3adb76;
  color: #000000;
}
.label.warning {
  background: #ffae00;
  color: #000000;
}
.label.alert {
  background: #cc4b37;
  color: #000000;
}

.media-object {
  display: block;
  margin-bottom: 1rem;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 39.9375em) {
  .media-object.stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    display: block;
  }
  .media-object.stack-for-small .media-object-section img {
    width: 100%;
  }
}

.media-object-section {
  display: table-cell;
  vertical-align: top;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
.media-object-section.middle {
  vertical-align: middle;
}
.media-object-section.bottom {
  vertical-align: bottom;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #dbdbdb;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-overlap {
  z-index: 10;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #dbdbdb;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 10;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  transform: translateX(-250px);
  overflow-y: auto;
}
.position-left.is-open ~ .off-canvas-content {
  transform: translateX(250px);
}
.position-left.is-transition-push::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  content: " ";
}
.position-left.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-right {
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  transform: translateX(250px);
  overflow-y: auto;
}
.position-right.is-open ~ .off-canvas-content {
  transform: translateX(-250px);
}
.position-right.is-transition-push::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  content: " ";
}
.position-right.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto;
}
.position-top.is-open ~ .off-canvas-content {
  transform: translateY(250px);
}
.position-top.is-transition-push::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  content: " ";
}
.position-top.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto;
}
.position-bottom.is-open ~ .off-canvas-content {
  transform: translateY(-250px);
}
.position-bottom.is-transition-push::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  content: " ";
}
.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.off-canvas-content {
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #ffffff;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #7b7a7a;
}
.orbit-bullets button:hover {
  background-color: #656464;
}
.orbit-bullets button.is-active {
  background-color: #656464;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0714285714rem;
  border-radius: 0;
  font-size: 1rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.2142857143rem 0.7142857143rem;
  border-radius: 0;
  color: #000000;
}
.pagination a:hover,
.pagination button:hover {
  background: #dbdbdb;
}
.pagination .current {
  padding: 0.2142857143rem 0.7142857143rem;
  background: #007ac2;
  color: #ffffff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.2142857143rem 0.7142857143rem;
  color: #7b7a7a;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.2142857143rem 0.7142857143rem;
  content: "…";
  color: #000000;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #7b7a7a;
}
.progress.primary .progress-meter {
  background-color: #007ac2;
}
.progress.secondary .progress-meter {
  background-color: #f09000;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #007ac2;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #dbdbdb;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #7b7a7a;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #007ac2;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #0068a5;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  user-select: none;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(0, 0, 0, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #7b7a7a;
  border-radius: 0;
  background-color: #ffffff;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column, .reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 70rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 70rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 70rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 70rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #7b7a7a;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #ffffff;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #007ac2;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.7142857143rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.8571428571rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1.1428571429rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f2f2f2;
  background-color: #ffffff;
}

caption {
  padding: 0.5714285714rem 0.7142857143rem 0.7142857143rem;
  font-weight: bold;
}

thead {
  background: #f9f9f9;
  color: #000000;
}

tfoot {
  background: #f2f2f2;
  color: #000000;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5714285714rem 0.7142857143rem 0.7142857143rem;
  font-weight: bold;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.5714285714rem 0.7142857143rem 0.7142857143rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f2f2f2;
}

table.unstriped tbody {
  background-color: #ffffff;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f2f2f2;
  background-color: #ffffff;
}

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f4f4f4;
}
table.hover tfoot tr:hover {
  background-color: #ededed;
}
table.hover tbody tr:hover {
  background-color: #fafafa;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ededed;
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #dbdbdb;
  background: #ffffff;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #007ac2;
}
.tabs.primary > li > a {
  color: #ffffff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #0084d2;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.8571428571rem;
  line-height: 1;
  color: #007ac2;
}
.tabs-title > a:hover {
  background: #ffffff;
  color: #0069a7;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #ffffff;
  color: #007ac2;
}

.tabs-content {
  border: 1px solid #dbdbdb;
  border-top: 0;
  background: #ffffff;
  color: #000000;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #dbdbdb;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel[aria-hidden=false] {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #ffffff;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(0, 122, 194, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #000000;
  color: #ffffff;
}
.title-bar::before, .title-bar::after {
  display: table;
  content: " ";
}
.title-bar::after {
  clear: both;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left {
  float: left;
}

.title-bar-right {
  float: right;
  text-align: right;
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #656464;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #000000;
  font-size: 80%;
  color: #ffffff;
}
.tooltip::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #000000;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #000000 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #000000;
  top: 50%;
  bottom: auto;
  left: 100%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #000000 transparent transparent;
  top: 50%;
  right: 100%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

.top-bar {
  padding: 0.5rem;
}
.top-bar::before, .top-bar::after {
  display: table;
  content: " ";
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: #dbdbdb;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: auto;
  }
}
@media screen and (max-width: 63.9375em) {
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 74.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.45rem 1rem 0 1rem;
}
.top-bar-title .menu-icon {
  bottom: 2px;
}

.top-bar-left {
  float: left;
}

.top-bar-right {
  float: right;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

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

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

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
.primary, .fa-primary {
  color: #007ac2;
}

.secondary, .fa-secondary {
  color: #f09000;
}

/*********************
Photos desaturees
*********************/
.desaturate img {
  filter: saturate(0%);
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.desaturate img:hover {
  filter: saturate(100%);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/*********************
LINK STYLES
*********************/
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

input.wpcf7-submit {
  border: none;
  background-color: #f09000;
  color: white;
  padding: 12px 25px 8px;
  border-radius: 20px;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 14px;
  text-transform: uppercase;
}

input.wpcf7-submit:hover {
  background-color: #007ac2;
}

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h2, .h2 {
  text-transform: uppercase;
}

/*********************
Style Ajout TinyMCE netao®
*********************/
.title-width-icon {
  font-size: 18px;
  text-transform: uppercase;
}

/*********************
HEADER STYLES
*********************/
#top_header {
  background-color: #edf0f2;
  padding-top: 7px;
  padding-bottom: 7px;
  min-height: 35px;
  font-size: 1rem;
  vertical-align: middle;
  color: #6e6d6d;
  margin-bottom: 1.5rem;
}
#top_header a {
  color: #6e6d6d;
}
#top_header a:hover {
  color: #f09000;
}
#top_header p {
  margin-bottom: 0;
}
#top_header i.fa {
  font-size: 18px;
  vertical-align: top;
  margin-right: 3px;
}
#top_header #top-header-2 {
  text-align: center;
}
#top_header #top-header-3 {
  text-align: right;
}

.header #logo_header {
  margin-top: 0.75rem;
}
.header #logo_header #logo, .header #logo_header #claim {
  display: inline-block;
  vertical-align: baseline;
}
.header #logo_header #logo {
  font-size: 52px;
  line-height: 1;
  margin-right: 1rem;
  font-weight: 800;
}
.header #logo_header #logo a:hover {
  color: #f09000;
}
.header #logo_header #claim {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}
.header #header_right p {
  font-size: 12px;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 4px;
  text-align: center;
}
.header #header_right p strong {
  color: #f09000;
}
.header #header_right input {
  display: inline-block;
  font-size: 12px;
}
.header #header_right input.tnp-email {
  width: 46%;
  background-color: white;
  border-radius: 1000px 0 0 1000px;
  border: 1px solid #007ac2;
  border-right: 0px;
  padding-left: 12px;
}
.header #header_right input.tnp-email::-moz-placeholder {
  color: black;
}
.header #header_right input.tnp-email::-webkit-input-placeholder {
  color: black;
}
.header #header_right [type=email] {
  height: auto;
  padding: 7px 5px;
  margin-bottom: 0;
}
.header #header_right input.tnp-submit {
  color: white;
  width: 54%;
  min-height: 30px;
  vertical-align: top;
  background-color: #f09000;
  border-radius: 0 1000px 1000px 0;
  border: 1px solid #007ac2;
  border-left: 0px;
  padding: 7px 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.header #header_right input.tnp-submit:hover {
  background-color: #007ac2;
  color: white;
  border: 1px solid #007ac2;
  cursor: pointer;
  cursor: hand;
}

#nav_principale {
  background-color: #007ac2;
  font-weight: 800;
  display: block;
  margin-top: 1.5rem;
}
#nav_principale input::placeholder, #nav_principale textarea::placeholder {
  color: black;
}

/*********************
NAVIGATION STYLES
*********************/
.off-canvas-list ul {
  margin-left: 0;
}
.off-canvas-list ul li a {
  border-bottom: 0px;
}
.off-canvas-list ul .dropdown {
  margin-left: 20px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 2rem 0;
}
#content #inner-content #main .vc_column_container > .vc_column-inner {
  box-sizing: inherit;
}
#content #inner-content #main .vc_row {
  padding-bottom: 2rem;
}
#content #inner-content #main .wpb_content_element {
  margin-bottom: 0;
}
#content #inner-content .archive-grid > .columns,
#content #inner-content .archive-grid > .panel {
  display: flex;
  align-items: stretch;
}
#content #inner-content .archive-grid .bloc_lastnews {
  position: relative;
  border: 1px solid #f09000;
  margin-bottom: 2rem;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#content #inner-content .archive-grid .bloc_lastnews > a {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
#content #inner-content .archive-grid .bloc_lastnews .post-image-bg {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 240px;
}
#content #inner-content .archive-grid .bloc_lastnews .post-image-bg:not(:has(img)) {
  background-color: #f5f5f5;
}
#content #inner-content .archive-grid .bloc_lastnews .post-image-bg img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
}
#content #inner-content .archive-grid .bloc_lastnews .bloc_title {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 10px;
  line-height: 1.2;
  font-size: 15px;
  text-align: left;
  font-weight: bold;
  padding-right: 10px;
}
#content #inner-content .archive-grid .bloc_lastnews .bloc_title span {
  padding: 2px 5px;
  background-color: #f09000;
  color: white;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
#content #inner-content .archive-grid .bloc_lastnews .bloc_btn_ensavoirplus {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
#content #inner-content .archive-grid .bloc_lastnews .bloc_btn_ensavoirplus span.btn_ensavoirplus {
  line-height: 1.2;
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  background: #f09000;
  border-radius: 25px;
  color: white;
  width: 150px;
}

#content .floatright {
  float: right !important;
}

.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.byline {
  color: #999;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

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

.post-password-form input[type=submit] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #007ac2;
  color: #ffffff;
}
[data-whatinput=mouse] .post-password-form input[type=submit] {
  outline: 0;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background-color: #0068a5;
  color: #ffffff;
}

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
HOMEPAGE
*********************/
.home #content #inner-content {
  padding: 2rem 0 0;
}

#content #inner-content #main {
  /* Row_intro */
  /* Big triangle with shadow */
}
#content #inner-content #main #row_slider {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#content #inner-content #main #row_slider #rev_slider_1_1_wrapper #rev_slider_1_1 {
  border: 5px solid #edf0f2;
}
#content #inner-content #main #row_slider #rev_slider_1_1_wrapper .tp-thumbs {
  top: 10px;
}
#content #inner-content #main #row_slider #rev_slider_1_1_wrapper .tp-thumbs .tp-thumb-image {
  border: 3px solid #edf0f2;
}
#content #inner-content #main #row_intro {
  padding-bottom: 0;
}
#content #inner-content #main #row_intro #bloc_intro .wpb_content_element {
  margin-bottom: 0;
}
#content #inner-content #main #row_intro #bloc_intro h1 {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 1rem;
}
#content #inner-content #main #row_intro #bloc_intro h1 strong {
  font-size: 30px;
  color: #007ac2;
}
#content #inner-content #main #row_intro #bloc_intro p {
  padding-right: 2.5rem;
}
#content #inner-content #main #row_intro .product_home, #content #inner-content #main #row_intro .bloc_lastnews_une {
  position: relative;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  border: 1px solid #007ac2;
}
#content #inner-content #main #row_intro .product_home .post-image-bg, #content #inner-content #main #row_intro .bloc_lastnews_une .post-image-bg {
  position: relative;
}
#content #inner-content #main #row_intro .product_home .bloc_title, #content #inner-content #main #row_intro .bloc_lastnews_une .bloc_title {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 15px;
  left: 15px;
  line-height: 1.2;
  font-size: 15px;
  text-align: left;
  font-weight: bold;
}
#content #inner-content #main #row_intro .product_home .bloc_title span, #content #inner-content #main #row_intro .bloc_lastnews_une .bloc_title span {
  padding: 2px 5px;
  color: white;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
#content #inner-content #main #row_intro .product_home #bloc_btn_produit_une, #content #inner-content #main #row_intro .product_home #bloc_btn_ensavoirplus_une, #content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_produit_une, #content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_ensavoirplus_une {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
#content #inner-content #main #row_intro .product_home #bloc_btn_produit_une span#btn_produit_une, #content #inner-content #main #row_intro .product_home #bloc_btn_produit_une span#btn_ensavoirplus_une, #content #inner-content #main #row_intro .product_home #bloc_btn_ensavoirplus_une span#btn_produit_une, #content #inner-content #main #row_intro .product_home #bloc_btn_ensavoirplus_une span#btn_ensavoirplus_une, #content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_produit_une span#btn_produit_une, #content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_produit_une span#btn_ensavoirplus_une, #content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_ensavoirplus_une span#btn_produit_une, #content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_ensavoirplus_une span#btn_ensavoirplus_une {
  line-height: 1.2;
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  border-radius: 25px;
  color: white;
  width: 150px;
}
#content #inner-content #main #row_intro .product_home .bloc_title span {
  background-color: #007ac2;
}
#content #inner-content #main #row_intro .product_home #bloc_btn_produit_une span#btn_produit_une {
  background: #007ac2;
}
#content #inner-content #main #row_intro .bloc_lastnews_une {
  border-color: #f09000;
}
#content #inner-content #main #row_intro .bloc_lastnews_une .bloc_title span {
  background-color: #f09000;
}
#content #inner-content #main #row_intro .bloc_lastnews_une #bloc_btn_ensavoirplus_une span#btn_ensavoirplus_une {
  background: #f09000;
}
#content #inner-content #main #separateur_bigtriangle {
  background-color: #004f91;
}
#content #inner-content #main #separateur_bigtriangle #trianglePath1 {
  fill: white;
  stroke: white;
}
#content #inner-content #main #separateur_bigtriangle #trianglePath2 {
  fill: #007ac2;
  stroke: #007ac2;
}
#content #inner-content #main #row_formulaire.vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}
#content #inner-content #main #row_formulaire {
  color: white;
}
#content #inner-content #main #row_formulaire #title_devis {
  font-size: 23px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: block;
}
#content #inner-content #main #row_formulaire .soustitre_formulaire {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: normal;
  display: block;
}
#content #inner-content #main #row_formulaire .columns {
  padding: 0;
}
#content #inner-content #main #row_formulaire #row_form {
  width: 100%;
  display: inline-block;
  margin-bottom: 1rem;
}
#content #inner-content #main #row_formulaire #demande {
  display: block;
}
#content #inner-content #main #row_formulaire #demande span.wpcf7-list-item {
  display: block;
  margin-bottom: 7px;
  margin-left: 0;
}
#content #inner-content #main #row_formulaire #demande .wpcf7-list-item-label {
  margin-left: 5px;
  padding-top: 2px;
  vertical-align: super;
}
#content #inner-content #main #row_formulaire #demande input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  margin: 0;
}
#content #inner-content #main #row_formulaire #demande input[type=checkbox] {
  border-radius: 2px;
  height: 20px;
  width: 20px;
  background: transparent;
  border: 1px solid white;
}
#content #inner-content #main #row_formulaire #demande input[type=checkbox]:checked {
  background: transparent;
  margin: 0;
  position: relative;
}
#content #inner-content #main #row_formulaire #demande input[type=checkbox]:checked:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: block;
  color: white;
  font-size: 15px;
  position: absolute;
  top: 1px;
  left: 2px;
}
#content #inner-content #main #row_formulaire #habitat {
  display: block;
}
#content #inner-content #main #row_formulaire #habitat span.wpcf7-list-item {
  margin-bottom: 15px;
}
#content #inner-content #main #row_formulaire #habitat .first {
  margin-left: 0;
}
#content #inner-content #main #row_formulaire #habitat input[type=radio] {
  margin: 0 5px 0 0;
}
#content #inner-content #main #row_formulaire #projet {
  display: block;
}
#content #inner-content #main #row_formulaire #projet textarea {
  display: block;
  box-sizing: border-box;
  width: 80%;
  height: 126px;
  margin: 0;
  padding: 5px;
  border: 1px solid white;
  border-radius: 0;
  background-color: #035ba4;
  box-shadow: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: normal;
  color: white;
}
#content #inner-content #main #row_formulaire #projet textarea::-moz-placeholder {
  color: white;
}
#content #inner-content #main #row_formulaire #projet textarea::-webkit-input-placeholder {
  color: white;
}
#content #inner-content #main #row_formulaire #coordonnees {
  display: block;
}
#content #inner-content #main #row_formulaire #coordonnees input[type=text], #content #inner-content #main #row_formulaire #coordonnees input[type=email] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 32px;
  margin: 0 0 15px 0;
  padding: 12px;
  border: 1px solid white;
  border-radius: 0;
  background-color: #035ba4;
  box-shadow: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: normal;
  color: white;
}
#content #inner-content #main #row_formulaire #coordonnees input[type=text]::-moz-placeholder, #content #inner-content #main #row_formulaire #coordonnees input[type=email]::-moz-placeholder {
  color: white;
}
#content #inner-content #main #row_formulaire #coordonnees input[type=text]::-webkit-input-placeholder, #content #inner-content #main #row_formulaire #coordonnees input[type=email]::-moz-placeholder {
  color: white;
}
#content #inner-content #main #row_formulaire #row_bouton_envoi {
  display: block;
}
#content #inner-content #main #row_formulaire #row_bouton_envoi input[type=submit] {
  margin: 0 auto;
  background-color: #f09000;
  color: white;
  padding: 10px 15px;
  text-transform: uppercase;
  border: 0;
  border-radius: 20px;
  text-align: center;
  display: block;
}
#content #inner-content #main #row_formulaire #row_bouton_envoi input[type=submit]:hover {
  background-color: #00bee0;
}
#content #inner-content #main #row_marques {
  padding-bottom: 0;
}
#content #inner-content #main #row_marques .vc_row {
  padding-bottom: 0;
}
#content #inner-content #main #row_marques .title-width-icon {
  margin-bottom: 1rem;
  display: block;
}
#content #inner-content #main #row_marques .title-width-icon i.fa, #content #inner-content #main #row_marques .title-width-icon strong {
  color: #a6a6a6;
}
#content #inner-content #main #row_marques .ult-carousel-wrapper {
  margin-bottom: 1rem;
}
#content #inner-content #main #row_marques .ult-carousel-wrapper .slick-dots li [type=button] {
  -webkit-appearance: none;
}
#content #inner-content #main #row_best_sellers .title-width-icon {
  margin-bottom: 2rem;
  display: block;
}
#content #inner-content #main #row_best_sellers .title-width-icon i.fa, #content #inner-content #main #row_best_sellers .title-width-icon strong {
  color: #007ac2;
}
#content #inner-content #main #row_best_sellers .bloc_bestproduct .post-image {
  border: 1px solid #007ac2;
  margin-bottom: 7px;
}
#content #inner-content #main #row_best_sellers .bloc_bestproduct .bloc_title {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 7px;
  min-height: 40px;
}
#content #inner-content #main #row_best_sellers .bloc_bestproduct .bloc_title a {
  color: black;
}
#content #inner-content #main #row_best_sellers .bloc_bestproduct .bloc_title a:hover {
  color: #007ac2;
}
#content #inner-content #main #row_best_sellers .bloc_bestproduct .price {
  display: block;
  text-align: center;
  color: #f09000;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}
#content #inner-content #main #row_best_sellers .bloc_bestproduct a.btn_jedecouvre {
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  border-radius: 25px;
  color: white;
  width: 150px;
  background-color: #007ac2;
}
#content #inner-content #main #row_last_works .title-width-icon {
  margin-bottom: 2rem;
  display: block;
}
#content #inner-content #main #row_last_works .title-width-icon i.fa, #content #inner-content #main #row_last_works .title-width-icon strong {
  color: #f09000;
}
#content #inner-content #main #row_last_works .bloc_lastnews .post-image {
  border: 1px solid #a6a6a6;
  margin-bottom: 7px;
}
#content #inner-content #main #row_last_works .bloc_lastnews .bloc_title {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 7px;
  min-height: 40px;
}
#content #inner-content #main #row_last_works .bloc_lastnews .bloc_title a {
  color: black;
}
#content #inner-content #main #row_last_works .bloc_lastnews .bloc_title a:hover {
  color: #f09000;
}
#content #inner-content #main #row_last_works .bloc_lastnews a.btn_ensavoirplus {
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  border-radius: 25px;
  color: white;
  width: 150px;
  background-color: #f09000;
}
#content #inner-content #main #row_temoignages {
  padding-bottom: 0;
}
#content #inner-content #main #row_temoignages .title-width-icon {
  margin-bottom: 2rem;
  display: block;
}
#content #inner-content #main #row_temoignages .title-width-icon i.fa, #content #inner-content #main #row_temoignages .title-width-icon strong {
  color: #00bee0;
}
#content #inner-content #main #row_temoignages .single-item-wrapper {
  background-color: white;
}
#content #inner-content #main #row_temoignages .single-item-wrapper h3.author-name {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 800;
}
#content #inner-content #main #row_temoignages .single-item-wrapper h4.author-bio {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0;
}
#content #inner-content #main #row_temoignages .single-item-wrapper .item-content {
  font-size: 14px;
  line-height: 1.3;
  font-style: italic;
  padding-top: 10px;
}

/*********************
PAGE CONTACT
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem;
}

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px;
}

#respond ul {
  margin-left: 0px;
}

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px;
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .vcard {
  margin-left: 50px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  position: absolute;
  left: 10px;
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  float: right;
}
/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
}
.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}

#comment-form-title {
  margin: 0 0 1.1em;
}

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
WOOCOMMERCE
*********************/
/** Breadcrumbs **/
.woocommerce .woocommerce-breadcrumb {
  text-transform: uppercase;
  color: #f09000;
}
.woocommerce .woocommerce-breadcrumb a {
  color: #007ac2;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  color: #f09000;
}

/** Buttons **/
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #f09000;
  color: white;
  border-radius: 20px;
}

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

/** Listing products **/
.woocommerce-products-header .term-description {
  margin-bottom: 2rem;
}
.woocommerce-products-header .term-description h1 strong {
  color: #f09000;
}

body.archive p.woocommerce-result-count, body.archive form.woocommerce-ordering {
  display: none;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  width: 30.75%;
  text-align: center;
  min-height: 350px;
  margin-bottom: 2rem;
}

.woocommerce ul.products li.product a img {
  margin-bottom: 10px;
  border: 1px solid #dbdbdb;
}

.woocommerce ul.products li.product .star-rating {
  height: 15px;
}

.woocommerce ul.products li.product .title_loop {
  min-height: 55px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 5px;
  padding: 0;
  min-height: 35px;
}

.woocommerce ul.products li.product a h3 {
  color: #6e6e6f;
}

.woocommerce .products .star-rating {
  margin: 0.25em auto;
}

.woocommerce .star-rating span {
  color: #fdcb00;
}

.woocommerce ul.products li.product .a_partir {
  font-family: "Nunito+Sans", Helvetica, Arial, sans-serif;
  color: #007ac2;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce ul.products li.product .price {
  font-family: "Nunito+Sans", Helvetica, Arial, sans-serif;
  color: #007ac2;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce ul.products li.product .button {
  margin-top: 0.5rem;
}

.woocommerce ul.products li.product .see_product {
  padding: 7px 10px 5px;
  vertical-align: middle;
  background-color: #7b7a7a;
  font-size: 12px;
  color: white;
  border-radius: 15px;
}

.woocommerce ul.products li.product .see_product:hover {
  background-color: #007ac2;
}

/** Listing category **/
.post-type-archive-product ul.products li.product, .woocommerce-page ul.products li.product {
  min-height: auto;
}

/*** Single Page ***/
body.single-product #content #inner-content {
  padding-bottom: 0;
}

.woocommerce-product-gallery--with-images img {
  border: 1px solid #dbdbdb;
}

.flex-viewport {
  margin-bottom: 1rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 22.6%;
  margin-right: 3.2%;
}

.woocommerce div.product div.images .flex-control-thumbs li:nth-of-type(4n) {
  margin-right: 0;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-review-link {
  color: #777;
}

.woocommerce div.product p.price {
  color: #007ac2;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.woocommerce div.product p.price span.mention_ttc {
  font-weight: normal;
  font-size: 20px;
}

.woocommerce div.product span.a_partir {
  color: #007ac2;
  font-size: 1.2rem;
  font-weight: 700;
}

.woocommerce div.product span.prix_mini {
  color: #007ac2;
  font-size: 1.7rem;
  font-weight: 700;
}

.woocommerce .product_meta {
  display: block;
  margin-bottom: 1rem;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #007ac2;
  font-size: 2rem;
  font-family: "Nunito+Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
}

.woocommerce div.product .stock {
  display: none;
}

.woocommerce div.product button.button {
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 20px;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

.woocommerce div.product .label {
  display: block;
  background-color: white;
  margin-top: 10px;
}

.woocommerce div.product form.cart .variations select {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 10px;
}

.woocommerce div.product form.cart .variations label {
  color: #656464;
  font-weight: 400;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-variation-price {
  margin-bottom: 2rem;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li, .woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  margin-right: 5px;
  border-bottom-color: white;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: #dbdbdb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: #dbdbdb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid white;
}

.woocommerce div.product .woocommerce-tabs .panel {
  border-left: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  padding: 2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: white;
  text-transform: uppercase;
  font-size: 14px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #dbdbdb;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #007ac2;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #007ac2;
}

.woocommerce span.promo {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 5px 10px 2px;
  background-color: #007ac2;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
}

/* related products */
#row_related {
  padding-bottom: 2rem;
  background-color: #edf0f2;
}
#row_related #inner-related section.related .title-width-icon {
  margin-bottom: 2rem;
  display: block;
}
#row_related #inner-related section.related .title-width-icon i.fa, #row_related #inner-related section.related .title-width-icon strong {
  color: #007ac2;
}
#row_related #inner-related section.related ul.products li.product {
  width: 100%;
  margin: inherit;
  min-height: inherit;
}
#row_related #inner-related section.related ul.products li.product img {
  background-color: white;
}
#row_related #inner-related section.related ul.products li.product .a_partir {
  color: #007ac2;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
#row_related #inner-related section.related ul.products li.product .price {
  color: #007ac2;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
#row_related #inner-related section.related ul.products li.first {
  margin-left: 0;
}

/***		.bloc_bestproduct {
			.post-image {border: 1px solid $primary-color; margin-bottom: 7px}
			.bloc_title {font-size:15px; line-height: 1.2; text-align: center;  margin-bottom: 7px; min-height: 40px;
				a {color: black;}
				a:hover {color:$primary-color;}
			}
			.price {display:block; text-align: center; color:$secondary-color;margin-bottom: 5px; font-weight: bold; font-size: 18px;}
			a.btn_jedecouvre {
				font-size: 12px;
				padding: 5px;
				text-transform: uppercase;
				text-align: center;
				font-weight:bold;
				margin: 0 auto;
				display:block;
				border-radius:25px;
				color:white;
				width:150px;
				background-color: $primary-color;
			}
		}

***/
#related_products {
  position: relative;
  margin-top: 3rem;
}
#related_products .owl-theme .owl-controls {
  margin-top: -50px;
}
#related_products .owl-controls {
  position: absolute;
  top: 0;
  right: 0;
}
#related_products .owl-next, #related_products .owl-prev {
  background: white;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  color: #dbdbdb;
  height: 35px;
  margin: 2px !important;
  padding-top: 9px;
  text-align: center;
  width: 35px;
}
#related_products .owl-next:hover, #related_products .owl-prev:hover {
  border: 2px solid #007ac2;
  color: #007ac2;
}

/* related products desactive sur pages listings */
.tax-product_cat #row_related, .post-type-archive-product #row_related {
  display: none;
}

/*** SIDEBAR PAGE PRODUITS ***/
#content #inner-content #main #woocommerce_widget_cart-2 a, #content #inner-content #main #woocommerce_widget_cart-3 a, #content #inner-content #main #woocommerce_widget_cart-4 a, #content #inner-content #main #woocommerce_product_categories-2 a {
  border-bottom: none;
}

#black-studio-tinymce-11, #black-studio-tinymce-15 {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid #dbdbdb;
}
#black-studio-tinymce-11 .widgettitle, #black-studio-tinymce-15 .widgettitle {
  color: #007ac2;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

#menu_category_products {
  background-color: white;
}
#menu_category_products ul {
  list-style: outside none none;
  margin-left: 0;
  margin-bottom: 0;
}
#menu_category_products ul a {
  color: #f09000;
}
#menu_category_products ul a:hover {
  color: #007ac2;
}
#menu_category_products .wpb_category_n_menu_accordion li a {
  font-weight: normal;
  padding: 4px 3px;
  font-size: 13px;
}
#menu_category_products .wpb_category_n_menu_accordion > ul > li > a {
  font-size: 13px;
  line-height: 20px;
  padding: 4px 3px;
  background-color: white;
  color: black !important;
}
#menu_category_products .wpb_category_n_menu_accordion > ul > li > a:hover {
  font-weight: bold;
}
#menu_category_products .wpb_category_n_menu_accordion > ul > li:not(:last-child) > a {
  border-bottom: 1px solid #dbdbdb !important;
}
#menu_category_products .wpb_category_n_menu_accordion ul li .wpb-wmca-cat-count {
  position: relative;
  right: inherit;
  top: inherit;
  font-size: 13px;
  font-weight: normal;
  color: #c0bfbf;
  text-align: left;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  margin-left: 5px;
}
#menu_category_products .wpb_category_n_menu_accordion ul li .wpb-wmca-cat-count::before {
  content: "(";
}
#menu_category_products .wpb_category_n_menu_accordion ul li .wpb-wmca-cat-count::after {
  content: ")";
}
#menu_category_products .wpb_category_n_menu_accordion ul li > a > span.wpb-submenu-indicator {
  font-weight: normal;
  color: #c0bfbf;
}
#menu_category_products .wpb_category_n_menu_accordion li > a:hover > span.wpb-submenu-indicator {
  color: #c0bfbf;
}
#menu_category_products .wpb_category_n_menu_accordion ul > li li {
  margin: 0 !important;
  background: white;
}
#menu_category_products .wpb_category_n_menu_accordion ul > li li a {
  color: #007ac2 !important;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 6px;
}
#menu_category_products .wpb_category_n_menu_accordion > ul > li li:hover > a, #menu_category_products .wpb_category_n_menu_accordion > ul > li li.current-cat > a, #menu_category_products .wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus > a {
  border-left-color: white;
}
#menu_category_products .wpb_category_n_menu_accordion > ul > li li:hover > a, #menu_category_products .wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus > a {
  border-left-color: #007ac2;
}

#woocommerce_widget_cart-2, #woocommerce_widget_cart-3, #woocommerce_widget_cart-4 {
  margin-bottom: 2rem;
  padding: 1rem;
  padding-bottom: 0;
  background-color: white;
  border: 5px solid #dbdbdb;
}
#woocommerce_widget_cart-2 h4, #woocommerce_widget_cart-3 h4, #woocommerce_widget_cart-4 h4 {
  color: #007ac2;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
#woocommerce_widget_cart-2 h4 i.fa, #woocommerce_widget_cart-3 h4 i.fa, #woocommerce_widget_cart-4 h4 i.fa {
  color: #969696;
}
#woocommerce_widget_cart-2 ul li, #woocommerce_widget_cart-3 ul li, #woocommerce_widget_cart-4 ul li {
  line-height: 1.2;
}
#woocommerce_widget_cart-2 ul li a, #woocommerce_widget_cart-3 ul li a, #woocommerce_widget_cart-4 ul li a {
  color: black;
}
#woocommerce_widget_cart-2 p, #woocommerce_widget_cart-3 p, #woocommerce_widget_cart-4 p {
  font-style: normal;
}
#woocommerce_widget_cart-2 a.wc-forward, #woocommerce_widget_cart-3 a.wc-forward, #woocommerce_widget_cart-4 a.wc-forward {
  width: 100%;
  background-color: #007ac2;
  color: white;
}
#woocommerce_widget_cart-2 a.wc-forward:hover, #woocommerce_widget_cart-3 a.wc-forward:hover, #woocommerce_widget_cart-4 a.wc-forward:hover {
  background-color: #005a8f;
}
#woocommerce_widget_cart-2 a.checkout, #woocommerce_widget_cart-3 a.checkout, #woocommerce_widget_cart-4 a.checkout {
  background-color: #656464;
  margin-top: 10px;
  color: white;
}
#woocommerce_widget_cart-2 a.checkout:hover, #woocommerce_widget_cart-3 a.checkout:hover, #woocommerce_widget_cart-4 a.checkout:hover {
  background-color: #4b4b4b;
}
#woocommerce_widget_cart-2 img.attachment-woocommerce_thumbnail, #woocommerce_widget_cart-3 img.attachment-woocommerce_thumbnail, #woocommerce_widget_cart-4 img.attachment-woocommerce_thumbnail {
  background-color: white;
  border: 1px solid #dbdbdb;
}
#woocommerce_widget_cart-2 .woocommerce-mini-cart__total, #woocommerce_widget_cart-3 .woocommerce-mini-cart__total, #woocommerce_widget_cart-4 .woocommerce-mini-cart__total {
  background-color: #f1f2f2;
  padding: 2px 3px;
  margin-top: 3px;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widget {
  margin-bottom: 2rem;
}
.widget ul {
  margin: 0;
}
.widget ul li {
  list-style: none;
}
/*********************
GMAP
*********************/
/*********************
Contact Page
*********************/
/*********************
Contact Page
*********************/
#mentions_rgpd {
  margin-top: 2rem;
  border-top: 1px solid #007ac2;
  padding-top: 1rem;
  font-style: italic;
  color: #007ac2;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 14px;
  color: white;
  background: #007ac2;
  background: -moz-linear-gradient(top, #003267 0%, #007ac2 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #003267 0%, #007ac2 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #003267 0%, #007ac2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#003267", endColorstr="#007ac2",GradientType=0 ); /* IE6-9 */
}
.footer p {
  margin-bottom: 0;
}
.footer .col_icon, .footer .col_texte {
  display: inline-block;
  vertical-align: top;
}
.footer .col_icon {
  font-size: 20px;
  color: #3ca4dc;
  margin-right: 4px;
  line-height: 1;
}
.footer #bloc-footer-1 #logo_footer {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 800;
}
.footer #bloc-footer-2 .textwidget {
  display: block;
  margin-top: 10px;
}
.footer #bloc-footer-2 a {
  color: white;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}
.footer #bloc-footer-2 a:hover {
  color: #f09000;
}
.footer #bloc-footer-3 .textwidget {
  display: block;
  margin-top: 5px;
}

#copyright-footer {
  font-size: 12px;
  background-color: #006cb0;
  color: white;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

#copyright-footer p {
  margin-bottom: 0;
}

#copyright-footer a {
  color: #c0e6fe;
}

#copyright-footer a:hover {
  color: #f09000;
}

/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0;
}

/*********************
MEDIA QUERIES
*********************/
/*
	============================================= IPAD LANDSCAPE ====
*/
/*
	============================================== IPAD PORTRAIT ====
*/
/*
	=========================================== IPHONE LANDSCAPE ====
*/
/*
	============================================ IPHONE PORTRAIT ====
*/
@media handheld, only screen and (max-width: 420px) {
  #top_header #top-header-1 {
    width: 50%;
  }
  #top_header #top-header-2 {
    width: 50%;
    text-align: right;
  }
  #top_header #top-header-3 {
    display: none;
  }
  .header #logo_header #logo, .header #logo_header #claim {
    display: block;
    vertical-align: baseline;
    text-align: center;
  }
  .header #logo_header #logo {
    font-size: 52px;
    line-height: 1;
    margin-right: 1rem;
    font-weight: 800;
  }
  .header #logo_header #claim {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .header #header_right {
    display: none;
  }
  /* Row_intro */
  #row_intro {
    padding-bottom: 0;
  }
  #row_intro #bloc_intro {
    margin-bottom: 2rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  #row_intro #bloc_intro h1 {
    padding-right: 10px;
  }
  #row_intro .product_home, #row_intro .bloc_lastnews_une {
    margin-bottom: 1.5rem !important;
  }
  /* Big triangle with shadow */
  #separateur_bigtriangle {
    display: none;
  }
  #row_formulaire {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #row_formulaire #title_devis {
    font-size: 23px;
  }
  #row_formulaire .soustitre_formulaire {
    font-size: 18px;
  }
  #row_formulaire #demande, #row_formulaire #habitat, #row_formulaire #projet, #row_formulaire #coordonnees {
    margin-bottom: 2rem;
  }
  #row_formulaire #habitat {
    display: block;
  }
  #row_formulaire #habitat span.wpcf7-list-item {
    margin-bottom: 15px;
  }
  #row_formulaire #habitat .first {
    margin-left: 0;
  }
  #row_formulaire #habitat input[type=radio] {
    margin: 0 5px 0 0;
  }
  #row_formulaire #projet textarea {
    width: 100%;
  }
  #row_best_sellers {
    display: none;
  }
  #row_last_works {
    display: none;
  }
  .footer {
    padding-left: 2rem;
  }
  .footer #bloc-footer-1, .footer #bloc-footer-2, .footer #bloc-footer-3 {
    margin-bottom: 1.5rem;
  }
}
/*********************
NOUVEAU CODE — Ne pas modifier ce qui est au-dessus
Fiche produit (layout WooCommerce + onglets) + Popup Intérêt
*********************/
/* Layout fiche produit */
.produit-summary {
  margin-bottom: 2.5rem;
}

.produit-gallery .produit-image img,
.produit-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

/* Galerie produit type WooCommerce (ACF galerie) */
.produit-gallery-slider .produit-gallery-main {
  width: 376px;
  max-width: 100%;
  height: 376px;
  margin-bottom: 0.75rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produit-gallery-slider .produit-gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.produit-gallery-slider .produit-gallery-thumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.produit-gallery-slider .produit-gallery-thumbs-wrapper.has-slider .produit-gallery-thumbs {
  flex: 1;
  min-width: 0;
}
.produit-gallery-slider .produit-gallery-thumbs-nav {
  flex-shrink: 0;
  width: 44px;
  height: 90px;
  border: none;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.produit-gallery-slider .produit-gallery-thumbs-nav:hover {
  color: #007ac2;
}
.produit-gallery-slider .produit-gallery-thumbs-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.produit-gallery-slider .produit-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  /* Slider horizontal quand plus de 4 miniatures */
}
.produit-gallery-slider .produit-gallery-thumbs .produit-gallery-thumb {
  flex: 0 0 calc(25% - 0.375rem);
  max-width: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.produit-gallery-slider .produit-gallery-thumbs .produit-gallery-thumb:hover {
  border-color: #dbdbdb;
}
.produit-gallery-slider .produit-gallery-thumbs .produit-gallery-thumb.is-active {
  border-color: #333;
}
.produit-gallery-slider .produit-gallery-thumbs .produit-gallery-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.produit-gallery-slider .produit-gallery-thumbs.produit-gallery-thumbs-slider {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
.produit-gallery-slider .produit-gallery-thumbs.produit-gallery-thumbs-slider::-webkit-scrollbar {
  height: 6px;
}
.produit-gallery-slider .produit-gallery-thumbs.produit-gallery-thumbs-slider::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}
.produit-gallery-slider .produit-gallery-thumbs.produit-gallery-thumbs-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.produit-gallery-slider .produit-gallery-thumbs.produit-gallery-thumbs-slider .produit-gallery-thumb {
  flex: 0 0 calc((100% - 1rem) / 4);
  min-width: 70px;
  max-width: none;
}

.produit-info .entry-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.produit-info .produit-categories-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 15px;
}
.produit-info .produit-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid #007ac2;
  border-radius: 2rem;
  color: #007ac2;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.produit-info .produit-back-link:hover {
  background-color: #007ac2;
  color: #ffffff;
  border-color: #007ac2;
}
.produit-info .produit-back-link .produit-back-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-0.12em);
}
.produit-info .produit-back-link .produit-back-label {
  white-space: nowrap;
}
.produit-info .produit-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
}
.produit-info .produit-excerpt {
  margin-bottom: 1.5rem;
}

.produit-categorie-badge {
  display: inline-block;
  background-color: #007ac2;
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
}
.produit-categorie-badge:hover {
  color: white;
  opacity: 0.9;
}

/* Grille produits par catégorie (bloc WPBakery) — style moderne */
.tryba-produit-categorie-grid {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #dbdbdb;
  /* Bouton "Découvrir plus" — bordure grise claire, fond blanc, aligné à gauche, flèche droite */
}
.tryba-produit-categorie-grid .tryba-produit-grid-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tryba-produit-categorie-grid .tryba-produit-grid-title {
  margin: 0;
  font-weight: 700;
  color: #000000;
}
.tryba-produit-categorie-grid .tryba-produit-grid-soustitre {
  font-size: 0.9rem;
  color: #656464;
}
.tryba-produit-categorie-grid .tryba-produit-grid-cards {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.tryba-produit-categorie-grid .tryba-produit-grid-cards > .columns {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
  /* Force le respect des colonnes Foundation (ex: large-3 = 4 par ligne) */
  flex: 0 0 auto;
}
.tryba-produit-categorie-grid .tryba-produit-card {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  /* Image carrée 250x250 comme fiche_produit — toute l'image visible */
}
.tryba-produit-categorie-grid .tryba-produit-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}
.tryba-produit-categorie-grid .tryba-produit-card .tryba-produit-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.tryba-produit-categorie-grid .tryba-produit-card .tryba-produit-card-link:hover .tryba-produit-card-cta {
  color: #007ac2;
  text-decoration: underline;
}
.tryba-produit-categorie-grid .tryba-produit-card img.photo {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  background: #e0e0e0;
}
.tryba-produit-categorie-grid .tryba-produit-card .tryba-produit-card-title {
  margin: 1rem 1.25rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: #000000;
}
.tryba-produit-categorie-grid .tryba-produit-card .tryba-produit-card-cta {
  display: inline-block;
  margin: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #007ac2;
  transition: color 0.2s ease;
}
.tryba-produit-categorie-grid .tryba-produit-grid-bouton-wrap {
  text-align: left;
  margin-top: 1.5rem;
}
.tryba-produit-categorie-grid .tryba-produit-grid-bouton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tryba-produit-categorie-grid .tryba-produit-grid-bouton:hover {
  border-color: #007ac2;
  color: #007ac2;
}
.tryba-produit-categorie-grid .tryba-produit-grid-bouton .tryba-produit-grid-bouton-arrow {
  font-size: 0.85em;
}

/* Archive produits — filtre et load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}

.produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-header .page-title {
  margin: 0 0 0.5rem;
}

/* Onglets catégories — style Toutes (actif) / Catégories (inactif) */
.produits-archive-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.produits-tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid #5cc3ff;
  background: #ffffff;
  color: #007ac2;
}
.produits-tab-btn:hover {
  border-color: #007ac2;
  color: #006aa9;
}
.produits-tab-btn.is-active {
  background: #007ac2;
  border-color: #007ac2;
  color: #ffffff;
}
.produits-tab-btn.is-active:hover {
  background: #006aa9;
  border-color: #006aa9;
}

.produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

.produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Archive produits — filtre AJAX + Load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}
.produits-archive-wrapper .produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-header .page-title {
  margin: 0 0 0.5rem;
}
.produits-archive-wrapper .produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.produits-archive-wrapper .produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-archive-wrapper .produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-archive-wrapper .produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.produits-archive-wrapper .produits-load-more-btn .produits-load-more-arrow {
  font-size: 1em;
}

/* Archive produits : filtre + load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}
.produits-archive-wrapper .produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters label {
  margin-right: 0.5rem;
}
.produits-archive-wrapper .produits-archive-filters .produits-filtre-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
}
.produits-archive-wrapper .produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.produits-archive-wrapper .produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-archive-wrapper .produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-archive-wrapper .produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Archive produits : filtre + load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}
.produits-archive-wrapper .produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters label {
  margin-right: 0.5rem;
  font-weight: 600;
}
.produits-archive-wrapper .produits-archive-filters .produits-filtre-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  background: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}
.produits-archive-wrapper .produits-load-more-wrap {
  margin-top: 2rem;
  text-align: center;
}
.produits-archive-wrapper .produits-load-more-wrap .produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-archive-wrapper .produits-load-more-wrap .produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-archive-wrapper .produits-load-more-wrap .produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Archive produits — filtre AJAX + Load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}

.produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-header .page-title {
  margin: 0 0 0.5rem;
}

.produits-archive-filters {
  margin-bottom: 1.5rem;
}
.produits-archive-filters label {
  margin-right: 0.5rem;
  font-weight: 500;
}
.produits-archive-filters .produits-filtre-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #ffffff;
  min-width: 220px;
}

/* Grille produits archive — 4 par ligne, alignée avec le conteneur (pas de décalage) */
.produits-archive-grid.tryba-produit-categorie-grid {
  border-bottom: none;
  padding-bottom: 0;
  /* Cartes de même hauteur : image ratio fixe + cartes étirées */
}
.produits-archive-grid.tryba-produit-categorie-grid .tryba-produit-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid.tryba-produit-categorie-grid .tryba-produit-card .tryba-produit-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produits-archive-grid.tryba-produit-categorie-grid .tryba-produit-card img.photo {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Archives : hauteur égale des cartes + images au même ratio */
.produits-archive-grid .tryba-produit-grid-cards > .columns,
.produits-archive-grid .tryba-produit-grid-cards > .panel {
  flex-direction: column;
  align-items: stretch;
}

.produits-archive-grid .tryba-produit-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produits-archive-grid .tryba-produit-card img.photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Alignement : annuler toute marge négative et éviter le décalage */
.produits-archive-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.produits-archive-grid .archive-grid,
.produits-archive-grid .row.archive-grid,
.produits-archive-grid .tryba-produit-grid-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: -1rem;
}
.produits-archive-grid .archive-grid > .columns,
.produits-archive-grid .archive-grid > .panel,
.produits-archive-grid .row.archive-grid > .columns,
.produits-archive-grid .row.archive-grid > .panel,
.produits-archive-grid .tryba-produit-grid-cards > .columns,
.produits-archive-grid .tryba-produit-grid-cards > .panel {
  display: flex;
  flex: 0 0 25%;
  max-width: 25%;
  min-width: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 1rem;
  margin: 0;
  box-sizing: border-box;
  /* Aligner première colonne de chaque ligne avec le conteneur */
}
.produits-archive-grid .archive-grid > .columns:nth-child(4n+1),
.produits-archive-grid .archive-grid > .panel:nth-child(4n+1),
.produits-archive-grid .row.archive-grid > .columns:nth-child(4n+1),
.produits-archive-grid .row.archive-grid > .panel:nth-child(4n+1),
.produits-archive-grid .tryba-produit-grid-cards > .columns:nth-child(4n+1),
.produits-archive-grid .tryba-produit-grid-cards > .panel:nth-child(4n+1) {
  padding-left: 0;
}
.produits-archive-grid .archive-grid > .columns:nth-child(4n),
.produits-archive-grid .archive-grid > .panel:nth-child(4n),
.produits-archive-grid .row.archive-grid > .columns:nth-child(4n),
.produits-archive-grid .row.archive-grid > .panel:nth-child(4n),
.produits-archive-grid .tryba-produit-grid-cards > .columns:nth-child(4n),
.produits-archive-grid .tryba-produit-grid-cards > .panel:nth-child(4n) {
  padding-right: 0;
}
@media only screen and (max-width: 1024px) {
  .produits-archive-grid .archive-grid > .columns,
  .produits-archive-grid .archive-grid > .panel,
  .produits-archive-grid .row.archive-grid > .columns,
  .produits-archive-grid .row.archive-grid > .panel,
  .produits-archive-grid .tryba-produit-grid-cards > .columns,
  .produits-archive-grid .tryba-produit-grid-cards > .panel {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .produits-archive-grid .archive-grid > .columns,
  .produits-archive-grid .archive-grid > .panel,
  .produits-archive-grid .row.archive-grid > .columns,
  .produits-archive-grid .row.archive-grid > .panel,
  .produits-archive-grid .tryba-produit-grid-cards > .columns,
  .produits-archive-grid .tryba-produit-grid-cards > .panel {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}

/* Cartes produit archive — même hauteur, images au ratio carré */
.produits-archive-grid .tryba-produit-grid-cards > .columns,
.produits-archive-grid .tryba-produit-grid-cards > .panel {
  flex-direction: column;
  align-items: stretch;
}

.produits-archive-grid .tryba-produit-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produits-archive-grid .tryba-produit-card img.photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  flex-shrink: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-title {
  flex-shrink: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-cta {
  margin-top: auto;
  flex-shrink: 0;
}

/* Archive produits — hauteur égale des cartes et images carrées */
.produits-archive-grid .tryba-produit-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produits-archive-grid .tryba-produit-card img.photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  flex-shrink: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-title {
  flex-shrink: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-cta {
  flex-shrink: 0;
  margin-top: auto;
}

/* Cartes produit archive : même hauteur, images en ratio 1:1 */
.produits-archive-grid .tryba-produit-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.produits-archive-grid .tryba-produit-card img.photo {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* Archive produits — hauteur égale des cartes et images carrées */
.produits-archive-grid .tryba-produit-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produits-archive-grid .tryba-produit-card img.photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Archives : hauteur égale des cartes + images en ratio 1:1 */
.produits-archive-grid .tryba-produit-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.produits-archive-grid .tryba-produit-card img.photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  flex-shrink: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-title {
  flex-shrink: 0;
}
.produits-archive-grid .tryba-produit-card .tryba-produit-card-cta {
  margin-top: auto;
  flex-shrink: 0;
}

.produits-archive-grid .produit-archive-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.produits-archive-grid .produit-archive-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.produits-archive-grid .produit-archive-card .produit-archive-card-link {
  display: block;
  text-decoration: none;
}
.produits-archive-grid .produit-archive-card .produit-archive-image,
.produits-archive-grid .produit-archive-card .post-image-bg.produit-archive-image {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.produits-archive-grid .produit-archive-card .produit-archive-image img,
.produits-archive-grid .produit-archive-card .post-image-bg.produit-archive-image img {
  width: 100%;
  height: auto;
  display: block;
}
.produits-archive-grid .produit-archive-card .produit-archive-image .bloc_title,
.produits-archive-grid .produit-archive-card .post-image-bg.produit-archive-image .bloc_title {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  margin: 0;
  font-size: 13px;
}
.produits-archive-grid .produit-archive-card .produit-archive-image .bloc_title span,
.produits-archive-grid .produit-archive-card .post-image-bg.produit-archive-image .bloc_title span {
  padding: 4px 8px;
  background-color: #007ac2;
  color: white;
}
.produits-archive-grid .produit-archive-card .produit-archive-cta,
.produits-archive-grid .produit-archive-card .bloc_btn_ensavoirplus.produit-archive-cta {
  padding: 0.5rem 1rem;
  text-align: center;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.produits-archive-grid .produit-archive-card .produit-archive-cta .btn_ensavoirplus,
.produits-archive-grid .produit-archive-card .bloc_btn_ensavoirplus.produit-archive-cta .btn_ensavoirplus {
  font-size: 11px;
  font-weight: 600;
  color: #007ac2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #007ac2;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.produits-archive-grid .produit-archive-card .produit-archive-cta:hover .btn_ensavoirplus,
.produits-archive-grid .produit-archive-card .bloc_btn_ensavoirplus.produit-archive-cta:hover .btn_ensavoirplus {
  background: #007ac2;
  color: white;
}

.produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

.produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.produits-load-more-btn .produits-load-more-arrow {
  font-size: 0.9em;
}

/* Archive produits : filtre + Load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}
.produits-archive-wrapper .produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters label {
  margin-right: 0.5rem;
  font-weight: 600;
}
.produits-archive-wrapper .produits-archive-filters .produits-filtre-select {
  padding: 0.5rem 1rem;
  min-width: 200px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 1rem;
}
.produits-archive-wrapper .produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.produits-archive-wrapper .produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-archive-wrapper .produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-archive-wrapper .produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.produits-archive-wrapper .produits-load-more-btn .produits-load-more-arrow {
  font-size: 0.9em;
}

/* Archive produits : filtre + Load more */
.produits-archive-wrapper {
  margin-bottom: 2.5rem;
}
.produits-archive-wrapper .produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-header .page-title {
  margin: 0 0 0.5rem;
}
.produits-archive-wrapper .produits-archive-filters {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters label {
  margin-right: 0.5rem;
  font-weight: 600;
}
.produits-archive-wrapper .produits-archive-filters .produits-filtre-select {
  padding: 0.5rem 1rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  min-width: 200px;
}
.produits-archive-wrapper .produits-archive-grid {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-grid .archive-grid {
  margin-left: -1rem;
  margin-right: -1rem;
}
.produits-archive-wrapper .produits-archive-grid .archive-grid > .columns,
.produits-archive-wrapper .produits-archive-grid .archive-grid > .panel {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.produits-archive-wrapper .produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.produits-archive-wrapper .produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-archive-wrapper .produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-archive-wrapper .produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.produits-archive-wrapper .produits-load-more-btn .produits-load-more-arrow {
  font-size: 0.9em;
}

/* Archive produits — filtre AJAX + Load more */
.produits-archive-wrapper {
  margin-bottom: 2rem;
}
.produits-archive-wrapper .produits-archive-header {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-header .page-title {
  margin: 0 0 0.5rem;
}
.produits-archive-wrapper .produits-archive-filters {
  margin-bottom: 1.5rem;
}
.produits-archive-wrapper .produits-archive-filters label {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 600;
}
.produits-archive-wrapper .produits-archive-filters .produits-filtre-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 1rem;
}
.produits-archive-wrapper .produits-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.produits-archive-wrapper .produits-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.produits-archive-wrapper .produits-load-more-btn:hover:not(:disabled) {
  border-color: #007ac2;
  color: #007ac2;
}
.produits-archive-wrapper .produits-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.produits-archive-wrapper .produits-load-more-btn .produits-load-more-arrow {
  font-size: 0.85em;
}

/* Listing fiche produits */
#list_produits {
  margin-bottom: 2rem;
}
#list_produits .column:last-child:not(:first-child),
#list_produits .columns:last-child:not(:first-child) {
  float: left;
}
#list_produits .fiche_produit h3 {
  font-size: 14px;
  color: #007ac2;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: uppercase;
  border-top: 3px solid #007ac2;
  padding-top: 10px;
  text-align: center;
}
#list_produits .fiche_produit .description {
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: justify;
}
#list_produits .fiche_produit .avantages {
  padding: 4px;
  background-color: #fff5e9;
}
#list_produits .fiche_produit .avantages .titre_avantages {
  color: #f09000;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
#list_produits .fiche_produit .avantages ul {
  font-size: 11px;
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 0;
  margin-left: 15px;
}
#list_produits .fiche_produit .avantages ul li {
  margin-bottom: 2px;
}

/* Onglets produit — style moderne, bordure unique alignée */
.produit-tabs-wrapper {
  margin-top: 2rem;
  clear: both;
}

/* Conteneur content : pas de bordure ni padding qui créerait un doublon */
.produit-tabs-content {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.produit-tabs-wrapper .produit-tabs,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  background: transparent;
  list-style: none;
  padding: 0;
}
.produit-tabs-wrapper .produit-tabs::before,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs::before {
  display: none;
}
.produit-tabs-wrapper .produit-tabs li, .produit-tabs-wrapper .produit-tabs .tabs-title,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title {
  margin-right: 8px;
  margin-bottom: -1px;
  border: 1px solid #dbdbdb;
  border-radius: 8px 8px 0 0;
  background: #f5f5f5;
  transition: background 0.2s ease;
}
.produit-tabs-wrapper .produit-tabs li::before, .produit-tabs-wrapper .produit-tabs li::after, .produit-tabs-wrapper .produit-tabs li.is-active::after, .produit-tabs-wrapper .produit-tabs .tabs-title::before, .produit-tabs-wrapper .produit-tabs .tabs-title::after, .produit-tabs-wrapper .produit-tabs .tabs-title.is-active::after,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li::before,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li::after,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li.is-active::after,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title::before,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title::after,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title.is-active::after {
  display: none;
}
.produit-tabs-wrapper .produit-tabs li:not(.is-active), .produit-tabs-wrapper .produit-tabs .tabs-title:not(.is-active),
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li:not(.is-active),
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title:not(.is-active) {
  border-bottom: 1px solid #dbdbdb;
}
.produit-tabs-wrapper .produit-tabs li:not(.is-active):hover, .produit-tabs-wrapper .produit-tabs .tabs-title:not(.is-active):hover,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li:not(.is-active):hover,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title:not(.is-active):hover {
  background: #ebebeb;
}
.produit-tabs-wrapper .produit-tabs li.is-active, .produit-tabs-wrapper .produit-tabs .tabs-title.is-active,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li.is-active,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title.is-active {
  background: white;
  border-bottom: 1px solid white;
  position: relative;
  z-index: 1;
}
.produit-tabs-wrapper .produit-tabs li a, .produit-tabs-wrapper .produit-tabs .tabs-title a,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li a,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title a {
  display: block;
  color: #dbdbdb;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: transparent !important;
  transition: color 0.2s ease;
}
.produit-tabs-wrapper .produit-tabs li a:hover, .produit-tabs-wrapper .produit-tabs .tabs-title a:hover,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li a:hover,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title a:hover {
  color: #f09000;
}
.produit-tabs-wrapper .produit-tabs li.is-active a,
.produit-tabs-wrapper .produit-tabs li a[aria-selected=true], .produit-tabs-wrapper .produit-tabs .tabs-title.is-active a,
.produit-tabs-wrapper .produit-tabs .tabs-title a[aria-selected=true],
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li.is-active a,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs li a[aria-selected=true],
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title.is-active a,
.produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title a[aria-selected=true] {
  color: #f09000 !important;
  font-weight: 700;
}

/* Panneau : une seule bordure gauche/droite/bas, alignée avec les onglets */
.produit-tabs-content .tabs-panel {
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 2rem 2.25rem;
  background: white;
  margin: 0;
}

.produit .produit-tabs-content .tabs-panel[aria-hidden=true] {
  display: none;
}

/* Réalisation(s) liée(s) sous les onglets */
.produit-realisations {
  margin-top: 2.5rem;
  clear: both;
}

.produit-realisations-title {
  margin: 0 0 1.25rem;
}
.produit-realisations-title > :first-child {
  margin-top: 0;
}
.produit-realisations-title > :last-child {
  margin-bottom: 0;
}

.produit-realisations-slider {
  position: relative;
  padding: 0 3.25rem;
}
.produit-realisations-slider:not(.has-nav) {
  padding-left: 0;
  padding-right: 0;
}
.produit-realisations-slider:not(.has-nav) .produit-realisations-nav {
  display: none;
}

.produit-realisations-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  appearance: none;
  color: #f09000;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.produit-realisations-nav .fa {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}
.produit-realisations-nav:hover:not(:disabled), .produit-realisations-nav:focus:not(:disabled) {
  color: #c77800;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  transform: translateY(-50%) scale(1.06);
}
.produit-realisations-nav:disabled {
  opacity: 0.3;
  cursor: default;
}
.produit-realisations-nav.produit-realisations-prev {
  left: 0;
}
.produit-realisations-nav.produit-realisations-next {
  right: 0;
}

.produit-realisations-viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.produit-realisations-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  transition: transform 0.35s ease;
  will-change: transform;
}

.produit-realisations-slider.is-centered .produit-realisations-track {
  justify-content: center;
}

.produit-realisations-slide {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
}
.produit-realisations-slide .bloc_lastnews {
  position: relative;
  border: 1px solid #f09000;
  margin-bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.produit-realisations-slide .bloc_lastnews > a {
  display: flex;
  flex: 1 1 auto;
  color: inherit;
  text-decoration: none;
}
.produit-realisations-slide .bloc_lastnews .post-image-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex: 1 1 auto;
}
.produit-realisations-slide .bloc_lastnews .post-image-bg:not(:has(img)) {
  background-color: #f5f5f5;
}
.produit-realisations-slide .bloc_lastnews .post-image-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.produit-realisations-slide .bloc_lastnews .bloc_title {
  box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  line-height: 1.2;
  font-size: 15px;
  text-align: left;
  font-weight: bold;
  margin: 0;
  max-width: calc(100% - 20px);
}
.produit-realisations-slide .bloc_lastnews .bloc_title span {
  padding: 2px 5px;
  background-color: #f09000;
  color: #ffffff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.produit-realisations-slide .bloc_lastnews .bloc_btn_ensavoirplus {
  box-sizing: border-box;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 0 10px;
}
.produit-realisations-slide .bloc_lastnews .bloc_btn_ensavoirplus span.btn_ensavoirplus {
  line-height: 1.2;
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  background: #f09000;
  border-radius: 25px;
  color: #ffffff;
  width: 150px;
  max-width: 100%;
}

.produit-realisations-bouton-wrap {
  margin-top: 1.5rem;
}

.produit-realisations-bouton {
  margin: 0 auto;
  background-color: #f09000;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.8125rem;
  line-height: 1.3;
  text-transform: uppercase;
  border: 0;
  border-radius: 20px;
  text-align: center;
  display: block;
  width: fit-content;
  max-width: 100%;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.produit-realisations-bouton:hover, .produit-realisations-bouton:focus {
  color: #ffffff;
  opacity: 0.9;
}

@media handheld, only screen and (max-width: 640px) {
  .produit-realisations-slider {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .produit-realisations-nav .fa {
    font-size: 1.45rem;
  }
  .produit-realisation-card {
    padding: 1rem;
  }
}
/* Mobile : onglets produit en accordéon vertical avec + / − */
@media handheld, only screen and (max-width: 768px) {
  .produit-gallery, .produit-info {
    margin-bottom: 1rem;
  }
  /* Galerie produit centrée sur mobile */
  .produit-gallery .produit-gallery-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Centrer la galerie produit (image + miniatures) */
  .produit-gallery .produit-gallery-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  /* Centrer la galerie produit (image + miniatures) */
  .produit-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .produit-gallery-slider {
    width: 100%;
    max-width: 376px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .produit-tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  .produit-tabs-wrapper .produit-tabs,
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs {
    display: contents;
  }
  .produit-tabs-wrapper .produit-tabs-content {
    display: contents;
  }
  /* Réordonner : tab1, panel1, tab2, panel2, tab3, panel3 */
  .produit-tabs-wrapper .produit-tabs li,
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title {
    position: relative;
    order: 1;
    margin-right: 0;
    margin-bottom: -1px;
    border-radius: 0;
    border: 1px solid #dbdbdb;
    width: 100%;
    box-sizing: border-box;
    /* + par défaut (fermé), − quand ouvert */
  }
  .produit-tabs-wrapper .produit-tabs li::after,
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title::after {
    display: inline-block !important;
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: #7b7a7a;
    line-height: 1;
  }
  .produit-tabs-wrapper .produit-tabs li.is-active::after,
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title.is-active::after {
    content: "−";
    color: #f09000;
  }
  .produit-tabs-wrapper .produit-tabs li a,
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title a {
    padding-right: 2.5rem;
  }
  .produit-tabs-wrapper .produit-tabs li:nth-child(1),
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title:nth-child(1) {
    order: 1;
  }
  .produit-tabs-wrapper .produit-tabs-content .tabs-panel:nth-child(1) {
    order: 2;
  }
  .produit-tabs-wrapper .produit-tabs li:nth-child(2),
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title:nth-child(2) {
    order: 3;
  }
  .produit-tabs-wrapper .produit-tabs-content .tabs-panel:nth-child(2) {
    order: 4;
  }
  .produit-tabs-wrapper .produit-tabs li:nth-child(3),
  .produit .produit-tabs-wrapper ul.tabs.produit-tabs .tabs-title:nth-child(3) {
    order: 5;
  }
  .produit-tabs-wrapper .produit-tabs-content .tabs-panel:nth-child(3) {
    order: 6;
  }
  .produit-tabs-wrapper .produit-tabs-content .tabs-panel {
    border-radius: 0;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    border-top: none;
  }
}
/* Popup Intérêt Produit */
.tryba-popup-interet-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.tryba-popup-interet-overlay.tryba-popup-open {
  display: flex;
}

.tryba-popup-interet-content {
  position: relative;
  background: #fff;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.tryba-popup-interet-content .wpcf7-form .hidden,
.tryba-popup-interet-content .wpcf7-form p:has(.hidden) {
  display: none !important;
}

.tryba-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Archive réalisations CPT + catégorie blog — filtres orange */
.realisations-tab-btn,
.realisations-category-tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid #f09000;
  background: #ffffff;
  color: #f09000;
}
.realisations-tab-btn:hover,
.realisations-category-tab-btn:hover {
  border-color: #f09000;
  color: #f09000;
}
.realisations-tab-btn.is-active,
.realisations-category-tab-btn.is-active {
  font-weight: 600;
  background: #f09000;
  border-color: #f09000;
  color: #ffffff;
}
.realisations-tab-btn.is-active:hover,
.realisations-category-tab-btn.is-active:hover {
  background: #d78100;
  border-color: #d78100;
  color: #ffffff;
}

.realisations-archive-page .realisations-archive-header {
  margin-bottom: 1.5rem;
}
.realisations-archive-page .realisations-archive-header .page-title {
  margin: 0 0 0.5rem;
}
.realisations-archive-page .realisations-archive-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.realisations-archive-page #row_news.row.archive-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.realisations-archive-page #row_news.row.archive-grid > .columns {
  float: none !important;
  display: flex;
}

/* Archive catégorie blog Réalisations */
.realisations-category-archive-page .realisations-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.realisations-category-archive-page #row_news.row.archive-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.realisations-category-archive-page #row_news.row.archive-grid > .columns {
  float: none !important;
  display: flex;
}
.realisations-category-archive-page .realisations-category-load-more-wrap {
  text-align: center;
  margin-top: 2rem;
}
.realisations-category-archive-page .realisations-category-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.realisations-category-archive-page .realisations-category-load-more-btn:hover:not(:disabled) {
  border-color: #f09000;
  color: #f09000;
}
.realisations-category-archive-page .realisations-category-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

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

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
