@charset "UTF-8";
/*!
* www.KNACSS.com v7.0.7 (july, 3 2018) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/
*/
/* ----------------------------- */
/* ==Table Of Content            */
/* ----------------------------- */
/*
1- Reboot (basic reset)
2- Libraries  :
  - Base
  - Print
  - Layout (alignment, modules, positionning)
  - Utilities (width and spacers helpers)
  - Responsive helpers
  - WordPress reset (disabled by default)
  - Grillade (Grid System)
3- Components :
  - Media object
  - Skip Links for accessibility
  - Tables
  - Forms
  - Buttons
  - Checkbox
  - Tabs
  - Tags
  - Badges
  - Alerts
*/
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent; }

@-ms-viewport {
  width: device-width; }
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; }

[tabindex="-1"]:focus {
  outline: none !important; }

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

dfn {
  font-style: italic; }

b,
strong {
  font-weight: bold; }

small {
  font-size: 80%; }

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

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:hover {
  color: #0056b3;
  text-decoration: underline; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus {
  outline: 0; }

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

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

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

a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

table {
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

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

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

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

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none !important; }

/* ----------------------------- */
/* ==Base (basic styles)         */
/* ----------------------------- */
/* switching to border-box model for all elements */
html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit;
  /* avoid min-width: auto on flex and grid children */
  min-width: 0;
  min-height: 0; }

html {
  /* set base font-size to equiv "10px", which is adapted to rem unit */
  font-size: 62.5%;
  /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
  font-size: calc(1em * 0.625); }

body {
  margin: 0;
  font-size: 1.4rem;
  background-color: #fff;
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5; }
  @media (min-width: 600px) {
    body {
      font-size: 1.6rem; } }

/* Links */
a {
  color: #333;
  text-decoration: underline; }
  a:focus, a:hover, a:active {
    color: #0d0d0d;
    text-decoration: underline; }

/* Headings */
h1, .h1-like {
  font-size: 2.8rem;
  font-family: sans-serif;
  font-weight: 500; }
  @media (min-width: 600px) {
    h1, .h1-like {
      font-size: 3.2rem; } }

h2, .h2-like {
  font-size: 2.4rem;
  font-family: sans-serif;
  font-weight: 500; }
  @media (min-width: 600px) {
    h2, .h2-like {
      font-size: 2.8rem; } }

h3, .h3-like {
  font-size: 2rem;
  font-weight: 500; }
  @media (min-width: 600px) {
    h3, .h3-like {
      font-size: 2.4rem; } }

h4, .h4-like {
  font-size: 1.8rem;
  font-weight: 500; }
  @media (min-width: 600px) {
    h4, .h4-like {
      font-size: 2rem; } }

h5, .h5-like {
  font-size: 1.6rem;
  font-weight: 500; }
  @media (min-width: 600px) {
    h5, .h5-like {
      font-size: 1.8rem; } }

h6, .h6-like {
  font-size: 1.4rem;
  font-weight: 500; }
  @media (min-width: 600px) {
    h6, .h6-like {
      font-size: 1.6rem; } }

/* Vertical rythm */
h1,
h2,
h3,
h4,
h5,
h6,
dd {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p,
address,
ol,
ul,
dl,
blockquote,
pre {
  margin-top: 0;
  margin-bottom: 1rem; }

/* Avoid margins on nested elements */
li p,
li .p-like,
li ul,
li ol,
ol ol,
ul ul {
  margin-top: 0;
  margin-bottom: 0; }

/* Max values */
img,
table,
td,
blockquote,
code,
pre,
textarea,
input,
video,
svg {
  max-width: 100%; }

img {
  height: auto; }

/* Styling elements */
ul,
ol {
  padding-left: 2em; }

img {
  vertical-align: middle; }

em,
.italic,
address,
cite,
i,
var {
  font-style: italic; }

code,
kbd,
mark {
  border-radius: 2px; }

kbd {
  padding: 0 2px;
  border: 1px solid #999; }

pre {
  tab-size: 2; }

code {
  padding: 2px 4px;
  background: rgba(0, 0, 0, 0.04);
  color: #b11; }

pre code {
  padding: 0;
  background: none;
  color: inherit;
  border-radius: 0; }

mark {
  padding: 2px 4px; }

sup,
sub {
  vertical-align: 0; }

sup {
  bottom: 1ex; }

sub {
  top: 0.5ex; }

blockquote {
  position: relative;
  padding-left: 3em;
  min-height: 2em; }

blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: 0;
  font-family: georgia, serif;
  font-size: 5em;
  height: .4em;
  line-height: .9;
  color: #e7e9ed; }

blockquote > footer {
  margin-top: .75em;
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.7); }
  blockquote > footer::before {
    content: "\2014 \0020"; }

q {
  font-style: normal; }

q,
.q {
  quotes: "“" "”" "‘" "’"; }
  q:lang(fr),
  .q:lang(fr) {
    quotes: "«\00a0" "\00a0»" "“" "”"; }

hr {
  display: block;
  clear: both;
  height: 1px;
  margin: 1em 0 2em;
  padding: 0;
  border: 0;
  color: #ccc;
  background-color: #ccc; }

blockquote,
figure {
  margin-left: 0;
  margin-right: 0; }

code,
pre,
samp,
kbd {
  white-space: pre-wrap;
  font-family: consolas, courier, monospace;
  line-height: normal; }

/* ----------------------------- */
/* ==Print (quick print reset)   */
/* ----------------------------- */
@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  body {
    width: auto;
    margin: auto;
    font-family: serif;
    font-size: 12pt; }

  p,
  .p-like,
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  h4,
  .h4-like,
  h5,
  .h5-like,
  h6,
  .h6-like,
  blockquote,
  label,
  ul,
  ol {
    color: #000;
    margin: auto; }

  .print {
    display: block; }

  .no-print {
    display: none; }

  /* no orphans, no widows */
  p,
  .p-like,
  blockquote {
    orphans: 3;
    widows: 3; }

  /* no breaks inside these elements */
  blockquote,
  ul,
  ol {
    page-break-inside: avoid; }

  /* page break before main headers
  h1,
  .h1-like {
    page-break-before: always;
  }
  */
  /* no breaks after these elements */
  h1,
  .h1-like,
  h2,
  .h2-like,
  h3,
  .h3-like,
  caption {
    page-break-after: avoid; }

  a {
    color: #000; }

  /* displaying URLs
  a[href]::after {
    content: " (" attr(href) ")";
  }
  */
  a[href^="javascript:"]::after,
  a[href^="#"]::after {
    content: ""; } }
/* ----------------------------- */
/* ==Global Micro Layout         */
/* ----------------------------- */
/* Flexbox layout is KNACSS choice
http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
*/
.flex-container, .flex-container--row,
.flex-row, .flex-container--column,
.flex-column, .flex-container--row-reverse,
.flex-row-reverse, .flex-container--column-reverse,
.flex-column-reverse,
.d-flex {
  display: flex;
  flex-wrap: wrap; }

.flex-container--row,
.flex-row {
  flex-direction: row; }

.flex-container--column,
.flex-column {
  flex-direction: column; }

.flex-container--row-reverse,
.flex-row-reverse {
  flex-direction: row-reverse;
  justify-content: flex-end; }

.flex-container--column-reverse,
.flex-column-reverse {
  flex-direction: column-reverse;
  justify-content: flex-end; }

.flex-item-fluid,
.item-fluid {
  flex: 1 1 0%; }

.flex-item-first,
.item-first {
  order: -1; }

.flex-item-medium,
.item-medium {
  order: 0; }

.flex-item-last,
.item-last {
  order: 1; }

.flex-item-center,
.item-center,
.mr-auto {
  margin: auto; }

/* ---------------------------------- */
/* ==Helpers                          */
/* ---------------------------------- */
/* Typo Helpers  */
/* ------------- */
.u-bold {
  font-weight: 700; }

.u-italic {
  font-style: italic; }

.u-normal {
  font-weight: normal;
  font-style: normal; }

.u-uppercase {
  text-transform: uppercase; }

.u-lowercase {
  text-transform: lowercase; }

.u-smaller {
  font-size: 0.6em; }

.u-small {
  font-size: 0.8em; }

.u-big {
  font-size: 1.2em; }

.u-bigger {
  font-size: 1.5em; }

.u-biggest {
  font-size: 2em; }

.u-txt-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto; }

.u-txt-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis; }

/* text and contents alignment */
.txtleft,
.u-txt-left {
  text-align: left; }

.txtright,
.u-txt-right {
  text-align: right; }

.txtcenter,
.u-txt-center {
  text-align: center; }

/* blocks that need to be placed under floats */
.clear,
.u-clear {
  clear: both; }

/* blocks that must contain floats */
.clearfix::after,
.u-clearfix::after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse; }

/* simple blocks alignment */
.left
.u-left {
  margin-right: auto; }

.right,
.u-right {
  margin-left: auto; }

.center,
.u-center {
  margin-left: auto;
  margin-right: auto; }

/* Global Micro Layout */
/* ------------------- */
/* module, gains superpower "BFC" Block Formating Context */
.mod,
.u-mod,
.bfc,
.u-bfc {
  overflow: hidden; }

/* floating elements */
.fl,
.u-fl {
  float: left; }

img.fl,
img.u-fl {
  margin-right: 1rem; }

.fr,
.u-fr {
  float: right; }

img.fr,
img.u-fr {
  margin-left: 1rem; }

img.fl,
img.fr,
img.u-fl,
img.u-fr {
  margin-bottom: 0.5rem; }

/* inline-block */
.inbl,
.u-inbl {
  display: inline-block;
  vertical-align: top; }

/* State Helpers */
/* ------------- */
/* invisible for all */
.is-hidden,
.js-hidden,
[hidden] {
  display: none; }

/* hidden but not for an assistive technology like a screen reader, Yahoo! method */
.visually-hidden, .tabs-content-item[aria-hidden="true"] {
  position: absolute !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; }

.is-disabled,
.js-disabled,
[disabled],
.is-disabled ~ label,
[disabled] ~ label {
  opacity: 0.5;
  cursor: not-allowed !important;
  filter: grayscale(1); }

ul.is-unstyled, ul.unstyled {
  list-style: none;
  padding-left: 0; }

.color--inverse {
  color: #fff; }

/* Width Helpers */
/* ------------- */
/* blocks widths (percentage and pixels) */
.w100 {
  width: 100%; }

.w95 {
  width: 95%; }

.w90 {
  width: 90%; }

.w85 {
  width: 85%; }

.w80 {
  width: 80%; }

.w75 {
  width: 75%; }

.w70 {
  width: 70%; }

.w65 {
  width: 65%; }

.w60 {
  width: 60%; }

.w55 {
  width: 55%; }

.w50 {
  width: 50%; }

.w45 {
  width: 45%; }

.w40 {
  width: 40%; }

.w35 {
  width: 35%; }

.w30 {
  width: 30%; }

.w25 {
  width: 25%; }

.w20 {
  width: 20%; }

.w15 {
  width: 15%; }

.w10 {
  width: 10%; }

.w5 {
  width: 5%; }

.w66 {
  width: calc(100% / 3 * 2); }

.w33 {
  width: calc(100% / 3); }

.wauto {
  width: auto; }

.w960p {
  width: 960px; }

.mw960p {
  max-width: 960px; }

.w1140p {
  width: 1140px; }

.mw1140p {
  max-width: 1140px; }

.w1000p {
  width: 1000px; }

.w950p {
  width: 950px; }

.w900p {
  width: 900px; }

.w850p {
  width: 850px; }

.w800p {
  width: 800px; }

.w750p {
  width: 750px; }

.w700p {
  width: 700px; }

.w650p {
  width: 650px; }

.w600p {
  width: 600px; }

.w550p {
  width: 550px; }

.w500p {
  width: 500px; }

.w450p {
  width: 450px; }

.w400p {
  width: 400px; }

.w350p {
  width: 350px; }

.w300p {
  width: 300px; }

.w250p {
  width: 250px; }

.w200p {
  width: 200px; }

.w150p {
  width: 150px; }

.w100p {
  width: 100px; }

.w50p {
  width: 50px; }

/* Spacing Helpers */
/* --------------- */
.man,
.ma0 {
  margin: 0; }

.pan,
.pa0 {
  padding: 0; }

.mas {
  margin: 1rem; }

.mam {
  margin: 2rem; }

.mal {
  margin: 4rem; }

.pas {
  padding: 1rem; }

.pam {
  padding: 2rem; }

.pal {
  padding: 4rem; }

.mtn,
.mt0 {
  margin-top: 0; }

.mts {
  margin-top: 1rem; }

.mtm {
  margin-top: 2rem; }

.mtl {
  margin-top: 4rem; }

.mrn,
.mr0 {
  margin-right: 0; }

.mrs {
  margin-right: 1rem; }

.mrm {
  margin-right: 2rem; }

.mrl {
  margin-right: 4rem; }

.mbn,
.mb0 {
  margin-bottom: 0; }

.mbs {
  margin-bottom: 1rem; }

.mbm {
  margin-bottom: 2rem; }

.mbl {
  margin-bottom: 4rem; }

.mln,
.ml0 {
  margin-left: 0; }

.mls {
  margin-left: 1rem; }

.mlm {
  margin-left: 2rem; }

.mll {
  margin-left: 4rem; }

.mauto {
  margin: auto; }

.mtauto {
  margin-top: auto; }

.mrauto {
  margin-right: auto; }

.mbauto {
  margin-bottom: auto; }

.mlauto {
  margin-left: auto; }

.ptn,
.pt0 {
  padding-top: 0; }

.pts {
  padding-top: 1rem; }

.ptm {
  padding-top: 2rem; }

.ptl {
  padding-top: 4rem; }

.prn,
.pr0 {
  padding-right: 0; }

.prs {
  padding-right: 1rem; }

.prm {
  padding-right: 2rem; }

.prl {
  padding-right: 4rem; }

.pbn,
.pb0 {
  padding-bottom: 0; }

.pbs {
  padding-bottom: 1rem; }

.pbm {
  padding-bottom: 2rem; }

.pbl {
  padding-bottom: 4rem; }

.pln,
.pl0 {
  padding-left: 0; }

.pls {
  padding-left: 1rem; }

.plm {
  padding-left: 2rem; }

.pll {
  padding-left: 4rem; }

/* -------------------------- */
/* ==Responsive helpers       */
/* -------------------------- */
/* large screens */
/* ------------- */
@media (min-width: 1260px) {
  /* layouts for large screens */
  .large-hidden {
    display: none !important; }

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

  .large-no-float {
    float: none; }

  .large-inbl {
    display: inline-block;
    float: none;
    vertical-align: top; }

  /* widths for large screens */
  .large-w25 {
    width: 25% !important; }

  .large-w33 {
    width: 33.333333% !important; }

  .large-w50 {
    width: 50% !important; }

  .large-w66 {
    width: 66.666666% !important; }

  .large-w75 {
    width: 75% !important; }

  .large-w100,
  .large-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0; }

  /* margins for large screens */
  .large-man,
  .large-ma0 {
    margin: 0 !important; } }
/* medium screens */
/* -------------- */
@media (min-width: 960px) and (max-width: 1259px) {
  /* layouts for medium screens */
  .medium-hidden {
    display: none !important; }

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

  .medium-no-float {
    float: none; }

  .medium-inbl {
    display: inline-block;
    float: none;
    vertical-align: top; }

  /* widths for medium screens */
  .medium-w25 {
    width: 25% !important; }

  .medium-w33 {
    width: 33.333333% !important; }

  .medium-w50 {
    width: 50% !important; }

  .medium-w66 {
    width: 66.666666% !important; }

  .medium-w75 {
    width: 75% !important; }

  .medium-w100,
  .medium-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0; }

  /* margins for medium screens */
  .medium-man,
  .medium-ma0 {
    margin: 0 !important; } }
/* small screens */
/* ------------- */
@media (min-width: 600px) and (max-width: 959px) {
  /* layouts for small screens */
  .small-hidden {
    display: none !important; }

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

  .small-no-float {
    float: none; }

  .small-inbl {
    display: inline-block;
    float: none;
    vertical-align: top; }

  /* widths for small screens */
  .small-w25 {
    width: 25% !important; }

  .small-w33 {
    width: 33.333333% !important; }

  .small-w50 {
    width: 50% !important; }

  .small-w66 {
    width: 66.666666% !important; }

  .small-w75 {
    width: 75% !important; }

  .small-w100,
  .small-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0; }

  /* margins for small screens */
  .small-man,
  .small-ma0 {
    margin: 0 !important; }

  .small-pan,
  .small-pa0 {
    padding: 0 !important; } }
/* tiny screens */
/* ------------ */
@media (max-width: 599px) {
  /* quick small resolution reset */
  .mod,
  .col,
  fieldset {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0; }

  .flex-container, .flex-container--row,
  .flex-row, .flex-container--column,
  .flex-column, .flex-container--row-reverse,
  .flex-row-reverse, .flex-container--column-reverse,
  .flex-column-reverse {
    flex-direction: column; }

  /* layouts for tiny screens */
  .tiny-hidden {
    display: none !important; }

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

  .tiny-no-float {
    float: none; }

  .tiny-inbl {
    display: inline-block;
    float: none;
    vertical-align: top; }

  /* widths for tiny screens */
  .tiny-w25 {
    width: 25% !important; }

  .tiny-w33 {
    width: 33.333333% !important; }

  .tiny-w50 {
    width: 50% !important; }

  .tiny-w66 {
    width: 66.666666% !important; }

  .tiny-w75 {
    width: 75% !important; }

  .tiny-w100,
  .tiny-wauto {
    display: block !important;
    float: none !important;
    clear: none !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0; }

  /* margins for tiny screens */
  .tiny-man,
  .tiny-ma0 {
    margin: 0 !important; }

  .tiny-pan,
  .tiny-pa0 {
    padding: 0 !important; } }
/* ----------------------------- */
/* ==WordPress reset             */
/* ----------------------------- */
/*
Author: Geoffrey Crofte, Alsacréations
Contributors: Automattic, Geoffrey Crofte
Description: Reset styles for WordPress usage of KNACSS
*/
.comment-navigation,
.paging-navigation,
.post-navigation {
  overflow: hidden;
  margin: 0 0 1.5em; }
  .comment-navigation .nav-previous,
  .paging-navigation .nav-previous,
  .post-navigation .nav-previous {
    float: left;
    width: 50%; }
  .comment-navigation .nav-next,
  .paging-navigation .nav-next,
  .post-navigation .nav-next {
    float: right;
    width: 50%;
    text-align: right; }

.alignnone {
  margin: .25em 1.5em 1.5em 0; }

.aligncenter {
  clear: both;
  display: block;
  margin: 1.5em auto; }

.alignleft {
  float: left;
  margin: 0 1.5em .25em 0; }

.alignright {
  float: right;
  margin: 0 0 .25em 1.5em; }

.entry-content,
.comment-content {
  clear: both; }
  .entry-content::after, .entry-content::before,
  .comment-content::after,
  .comment-content::before {
    content: "";
    display: table; }

.widget + .widget {
  margin: 1.5em 0 0; }

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

/* === 5.1 Posts - post_class === */
/* === 5.2 Pages - body_class === */
/* === 5.3 Posts and Pages - Contents === */
.hentry {
  margin: 0 0 1.5em; }

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

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

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

img.wp-smiley {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  border: none; }

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

.wp-caption img {
  display: block;
  margin: 0 auto; }

.wp-caption-text {
  margin: 1em 0;
  text-align: center; }

.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  width: 100%;
  text-align: center;
  vertical-align: top; }
  .gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
  .gallery-columns-4 .gallery-item {
    max-width: 25%; }
  .gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%; }

.gallery-caption {
  display: block; }

/* ---------------------------------- */
/* ==Grillade v6                      */
/* ---------------------------------- */
/* IMPORTANT : this is the KNACSS v6 old Grid System based on Flexbox */
/* You only need it for projects on older browsers (IE11-) */
@media (min-width: 600px) {
  [class*=" grid-"],
  [class^="grid-"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    [class*=" grid-"] > *,
    [class^="grid-"] > * {
      box-sizing: border-box;
      min-width: 0;
      min-height: 0; } }
@media (min-width: 600px) {
  .grid,
  .grid--reverse {
    display: flex; }
    .grid > *,
    .grid--reverse > * {
      flex: 1 1 0%;
      box-sizing: border-box;
      min-width: 0;
      min-height: 0; }
    .grid.has-gutter > * + *,
    .grid--reverse.has-gutter > * + * {
      margin-left: calc(1rem - 0.01px); }
    .grid.has-gutter-l > * + *,
    .grid--reverse.has-gutter-l > * + * {
      margin-left: calc(2rem - 0.01px); }
    .grid.has-gutter-xl > * + *,
    .grid--reverse.has-gutter-xl > * + * {
      margin-left: calc(4rem - 0.01px); } }
@media (min-width: 600px) {
  [class*="grid-2"] > * {
    width: calc(100% / 2 - 0.01px); }
  [class*="grid-2"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-2"].has-gutter > * {
      width: calc(100% / 2 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-2"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-2"].has-gutter-l > * {
      width: calc(100% / 2 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-2"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-2"].has-gutter-xl > * {
      width: calc(100% / 2 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-3"] > * {
    width: calc(100% / 3 - 0.01px); }
  [class*="grid-3"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-3"].has-gutter > * {
      width: calc(100% / 3 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-3"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-3"].has-gutter-l > * {
      width: calc(100% / 3 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-3"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-3"].has-gutter-xl > * {
      width: calc(100% / 3 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-4"] > * {
    width: calc(100% / 4 - 0.01px); }
  [class*="grid-4"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-4"].has-gutter > * {
      width: calc(100% / 4 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-4"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-4"].has-gutter-l > * {
      width: calc(100% / 4 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-4"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-4"].has-gutter-xl > * {
      width: calc(100% / 4 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-5"] > * {
    width: calc(100% / 5 - 0.01px); }
  [class*="grid-5"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-5"].has-gutter > * {
      width: calc(100% / 5 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-5"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-5"].has-gutter-l > * {
      width: calc(100% / 5 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-5"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-5"].has-gutter-xl > * {
      width: calc(100% / 5 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-6"] > * {
    width: calc(100% / 6 - 0.01px); }
  [class*="grid-6"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-6"].has-gutter > * {
      width: calc(100% / 6 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-6"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-6"].has-gutter-l > * {
      width: calc(100% / 6 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-6"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-6"].has-gutter-xl > * {
      width: calc(100% / 6 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-7"] > * {
    width: calc(100% / 7 - 0.01px); }
  [class*="grid-7"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-7"].has-gutter > * {
      width: calc(100% / 7 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-7"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-7"].has-gutter-l > * {
      width: calc(100% / 7 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-7"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-7"].has-gutter-xl > * {
      width: calc(100% / 7 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-8"] > * {
    width: calc(100% / 8 - 0.01px); }
  [class*="grid-8"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-8"].has-gutter > * {
      width: calc(100% / 8 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-8"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-8"].has-gutter-l > * {
      width: calc(100% / 8 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-8"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-8"].has-gutter-xl > * {
      width: calc(100% / 8 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-9"] > * {
    width: calc(100% / 9 - 0.01px); }
  [class*="grid-9"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-9"].has-gutter > * {
      width: calc(100% / 9 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-9"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-9"].has-gutter-l > * {
      width: calc(100% / 9 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-9"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-9"].has-gutter-xl > * {
      width: calc(100% / 9 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-10"] > * {
    width: calc(100% / 10 - 0.01px); }
  [class*="grid-10"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-10"].has-gutter > * {
      width: calc(100% / 10 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-10"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-10"].has-gutter-l > * {
      width: calc(100% / 10 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-10"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-10"].has-gutter-xl > * {
      width: calc(100% / 10 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-11"] > * {
    width: calc(100% / 11 - 0.01px); }
  [class*="grid-11"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-11"].has-gutter > * {
      width: calc(100% / 11 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-11"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-11"].has-gutter-l > * {
      width: calc(100% / 11 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-11"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-11"].has-gutter-xl > * {
      width: calc(100% / 11 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; }

  [class*="grid-12"] > * {
    width: calc(100% / 12 - 0.01px); }
  [class*="grid-12"].has-gutter {
    margin-right: -0.5rem;
    margin-left: -0.5rem; }
    [class*="grid-12"].has-gutter > * {
      width: calc(100% / 12 - 1rem - 0.01px);
      margin-right: 0.5rem;
      margin-left: 0.5rem; }
  [class*="grid-12"].has-gutter-l {
    margin-right: -1rem;
    margin-left: -1rem; }
    [class*="grid-12"].has-gutter-l > * {
      width: calc(100% / 12 - 2rem - 0.01px);
      margin-right: 1rem;
      margin-left: 1rem; }
  [class*="grid-12"].has-gutter-xl {
    margin-right: -2rem;
    margin-left: -2rem; }
    [class*="grid-12"].has-gutter-xl > * {
      width: calc(100% / 12 - 4rem - 0.01px);
      margin-right: 2rem;
      margin-left: 2rem; } }
.push {
  margin-left: auto !important; }

.pull {
  margin-right: auto !important; }

.item-first {
  order: -1; }

.item-last {
  order: 1; }

[class*="grid-"][class*="--reverse"] {
  flex-direction: row-reverse; }

@media (min-width: 600px) {
  .full {
    flex: 0 0 auto;
    width: calc(100% / 1 - 0.01px); }

  .has-gutter > .full {
    width: calc(100% / 1 - 1rem - 0.01px); }

  .has-gutter-l > .full {
    width: calc(100% / 1 - 2rem - 0.01px); }

  .has-gutter-xl > .full {
    width: calc(100% / 1 - 4rem - 0.01px); }

  .one-half {
    flex: 0 0 auto;
    width: calc(100% / 2 - 0.01px); }

  .has-gutter > .one-half {
    width: calc(100% / 2 - 1rem - 0.01px); }

  .has-gutter-l > .one-half {
    width: calc(100% / 2 - 2rem - 0.01px); }

  .has-gutter-xl > .one-half {
    width: calc(100% / 2 - 4rem - 0.01px); }

  .one-third {
    flex: 0 0 auto;
    width: calc(100% / 3 - 0.01px); }

  .has-gutter > .one-third {
    width: calc(100% / 3 - 1rem - 0.01px); }

  .has-gutter-l > .one-third {
    width: calc(100% / 3 - 2rem - 0.01px); }

  .has-gutter-xl > .one-third {
    width: calc(100% / 3 - 4rem - 0.01px); }

  .one-quarter {
    flex: 0 0 auto;
    width: calc(100% / 4 - 0.01px); }

  .has-gutter > .one-quarter {
    width: calc(100% / 4 - 1rem - 0.01px); }

  .has-gutter-l > .one-quarter {
    width: calc(100% / 4 - 2rem - 0.01px); }

  .has-gutter-xl > .one-quarter {
    width: calc(100% / 4 - 4rem - 0.01px); }

  .one-fifth {
    flex: 0 0 auto;
    width: calc(100% / 5 - 0.01px); }

  .has-gutter > .one-fifth {
    width: calc(100% / 5 - 1rem - 0.01px); }

  .has-gutter-l > .one-fifth {
    width: calc(100% / 5 - 2rem - 0.01px); }

  .has-gutter-xl > .one-fifth {
    width: calc(100% / 5 - 4rem - 0.01px); }

  .one-sixth {
    flex: 0 0 auto;
    width: calc(100% / 6 - 0.01px); }

  .has-gutter > .one-sixth {
    width: calc(100% / 6 - 1rem - 0.01px); }

  .has-gutter-l > .one-sixth {
    width: calc(100% / 6 - 2rem - 0.01px); }

  .has-gutter-xl > .one-sixth {
    width: calc(100% / 6 - 4rem - 0.01px); }

  .two-thirds {
    flex: 0 0 auto;
    width: calc(100% / 3 * 2 - 0.01px); }

  .has-gutter > .two-thirds {
    width: calc(100% / 3 * 2 - 1rem - 0.01px); }

  .has-gutter-l > .two-thirds {
    width: calc(100% / 3 * 2 - 2rem - 0.01px); }

  .has-gutter-xl > .two-thirds {
    width: calc(100% / 3 * 2 - 4rem - 0.01px); }

  .three-quarters {
    flex: 0 0 auto;
    width: calc(100% / 4 * 3 - 0.01px); }

  .has-gutter > .three-quarters {
    width: calc(100% / 4 * 3 - 1rem - 0.01px); }

  .has-gutter-l > .three-quarters {
    width: calc(100% / 4 * 3 - 2rem - 0.01px); }

  .has-gutter-xl > .three-quarters {
    width: calc(100% / 4 * 3 - 4rem - 0.01px); }

  .five-sixths {
    flex: 0 0 auto;
    width: calc(100% / 6 * 5 - 0.01px); }

  .has-gutter > .five-sixths {
    width: calc(100% / 6 * 5 - 1rem - 0.01px); }

  .has-gutter-l > .five-sixths {
    width: calc(100% / 6 * 5 - 2rem - 0.01px); }

  .has-gutter-xl > .five-sixths {
    width: calc(100% / 6 * 5 - 4rem - 0.01px); } }
/* Responsive Small Breakpoint */
@media (min-width: 600px) and (max-width: 959px) {
  [class*="-small-1"] > * {
    width: calc(100% / 1 - 0.01px); }
  [class*="-small-1"].has-gutter > * {
    width: calc(100% / 1 - 1rem - 0.01px); }
  [class*="-small-1"].has-gutter-l > * {
    width: calc(100% / 1 - 2rem - 0.01px); }
  [class*="-small-1"].has-gutter-xl > * {
    width: calc(100% / 1 - 4rem - 0.01px); }

  [class*="-small-2"] > * {
    width: calc(100% / 2 - 0.01px); }
  [class*="-small-2"].has-gutter > * {
    width: calc(100% / 2 - 1rem - 0.01px); }
  [class*="-small-2"].has-gutter-l > * {
    width: calc(100% / 2 - 2rem - 0.01px); }
  [class*="-small-2"].has-gutter-xl > * {
    width: calc(100% / 2 - 4rem - 0.01px); }

  [class*="-small-3"] > * {
    width: calc(100% / 3 - 0.01px); }
  [class*="-small-3"].has-gutter > * {
    width: calc(100% / 3 - 1rem - 0.01px); }
  [class*="-small-3"].has-gutter-l > * {
    width: calc(100% / 3 - 2rem - 0.01px); }
  [class*="-small-3"].has-gutter-xl > * {
    width: calc(100% / 3 - 4rem - 0.01px); }

  [class*="-small-4"] > * {
    width: calc(100% / 4 - 0.01px); }
  [class*="-small-4"].has-gutter > * {
    width: calc(100% / 4 - 1rem - 0.01px); }
  [class*="-small-4"].has-gutter-l > * {
    width: calc(100% / 4 - 2rem - 0.01px); }
  [class*="-small-4"].has-gutter-xl > * {
    width: calc(100% / 4 - 4rem - 0.01px); } }
/* ----------------------------- */
/* ==Media object                */
/* ----------------------------- */
/* recommended HTML : <div class="media"><img class="media-figure"><div class="media-content"></div></div> */
/* see http://codepen.io/raphaelgoetter/pen/KMWWwj */
@media (min-width: 320px) {
  .media {
    display: flex;
    align-items: flex-start; }
    .media-content {
      flex: 1 1 0%; }
    .media-figure--center {
      align-self: center; }
    .media--reverse {
      flex-direction: row-reverse; } }
/* ----------------------------- */
/* ==skip links                  */
/* ----------------------------- */
/* see https://www.alsacreations.com/article/lire/572-Les-liens-d-evitement.html */
/* styling skip links */
.skip-links {
  position: absolute; }
  .skip-links a {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0.5em;
    background: black;
    color: white;
    text-decoration: none; }
    .skip-links a:focus {
      position: static;
      overflow: visible;
      clip: auto; }

/* ----------------------------- */
/* ==Tables                      */
/* ----------------------------- */
table,
.table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: top;
  margin-bottom: 2rem; }

.table {
  display: table;
  border: 1px solid #acb3c2;
  background: transparent; }
  .table--zebra tbody tr:nth-child(odd) {
    background: #e7e9ed; }
  .table caption {
    caption-side: bottom;
    padding: 1rem;
    color: #333;
    font-style: italic;
    text-align: right; }
  .table td, .table th {
    padding: 0.3rem 0.6rem;
    min-width: 2rem;
    vertical-align: top;
    border: 1px #acb3c2 dotted;
    text-align: left;
    cursor: default; }
  .table thead {
    color: #212529;
    background: transparent; }

.table--auto {
  table-layout: auto; }

/* ----------------------------- */
/* ==Forms                       */
/* ----------------------------- */
/* thanks to HTML5boilerplate and https://shoelace.style/ */
/* forms items */
form,
fieldset {
  border: none; }

fieldset {
  padding: 2rem; }
  fieldset legend {
    padding: 0 0.5rem;
    border: 0;
    white-space: normal; }

label {
  display: inline-block;
  cursor: pointer; }

[type="color"],
[type="date"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  border: 0;
  box-shadow: 0 0 0 1px #333 inset;
  color: #212529;
  vertical-align: middle;
  padding: 0.5rem 1rem;
  margin: 0;
  transition: 0.25s;
  transition-property: box-shadow, background-color, color, border;
  appearance: none; }

[type="submit"] {
  background-color: #333;
  color: #fff;
  cursor: pointer; }

input[readonly] {
  background-color: #e7e9ed; }

select {
  padding-right: 2rem;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20style%3D%22isolation%3Aisolate%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22%20M%209.96%2011.966%20L%203.523%205.589%20C%202.464%204.627%200.495%206.842%201.505%207.771%20L%201.505%207.771%20L%208.494%2014.763%20C%209.138%2015.35%2010.655%2015.369%2011.29%2014.763%20L%2011.29%2014.763%20L%2018.49%207.771%20C%2019.557%206.752%2017.364%204.68%2016.262%205.725%20L%2016.262%205.725%20L%209.96%2011.966%20Z%20%22%20fill%3D%22inherit%22/%3E%3C/svg%3E");
  background-position: right .6rem center;
  background-repeat: no-repeat;
  background-size: 1.2rem; }

/* hiding IE11 arrow */
select::-ms-expand {
  display: none; }

textarea {
  min-height: 5em;
  vertical-align: top;
  resize: vertical;
  white-space: normal; }

/* 'x' appears on right of search input when text is entered. This removes it */
[type="search"]::-webkit-search-decoration, [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-results-button, [type="search"]::-webkit-search-results-decoration {
  display: none; }

::-webkit-input-placeholder {
  color: #777; }

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #777; }

input::placeholder,
textarea::placeholder {
  color: #777; }

progress {
  width: 100%;
  vertical-align: middle; }

/* ----------------------------- */
/* ==Buttons                     */
/* ----------------------------- */
/* preferably use <button> for buttons !*/
/* use .btn-- or .button-- classes for variants */
.btn,
.button,
[type="button"],
button, .btn--primary,
.button--primary, .btn--success,
.button--success, .btn--info,
.button--info, .btn--warning,
.button--warning, .btn--danger,
.button--danger, .btn--inverse,
.button--inverse, .btn--ghost,
.button--ghost {
  display: inline-block;
  padding: 1rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: 0.25s;
  transition-property: box-shadow, background-color, color, border;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  color: #212529;
  border: none;
  border-radius: 0;
  background-color: #e7e9ed;
  font-family: inherit;
  font-size: inherit;
  line-height: 1; }

.btn:focus,
.button:focus,
[type="button"]:focus,
button:focus {
  -webkit-tap-highlight-color: transparent; }

.btn--primary,
.button--primary {
  background-color: #0275D8;
  color: #fff;
  box-shadow: none; }
  .btn--primary:active, .btn--primary:focus, .btn--primary:hover,
  .button--primary:active,
  .button--primary:focus,
  .button--primary:hover {
    background-color: #025aa5; }
.btn--success,
.button--success {
  background-color: #5CB85C;
  color: #fff;
  box-shadow: none; }
  .btn--success:active, .btn--success:focus, .btn--success:hover,
  .button--success:active,
  .button--success:focus,
  .button--success:hover {
    background-color: #449d44; }
.btn--info,
.button--info {
  background-color: #5BC0DE;
  color: #000;
  box-shadow: none; }
  .btn--info:active, .btn--info:focus, .btn--info:hover,
  .button--info:active,
  .button--info:focus,
  .button--info:hover {
    background-color: #31b0d5; }
.btn--warning,
.button--warning {
  background-color: #F0AD4E;
  color: #000;
  box-shadow: none; }
  .btn--warning:active, .btn--warning:focus, .btn--warning:hover,
  .button--warning:active,
  .button--warning:focus,
  .button--warning:hover {
    background-color: #ec971f; }
.btn--danger,
.button--danger {
  background-color: #D9534F;
  color: #fff;
  box-shadow: none; }
  .btn--danger:active, .btn--danger:focus, .btn--danger:hover,
  .button--danger:active,
  .button--danger:focus,
  .button--danger:hover {
    background-color: #c9302c; }
.btn--inverse,
.button--inverse {
  background-color: #333;
  color: #fff;
  box-shadow: none; }
  .btn--inverse:active, .btn--inverse:focus, .btn--inverse:hover,
  .button--inverse:active,
  .button--inverse:focus,
  .button--inverse:hover {
    background-color: #1a1a1a; }
.btn--ghost,
.button--ghost {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px #fff inset; }
  .btn--ghost:active, .btn--ghost:focus, .btn--ghost:hover,
  .button--ghost:active,
  .button--ghost:focus,
  .button--ghost:hover {
    background-color: transparent; }

.btn--small,
.button--small {
  padding: 0.7rem 1rem;
  font-size: .8em; }
.btn--big,
.button--big {
  padding: 1.5rem 2rem;
  font-size: 1.4em; }
.btn--block,
.button--block {
  width: 100% !important;
  display: block; }
.btn--unstyled,
.button--unstyled {
  padding: 0;
  border: none;
  text-align: left;
  background: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .btn--unstyled:focus,
  .button--unstyled:focus {
    box-shadow: none;
    outline: none; }

.nav-button {
  padding: 0;
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }
  .nav-button > * {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 2.6rem;
    width: 2.6rem;
    padding: 0;
    background-color: transparent;
    background-image: linear-gradient(#333, #333);
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: 100% 5px;
    transition: .25s;
    transition-property: transform, background;
    will-change: transform, background; }
    .nav-button > *::before, .nav-button > *::after {
      content: "";
      height: 5px;
      background: #333;
      transition: .25s;
      transition-property: transform, top;
      will-change: transform, top; }
  .nav-button:hover > * {
    background-color: transparent; }
  .nav-button:focus {
    outline: 0; }
  .nav-button.is-active > * {
    background-image: none;
    justify-content: center; }
    .nav-button.is-active > *::before {
      transform: translateY(50%) rotate3d(0, 0, 1, 45deg); }
    .nav-button.is-active > *::after {
      transform: translateY(-50%) rotate3d(0, 0, 1, -45deg); }

/* ----------------------------- */
/* ==Checkbox, radio, switch     */
/* ----------------------------- */
/* use .checkbox class on input type=checkbox */
/* recommended HTML : <input type="checkbox" class="checkbox" id="c1"><label for="c1">click here</label> */
/* use .radio class on input type=radio */
/* recommended HTML : <input type="radio" class="radio" name="radio" id="r1"><label for="r1">Click here</label> */
/* use .switch class on input type=checkbox */
.checkbox {
  border-radius: 4px; }

.switch {
  border-radius: 3em; }

.radio {
  border-radius: 50%; }

.switch,
.checkbox,
.radio {
  appearance: none;
  vertical-align: text-bottom;
  outline: 0;
  cursor: pointer; }
  .switch ~ label,
  .checkbox ~ label,
  .radio ~ label {
    cursor: pointer; }
  .switch::-ms-check,
  .checkbox::-ms-check,
  .radio::-ms-check {
    display: none; }

.switch {
  width: 4rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 70%;
  box-shadow: inset -2rem 0 0 #333, inset 0 0 0 1px #333;
  transition: box-shadow .15s;
  background-color: #fff; }
  .switch::before, .switch::after {
    font-weight: bold;
    color: #fff; }
  .switch::before {
    content: "✕";
    float: right;
    margin-right: 0.66667rem; }
  .switch:checked {
    box-shadow: inset 2rem 0 0 #5CB85C, inset 0 0 0 1px #5CB85C; }
    .switch:checked::before {
      content: "✓";
      float: left;
      margin-left: 0.66667rem; }

.checkbox {
  width: 2rem;
  height: 2rem;
  box-shadow: inset 0 0 0 1px #333;
  background-color: #fff;
  transition: background-color .15s; }
  .checkbox:checked {
    background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%208%208%22%20enable-background%3D%22new%200%200%208%208%22%20xml%3Aspace%3D%22preserve%22%3E%20%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M6.4%2C1L5.7%2C1.7L2.9%2C4.5L2.1%2C3.7L1.4%2C3L0%2C4.4l0.7%2C0.7l1.5%2C1.5l0.7%2C0.7l0.7-0.7l3.5-3.5l0.7-0.7L6.4%2C1L6.4%2C1z%22%20%2F%3E%0A%3C%2Fsvg%3E");
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333; }

.radio {
  width: 2rem;
  height: 2rem;
  background-size: 0% 0%;
  transition: background-size .15s;
  box-shadow: inset 0 0 0 1px #333;
  background-color: #fff; }
  .radio:checked {
    background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20version%3D%221.1%22%20width%3D%22100%22%20height%3D%22100%22%0AviewBox%3D%220%200%2080%2080%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%2240%22%20r%3D%2224%22%20style%3D%22fill%3A%23333333%22/%3E%3C/svg%3E");
    background-size: 90% 90%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff; }

/* ----------------------------- */
/* ==Tabs                        */
/* ----------------------------- */
/* see example on https://knacss.com/styleguide.html#tabs */
/* NOTE : tabs need JavaScript to be activated */
.tabs-menu {
  border-bottom: 2px solid #e7e9ed; }
  .tabs-menu-link {
    display: block;
    margin-bottom: -2px;
    padding: 0.5rem 3rem;
    border-bottom: 4px solid transparent;
    color: #212529;
    background: transparent;
    text-decoration: none;
    border-radius: 0 0 0 0;
    transition: .25s;
    transition-property: color, border, background-color; }
    .tabs-menu-link.is-active {
      border-bottom-color: #333;
      color: #333;
      background: transparent;
      outline: 0; }
    .tabs-menu-link:focus {
      border-bottom-color: #333;
      color: #333;
      outline: 0; }
    @media (min-width: 600px) {
      .tabs-menu-link {
        display: inline-block; } }

.tabs-content-item {
  padding-top: 1rem; }
  .tabs-content-item[aria-hidden="true"] {
    visibility: hidden; }
  .tabs-content-item[aria-hidden="false"] {
    visibility: visible; }

/* ----------------------------- */
/* ==Arrows                      */
/* ----------------------------- */
/* see https://knacss.com/styleguide.html#arrows */
[class*="icon-arrow--"] {
  vertical-align: middle; }
  [class*="icon-arrow--"]::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    mask-size: cover;
    background-color: #000;
    line-height: 1; }

.icon-arrow--down::after {
  mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20style%3D%22isolation%3Aisolate%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22%20M%209.96%2011.966%20L%203.523%205.589%20C%202.464%204.627%200.495%206.842%201.505%207.771%20L%201.505%207.771%20L%208.494%2014.763%20C%209.138%2015.35%2010.655%2015.369%2011.29%2014.763%20L%2011.29%2014.763%20L%2018.49%207.771%20C%2019.557%206.752%2017.364%204.68%2016.262%205.725%20L%2016.262%205.725%20L%209.96%2011.966%20Z%20%22%20fill%3D%22inherit%22/%3E%3C/svg%3E"); }

.icon-arrow--up::after {
  mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20style%3D%22isolation%3Aisolate%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22%20M%209.96%208.596%20L%203.523%2014.973%20C%202.464%2015.935%200.495%2013.72%201.505%2012.791%20L%201.505%2012.791%20L%208.494%205.799%20C%209.138%205.212%2010.655%205.193%2011.29%205.799%20L%2011.29%205.799%20L%2018.49%2012.791%20C%2019.557%2013.809%2017.364%2015.882%2016.262%2014.837%20L%2016.262%2014.837%20L%209.96%208.596%20Z%20%22%20fill%3D%22inherit%22/%3E%3C/svg%3E"); }

.icon-arrow--right::after {
  mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20style%3D%22isolation%3Aisolate%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22%20M%2011.685%2010.321%20L%205.308%2016.758%20C%204.346%2017.817%206.561%2019.786%207.49%2018.776%20L%207.49%2018.776%20L%2014.482%2011.787%20C%2015.069%2011.142%2015.088%209.626%2014.482%208.991%20L%2014.482%208.991%20L%207.49%201.791%20C%206.472%200.724%204.399%202.916%205.444%204.019%20L%205.444%204.019%20L%2011.685%2010.321%20Z%20%22%20fill%3D%22inherit%22/%3E%3C/svg%3E"); }

.icon-arrow--left::after {
  mask-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20style%3D%22isolation%3Aisolate%22%20viewBox%3D%220%200%2020%2020%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22%20M%208.315%2010.321%20L%2014.692%2016.758%20C%2015.654%2017.817%2013.439%2019.786%2012.51%2018.776%20L%2012.51%2018.776%20L%205.518%2011.787%20C%204.931%2011.142%204.912%209.626%205.518%208.991%20L%205.518%208.991%20L%2012.51%201.791%20C%2013.528%200.724%2015.601%202.916%2014.556%204.019%20L%2014.556%204.019%20L%208.315%2010.321%20Z%20%22%20fill%3D%22inherit%22/%3E%3C/svg%3E"); }

/* ----------------------------- */
/* ==Tags                      */
/* ----------------------------- */
/* use .tag-- classes for variants */
.tag, .tag--primary, .tag--success, .tag--info, .tag--warning, .tag--danger, .tag--inverse, .tag--ghost {
  display: inline-block;
  padding: 3px 0.5rem;
  vertical-align: baseline;
  white-space: nowrap;
  color: #212529;
  border-radius: 0;
  background-color: #e7e9ed;
  line-height: 1; }

.tag--primary {
  background-color: #0275D8;
  color: #fff;
  box-shadow: none; }
.tag--success {
  background-color: #5CB85C;
  color: #fff;
  box-shadow: none; }
.tag--info {
  background-color: #5BC0DE;
  color: #000;
  box-shadow: none; }
.tag--warning {
  background-color: #F0AD4E;
  color: #000;
  box-shadow: none; }
.tag--danger {
  background-color: #D9534F;
  color: #fff;
  box-shadow: none; }
.tag--inverse {
  background-color: #333;
  color: #fff;
  box-shadow: none; }
.tag--ghost {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px #fff inset; }

.tag--small {
  font-size: 1.2rem; }
.tag--big {
  font-size: 2rem; }
.tag--block {
  width: 100% !important;
  display: block; }
.tag.disabled, .disabled.tag--primary, .disabled.tag--success, .disabled.tag--info, .disabled.tag--warning, .disabled.tag--danger, .disabled.tag--inverse, .disabled.tag--ghost, .tag--disabled {
  opacity: 0.5;
  cursor: not-allowed; }
.tag:empty, .tag--primary:empty, .tag--success:empty, .tag--info:empty, .tag--warning:empty, .tag--danger:empty, .tag--inverse:empty, .tag--ghost:empty {
  display: none; }

/* ----------------------------- */
/* ==Badges                      */
/* ----------------------------- */
/* use .badge-- classes for variants */
.badge, .badge--primary, .badge--success, .badge--info, .badge--warning, .badge--danger, .badge--inverse, .badge--ghost {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 50%;
  color: #212529;
  background-color: #e7e9ed;
  line-height: 1; }
  .badge::before, .badge--primary::before, .badge--success::before, .badge--info::before, .badge--warning::before, .badge--danger::before, .badge--inverse::before, .badge--ghost::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    padding-top: 100%; }

.badge--primary {
  background-color: #0275D8;
  color: #fff; }
.badge--success {
  background-color: #5CB85C;
  color: #fff; }
.badge--info {
  background-color: #5BC0DE;
  color: #000; }
.badge--warning {
  background-color: #F0AD4E;
  color: #000; }
.badge--danger {
  background-color: #D9534F;
  color: #fff; }
.badge--inverse {
  background-color: #333;
  color: #fff; }
.badge--ghost {
  background-color: transparent;
  color: #fff; }

.badge--small {
  font-size: 1.2rem; }
.badge--big {
  font-size: 2rem; }
.badge.disabled, .disabled.badge--primary, .disabled.badge--success, .disabled.badge--info, .disabled.badge--warning, .disabled.badge--danger, .disabled.badge--inverse, .disabled.badge--ghost, .badge--disabled {
  opacity: 0.5;
  cursor: not-allowed; }
.badge:empty, .badge--primary:empty, .badge--success:empty, .badge--info:empty, .badge--warning:empty, .badge--danger:empty, .badge--inverse:empty, .badge--ghost:empty {
  display: none; }

/* ----------------------------- */
/* ==Alerts                      */
/* ----------------------------- */
/* use .alert-- classes for variants */
.alert, .alert--primary, .alert--success, .alert--info, .alert--warning, .alert--danger, .alert--inverse, .alert--ghost {
  padding: 1rem 1rem;
  margin-top: 0.75em;
  margin-bottom: 0;
  color: #212529;
  border-radius: 0;
  background-color: #e7e9ed; }
  .alert a, .alert--primary a, .alert--success a, .alert--info a, .alert--warning a, .alert--danger a, .alert--inverse a, .alert--ghost a {
    color: inherit;
    text-decoration: underline; }

.alert--primary {
  background-color: #0275D8;
  color: #fff;
  box-shadow: none; }
.alert--success {
  background-color: #5CB85C;
  color: #fff;
  box-shadow: none; }
.alert--info {
  background-color: #5BC0DE;
  color: #000;
  box-shadow: none; }
.alert--warning {
  background-color: #F0AD4E;
  color: #000;
  box-shadow: none; }
.alert--danger {
  background-color: #D9534F;
  color: #fff;
  box-shadow: none; }
.alert--inverse {
  background-color: #333;
  color: #fff;
  box-shadow: none; }
.alert--ghost {
  background-color: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px #fff inset; }

.alert--small {
  font-size: 1.2rem; }
.alert--big {
  font-size: 2rem; }
.alert--block {
  width: 100% !important;
  display: block; }
.alert.disabled, .disabled.alert--primary, .disabled.alert--success, .disabled.alert--info, .disabled.alert--warning, .disabled.alert--danger, .disabled.alert--inverse, .disabled.alert--ghost, .alert--disabled {
  opacity: 0.5;
  cursor: not-allowed; }
.alert:empty, .alert--primary:empty, .alert--success:empty, .alert--info:empty, .alert--warning:empty, .alert--danger:empty, .alert--inverse:empty, .alert--ghost:empty {
  display: none; }

@font-face {
  font-family: 'Gill Sans Regular';
  src: local("Gill Sans Std Regular"), local("GillSansStd"), url("../fonts/GillSansStd.woff2") format("woff2"), url("../fonts/GillSansStd.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gill Sans Light';
  src: local("Gill Sans Std Light"), local("GillSansStd-Light"), url("../fonts/GillSansStd-Light.woff2") format("woff2"), url("../fonts/GillSansStd-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }
*, html {
  margin: 0;
  padding: 0; }

body {
  display: block;
  position: relative;
  margin: 135px 0 0 0;
  padding: 0;
  font-family: "Gill Sans Light";
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: normal;
  color: #143fa0;
  background-color: #f7f7f7;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-transition: margin 0.4s ease;
  transition: margin 0.4s ease; }
  body.showbanner {
    margin-top: 165px; }

form.search {
  display: inline-block; }
  form.search button {
    padding: 0; }

a {
  font-family: "Gill Sans Light";
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #143fa0; }
  a:hover {
    color: #143fa0; }
  a.button, a.cancel {
    font-family: "Gill Sans Regular";
    padding-bottom: 3px;
    padding-left: 0;
    padding-right: 0;
    color: #143fa0;
    background-color: transparent;
    border-bottom: #143fa0 solid 2px;
    text-decoration: none; }
    a.button.cancel, a.cancel.cancel {
      color: #868b95;
      border-bottom: #868b95 solid 2px; }
    a.button + .button, a.cancel + .button {
      margin-left: 20px; }
  a.submit {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 30px;
    min-width: 0px;
    width: 350px;
    height: 40px;
    border: #143fa0 solid 1px;
    background-color: #143fa0;
    overflow: hidden;
    font-size: 1.2rem; }
    a.submit > *:first-child {
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      border-radius: 100%;
      box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5) inset; }
    a.submit > *:last-child {
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      width: 100%;
      padding: 0;
      font-family: "Gill Sans Regular";
      color: #ffffff;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.2em; }
    a.submit:hover > *:first-child {
      width: 105%;
      height: 1000%;
      box-shadow: 0 0 150px 150px rgba(255, 255, 255, 0) inset;
      transition: box-shadow 0.4s ease-out, width 0.4s ease, height 0.4s ease; }
    a.submit.disabled {
      background-color: #d3d3d3;
      border: #d3d3d3 solid 1px; }
      a.submit.disabled > *:first-child {
        box-shadow: none; }
      a.submit.disabled:hover > *:first-child {
        width: 0;
        height: 0;
        border-width: 0;
        box-shadow: none;
        transition: none; }
    a.submit.line {
      color: #143fa0;
      background-color: transparent; }
      a.submit.line > * {
        color: #143fa0; }
        a.submit.line > *:first-child {
          box-shadow: 0 0 0px 0px rgba(20, 63, 160, 0.25) inset; }
      a.submit.line:hover > *:first-child {
        box-shadow: 0 0 150px 150px rgba(20, 63, 160, 0) inset; }
    a.submit.with-margin {
      margin-bottom: 50px; }

h1 {
  font-weight: normal;
  font-family: "Gill Sans Regular";
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  line-height: 2.4rem;
  text-transform: uppercase; }

h2 {
  font-weight: normal;
  font-family: "Gill Sans Regular";
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 9px; }
  h2.title {
    text-align: center;
    color: #212121;
    margin-top: 20px;
    margin-bottom: 40px; }

h3 {
  font-weight: normal;
  font-family: "Gill Sans Regular";
  font-size: 1.3rem;
  letter-spacing: 0.04em; }
  h3 span {
    padding-left: 6px;
    color: #868b95;
    font-family: "Gill Sans Light"; }

input, textarea {
  font-weight: normal;
  font-family: "Gill Sans Regular";
  font-size: 1.2rem; }
  input:focus, textarea:focus {
    outline: none; }

label {
  margin-top: 10px;
  margin-bottom: 20px; }

[type="radio"]:not(.opener):not(.listing):not(.selector), [type="checkbox"]:not(.opener):not(.listing):not(.selector) {
  position: absolute;
  left: -9999px; }
  [type="radio"]:not(.opener):not(.listing):not(.selector) + label, [type="checkbox"]:not(.opener):not(.listing):not(.selector) + label {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    display: inline-block !important;
    padding-left: 30px;
    padding-right: 30px; }
    [type="radio"]:not(.opener):not(.listing):not(.selector) + label:before, [type="checkbox"]:not(.opener):not(.listing):not(.selector) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 3px;
      width: 14px;
      height: 14px;
      border: 1px solid #143fa0; }
    [type="radio"]:not(.opener):not(.listing):not(.selector) + label:after, [type="checkbox"]:not(.opener):not(.listing):not(.selector) + label:after {
      content: '';
      width: 6px;
      height: 6px;
      background: #143fa0;
      position: absolute;
      top: 7px;
      left: 4px;
      -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease; }

[type="checkbox"]:not(.opener):not(.listing):not(.selector) + label {
  padding-left: 28px; }
[type="checkbox"]:not(.opener):not(.listing):not(.selector):not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0); }
[type="checkbox"]:not(.opener):not(.listing):not(.selector):checked + label:after {
  opacity: 1;
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1); }
[type="checkbox"]:not(.opener):not(.listing):not(.selector):indeterminate + label:after {
  opacity: 0.5;
  -webkit-transform: rotate(0) scale(0.75);
  transform: rotate(0) scale(0.75); }

[type="radio"]:not(.opener):not(.listing):not(.selector) + label:before, [type="radio"]:not(.opener):not(.listing):not(.selector) + label:after {
  border-radius: 100%; }
[type="radio"]:not(.opener):not(.listing):not(.selector):not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0); }
[type="radio"]:not(.opener):not(.listing):not(.selector):checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

[type="text"], [type="password"], [type="date"], textarea {
  margin: 0;
  padding-right: 15px;
  padding-left: 15px;
  border: #143fa0 solid 1px;
  color: #212121;
  width: 350px;
  height: 40px;
  letter-spacing: 0.04em;
  box-shadow: none; }
  [type="text"].error, [type="password"].error, [type="date"].error, textarea.error {
    border-color: #aa0000; }

textarea {
  width: 100%; }

[type="button"], button {
  width: 40px;
  height: 40px;
  margin: 0 0 0 -5px;
  padding: 0;
  background-color: #143fa0;
  border: #143fa0 solid 1px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
  [type="button"].submit, button.submit {
    font-family: "Gill Sans Regular";
    letter-spacing: 0.2em;
    font-size: 1.2rem; }
  [type="button"].newsletter_subscribe, button.newsletter_subscribe {
    width:100px;
  }

input[type="submit"].addtobag {
  width:150px;
  height:25px;
  border-radius: 12.5px;
  background-color: transparent;
  border: #143FA0 solid 1px;
  color: #143FA0;
  text-align: center;
  box-shadow: none;
  font-family: "Gill Sans Regular";
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding-top:4px;
  padding-bottom: 6px;
  font-weight: 500;
}

input[type="submit"].addtobag:hover {
  background-color: #143FA0;
  color: white;
}

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

select {
  display: inline-block;
  width: 350px;
  height: 40px;
  margin-bottom: 10px;
  background: url(../img/picto/DROPDOWN_SELECT_BLUE.svg) 330px 12px no-repeat #ffffff;
  background-size: 12px;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 4px;
  padding-bottom: 0;
  font-family: "Gill Sans Regular";
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #143fa0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none; }
  select:focus, select:active, select:hover {
    text-decoration: none; }
  select.large {
    width: 400px; }
  select.small {
    width: auto;
    border: none;
    box-shadow: none;
    background: transparent;
    color: #868b95;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist; }

/*
div.input_select {
  margin-bottom: 10px;
  a {
    position: relative;
    display: block;
    width: (800px/2);
    height: (80px/2);
    padding-top: 7px;
    padding-right: (30px/2);
    padding-left: (30px/2);
    border: 1px $color_blue solid;
    font-family: $font_regular;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: $color_blue;
    text-decoration: none;
    background-color: $color_gray_ultra_light;

    &:after {
      position: absolute;
      right: 0;
      top: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: url(../img/picto/DROPDOWN_SELECT_BLUE.svg) 380px 12px no-repeat transparent;
      background-size: 12px;
    }
    &.open {
      border-bottom: none;
    }
  }
  ul {
    z-index: 1030;
    position: absolute;
    display: none;
    padding-left: 0;
    border: 1px $color_blue solid;
    border-top: none;
    margin-top: 0;
    li {
      cursor: pointer;
      position: relative;
      display: block;
      width: (800px/2)-2;
      height: (80px/2);
      margin-bottom: 0;
      padding-top: 7px;
      padding-right: (30px/2);
      padding-left: (30px/2);
      font-family: $font_regular;
      font-size: 1.3rem;
      letter-spacing: 0.04em;
      color: $color_blue;
      text-decoration: none;
      background-color: $color_gray_ultra_light;
      -webkit-transition: all $transition_duration ease;
      transition: all $transition_duration ease;
      &:hover {
        color: $color_white;
        background-color: $color_blue;
      }
    }
  }
}
*/
.share {
  font-size: 1.4rem;
  font-family: "Gill Sans Light";
  padding-bottom: 5px; }

.hash {
  font-size: 1.6rem;
  font-family: "Gill Sans Light"; }
  .hash .bold {
    font-family: "Gill Sans Regular"; }

.color-gray-dark {
  color: #212121; }

li p {
  margin-bottom: 1rem; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0; }
  .container:before, .container:after {
    display: table;
    content: " "; }
  .container:after {
    clear: both; }
  .container.white {
    background-color: #ffffff; }

@media (min-width: 960px) {
  .container {
    max-width: 960px; } }
@media (min-width: 1260px) {
  .container {
    max-width: 1260px; } }
.white-ribbon {
  background-color: #ffffff; }
  .white-ribbon.with-padding {
    padding-top: 60px;
    padding-bottom: 60px; }
  .white-ribbon.related_links {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center; }
    .white-ribbon.related_links .container {
      max-width: 960px; }
    .white-ribbon.related_links p {
      font-family: "Gill Sans Regular";
      padding-bottom: 1.5rem;
      color: #212121; }
    .white-ribbon.related_links a.button {
      margin-left: 10px;
      color: #868b95;
      border-bottom-color: #868b95;
      margin-bottom: 1.5rem; }
      .white-ribbon.related_links a.button:hover {
        color: #868b95; }

ul.steps {
  margin-bottom: 40px;
  padding-left: 0; }
  ul.steps li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin-left: 7.5px;
    margin-right: 7.5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%; }
    ul.steps li:first-child {
      margin-left: 0; }
    ul.steps li:last-child {
      margin-right: 0; }
    ul.steps li:nth-child(1) {
      background-image: url("../img/picto/01_OFF.svg"); }
    ul.steps li:nth-child(2) {
      background-image: url("../img/picto/02_OFF.svg"); }
    ul.steps li:nth-child(3) {
      background-image: url("../img/picto/03_OFF.svg"); }
    ul.steps li.done:nth-child(1) {
      background-image: url("../img/picto/01_ON.svg"); }
    ul.steps li.done:nth-child(2) {
      background-image: url("../img/picto/02_ON.svg"); }
    ul.steps li.done:nth-child(3) {
      background-image: url("../img/picto/03_ON.svg"); }

div.selector {
  display: inline-block;
  position: relative;
  background-color: #ffffff;
  width: 350px;
  height: 40px;
  cursor: pointer;
  margin-bottom: 10px;
  /*
  [type="radio"].selector:not(:checked) + label + div {
    height: 0 !important;
  }

  [type="radio"].selector:checked + label {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
  }
  */
  /*
  &.large {
    width:400px;
    > label:first-child {
      width: 400px;
    }
    [type="checkbox"].selector + label + div {
      ul {
        li {
          width: 400px;
        }
      }
    }
  }
  */ }
  div.selector > label:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px;
    height: 40px;
    margin: 0;
    padding-right: 40px;
    padding-left: 15px;
    color: #143fa0;
    font-family: "Gill Sans Regular";
    font-size: 1.4rem; }
    div.selector > label:first-child .price {
      font-size: 1.8rem;
      color: #143fa0; }
  div.selector [type="radio"].selector {
    position: absolute;
    left: -9999px; }
    div.selector [type="radio"].selector + label {
      opacity: 1;
      display: inline-block;
      position: absolute;
      top: 4px;
      right: 5px;
      padding: 10px 10px;
      width: 35px;
      height: 35px;
      margin-top: 0;
      margin-bottom: 0;
      z-index: 2000;
      cursor: pointer;
      transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; }
      div.selector [type="radio"].selector + label + div {
        overflow-y: hidden;
        transition: height 0.4s ease-in-out;
        position: absolute; }
        div.selector [type="radio"].selector + label + div ul {
          padding-left: 0;
          overflow-y: scroll;
          overflow-x: hidden;
          max-height: 160px; }
          div.selector [type="radio"].selector + label + div ul li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 350px;
            height: 40px;
            padding-right: 40px;
            padding-left: 15px;
            background-color: #ffffff;
            border-top: 1px solid #f7f7f7;
            color: #868b95;
            font-family: "Gill Sans Regular";
            font-size: 1.4rem;
            transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out; }
            div.selector [type="radio"].selector + label + div ul li .price {
              font-size: 1.8rem;
              color: #143fa0; }
            div.selector [type="radio"].selector + label + div ul li a {
              text-decoration: none;
              color: #868b95;
              font-family: "Gill Sans Regular";
              font-size: 1.4rem;
              transition: color 0.4s ease-in-out; }
            div.selector [type="radio"].selector + label + div ul li:hover {
              background-color: #143fa0;
              color: #ffffff; }
              div.selector [type="radio"].selector + label + div ul li:hover a {
                color: #ffffff; }
    div.selector [type="radio"].selector:not(:checked) + label + div {
      height: 0 !important; }
    div.selector [type="radio"].selector:checked + label {
      -webkit-transform: rotate(180deg) scale(1);
      transform: rotate(180deg) scale(1); }
  div.selector.no-checkbox > label:first-child {
    padding-right: 15px; }
  div.selector.gray-border {
    background-color: #f7f7f7; }
  div.selector.elevate {
    z-index: 2010; }
  div.selector .mini-selector {
    font-family: "Gill Sans Regular";
    color: #868b95; }
    div.selector .mini-selector a {
      font-family: "Gill Sans Regular";
      color: #868b95;
      text-decoration: none; }
      div.selector .mini-selector a:after {
        content: "";
        display: inline-block;
        width: 1em;
        height: 1em;
        background: url(../img/picto/DROPDOWN_SELECT.svg) 100% 0.2em no-repeat; }
    div.selector .mini-selector ul {
      background-color: #ffffff;
      position: absolute;
      display: none;
      padding-left: 0;
      margin-top: 0; }
      div.selector .mini-selector ul li {
        cursor: pointer;
        position: relative;
        display: block; }
  div.selector.disabled {
    cursor: not-allowed; }
    div.selector.disabled > label:first-child {
      color: #868b95; }
      div.selector.disabled > label:first-child .price {
        color: #868b95; }
    div.selector.disabled [type="radio"].selector {
      position: absolute;
      left: -9999px; }
      div.selector.disabled [type="radio"].selector + label {
        opacity: 0; }
        div.selector.disabled [type="radio"].selector + label + div {
          display: none; }

.with-margin {
  margin-bottom: 35px; }

.with-top-margin {
  margin-top: 40px; }

.with-small-margin {
  margin-bottom: 20px; }

#fade {
  /*--Masque opaque noir de fond--*/
  display: none;
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 5000; }

.popup_block {
  display: none;
  background: #fff;
  float: left;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 5010;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  width: 980px;
  text-align: center; }
  .popup_block span.cancel {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px; }
  .popup_block h3 {
    margin-top: 60px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em; }
  .popup_block > div {
    min-height: 90px;
    max-height: calc(90vh - 110px);
    overflow-y: scroll; }

.popin_locale div.instruction {
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto; }
.popin_locale .block_selector {
  font-family: "Gill Sans Regular";
  color: black;
  margin-bottom: 20px; }
  .popin_locale .block_selector > div:first-child {
    height: 30px; }
.popin_locale div.selector {
  background-color: #f7f7f7; }
.popin_locale div.submit {
  margin-top: 40px; }
.popin_locale div.cancel {
  margin-bottom: 60px; }

#map {
  margin-bottom: 15px; }

.popin_map .one-column {
  padding-top: 20px; }
.popin_map address {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  font-style: normal; }
  .popin_map address h3 {
    margin-top: 25px;
    text-transform: none;
    letter-spacing: 0.04em;
    margin-bottom: 10px; }
  .popin_map address p {
    padding-top: 0 !important;
    margin-bottom: 0; }
.popin_map a {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.popin_news .carousel {
  margin: 0 90px 60px  90px;
  height: 500px; }
  .popin_news .carousel.press {
    height: 640px; }
.popin_news p {
  margin: 0 210px 1em 210px; }
.popin_news div.cancel {
  margin-top: 30px;
  margin-bottom: 60px; }

.popin_share p {
  margin-bottom: 60px; }
.popin_share div.networks {
  display: flex;
  flex-wrap: wrap;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between; }
  .popin_share div.networks a {
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .popin_share div.networks a img {
      width: 70px;
      height: 70px; }
.popin_share div.cancel {
  margin-top: 45px;
  margin-bottom: 60px; }

.popin_error .message {
  padding-top: 20px;
  padding-bottom: 20px; }
.popin_error div.cancel {
  margin-bottom: 60px; }

.banner {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 0;
  top: 0;
  left: 0;
  z-index: 3010;
  color: #ffffff;
  background-color: #143fa0;
  opacity: 0;
  overflow-y: hidden;
  transition: height 0.4s ease, opacity 0.4s ease; }
  .banner .mobile {
    display: none; }
  .banner .close {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 24px;
    height: 30px;
    top: 0;
    right: 30px; }
    .banner .close a {
      color: #ffffff;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold; }
  .banner div {
    position: relative;
    text-align: center;
    width: 100vw;
    line-height: initial; }
  .banner.show {
    height: 30px;
    opacity: 1; }

header {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  background-color: #ffffff;
  font-family: "Gill Sans Regular";
  transition: padding-top 0.4s ease; }
  header.showbanner {
    padding-top: 30px; }
  header .first-line {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; }
    header .first-line .left, header .first-line .right {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      height: 100px; }
    header .first-line .left {
      left: 30px; }
    header .first-line .right {
      right: 30px; }
      header .first-line .right .header-gray ul {
        padding-top: 0;
        padding-left: 0;
        margin-bottom: 0;
        margin-right: 20px; }
        header .first-line .right .header-gray ul li {
          display: inline-block;
          padding-left: 10px;
          padding-right: 10px; }
          header .first-line .right .header-gray ul li a {
            font-family: inherit;
            letter-spacing: inherit;
            color: #868b95;
            text-decoration: none;
            transition: color 0.4s ease-in-out; }
          header .first-line .right .header-gray ul li:last-child a {
            color: #143fa0; }
  header .locale {
    margin-top: 2px;
    display: inline-block; }
    header .locale a {
      text-decoration: none;
      color: #868b95;
      font-family: "Gill Sans Regular"; }
      header .locale a img {
        width: 20px;
        padding-bottom: 3px; }
  header .input-rounded {
    display: inline-block; }
    header .input-rounded > * {
      background: #f7f7f7;
      border-radius: 2rem;
      color: #143fa0;
      border: 0 none;
      letter-spacing: 0.04em;
      box-shadow: none;
      height: 3rem;
      padding-top: 3px;
      padding-bottom: 3px; }
      header .input-rounded > *:first-child {
        margin-left: 30px; }
      header .input-rounded > *:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
      header .input-rounded > *:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
  header .search input {
    width: 90px;
    transition: width 0.4s ease-in-out; }
    header .search input::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #143fa0;
      opacity: 1;
      /* Firefox */
      transition-property: color;
      transition-duration: 0.4s; }
    header .search input:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #143fa0;
      transition-property: color;
      transition-duration: 0.4s; }
    header .search input::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #143fa0;
      transition-property: color;
      transition-duration: 0.4s; }
    header .search input:focus {
      outline: none;
      width: 200px; }
      header .search input:focus::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: #d3d3d3;
        opacity: 1;
        /* Firefox */ }
  header .search button {
    background: #f7f7f7 url(../img/picto/SEARCH.svg) right 10px center no-repeat;
    background-size: 14px; }
    header .search button:focus {
      outline: none; }
  header .logo {
    display: block;
    width: 120px;
    height: 60px;
    background: url(../img/logo/EX_NIHILO_PARIS.svg) 50% no-repeat; }
  header .my-account {
    letter-spacing: 0;
    margin-right: 30px; }
  header .counter {
    position: relative; }
    header .counter > ul {
      margin: 0 0 0 0;
      padding: 0; }
      header .counter > ul li {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 4.8rem;
        height: 2.4rem;
        margin: 0;
        font-family: "Gill Sans Regular";
      }

        header .counter > ul li a {
          background-image: url("../img/picto/SHOPPING BAG.svg");
          background-repeat: no-repeat;
          background-position-y: -1px;
          padding-left:2.4rem;
          color: #143fa0;
          font-family: "Gill Sans Regular";
          text-decoration: none; }
          header .counter > ul li a span {
            line-height: normal; }
    header .counter .flash {
      z-index: 4020;
      opacity: 1;
      background-color: transparent;
      position: absolute;
      top: 1rem;
      left: 1rem;
      height: 1px;
      width: 1px;
      border-radius: 100%;
      transition: top 0.4s ease-out 0.4s, left 0.4s ease-out 0.4s, height 0.4s ease-out 0.4s, width 0.4s ease-out 0.4s, opacity 0.4s ease-out 0.4s; }
      header .counter .flash.animate {
        background-color: rgba(20, 63, 160, 0.15);
        border: 2px solid #143fa0;
        top: -3.4rem;
        left: -3.6rem;
        width: 8.8rem;
        height: 8.8rem;
        opacity: 0;
        transition: top 0.4s ease-out, left 0.4s ease-out, height 0.4s ease-out, width 0.4s ease-out, opacity 0.4s ease-out; }
    header .counter .recap {
      position: absolute;
      top: 3.2rem;
      right: 0;
      padding: 0;
      z-index: 4030;
      border: 1px #f7f7f7 solid;
      background-color: #ffffff;
      color: #143fa0;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
      opacity: 0;
      overflow: hidden;
      height: 0;
      min-height: 0;
      transition: opacity 0.4s ease-in-out, min-height 1ms ease-in-out 0.4s, padding 1ms ease-in-out 0.4s;
      width: 20vw; }
      header .counter .recap.animate {
        padding: 15px;
        opacity: 1;
        min-height: 150px;
        transition: opacity 0.4s ease-in-out, min-height 1ms ease-in-out, padding 1ms ease-in-out; }
      header .counter .recap ul {
        display: inline-block;
        text-align: left;
        padding: 0;
        margin: 0;
        width: 100%; }
        header .counter .recap ul li {
          display: flex;
          justify-content: flex-end;
          flex-wrap: nowrap;
          width: 100%; }
          header .counter .recap ul li > span {
            display: inline-block;
            padding-left: 15px;
            text-align: right;
            min-width: 30px; }
            header .counter .recap ul li > span:first-child {
              flex-grow: 20;
              text-align: left;
              padding-left: 0; }
            header .counter .recap ul li > span:last-child {
              min-width: 80px; }
          header .counter .recap ul li:last-child {
            font-family: "Gill Sans Regular";
            border-top: 1px #f7f7f7 solid;
            margin-top: 5px;
            padding-top: 5px; }
  header a, header a:hover {
    font-family: "Gill Sans Regular";
    letter-spacing: normal;
    text-decoration: none; }
  header nav.tiny, header .tiny-search {
    display: none; }
  header nav.full {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: center;
    position: relative; }
    header nav.full:before {
      z-index: 4000;
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      top: 34px;
      border-bottom: 1px solid #f7f7f7; }
    header nav.full [type="checkbox"] {
      display: none; }
    header nav.full ul.menu {
      height: 35px;
      padding: 0 0 0 0;
      margin: 0;
      text-align: center;
      transition: height 0.2s ease-in-out 0.2s; }
      header nav.full ul.menu:hover {
        height: 228px;
        transition: color 0.2s ease-in, height 0.2s ease-in-out; }
        header nav.full ul.menu:hover > li > a {
          color: #d3d3d3; }
      header nav.full ul.menu > li {
        padding: 0;
        display: inline-block;
        min-width: 70px;
        font-family: "Gill Sans Regular";
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        transition: color 0.2s ease-in 0.2s; }
        header nav.full ul.menu > li > a {
          padding: 20px 15px 20px 15px;
          height: 60px;
          position: relative;
          text-decoration: none;
          transition: color 0.2s ease;
          font-family: "Gill Sans Regular";
          font-size: 1.4rem;
          letter-spacing: 0.2em; }
          header nav.full ul.menu > li > a:focus, header nav.full ul.menu > li > a:active, header nav.full ul.menu > li > a:hover {
            text-decoration: none; }
          header nav.full ul.menu > li > a:before {
            z-index: 4010;
            content: "";
            position: absolute;
            width: 25px;
            height: 0px;
            top: 53px;
            left: 50%;
            margin-left: -12.5px;
            border-bottom: 1px solid rgba(20, 63, 160, 0);
            transition: border-bottom-color 0.2s ease-in; }
        header nav.full ul.menu > li > ul {
          display: flex;
          flex-direction: row;
          align-items: flex-start;
          flex-wrap: nowrap;
          justify-content: center;
          position: fixed;
          left: 0;
          height: 0;
          width: 100vw;
          padding-left: 0;
          opacity: 0;
          transition: opacity 0.2s ease-out, height 0.2s ease-out;
          margin-left: auto;
          margin-right: auto; }
          header nav.full ul.menu > li > ul > li {
            display: inline-block;
            height: 0;
            list-style-type: none;
            text-align: center;
            overflow: hidden;
            padding-top: 0;
            transition: height 0.2s ease-in 0.2s, padding-top 1ms ease-out 0.2s; }
            header nav.full ul.menu > li > ul > li > a {
              display: inline-block;
              width: 140px;
              height: 168px;
              margin: 0;
              padding: 0;
              cursor: pointer;
              overflow: hidden; }
              header nav.full ul.menu > li > ul > li > a img {
                display: block;
                width: 100px;
                height: 100px;
                margin: 0 auto 20px auto;
                padding: 0; }
              header nav.full ul.menu > li > ul > li > a p {
                white-space: nowrap;
                display: block;
                text-align: center;
                width: 100%;
                text-transform: uppercase;
                font-size: 1.1rem;
                color: #868b95;
                letter-spacing: 0.04em;
                margin-bottom: 3px; }
                header nav.full ul.menu > li > ul > li > a p:last-child {
                  text-transform: none;
                  font-size: 1rem; }
        header nav.full ul.menu > li:hover > a {
          color: #143fa0; }
          header nav.full ul.menu > li:hover > a:active, header nav.full ul.menu > li:hover > a:focus {
            color: #143fa0;
            transition: border-bottom-color 0.2s ease-out 0.2s; }
          header nav.full ul.menu > li:hover > a:before {
            transition: border-bottom-color 0.2s ease-out 0.2s;
            border-bottom-color: #143fa0; }
        header nav.full ul.menu > li:hover > ul {
          opacity: 1;
          height: 210px;
          transition: opacity 0.2s ease-in 0.2s, height 0.2s ease-in 0.2s; }
          header nav.full ul.menu > li:hover > ul > li {
            padding-top: 42px;
            height: 210px;
            transition: height 0.2s ease-out, padding-top 1ms ease-out; }
  header .platform {
    display: inline-block; }
    header .platform .zone {
      position: relative;
      top: 7px;
      z-index: 3100;
      display: inline-block;
      height: 30px;
      width: 70px; }
      header .platform .zone i {
        content: " ";
        display: inline-block;
        width: 20px;
        height: 20px;
        background-size: 20px; }
        header .platform .zone i.EU {
          background: url(../img/picto/FLAG_EU_OFF.svg) no-repeat;
          transition: background 0.4s ease-in-out; }
          header .platform .zone i.EU:hover, header .platform .zone i.EU.current {
            background: url(../img/picto/FLAG_EU.svg) no-repeat; }
        header .platform .zone i.US {
          background: url(../img/picto/FLAG_US_OFF.svg) no-repeat;
          transition: background 0.4s ease-in-out; }
          header .platform .zone i.US:hover, header .platform .zone i.US.current {
            background: url(../img/picto/FLAG_US.svg) no-repeat; }

.popin_geo_redirect .buttons {
  margin-top: 30px;
  margin-bottom: 50px; }

.direction {
  padding-top: 20px;
  text-align: center; }
  .direction.short {
    margin-bottom: 35px; }
  .direction ul.breadcrumb {
    padding-left: 0;
    margin-bottom: 50px;
    font-family: "Gill Sans Light";
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #868b95; }
    .direction ul.breadcrumb li {
      display: inline-block; }
      .direction ul.breadcrumb li a {
        text-decoration: none;
        font-family: "Gill Sans Light";
        font-size: 1rem;
        letter-spacing: 0.04em;
        color: #868b95; }
        .direction ul.breadcrumb li a:hover {
          font-family: "Gill Sans Regular"; }
      .direction ul.breadcrumb li:not(:last-child):after {
        content: "/";
        margin-right: 5px;
        margin-left: 5px; }
      .direction ul.breadcrumb li:last-child {
        font-family: "Gill Sans Regular"; }
  .direction h2 {
    text-align: center;
    color: #212121;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 3.5rem; }
  .direction ul.multicontrol li {
    cursor: pointer; }

ul.multipanel {
  transition: height 0.4s ease-in-out;
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-bottom: 0; }
  ul.multipanel > li {
    display: inline-block;
    width: 100%;
    position: absolute;
    opacity: 0;
    left: 100%;
    transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out; }
    ul.multipanel > li.left {
      left: -100%; }
    ul.multipanel > li.active {
      left: 0;
      z-index: 1000;
      opacity: 1; }
    ul.multipanel > li .introduction {
      text-align: center;
      padding-top: 50px;
      padding-left: 280px;
      padding-right: 280px; }
      ul.multipanel > li .introduction h2 {
        margin-bottom: 20px; }
      ul.multipanel > li .introduction div {
        margin-top: 30px; }
        ul.multipanel > li .introduction div a.submit {
          margin-bottom: 0; }
    ul.multipanel > li iframe {
      width: 980px;
      height: 560px; }

.slideshow {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 30px;
  padding-bottom: 60px;
  overflow: hidden; }
  .slideshow ul.control {
    z-index: 1040;
    padding-left: 0;
    position: absolute;
    left: calc(50% + 70px);
    bottom: 210px; }
    .slideshow ul.control li {
      position: relative;
      display: inline-block;
      padding: 7.5px;
      color: #d3d3d3;
      cursor: pointer; }
      .slideshow ul.control li:before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 6px;
        background-color: #d3d3d3;
        opacity: 1;
        transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out; }
      .slideshow ul.control li.active:before {
        background-color: #143fa0; }
    .slideshow ul.control.is-dragging li:before {
      opacity: 0; }
  .slideshow .slide {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    height: auto;
    opacity: 0;
    left: 100%;
    width: inherit;
    transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out; }
    .slideshow .slide.left {
      left: -100%; }
    .slideshow .slide.active {
      left: 0;
      z-index: 1030;
      opacity: 1; }
    .slideshow .slide.is-dragging {
      transition: none; }
    .slideshow .slide img.sticker {
      position: absolute;
      top: 10px;
      right: 70px; }
    .slideshow .slide > div {
      position: relative;
      display: inline-block;
      width: 50%;
      height: inherit; }
      .slideshow .slide > div.visual {
        text-align: right; }
      .slideshow .slide > div.comments img {
        opacity: 0; }
      .slideshow .slide > div.comments > div {
        position: absolute;
        padding-left: 70px;
        bottom: 220px; }
        .slideshow .slide > div.comments > div h3 {
          font-family: "Gill Sans Light";
          letter-spacing: 0.2em;
          margin-bottom: 15px; }
        .slideshow .slide > div.comments > div div {
          max-width: 350px;
          padding-bottom: 15px; }
    .slideshow .slide.placeholder {
      position: relative;
      left: -100%;
      opacity: 0; }

.recommendation {
  margin: 60px auto 50px auto;
  width: 960px; }
  .recommendation .products {
    padding-top: 40px;
    display: flex;
    justify-content: space-between; }
    .recommendation .products div {
      position: relative;
      text-align: center;
      font-family: "Gill Sans Regular";
      color: #868b95; }
      .recommendation .products div img:not(:nth-child(1)) {
        position: absolute;
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%);
        transition: opacity 0.4s ease-in-out; }
        .recommendation .products div img:not(:nth-child(1)):hover {
          opacity: 1; }
        .recommendation .products div img:not(:nth-child(1)).reveal {
          opacity: 1; }
      .recommendation .products div h3 {
        color: #212121;
        letter-spacing: 0.2rem;
        padding-top: 20px;
        text-transform: uppercase; }

.categories {
  position: relative;
  width: 1120px;
  height: 640px;
  margin: 50px 70px 0 70px;
  overflow: hidden;
  transition: height 0.4s ease-in-out; }
  .categories ul.control {
    display: none; }
  .categories.no-description {
    height: 400px; }
  .categories > div {
    cursor: pointer;
    width: 700px;
    height: 640px;
    position: absolute;
    display: block;
    opacity: 0.5;
    left: 980px;
    transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out; }
    .categories > div.placeholder {
      display: none; }
    .categories > div > img {
      display: inline-block;
      width: 525px;
      height: 300px;
      margin-top: 100px;
      transition: width 0.4s ease-in-out, height 0.4s ease-in-out, margin-top 0.4s ease-in-out, margin-left 0.4s ease-in-out; }
    .categories > div > h2 {
      margin-top: 22.5px;
      margin-bottom: 0;
      transform: translateX(0);
      font-size: 1.2rem;
      transition: font-size 0.4s ease-in-out, transform 0.4s ease-in-out, margin-top 0.4s ease-in-out;
      line-height: normal; }
      .categories > div > h2 > span {
        text-align: center;
        transform: translateX(0);
        display: inline-block;
        transition: transform 0.4s ease-in-out, right 0.4s ease-in-out; }
    .categories > div > div p, .categories > div > div a {
      padding-top: 20px;
      margin-bottom: 0;
      opacity: 0;
      transition: opacity 0.4s ease-in-out; }
    .categories > div > div p {
      width: 440px;
      margin-left: auto;
      margin-right: auto; }
    .categories > div.left {
      opacity: 0.5;
      left: -560px; }
      .categories > div.left > img {
        margin-left: 175px; }
      .categories > div.left > h2 {
        transform: translateX(100%); }
        .categories > div.left > h2 > span {
          transform: translateX(-100%); }
    .categories > div.active {
      cursor: auto;
      left: 210px;
      opacity: 1; }
      .categories > div.active img {
        width: 700px;
        height: 400px;
        margin-top: 0; }
      .categories > div.active > h2 {
        margin-top: 45px;
        transform: translateX(50%);
        font-size: 2rem; }
        .categories > div.active > h2 > span {
          text-align: center;
          transform: translateX(-50%); }
      .categories > div.active > div p, .categories > div.active > div a {
        opacity: 1; }

.pillars {
  display: flex;
  margin: 80px auto 100px auto;
  justify-content: space-between;
  width: 960px; }
  .pillars > div h2 {
    width: 280px;
    margin: 40px auto 0 auto; }
  .pillars > div p, .pillars > div a {
    padding-top: 30px;
    margin-bottom: 0; }
  .pillars > div p {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto; }

.flagship {
  position: relative;
  margin: 45px 140px 80px 140px; }
  .flagship img {
    width: 980px;
    height: 560px; }
  .flagship > div {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 560px;
    height: 320px;
    left: 210px;
    top: 120px;
    padding: 70px 70px 70px 70px;
    background-color: #ffffff; }
    .flagship > div h2, .flagship > div p {
      margin-bottom: 25px; }
    .flagship > div a {
      padding-top: 0; }

.widget {
  position: fixed;
  z-index: 1030;
  display: flex;
  align-items: center;
  bottom: 30px;
  right: 30px;
  width: 402px;
  height: 202px;
  border: 1px #d3d3d3 solid;
  background-color: #ffffff;
  padding: 30px 30px 30px 150px;
  overflow: hidden; }
  .widget span.cancel {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px; }
  .widget img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 200px; }
  .widget h3 {
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 20px; }
  .widget p {
    margin-bottom: 10px; }

.one-column {
  padding-top: 55px;
  padding-right: 140px;
  padding-left: 140px; }
  .one-column > div:first-child {
    text-align: center;
    padding-bottom: 50px; }
  .one-column > div:last-child {
    text-align: center; }
    .one-column > div:last-child a {
      margin-top: 40px;
      margin-bottom: 60px; }

.three-columns {
  padding: 55px 140px; }
  .three-columns > div:first-child {
    text-align: center;
    padding-bottom: 20px; }
  .three-columns > div:last-child {
    display: flex; }
    .three-columns > div:last-child ul.control {
      display: none; }
    .three-columns > div:last-child > div {
      width: 280px;
      margin-right: 70px; }
      .three-columns > div:last-child > div:last-child {
        margin-right: 0; }
      .three-columns > div:last-child > div.placeholder {
        display: none; }
      .three-columns > div:last-child > div img {
        display: block;
        margin: 35px auto; }
      .three-columns > div:last-child > div h3 {
        text-transform: uppercase;
        margin-bottom: 1rem;
        letter-spacing: 0.2em; }
      .three-columns > div:last-child > div > div {
        display: block;
        position: relative;
        padding-right: 15px;
        height: 250px;
        overflow: auto; }
        .three-columns > div:last-child > div > div p {
          line-height: normal;
          margin-bottom: 1.3rem;
          letter-spacing: 0.04em; }

.four-columns {
  padding-top: 55px;
  padding-right: 140px;
  padding-left: 140px; }
  .four-columns [type="radio"]:not(.selector) {
    display: none; }
  .four-columns > div:first-child {
    text-align: center;
    padding-bottom: 60px; }
  .four-columns > div:last-child {
    display: flex;
    flex-flow: row wrap;
    justify-content: center; }
    .four-columns > div:last-child > div {
      padding-bottom: 60px;
      width: 240px;
      position: relative; }
      .four-columns > div:last-child > div > div {
        text-align: center; }
        .four-columns > div:last-child > div > div > div {
          left: 50%;
          transform: translateX(-50%);
          background-color: rgba(20, 63, 160, 0.8);
          position: absolute;
          opacity: 0;
          transition: opacity 0.4s ease-in-out; }
          .four-columns > div:last-child > div > div > div ul {
            display: flex;
            flex-flow: column nowrap;
            justify-content: center;
            padding-left: 0;
            height: 100%; }
            .four-columns > div:last-child > div > div > div ul li {
              display: block;
              text-align: center;
              margin-top: 10px;
              margin-bottom: 10px; }
              .four-columns > div:last-child > div > div > div ul li a {
                color: #ffffff;
                border-bottom-color: #ffffff; }
      .four-columns > div:last-child > div:hover > div > div {
        opacity: 1; }
      .four-columns > div:last-child > div > h3 {
        padding-top: 30px;
        text-align: center; }

div.news {
  display: grid;
  grid-template-columns: 33% 33% auto;
  margin-left: 140px;
  margin-right: 70px; }
  div.news .card {
    width: 350px;
    padding-bottom: 110px;
    padding-right: 70px; }
    div.news .card img {
      margin-bottom: 30px; }
    div.news .card h3, div.news .card h2 {
      text-align: center;
      margin-bottom: 30px; }
    div.news .card h3 {
      font-family: "Gill Sans Light"; }
    div.news .card a {
      padding-top: 0; }

/*
 * Container style
 */
.ps__thumb-x, .ps__thumb-y {
  background-color: #d3d3d3;
  border-radius: 13px;
  border: 4px solid #ffffff;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  position: absolute; }

.ps__thumb-x {
  height: 13px;
  bottom: -6px; }

.ps__thumb-y {
  width: 13px;
  right: -6px; }

.ps__rail-x, .ps__rail-y {
  display: none;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  position: absolute; }

.ps__rail-x {
  height: 1px;
  bottom: 2px; }
  .ps--active-x > .ps__rail-x {
    display: block;
    background-color: #d3d3d3; }
  .ps__rail-x:hover > .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #868b95; }

.ps__rail-y {
  width: 1px;
  right: 2px; }
  .ps--active-y > .ps__rail-y {
    display: block;
    background-color: #d3d3d3; }
  .ps__rail-y:hover > .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #868b95; }

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto; }
  .ps .ps__rail-x:hover, .ps .ps__rail-y:hover, .ps .ps__rail-x:focus, .ps .ps__rail-y:focus, .ps .ps__rail-x.ps--clicking, .ps .ps__rail-y.ps--clicking {
    background-color: #868b95; }

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important; } }
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important; } }
footer {
  margin-right: 0;
  margin-left: 0;
  width: 100%; }
  footer .blue_ribbon {
    padding-top: 50px;
    padding-bottom: 50px;
    height: auto;
    background-color: #143fa0;
    color: #ffffff; }
    footer .blue_ribbon h2 {
      letter-spacing: 0.02em; }
    footer .blue_ribbon .grid:first-child {
      padding-bottom: 40px; }
    footer .blue_ribbon .grid:last-child {
      padding-top: 40px; }
  footer .white-ribbon {
    padding-top: 40px;
    padding-bottom: 50px;
    background-color: #ffffff; }
    footer .white-ribbon ul {
      padding-top: 35px;
      padding-left: 0; }
      footer .white-ribbon ul li {
        display: inline-block;
        margin-left: 30px; }
        footer .white-ribbon ul li a.bouton {
          font-family: "Gill Sans Regular";
          padding-bottom: 3px;
          padding-left: 0;
          padding-right: 0;
          background-color: transparent;
          border-bottom: #143fa0 solid 2px;
          text-decoration: none; }
        footer .white-ribbon ul li:first-child {
          margin-left: 0; }
    footer .white-ribbon .subscribe {
      margin-bottom: 2rem; }
  footer .gray-ribbon {
    display: flex;
    padding-right: 20px;
    padding-left: 20px;
    color: #868b95;
    background-color: #f7f7f7; }
    footer .gray-ribbon div {
      font-family: "Gill Sans Regular";
      letter-spacing: 0;
      display: flex;
      align-items: center;
      margin-top: 10px;
      margin-bottom: 10px;
      height: 20px; }
      footer .gray-ribbon div:nth-child(2) {
        flex-grow: 1;
        order: 0;
        margin-left: 25px;
        padding-left: 25px;
        border-left: 1px #d3d3d3 solid; }
      footer .gray-ribbon div ul {
        padding-top: 0;
        padding-left: 0;
        margin-bottom: 0; }
        footer .gray-ribbon div ul li {
          display: inline-block;
          padding-left: 10px;
          padding-right: 10px; }
          footer .gray-ribbon div ul li a {
            font-family: inherit;
            letter-spacing: inherit;
            color: #868b95;
            text-decoration: none;
            transition: color 0.4s ease-in-out; }

.block {
  display: inline-block; }
  .block.homepage.visual {
    width: 560px;
    height: 760px; }
  .block.homepage.pillar {
    width: 420px;
    height: 350px; }
  .block.homepage.sticker {
    width: 180px;
    height: 360px; }
  .block.cover.homepage {
    width: 490px;
    height: 700px; }
  .block.main.product {
    width: 560px;
    height: 760px; }
    .block.main.product.square {
      height: 560px;
      margin-bottom: 70px; }
  .block.package.catalog {
    width: 280px;
    height: 500px; }
    .block.package.catalog.large {
      width: 490px;
      height: 490px; }
  .block.package.suggestion {
    width: 225px;
    height: 400px; }
  .block.package.homepage {
    width: 210px;
    height: 375px; }
  .block.package.checkout {
    width: 140px;
    height: 250px; }
  .block.package.cap {
    width: 210px;
    height: 210px; }
  .block.image.generic1 {
    width: 175px;
    height: 175px; }
  .block.image.generic1x2 {
    width: 350px;
    height: 350px; }
  .block.image.generic2 {
    width: 490px;
    height: 600px; }
  .block.image.generic3 {
    width: 490px;
    height: 600px; }
  .block.image.generic4 {
    width: 420px;
    height: 500px; }
  .block.image.generic5 {
    width: 420px;
    height: 450px; }
  .block.image.news {
    width: 280px;
    height: 370px; }
  .block.image.cover {
    width: 980px;
    height: 560px; }
  .block.image.gallery {
    margin-bottom: 0; }
    .block.image.gallery.big {
      width: 840px;
      height: 600px; }
    .block.image.gallery.mini {
      width: 720px;
      height: 500px; }
    .block.image.gallery.press {
      width: 480px;
      height: 640px; }
  .block.image.portrait {
    border-radius: 100%;
    width: 180px;
    height: 180px; }

.perfumes {
  margin: 0 auto 120px auto;
  width: 840px; }

.big-sticker {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px; }
  .big-sticker > div {
    position: relative;
    display: block;
    height: 500px;
    width: calc(50% - 0.01px); }
    .big-sticker > div:first-child img {
      position: absolute;
      right: 0;
      opacity: 0;
      transition: opacity 0.4s ease-in-out; }
      .big-sticker > div:first-child img:first-child {
        opacity: 1; }
    .big-sticker > div:last-child {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      .big-sticker > div:last-child > div {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 35px;
        height: 420px;
        width: 420px;
        border-radius: 100%;
        background-color: #ffffff;
        transform: translateX(-70px);
        transition: height 0.4s ease-in-out, width 0.4s ease-in-out, margin 0.4s ease-in-out, padding 0.4s ease-in-out; }
        .big-sticker > div:last-child > div.drawer {
          display: none; }
        .big-sticker > div:last-child > div > div {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
          .big-sticker > div:last-child > div > div > h3 {
            font-family: "Gill Sans Light";
            letter-spacing: 0.1em; }
          .big-sticker > div:last-child > div > div > h2 {
            margin-top: 0; }
          .big-sticker > div:last-child > div > div > p {
            text-align: center;
            margin: 16px 0;
            width: 280px; }
  .big-sticker.reverse {
    flex-direction: row-reverse; }
    .big-sticker.reverse > div:first-child img {
      position: absolute;
      right: auto;
      left: 0; }
    .big-sticker.reverse > div:last-child {
      justify-content: flex-end; }
      .big-sticker.reverse > div:last-child > div {
        transform: translateX(70px); }
  .big-sticker:hover > div:first-child img {
    opacity: 1; }
  .big-sticker:hover > div:last-child > div {
    margin: 35px;
    padding: 0;
    height: 350px;
    width: 350px; }

ul.collection {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 45px;
  font-family: "Gill Sans Regular";
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #d3d3d3; }
  ul.collection li {
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    transition: color 0.4s ease-in-out; }
    ul.collection li a {
      font-family: "Gill Sans Regular";
      font-size: 1.3rem;
      letter-spacing: 0.04em;
      color: #d3d3d3;
      text-decoration: none;
      transition: color 0.4s ease-in-out; }
    ul.collection li:hover {
      color: #868b95; }
      ul.collection li:hover a {
        color: #868b95; }
    ul.collection li.active {
      cursor: auto;
      color: #143fa0; }
      ul.collection li.active a {
        color: #143fa0; }

.direction ul.collection {
  margin-bottom: 80px; }

/*
@keyframes ro {
  0% {
    background-color: rgba(255, 255, 0, 0.25);
  }
  25% {
    background-color: rgba(255, 255, 0, 0.0);
  }
  100% {
    background-color: rgba(255, 255, 0, 0.0);
  }
}

*/
.items {
  margin-top: 40px;
  margin-left: 140px;
  margin-right: 140px; }
  .items ul.control {
    display: none; }
  .items > div > div {
    position: relative;
    margin-bottom: 50px;
    text-align: center; }
    .items > div > div img:not(:nth-child(1)) {
      position: absolute;
      top: 0;
      left: 50%;
      opacity: 0;
      transform: translateX(-50%);
      transition: opacity 0.4s ease-in-out; }
      .items > div > div img:not(:nth-child(1)):hover {
        opacity: 1; }
      .items > div > div img:not(:nth-child(1)).reveal {
        opacity: 1; }
    .items > div > div > div, .items > div > div > a > div {
      display: inline-block;
      height: 80px; }
      .items > div > div > div h2, .items > div > div > a > div h2 {
        font-size: 1.4rem;
        color: #212121;
        margin-top: 20px;
        margin-bottom: 5px; }
      .items > div > div > div h3, .items > div > div > a > div h3 {
        color: #868b95;
        margin-top: 0; }
        .items > div > div > div h3.price, .items > div > div > a > div h3.price {
          color: #143fa0;
          font-size: 1.2rem;
          font-weight: normal;
          font-style: italic; }
    .items > div > div.new:after {
      right: 30px;
      top: 10px;
      width: 90px;
      height: 90px;
      display: inline-block;
      position: absolute;
      content: "";
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 100%;
      background-image: url(../img/picto/NEW_CREATION_EN.svg); }
    .items > div > div.lang-fr:after {
      background-image: url(../img/picto/NEW_CREATION_FR.svg); }
    .items > div > div.placeholder {
      display: none; }

.shop-collection {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 60px 12px 60px;
  border: 1px solid #143fa0;
  font-family: "Gill Sans Regular";
  letter-spacing: 0.2em;
  text-transform: uppercase; }

div.product > div > div:first-child {
  text-align: right;
  margin-left: 80px;
  margin-right: -80px; }
div.product > div > div:last-child {
  padding-left: 160px;
  padding-right: 120px; }
  div.product > div > div:last-child h2.name {
    margin-top: 65px;
    margin-bottom: 5px;
    font-size: 2.2rem;
    letter-spacing: 0.04em; }
  div.product > div > div:last-child h2.price {
    letter-spacing: 0.04em; }
  div.product > div > div:last-child h2 + p {
    font-family: "Gill Sans Regular";
    color: #868b95;
    margin-top: 0;
    margin-bottom: 25px; }
    div.product > div > div:last-child h2 + p + p {
      margin-bottom: 35px; }
    div.product > div > div:last-child h2 + p + form p {
      margin-bottom: 35px; }
  div.product > div > div:last-child span.button {
    display: block;
    margin-bottom: 30px; }
  div.product > div > div:last-child div.variant {
    margin-bottom: 15px; }
    div.product > div > div:last-child div.variant > .selector {
      margin-top: 3px; }
    div.product > div > div:last-child div.variant > .icon {
      margin-top: 2px; }
    div.product > div > div:last-child div.variant > .shipping {
      position: relative;
      display: inline-block;
      margin-left: 15px;
      padding-left: 15px;
      padding-top: 4px;
      font-family: "Gill Sans Regular";
      letter-spacing: 0;
      color: #868b95; }
      div.product > div > div:last-child div.variant > .shipping:after {
        left: 0;
        top: 6px;
        position: absolute;
        content: '';
        display: inline-block;
        height: 14px;
        border-left: 1px #d3d3d3 solid; }
  div.product > div > div:last-child .selector > a {
    display: inline-block;
    padding-right: 15px;
    margin-right: 15px; }
  div.product > div > div:last-child .selector + h2 {
    position: relative;
    margin: 0 15px 0 0; }
    div.product > div > div:last-child .selector + h2:after {
      top: 6px;
      left: -15px;
      position: absolute;
      content: '';
      display: inline-block;
      height: 14px;
      border-left: 1px #d3d3d3 solid; }
  div.product > div > div:last-child a.submit {
    margin-top: 5px; }
div.product ul.details {
  display: block;
  padding-left: 0;
  margin-bottom: 20px; }
  div.product ul.details li {
    display: block;
    position: relative;
    border-bottom: 1px #d3d3d3 solid;
    width: 350px; }
    div.product ul.details li:first-child {
      border-top: 1px #d3d3d3 solid; }
    div.product ul.details li [type="radio"]:not(.selector) {
      position: absolute;
      left: -9999px; }
      div.product ul.details li [type="radio"]:not(.selector) + label {
        font-family: "Gill Sans Regular";
        font-size: 1.2rem;
        padding-top: 8px;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.2em; }
        div.product ul.details li [type="radio"]:not(.selector) + label:after {
          position: absolute;
          top: 16px;
          right: 10px;
          content: "+";
          font-size: 1.5rem;
          opacity: 1;
          transition: opacity 0.4s ease-in-out; }
        div.product ul.details li [type="radio"]:not(.selector) + label + div {
          overflow-y: hidden;
          transition: height 0.4s ease-in-out, margin-bottom 0.4s ease-in-out, opacity 0.4s ease-in-out; }
          div.product ul.details li [type="radio"]:not(.selector) + label + div p {
            padding-bottom: 20px;
            padding-right: 35px; }
      div.product ul.details li [type="radio"]:not(.selector):not(:checked) + label + div {
        height: 0 !important;
        opacity: 0; }
      div.product ul.details li [type="radio"]:not(.selector):checked + label:after {
        opacity: 0; }
      div.product ul.details li [type="radio"]:not(.selector):checked + label + div {
        opacity: 1; }
div.product.product-type-variable > div > div > img:not(:nth-child(1)) {
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.4s ease-in-out; }
  div.product.product-type-variable > div > div > img:not(:nth-child(1)):hover {
    opacity: 1; }
  div.product.product-type-variable > div > div > img:not(:nth-child(1)).reveal {
    opacity: 1; }

.white_separator {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  text-align: center; }
  .white_separator h2 {
    margin: 0;
    color: #212121; }

.pagecover {
  position: relative;
  margin-bottom: -70px; }
  .pagecover > div:first-child {
    display: inline-block;
    width: 980px;
    height: 560px;
    position: relative;
    left: 50%;
    transform: translateX(-50%); }
  .pagecover > div:last-child {
    display: inline-block;
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-70px) translateY(-90px);
    text-align: left; }
    .pagecover > div:last-child > div > div {
      display: block;
      background-color: #ffffff;
      width: 490px;
      height: auto;
      padding: 60px 70px; }
      .pagecover > div:last-child > div > div h2 {
        margin-bottom: 20px; }

.reverse .pagecover > div:last-child {
  transform: translateX(-420px) translateY(-90px); }

.afterpagecover {
  display: block;
  margin-left: 140px;
  width: 420px;
  height: 55px;
  padding-bottom: 55px; }
  .afterpagecover .icon.big.downarrow {
    margin-top: 0;
    margin-bottom: 0;
    width: 38px;
    height: 38px; }

.reverse .afterpagecover {
  margin-left: auto;
  margin-right: 140px; }

.illustration {
  padding-left: 140px;
  padding-right: 280px; }
  .illustration h2 {
    margin-bottom: 20px; }
  .illustration > div {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px; }
    .illustration > div:first-child {
      padding-top: 120px; }
    .illustration > div:last-child {
      padding-bottom: 120px; }
    .illustration > div > div {
      flex: 1;
      text-align: right; }
      .illustration > div > div:first-child {
        display: flex;
        align-items: center; }
      .illustration > div > div > div {
        text-align: left;
        padding-left: 70px; }
        .illustration > div > div > div a.button {
          padding-top: 20px; }
  .illustration > div:nth-child(odd) > div:first-child > div {
    text-align: right; }
  .illustration > div:nth-child(odd) > div:last-child {
    text-align: right; }
  .illustration > div:nth-child(even) {
    flex-direction: row-reverse; }
  .illustration.large {
    padding-right: 140px; }
    .illustration.large > div:nth-child(odd) > div:first-child > div {
      padding-left: 140px; }
    .illustration.large > div:nth-child(even) > div:first-child > div {
      padding-left: 70px;
      padding-right: 70px; }
    .illustration.large > div.shift > div:first-child {
      flex: 4; }
      .illustration.large > div.shift > div:first-child > div {
        padding-left: 210px; }
    .illustration.large > div.shift > div:last-child {
      flex: 3; }

.reverse .illustration {
  padding-left: 280px;
  padding-right: 140px; }
  .reverse .illustration > div > div > div {
    padding-left: 0;
    padding-right: 70px; }
  .reverse .illustration > div:nth-child(odd) {
    flex-direction: row-reverse; }
    .reverse .illustration > div:nth-child(odd) > div:first-child > div {
      text-align: left; }
    .reverse .illustration > div:nth-child(odd) > div:last-child {
      text-align: left; }
  .reverse .illustration > div:nth-child(even) {
    flex-direction: row; }
    .reverse .illustration > div:nth-child(even) > div:first-child > div {
      text-align: right; }
  .reverse .illustration.large {
    padding-left: 140px; }
    .reverse .illustration.large > div:nth-child(odd) > div:first-child > div {
      padding-left: 0;
      padding-right: 140px; }
    .reverse .illustration.large > div:nth-child(even) > div:first-child > div {
      padding-left: 70px; }
    .reverse .illustration.large > div.shift > div:first-child > div {
      padding-left: 0;
      padding-right: 210px; }

.carousel {
  margin: 50px auto 45px auto;
  position: relative;
  display: block; }
  .carousel.slim {
    margin-right: 140px;
    margin-left: 140px; }
  .carousel > div {
    opacity: 0; }
  .carousel > .inner {
    opacity: 1;
    margin-left: 40px;
    margin-right: 40px;
    position: relative;
    overflow: hidden;
    transition: height 0.4s ease-in-out; }
    .carousel > .inner > .slide {
      text-align: center;
      width: 100%;
      margin: auto;
      position: absolute;
      top: 0;
      left: 100%;
      opacity: 0;
      transition: opacity 0.4s ease-in-out, left 0.4s ease-in-out; }
      .carousel > .inner > .slide.left {
        left: -100%; }
      .carousel > .inner > .slide.active {
        left: 0;
        opacity: 1; }
      .carousel > .inner > .slide.placeholder {
        position: relative;
        left: -100%; }
      .carousel > .inner > .slide.is-dragging {
        transition: none; }
  .carousel > .prev, .carousel > .next {
    opacity: 1;
    position: absolute;
    height: 25%;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    font-family: "Gill Sans Regular";
    font-size: 2.4rem;
    color: #143fa0;
    cursor: pointer; }
    .carousel > .prev > div, .carousel > .next > div {
      text-align: center;
      position: absolute;
      top: 50%;
      display: block;
      width: 40px;
      height: 40px;
      background: url(../img/picto/ARROW_SHOW.svg) no-repeat;
      background-size: 40px; }
  .carousel > .prev {
    left: 0; }
    .carousel > .prev > div {
      background-position-x: 0;
      transform: translateY(-50%) translateX(-50px) rotate(90deg); }
  .carousel > .next {
    right: 0; }
    .carousel > .next > div {
      background-position-x: 100%;
      transform: translateY(-50%) translateX(50px) rotate(270deg); }
  .carousel > ul.control {
    display: block;
    padding-left: 0;
    margin-left: 5%;
    width: 90%;
    margin-right: 5%;
    height: 30px;
    position: absolute;
    bottom: -50px;
    text-align: center;
    /* li {
      position: relative;
      display: inline-block;
      width: (30px/2);
      color: $color_gray_light;
      font-size: 2rem;
      transition: color 0.4s ease-in-out;
      cursor: pointer;
      &.active {
        color: $color_blue;
      }
    } */ }
    .carousel > ul.control li {
      position: relative;
      display: inline-block;
      padding: 7.5px;
      color: #d3d3d3;
      cursor: pointer; }
      .carousel > ul.control li:before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 6px;
        background-color: #d3d3d3;
        opacity: 1;
        transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out; }
      .carousel > ul.control li.active:before {
        background-color: #143fa0; }
    .carousel > ul.control.is-dragging li:before {
      opacity: 0; }
  .carousel.maison {
    height: 450px;
    margin-bottom: 20px; }
    .carousel.maison > .inner > .slide {
      display: flex;
      justify-content: center; }
      .carousel.maison > .inner > .slide > div:first-child {
        display: flex !important;
        flex-direction: column;
        justify-content: center; }
      .carousel.maison > .inner > .slide h3 {
        font-size: 1.8rem; }
      .carousel.maison > .inner > .slide p {
        padding-top: 20px;
        padding-bottom: 20px;
        line-height: normal; }
      .carousel.maison > .inner > .slide a {
        margin-top: 0;
        margin-bottom: 0; }
  .carousel.calendar {
    margin-top: 50px;
    margin-bottom: 25px;
    height: 470px;
    width: 1060px; }
    .carousel.calendar > ul.control {
      display: none; }
  .carousel .calendar {
    display: flex;
    height: 510px; }
    .carousel .calendar > div {
      flex-grow: 1;
      width: calc(100% / 7); }
      .carousel .calendar > div h4, .carousel .calendar > div h5 {
        display: block;
        text-align: center;
        font-family: "Gill Sans Regular";
        font-size: 1.2rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        line-height: normal;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #ffffff; }
      .carousel .calendar > div h5 {
        background-color: #868b95;
        color: #ffffff; }
      .carousel .calendar > div [type="radio"]:not(.selector), .carousel .calendar > div label {
        display: none; }
      .carousel .calendar > div > div:nth-last-child(1) > div {
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: center; }
        .carousel .calendar > div > div:nth-last-child(1) > div > div {
          width: 70%;
          margin-left: auto;
          margin-right: auto;
          margin-top: 10px;
          padding-top: 10px;
          padding-bottom: 10px;
          background-color: #143fa0;
          color: white;
          font-family: "Gill Sans Regular";
          font-size: 1.2rem;
          letter-spacing: 0.2em;
          cursor: pointer;
          box-shadow: inset 1px 1px transparent, inset -1px -1px transparent;
          transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out, background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out; }
          .carousel .calendar > div > div:nth-last-child(1) > div > div.unavailable {
            cursor: auto;
            opacity: 0; }
      .carousel .calendar > div:nth-child(odd) > div {
        background-color: #f7f7f7; }
    .carousel .calendar.muted > div > div:nth-last-child(1) > div > div {
      color: #d3d3d3;
      background-color: rgba(20, 63, 160, 0);
      box-shadow: inset 1px 1px #d3d3d3, inset -1px -1px #d3d3d3; }
      .carousel .calendar.muted > div > div:nth-last-child(1) > div > div.selected {
        background-color: #143fa0;
        color: white;
        box-shadow: none; }
      .carousel .calendar.muted > div > div:nth-last-child(1) > div > div.unavailable {
        cursor: auto;
        opacity: 0;
        box-shadow: none; }

.tiny-carousel ul.control {
  display: none; }

.appointment {
  overflow-y: hidden;
  transition: height 0.4s ease-in-out; }
  .appointment.collapsed {
    height: 0 !important; }
  .appointment > div {
    padding-top: 40px; }
    .appointment > div > div > div {
      display: inline-block;
      margin-top: 30px;
      margin-bottom: 30px;
      padding: 15px 60px 15px 60px;
      border: 1px solid #143fa0;
      font-family: "Gill Sans Regular";
      letter-spacing: 0.2em;
      text-transform: uppercase; }
    .appointment > div > div > a {
      margin-bottom: 20px; }

.sorter {
  margin-right: 140px;
  margin-left: 140px; }
  .sorter:last-child {
    margin-bottom: 45px; }
  .sorter .article {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding: 40px 70px;
    background-color: #ffffff;
    color: #212121; }
    .sorter .article span.cancel {
      cursor: pointer;
      position: absolute;
      top: 20px;
      right: 20px;
      width: 15px;
      height: 15px; }
    .sorter .article > div {
      display: flex;
      align-items: center;
      width: 50%; }
      .sorter .article > div:last-child {
        padding-left: 140px;
        text-align: right; }
      .sorter .article > div > div {
        width: 50%; }
        .sorter .article > div > div h3 {
          margin-top: 0;
          margin-bottom: 0;
          font-size: 1.4rem;
          letter-spacing: 0.2rem; }
          .sorter .article > div > div h3 > a {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            text-decoration: none;
            letter-spacing: inherit; }
          .sorter .article > div > div h3 > span, .sorter .article > div > div h3 > span > span {
            padding-left: 0;
            color: inherit;
            font-family: inherit; }
        .sorter .article > div > div p {
          margin-top: 1rem; }
        .sorter .article > div > div [type="text"], .sorter .article > div > div textarea {
          margin: 0 10px;
          padding: 0 5px;
          vertical-align: top;
          display: inline-block;
          border: none;
          width: 60px;
          height: 30px;
          color: #212121;
          background-color: #f7f7f7;
          font-family: "Gill Sans Regular";
          text-align: center;
          font-size: 1.4rem;
          letter-spacing: 0.2em; }
        .sorter .article > div > div .qty {
          display: inline-flex;
          align-items: center;
          height: 30px;
          cursor: pointer; }
  .sorter .total {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 5px;
    padding: 25px 70px 10px 70px;
    background-color: #ffffff;
    color: #212121; }
    .sorter .total:nth-last-child(2) {
      padding-bottom: 30px; }
    .sorter .total > div {
      width: 50%;
      padding-top: 12.5px;
      padding-bottom: 12.5px; }
      .sorter .total > div h3 {
        position: relative;
        margin-bottom: 0;
        margin-top: 0;
        height: 30px;
        font-size: 1.4rem; }
        .sorter .total > div h3 > span {
          position: absolute;
          right: 0;
          font-family: "Gill Sans Regular";
          color: #212121;
          letter-spacing: 0.2rem; }
          .sorter .total > div h3 > span span {
            font-family: inherit;
            color: inherit;
            letter-spacing: inherit; }
      .sorter .total > div div.selector {
        background-color: #f7f7f7; }
      .sorter .total > div .grand-total {
        display: flex;
        align-items: flex-end;
        padding-top: 24px; }
        .sorter .total > div .grand-total h3 {
          text-transform: uppercase;
          letter-spacing: 0.2em;
          vertical-align: bottom;
          height: auto;
          width: 50%; }
          .sorter .total > div .grand-total h3 span {
            letter-spacing: 0.04em;
            padding-left: 0.5rem;
            text-transform: lowercase;
            font-family: "Gill Sans Light";
            color: #868b95;
            position: relative;
            right: auto; }
          .sorter .total > div .grand-total h3 strong {
            font-weight: normal; }
          .sorter .total > div .grand-total h3:last-child {
            text-align: right;
            font-size: 2rem;
            color: #143fa0; }
            .sorter .total > div .grand-total h3:last-child * {
              font-family: "Gill Sans Regular";
              letter-spacing: 0.2em;
              font-size: 2rem;
              color: #143fa0; }
      .sorter .total > div a.submit {
        width: 100%;
        margin-bottom: 0; }
      .sorter .total > div:nth-child(3) {
        height: 40px; }
  .sorter .section {
    position: relative;
    margin-top: 5px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #ffffff;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, margin 0.4s ease-in-out; }
    .sorter .section .grid.with-padding-top {
      padding-top: 25px; }
    .sorter .section .grid.with-padding-bottom {
      padding-bottom: 40px; }
    .sorter .section.down-margin {
      margin-bottom: 40px; }
    .sorter .section > h2 {
      margin-top: 40px;
      margin-bottom: 40px;
      color: #212121;
      text-align: center; }
    .sorter .section h3.title, .sorter .section > h3 {
      position: relative;
      display: inline-block;
      font-size: 1.4rem;
      letter-spacing: 0.2em;
      padding-left: 70px;
      padding-right: 70px;
      margin-bottom: 0; }
      .sorter .section h3.title span.new, .sorter .section > h3 span.new {
        position: absolute;
        right: 0;
        top: -10px; }
      .sorter .section h3.title label, .sorter .section > h3 label {
        margin: 0; }
    .sorter .section h3.title {
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 20px; }
    .sorter .section [type="checkbox"].opener, .sorter .section [type="radio"].opener {
      position: absolute;
      left: -9999px; }
      .sorter .section [type="checkbox"].opener + label, .sorter .section [type="radio"].opener + label {
        display: inline-block;
        position: absolute;
        top: 5px;
        right: 5px;
        padding: 10px 10px;
        width: 35px;
        height: 35px;
        margin-top: 0;
        margin-bottom: 0;
        z-index: 1020;
        cursor: pointer;
        transition: transform 0.4s ease-in-out; }
        .sorter .section [type="checkbox"].opener + label + div .vcenter, .sorter .section [type="radio"].opener + label + div .vcenter {
          display: flex; }
          .sorter .section [type="checkbox"].opener + label + div .vcenter > div, .sorter .section [type="radio"].opener + label + div .vcenter > div {
            margin-top: auto;
            margin-bottom: auto; }
        .sorter .section [type="checkbox"].opener + label + div .hcenter, .sorter .section [type="radio"].opener + label + div .hcenter {
          display: flex; }
          .sorter .section [type="checkbox"].opener + label + div .hcenter > div, .sorter .section [type="radio"].opener + label + div .hcenter > div {
            margin-left: auto;
            margin-right: auto; }
        .sorter .section [type="checkbox"].opener + label + div .mr-quarter, .sorter .section [type="radio"].opener + label + div .mr-quarter {
          position: relative;
          left: -25%;
          transition: left 0.4s ease; }
          .sorter .section [type="checkbox"].opener + label + div .mr-quarter.delayed-unapply, .sorter .section [type="radio"].opener + label + div .mr-quarter.delayed-unapply {
            transition: left 0.4s ease-in-out 0.4s, padding-left 0.4s ease-in-out 0.4s; }
        .sorter .section [type="checkbox"].opener + label + div h3, .sorter .section [type="radio"].opener + label + div h3 {
          margin-top: 0;
          font-size: 1.3rem;
          line-height: 2.2rem; }
          .sorter .section [type="checkbox"].opener + label + div h3.text-uppercase, .sorter .section [type="radio"].opener + label + div h3.text-uppercase {
            letter-spacing: 0.2em; }
        .sorter .section [type="checkbox"].opener + label + div p, .sorter .section [type="radio"].opener + label + div p {
          margin-top: 0; }
      .sorter .section [type="checkbox"].opener + label + .collapsible, .sorter .section [type="checkbox"].opener + label + * .collapsible, .sorter .section [type="radio"].opener + label + .collapsible, .sorter .section [type="radio"].opener + label + * .collapsible {
        overflow-y: hidden;
        transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out; }
      .sorter .section [type="checkbox"].opener:not(:checked) + label + .collapsible, .sorter .section [type="checkbox"].opener:not(:checked) + label + * .collapsible, .sorter .section [type="radio"].opener:not(:checked) + label + .collapsible, .sorter .section [type="radio"].opener:not(:checked) + label + * .collapsible {
        height: 0 !important;
        opacity: 0; }
        .sorter .section [type="checkbox"].opener:not(:checked) + label + .collapsible.delayed-unapply, .sorter .section [type="checkbox"].opener:not(:checked) + label + * .collapsible.delayed-unapply, .sorter .section [type="radio"].opener:not(:checked) + label + .collapsible.delayed-unapply, .sorter .section [type="radio"].opener:not(:checked) + label + * .collapsible.delayed-unapply {
          transition: height 0.4s ease-in-out 0.4s, opacity 0.4s ease-in-out 0.4s; }
      .sorter .section [type="checkbox"].opener:checked + label, .sorter .section [type="radio"].opener:checked + label {
        -webkit-transform: rotate(180deg) scale(1);
        transform: rotate(180deg) scale(1); }
        .sorter .section [type="checkbox"].opener:checked + label + .collapsible, .sorter .section [type="checkbox"].opener:checked + label + * .collapsible, .sorter .section [type="radio"].opener:checked + label + .collapsible, .sorter .section [type="radio"].opener:checked + label + * .collapsible {
          opacity: 1; }
          .sorter .section [type="checkbox"].opener:checked + label + .collapsible.delayed-apply, .sorter .section [type="checkbox"].opener:checked + label + * .collapsible.delayed-apply, .sorter .section [type="radio"].opener:checked + label + .collapsible.delayed-apply, .sorter .section [type="radio"].opener:checked + label + * .collapsible.delayed-apply {
            transition: height 0.4s ease-in-out 0.4s, opacity 0.4s ease-in-out 0.4s; }
          .sorter .section [type="checkbox"].opener:checked + label + .collapsible.delayed-unapply, .sorter .section [type="checkbox"].opener:checked + label + * .collapsible.delayed-unapply, .sorter .section [type="radio"].opener:checked + label + .collapsible.delayed-unapply, .sorter .section [type="radio"].opener:checked + label + * .collapsible.delayed-unapply {
            transition: left 0.4s ease-in-out, padding-left 0.4s ease-in-out; }
        .sorter .section [type="checkbox"].opener:checked + label + div .mr-quarter, .sorter .section [type="radio"].opener:checked + label + div .mr-quarter {
          left: 0; }
          .sorter .section [type="checkbox"].opener:checked + label + div .mr-quarter.delayed-apply, .sorter .section [type="radio"].opener:checked + label + div .mr-quarter.delayed-apply {
            transition: left 0.4s ease-in-out 0.4s; }
          .sorter .section [type="checkbox"].opener:checked + label + div .mr-quarter.delayed-unapply, .sorter .section [type="radio"].opener:checked + label + div .mr-quarter.delayed-unapply {
            transition: left 0.4s ease-in-out; }
    .sorter .section .grid > div, .sorter .section .grid-3 > div {
      padding-top: 0;
      padding-left: 70px;
      padding-right: 70px; }
      .sorter .section .grid > div.no-left-padding, .sorter .section .grid-3 > div.no-left-padding {
        padding-left: 0; }
      .sorter .section .grid > div.no-right-padding, .sorter .section .grid-3 > div.no-right-padding {
        padding-right: 0; }
      .sorter .section .grid > div:not(:last-child), .sorter .section .grid-3 > div:not(:last-child) {
        border-right: 1px solid #d3d3d3; }
      .sorter .section .grid > div label.in_form, .sorter .section .grid-3 > div label.in_form {
        margin-top: 20px;
        font-family: "Gill Sans Regular";
        margin-bottom: 30px; }
      .sorter .section .grid > div input, .sorter .section .grid > div textarea, .sorter .section .grid-3 > div input, .sorter .section .grid-3 > div textarea {
        margin-bottom: 20px; }
      .sorter .section .grid > div h3 + input, .sorter .section .grid > div h3 + textarea, .sorter .section .grid-3 > div h3 + input, .sorter .section .grid-3 > div h3 + textarea {
        margin-top: 10px; }
      .sorter .section .grid > div div.selector, .sorter .section .grid-3 > div div.selector {
        margin-top: 10px;
        background-color: #f7f7f7; }
      .sorter .section .grid > div span.day, .sorter .section .grid > div span.month, .sorter .section .grid-3 > div span.day, .sorter .section .grid-3 > div span.month {
        position: relative;
        display: inline-block;
        margin-top: 10px;
        margin-right: 15px; }
        .sorter .section .grid > div span.day > input, .sorter .section .grid > div span.month > input, .sorter .section .grid-3 > div span.day > input, .sorter .section .grid-3 > div span.month > input {
          width: 50px; }
        .sorter .section .grid > div span.day:after, .sorter .section .grid > div span.month:after, .sorter .section .grid-3 > div span.day:after, .sorter .section .grid-3 > div span.month:after {
          position: absolute;
          top: 12px;
          right: -12px;
          color: #868b95;
          content: '/'; }
      .sorter .section .grid > div span.year, .sorter .section .grid-3 > div span.year {
        display: inline-block;
        margin-top: 10px; }
        .sorter .section .grid > div span.year > input, .sorter .section .grid-3 > div span.year > input {
          width: 70px; }
      .sorter .section .grid > div label[for="newsletter"], .sorter .section .grid-3 > div label[for="newsletter"] {
        margin-top: 15px;
        margin-bottom: 0; }
      .sorter .section .grid > div label[for="billing"], .sorter .section .grid-3 > div label[for="billing"] {
        margin-bottom: 10px; }
      .sorter .section .grid > div .submit, .sorter .section .grid-3 > div .submit {
        min-width: 0;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 15px; }
      .sorter .section .grid > div .address, .sorter .section .grid-3 > div .address {
        position: relative;
        padding: 20px 70px 20px 70px;
        margin-bottom: 10px;
        background-color: #f7f7f7; }
        .sorter .section .grid > div .address:first-child, .sorter .section .grid-3 > div .address:first-child {
          margin-top: 30px; }
        .sorter .section .grid > div .address span.new, .sorter .section .grid-3 > div .address span.new {
          position: absolute;
          top: 30px;
          right: 35px; }
        .sorter .section .grid > div .address label, .sorter .section .grid-3 > div .address label {
          font-family: "Gill Sans Regular";
          margin-bottom: 0; }
          .sorter .section .grid > div .address label.shift, .sorter .section .grid-3 > div .address label.shift {
            margin-left: -30px; }
        .sorter .section .grid > div .address > div, .sorter .section .grid-3 > div .address > div {
          margin-top: 5px;
          line-height: 1.5; }
        .sorter .section .grid > div .address a.edit, .sorter .section .grid-3 > div .address a.edit {
          display: inline-block;
          margin-bottom: 15px; }
      .sorter .section .grid > div .summary, .sorter .section .grid-3 > div .summary {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 25px;
        margin-bottom: 20px;
        padding: 20px 70px 20px 70px;
        border: 1px solid #d3d3d3; }
        .sorter .section .grid > div .summary > div, .sorter .section .grid-3 > div .summary > div {
          width: 50%;
          font-family: "Gill Sans Regular";
          color: #212121;
          line-height: 2.4em; }
          .sorter .section .grid > div .summary > div > span, .sorter .section .grid-3 > div .summary > div > span {
            padding-left: 4px;
            font-family: "Gill Sans Light";
            color: #868b95; }
            .sorter .section .grid > div .summary > div > span.amount, .sorter .section .grid-3 > div .summary > div > span.amount {
              font-family: "Gill Sans Regular";
              color: #212121; }
          .sorter .section .grid > div .summary > div:nth-child(even), .sorter .section .grid-3 > div .summary > div:nth-child(even) {
            text-align: right; }
          .sorter .section .grid > div .summary > div.grand-total, .sorter .section .grid-3 > div .summary > div.grand-total {
            font-size: 2rem;
            color: #143fa0; }
          .sorter .section .grid > div .summary > div:nth-last-child(1), .sorter .section .grid > div .summary > div:nth-last-child(2), .sorter .section .grid-3 > div .summary > div:nth-last-child(1), .sorter .section .grid-3 > div .summary > div:nth-last-child(2) {
            padding-top: 20px; }
      .sorter .section .grid > div .method, .sorter .section .grid-3 > div .method {
        padding: 20px 70px 10px 70px;
        margin-bottom: 10px;
        background-color: #f7f7f7; }
        .sorter .section .grid > div .method > div, .sorter .section .grid-3 > div .method > div {
          display: block;
          padding-top: 0;
          padding-bottom: 20px; }
          .sorter .section .grid > div .method > div ul, .sorter .section .grid-3 > div .method > div ul {
            display: block;
            justify-content: space-around;
            list-style-type: none;
            padding-left: 0; }
          .sorter .section .grid > div .method > div:first-child, .sorter .section .grid-3 > div .method > div:first-child {
            padding-top: 20px;
            font-family: "Gill Sans Regular";
            display: inline-flex;
            justify-content: space-between;
            align-items: center; }
            .sorter .section .grid > div .method > div:first-child > div label, .sorter .section .grid-3 > div .method > div:first-child > div label {
              padding-right: 10px; }
            .sorter .section .grid > div .method > div:first-child > div ul, .sorter .section .grid-3 > div .method > div:first-child > div ul {
              display: flex; }
              .sorter .section .grid > div .method > div:first-child > div ul li, .sorter .section .grid-3 > div .method > div:first-child > div ul li {
                display: inline-block;
                padding-left: 10px; }
    .sorter .section .grid.with-padding, .sorter .section .grid-3.with-padding {
      padding-left: 70px;
      padding-right: 70px; }
      .sorter .section .grid.with-padding > div, .sorter .section .grid-3.with-padding > div {
        padding-left: 0;
        padding-right: 0; }
    .sorter .section .grid.no-separator > div:not(:last-child), .sorter .section .grid-3.no-separator > div:not(:last-child) {
      border-right: none; }
    .sorter .section .grid.no-separator a.submit, .sorter .section .grid-3.no-separator a.submit {
      margin-top: 0;
      margin-bottom: 0; }
    .sorter .section .push-down {
      margin-top: 30px; }
    .sorter .section ul.listing {
      display: block;
      padding-top: 30px;
      padding-left: 140px;
      padding-right: 140px;
      margin-bottom: 0; }
      .sorter .section ul.listing li {
        display: block;
        position: relative;
        padding-bottom: 20px; }
        .sorter .section ul.listing li:last-child {
          padding-bottom: 0; }
        .sorter .section ul.listing li [type="radio"]:not(.selector) {
          position: absolute;
          left: -9999px; }
          .sorter .section ul.listing li [type="radio"]:not(.selector) + label {
            margin: 0;
            font-family: "Gill Sans Regular"; }
            .sorter .section ul.listing li [type="radio"]:not(.selector) + label:before {
              content: '+';
              position: absolute;
              left: -20px; }
            .sorter .section ul.listing li [type="radio"]:not(.selector) + label + div {
              overflow-y: hidden;
              transition: height 0.4s ease-in-out, margin-bottom 0.4s ease-in-out, opacity 0.4s ease-in-out; }
              .sorter .section ul.listing li [type="radio"]:not(.selector) + label + div p {
                padding-top: 15px;
                margin-bottom: 0; }
          .sorter .section ul.listing li [type="radio"]:not(.selector):not(:checked) + label + div {
            height: 0 !important;
            opacity: 0; }
          .sorter .section ul.listing li [type="radio"]:not(.selector):checked + label:before {
            content: "-"; }
          .sorter .section ul.listing li [type="radio"]:not(.selector):checked + label + div {
            opacity: 1; }
    .sorter .section address {
      padding-top: 20px;
      padding-bottom: 10px;
      font-style: normal; }
      .sorter .section address h3 i.icon {
        transform: translateY(5px);
        margin-left: 10px; }
      .sorter .section address p {
        padding-top: 0 !important;
        margin-bottom: 0; }
    .sorter .section.blue {
      background-color: #143fa0;
      color: #ffffff; }
      .sorter .section.blue address {
        padding: 0;
        margin: 0; }
        .sorter .section.blue address h3 {
          padding-top: 20px;
          padding-bottom: 10px; }
        .sorter .section.blue address p {
          padding-bottom: 2px; }
      .sorter .section.blue a {
        color: white;
        text-decoration: none; }
        .sorter .section.blue a:hover, .sorter .section.blue a:visited {
          color: white; }
    .sorter .section.editable .with-ruler {
      border-top: 5px solid #f7f7f7;
      padding-top: 35px; }
    .sorter .section.editable .add-toggable {
      opacity: 1;
      transition: opacity 0.4s ease-in-out; }
      .sorter .section.editable .add-toggable.transparent {
        opacity: 0; }
    .sorter .section.extra-margins {
      padding-top: 35px;
      margin-top: 10px;
      padding-bottom: 35px;
      margin-bottom: 10px; }
  .sorter .legals {
    padding-top: 60px;
    padding-bottom: 20px; }
    .sorter .legals div.slide {
      color: #868b95;
      text-align: center; }
      .sorter .legals div.slide:not(.placeholder) {
        padding-left: 35px;
        padding-right: 35px; }
        .sorter .legals div.slide:not(.placeholder):nth-child(2) {
          padding-left: 0; }
        .sorter .legals div.slide:not(.placeholder):last-child {
          padding-right: 0; }
      .sorter .legals div.slide.placeholder {
        display: none; }
      .sorter .legals div.slide h3 {
        color: #212121;
        margin-bottom: 20px;
        font-size: 1.4rem; }
      .sorter .legals div.slide ul {
        margin-top: 20px;
        padding-left: 0; }
        .sorter .legals div.slide ul li {
          display: inline-block;
          margin-left: 0;
          padding-left: 3px;
          padding-right: 3px; }
          .sorter .legals div.slide ul li:first-child {
            padding-left: 0; }
          .sorter .legals div.slide ul li:last-child {
            padding-right: 0; }
  .sorter .info {
    padding-top: 10px; }
    .sorter .info i.icon.osmologue {
      margin-right: 5px;
      transform: translateY(5px); }
  .sorter.contact .section .grid-3 h3 {
    margin-top: 20px; }
  .sorter.contact .section .grid {
    margin-top: 20px; }

.results .container {
  padding-bottom: 60px;
  text-align: center; }
.results p {
  color: #868b95;
  font-family: "Gill Sans Regular";
  padding-bottom: 1.5rem; }
.results .button {
  color: #212121;
  border-bottom-color: #212121; }
.results .white-ribbon .container {
  padding-top: 60px; }
.results .white-ribbon p {
  color: #212121; }
.results .white-ribbon a.button {
  margin-left: 10px;
  margin-left: 10px;
  color: #868b95;
  border-bottom-color: #868b95; }
  .results .white-ribbon a.button + button {
    margin-left: 10px;
    margin-left: 10px; }
.results .white-ribbon a:not([href]):not([tabindex]):hover {
  color: #868b95; }

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

.icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%; }
  .icon.big {
    width: 32px;
    height: 32px;
    margin: 0 4px 0 4px; }
  .icon:first-child {
    margin-left: 0; }
  .icon:last-child {
    margin-right: 0; }
  .icon.downarrow {
    margin-top: 15px;
    margin-bottom: 60px;
    background-size: 25%;
    background-image: url("../img/picto/ARROW.svg"); }
  .icon.facebook {
    background-image: url("../img/picto/FACEBOOK.svg"); }
  .icon.instagram {
    background-image: url("../img/picto/INSTA.svg"); }
  .icon.footer-cb {
    background-image: url("../img/picto/FOOTER_CB.svg"); }
  .icon.footer-paypal {
    background-image: url("../img/picto/FOOTER_PAYPAL.svg"); }
  .icon.footer-mastercard {
    background-image: url("../img/picto/FOOTER_MASTERCARD.svg"); }
  .icon.footer-visa {
    background-image: url("../img/picto/FOOTER_VISA.svg"); }
  .icon.footer-amex {
    background-image: url("../img/picto/FOOTER_AMEX.svg"); }
  .icon.footer-discovery {
    background-image: url("../img/picto/FOOTER_DISCOVERY.svg"); }
  .icon.payment {
    width: 45px;
    height: 45px; }
    .icon.payment.cb {
      background-image: url("../img/picto/PAYMENT_CB.svg"); }
    .icon.payment.paypal {
      background-image: url("../img/picto/PAYMENT_PAYPAL.svg"); }
    .icon.payment.mastercard {
      background-image: url("../img/picto/PAYMENT_MASTERCARD.svg"); }
    .icon.payment.visa {
      background-image: url("../img/picto/PAYMENT_VISA.svg"); }
    .icon.payment.amex {
      background-image: url("../img/picto/PAYMENT_AMEX.svg"); }
    .icon.payment.discovery {
      background-image: url("../img/picto/PAYMENT_DISCOVERY.svg"); }
  .icon.info {
    width: 20px;
    height: 20px;
    background-image: url("../img/picto/INFOS_LIEN.svg"); }
  .icon.cancel {
    width: 14px;
    height: 14px;
    background-image: url("../img/picto/X_QUIT.svg"); }
  .icon.qty_less {
    width: 20px;
    height: 20px;
    background-image: url("../img/picto/QTE_-.svg"); }
  .icon.qty_plus {
    width: 20px;
    height: 20px;
    background-image: url("../img/picto/QTE_+.svg"); }
  .icon.new {
    width: 40px;
    height: 40px;
    background-image: url("../img/picto/NEW.svg"); }
  .icon.colissimo {
    width: 115px;
    height: 115px;
    background-image: url("../img/picto/DELIVERY_COLISSIMO.svg"); }
  .icon.fedex {
    width: 115px;
    height: 115px;
    background-image: url("../img/picto/DELIVERY_FEDEX.svg"); }
  .icon.fedex2day {
    width: 115px;
    height: 115px;
    background-image: url("../img/picto/DELIVERY_FEDEX_express.svg"); }
  .icon.usps {
    width: 115px;
    height: 115px;
    background-image: url("../img/picto/DELIVERY_USPS.svg"); }
  .icon.flag_EU {
    width: 50px;
    height: 50px;
    background: url("../img/picto/FLAG_EU.svg") no-repeat; }
  .icon.flag_US {
    width: 50px;
    height: 50px;
    background: url("../img/picto/FLAG_US.svg") no-repeat; }
  .icon.show {
    width: 14px;
    height: 14px;
    background-image: url("../img/picto/ARROW_SHOW.svg"); }
  .icon.hide {
    width: 14px;
    height: 14px;
    background-image: url("../img/picto/ARROW_MASK.svg"); }
  .icon.opener {
    width: 14px;
    height: 14px;
    background-image: url("../img/picto/DROPDOWN_SELECT_BLUE.svg"); }
    .icon.opener.gray {
      background-image: url("../img/picto/DROPDOWN_SELECT_GRAY.svg"); }
  .icon.osmologue {
    width: 20px;
    height: 20px;
    background-image: url("../img/picto/OSMOLOGUE_OK.svg"); }

.wc-stripe-elements-field {
  border: #143fa0 solid 1px;
  color: #212121;
  letter-spacing: 0.04em;
  padding: 5px 15px 5px 15px; }

.order_list {
  margin-top: 30px;
  margin-bottom: 10px;
  background-color: #ffffff; }
  .order_list tr {
    background-color: #f7f7f7; }
    .order_list tr th, .order_list tr td {
      height: 80px;
      width: 16.66667%;
      vertical-align: center;
      text-align: center;
      border-bottom: solid #ffffff 10px; }
      .order_list tr th:last-child, .order_list tr td:last-child {
        width: 25%;
        text-align: right;
        padding-right: 70px; }
      .order_list tr th:first-child, .order_list tr td:first-child {
        width: 25%;
        text-align: left;
        padding-left: 70px; }

.mc4wp-response {
  padding-top: 15px;
  text-align: center; }

.empty_bag {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  height: 330px; }
  .empty_bag > div {
    text-align: center; }

.popin_delivery ul {
  padding-top: 50px;
  padding-bottom: 50px; }
  .popin_delivery ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 230px;
    border: 1px solid #143fa0; }
    .popin_delivery ul li div > p {
      padding-top: 10px;
      padding-bottom: 10px; }
      .popin_delivery ul li div > p:first-child, .popin_delivery ul li div > p:last-child {
        font-weight: bold; }
.popin_delivery a.cancel {
  margin-top: 50px;
  margin-bottom: 50px; }
.popin_delivery .note {
  color: #868b95;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 75px;
  font-size: 1rem;
  max-width: 560px; }

.exnihilo_language {
  z-index: 3100;
  display: inline-block;
  position: relative;
  height: 40px;
  cursor: pointer;
  margin-bottom: 10px;
  width: 80px; }
  .exnihilo_language > label:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    height: 35px;
    margin: 0px;
    padding-top: 1px;
    padding-right: 40px;
    padding-left: 15px;
    color: #868b95;
    font-family: "Gill Sans Regular";
    font-size: 1.4rem; }
  .exnihilo_language [type="checkbox"].selector {
    position: absolute;
    opacity: 0; }
    .exnihilo_language [type="checkbox"].selector + label {
      opacity: 1;
      display: inline-block;
      position: absolute;
      top: 1px;
      right: 5px;
      padding: 10px 0;
      width: 15px;
      height: 35px;
      margin-top: 0;
      margin-bottom: 0;
      z-index: 2000;
      cursor: pointer;
      transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; }
      .exnihilo_language [type="checkbox"].selector + label + div {
        overflow-y: hidden;
        transition: height 0.4s ease-in-out;
        position: absolute; }
        .exnihilo_language [type="checkbox"].selector + label + div ul {
          padding-left: 0;
          overflow-y: hidden;
          overflow-x: hidden;
          max-height: 120px; }
          .exnihilo_language [type="checkbox"].selector + label + div ul li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100px;
            height: 30px;
            padding-right: 40px;
            padding-left: 15px;
            background-color: transparent;
            color: #868b95;
            font-family: "Gill Sans Regular";
            font-size: 1.4rem;
            transition: color 0.4s ease-in-out; }
            .exnihilo_language [type="checkbox"].selector + label + div ul li a {
              text-decoration: none;
              color: #868b95;
              font-family: "Gill Sans Regular";
              font-size: 1.4rem;
              transition: color 0.4s ease-in-out; }
            .exnihilo_language [type="checkbox"].selector + label + div ul li:hover {
              color: #143fa0; }
              .exnihilo_language [type="checkbox"].selector + label + div ul li:hover a {
                color: #143fa0; }
    .exnihilo_language [type="checkbox"].selector:not(:checked) + label + div {
      height: 0 !important; }
    .exnihilo_language [type="checkbox"].selector:checked + label {
      -webkit-transform: rotate(180deg) scale(1);
      transform: rotate(180deg) scale(1); }

div.notfound {
  text-align: center;
  padding-bottom: 60px; }
  div.notfound img {
    width: 280px;
    height: 140px; }
  div.notfound p {
    padding-top: 70px;
    padding-bottom: 15px;
    font-family: "Gill Sans Regular";
    color: #868b95; }

.coupon {
  margin: 5px 0;
  padding: 40px 70px;
  background-color: #ffffff; }
  .coupon input[type="text"] {
    width: 310px; }
  .coupon button.button_coupon {
    background-color: #143fa0 !important;
    color: #ffffff;
    font-family: "Gill Sans Regular";
    transform: translateX(-5px); }

input[name="coupon_code"] {
  text-transform: uppercase; }

#coupons_list {
  margin: 5px 0;
  padding: 40px 0;
  background-color: #ffffff; }
  #coupons_list h3 {
    font-size: 1.4rem;
    color: #212121;
    margin-bottom: 50px;
    margin-left: 70px; }
  #coupons_list #all_coupon_container {
    margin-left: 70px; }
    #coupons_list #all_coupon_container .coupon-container {
      box-shadow: none;
      background-color: #f7f7f7;
      margin-right: 70px !important;
      margin-bottom: 35px !important;
      display: inline-block;
      width: 340px;
      padding: 30px 0; }
      #coupons_list #all_coupon_container .coupon-container:nth-child(even) {
        margin-left: 65px !important; }
      #coupons_list #all_coupon_container .coupon-container:nth-last-child(1), #coupons_list #all_coupon_container .coupon-container:nth-last-child(2) {
        margin-bottom: 35px !important; }
      #coupons_list #all_coupon_container .coupon-container .coupon-content {
        text-align: center; }
        #coupons_list #all_coupon_container .coupon-container .coupon-content .discount-info {
          font-family: "Gill Sans Regular";
          font-size: 1.4rem;
          color: #212121; }
        #coupons_list #all_coupon_container .coupon-container .coupon-content .code {
          display: inline-block;
          font-family: "Gill Sans Regular";
          font-size: 1.3rem;
          color: #143fa0;
          text-transform: uppercase;
          border-bottom: #143fa0 solid 2px;
          margin: 10px 0; }
        #coupons_list #all_coupon_container .coupon-container .coupon-content .coupon-expire {
          font-family: "Gill Sans Light";
          font-size: 1.3rem;
          color: #aa0000; }

#widget {
  z-index: 1050;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  align-content: center;
  position: fixed;
  right: 20px;
  bottom: -205px;
  width: 400px;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid rgba(33, 33, 33, 0.1);
  opacity: 0;
  transition: opacity 400ms, bottom 400ms; }
  #widget.show {
    opacity: 1;
    bottom: 20px; }
  #widget div:first-child {
    width: 130px; }
  #widget div:last-child {
    position: relative;
    margin: 20px 30px 35px 30px;
    width: 210px; }
    #widget div:last-child h3 {
      font-size: 1.4rem;
      letter-spacing: 0.2em;
      margin-top: 20px; }
    #widget div:last-child p {
      margin-top: 20px;
      height: 50px; }
    #widget div:last-child .cancel {
      position: absolute;
      right: 0;
      cursor: pointer; }

.wcpa_form_outer {
    width:350px;
}

/*# sourceMappingURL=ex-nihilo.css.map */
