@charset "UTF-8";
/*
Structure du dossier sass/
==========================

	sass/
	│
	├⎯ base/
	│   ├⎯ _normalize.scss......... Reset/normalize
	│   ├⎯ _global.scss............ Global settings and variables
	│   └⎯ _typography.scss........ Typography rules
	│
	├⎯ components/
	│   ├⎯ _forms.scss............. Forms
	│   ├⎯ _buttons.scss........... Buttons
	│   ├⎯ _icons.scss............. Icons
	│   ├⎯ _slider.scss............ Slider
	│   └⎯ _navigation.scss........ Navigation
	│
	├⎯ helpers/
	│   ├⎯ _variables.scss......... Sass Variables
	│   ├⎯ _functions.scss......... Sass Functions
	│   ├⎯ _mixins.scss............ Sass Mixins
	│   └⎯ _helpers.scss........... Class & placeholders helpers
	│
	├⎯ pages/
	│   ├⎯ _home.scss.............. Home specific styles
	│   └⎯ _contact.scss........... Contact specific styles
	│
	├⎯ layout/
	│   ├⎯ _grid.scss.............. Grid system (Bootstrap one)
	│   ├⎯ _header.scss............ Header
	│   ├⎯ _footer.scss............ Footer
	│   └⎯ …....................... Etc…
	│
	├⎯ vendors/
	│   └⎯ _vendor.scss............ Plugins styles (create a new file for each plugin)
	│
	└⎯ styles.scss................. Primary Sass file
 */
/*------------------------------------*\
		Easing
\*------------------------------------*/
/*------------------------------------*\
		Functions
\*------------------------------------*/
/*
Z-Index function
A clean way to deal with z-index layers in Sass
Based on http://css-tricks.com/handling-z-index/
A function helper to avoid having to type `map-get($z-layers, ...)`
@param  {string} $layer the layer to use
@param  {number} $var   the modifier for the layer used
@return {number}
*/
/**
 * Remove units from value
 * @param  {string} $number
 * @return {number}
 */
/**
 * Slightly lighten a color
 * @access public
 * @param {Color} $color - color to tint
 * @param {Number} $percentage - percentage of `$color` in returned color
 * @return {Color}
 */
/**
 * Slightly darken a color
 * @access public
 * @param  {color}  $color       color to shade
 * @param  {number} $percentage  percentage of `$color` in returned color
 * @return {Color}
 */
/*
Positions & dispositions
========================

* `@mixin d-ib` : un `inline-block` correct
* `@mixin pos-center($width, $height)` : centrer un élément en absolu.
*/
/*
Typographie
===========

* `@mixin fz($sizeValue: 16)` : sets the font size in rem's with a px fallback.
* `@mixin u($color: currentColor)` : pour de jolis soulignement
*/
/*
Triangles
=========

Des mixins pour générer des triangles en pur CSS, compatible IE8.
*/
/*
SVG responsive
==============

Utilitaire pour le padding hack qui permet d'avoir des fichiers `*.svg` responsive.
Plus d'infos ici : [Making SVGs Responsive with CSS](http://tympanus.net/codrops/2014/08/19/making-svgs-responsive-with-css/).
*/
/*
Visibility
==========
*/
/*
Dégradés
========
*/
/*
Scrollbar
=========
*/
/* normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  text-decoration: none;
  background: transparent;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:not([am-btn]):active,
a:not([am-btn]):hover {
  outline: 0;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  color: #000;
  background: #ff0;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

img.inlbl {
  width: auto;
  max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
	 ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  padding: 0;
  /* 2 */
  border: 0;
  /* 1 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: separate;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea,
fieldset,
legend {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: 1;
  white-space: normal;
  color: inherit;
  background: none;
  border: 0;
}

.mac input, .mac
label, .mac
select, .mac
button, .mac
textarea, .mac
fieldset, .mac
legend {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: antialiased;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
/* These elements are usually rendered a certain way by the browser */
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  width: auto;
  overflow: visible;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  background: none;
  border: 0;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/*
Mixin de typograhies
====================

Collection de mixins qui définissent tous les déclarations de typographie de bases.

## Map
C'est ici que sont renseignées toutes les typographies utilisées. La map
fonctionne de la manière suivante :

	Variable appelée    ┊  Nom générique de      ┊  Grai  ┊  Style
	par la mixin        ┊  la typographie        ┊  sse   ┊
	                    ┊                        ┊        ┊
	┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊┈┈┈┈┈┈┈┈┊┈┈┈┈┈┈┈┈┈
	Light :             ┊  "myriad-pro"          ┊  300   ┊  normal

*/
/*
## Mixin

La mixin qui scanne la map précédemment créée et inclut les déclarations correspondantes dans le CSS.
*/
/*
Debug
=====

Une condition dépendante de la variable `$debug` qui permet d'afficher les contours de tous les élements du DOM.
*/
[debug] {
  display: none;
}

/*------------------------------------*\
		Margins
\*------------------------------------*/
/*------------------------------------*\
		Paddings
\*------------------------------------*/
/*------------------------------------*\
		Visual
\*------------------------------------*/
/*
## Display
*/
.none {
  display: none;
}

.table {
  display: table;
}

.cell {
  display: table-cell;
}

.trow {
  display: table-row;
}

.inlbl {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.ovh {
  overflow: hidden;
}

/*
## Visibilité
*/
/*
Positionnement
==============

## Relative, aboslute...
*/
.abs {
  position: absolute;
}

.rel {
  position: relative;
}

.sta {
  position: static;
}

.popin-lock {
  width: auto;
  overflow: visible !important;
}

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

/*
 * Floats
*/
.cf {
  *zoom: 1;
}

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

.cf:after {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

/*
 * Alignement
*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

/*
 * Typographies
 */
.myriad {
  font-family: "myriad-pro", "Myriad Pro", sans-serif;
}

.myriad-condensed {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.bold-italic {
  font-style: italic;
  font-weight: 700;
}

/*
Couleurs
========

Toutes les couleurs utilisés dans le projet.
*/
/*
Typographies
============
*/
/*
Mise en page
============

* `$max-width` définit la largeur maximale du conteneur principal.
* `$margin-bottom` définit une base pour le ryhtme verticale des blocs.
*/
/*
Images
======

* `$img-dir` définit le dossier des images utilisées en css (chemin relatif au css, non au sass).
* `$sprite-name` est le nom du sprite, utilisé dans la classe invisible [%sprite](http://starter/docs/styles/components-icons.html)
* `$sprite-size` est la taille du sprite, nécessaire pour la mise en place du sprite retina.
*/
/*
Z-index
=======

La variable `$z-layers` définie les différents niveaux de profondeur utilisés dans le projet.

La fonction [z()](/docs/styles/tools-functions.html#) permet de l'utiliser simplement :

	SASS                          →     CSS

	z-index: z("dropdown");       →     z-index: 100;
	z-index: z("dropdown")-1;     →     z-index:  99;

Pour une meilleure maintenabilité, il est préférable d'utiliser uniquement les
niveaux de cette liste `±10` quand nécessaire.
*/
/*
Paramètres globaux
==================
*/
/*
* La couleur de sélection est basée sur la couleur `$selection` du projet.
* `box-sizing: border-box` permet d'avoir un modèle de bloc plus pratique.
* La classe `.isOSX` permet de mieux gérer le rendu des polices sur mac.
*/
::-moz-selection {
  text-shadow: none;
  color: #fff;
  background: #5a5a5a;
}

::selection {
  text-shadow: none;
  color: #fff;
  background: #5a5a5a;
}

*,
*:after,
*:before {
  position: relative;
  outline: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  height: 100%;
  font-size: 100%;
  background: #141a1f;
}

html.mac {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: antialiased;
}

body {
  font-family: "myriad-pro", "Myriad Pro", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
}

.wf-loading body {
  font-family: Arial, sans-serif;
}

noscript {
  position: static;
}

html.js noscript {
  display: none;
}

.placeholder {
  pointer-events: none;
}

.main {
  overflow: hidden;
}

.isParallaxed {
  will-change: transform;
}

/* ====================================== *\
	 Tabs
\* ====================================== */
.tabs-holder {
  height: auto;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.tab-content:first-child {
  position: relative;
  opacity: 1;
}

@media (min-width: 992px) {
  .tab-content {
    min-height: 500px;
  }
}

.tab-trigger {
  cursor: pointer;
}

/* ====================================== *\
	 Print media queries
\* ====================================== */
@media print {
  .main-header,
  .resp-header,
  .main-footer {
    display: none;
  }
  img {
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
  }
}

/*
Typographie
===========

Mise en place des styles globaux pour les titres, sous-titres, textes de labeur
et compagnie.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.111em;
}

hr {
  height: 5px;
  background: rgba(0, 0, 0, 0.06);
  border: 0;
}

p,
blockquote {
  max-width: 40em;
}

.tac p, .tac
blockquote {
  margin-right: auto;
  margin-left: auto;
}

p {
  margin-top: 0;
  margin-bottom: 30px;
  color: #5a5a5a;
}

dl {
  color: #5a5a5a;
}

blockquote {
  margin: 0;
  font-size: 1.33em;
}

blockquote:before {
  content: "";
  display: block;
  width: 30px;
  height: 23px;
  margin-bottom: 10px;
  background: url("https://www.vinsalsace.com/assets/svg/layout/quote.svg") no-repeat top left;
}

blockquote h1,
blockquote h2,
blockquote h3 {
  margin: 0.5em auto;
  font-weight: 400;
}

a {
  color: inherit;
}

/*
## Titre
*/
.title {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.title + .subtitle {
  color: inherit;
}

.title small {
  font-weight: 400;
}

@media (min-width: 480px) {
  .title {
    font-size: 2.7778em;
  }
}

.intro,
.surtitle {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-weight: 400;
}

.surtitle,
.subtitle {
  font-size: 1.33em;
}

/*
## Surtitre
*/
.surtitle {
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.surtitle span {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.surtitle span:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 5px;
  margin: auto;
  background: #f2f2f2;
}

/*
## Chapeau de texte
*/
.intro {
  max-width: 28em;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.33em;
  line-height: 1.1em;
  letter-spacing: 0.025em;
}

/*
## Sous-titre
*/
.subtitle {
  font-style: italic;
  color: #5a5a5a;
}

/*
## Listes
*/
.list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.list-disc {
  list-style-type: disc;
}

.list-link {
  display: block;
  color: inherit;
}

/*
Lazy loading images
===================

Référence pour la nomenclature des différentes tailles d'images :

	<img am-lazy
		src="assets/img/layout/blank.gif"
		data-src-larger="img-xl.jpg"    // Taille XL : viewport > 1400
		data-src-large="img-l.jpg"      // Taille L  : viewport > 1200
		data-src-desktop="img.jpg"      // Standard  : viewport > 992
		data-src-tablet="img-m.jpg"     // Taille M  : viewport > 768
		data-src-mobile="img-s.jpg"     // Taille S  : viewport > 480
		data-src="img-xs.jpg">          // Taille XS : viewport > 0

Et pour ajouter des variantes retina à certaines tailles :

	<img am-lazy
		src="assets/img/layout/blank.gif"
		data-src-larger="img-xl.jpg"
		data-src-large="img-l.jpg"
		data-src-desktop="img.jpg"
		data-src-tablet="img-m.jpg | img-m@2x.jpg"
		data-src-mobile="img-s.jpg | img-s@2x.jpg"
		data-src="img-xs.jpg | img-xs@2x.jpg" >


*/
[am-lazy] {
  opacity: 0;
}

.no-js [am-lazy] {
  opacity: 1;
}

.no-js img[am-lazy] {
  display: none;
}

[am-lazy="loaded"] {
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Magnific Popup CSS */
.mfp-wrap,
.mfp-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mfp-bg,
.mfp-wrap {
  position: fixed;
}

.mfp-preloader,
.mfp-container {
  position: absolute;
}

.mfp-bg {
  z-index: 800;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0;
  padding-top: 100%;
  background: #f2f2f2;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.8s;
  transition: opacity 0.2s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.2s;
  transition: transform 0.8s, opacity 0.2s, -webkit-transform 0.8s;
}

.mfp-bg.mfp-ready {
  opacity: 0.85;
  -webkit-transform: translate(-50%, -50%) scale(2.5);
      -ms-transform: translate(-50%, -50%) scale(2.5);
          transform: translate(-50%, -50%) scale(2.5);
}

.mfp-bg.mfp-ready.mfp-youtube {
  opacity: 0.9;
}

.mfp-bg.mfp-ready.mfp-youtube.mfp-removing {
  opacity: 0;
}

.mfp-bg.mfp-ready.mfp-removing {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: opacity 0.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.mfp-lock {
  width: auto;
  overflow: hidden !important;
}

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

.mfp-wrap {
  z-index: 801;
  -webkit-backface-visibility: hidden;
}

.mfp-lock .mfp-wrap {
  overflow: auto;
  overflow-y: scroll;
}

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

.mfp-container:before {
  content: "";
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  height: 100%;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  z-index: 803;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  width: auto;
  max-width: 700px;
  margin: 0 auto;
  padding: 1em;
  text-align: left;
  background: #fff;
  opacity: 0;
  -webkit-transform: scale(0.4);
      -ms-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.03s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.03s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), transform 0.03s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), transform 0.03s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.03s cubic-bezier(0.19, 1, 0.22, 1);
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  cursor: auto;
}

.mfp-youtube .mfp-content {
  padding: 0;
}

.mfp-auto-cursor .mfp-content,
.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  cursor: auto;
}

.mfp-s-error .mfp-content {
  display: none;
}

.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.5s 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.mfp-removing .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0.6);
      -ms-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

@media (min-width: 768px) {
  .mfp-content {
    padding: 0;
  }
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-close,
.mfp-arrow,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  z-index: 791;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: #fff url("https://www.vinsalsace.com/assets/svg/layout/loader-grey.svg") center center no-repeat;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.mfp-s-ready .mfp-preloader {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mfp-youtube .mfp-preloader {
  opacity: 1;
}

.mfp-youtube.mfp-ready .mfp-preloader {
  opacity: 0;
}

button.mfp-arrow {
  z-index: 804;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  overflow: visible;
}

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

.mfp-close {
  z-index: 820;
  position: absolute;
  top: 0;
  right: 0;
  width: 1.66em;
  height: 1.66em;
  background: url("https://www.vinsalsace.com/assets/svg/layout/close.svg") no-repeat 50% 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.mfp-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 2px solid #7c776d;
  border-radius: 50%;
}

.mfp-close:hover {
  -webkit-transform: rotate(90deg) scale(1.05);
      -ms-transform: rotate(90deg) scale(1.05);
          transform: rotate(90deg) scale(1.05);
}

.mfp-close:active {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  width: 3em;
  height: 3em;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.mfp-iframe-holder .mfp-close:hover,
.mfp-image-holder .mfp-close:hover {
  -webkit-transform: translate(50%, -50%) rotate(90deg) scale(1.05);
      -ms-transform: translate(50%, -50%) rotate(90deg) scale(1.05);
          transform: translate(50%, -50%) rotate(90deg) scale(1.05);
}

.mfp-iframe-holder .mfp-close:active,
.mfp-image-holder .mfp-close:active {
  -webkit-transform: translate(50%, -50%) scale(0.9);
      -ms-transform: translate(50%, -50%) scale(0.9);
          transform: translate(50%, -50%) scale(0.9);
}

@media (min-width: 768px) {
  .mfp-close {
    width: 86px;
    height: 86px;
  }
}

.mfp-counter {
  float: right;
}

.mfp-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0;
  padding: 0;
  background: #000;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  width: 90%;
  max-width: 1180px;
  line-height: 0;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.mfp-youtube .mfp-iframe-scaler {
  overflow: visible;
}

/* Main image in popup */
img.mfp-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 3em;
  line-height: 0;
}

img.mfp-img + figcaption {
  position: absolute;
  top: 100%;
  width: 100%;
}

/* The shadow behind the image */
.mfp-figure figure {
  overflow: hidden;
}

.mfp-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  line-height: 1;
  color: #5a5a5a;
  background: #fff;
  cursor: auto;
  overflow: hidden;
}

.mfp-title {
  float: left;
  text-align: left;
  word-wrap: break-word;
}

.mfp-image-holder .mfp-content {
  max-width: 1180px;
  padding: 0;
  background: none;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

.mfp-gallery .mfp-container {
  padding: 0 44px;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/*
Selectric
=========
*/
.selectricInput,
.selectricHideSelect {
  overflow: hidden;
}

.selectricHideSelect {
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile .selectricHideSelect .tablet .selectricHideSelect {
  width: auto;
  height: auto;
}

.selectricInput,
.selectricTempShow {
  position: absolute !important;
}

.selectricInput {
  top: 0;
  left: 0;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  *font: 0/0 a !important;
}

.selectricTempShow {
  display: block !important;
  visibility: hidden !important;
}

.selectric,
.selectric-item {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-label,
.selectric-item span {
  display: block;
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.selectric:active .selectric-label,
.selectric-item:active span {
  -webkit-transform: translate(0, 2px);
      -ms-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

.selectric-item {
  padding: 0.5em 0.8em;
}

.selectric-list {
  max-height: 300px;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
}

.selectric-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.selectric-list::-webkit-scrollbar-track {
  background: #565e60;
}

.selectric-list::-webkit-scrollbar-thumb {
  background: #2c2c2c;
  border: 2px solid #565e60;
  border-radius: 4px;
}

.selectricWrapper {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectricItems {
  z-index: 200;
  position: absolute;
  top: -300%;
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  pointer-events: none;
  -webkit-transform: scale(1, 0.5);
      -ms-transform: scale(1, 0.5);
          transform: scale(1, 0.5);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  white-space: nowrap;
}

.selectricOpen .selectricItems {
  z-index: 200;
  top: 100%;
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  pointer-events: painted;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
}

/*
Slick Slider
============

Démos et documentation : [http://kenwheeler.github.io/slick/](http://kenwheeler.github.io/slick/).
*/
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider [data-lazy] {
  opacity: 0;
}

.no-js .slick-slider [data-lazy], .slick-slider [data-lazy].slick-loaded {
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.slider-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  margin: -1.25em 0 0 -1.25em;
  background: url("https://www.vinsalsace.com/assets/svg/layout/loader.svg") no-repeat 50% 50%;
  -webkit-animation: loader 0.75s linear infinite;
          animation: loader 0.75s linear infinite;
}

.no-cssanimations .slider-item:before {
  background: url("../loader.html") no-repeat 50% 50%;
}

.slick-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-list.draggable {
  cursor: -webkit-grab;
  cursor: grab;
}

.slick-list.draggable:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
  *zoom: 1;
}

.slick-track:after, .slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  display: none;
  height: 100%;
  min-height: 1px;
  overflow: hidden;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Arrows */
.slick-prev,
.slick-next {
  z-index: 2;
  position: absolute;
  top: 50%;
  display: block;
  width: 44px;
  height: 56px;
  margin-top: -28px;
  padding: 15px;
}

.slick-prev [am-s],
.slick-next [am-s] {
  width: 14px;
  height: 26px;
  fill: #fff;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

@media (min-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 50px;
    height: 62px;
    margin-top: -31px;
    padding: 18px;
  }
}

@media (min-width: 992px) {
  .slick-prev,
  .slick-next {
    width: 90px;
    height: 116px;
    margin-top: -58px;
    padding: 30px;
  }
  .slick-prev [am-s],
  .slick-next [am-s] {
    width: 30px;
    height: 56px;
  }
}

.slick-prev {
  left: 0;
}

[dir="rtl"] .slick-prev {
  right: 0;
  left: auto;
}

.slick-next {
  right: 0;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: 0;
}

/* Dots */
/*
 * Datepicker for Bootstrap v1.4.0 (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
  font-size: 1em;
  direction: ltr;
  border: 1px solid;
  border-top: 0;
}

.datepicker .datepicker-rtl {
  direction: rtl;
}

.datepicker .datepicker-rtl table tr td span {
  float: right;
}

.datepicker > div {
  display: none;
}

.datepicker-inline {
  width: 220px;
}

.datepicker-dropdown {
  top: 0;
  left: 0;
}

.datepicker.days .datepicker-days,
.datepicker.months .datepicker-months,
.datepicker.years .datepicker-years {
  display: block;
}

.datepicker table {
  width: 100%;
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker td,
.datepicker th {
  width: 20px;
  height: 20px;
  text-align: center;
  border: 0;
  cursor: pointer;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #f2f1f1;
  cursor: pointer;
}

.datepicker table tr td.day:active {
  background: #e5e4e4;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
  opacity: 0.5;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  color: #999999;
  background: none;
  cursor: default;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  color: #000;
  background-color: #fde19a;
}

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}

.datepicker table tr td.today:hover:hover {
  color: #000;
}

.datepicker table tr td.today.active:hover {
  color: #fff;
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #f2f1f1;
}

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
}

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  color: #fff;
  background-color: #9e9e9e;
}

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  color: #fff;
  background-color: #333;
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #2c2c2c;
}

.datepicker table tr td span {
  float: left;
  display: block;
  width: 23%;
  height: 54px;
  margin: 1%;
  line-height: 54px;
  cursor: pointer;
}

.datepicker table tr td span:hover {
  background: #f2f1f1;
}

.datepicker table tr td span:active {
  background: #e5e4e4;
}

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  color: #999999;
  background: none;
  cursor: default;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  color: #fff;
  background-color: #2c2c2c;
}

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #2c2c2c;
}

.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}

.datepicker .datepicker-switch {
  width: 145px;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #f2f1f1;
}

.datepicker thead tr:first-child th:active,
.datepicker tfoot tr th:active {
  background: #e5e4e4;
}

.datepicker .cw {
  vertical-align: middle;
  width: 12px;
  padding: 0 2px 0 5px;
  font-size: 10px;
}

.datepicker thead tr:first-child .cw {
  background-color: transparent;
  cursor: default;
}

.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}

.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}

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

.datepicker.dropdown-menu {
  z-index: 1000;
  position: absolute;
  top: 100%;
  left: 0;
  float: left;
  display: none;
  width: 100%;
  min-width: 160px;
  list-style: none;
  color: #5a5a5a;
  background: #fff;
}

.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 0.4em;
}

.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  color: #5a5a5a;
}

/* ====================================== *\
	 Leaflet styles
\* ====================================== */
/*------------------------------------*\
		Easing
\*------------------------------------*/
/*
Mixin de typograhies
====================

Collection de mixins qui définissent tous les déclarations de typographie de bases.

## Map
C'est ici que sont renseignées toutes les typographies utilisées. La map
fonctionne de la manière suivante :

	Variable appelée    ┊  Nom générique de      ┊  Grai  ┊  Style
	par la mixin        ┊  la typographie        ┊  sse   ┊
	                    ┊                        ┊        ┊
	┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊┈┈┈┈┈┈┈┈┊┈┈┈┈┈┈┈┈┈
	Light :             ┊  "myriad-pro"          ┊  300   ┊  normal

*/
/*
## Mixin

La mixin qui scanne la map précédemment créée et inclut les déclarations correspondantes dans le CSS.
*/
/* required styles */
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-container {
  overflow: hidden;
  -ms-touch-action: none;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
  max-width: none !important;
}

/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
  max-width: 15000px !important;
}

.leaflet-tile {
  -webkit-filter: inherit;
          filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-tile-pane {
  z-index: 2;
}

.leaflet-objects-pane {
  z-index: 3;
}

.leaflet-overlay-pane {
  z-index: 4;
}

.leaflet-shadow-pane {
  z-index: 5;
}

.leaflet-marker-pane {
  z-index: 6;
}

.leaflet-popup-pane {
  z-index: 7;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control-container {
  position: static;
}

.leaflet-control {
  z-index: 7;
  position: relative;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

@media (min-widht: 1440px) {
  .leaflet-control {
    font-size: 17px;
  }
}

.leaflet-top,
.leaflet-bottom {
  z-index: 100;
  position: absolute;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 1.875em;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 1.875em;
}

.leaflet-left .leaflet-control {
  margin-left: 1.875em;
}

.leaflet-right .leaflet-control {
  margin-right: 1.875em;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
  -webkit-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-clickable {
  cursor: pointer;
}

.leaflet-container {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078a8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid #ffa500;
}

.leaflet-zoom-box {
  background: rgba(255, 255, 255, 0.5);
  border: 2px dotted #38f;
}

/* general typography */
/* general toolbar styles */
.leaflet-bar a {
  display: block;
  width: 2.75em;
  height: 2.75em;
  text-align: center;
}

.leaflet-bar a + a {
  border-top: 1px solid #e7e6e6;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a.leaflet-disabled {
  color: #bbb;
  background-color: #f4f4f4;
  cursor: default;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* zoom control */
.leaflet-control-zoom {
  font-size: 0.6em;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  text-indent: 110%;
  overflow: hidden;
}

.leaflet-control-zoom-in:after, .leaflet-control-zoom-in:before,
.leaflet-control-zoom-out:after,
.leaflet-control-zoom-out:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #3a3f40;
}

.leaflet-control-zoom-in:before,
.leaflet-control-zoom-out:before {
  width: 50%;
  height: 2px;
  margin: -1px 0 0 -25%;
}

.leaflet-control-zoom-in:after {
  width: 2px;
  height: 50%;
  margin: -25% 0 0 -1px;
}

/* layers control */
.leaflet-control-layers-toggle {
  width: 36px;
  height: 36px;
  background-image: url("../layers.html");
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("../layers-2x.html");
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  position: relative;
  display: block;
}

.leaflet-control-layers {
  padding: 0.5em 1em;
}

.leaflet-control-layers label {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  cursor: pointer;
}

.leaflet-control-layers label:hover span {
  opacity: 0.7;
}

.leaflet-control-layers label + label {
  border-top: 1px solid #e7e6e6;
}

.leaflet-control-layers label,
.leaflet-control-layers label span {
  display: block;
}

.leaflet-control-layers label span {
  padding: 0.6em 1em 0.6em 1.4em;
  line-height: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.leaflet-control-layers label span:after, .leaflet-control-layers label span:before {
  content: "";
  position: absolute;
  top: 0.6625em;
  left: 0;
  width: 0.875em;
  height: 0.875em;
  border: 0.1875em solid #ccc;
  border-radius: 50%;
}

.leaflet-control-layers label span:after {
  background: #3a3f40;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.leaflet-control-layers label input {
  position: absolute;
  -webkit-appearance: none;
  opacity: 0;
}

.leaflet-control-layers label input:checked + span {
  opacity: 1;
}

.leaflet-control-layers label input:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1) translateZ(0);
          transform: scale(1) translateZ(0);
}

.leaflet-control-layers label input + span {
  opacity: 0.3;
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  margin: 0;
  padding: 0.4em 0.75em;
  font-size: 12px;
  opacity: 0.75;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.leaflet-container .leaflet-control-attribution:hover {
  opacity: 1;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

/* popup */
.leaflet-popin-container {
  width: 1px !important;
  height: 1px !important;
}

.leaflet-popin {
  position: static;
}

.leaflet-popin-close-button {
  z-index: 1;
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
}

.leaflet-popin-close-button [am-i] {
  color: #9d8c8c;
}

.leaflet-popin-close-button [am-s] {
  stroke: #9d8c8c;
}

.leaflet-popin-close-button:hover [am-i] {
  color: #b4a8a8;
}

.leaflet-popin-close-button:hover [am-s] {
  stroke: #b4a8a8;
}

.popin_simple .leaflet-popin-close-button {
  top: 0.75em;
  right: 0.75em;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

.leaflet-svg-element {
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/*
Boutons
=======

Les boutons sont gérés avec un des attributs, plutôt que des classes.
L'attribut `btn` permet d'appliquer le style de base du bouton, et le contenu
de cet attribut précise les couleurs du boutons, `btn="gris"` pour un bouton
gris.

	<a href="/url/" btn="gris">
*/
[am-btn] {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 1em 2em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-btn]:before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.2s cubic-bezier(0.535, 1.65, 0.635, 1.005);
  transition: all 0.2s cubic-bezier(0.535, 1.65, 0.635, 1.005);
}

[am-btn]:after {
  content: "\00a0\00BB";
  display: inline-block;
  zoom: 1;
  *display: inline;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-btn]:hover:after {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

.no-csstransforms3d [am-btn]:hover:after {
  -webkit-transform: translate(5px, 0);
      -ms-transform: translate(5px, 0);
          transform: translate(5px, 0);
}

[am-btn]:hover:after .no-csstransforms {
  margin-left: 5px;
}

[am-btn]:active:before {
  border-width: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-btn]:active:after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
}

[am-btn*="small"] {
  font-size: 0.88em;
}

[am-btn*="nude"] {
  color: #5a5a5a;
  background: none;
}

[am-btn*="nude"]:after {
  display: none;
}

[am-btn*="nude"]:hover {
  color: #272727;
}

[am-btn*="nude"]:before,
[am-btn*="nude"]:hover:before,
[am-btn*="nude"]:focus:before,
[am-btn*="nude"]:active:before,
[am-btn*="b0"]:before,
[am-btn*="b0"]:hover:before,
[am-btn*="b0"]:focus:before,
[am-btn*="b0"]:active:before {
  display: none;
}

[am-btn*="p0"] {
  padding: 0;
  overflow: visible;
}

[am-btn*="no-border"]:before {
  display: none;
}

[am-btn*="round"] {
  padding: 1em;
  border-radius: 50%;
}

[am-btn*="no-quote"]:after {
  display: none;
}

[am-btn*="grey"] {
  background: #565e60;
}

[am-btn*="grey"]:before {
  border-color: #6e787b;
}

[am-btn*="grey"]:hover {
  background: #454c4d;
}

[am-btn*="grey"]:hover:before {
  border-color: #565e60;
}

[am-btn*="grey"]:active:before {
  border-color: #6e787b;
}

[am-btn*="lightgrey"] {
  background: #cec9c9;
}

[am-btn*="lightgrey"]:before {
  border-color: #e0dddd;
}

[am-btn*="lightgrey"]:hover {
  background: #c2bcbc;
}

[am-btn*="lightgrey"]:hover:before {
  border-color: #f2f1f1;
}

[am-btn*="white"] {
  background: #fff;
}

[am-btn*="white"]:before {
  border-color: #e5e4e4;
}

[am-btn*="white"]:hover {
  background: #f7f7f7;
}

[am-btn*="white"]:hover:before {
  border-color: #d8d7d7;
}

[am-btn*="darkgrey"] {
  background: #3a3f40;
}

[am-btn*="darkgrey"]:before {
  border-color: #52595b;
}

[am-btn*="darkgrey"]:hover {
  background: #464c4d;
}

[am-btn*="darkgrey"]:hover:before {
  border-color: #666e70;
}

[am-btn*="darkgrey"]:active:before {
  border-color: #6f797b;
}

[am-btn*="mediumwarmgrey"] {
  color: #fff;
  background: #9d8c8c;
}

[am-btn*="mediumwarmgrey"]:before {
  border-color: #b4a8a8;
}

[am-btn*="mediumwarmgrey"]:hover {
  color: #fff;
  background: #a99a9a;
}

[am-btn*="mediumwarmgrey"]:hover:before {
  border-color: #c7bebe;
}

[am-btn*="mediumwarmgrey"]:active {
  background: #988686;
}

[am-btn*="mediumwarmgrey"]:active:before {
  border-color: #d1c9c9;
}

[am-btn*="orange"] {
  background: #fea60e;
}

[am-btn*="orange"]:before {
  border-color: #fec25a;
}

[am-btn*="orange"]:hover {
  background: #feaf27;
}

[am-btn*="orange"]:hover:before {
  border-color: #fecc74;
}

[am-btn*="blue"] {
  background: #c5d8db;
}

[am-btn*="blue"]:before {
  border-color: #d5e3e5;
}

[am-btn*="blue"]:hover {
  background: #b5cdd1;
}

[am-btn*="blue"]:hover:before {
  border-color: #dee9eb;
}

[am-btn*="blue"]:active:before {
  border-color: #c5d8db;
}

[am-btn*="brightblue"] {
  background: #81c0e2;
}

[am-btn*="brightblue"]:before {
  border-color: #aad5ec;
}

[am-btn*="brightblue"]:hover {
  background: #96cae7;
}

[am-btn*="brightblue"]:hover:before {
  border-color: #bfdff0;
}

[am-btn*="brightblue"]:active:before {
  border-color: #d4e9f5;
}

[am-btn*="salmon"] {
  background: #f4b7ab;
}

[am-btn*="salmon"]:before {
  border-color: #f8cec6;
}

[am-btn*="salmon"]:hover {
  background: #f2ab9d;
}

[am-btn*="salmon"]:hover:before {
  border-color: #f7cac2;
}

[am-btn*="salmon"]:active:before {
  border-color: #f9d6cf;
}

[am-btn*="gold"] {
  background: #ddbd53;
}

[am-btn*="gold"]:before {
  border-color: #ead693;
}

[am-btn*="gold"]:hover {
  background: #d9b53e;
}

[am-btn*="gold"]:hover:before {
  border-color: #e5cd7e;
}

[am-btn*="gold"]:active:before {
  border-color: #ead693;
}

[am-btn*="mediumgold"] {
  background: #cba934;
}

[am-btn*="mediumgold"]:before {
  border-color: #dcc575;
}

[am-btn*="mediumgold"]:hover {
  background: #b7982f;
}

[am-btn*="mediumgold"]:hover:before {
  border-color: #d7be65;
}

[am-btn*="darkgold"] {
  background: #b29200;
}

[am-btn*="darkgold"]:before {
  border-color: #ffd205;
}

[am-btn*="darkgold"]:hover {
  background: #a08300;
}

[am-btn*="darkgold"]:hover:before {
  border-color: #efc400;
}

[am-btn*="ocher"] {
  background: #d67c43;
}

[am-btn*="ocher"]:before {
  border-color: #df996d;
}

[am-btn*="ocher"]:hover {
  background: #d16d2e;
}

[am-btn*="ocher"]:hover:before {
  border-color: #e4a882;
}

[am-btn*="lightgold"] {
  background: #c8af85;
}

[am-btn*="lightgold"]:hover {
  background: #bd9f6c;
}

[am-btn*="lightgold"]:hover::before {
  border-color: #e0d2ba;
}

[am-btn*="dirt"] {
  background: #a48e6e;
}

[am-btn*="dirt"]:before {
  border-color: #b8a68d;
}

[am-btn*="dirt"]:hover {
  background: #998260;
}

[am-btn*="dirt"]:hover:before {
  border-color: #c1b39d;
}

/*
Animations chevrons
===================

Pour les boutons précédents, suivants, haut et bas un peu partout
*/
[am-nav] [am-s] {
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-nav]:active [am-s] {
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-nav*="prev"]:hover [am-s],
[am-nav*="left"]:hover [am-s] {
  -webkit-transform: translateX(-5px) scale(1.1, 0.9);
      -ms-transform: translateX(-5px) scale(1.1, 0.9);
          transform: translateX(-5px) scale(1.1, 0.9);
}

[am-nav*="prev"]:active [am-s],
[am-nav*="left"]:active [am-s] {
  -webkit-transform: translateX(-8px) scale(1.2, 0.8);
      -ms-transform: translateX(-8px) scale(1.2, 0.8);
          transform: translateX(-8px) scale(1.2, 0.8);
}

[am-nav*="next"]:hover [am-s],
[am-nav*="right"]:hover [am-s] {
  -webkit-transform: translateX(5px) scale(1.1, 0.9);
      -ms-transform: translateX(5px) scale(1.1, 0.9);
          transform: translateX(5px) scale(1.1, 0.9);
}

[am-nav*="next"]:active [am-s],
[am-nav*="right"]:active [am-s] {
  -webkit-transform: translateX(8px) scale(1.2, 0.8);
      -ms-transform: translateX(8px) scale(1.2, 0.8);
          transform: translateX(8px) scale(1.2, 0.8);
}

[am-nav*="top"]:hover [am-s] {
  -webkit-transform: translateY(-5px) scale(0.9, 1.1);
      -ms-transform: translateY(-5px) scale(0.9, 1.1);
          transform: translateY(-5px) scale(0.9, 1.1);
}

[am-nav*="top"]:active [am-s] {
  -webkit-transform: translateY(-8px) scale(0.8, 1.2);
      -ms-transform: translateY(-8px) scale(0.8, 1.2);
          transform: translateY(-8px) scale(0.8, 1.2);
}

[am-nav*="bot"]:hover [am-s] {
  -webkit-transform: translateY(5px) scale(0.9, 1.1);
      -ms-transform: translateY(5px) scale(0.9, 1.1);
          transform: translateY(5px) scale(0.9, 1.1);
}

[am-nav*="bot"]:active [am-s] {
  -webkit-transform: translateY(8px) scale(0.8, 1.2);
      -ms-transform: translateY(8px) scale(0.8, 1.2);
          transform: translateY(8px) scale(0.8, 1.2);
}

/*
Cartouches & macarons
========

Les macarons sont ces gros boutons ronds avec un titre et un surtitre.
*/
[am-btn*="macaron"],
[am-btn*="cartouche"] {
  position: absolute;
  pointer-events: painted;
}

[am-btn*="macaron"]:after,
[am-btn*="cartouche"]:after {
  display: none;
}

[am-btn*="macaron"] .title,
[am-btn*="macaron"] .surtitle,
[am-btn*="cartouche"] .title,
[am-btn*="cartouche"] .surtitle {
  display: block;
  line-height: 1em;
  text-align: center;
}

[am-btn*="macaron"] .title,
[am-btn*="cartouche"] .title {
  font-size: 2.142857143em;
}

[am-btn*="macaron"] .title.title,
[am-btn*="cartouche"] .title.title {
  margin-bottom: 0;
}

[am-btn*="macaron"] {
  width: 15.714285714em;
  height: 15.714285714em;
  padding: 2em;
  font-size: 10px;
  font-size: 0.625rem;
}

[am-btn*="macaron"][am-btn*="simple"] {
  font-size: 12px;
  font-size: 0.75rem;
}

[am-btn*="macaron"][am-btn*="fat"]:before {
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}

[am-btn*="macaron"]:before {
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
}

[am-btn*="macaron"] .table {
  width: 100%;
  height: 100%;
}

[am-btn*="macaron"] .cell {
  vertical-align: middle;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-btn*="macaron"] .cell span {
  display: block;
}

[am-btn*="macaron"]:hover:before {
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.535, 1.65, 0.635, 1.005);
  transition: all 0.3s cubic-bezier(0.535, 1.65, 0.635, 1.005);
}

[am-btn*="macaron"]:active:before {
  border-width: 4px;
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-btn*="macaron"]:active .cell {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 768px) {
  [am-btn*="macaron"] {
    font-size: 14px;
    font-size: 0.875rem;
  }
  [am-btn*="macaron"][am-btn*="simple"] {
    font-size: 18px;
    font-size: 1.125rem;
  }
  [am-btn*="macaron"][am-btn*="fat"]:before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

[am-btn*="macaron"],
[am-btn*="macaron"]:after,
[am-btn*="macaron"]:before {
  border-radius: 50%;
}

[am-btn*="cartouche"] {
  padding: 2em;
  cursor: pointer;
}

[am-btn*="cartouche"]:hover .cartouche-link {
  pointer-events: painted;
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-btn*="cartouche"]:hover .cartouche-link:hover .circle {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.3s 0s cubic-bezier(0.535, 1.65, 0.635, 1.005);
  transition: all 0.3s 0s cubic-bezier(0.535, 1.65, 0.635, 1.005);
}

[am-btn*="cartouche"]:hover [am-i] {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

[am-btn*="cartouche"]:hover .circle {
  opacity: 1;
  visibility: visible;
}

[am-btn*="cartouche"][am-btn*="blue"] .surtitle {
  color: #728b8f;
}

[am-btn*="cartouche"][am-btn*="blue"] .surtitle span:after {
  background: #e4edef;
}

[am-btn*="cartouche"] .surtitle.surtitle {
  margin-bottom: 1.2em;
}

[am-btn*="cartouche"] .surtitle span:after {
  width: 70%;
}

[am-btn*="cartouche"] .title {
  font-size: 2.666666667em;
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 768px) {
  [am-btn*="cartouche"] {
    padding: 2em;
  }
}

.cartouche-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #c5d8db;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: all 0.6s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cartouche-link:hover {
  background: #acc7cb;
}

.cartouche-link:active {
  background: #8cb2b8;
}

.cartouche-link:active .circle {
  -webkit-transform: scale(0.99) !important;
      -ms-transform: scale(0.99) !important;
          transform: scale(0.99) !important;
}

.cartouche-link + .cartouche-link {
  right: 0;
  left: auto;
  background: #bfd4d7;
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.cartouche-link + .cartouche-link:hover {
  background: #a6c3c7;
}

.cartouche-link + .cartouche-link:active {
  background: #86aeb4;
}

.cartouche-link.full-width {
  width: 100%;
}

.cartouche-link [am-i],
.cartouche-link .circle {
  position: absolute;
  top: 50%;
  left: 50%;
}

.cartouche-link [am-i] {
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s 0.1s cubic-bezier(0.535, 1.65, 0.635, 1.005);
  transition: all 0.3s 0.1s cubic-bezier(0.535, 1.65, 0.635, 1.005);
}

.cartouche-link .circle {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-btn*="blue"] .cartouche-link {
  color: #fff;
}

[am-btn*="blue"] .cartouche-link [am-s] {
  fill: #fff;
}

/**
 * Boutons des cépages
 */
[am-btn="cepage-17"] {
  background: #e3b55a;
}

[am-btn="cepage-17"]:before {
  border-color: #f2dcb1;
}

[am-btn="cepage-17"]:hover {
  background: #e0ab44;
}

[am-btn="cepage-10"] {
  background: #e4b627;
}

[am-btn="cepage-10"]:before {
  border-color: #faeab9;
}

[am-btn="cepage-10"]:hover {
  background: #e3af11;
}

[am-btn="cepage-13"] {
  background: #9d9999;
}

[am-btn="cepage-13"]:before {
  border-color: #c3c0c0;
}

[am-btn="cepage-13"]:hover {
  background: #918c8c;
}

[am-btn="cepage-3"] {
  background: #a6b445;
}

[am-btn="cepage-3"]:before {
  border-color: #ecefd6;
}

[am-btn="cepage-3"]:hover {
  background: #95a13e;
}

[am-btn="cepage-21"] {
  background: #87b242;
}

[am-btn="cepage-21"]:before {
  border-color: #9ed24e;
}

[am-btn="cepage-21"]:hover {
  background: #7dae31;
}

[am-btn="cepage-20"] {
  background: #bab948;
}

[am-btn="cepage-20"]:before {
  border-color: #e0de6a;
}

[am-btn="cepage-20"]:hover {
  background: #b7b536;
}

[am-btn="cepage-14"] {
  background: #7bc5ba;
}

[am-btn="cepage-14"]:before {
  border-color: #c2e4df;
}

[am-btn="cepage-14"]:hover {
  background: #6abdb1;
}

[am-btn="cepage-18"],
[am-btn="cepage-27"],
[am-btn="cepage-1736"] {
  background: #9292d7;
}

[am-btn="cepage-18"]:before,
[am-btn="cepage-27"]:before,
[am-btn="cepage-1736"]:before {
  border-color: #cdcdf1;
}

[am-btn="cepage-18"]:hover,
[am-btn="cepage-27"]:hover,
[am-btn="cepage-1736"]:hover {
  background: #7f7fd1;
}

/*
Dropdown
========
*/
.isHover .isDropdown,
.hasDropdown:hover .isDropdown {
  z-index: 200;
  top: 100%;
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  pointer-events: painted;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
}

.isDropdown {
  z-index: 200;
  position: absolute;
  top: -300%;
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  pointer-events: none;
  -webkit-transform: scale(1, 0.5);
      -ms-transform: scale(1, 0.5);
          transform: scale(1, 0.5);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0.3s, opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}

/*
Formulaire
==========
*/
.form-el {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.form-field {
  margin-bottom: 2em;
}

.form-legend {
  display: block;
  width: 100%;
  margin-bottom: 1em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.44em;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
}

.form-legend:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -2px;
  background: #9d8c8c;
}

.form-legend span {
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 0 3%;
  background: #edeaea;
}

/*
Errors messages
==========
*/
.form-error,
.form-success {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-error {
  position: absolute;
  right: 13px;
  bottom: 100%;
  margin-bottom: 0.5em;
  font-size: 0.75em;
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
}

.hasError .form-error {
  color: #f00;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

@media (min-width: 768px) {
  .form-error {
    right: 15px;
  }
}

@media (min-width: 992px) {
  .form-error {
    right: 18px;
  }
}

.form-success {
  width: 100%;
  height: 100%;
  text-align: center;
}

[am-btn] + .form-success {
  margin-top: 1em;
}

.form-success.isVisible {
  opacity: 1;
  visibility: visible;
}

.form-required {
  top: -0.2em;
  vertical-align: top;
  font-size: 0.8em;
  color: #f00;
}

.form-info {
  margin-top: 0.5em;
  font-size: 0.8em;
}

/*
Basic text input
==========
*/
.form-text,
.form-textarea {
  display: block;
  padding: 0.5em 0.7em;
  background: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  cursor: text;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-text:focus + .form-label, .form-text.isFilled + .form-label,
.form-textarea:focus + .form-label,
.form-textarea.isFilled + .form-label {
  display: none;
}

.form-text,
.form-text + .form-label,
.form-textarea,
.form-textarea + .form-label {
  height: 2em;
  padding: 0.5em 0.7em;
}

.form-text + .form-label,
.form-textarea + .form-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  cursor: text;
}

.hasError .form-text, .hasError
.form-textarea {
  border-color: #f00 !important;
}

.hasError .form-text + .form-label, .hasError
.form-textarea + .form-label {
  color: #f00;
}

.form-text {
  height: 2em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.form-text,
.form-text + .form-label {
  padding: 0.3em 0.7em;
  line-height: 1.4em;
}

.form-text_hidden {
  display: none;
  visibility: hidden;
}

/*
Basic textarea
==============
*/
.form-textarea {
  display: block;
  width: 100%;
  min-height: 300px;
  padding: 0.5em 0.7em;
  resize: none;
  white-space: pre-wrap;
}

/*
Basic datepicker
================
*/
.form-date {
  text-transform: capitalize;
}

.form-date-btn {
  top: 0;
  right: 0;
  width: 3.33em;
  height: 100%;
}

.form-date-btn:active [am-i] {
  -webkit-transform: translate(0, 2px);
      -ms-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

.form-date-btn,
.form-date-btn [am-i] {
  position: absolute;
}

.form-date-btn [am-i] {
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -10px;
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-select {
  position: absolute;
  left: -100%;
  display: none;
  width: auto;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

.mobile-form-select .form-select {
  position: relative;
  left: auto;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mobile-form-select {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.mobile-form-select select.form-select {
  z-index: 1;
}

.selectric,
.mobile-form-select .form-select {
  height: 3.33em;
  padding: 1em 4.83em 1em 1.5em;
}

.selectric,
.selectric-item,
.mobile-form-select .form-select {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  line-height: 1.33em;
  font-weight: 700;
  background: #565e60;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.selectric:hover,
.selectric-item:hover,
.mobile-form-select .form-select:hover {
  background: #4a5153;
}

.selectric:active,
.selectric-item:active,
.mobile-form-select .form-select:active {
  background: #3e4445;
}

.selectric:hover [am-i*="triangle-down"]:after,
.mobile-form-select:hover [am-i*="triangle-down"]:after {
  -webkit-transform: scale(0.8, 1.2);
      -ms-transform: scale(0.8, 1.2);
          transform: scale(0.8, 1.2);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.selectric:active [am-i*="triangle-down"]:after,
.mobile-form-select:active [am-i*="triangle-down"]:after {
  -webkit-transform: scale(0.8, 1.2) translate(0, 2px);
      -ms-transform: scale(0.8, 1.2) translate(0, 2px);
          transform: scale(0.8, 1.2) translate(0, 2px);
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.selectric [am-i*="triangle-down"],
.mobile-form-select [am-i*="triangle-down"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.33em;
  height: 100%;
  background: #3e4445;
  border: 0;
  pointer-events: none;
}

.selectric [am-i*="triangle-down"]:after,
.mobile-form-select [am-i*="triangle-down"]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0;
  border-color: #fff transparent transparent;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*
Radio button & checkbox button
==========
*/
.form-radio, .form-checkbox {
  z-index: -999;
  position: absolute;
  opacity: 0;
}

.form-radio + .form-label, .form-checkbox + .form-label {
  display: inline-block;
  padding-left: 2em;
  cursor: pointer;
}

.form-radio + .form-label:hover:before, .form-checkbox + .form-label:hover:before {
  background: white;
}

.form-radio + .form-label:active:before, .form-checkbox + .form-label:active:before {
  background: #eeeeee;
}

.form-radio + .form-label:after, .form-radio + .form-label:before, .form-checkbox + .form-label:after, .form-checkbox + .form-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.44em;
  height: 1.44em;
  margin-top: -0.72em;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-radio + .form-label:before, .form-checkbox + .form-label:before {
  background: #f6f6f6;
  border: 2px solid #dddddd;
}

.form-radio + .form-label:after, .form-checkbox + .form-label:after {
  background: url("https://www.vinsalsace.com/assets/svg/layout/close.svg") no-repeat 50% 50%;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.form-radio:checked + .form-label:after, .form-checkbox:checked + .form-label:after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.form-radio + .form-label:before {
  border-radius: 99px;
}

/*
## Bouton de soumission
*/
.form-submit [am-s] {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-submit:active [am-s] {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.form-link {
  line-height: 1.4em;
  font-weight: 700;
  color: #5a5a5a;
}

.form-link:hover {
  color: #343434;
}

/*
Différents modules
==================
*/
[am-form] {
  text-align: center;
}

[am-form] .form-header {
  padding: 1em 0 1.3em;
}

[am-form] .form-header .title {
  margin-bottom: 0;
}

[am-form] .title {
  font-size: 1.55em;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

[am-form] .form-content {
  padding: 1.5em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

[am-form] .selectric-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (min-width: 768px) {
  [am-form] .form-content {
    padding: 1.5em 2em;
  }
}

@media (min-width: 1180px) {
  [am-form] .form-content {
    padding: 2em 2.5em;
  }
}

[am-form*="vertical"] .form-submit {
  margin-top: 1.5em;
}

/*
Formulaire À table
==================

Recherche de vins pour des plats spécifiques.
*/
.search-insert {
  padding: 1.2em 1.4em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  line-height: 1.4em;
  text-align: center;
}

.search-insert .form-submit {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-top: 30px;
  padding: 0.8em 2em 0.6em;
  background: #565e60;
}

.search-insert .form-submit:hover, .search-insert .form-submit:focus {
  background: #626b6d;
}

.search-insert .form-submit:active {
  background: #6e787b;
}

.search-insert .form-submit:active [am-s] {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.search-insert [am-i="loupe"] {
  vertical-align: text-top;
  width: 1.375em;
  height: 1.125em;
  margin: 0 auto;
}

.search-insert [am-i="loupe"] svg {
  overflow: visible;
}

@media (min-width: 768px) {
  .search-insert.form {
    padding: 1.2em 5.6em 1.2em 1.4em;
  }
  .search-insert .form-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 4.2em;
    height: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .search-insert.sticky-submit .form-text,
  .search-insert.sticky-submit .form-label {
    width: 100%;
    padding-right: 4em;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .search-insert.sticky-submit .form-submit {
    position: absolute;
    top: 1.2em;
    right: 1.4em;
    bottom: 1.2em;
    width: 3em;
    margin-top: 0;
    padding: 0;
    line-height: 18px;
  }
  .search-insert.sticky-submit .form-submit [am-i],
  .search-insert.sticky-submit .form-submit [am-s] {
    width: 22px;
    height: 18px;
  }
}

.search-a-table {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}

.search-a-table select,
.search-a-table [am-btn] {
  font-size: 16px;
  font-size: 1rem;
}

.search-a-table [am-i*="triangle-down"] {
  display: none;
}

.search-a-table .selectric-form-select,
.search-a-table .form-select {
  text-transform: uppercase;
}

.search-a-table .selectric,
.search-a-table .selectric-item {
  font-weight: 400;
}

.search-a-table .selectric,
.search-a-table .mobile-form-select {
  height: auto;
  padding: 0 1px;
  background: none;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-a-table .selectric:after,
.search-a-table .mobile-form-select:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-a-table .selectric:hover:after,
.search-a-table .selectricOpen .selectric:after {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.search-a-table .selectric:after,
.search-a-table .mobile-form-select:after {
  background-image: url("https://www.vinsalsace.com/assets/svg/layout/dot-orange.svg");
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 5px 3px;
}

.ie .search-a-table .selectric:after, .ie
.search-a-table .mobile-form-select:after {
  background-image: url("../png/dot-orange.png");
}

.search-a-table .selectricItems {
  top: 50%;
  left: -0.5em;
  background: #272122;
  -webkit-transform: translate(0, -50%) scale(0.7);
      -ms-transform: translate(0, -50%) scale(0.7);
          transform: translate(0, -50%) scale(0.7);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}

.search-a-table .selectricOpen .selectricItems {
  -webkit-transform: translate(0, -50%) scale(1);
      -ms-transform: translate(0, -50%) scale(1);
          transform: translate(0, -50%) scale(1);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-a-table .selectric-item {
  padding: 0.33em 0.75em;
  font-size: 0.75em;
  text-transform: none;
  color: #9d8c8c;
  background: #272122;
}

.search-a-table .selectric-item:hover {
  background: #9d8c8c;
}

.search-a-table .selectric-item:hover span {
  color: #fff;
}

.search-a-table .selectric-item + .selectric-item {
  border-top: 1px solid #43383a;
}

.search-a-table .mobile-form-select {
  vertical-align: text-bottom;
}

.search-a-table .mobile-form-select .form-select {
  height: auto;
  padding: 0;
  font-weight: 400;
  background: none;
}

.search-a-table .mobile-form-select select.form-select {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-transform: none;
}

@media (min-width: 768px) {
  .search-a-table {
    line-height: 1.8em;
  }
}

.search-recettes .selectric,
.search-recettes .mobile-form-select .form-select {
  height: 2.66em;
  padding: 0.665em 4em 0.665em 1em;
  background: #f3c583;
}

.search-recettes .mobile-form-select,
.search-recettes .selectric-form-select {
  display: block;
  margin-top: 13px;
  text-align: left;
}

.search-recettes [am-i*="triangle-down"] {
  width: 2.66em;
  background: #d67c43;
}

.search-recettes .selectric-list,
.search-recettes .selectric-item {
  background: #f8d9ac;
}

.search-recettes .selectric-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.search-recettes .selectric-list::-webkit-scrollbar-track {
  background: #f8d9ac;
}

.search-recettes .selectric-list::-webkit-scrollbar-thumb {
  background: #d67c43;
  border: 2px solid #f8d9ac;
  border-radius: 4px;
}

.search-recettes .selectric-item:hover {
  color: #fff;
  background: #db8b58;
}

.search-recettes .selectric-item span {
  -webkit-transition: 0s all;
  transition: 0s all;
}

@media (min-width: 768px) {
  .search-recettes.form {
    padding: 1.2em 7.2em 1.2em 1.4em;
  }
  .search-recettes .selectric-form-select {
    margin-top: 0;
  }
  .search-recettes .form-submit {
    width: 5.6em;
  }
}

/*
Formulaire Annuaire du Vignoble
===============================
*/
.search-annuaire-vignoble {
  margin: 40px auto;
  padding: 30px;
}

.search-annuaire-vignoble .form-el {
  font-size: 1.375em;
}

.search-annuaire-vignoble .form-submit {
  width: 2.4em;
  height: 2em;
}

.search-annuaire-vignoble [am-i="loupe"] {
  width: 25px;
  height: 21px;
}

.search-annuaire-vignoble .form-link {
  display: block;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .search-annuaire-vignoble .form-text {
    min-width: 330px;
  }
}

/*
Formulaire de palmarès
======================
*/
[am-form*="palmares"] .form-text,
[am-form*="palmares"] .selectric-form-select,
[am-form*="palmares"] .mobile-form-select {
  display: block;
  text-align: left;
}

[am-form*="palmares"] .form-el {
  margin-bottom: 26px;
}

[am-form*="palmares"] .form-text,
[am-form*="palmares"] .selectric,
[am-form*="palmares"] .selectric-item,
[am-form*="palmares"] .mobile-form-select .form-select {
  font-weight: 400;
  text-transform: uppercase;
  color: #5a5a5a;
  background: #fff;
}

[am-form*="palmares"] .form-text:hover,
[am-form*="palmares"] .selectric:hover,
[am-form*="palmares"] .selectric-item:hover,
[am-form*="palmares"] .mobile-form-select .form-select:hover {
  background: #fafafa;
}

[am-form*="palmares"] .selectric-list::-webkit-scrollbar-track {
  background: #fff;
}

[am-form*="palmares"] .selectric-list::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-color: #fff;
}

[am-form*="palmares"] .form-text {
  width: 100%;
  height: 3.33em;
  padding: 1em 1.5em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  line-height: 1.33em;
}

@media (min-width: 768px) {
  [am-form*="palmares"] .form-el {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  [am-form*="palmares"] .form-el {
    margin-bottom: 36px;
  }
}

/*
Formulaire de fichiers
======================
*/
[am-form*="files"] {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

[am-form*="files"] .form-text,
[am-form*="files"] .form-label,
[am-form*="files"] .form-el,
[am-form*="files"] .selectric-form-select,
[am-form*="files"] .mobile-form-select {
  display: block;
  text-align: left;
}

[am-form*="files"] .form-el {
  margin-bottom: 1em;
}

[am-form*="files"] .form-text,
[am-form*="files"] .form-label,
[am-form*="files"] .selectric,
[am-form*="files"] .selectric-item,
[am-form*="files"] .mobile-form-select .form-select {
  font-weight: 400;
  text-transform: uppercase;
  color: #5a5a5a;
}

[am-form*="files"] .form-text,
[am-form*="files"] .selectric,
[am-form*="files"] .selectric-item,
[am-form*="files"] .mobile-form-select .form-select {
  background: #edeaea;
}

[am-form*="files"] .form-text:hover,
[am-form*="files"] .selectric:hover,
[am-form*="files"] .selectric-item:hover,
[am-form*="files"] .mobile-form-select .form-select:hover {
  background: #f6f5f5;
}

[am-form*="files"] .selectric-list::-webkit-scrollbar-track {
  background: #edeaea;
}

[am-form*="files"] .selectric-list::-webkit-scrollbar-thumb {
  background: #cac1c1;
  border-color: #edeaea;
}

[am-form*="files"] .form-text,
[am-form*="files"] .form-label,
[am-form*="files"] .form-submit {
  width: 100%;
  height: 3.33em;
  padding: 1em;
  line-height: 1.33em;
}

[am-form*="files"] .form-label {
  left: auto;
}

[am-form*="files"] .form-submit {
  float: right;
  background: #3e4445;
}

[am-form*="files"] .form-submit:hover {
  background: #323638;
}

[am-form*="files"] .title {
  font-style: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

[am-form*="files"] [am-i*="chev"],
[am-form*="files"] [am-s*="chev"] {
  vertical-align: middle;
  width: 7px;
  height: 12px;
  fill: #565e60;
}

[am-form*="files"] [am-i*="chev"] {
  margin-top: -2px;
}

[am-form*="files"] [am-i*="chev-right"] {
  margin-left: 0.25em;
}

@media (min-width: 992px) {
  [am-form*="files"] .title {
    height: 2.15em;
    line-height: 2.15em;
    text-align: left;
  }
}

/*
Simple formulaire de recherche
==============================
*/
[am-form*="grey"] {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

[am-form*="grey"] .form-text,
[am-form*="grey"] .form-label,
[am-form*="grey"] .form-el,
[am-form*="grey"] .selectric-form-select,
[am-form*="grey"] .mobile-form-select {
  display: block;
  text-align: left;
}

[am-form*="grey"] .form-el {
  margin-bottom: 1em;
}

[am-form*="grey"] .form-text,
[am-form*="grey"] .form-label,
[am-form*="grey"] .selectric,
[am-form*="grey"] .selectric-item,
[am-form*="grey"] .mobile-form-select .form-select {
  font-weight: 400;
  text-transform: uppercase;
  color: #5a5a5a;
}

[am-form*="grey"] .form-text,
[am-form*="grey"] .selectric,
[am-form*="grey"] .selectric-item,
[am-form*="grey"] .mobile-form-select .form-select {
  background: #fff;
}

[am-form*="grey"] .form-text:hover,
[am-form*="grey"] .selectric:hover,
[am-form*="grey"] .selectric-item:hover,
[am-form*="grey"] .mobile-form-select .form-select:hover {
  background: whitesmoke;
}

[am-form*="grey"] .selectric-list::-webkit-scrollbar-track {
  background: #fff;
}

[am-form*="grey"] .selectric-list::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-color: #fff;
}

[am-form*="grey"] .form-text,
[am-form*="grey"] .form-label,
[am-form*="grey"] .form-submit {
  width: 100%;
  height: 3.33em;
  padding: 1em;
  line-height: 1.33em;
}

[am-form*="grey"] .form-label {
  left: auto;
}

[am-form*="grey"] .form-submit {
  background: #3e4445;
}

[am-form*="grey"] .form-submit:hover {
  background: #323638;
}

[am-form*="white"] .form-text,
[am-form*="white"] .form-textarea,
[am-form*="white"] .form-label,
[am-form*="white"] .form-el,
[am-form*="white"] .selectric-form-select,
[am-form*="white"] .mobile-form-select {
  display: block;
  text-align: left;
}

[am-form*="white"] .tac {
  text-align: center;
}

[am-form*="white"] .form-el {
  margin-bottom: 26px;
}

[am-form*="white"] .form-text,
[am-form*="white"] .form-textarea,
[am-form*="white"] .selectric,
[am-form*="white"] .selectric-item,
[am-form*="white"] .mobile-form-select .form-select {
  color: #5a5a5a;
}

[am-form*="white"] .form-text,
[am-form*="white"] .form-textarea,
[am-form*="white"] .selectric,
[am-form*="white"] .selectric-item,
[am-form*="white"] .mobile-form-select .form-select {
  background: #fff;
}

[am-form*="white"] .form-text,
[am-form*="white"] .form-textarea,
[am-form*="white"] .selectric,
[am-form*="white"] .selectricItems,
[am-form*="white"] .mobile-form-select .form-select {
  border: 1px solid #9d8c8c;
}

[am-form*="white"] .form-text:hover,
[am-form*="white"] .form-textarea:hover,
[am-form*="white"] .selectric:hover,
[am-form*="white"] .selectricItems:hover,
[am-form*="white"] .mobile-form-select .form-select:hover {
  border-color: #4e4242;
}

[am-form*="white"] .form-text:focus,
[am-form*="white"] .form-textarea:focus,
[am-form*="white"] .selectric:focus,
[am-form*="white"] .selectricItems:focus,
[am-form*="white"] .mobile-form-select .form-select:focus {
  border-color: #5a5a5a;
}

[am-form*="white"] .selectric,
[am-form*="white"] .selectric-item,
[am-form*="white"] .mobile-form-select .form-select {
  font-family: "myriad-pro", "Myriad Pro", sans-serif;
  font-weight: 400;
  color: #9d8c8c;
}

[am-form*="white"] .selectricItems {
  margin-top: -1px;
}

[am-form*="white"] .selectricItems:hover, [am-form*="white"] .selectricItems:focus {
  border-color: #9d8c8c;
}

[am-form*="white"] [am-i*="triangle-down"] {
  top: -1px;
  right: -1px;
  bottom: -1px;
  height: auto;
}

[am-form*="white"] .selectric-item {
  font-weight: 400;
}

[am-form*="white"] .selectric-item:hover {
  background: #f2f2f2;
}

[am-form*="white"] .selectric-item:hover span {
  color: #5a5a5a;
}

[am-form*="white"] .selectric-list::-webkit-scrollbar-track {
  background: #fff;
}

[am-form*="white"] .selectric-list::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  border-color: #fff;
}

[am-form*="white"] .datepicker {
  top: 100% !important;
}

[am-form*="white"] .form-text,
[am-form*="white"] .form-textarea,
[am-form*="white"] .form-label,
[am-form*="white"] .form-submit {
  width: 100%;
  height: 3.33em;
  padding: 1em;
  line-height: 1.33em;
}

[am-form*="white"] .form-label {
  left: auto;
  color: #9d8c8c;
}

[am-form*="white"] .form-submit,
[am-form*="white"] .form-date-btn,
[am-form*="white"] [am-i*="triangle-down"] {
  background: #565e60;
}

[am-form*="white"] .form-submit:hover,
[am-form*="white"] .form-date-btn:hover,
[am-form*="white"] [am-i*="triangle-down"]:hover {
  background: #454c4d;
}

@media (min-width: 768px) {
  [am-form*="white"] .form-el {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  [am-form*="white"] .form-el {
    margin-bottom: 36px;
  }
}

/*
Quizz
=====
*/
[am-form*="quiz"] {
  color: #5a5a5a;
}

[am-form*="quiz"] .quiz-item .title {
  margin-bottom: 1.375em;
  font-size: 1.66em;
  font-style: normal;
  font-weight: 400;
}

[am-form*="quiz"] [am-btn] {
  margin: 3em 0;
}

[am-form*="quiz"] .form-msg {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-form*="quiz"] .form-msg.isVisible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  [am-form*="quiz"] [am-btn] {
    margin-top: 4em;
  }
}

@media (min-width: 1200px) {
  [am-form*="quiz"] [am-btn] {
    margin-top: 5em;
  }
}

.quiz-item + .quiz-item,
.quiz-item .form-el + .form-el {
  margin-top: 1em;
}

.quiz-item .inner {
  padding: 3em;
  background: #fff;
}

.quiz-item .form-el {
  float: left;
  clear: left;
}

@media (min-width: 480px) {
  .quiz-item + .quiz-item {
    margin-top: 3em;
  }
}

@media (min-width: 768px) {
  .quiz-item + .quiz-item {
    margin-top: 4em;
  }
  .quiz-item .inner {
    padding: 4em;
  }
}

@media (min-width: 1200px) {
  .quiz-item + .quiz-item {
    margin-top: 5em;
  }
  .quiz-item .inner {
    padding: 5em;
  }
}

.quiz-list {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.quiz-step {
  margin-bottom: 1em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.quiz-step.right {
  float: none;
}

.quiz-step [am-i*="chev-"] {
  position: absolute;
  top: 50%;
}

.quiz-step [am-s*="chev-"] {
  fill: #9d8c8c;
}

.quiz-step [am-i*="chev-left"] {
  left: -30px;
}

.quiz-step [am-i*="chev-right"] {
  right: -30px;
}

@media (min-width: 480px) {
  .quiz-step {
    position: absolute;
    top: 50%;
    left: -0.65em;
    height: 2em;
    margin-top: -1em;
    font-size: 80px;
    font-size: 5rem;
    letter-spacing: 0.15em;
  }
  .quiz-step.right {
    right: -0.65em;
    left: auto;
  }
}

@media (min-width: 768px) {
  .quiz-step {
    font-size: 100px;
    font-size: 6.25rem;
  }
}

@media (max-width: 480px) {
  .quiz-step [am-i*="chev"] {
    display: none;
  }
}

@media (max-width: 480px) {
  .quiz-step-sep,
  .quiz-step-total,
  .quiz-step-current {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
}

@media (min-width: 480px) {
  .quiz-step-total,
  .quiz-step-current {
    margin-right: -0.17em;
  }
}

.quiz-step-sep:after {
  content: "/";
}

@media (min-width: 480px) {
  .quiz-step-sep {
    width: 100%;
    height: 0.07em;
    margin-top: 0.05em;
    background: #5a5a5a;
  }
  .quiz-step-sep:after {
    content: "";
  }
}

/*
Pictogrammes & icônes
=====================
*/
/*
## Icônes

Exemple d'utilsation :

	<i am-i="picto">
		<svg viewbox="0 0 40 40" am-s="picto">
			<use xlink:href="#svg-picto"></use>
		</svg>
	</i>

L'attribut `viewbox` est nécessaire pour définir le viewport du SVG.
*/
[am-i] {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

[am-s] {
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
}

/*
## Logos
*/
[am-s="logo"] {
  width: 90px;
  height: 32px;
}

@media (min-width: 992px) {
  [am-s="logo"] {
    width: 187px;
    height: 82px;
  }
}

[am-i="logo-alsace"]
[am-s="logo-alsace"] {
  display: block;
  width: 20px;
  height: 16px;
}

[am-s="logo-alsace"] {
  fill: #fff;
}

.nav-link:hover [am-s="logo-alsace"] {
  fill: #e32219;
}

.nav-link:active [am-s="logo-alsace"] {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

[am-i="logo-studio-meta"],
[am-s="logo-studio-meta"] {
  display: block;
  width: 69px;
  height: 11px;
}

[am-s="logo-studio-meta"] {
  fill: #8499b0;
}

[am-i="logo-deezer"],
[am-s="logo-deezer"],
[am-i="logo-spotify"],
[am-s="logo-spotify"] {
  vertical-align: middle;
  width: 100%;
  max-width: 80px;
  height: auto;
}

[am-s="logo-deezer"],
[am-s="logo-spotify"] {
  margin-top: -5px;
  fill: #fff;
  opacity: 0.3;
}

a:hover [am-s="logo-deezer"], a:hover
[am-s="logo-spotify"] {
  opacity: 1;
}

[am-i="loupe"] {
  width: 22px;
  height: 18px;
}

[am-s="loupe"] {
  fill: #fff;
}

[am-i*="chev-left"],
[am-i*="chev-right"] {
  width: 10px;
  height: 19px;
}

[am-i*="chev-top"],
[am-i*="chev-bot"] {
  width: 19px;
  height: 10px;
}

[am-s*="chev-"] {
  fill: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

[am-s*="chev-top"] {
  fill: #fff;
}

[am-i="play"],
[am-s="play"] {
  width: 33px;
  height: 33px;
}

[am-i="play"] .circle,
[am-i="play"] .triangle,
[am-s="play"] .circle,
[am-s="play"] .triangle {
  display: block;
}

[am-i="play"] .circle,
[am-s="play"] .circle {
  width: 100%;
  height: 100%;
  border: 2px solid;
  border-radius: 50%;
}

[am-i="play"] .triangle,
[am-s="play"] .triangle {
  position: absolute;
  top: 50%;
  left: 50%;
}

[am-i="audio"],
[am-s="audio"] {
  width: 24px;
  height: 24px;
}

[am-i="audio-stroke"],
[am-s="audio-stroke"] {
  width: 23px;
  height: 18px;
}

[am-i="eye"],
[am-s="eye"] {
  width: 25px;
  height: 17px;
}

[am-s="eye"] {
  vertical-align: top;
}

[am-i*="mouse"],
[am-s="mouse"] {
  width: 16px;
  height: 26px;
}

[am-s="mouse"] {
  fill: #fff;
}

[am-i*="hamburger"],
[am-i*="hamburger"]:after,
[am-i*="hamburger"]:before {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  width: 21px;
  height: 2px;
  background: #fff;
}

[am-i*="hamburger"] {
  margin: -3px 1em 0 0;
}

[am-i*="hamburger"]:after, [am-i*="hamburger"]:before {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0, 1.65, 0.755, 1.62);
  transition: all 0.5s cubic-bezier(0, 1.65, 0.755, 1.62);
}

[am-i*="hamburger"]:after {
  top: 7px;
}

[am-i*="hamburger"]:before {
  bottom: 7px;
}

[am-btn]:hover [am-i*="hamburger"]:before {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}

.no-csstransforms3d [am-btn]:hover [am-i*="hamburger"]:before {
  -webkit-transform: translate(0, -3px);
      -ms-transform: translate(0, -3px);
          transform: translate(0, -3px);
}

.no-csstransforms [am-btn]:hover [am-i*="hamburger"]:before {
  bottom: 10px;
}

[am-btn]:hover [am-i*="hamburger"]:after {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.no-csstransforms3d [am-btn]:hover [am-i*="hamburger"]:after {
  -webkit-transform: translate(0, 3px);
      -ms-transform: translate(0, 3px);
          transform: translate(0, 3px);
}

.no-csstransforms [am-btn]:hover [am-i*="hamburger"]:after {
  top: 10px;
}

[am-i*="close"],
[am-s*="close"] {
  display: block;
  width: 10px;
  height: 10px;
  color: #ebe6e1;
}

[am-i*="close"][am-i*="circle"] {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -5px;
}

[am-i*="close"][am-i*="circle"]:after {
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

a:hover [am-i*="close"][am-i*="circle"] [am-s],
button:hover [am-i*="close"][am-i*="circle"] [am-s] {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

a:hover [am-i*="close"][am-i*="circle"]:after,
button:hover [am-i*="close"][am-i*="circle"]:after {
  -webkit-transform: translateZ(0) scale(1.1);
          transform: translateZ(0) scale(1.1);
}

a:active [am-i*="close"][am-i*="circle"] [am-s],
button:active [am-i*="close"][am-i*="circle"] [am-s] {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

a:active [am-i*="close"][am-i*="circle"]:after,
button:active [am-i*="close"][am-i*="circle"]:after {
  -webkit-transform: translateZ(0) scale(0.95);
          transform: translateZ(0) scale(0.95);
}

[am-s*="close"] {
  vertical-align: top;
  fill: #ebe6e1;
}

[am-i*="circle"]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border: 2px solid;
  border-radius: 50%;
}

[am-i*="plus"] {
  display: block;
  width: 22px;
  height: 22px;
}

[am-i*="plus"]:after, [am-i*="plus"]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #fff;
}

[am-i*="plus"]:before {
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
}

[am-i*="plus"]:after {
  width: 2px;
  height: 22px;
  margin: -11px 0 0 -1px;
}

[am-i*="return-arrow"]
[am-s*="return-arrow"] {
  width: 11px;
  height: 22px;
  margin-right: 10px;
}

[am-i*="dot"] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}

[am-i*="dot"][am-i*="red"] {
  background: #ca0a29;
}

[am-i*="dot"][am-i*="yellow"] {
  background: #fdf23d;
}

[am-i*="dot"][am-i*="orange"] {
  background: #ffb400;
}

[am-i*="dot"][am-i*="white"] {
  background: #fff;
}

[am-i*="dot"][am-i*="black"] {
  background: #000;
}

@media (min-width: 768px) {
  [am-i*="dot"] {
    width: 24px;
    height: 24px;
  }
}

[am-i*="pdf"]
[am-s*="pdf"] {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

[am-btn*="grey"] [am-s*="pdf"] {
  fill: #fff;
}

[am-i*="triangle-down"] {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0;
  border-color: #fff transparent transparent;
}

/*
Recettes
========
*/
[am-i*="cake"],
[am-s*="cake"],
[am-i*="user"],
[am-s*="user"],
[am-i*="gauge"],
[am-s*="gauge"] {
  width: 39px;
  height: 39px;
}

[am-i*="cake"],
[am-i*="user"],
[am-i*="gauge"] {
  vertical-align: middle;
}

[am-s*="cake"],
[am-s*="user"],
[am-s*="gauge"] {
  fill: #fff;
}

[am-i*="marker"],
[am-s*="marker"] {
  width: 23px;
  height: 27px;
  margin: auto;
}

[am-btn*="mediumgold"] [am-s*="marker"] {
  fill: #a48a2f;
}

[am-btn*="mediumgold"]:hover [am-s*="marker"] {
  fill: #836e26;
}

[am-i*="compass"],
[am-s*="compass"] {
  width: 28px;
  height: 28px;
}

[am-i*="compass"] {
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-btn]:hover [am-i*="compass"] {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}

[am-btn]:active [am-i*="compass"] {
  -webkit-transform: rotate(290deg) scale(0.95);
      -ms-transform: rotate(290deg) scale(0.95);
          transform: rotate(290deg) scale(0.95);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-i="crown"],
[am-s="crown"] {
  width: 33px;
  height: 29px;
}

[am-s="crown"] {
  fill: #fff;
}

[am-i="grapes"],
[am-s="grapes"],
[am-i="surface"],
[am-s="surface"],
[am-i="altitude"],
[am-s="altitude"],
[am-i="gc-marker"],
[am-s="gc-marker"],
[am-i="luminosite"],
[am-s="luminosite"],
[am-i="ground-type"],
[am-s="ground-type"] {
  width: 39px;
  height: 39px;
}

[am-i*="book"],
[am-i*="glass"],
[am-i*="fork-knife"] {
  vertical-align: middle;
}

[am-i*="book"]:after,
[am-i*="glass"]:after,
[am-i*="fork-knife"]:after {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border-color: #fff;
}

[am-s="book"],
[am-s="glass"],
[am-s="fork-knife"] {
  fill: #fff;
}

[am-i*="book"],
[am-s="book"] {
  width: 25px;
  height: 15px;
}

[am-i*="glass"],
[am-s="glass"] {
  width: 15px;
  height: 22px;
}

[am-i*="fork-knife"],
[am-s="fork-knife"] {
  width: 11px;
  height: 23px;
}

[am-i="map-route"],
[am-s="map-route"] {
  width: 68px;
  height: 11px;
}

[am-i="map-zone"],
[am-s="map-zone"],
[am-i="map-vigne"],
[am-s="map-vigne"] {
  width: 28px;
  height: 28px;
}

[am-i="map-zone"],
[am-s="map-zone"] {
  fill: #f12010;
}

[am-i="map-vigne"],
[am-s="map-vigne"] {
  fill: #cee086;
}

[am-i="questionmark"],
[am-s="questionmark"] {
  width: 23px;
  height: 23px;
}

[am-i="grand-cru"],
[am-s="grand-cru"] {
  width: 44px;
  height: 44px;
}

[am-i="hebergement"],
[am-s="hebergement"] {
  width: 44px;
  height: 44px;
}

[am-i*="circle chat"]:after,
[am-i*="circle map"]:after,
[am-i*="circle panel"]:after,
[am-i*="circle plate"]:after,
[am-i*="circle support"]:after {
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border-width: 4px;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}

[am-i*="chat"],
[am-s*="chat"] {
  width: 17px;
  height: 17px;
}

[am-i*="map"],
[am-s*="map"] {
  width: 18px;
  height: 15px;
}

[am-i*="panel"],
[am-s*="panel"] {
  width: 19px;
  height: 19px;
}

[am-i*="plate"],
[am-s*="plate"] {
  width: 21px;
  height: 21px;
}

[am-i*="support"],
[am-s*="support"] {
  width: 13px;
  height: 20px;
}

[am-i*="euro"],
[am-s*="euro"] {
  width: 13px;
  height: 19px;
}

[am-i="burger"] {
  width: 20px;
  height: 14px;
}

[am-i="burger"] .burger-bread,
[am-i="burger"] .burger-steak,
[am-i="burger"] .burger-stick {
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

[am-i="burger"] .burger-bread,
[am-i="burger"] .burger-steak {
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-i="burger"] .burger-top {
  top: 0;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[am-i="burger"] .burger-steak {
  top: 50%;
  margin-top: -1px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[am-i="burger"] .burger-bot {
  bottom: 0;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[am-i="burger"] .burger-stick {
  top: 50%;
  left: 0;
  margin: -1px 0 0;
  opacity: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-i="burger"] .burger-left {
  -webkit-transform: rotateZ(45deg) translateX(-100%);
      -ms-transform: rotate(45deg) translateX(-100%);
          transform: rotateZ(45deg) translateX(-100%);
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

[am-i="burger"] .burger-right {
  -webkit-transform: rotateZ(-45deg) translateX(100%);
      -ms-transform: rotate(-45deg) translateX(100%);
          transform: rotateZ(-45deg) translateX(100%);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.isOpens [am-i="burger"] .burger-bread,
.isOpens [am-i="burger"] .burger-steak {
  opacity: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.isOpens [am-i="burger"] .burger-top {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.isOpens [am-i="burger"] .burger-steak {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.isOpens [am-i="burger"] .burger-bot {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.isOpens [am-i="burger"] .burger-stick {
  opacity: 1;
}

.isOpens [am-i="burger"] .burger-left {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.isOpens [am-i="burger"] .burger-right {
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/*
## Icônes réseaux sociaux
*/
[am-i^="social-"],
[am-s^="social-"] {
  width: 24px;
  height: 24px;
}

a:hover [am-s*="facebook"],
a:active [am-s*="facebook"] {
  fill: #3b5998;
}

a:hover [am-s*="twitter"],
a:active [am-s*="twitter"] {
  fill: #55acee;
}

a:hover [am-s*="pinterest"],
a:active [am-s*="pinterest"] {
  fill: #cc2127;
}

[am-i="check"],
[am-s="check"] {
  width: 21px;
  height: 21px;
}

[am-i="download"],
[am-s="download"] {
  width: 14px;
  height: 15px;
}

[am-i="calendar"],
[am-s="calendar"] {
  width: 21px;
  height: 21px;
  fill: #fff;
}

[am-i*="loader"] {
  width: 2.4em;
  height: 2.4em;
  padding: 0.2em;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
          animation: loader 2s linear infinite;
}

[am-s*="loader"] {
  width: 2em;
  height: 2em;
}

@-webkit-keyframes loader {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

[am-i*="stars"] {
  display: block;
}

[am-i*="stars"] [am-s="star"] + [am-s="star"] {
  margin-left: 0.5em;
}

[am-i*="stars"][am-i*="1"] [am-s="star"] {
  fill: #5a5a5a;
}

[am-i*="stars"][am-i*="1"] [am-s="star"]:first-child {
  fill: #fff;
}

[am-i*="stars"][am-i*="2"] [am-s="star"] {
  fill: #5a5a5a;
}

[am-i*="stars"][am-i*="2"] [am-s="star"]:first-child, [am-i*="stars"][am-i*="2"] [am-s="star"]:nth-child(2) {
  fill: #fff;
}

[am-i*="stars"][am-i*="3"] [am-s="star"] {
  fill: #fff;
}

[am-i*="stars"][am-i*="3"] [am-s="star"]:last-child, [am-i*="stars"][am-i*="3"] [am-s="star"]:nth-child(4) {
  fill: #5a5a5a;
}

[am-i*="stars"][am-i*="4"] [am-s="star"] {
  fill: #fff;
}

[am-i*="stars"][am-i*="4"] [am-s="star"]:last-child {
  fill: #5a5a5a;
}

[am-i*="stars"][am-i*="5"] [am-s="star"] {
  fill: #fff;
}

[am-s*="star"] {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 1em;
  height: 0.958em;
}

[am-i*="fullscreen"],
[am-s*="fullscreen"] {
  width: 2.125em;
  height: 2.125em;
}

/* Icon Production */
[am-i="agriculture-biologique"] {
  width: 44px;
  height: 58px;
}

[am-i="bio-europe"],
[am-i="bio-europe"] > * {
  width: 60px;
  height: 39px;
}

[am-i="biodynamie"] {
  width: 129px;
  height: 37px;
}

[am-i="link"] {
  width: 33px;
  height: 33px;
}

/*
Navigation
==========
*/
/*
## Styles globaux
*/
.nav-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .main-nav .nav-list,
  .footer-nav .nav-list {
    margin-right: -1.3em;
  }
}

@media (min-width: 992px) {
  .main-nav .nav-list,
  .footer-nav .nav-list {
    margin-right: -1.67em;
  }
}

.nav-item {
  float: left;
}

.nav-link {
  display: block;
  line-height: 1em;
  color: #fff;
}

.main-nav .nav-link,
.footer-nav .nav-link {
  display: block;
  padding: 1em;
}

@media (min-width: 768px) {
  .main-nav .nav-link,
  .footer-nav .nav-link {
    padding: 1.67em 1.3em;
  }
}

@media (min-width: 992px) {
  .main-nav .nav-link,
  .footer-nav .nav-link {
    padding: 1.67em 1.4em;
  }
}

@media (min-width: 1200px) {
  .main-nav .nav-link,
  .footer-nav .nav-link {
    padding: 1.67em;
  }
}

/*
Menu principal
==============
*/
.main-nav {
  z-index: 100;
  position: static;
  min-width: 80%;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

.main-nav .nav-list {
  position: static;
}

.main-nav .nav-item {
  position: static;
}

.no-js .main-nav .nav-item:hover .isDropdown {
  z-index: 200;
  top: 100%;
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  pointer-events: painted;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s 0s, opacity 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.3s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-nav .nav-item + .nav-item .nav-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1.11em;
  margin-top: -0.55em;
  background: #4b4b4b;
  pointer-events: none;
}

.main-nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-nav .nav-link:hover:after {
  background: #6f767f;
  opacity: 1;
  visibility: visible;
}

.main-nav .nav-link.isActive:after {
  background-color: #575d64;
  opacity: 1;
  visibility: visible;
}

/*
Sous-menu
=========
*/
.nav-sub {
  top: -9999px;
  left: 0;
  width: 100%;
  margin-left: 0;
  padding: 2em 0;
  background: #ebeaea;
  border-bottom: 10px solid #fff;
  overflow: hidden;
}

.nav-sub .surtitle {
  font-size: 1.333em;
  text-align: center;
  color: #9d8c8c;
}

.nav-sub .surtitle span {
  padding-bottom: 0.4em;
}

.nav-sub .surtitle span:after {
  background: #e2e1e1;
}

.nav-sub .form-submit {
  background: #565e60;
}

.nav-sub .form-submit:hover, .nav-sub .form-submit:focus {
  background: #626b6d;
}

.nav-sub .form-submit:active {
  background: #6e787b;
}

.nav-sub .form-submit:active [am-s] {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.nav-sub .thumbnails-caption {
  font-size: 1.1em;
}

.nav-sub .list-link:hover {
  color: #2c2c2c;
}

.nav-sub .list-link:hover img {
  -webkit-transform: scale(1.075);
      -ms-transform: scale(1.075);
          transform: scale(1.075);
}

.nav-sub .list-link img {
  -webkit-transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 1200px) and (min-height: 1000px) {
  .nav-sub {
    padding: 3em 0;
  }
  .nav-sub .search-a-table {
    margin-top: 4em;
  }
}

@media (min-width: 1400px) and (min-height: 1100px) {
  .nav-sub {
    padding: 4em 0;
  }
  .nav-sub .search-a-table {
    margin-top: 4em;
  }
}

.nav-sub-col .surtitle {
  text-align: left;
}

.nav-sub-text .article-content {
  margin-bottom: 0;
}

.nav-sub-text .list-item {
  font-size: 1.1em;
}

.nav-sub-text .list-item + .list-item {
  margin-top: 1em;
}

.article-nav:first-child:before {
  content: "";
  position: absolute;
  top: -500px;
  right: -50px;
  width: 2000px;
  height: 1500px;
  background: #f2f1f1;
}

.article-nav .title {
  font-size: 1.5em !important;
}

.article-nav .title a:hover {
  color: #2c2c2c;
}

@media (min-width: 1200px) {
  .article-nav:first-child:before {
    right: -50px;
  }
}

/*
Menu secondaire
===============
*/
.secondary-nav {
  top: 0;
  margin-bottom: 8px;
  font-size: 12px;
  font-size: 0.75rem;
}

.secondary-nav .nav-link,
.secondary-nav .form-text {
  padding: 1em;
}

.secondary-nav .nav-link {
  color: #c7d1d8;
}

.secondary-nav .nav-link:hover {
  color: white;
}

.nav-search .form-text,
.nav-lang .nav-link,
.nav-lang,
.nav-lang .list {
  background: black;
}

/*
## Recherche
*/
.nav-search .form-text,
.nav-search .nav-link {
  height: 3em;
}

.nav-search .form-text {
  width: 0;
  padding-right: 0;
  padding-left: 0;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-search .easy-autocomplete {
  width: 0 !important;
  float: left;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-search .easy-autocomplete ul {
  z-index: 2;
  position: absolute;
  top: 3em;
  min-width: 350px;
  max-height: 270px;
  padding: 0px;
  list-style-type: none;
  background: #000;
  color: #fff;
  overflow: auto;
  /* ScrollBar */
}

.nav-search .easy-autocomplete ul::-webkit-scrollbar-track {
  background-color: #000;
}

.nav-search .easy-autocomplete ul::-webkit-scrollbar {
  width: 8px;
  background-color: #000;
}

.nav-search .easy-autocomplete ul::-webkit-scrollbar-thumb {
  background-color: #2a3138;
}

.nav-search .easy-autocomplete ul li {
  padding: 0.9em 1em;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-search .easy-autocomplete ul li:nth-child(2n) {
  background: #2a3138;
}

.nav-search .easy-autocomplete ul li:hover, .nav-search .easy-autocomplete ul li:focus, .nav-search .easy-autocomplete ul li.selected {
  background: #fff !important;
  color: #000 !important;
}

.nav-search .nav-link {
  width: 4em;
  background: #1e272f;
}

.nav-search .nav-link:hover {
  background: #364654;
}

.nav-search .nav-link:hover [am-s="loupe"] {
  fill: #fff;
}

.nav-search [am-i="loupe"] {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -11px;
}

.nav-search [am-s="loupe"] {
  fill: #a4a4a4;
}

.nav-search .isOpen .easy-autocomplete {
  width: 200px !important;
}

.nav-search .isOpen .form-text {
  width: 200px;
  padding: 1em;
  opacity: 1;
}

.nav-search .isOpen .nav-link {
  background: #4a6073;
}

.nav-search .isOpen [am-s="loupe"] {
  fill: #fff;
}

/*
## SÃ©lecion de langue
*/
.nav-lang {
  text-align: center;
  text-transform: uppercase;
}

.nav-lang:hover > .nav-link,
.nav-lang:hover > .nav-link:hover {
  color: white;
  background: #28343e;
}

.nav-lang .nav-link {
  text-transform: uppercase;
}

.nav-lang .nav-link:hover {
  background: #1e272f;
}

.nav-lang .nav-link:active {
  background: #32414e;
}

.nav-lang > .nav-link {
  color: #99acbd;
}

.nav-lang > .nav-link span, .nav-lang > .nav-link:after {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.nav-lang > .nav-link span {
  width: 1.8em;
  text-align: left;
}

.nav-lang > .nav-link:after {
  content: "";
  margin-top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0;
  border-color: #4a6073 transparent transparent;
}

.nav-lang .list {
  z-index: 200;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
}

.nav-lang .list-item {
  width: 33.333%;
}

/*
Navigation de pied de page
==========================
*/
.footer-nav {
  margin-bottom: 30px;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  background: #252b31;
}

.footer-nav .main-logo {
  margin: auto;
}

.footer-nav .nav-link {
  color: #cccccc;
}

.footer-nav .nav-link:hover {
  color: #fff;
}

.footer-nav .nav-link:hover [am-s="chev-top"] {
  fill: #fff;
}

.footer-nav [am-s="chev-top"] {
  fill: #3f4850;
}

@media (min-width: 768px) {
  .footer-nav .main-logo {
    float: left;
  }
  .footer-nav .nav-list {
    float: right;
    margin-top: 22px;
  }
}

@media (min-width: 992px) {
  .footer-nav {
    margin-bottom: 50px;
  }
}

/*
Navigation de pagination
========================
*/
.pagination-nav {
  margin-bottom: -70px;
  padding: 50px 0;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.1em;
  text-align: center;
}

.pagination-nav .nav-list {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.pagination-nav .nav-item.nav-arrow .nav-link {
  padding-right: 1em;
  padding-left: 1em;
  border-color: transparent !important;
}

.pagination-nav .nav-item.isActive .nav-link {
  font-weight: 700;
  color: #5a5a5a;
}

.pagination-nav .nav-sep,
.pagination-nav .nav-link {
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 0.63em 0 0.83em;
  line-height: 1;
  color: inherit;
  border-bottom: 0.25em solid;
}

.pagination-nav .nav-link {
  padding-right: 0.3em;
  padding-left: 0.3em;
}

.pagination-nav .nav-link.isDisabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.pagination-nav [am-i*="chev-"],
.pagination-nav [am-s*="chev-"] {
  vertical-align: middle;
  width: 13px;
  height: 21px;
}

@media (min-width: 768px) {
  .pagination-nav {
    margin-bottom: -110px;
    font-size: 1.33em;
  }
}

/*
Images responsive
=================

Attributs pour gérer l'affichage d'images de différentes tailles selon les supports.
*/
[am-res] {
  display: none;
}

[am-res*="mobile"] {
  display: block;
}

[am-res*="mobile"].inlbl {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

@media (min-width: 768px) {
  [am-res*="tablet"] {
    display: block;
  }
  [am-res*="tablet"].inlbl {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
}

@media (min-width: 992px) {
  [am-res*="desktop"] {
    display: block;
  }
  [am-res*="desktop"].inlbl {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
}

@media (min-width: 1200px) {
  [am-res*="large"] {
    display: block;
  }
  [am-res*="large"].inlbl {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
}

/*
Slider
======
*/
[am-slider] {
  font-size: 18px;
  font-size: 1.125rem;
  background: #141a1f;
}

[am-slider*="progress"] {
  padding-bottom: 10px;
}

[am-slider*="text"] .table {
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 300px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 44px;
}

[am-slider*="text"] [am-btn],
[am-slider*="text"] .title,
[am-slider*="text"] .surtitle {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(300px) scale(0.7);
      -ms-transform: translateY(300px) scale(0.7);
          transform: translateY(300px) scale(0.7);
}

[am-slider*="text"] .title,
[am-slider*="text"] .surtitle {
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-slider*="text"] .slick-active [am-btn],
[am-slider*="text"] .slick-active .title,
[am-slider*="text"] .slick-active .surtitle,
[am-slider*="text"] .slide-active [am-btn],
[am-slider*="text"] .slide-active .title,
[am-slider*="text"] .slide-active .surtitle {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

[am-slider*="text"] .slick-active .title,
[am-slider*="text"] .slick-active .surtitle,
[am-slider*="text"] .slide-active .title,
[am-slider*="text"] .slide-active .surtitle {
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-slider*="text"] .slick-active .title,
[am-slider*="text"] .slide-active .title {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[am-slider*="text"] .slick-active [am-btn],
[am-slider*="text"] .slide-active [am-btn] {
  -webkit-transition: opacity 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), outline-offset 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), outline-offset 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), outline-offset 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1), outline-offset 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-slider*="text"] .surtitle {
  margin-bottom: 0.5em;
  font-size: 1em;
}

[am-slider*="text"] .title {
  margin-bottom: 0.35em;
  font-size: 2.2em;
}

[am-slider*="text"] [am-btn] {
  font-size: 0.75em;
}

@media (min-width: 480px) {
  [am-slider*="text"] .table {
    min-height: 400px;
  }
  [am-slider*="text"] .surtitle {
    font-size: 1.4em;
  }
  [am-slider*="text"] .title {
    font-size: 3.4em;
  }
}

@media (min-width: 768px) {
  [am-slider*="text"] .table {
    height: 500px;
    padding: 0 50px;
  }
  [am-slider*="text"] .surtitle {
    font-size: 1.6em;
  }
  [am-slider*="text"] .title {
    font-size: 3.8em;
  }
  [am-slider*="text"] [am-btn] {
    font-size: 1em;
  }
}

@media (min-width: 992px) {
  [am-slider*="text"] .table {
    padding: 0 90px;
  }
  [am-slider*="text"] .surtitle {
    font-size: 1.8em;
  }
  [am-slider*="text"] .title {
    font-size: 4.2em;
  }
}

@media (min-width: 1200px) {
  [am-slider*="text"] .table {
    width: 94%;
    max-width: 1180px;
    padding: 0;
  }
  [am-slider*="text"] .surtitle {
    font-size: 2em;
  }
  [am-slider*="text"] .title {
    font-size: 5em;
  }
}

@media (min-width: 1200px) and (min-height: 700px) {
  [am-slider*="text"] .table {
    height: 600px;
  }
}

@media (min-width: 1400px) and (min-height: 900px) {
  [am-slider*="text"] .table {
    height: 700px;
  }
}

@media (min-width: 1400px) and (min-height: 1000px) {
  [am-slider*="text"] .table {
    height: 830px;
  }
}

.slider-item .inner,
.slider-item .table,
.slider-img {
  width: 100%;
}

.slider-item {
  text-align: center;
  color: #fff;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.slider-header {
  vertical-align: middle;
}

.slider-text-noir .surtitle,
.slider-text-noir .title {
  color: #141a1f;
}

.slider-text-blanc .surtitle,
.slider-text-blanc .title {
  color: #fff;
}

.slider-text-or .surtitle,
.slider-text-or .title {
  color: #c8af85;
}

.slider-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: none;
  background-size: cover;
  -webkit-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-slider*="text"] .slider-img {
  position: absolute;
  top: 0;
  left: 0;
}

[am-slider*="images"] .slider-img {
  height: 400px;
  overflow: hidden;
}

[am-slider*="images"] .slider-img img {
  opacity: 0;
  visibility: hidden;
}

[am-slider*="images"] .slider-img noscript img {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  [am-slider*="images"] .slider-img {
    height: 500px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  [am-slider*="images"] .slider-img {
    height: 600px;
  }
}

@media (min-width: 1200px) and (min-height: 700px) {
  [am-slider*="images"] .slider-img {
    height: 700px;
  }
}

@media (min-width: 1400px) and (min-height: 800px) {
  [am-slider*="images"] .slider-img {
    height: 800px;
  }
}

.slick-ready .slider-img {
  -webkit-animation: zoomInSlider 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: zoomInSlider 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

.firefox .slick-ready .slider-img {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes zoomInSlider {
  0% {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  100% {
    -webkit-transform: scale(1.2) translateZ(0);
            transform: scale(1.2) translateZ(0);
  }
}

@keyframes zoomInSlider {
  0% {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  100% {
    -webkit-transform: scale(1.2) translateZ(0);
            transform: scale(1.2) translateZ(0);
  }
}

/*
## Barre de progression
*/
.slider-progress,
.slider-progressed {
  position: absolute;
  right: 0;
  left: 0;
  height: 10px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.slider-progress {
  bottom: 0;
  width: 100%;
  background: attr("data-color");
}

.slider-progressed {
  width: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}

.no-csstransforms3d .slider-progressed {
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

/*
Vignettes
=========

Exemple d'utilisation :

	<ul class="list thumbnails">
		<li class="thumbnails-item col-xs-6 col-sm-4">
			<a href="#" class="thumbnails-link">
				<figure class="thumbnails-fig">
					<div class="thumbnails-img">
						<img src="image.jpg" alt="" width="270" height="140">
					</div>
					<figcaption class="thumbnails-caption">
						<strong>Titre</strong>
						sous-titre
					</figcaption>
				</figure>
			</a>
		</li><!--
		--><li class="thumbnails-item col-xs-6 col-sm-4">
			<a href="#" class="thumbnails-link">
				<figure class="thumbnails-fig">
					<div class="thumbnails-img">
						<img src="image.jpg" alt="" width="270" height="140">
					</div>
					<figcaption class="thumbnails-caption">
						<strong>Titre</strong>
						sous-titre
					</figcaption>
				</figure>
			</a>
		</li>
	</ul>

Attention, ne pas oublier le `<!-- -->` entre les balise de fermeture et d'ouverture des `<li>`. Ces derniers sont affichés en `display: inline-block;`, le commentaire html permet de supprimer l'espace automatiquement inséré entre deux éléments en `inline-block` au retour à la ligne.
*/
@media (min-width: 992px) {
  .nav-sub .thumbnails.row {
    margin-right: -30px;
    margin-left: -30px;
  }
}

.thumbnails-item {
  float: none !important;
  display: inline-block !important;
  *display: inline;
  vertical-align: top;
  margin: 20px 0;
  zoom: 1;
}

@media (min-width: 992px) {
  .nav-sub .thumbnails-item[class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.thumbnails-link {
  display: block;
  color: #5a5a5a;
}

.thumbnails-link:hover {
  color: #343434;
}

.thumbnails-link:hover img {
  -webkit-transform: scale(1.05) translateZ(0);
          transform: scale(1.05) translateZ(0);
}

.thumbnails-link:active img {
  -webkit-transform: scale(1) translateZ(0);
          transform: scale(1) translateZ(0);
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.thumbnails-img {
  margin-bottom: 1em;
  overflow: hidden;
}

.thumbnails-img img {
  -webkit-transform: scale(1) translateZ(0);
          transform: scale(1) translateZ(0);
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.thumbnails-caption {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 0.875em;
  line-height: 1.2;
  text-align: center;
}

.thumbnails-caption strong {
  display: block;
}

.thumbnails-caption .title {
  display: block;
  font-size: 1.66em;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #9d8c8c;
}

.thumbnails-caption .title.title {
  margin-bottom: 0;
}

.thumbnails-caption .intro {
  font-size: 1.22em;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .thumbnails-caption {
    font-size: 1em;
  }
}

.thumbnails-nav .list-item + .list-item {
  margin-top: 1em;
}

.thumbnails-nav .thumbnails-fig {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.thumbnails-nav .thumbnails-img,
.thumbnails-nav .thumbnails-caption {
  display: table-cell;
  vertical-align: middle;
}

.thumbnails-nav .thumbnails-img {
  width: 10em;
}

.thumbnails-nav .thumbnails-caption {
  padding-left: 1em;
  text-align: left;
}

/*
Ampélographie
=============
*/
.ampelography .list-item {
  margin: 30px auto;
}

.ampelography .title {
  font-size: 1.67em;
}

.ampelography-container {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 275px;
  height: 275px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.ampelography-container [am-btn*="grey"],
.ampelography-container.isOpen [am-btn*="white"] {
  pointer-events: painted;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.ampelography-container [am-btn*="white"],
.ampelography-container.isOpen [am-btn*="grey"] {
  pointer-events: none;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.ampelography-container [am-btn] {
  z-index: 1;
  position: absolute;
  right: -30px;
  bottom: 60px;
  width: 68px;
  height: 68px;
  padding: 0;
  overflow: visible;
}

.ampelography-container [am-btn]:active [am-i] {
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ampelography-container [am-btn]:active ~ [class^="ampelography-"] {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.no-csstransforms3d .ampelography-container [am-btn]:active ~ [class^="ampelography-"] {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.ampelography-container [am-btn*="white"]:before {
  background: #fff;
}

.ampelography-container [am-btn*="grey"]:before {
  background: #5a5a5a;
}

.ampelography-container [am-i] {
  position: absolute;
  top: 50%;
  left: 50%;
}

.ampelography-container [am-i*="plus"] {
  margin: -11px 0 0 -11px;
}

.ampelography-container [am-i*="chev-left"] {
  margin: -10px 0 0 -6px;
}

.ampelography-fig,
.ampelography-text {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.isOpen .ampelography-fig {
  -webkit-transform: rotateY(-179.99deg) translateZ(0);
          transform: rotateY(-179.99deg) translateZ(0);
}

.no-csstransforms3d .isOpen .ampelography-fig {
  display: none;
}

.ampelography-fig,
.isOpen .ampelography-text {
  -webkit-transform: rotateY(0) translateZ(0);
          transform: rotateY(0) translateZ(0);
}

.no-csstransforms3d .ampelography-fig, .no-csstransforms3d
.isOpen .ampelography-text {
  display: table;
}

.ampelography-fig {
  width: 100%;
  height: 100%;
  background: #fff;
}

.ampelography-fig img {
  position: absolute;
}

.ampelography-text {
  top: -100%;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-weight: 400;
  color: #edeaea;
  background: #5a5a5a;
  -webkit-transform: rotateY(-179.99deg) translateZ(0);
          transform: rotateY(-179.99deg) translateZ(0);
}

.ampelography-text .cell {
  vertical-align: middle;
  padding: 0 15%;
}

.no-csstransforms3d .ampelography-text {
  top: auto;
  display: none;
}

.ampelography-feuille {
  top: -17px;
  left: 0;
  width: 271px;
}

.ampelography-grappe {
  top: 0;
  left: -30px;
  width: 281px;
}

.ampelography-baie {
  top: 50%;
  left: 50%;
  width: 271px;
  margin: -140px 0 0 -135px;
}

/*
Cartes empilées
===============
*/
@media (min-width: 768px) {
  .cards-section:hover .card,
  .cards-section:hover .big-card {
    opacity: 0.6;
  }
  html.tablet .cards-section:hover .card, html.tablet
  .cards-section:hover .big-card {
    opacity: 1;
  }
}

.card.right {
  float: none;
}

@media (min-width: 768px) {
  .card {
    z-index: 2;
    clear: both;
    -webkit-transform: scale(0.98) translateZ(0);
            transform: scale(0.98) translateZ(0);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .card:nth-child(2n) {
    z-index: 1;
    opacity: 0.4;
  }
  html.tablet .card:nth-child(2n) {
    opacity: 1;
  }
  .card:hover {
    z-index: 3;
    opacity: 1 !important;
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  .card:hover [am-i*="chev-left"] {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  .card:hover [am-i*="chev-right"] {
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
  .card + .card .title {
    top: 80px;
  }
  .card:last-child .card-figure {
    margin: 0;
  }
}

.card-header {
  z-index: 1;
}

.card-header .title {
  font-size: 1.4em;
}

@media (min-width: 768px) {
  .card-header .title {
    top: 60px;
    font-size: 1.6em;
  }
}

@media (min-width: 992px) {
  .card-header .title {
    font-size: 1.8em;
  }
}

.card-figure {
  margin-bottom: 0.5em;
}

.card-figure img {
  width: auto;
  max-width: 100%;
  margin: auto;
}

@media (min-width: 768px) {
  .card-figure {
    margin-bottom: -40px;
  }
}

.card-link {
  display: block;
  color: inherit;
}

.card-link [am-i*="chev-"] {
  position: absolute;
  top: 50%;
  display: none;
  margin-top: -10px;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-link [am-i*="chev-left"] {
  left: -20px;
}

.card-link [am-i*="chev-right"] {
  right: -20px;
}

.card-link [am-s*="chev-"] {
  fill: #3e3e3e;
}

@media (min-width: 768px) {
  .card-link [am-i*="chev-"] {
    display: block;
  }
}

/*
Grandes cartes empilées
=======================
*/
.big-card {
  margin-bottom: 26px;
  text-align: center;
}

@media (min-width: 480px) and (max-width: 767px) {
  .big-card:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 768px) {
  .big-card {
    z-index: 2;
    margin-bottom: 0;
    text-align: left;
    -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .big-card:nth-child(2n) {
    z-index: 1;
    opacity: 0.4;
  }
  html.tablet .big-card:nth-child(2n) {
    opacity: 1;
  }
  .big-card:hover {
    z-index: 3;
    opacity: 1 !important;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .big-card + .big-card {
    margin-top: -60px;
  }
}

.big-card-header .title {
  font-size: 2.2em;
  color: #fff;
}

.big-card-header .title.title {
  margin-bottom: 0.4em;
}

.big-card-header .title a {
  display: block;
}

.big-card-header .surtitle {
  font-size: 1.4em;
  font-style: italic;
  text-transform: none;
  color: #ecb76b;
}

.big-card-header .surtitle.surtitle {
  margin-bottom: 0.2em;
}

@media (max-width: 767px) {
  .big-card-header [am-btn] {
    margin: 0 1em 1em;
  }
}

@media (min-width: 768px) {
  .big-card-header {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
  }
  .big-card-header.right {
    right: 0;
    left: auto;
    text-align: right;
  }
  .big-card-header.right .title {
    margin-right: -0.15em;
  }
  .big-card-header.right [am-btn] {
    margin: 1em 0 0 1em;
  }
  .big-card-header .title {
    font-size: 4.4em;
    letter-spacing: 0.15em;
  }
  .big-card-header .surtitle {
    font-size: 1.67em;
  }
  .big-card-header .surtitle.surtitle {
    margin-bottom: 0;
  }
  .big-card-header [am-btn] {
    margin: 1em 1em 0 0;
  }
}

@media (min-width: 992px) {
  .big-card-header {
    left: 8.33333333%;
  }
  .big-card-header.right {
    right: 8.33333333%;
    left: auto;
  }
  .big-card-header .title {
    font-size: 4.6em;
  }
}

@media (min-width: 1180px) {
  .big-card-header .title {
    font-size: 5.6em;
  }
}

.big-card-figure {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .big-card-figure {
    left: 0;
  }
  .big-card-figure.right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .big-card-figure {
    left: 8.33333333%;
  }
  .big-card-figure.right {
    right: 8.33333333%;
    left: auto;
  }
}

/*
Listing divers et variés
========================
*/
[am-listing*="doubleline"] .grid-item-content .title {
  display: table;
  width: 100%;
}

[am-listing*="doubleline"] .grid-item-content .title a {
  display: table-cell;
  vertical-align: middle;
  height: 2em;
}

@media (min-width: 480px) and (max-width: 992px) {
  [am-listing*="doubleline"] .col-s-6:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 992px) {
  [am-listing*="doubleline"] .col-md-4:nth-child(3n+1) {
    clear: left;
  }
}

.grid-item {
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .grid-item {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .grid-item {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .grid-item {
    width: 100%;
  }
}

.grid-item-link {
  display: block;
  overflow: hidden;
}

.grid-item-link:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  margin-top: -50%;
  padding-top: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.grid-item-link:hover:after {
  opacity: 1;
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.grid-item-link:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.grid-item-link img {
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.grid-item-figure {
  background: #fff;
}

.grid-item-content {
  padding: 1.4em 1.6em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  background: #fff;
}

.grid-item-content .title {
  font-size: 1.33em;
}

.grid-item-content .title a {
  color: inherit;
  -webkit-transition: 0 all;
  transition: 0 all;
}

.grid-item-content .intro {
  font-family: "myriad-pro", "Myriad Pro", sans-serif;
  font-size: 1em;
  line-height: 1.22;
}

.grid-item-content hr {
  height: 1px;
  margin: 30px auto;
  background: #ebe8e8;
}

[am-listing*="grands-crus"] .grid-item-content {
  background: #2d2b2b;
}

[am-listing*="grands-crus"] .grid-item-content,
[am-listing*="grands-crus"] .grid-item-content .surtitle {
  color: #9f9696;
}

[am-listing*="grands-crus"] .grid-item-content .title {
  margin-bottom: 0;
  font-size: 1.6em;
}

[am-listing*="grands-crus"] .grid-item-content .surtitle {
  display: table;
  min-height: 2.5em;
  margin: 0.75em auto 0;
  font-size: 1.11em;
}

[am-listing*="grands-crus"] .grid-item-content .surtitle span {
  display: table-cell;
  vertical-align: middle;
  padding-top: 0.75em;
  padding-bottom: 0;
}

[am-listing*="grands-crus"] .grid-item-content .surtitle span:after {
  top: 0;
  background: #353232;
}

[am-listing*="grands-crus"] .grid-item-caption {
  top: 0;
  left: 0;
}

[am-listing*="grands-crus"] .grid-item-caption,
[am-listing*="grands-crus"] .grid-item-caption [am-btn*="nude"] {
  position: absolute;
}

[am-listing*="grands-crus"] .grid-item-caption,
[am-listing*="grands-crus"] .grid-item-caption .table {
  width: 100%;
  height: 100%;
}

[am-listing*="grands-crus"] .grid-item-caption:after {
  background: rgba(45, 43, 43, 0.8);
}

[am-listing*="grands-crus"] .grid-item-caption .table,
[am-listing*="grands-crus"] .grid-item-caption [am-btn] {
  z-index: 1;
}

[am-listing*="grands-crus"] .grid-item-caption .cell {
  vertical-align: middle;
}

[am-listing*="grands-crus"] .grid-item-caption [am-btn*="gold"] {
  margin-top: -1em;
  font-size: 0.78em;
}

[am-listing*="grands-crus"] .grid-item-caption [am-btn*="nude"] {
  right: 0;
  bottom: 0;
  padding: 1em;
}

[am-listing*="grands-crus"] .grid-item-caption [am-i*="compass"] {
  display: block;
}

[am-listing*="grands-crus"] .grid-item-caption [am-s*="compass"] {
  fill: #fff;
}

@media (min-width: 480px) and (max-width: 992px) {
  [am-listing*="grands-crus"] .col-s-6:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 992px) {
  [am-listing*="grands-crus"] .col-md-4:nth-child(3n+1) {
    clear: left;
  }
}

[am-listing="full-width"] [am-article] + [am-article] {
  margin-top: 2em;
}

[am-listing="full-width"] [am-article] > [class*="col-xs-"] {
  padding: 1.8em 2.4em;
}

[am-listing="full-width"] [am-article] figure[class*="col-xs-"] {
  padding: 0;
}

[am-listing="full-width"] .title {
  font-size: 1.67em;
}

[am-listing="full-width"] .grid-item-figure {
  overflow: hidden;
}

[am-listing="full-width"] .grid-item-link {
  height: 100%;
}

[am-listing="full-width"] p,
[am-listing="full-width"] dl {
  max-width: none;
  margin-left: 0;
}

[am-listing="full-width"] dd,
[am-listing="full-width"] dt {
  display: inline;
  margin: auto;
}

[am-listing="full-width"] dt {
  font-weight: 700;
}

[am-listing="full-width"] dt:after {
  content: " : ";
}

[am-listing="full-width"] dd:after {
  content: " \A\A ";
  white-space: pre;
}

@media (min-width: 768px) {
  [am-listing="full-width"] [am-article] > [class*="col-xs-"] {
    padding: 2.8em 3.4em;
  }
  [am-listing="full-width"] [am-figure],
  [am-listing="full-width"] .grid-item-figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
  }
  [am-listing="full-width"] [am-figure] {
    background-position: 50% 50%;
    background-size: cover;
  }
  [am-listing="full-width"] [am-figure] img {
    display: none;
  }
  [am-listing="full-width"] [am-figure] noscript img {
    display: block;
  }
  [am-listing="full-width"] .grid-item-figure img {
    top: 50%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

/*
Cartouches
==========
*/
.c-bottle {
  display: inline-block;
  zoom: 1;
  *display: inline;
  max-width: 100%;
  padding: 17.33333px;
  padding-right: 117.33333px;
  font-size: 16px;
  font-size: 1rem;
  background: #fff url("../jpg/bg-cartouche.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.c-bottle.flipped {
  padding: 17.33333px;
  padding-left: 117.33333px;
}

.c-bottle .title,
.c-bottle .subtitle {
  word-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.c-bottle .title {
  margin-top: 0.3em;
  font-size: 1.56em;
  color: #2c2c2c;
}

.c-bottle [am-i] {
  position: absolute;
  top: 50%;
  margin-top: -9px;
}

.c-bottle [am-i*="chev-left"] {
  left: -24px;
}

.c-bottle [am-i*="chev-right"] {
  right: -24px;
}

.c-bottle [am-s*="chev-"] {
  fill: #9d8c8c;
}

@media (min-width: 768px) {
  .c-bottle {
    padding: 20px;
    padding-right: 120px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-bottle.flipped {
    padding: 20px;
    padding-left: 120px;
  }
  .c-bottle [am-btn] {
    font-size: 0.78em;
  }
}

@media (min-width: 992px) {
  .c-bottle {
    padding: 24px;
    padding-right: 124px;
  }
  .c-bottle.flipped {
    padding: 24px;
    padding-left: 124px;
  }
}

.c-bottle-figure {
  position: absolute;
  top: 50%;
  right: 17.33333px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.flipped .c-bottle-figure {
  right: auto;
  left: 17.33333px;
}

.c-bottle-figure img {
  right: -60px;
  width: 120px;
}

@media (min-width: 768px) {
  .c-bottle-figure {
    right: 20px;
  }
  .flipped .c-bottle-figure {
    right: auto;
    left: 20px;
  }
  .c-bottle-figure img {
    right: -50px;
    width: 140px;
  }
}

@media (min-width: 992px) {
  .c-bottle-figure img {
    right: -70px;
    width: 140px;
  }
}

@media (min-width: 1180px) {
  .c-bottle-figure {
    right: 24px;
  }
  .flipped .c-bottle-figure {
    right: auto;
    left: 24px;
  }
  .c-bottle-figure img {
    right: -60px;
    width: 140px;
  }
}

/*
Panneaux de liens
=================
*/
.panel {
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(100%) scale(0.5);
      -ms-transform: translateY(100%) scale(0.5);
          transform: translateY(100%) scale(0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.no-csstransforms3d .panel {
  -webkit-transform: translate(0, 100%) scale(0.5);
      -ms-transform: translate(0, 100%) scale(0.5);
          transform: translate(0, 100%) scale(0.5);
}

.no-csstransforms .panel {
  top: 100%;
}

.panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
}

.panel.isOpen {
  top: 0;
  pointer-events: painted;
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.no-csstransforms3d .panel.isOpen {
  -webkit-transform: translate(0, 0) scale(1);
      -ms-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}

.no-csstransforms .panel.isOpen {
  top: 0;
}

.panel .container {
  max-width: 980px;
}

.panel > .container {
  width: 100%;
  height: 100%;
  padding: 4.333333334em 2em 2em;
}

.panel > .container > .row {
  height: 100%;
  padding-top: 2.7em;
  padding-bottom: 2.7em;
}

.panel .section-header {
  z-index: 1;
  position: absolute;
  width: 100%;
  color: #fff;
}

.panel .section-header .container {
  padding-top: 1.666666667em;
  padding-bottom: 1.666666667em;
}

.panel .section-header .container:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0;
  border-color: #fff transparent transparent;
}

.panel .section-header .surtitle {
  margin-bottom: 0;
}

.panel [am-btn*="nude"] {
  top: 0;
  right: 0;
  height: 100%;
}

.panel .list:before,
.panel .list-link:before {
  content: "";
  position: absolute;
}

.panel .list {
  position: static;
  margin-bottom: 1.2em;
  font-size: 20px;
  font-size: 1.25rem;
}

.panel .list:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: none;
  width: 1px;
  height: 100%;
}

.panel .list:nth-child(2n+1) {
  clear: left;
}

.panel .list-link {
  display: block;
  padding: 0.22em 0 0.22em 16px;
  line-height: 1em;
  color: #fff;
}

.panel .list-link:before {
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -2px;
  margin-right: 10px;
  border-radius: 50%;
}

.panel .list-link:hover {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .panel {
    font-size: 18px;
    font-size: 1.125rem;
    position: absolute;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }
  .no-csstransforms3d .panel {
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
  .no-csstransforms .panel {
    top: 100%;
  }
  .panel:before {
    display: none;
  }
  .panel > .container {
    width: 96%;
    padding-top: 7.333333334em;
    padding-bottom: 2.7em;
  }
  .panel > .container > .row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .panel .list {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .panel .list:nth-child(2):before, .panel .list:nth-child(3):before {
    display: block;
    margin-left: -15px;
  }
  .panel .list:nth-child(2):before {
    left: 33.3333333%;
  }
  .panel .list:nth-child(3):before {
    left: 66.6666666%;
  }
  .panel .list:nth-child(2n+1) {
    clear: none;
  }
  .panel .list:nth-child(3n+1) {
    clear: left;
  }
}

@media (min-width: 992px) {
  .panel {
    z-index: 50;
  }
  .panel .list {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .panel .list:nth-child(2):before, .panel .list:nth-child(3):before {
    display: block;
    margin-left: -18px;
  }
}

@media (max-width: 480px) {
  .panel .list {
    width: 100%;
  }
  .panel .list:before {
    display: none !important;
  }
}

/*
Différents types de listes
==========================
*/
.list-inline .list-item {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.list-accordion .list-item + .list-item {
  border-top: 1px solid;
}

.list-accordion .list-link {
  padding: 1em 0;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.11em;
}

.list-accordion .list-link:hover [am-i*="plus"] {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.list-accordion .list-link:active [am-i*="plus"] {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.list-accordion .list-link.isOpen [am-i*="plus"]:after {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}

.list-accordion .list-link.isOpen [am-i*="plus"]:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.list-accordion .list-container {
  height: 0;
  overflow: hidden;
}

.list-accordion .list-content {
  padding-bottom: 1.6em;
}

.list-legend {
  *zoom: 1;
}

.list-legend:after, .list-legend:before {
  content: "";
  display: table;
}

.list-legend:after {
  clear: both;
}

.list-def,
.list-term {
  float: left;
}

.list-term {
  clear: left;
}

.list-def {
  margin: 0;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  color: #fff;
}

/*
Tooltips
========
*/
.tooltip-btn {
  background: none;
  border: 0;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  max-height: 0;
  margin: 0 auto 10px;
  padding: 1.5em;
  font-size: 0.88em;
  background: #fff;
  cursor: default;
  opacity: 0;
  -webkit-transform: translate(-50%, 0) scale(0.75);
      -ms-transform: translate(-50%, 0) scale(0.75);
          transform: translate(-50%, 0) scale(0.75);
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: width 0 0.6s, max-height 0 0.6s, opacity 0.3s 0.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0 cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: width 0 0.6s, max-height 0 0.6s, opacity 0.3s 0.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0 cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: width 0 0.6s, max-height 0 0.6s, opacity 0.3s 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0 cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: width 0 0.6s, max-height 0 0.6s, opacity 0.3s 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0 cubic-bezier(0.6, -0.28, 0.735, 0.045), -webkit-transform 0.3s 0 cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.tooltip-content:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 0;
  border-color: #fff transparent transparent;
}

.isOpen .tooltip-content {
  width: 20em;
  max-height: 1000px;
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
      -ms-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
  -webkit-transition: width 0 0, max-height 0 0, opacity 0.3s 0 cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: width 0 0, max-height 0 0, opacity 0.3s 0 cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s 0 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: width 0 0, max-height 0 0, opacity 0.3s 0 cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: width 0 0, max-height 0 0, opacity 0.3s 0 cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s 0 cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s 0 cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tooltip-content p {
  margin-bottom: 0;
}

.tooltip-content * + * {
  margin: 1em auto 0;
}

/*
Styles page CMS
===============
*/
[am-section*="cms"] .row + .row {
  margin-top: 2em;
}

[am-section*="cms"] hr {
  margin: 5em auto;
  background: #d4d1d1;
}

[am-section*="cms"] h4 {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.22em;
  color: #2c2c2c;
}

[am-section*="cms"] .subtitle {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/*
## Couleurs pour la page
*/
[am-cms="green"] [am-cms*="intro"] h3 {
  color: #72c1a9;
}

[am-cms="green"] .slick-active [am-i="dot"] {
  background: #508776;
}

[am-cms="green"] [am-cms*="footer"],
[am-cms="green"] [am-cms*="figcaption"] {
  background-color: #72c1a9;
}

[am-cms="green"] [am-cms*="content"] h5 {
  color: #72c1a9;
}

[am-cms="gold"] [am-cms*="intro"] h3 {
  color: #dab83b;
}

[am-cms="gold"] .slick-active [am-i="dot"] {
  background: #998129;
}

[am-cms="gold"] [am-cms*="footer"],
[am-cms="gold"] [am-cms*="figcaption"] {
  background-color: #dab83b;
}

[am-cms="gold"] [am-cms*="content"] h5 {
  color: #dab83b;
}

[am-cms="brown"] [am-cms*="intro"] h3 {
  color: #847a6f;
}

[am-cms="brown"] .slick-active [am-i="dot"] {
  background: #5c554e;
}

[am-cms="brown"] [am-cms*="footer"],
[am-cms="brown"] [am-cms*="figcaption"] {
  background-color: #847a6f;
}

[am-cms="brown"] [am-cms*="content"] h5 {
  color: #847a6f;
}

[am-cms="grey"] [am-cms*="intro"] h3 {
  color: #565e60;
}

[am-cms="grey"] .slick-active [am-i="dot"] {
  background: #3c4243;
}

[am-cms="grey"] [am-cms*="footer"],
[am-cms="grey"] [am-cms*="figcaption"] {
  background-color: #565e60;
}

[am-cms="grey"] [am-cms*="content"] h5 {
  color: #565e60;
}

[am-cms="blue"] [am-cms*="intro"] h3 {
  color: #5cb0e0;
}

[am-cms="blue"] .slick-active [am-i="dot"] {
  background: #407b9d;
}

[am-cms="blue"] [am-cms*="footer"],
[am-cms="blue"] [am-cms*="figcaption"] {
  background-color: #5cb0e0;
}

[am-cms="blue"] [am-cms*="content"] h5 {
  color: #5cb0e0;
}

[am-cms="blue"] [am-cms*="footer"] > div:last-child, [am-cms="blue"] [am-cms*="footer"] > div:last-child:before {
  background: #57a7d5;
}

[am-cms="blue"] [am-cms*="footer"] h5,
[am-cms="blue"] [am-cms*="footer"] a:not([am-btn]) {
  color: #2e5870;
  border-color: #4584a8;
}

/*
## Intro
*/
[am-cms*="intro"] {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  text-align: center;
}

[am-cms*="intro"] p,
[am-cms*="intro"] h3 {
  font-size: 1.66em;
}

[am-cms*="intro"] h2 {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

[am-cms*="intro"] h3 {
  font-size: 1.66em;
  line-height: 2;
}

[am-cms*="intro"] h3:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 5em;
  height: 5px;
  margin-left: -2.5em;
  background: rgba(0, 0, 0, 0.05);
}

[am-cms*="intro"] p {
  margin-right: auto;
  margin-left: auto;
  font-style: italic;
  color: #2c2c2c;
}

[am-cms*="intro"] hr {
  height: 2px;
  margin: 1.375em auto;
}

/*
## Images avec cartouche & slider
*/
[am-cms*="figure"]:first-child:before {
  margin-top: 0;
}

[am-cms*="figure"]:after, [am-cms*="figure"]:before {
  content: "";
  display: block;
  width: 83.3%;
  height: 1px;
  margin: 2.33em 8.3%;
  background: #bebebe;
}

[am-cms*="figure"][am-cms*="no-border"]:after, [am-cms*="figure"][am-cms*="no-border"]:before {
  background: none;
}

[am-cms*="figure"] .slick-prev,
[am-cms*="figure"] .slick-next {
  top: 0;
  width: 2em;
  height: 100%;
  margin: 0;
  padding: 0;
}

[am-cms*="figure"] [am-i*="chev-"],
[am-cms*="figure"] [am-s*="chev-"] {
  width: 10px;
  height: 17px;
  margin: auto;
  fill: #9d8c8c;
}

[am-cms*="figure"] .slick-dots {
  width: 100%;
}

[am-cms*="figure"] .list-item {
  display: inline-block;
  zoom: 1;
  *display: inline;
  white-space: nowrap;
}

[am-cms*="figure"] [am-i="dot"] {
  background: #fff;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 768px) {
  [am-cms*="figure"] .slick-dots {
    margin-top: 0.2em;
    margin-bottom: -0.67em;
  }
}

[am-cms*="slider"] .slider-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 450px;
  margin: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

[am-cms*="slider"] .slick-track {
  background: rgba(0, 0, 0, 0.05);
}

[am-cms*="slider"] [am-cms*="figcaption"] {
  top: 90%;
  left: 50%;
  float: none;
  width: 15em;
  margin-left: -7.5em;
  text-align: center;
}

@media (min-width: 768px) {
  [am-cms*="slider"] .slider-img {
    height: 550px;
  }
  [am-cms*="slider"] [am-cms*="figcaption"] .figcaption-inner {
    padding: 0;
  }
}

@media (min-width: 992px) {
  [am-cms*="slider"] .slider-img {
    height: 600px;
  }
}

@media (min-width: 1200px) {
  [am-cms*="slider"] .slider-img {
    height: 650px;
  }
}

[am-cms*="figcaption"] {
  z-index: 1;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.33em;
  font-style: italic;
  color: #fff;
  background: url("../png/bg-caption.png") no-repeat 50% 50%;
  background-blend-mode: multiply;
  background-size: cover;
}

[am-cms*="figcaption"].right.right {
  float: none;
}

[am-cms*="figcaption"] .figcaption-inner {
  margin: 0;
  padding: 0.5em 1em 0.7em;
  color: inherit;
}

[am-cms*="figcaption"] p {
  position: static;
  margin-bottom: 0;
  color: inherit;
}

[am-cms*="figcaption"] p + p {
  margin-top: 1em;
}

[am-cms*="figcaption"] img {
  width: auto;
  margin-bottom: 1em;
}

[am-cms*="figcaption"] img.right {
  margin-left: 1em;
}

[am-cms*="figcaption"] img.left {
  margin-right: 1em;
}

[am-cms*="figcaption"] [am-btn] {
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
}

@media (min-width: 768px) {
  [am-cms*="figcaption"] {
    position: absolute;
    top: 50%;
    left: -15px;
    font-size: 1.66em;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  [am-cms*="figcaption"].right {
    right: -15px;
    left: auto;
  }
  [am-cms*="figcaption"][am-cms*="no-border"] .figcaption-inner {
    margin: 1.25em 2em;
    border: 0;
  }
  [am-cms*="figcaption"] .figcaption-inner {
    margin: 1.25em 2em 1.67em;
    padding: 1.25em 0;
    color: inherit;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 1200px) {
  [am-cms*="figcaption"] {
    left: -36px;
  }
  [am-cms*="figcaption"].right {
    right: -36px;
    left: auto;
  }
}

@media (min-width: 1400px) {
  [am-cms*="figcaption"] {
    left: -8.3%;
  }
  [am-cms*="figcaption"].right {
    right: -8.3%;
    left: auto;
  }
}

[am-cms*="footer"] a:not([am-btn]),
[am-cms*="content"] a:not([am-btn]) {
  font-size: 1.125em;
  font-style: italic;
  font-weight: 700;
  border-bottom: 1px solid #a4a4a4;
}

[am-cms*="footer"] a:not([am-btn]):hover,
[am-cms*="content"] a:not([am-btn]):hover {
  color: #2c2c2c;
}

/*
Bloc de contenu
===============
*/
@media (max-width: 767px) {
  [am-cms*="content"] .col-sm-6.col-md-5 + .col-sm-6.col-md-5 ul.isCut:first-child,
  [am-cms="grand-cru"] .col-sm-6.col-md-5 + .col-sm-6.col-md-5 ul.isCut:first-child {
    margin-top: -1.375em;
  }
}

@media (min-width: 768px) {
  [am-cms*="content"] .col-sm-6.col-md-5 + .col-sm-6.col-md-5 ul.isCut:first-child,
  [am-cms="grand-cru"] .col-sm-6.col-md-5 + .col-sm-6.col-md-5 ul.isCut:first-child {
    margin-top: 0;
  }
}

[am-cms*="content"][am-cms*="big"] p {
  font-size: 1.11em;
}

[am-cms*="content"] .col-sm-6.col-md-5 {
  font-size: 0.89em;
}

[am-cms*="content"] .pic-label {
  position: absolute;
  left: 0;
  width: auto !important;
}

[am-cms*="content"] .img-title {
  padding-left: 60px;
}

[am-cms*="content"] .subtitle {
  margin: 0 auto 1.375em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.66em;
  font-style: normal;
  text-transform: uppercase;
  color: #9d8c8c;
}

[am-cms*="content"] * + .subtitle {
  margin-top: 1.375em;
}

[am-cms*="content"] img {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 1em;
}

[am-cms*="content"] img.left {
  margin-right: 1em;
}

[am-cms*="content"] img.right {
  margin-left: 1em;
}

[am-cms*="content"] a:not([am-btn]),
[am-cms*="content"] h5 {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-style: italic;
}

[am-cms*="content"] h4 {
  font-size: 1.375em;
}

[am-cms*="content"] * + h4 {
  margin-top: 2em;
}

[am-cms*="content"] h5 {
  font-size: 1.44em;
  line-height: 1.1;
  font-weight: 400;
}

[am-cms*="content"] ul {
  margin: 1.375em 0;
  padding: 0 2em;
  color: #5a5a5a;
}

[am-cms*="content"] li {
  position: static;
}

[am-cms*="content"] h6 {
  margin-bottom: 0.375em;
  font-size: 1em;
}

[am-cms*="content"] p {
  max-width: none;
}

[am-cms*="content"] hr {
  height: 1px;
  margin: 1.375em auto;
}

[am-cms*="content"] blockquote {
  margin-bottom: 0;
  padding: 0 1.61em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  text-align: left;
  color: #2c2c2c;
  border: 0;
}

[am-cms*="content"] blockquote:after, [am-cms*="content"] blockquote:before {
  display: none;
}

[am-cms*="content"] blockquote > *:first-child:before,
[am-cms*="content"] blockquote > *:last-child:after {
  content: "";
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 1.11em;
  height: 0.89em;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

[am-cms*="content"] blockquote > *:first-child:before {
  vertical-align: top;
  margin: 0 0.5em 0 -1.61em;
  background-image: url("https://www.vinsalsace.com/assets/svg/layout/quote-grey-open.svg");
}

[am-cms*="content"] blockquote > *:last-child:after {
  vertical-align: middle;
  margin: 0 -1.61em 0 0.5em;
  background-image: url("https://www.vinsalsace.com/assets/svg/layout/quote-grey-close.svg");
}

[am-cms*="content"] blockquote p {
  color: inherit;
}

/*
Petits slider playa
===================
*/
[am-cms*="carousel"] + [am-cms*="carousel"] {
  padding-top: 2em;
  border-top: 1px solid #d4d3d3;
}

[am-cms*="carousel"] [am-cms*="figure"] {
  margin-bottom: 2em;
}

[am-cms*="carousel"] [am-cms*="figure"]:after, [am-cms*="carousel"] [am-cms*="figure"]:before {
  display: none;
}

[am-cms*="carousel"] .figcaption-inner {
  border: 0;
}

[am-cms*="carousel"] .slick-dots {
  margin: 0;
}

@media (min-width: 768px) {
  [am-cms*="carousel"] + [am-cms*="carousel"] {
    padding-top: 4em;
  }
  [am-cms*="carousel"] [am-cms*="figcaption"] {
    top: auto;
    right: 0;
    bottom: 1em;
    left: auto;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  [am-cms*="carousel"] .figcaption-inner {
    margin: 0.5em 2.5em;
    padding: 0;
  }
  [am-cms*="carousel"] .slick-prev {
    left: 0.5em;
  }
  [am-cms*="carousel"] .slick-next {
    right: 0.5em;
  }
}

/*
Pied d'entrée
=============
*/
[am-cms*="footer"] {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  color: #fff;
  overflow: hidden;
}

[am-cms*="footer"] > div {
  padding: 2em;
}

[am-cms*="footer"] > div:last-child li {
  margin-bottom: 0.75em;
}

[am-cms*="footer"] > div:last-child:before {
  content: "";
  position: absolute;
  top: -2em;
  left: 0;
  width: 100%;
  height: 500px;
}

[am-cms*="footer"] h3 {
  font-size: 1.25em;
  text-transform: uppercase;
}

[am-cms*="footer"] h4,
[am-cms*="footer"] h5 {
  font-size: 1.125em;
}

[am-cms*="footer"] h4 {
  color: inherit;
}

[am-cms*="footer"] h5 {
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
}

[am-cms*="footer"] ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

[am-cms*="footer"] ul li {
  padding: 0.2em 0 0.2em 1em;
  line-height: 1.2;
}

[am-cms*="footer"] ul li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -5px;
  border-radius: 50%;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
}

[am-cms*="footer"] a:not([am-btn]) {
  font-size: 0.88em;
}

@media (min-width: 480px) {
  [am-cms*="footer"] > div {
    padding: 3em;
  }
  [am-cms*="footer"] > div:first-child {
    padding-right: 0;
  }
}

/*
Blocs de listing de fichiers à télécharger
==========================================
*/
[am-cms*="files"] {
  margin-bottom: 2em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  text-align: left;
}

[am-cms*="files"] .list-item {
  color: #5a5a5a;
}

[am-cms*="files"] .list-item + .list-item {
  margin-top: 1em;
  border-top: 1px solid  #d4d1d1;
}

[am-cms*="files"] .cell {
  padding: 1em 0;
}

[am-cms*="files"] .cell:first-child {
  font-weight: 700;
}

[am-cms*="files"] .cell:last-child {
  padding-top: 0;
  padding-bottom: 0;
}

[am-cms*="files"] [am-btn*="small"] {
  font-size: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  [am-cms*="files"] {
    margin-bottom: 4em;
  }
  [am-cms*="files"] .list-item + .list-item {
    margin-top: 1.44em;
    padding-top: 1.44em;
  }
}

/*
Listes basique
==============
*/
[am-cms*="list"] ul {
  font-size: 0.89em;
}

[am-cms*="list"] ul li {
  margin-bottom: 1.375em;
  padding-left: 36px;
}

[am-cms*="list"] ul li:after, [am-cms*="list"] ul li:before {
  content: "";
  position: absolute;
  top: 0.6875em;
  left: 13px;
}

[am-cms*="list"] ul li:after {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -3px;
  background-color: #565e60;
  border-radius: 7px;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}

.no-csstransforms [am-cms*="list"] ul li:after {
  width: 7px;
  height: 7px;
  margin: -3px 0 0;
  border-radius: 4px;
}

[am-cms*="list"] ul li:before {
  bottom: 0.4em;
  width: 1px;
  margin-left: 3px;
  background: #d5d2d2;
}

@media (min-width: 768px) {
  [am-cms*="list"] li {
    padding-left: 40px;
  }
  [am-cms*="list"] li:nth-child(2n+1) {
    clear: left;
  }
  [am-cms*="list"] li:after, [am-cms*="list"] li:before {
    left: 15px;
  }
}

@media (min-width: 992px) {
  [am-cms*="list"] li {
    padding-left: 46px;
  }
  [am-cms*="list"] li:after, [am-cms*="list"] li:before {
    left: 18px;
  }
}

/*
Tableaux basiques
=================
*/
[am-cms*="table"] table {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  width: 100%;
  margin-bottom: 1.375em;
}

[am-cms*="table"] tr:nth-child(2n) td {
  background: #edeaea;
}

[am-cms*="table"] tr:nth-child(2n+1) td {
  background: #f4f4f4;
}

[am-cms*="table"] tr + tr td {
  border-top: 1px solid rgba(86, 94, 96, 0.2);
}

[am-cms*="table"] td {
  padding: 0.5em 0.75em;
}

[am-cms*="table"] td + td {
  border-left: 1px solid rgba(86, 94, 96, 0.2);
}

@media (min-width: 768px) {
  [am-cms*="table"] td {
    padding: 0.75em 1em;
  }
}

@media (min-width: 992px) {
  [am-cms*="table"] td {
    padding: 1em 1.5em;
  }
}

/*------------------------------------*
	Modal
*------------------------------------*/
.modal {
  z-index: -999;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.modal.is-open {
  z-index: 999;
  pointer-events: auto !important;
  opacity: 1 !important;
}

/*------------------------------------*\
    Overlay
\*------------------------------------*/
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

@supports ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {
  .modal__overlay {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}

/*------------------------------------*\
    Content
\*------------------------------------*/
.modal__inner {
  position: relative;
  display: inline-block;
  max-height: 100%;
  background-color: #fff;
}

@media only screen and (max-width: 48em) {
  .modal__inner {
    overflow-y: auto;
    overflow-x: auto;
  }
}

/*------------------------------------*\
    Close button
\*------------------------------------*/
.modal__close {
  z-index: 1;
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
  cursor: pointer;
}

/*** Custom styles for modal age content ***/
@media only screen and (min-width: 769px) {
  .modal__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 60.25em;
  }
}

.modal__wrapper > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.modal__wrapper .selectricWrapper {
  width: 100%;
}

.modal__wrapper .selectricWrapper:hover .selectric-label {
  background: none;
}

.modal__wrapper .selectric {
  padding: 1em 2em;
  font-weight: 700;
  border-radius: 0;
  -webkit-appearance: none;
  outline: 1px solid #544744;
  outline-offset: -4px;
}

.modal__wrapper .selectric .selectric-label {
  font-size: 1.125em;
  text-transform: uppercase;
  color: #f2f2f2;
  background: #382f2d;
}

.modal__wrapper .selectric [am-i*="triangle-down"] {
  background: none;
}

.modal__wrapper .selectricItems .selectric-item span {
  color: #f2f2f2;
}

.modal__wrapper .modal__caption {
  margin-bottom: 0.9375em;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  color: #949393;
}

.modal__wrapper .modal__content-left,
.modal__wrapper .modal__content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.125em 6.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 30em) {
  .modal__wrapper .modal__content-left,
  .modal__wrapper .modal__content-right {
    padding: 2.125em 2.25em;
  }
}

@media only screen and (max-width: 20em) {
  .modal__wrapper .modal__content-left,
  .modal__wrapper .modal__content-right {
    padding: 1.25em;
  }
}

.modal__wrapper .modal__content-left .modal__text {
  font-size: 1.125em;
  color: #211f1f;
}

.modal__wrapper .modal__content-left svg {
  max-width: 12.5em;
  height: auto;
  margin-bottom: 3.125em;
}

.modal__wrapper .modal__content-left .mobile-form-select {
  width: 100%;
}

.modal__wrapper .modal__content-left .mobile-form-select .form-select {
  font-size: 1.125em;
  text-transform: uppercase;
  color: #f2f2f2;
  outline: 1px solid #544744;
  outline-offset: -4px;
}

.modal__wrapper .modal__content-left .mobile-form-select [am-i*="triangle-down"] {
  background: none;
}

.modal__wrapper .modal__content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #382f2d;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal__wrapper .modal__content-right .modal__text {
  margin-top: 1.5em;
  font-size: 1.25em;
  line-height: 2;
  text-align: center;
  color: #f2f2f2;
}

@media only screen and (max-width: 48em) {
  .modal__wrapper .modal__content-right .modal__text {
    margin-top: 0;
  }
}

.modal__wrapper .modal__content-right button {
  width: 100%;
  margin-top: auto;
  font-size: 1.125em;
}

.modal__wrapper .selectric,
.modal__wrapper .selectric-item,
.modal__wrapper .mobile-form-select .form-select {
  background: #382f2d;
}

/*------------------------------------*\
		Grid system (Bootstrap)
\*------------------------------------*/
.container {
  width: 96%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  *zoom: 1;
  margin-right: -13px;
  margin-left: -13px;
}

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

.row:after {
  clear: both;
}

@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 992px) {
  .row {
    margin-right: -18px;
    margin-left: -18px;
  }
}

.container,
[class*="col-s-"],
[class*="col-xs-"],
[class*="col-sm-"],
[class*="col-md-"],
[class*="col-lg-"] {
  min-height: 1px;
  padding-right: 13px;
  padding-left: 13px;
}

@media (min-width: 768px) {
  .container,
  [class*="col-s-"],
  [class*="col-xs-"],
  [class*="col-sm-"],
  [class*="col-md-"],
  [class*="col-lg-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .container,
  [class*="col-s-"],
  [class*="col-xs-"],
  [class*="col-sm-"],
  [class*="col-md-"],
  [class*="col-lg-"] {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.cl-l {
  clear: left;
}

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

[class*="col-xs-"].right {
  float: right;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5-5 {
  width: 45.83333333%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2-4 {
  width: 20%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-0-5 {
  width: 4.16666666%;
}

.col-xs-0 {
  display: none;
}

@media (min-width: 480px) {
  [class*="col-s-"] {
    float: left;
    display: block;
  }
  .col-s-12 {
    width: 100%;
  }
  .col-s-11 {
    width: 91.66666667%;
  }
  .col-s-10 {
    width: 83.33333333%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-8 {
    width: 66.66666667%;
  }
  .col-s-7 {
    width: 58.33333333%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-5-5 {
    width: 45.83333333%;
  }
  .col-s-5 {
    width: 41.66666667%;
  }
  .col-s-4 {
    width: 33.33333333%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-2-4 {
    width: 20%;
  }
  .col-s-2 {
    width: 16.66666667%;
  }
  .col-s-1 {
    width: 8.33333333%;
  }
  .col-s-0-5 {
    width: 4.16666666%;
  }
  .col-s-0 {
    display: none;
  }
}

@media (min-width: 768px) {
  [class*="col-sm-"] {
    float: left;
    display: block;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5-5 {
    width: 45.83333333%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2-4 {
    width: 20%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-0-5 {
    width: 4.16666666%;
  }
  .col-sm-0 {
    display: none;
  }
}

@media (min-width: 992px) {
  [class*="col-md-"] {
    float: left;
    display: block;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5-5 {
    width: 45.83333333%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2-4 {
    width: 20%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-0-5 {
    width: 4.16666666%;
  }
  .col-md-0 {
    display: none;
  }
}

@media (min-width: 1200px) {
  [class*="col-lg-"] {
    float: left;
    display: block;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5-5 {
    width: 45.83333333%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2-4 {
    width: 20%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-0-5 {
    width: 4.16666666%;
  }
  .col-lg-0 {
    display: none;
  }
}

[class*="col-s-"].right,
[class*="col-xs-"].right,
[class*="col-sm-"].right,
[class*="col-md-"].right,
[class*="col-lg-"].right {
  float: right;
}

[class*="col-s-"].center,
[class*="col-xs-"].center,
[class*="col-sm-"].center,
[class*="col-md-"].center,
[class*="col-lg-"].center {
  float: none;
  margin-right: auto;
  margin-left: auto;
}

/*
Header
======
*/
.main-header {
  z-index: 100;
  display: none;
  font-size: 16px;
  font-size: 1rem;
  background: #141a1f;
}

.main-header > .container {
  position: static;
}

@media (min-width: 992px) {
  .main-header {
    display: block;
  }
}

.main-logo {
  z-index: 1;
  display: block;
  width: 140px;
  height: 60px;
  padding: 35px 0;
}

.main-logo .logo-grandscrus {
  display: none;
}

.main-header .main-logo svg {
  width: 140px;
  height: 52.6562px;
}

.resp-header .main-logo svg {
  width: 74px;
  height: 27.8281px;
}

/*
Breadcrumb
==========
*/
.breadcrumb {
  z-index: 99;
  width: 100%;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  background: #2a3138;
}

@media (min-width: 768px) {
  .breadcrumb {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (min-width: 992px) {
  .breadcrumb {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.breadcrumb-link,
.breadcrumb-item + .breadcrumb-item:before {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.breadcrumb-item + .breadcrumb-item:before {
  content: "\00a0\00BB\00a0";
  padding: 1.4em 0.4em;
}

.breadcrumb-link {
  padding: 1.4em 0;
  white-space: nowrap;
  color: #6c7e8f;
  cursor: pointer;
}

.breadcrumb-link:hover {
  color: #e0e4e7;
}

.breadcrumb-link:active {
  color: #fff;
  -webkit-transform: scale(0.97);
      -ms-transform: scale(0.97);
          transform: scale(0.97);
}

/*
Responsive header
=================
*/
.resp-header {
  position: static;
  padding-bottom: 3em;
}

@media (min-width: 992px) {
  .resp-header {
    display: none;
  }
}

.resp-header-top {
  z-index: 110;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3em;
  background: #141a1f;
}

.resp-menu-btn {
  top: 0;
  width: 3em;
  height: 3em;
  background: #141a1f;
  -webkit-transition: backgrund 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: backgrund 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.resp-menu-btn:active {
  background: #1e272f;
}

.isOpen .resp-menu-btn {
  background: #192127;
}

.resp-logo {
  top: 50%;
  left: 50%;
  height: 3em;
  margin: -1.25em 0 0 -2.8125em;
  font-size: 1em;
}

.resp-logo .main-logo,
.resp-logo [am-s="logo"] {
  top: 0.3em;
  width: 4.625em;
  height: 2.5em;
}

.resp-logo .main-logo {
  height: 3em;
  padding: 0;
}

.resp-logo .logo-baseline {
  display: none;
}

.resp-lang-select {
  right: 0;
  width: 3.1em;
  height: 3em;
}

.resp-lang-select select {
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.resp-lang-select .customSelect {
  display: block;
  width: 3em;
  height: 3em;
  text-align: center;
}

.resp-lang-select .customSelectInner {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 20px;
  margin-top: -10px;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 0.75em;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #52595f;
}

.resp-lang-select .customSelectInner:after {
  content: "";
  top: 50%;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0;
  border-color: #464c51 transparent transparent;
}

.resp-overlay {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.isOpen .resp-overlay {
  display: block;
}

.resp-nav {
  position: static;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

.resp-nav hr {
  margin: 2em 0;
  background: #e1dcdc;
}

.resp-nav [am-btn*="small"] {
  font-size: 0.75em;
}

.resp-nav .article-header .title {
  font-size: 1.375em !important;
  color: #5a5a5a;
}

.resp-nav .article-header p {
  margin-bottom: 1em;
  color: #949393;
}

.resp-nav .list-link:hover [am-s*="social"], .resp-nav .list-link:active [am-s*="social"] {
  opacity: 1;
}

.resp-nav [am-s*="social"] {
  fill: #9d8c8c;
  opacity: 0.5;
}

.resp-nav .lvl-1 .inner,
.resp-nav .lvl-2 .inner {
  padding: 2em;
}

.resp-nav .lvl-1,
.resp-nav .lvl-2 {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  max-width: 25em;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.no-csstransforms3d .resp-nav .lvl-1, .no-csstransforms3d
.resp-nav .lvl-2 {
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.resp-nav .lvl-1 {
  background: #edeaea;
}

.resp-nav .lvl-1.isDarken {
  background: #e1dcdc;
}

.resp-nav .lvl-1 .inner {
  padding-top: 5em;
}

.resp-nav .lvl-2 {
  padding-top: 3em;
  background: #edeaea;
}

.resp-nav .lvl-2 .surtitle {
  margin-bottom: 1.5em;
  font-weight: 400;
  color: #575e64;
}

.resp-nav .lvl-2 .surtitle span {
  padding-bottom: 0.5em;
}

.resp-nav .lvl-2 .surtitle span:after {
  background: #464c51;
}

@media (min-width: 480px) {
  .resp-nav .lvl-1 .inner,
  .resp-nav .lvl-2 .inner {
    padding: 2.5em;
  }
  .resp-nav .lvl-1 .inner {
    padding-top: 5.5em;
  }
}

.resp-main-menu .list-link {
  padding: 0.42em 0;
  font-size: 1.5em;
  line-height: 1em;
}

.resp-main-menu [am-i="chev-left"],
.resp-main-menu [am-s="chev-left"] {
  width: 6px;
  height: 12px;
}

.resp-main-menu [am-i="chev-left"] {
  position: absolute;
  top: 50%;
  left: -16px;
  margin-top: -5px;
}

.resp-second-menu .list-link {
  padding: 0.5em 0;
  line-height: 1em;
}

.resp-social-menu .list-item {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}

.resp-social-menu .list-item:first-child {
  margin-left: -0.5em;
}

.resp-social-menu .list-link {
  padding: 0.5em;
}

.resp-social-menu [am-i] {
  display: block;
}

.resp-back-btn {
  width: 100%;
  height: 3em;
  padding: 1em;
  font-size: 1em;
  line-height: 1em;
  font-weight: 400;
  text-align: left;
  color: #5a5a5a;
  background: #f3f1f1;
}

.resp-back-btn:active {
  background: #f9f8f8;
}

.resp-back-btn [am-i],
.resp-back-btn [am-s] {
  width: 6px;
  height: 12px;
}

.resp-back-btn [am-i] {
  position: absolute;
  top: 50%;
  right: 1.4em;
  margin-top: -6px;
}

.resp-back-btn [am-s] {
  fill: #9d8c8c;
  opacity: 1;
}

.resp-sub-menu .list-item:first-child {
  margin-top: -0.5em;
}

.resp-sub-menu .list-link {
  padding: 0.5em 0;
  color: #949393;
}

.resp-sub-menu strong {
  display: block;
  font-weight: 700;
  color: #5a5a5a;
}

.main-search_mobile {
  margin: 1em 0;
}

.main-search_mobile .form-submit {
  background-color: #9d8c8c;
}

.main-search_mobile .form-submit:hover {
  background-color: #e1dcdc;
}

/*
Footer
======
*/
.main-footer {
  padding-bottom: 40px;
  background: #2a3138;
  overflow: hidden;
}

.main-footer .main-logo,
.main-footer [am-s="logo"] {
  width: 95px;
}

.main-footer .main-logo {
  height: 90px;
  padding: 27px 0;
}

.main-footer [am-s="logo"] {
  height: 36px;
}

@media (min-width: 992px) {
  .main-footer > .container,
  .main-footer [class*="col-xs-"] {
    padding-right: 14px;
    padding-left: 14px;
  }
  .main-footer .row {
    margin-right: -14px;
    margin-left: -14px;
  }
}

/*
## Colonnes du footer

Styles globaux
*/
.footer-item {
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 0.875rem;
}

.footer-header {
  padding: 20px;
  font-size: 0.93em;
  text-align: left;
  background: #2f373e;
}

.footer-header .surtitle {
  margin: 0;
  color: #acb8c3;
}

.footer-content {
  display: table;
  width: 100%;
  height: 120px;
  padding: 20px;
  font-size: 1.143em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  color: #888d92;
  background: #323a42;
}

.footer-content .cell {
  vertical-align: middle;
}

.footer-content p {
  margin: 0 0 0.75em;
  color: inherit;
}

.footer-content [am-btn] {
  font-size: 0.8125em;
}

@media (max-width: 480px) {
  .footer-content {
    padding: 15px;
  }
  .footer-content [am-btn] {
    padding: 0.8em 1em;
  }
}

/*
## Styles paticuliers à chaque bloc.
*/
.footer-item-social {
  text-align: center;
}

.footer-item-social .footer-content {
  font-size: 10px;
  font-size: 0.625rem;
  min-height: 0;
}

.footer-item-social .row {
  margin-right: -0.8em;
  margin-left: -0.8em;
}

.footer-item-social [class*="col-xs-"] {
  margin-bottom: 1.2em;
  padding-right: 0.8em;
  padding-left: 0.8em;
}

.footer-item-social .footer-link {
  display: block;
  min-width: 70%;
  height: 2.4em;
  padding-left: 2.4em;
  line-height: 2.4em;
  letter-spacing: 0.025em;
  text-align: center;
  color: #acb8c3;
  background: #2a3138;
  border-radius: 1.2em;
}

.footer-item-social .footer-link:hover {
  color: #d8dee3;
  background: #282e35;
}

.footer-item-social .footer-link:hover [am-s^="social-"] {
  fill: #f2f3f4;
}

.footer-item-social .footer-link span {
  font-size: 1.4em;
}

.footer-item-social [am-i^="social-"] {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-item-social [am-s^="social-"] {
  fill: #6e7379;
}

@media (min-width: 992px) {
  .footer-item-social [class*="col-xs-"] {
    padding-right: 0.8em;
    padding-left: 0.8em;
  }
}

@media (min-width: 1200px) {
  .footer-item-social .footer-link span {
    font-size: 1.4em;
  }
}

.footer-item-video .footer-content {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-item-video .footer-content:hover [am-i] {
  opacity: 1;
}

.footer-item-video .footer-content:active [am-i] {
  -webkit-transform: scale(0.95, 0.95);
      -ms-transform: scale(0.95, 0.95);
          transform: scale(0.95, 0.95);
}

.footer-item-video [am-s] {
  fill: #fff;
}

.footer-item-video [am-i] {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-item-quiz [am-btn] {
  background: #2a3138;
}

.footer-item-wallpapers [am-btn] {
  max-width: 100%;
  padding-right: 1.4em;
  padding-left: 1.4em;
  color: #fff;
  background: rgba(42, 49, 56, 0.9);
}

.footer-item-wallpapers [am-btn]:after {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.footer-item-meteo .footer-content {
  table-layout: fixed;
}

.footer-item-meteo .cell:first-child {
  padding-right: 0.5em;
  text-align: center;
}

.footer-item-meteo .cell:last-child {
  padding-left: 1em;
  border-left: 1px solid #2a3138;
}

.footer-item-meteo .inner {
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 100%;
  max-width: 70px;
  margin: 0 auto;
  padding: 0 1.5em 0 0;
}

.footer-item-meteo img {
  width: 100%;
}

.footer-item-meteo .temperature {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: -1em;
  display: block;
  width: 2.6em;
  height: 2.6em;
  line-height: 2.6em;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  background: rgba(47, 55, 62, 0.9);
  border-radius: 50%;
}

.footer-item-meteo .temperature sup {
  top: -0.25em;
}

@media (max-width: 480px) {
  .footer-item-meteo .cell:last-child {
    display: none;
  }
}

.studio-meta {
  font-size: 14px;
  color: #8499b0;
}

.studio-meta [am-i*="white"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background: #2a3138;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.studio-meta [am-i*="white"] [am-s] {
  fill: #fff;
}

.studio-meta span {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-left: 0.025em;
}

.studio-meta:hover [am-i*="white"] {
  width: 100%;
}

.studio-meta:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.footer-mentions {
  font-size: 0.88em;
  color: #acb8c3;
}

/*
Sections
========
*/
[am-section] {
  padding: 50px 0 70px;
  color: #9d8c8c;
}

[am-section] .title {
  margin-bottom: 0.694444444em;
}

[am-section] .surtitle {
  margin-bottom: 0.75em;
}

[am-section] .surtitle span {
  padding-bottom: 0.5em;
}

@media (min-width: 768px) {
  [am-section] {
    padding: 90px 0 110px;
  }
}

@media (min-width: 992px) {
  [am-section] {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.section-header {
  margin-bottom: 3em;
}

.section-footer {
  margin-top: 2em;
}

[am-section*="p0"] {
  padding: 0;
}

[am-section*="ovh"] {
  overflow: hidden;
}

[am-section*="ovh"] figure.section-bg.isParallaxed,
[am-section*="ovh"] figure.section-img.isParallaxed {
  z-index: 0;
}

[am-section*="big-title"] .title {
  font-size: 3em;
}

@media (min-width: 768px) {
  [am-section*="big-title"] .title {
    font-size: 4em;
  }
}

[am-section="template"] {
  display: none;
}

.no-js [am-section="template"] {
  display: block;
}

[am-section*="white"] {
  background-color: #fff;
}

[am-section*="white"] .surtitle span:after {
  background-color: #e5e4e4;
}

[am-section*="white"] hr {
  background: #d4d1d1;
}

[am-section*="darkwhite"] {
  background-color: #f2f2f2;
}

[am-section*="darkwhite"] .surtitle span:after {
  background-color: #e5e4e4;
}

[am-section*="darkwhite"] hr {
  background: #d4d1d1;
}

[am-section*="darkwarmwhite"] {
  background-color: #f7f8f5;
}

[am-section*="darkwarmwhite"] .surtitle span:after {
  background-color: #e5e4e4;
}

[am-section*="darkwarmwhite"] hr {
  background: #d4d1d1;
}

[am-section*="lightergrey"] {
  background-color: #e5e4e4;
}

[am-section*="lightergrey"] .surtitle span:after {
  background-color: #a4a4a4;
}

[am-section*="mediumwarmgrey"] {
  color: #fff;
  background-color: #9d8c8c;
}

[am-section*="mediumwarmgrey"] .surtitle span:after {
  background-color: #afa1a1;
}

[am-section*="warmblack"] {
  background-color: #211f1f;
}

[am-section*="warmblack"] > a[href^="#"] {
  top: -2.22em;
  width: 4.44em;
  height: 4.44em;
  margin-left: -2.22em;
  background: #211f1f;
  border-radius: 50%;
}

[am-section*="warmblack"] > a[href^="#"],
[am-section*="warmblack"] > a[href^="#"] [am-i] {
  position: absolute;
  left: 50%;
}

[am-section*="warmblack"] > a[href^="#"] [am-i],
[am-section*="warmblack"] > a[href^="#"] [am-s] {
  width: 17px;
  height: 10px;
}

[am-section*="warmblack"] > a[href^="#"] [am-i] {
  top: 30%;
  margin-left: -9px;
}

[am-section*="warmblack"] > a[href^="#"] [am-s] {
  fill: #cba934;
}

[am-section*="warmblack"] .surtitle span:after {
  background-color: #fff;
}

[am-section*="warmblack"] p {
  color: #fff;
}

[am-section*="lightestwarmgrey"] {
  background-color: #edeaea;
}

[am-section*="lightestwarmgrey"] .surtitle span:after {
  background-color: #edeaea;
}

[am-section*="lightestwarmgrey"] .pagination-nav {
  background: #f2f0f0;
}

[am-section*="lightestwarmgrey"] .pagination-nav .nav-item.isActive .nav-link {
  color: #5a5a5a;
  border-color: #5a5a5a;
}

[am-section*="lightestwarmgrey"] .pagination-nav .nav-sep,
[am-section*="lightestwarmgrey"] .pagination-nav .nav-link {
  border-color: #e8e6e6;
}

[am-section*="lightestwarmgrey"] .pagination-nav .nav-link:hover {
  color: #4d4d4d;
  border-color: #5a5a5a;
}

[am-section*="lightestwarmgrey"] .pagination-nav .nav-link:active {
  -webkit-transform: translate(0, 2px);
      -ms-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

[am-section*="lightgreen"] {
  color: #787b60;
  background-color: #dbe1b1;
}

[am-section*="lightgreen"] .surtitle span:after {
  background-color: #ecefd6;
}

[am-section*="darkblue"] {
  color: #fff;
  background-color: #202335;
}

[am-section*="darkblue"] .surtitle span:after {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

[am-section*="softyellow"] {
  background: #f6f6e6;
}

[am-section*="softyellow"] .surtitle span:after {
  background-color: #fff;
}

[am-section*="brown"] {
  background-color: #7c6b5c;
}

[am-section*="darkbrown"] {
  background-color: #706053;
}

[am-section*="beige"] {
  background-color: #f1ebe3;
}

[am-section*="mediumbeige"] {
  background-color: #e5e0d7;
}

/*
## Images

On gère les images pour les avoir en `background-image` à partir des tablettes jusqu'au desktop, mais en `<img>` sur mobile.

Exemple d'utilisation :

	<figure class="section-image" style="background-image:url(assets/img/a-table/cg-1920x772.jpg);">
		<img src="assets/img/a-table/cg-1920x772.jpg" alt="" width="1920" height="772">

		<figcaption class="section-caption container">
			<a href="#" am-btn="macaron gris">
				<span class="cell">
					<span class="surtitle">En ce moment</span>
					<span class="title">Champignons de Paris</span>
				</span>
			</a>
		</figcaption>
	</figure>
*/
[am-section*="figure"] {
  padding: 0;
  padding-bottom: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

[am-section*="figure"][am-section*="bg-only"] {
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

[am-section*="figure"][am-section*="p0"], [am-section*="figure"][am-section*="figure-only"] {
  padding: 0;
  overflow: hidden;
}

[am-section*="figure"][am-section*="figure-only"] img {
  opacity: 0;
  visibility: hidden;
}

[am-section*="figure"][am-section*="figure-only"] noscript img {
  opacity: 1;
  visibility: visible;
}

[am-section*="figure"][am-section*="insert"] .section-img {
  margin-bottom: 0;
}

[am-section*="figure"][am-section*="contain"] .section-bg,
[am-section*="figure"][am-section*="contain"] .section-img {
  background-size: contain;
}

[am-section*="figure"] .section-bg.isParallaxed,
[am-section*="figure"] .section-img.isParallaxed {
  top: 0;
  bottom: 0;
  height: auto;
}

[am-section*="figure"] .section-img {
  margin-bottom: 30px;
}

[am-section*="figure"] .section-img.isParallaxed {
  z-index: -1;
}

[am-section*="figure"] .section-img img {
  margin-bottom: -1px;
}

[am-section*="figure"] .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 768px) {
  [am-section*="figure"] {
    margin-bottom: 0;
    padding: 90px 0 110px;
  }
  [am-section*="figure"][am-section*="p0"], [am-section*="figure"][am-section*="figure-only"] {
    padding: 0;
  }
  [am-section*="figure"] .section-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  [am-section*="figure"] .section-img img {
    display: none;
  }
  [am-section*="figure"] .section-img noscript img {
    display: block;
  }
  [am-section*="figure"] .figure {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  [am-section*="figure"] .figure.right {
    right: 0;
  }
}

@media (min-width: 992px) {
  [am-section*="figure"] .section-bg.isParallaxed,
  [am-section*="figure"] .section-img.isParallaxed {
    top: -15%;
    bottom: -15%;
    height: auto;
  }
}

.section-img-cap {
  z-index: 2;
  height: 100%;
  pointer-events: none;
}

/*
## Insert

*/
[am-section="insert"] {
  z-index: 1;
}

@media (min-width: 1180px) {
  [am-section="insert"] {
    height: 0;
  }
  [am-section="insert"] .insert {
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media (max-width: 1180px) {
  [am-section="insert"] .container {
    width: 100%;
    padding: 0;
  }
}

[am-section*="insert"] {
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
  overflow: visible;
}

@media (min-width: 1180px) {
  [am-section*="insert"][am-section*="tiny"] .insert {
    top: -2em;
  }
}

@media (max-width: 1180px) {
  [am-section*="insert"][am-section*="tiny"] .container {
    width: 100%;
    padding: 0;
  }
}

[am-section*="insert-lists"] {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

[am-section*="insert-lists"] .inner {
  overflow: hidden;
}

[am-section*="insert-lists"] .inner > [class*="col-xs"]:first-child {
  padding: 0;
}

[am-section*="insert-lists"] .inner > [class*="col-xs"]:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  padding-top: 300%;
}

@media (min-width: 768px) {
  [am-section*="insert-lists"] .inner > [class*="col-xs"]:last-child .insert-content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

[am-section*="insert-lists"] .inner > [class*="col-xs"]:last-child .list-link {
  font-size: 1.222222222em;
  line-height: 1;
  color: #fff;
}

[am-section*="insert-lists"] .insert-content {
  padding: 1.8em 0.5em;
}

[am-section*="insert-lists"] .title {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: none;
  color: #fff;
}

[am-section*="insert-lists"] .title:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.25em;
  background: #7fc1ad;
  background: rgba(0, 0, 0, 0.1);
}

[am-section*="insert-lists"] .list[class*="col-xs-"] {
  padding: 0;
}

[am-section*="insert-lists"] .list-item {
  margin-bottom: 0.5em;
}

[am-section*="insert-lists"] .list-item:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 4px;
  height: 4px;
  background: #fff;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

[am-section*="insert-lists"] .list-link {
  display: inline;
  font-size: 1.22em;
  line-height: 1;
  color: #fff;
}

@media (min-width: 768px) {
  [am-section*="insert-lists"] {
    font-size: 16px;
    font-size: 1rem;
  }
  [am-section*="insert-lists"] .title {
    margin-bottom: 1.4em;
  }
  [am-section*="insert-lists"] .insert-content {
    padding: 2.22em 1.67em;
  }
}

@media (min-width: 992px) {
  [am-section*="insert-lists"] {
    font-size: 18px;
    font-size: 1.125rem;
  }
  [am-section*="insert-lists"] .title {
    margin-bottom: 2em;
  }
  [am-section*="insert-lists"] .list-item {
    margin-bottom: 1em;
  }
  [am-section*="insert-lists"] .list-item:before {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 767px) {
  [am-section*="insert-lists"] .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

/*
## Hero

Exemple d'utilisation :

	<section am-section="hero" style="background-image: url(assets/img/gouts-et-couleurs/hero-1920x977.jpg);">

		<header class="hero-header">
			<h2 class="surtitle">Goûts et couleurs</h2>
			<h1 class="title">Incomparable palette de sensations</h1>
		</header>

		<div class="placeholder"></div>

	</section>
*/
[am-section*="hero"] {
  display: table;
  width: 100%;
  max-height: 960px;
  color: #fff;
  -webkit-transition: min-height 0.4s;
  transition: min-height 0.4s;
}

[am-section*="hero"][am-section*="video"] {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

[am-section*="hero"][am-section*="video"] .title:before,
[am-section*="hero"][am-section*="video"] .surtitle:before {
  display: none;
}

[am-section*="hero"] .cell {
  vertical-align: middle;
  width: 100%;
}

[am-section*="hero"] .title {
  margin: 0;
}

[am-section*="hero"] .title + p {
  margin-top: 2em;
}

[am-section*="hero"] p {
  color: inherit;
}

[am-section*="hero"] .surtitle {
  font-size: 1.7em;
}

[am-section*="hero"] .intro {
  max-width: 30em;
  font-size: 1.33em;
  color: inherit;
}

[am-section*="hero"] [am-i*="mouse"] {
  display: none;
  margin-top: 3em;
}

@media (min-width: 768px) {
  [am-section*="hero"] .surtitle {
    font-size: 2em;
  }
}

@media (min-width: 992px) {
  [am-section*="hero"] .title {
    font-size: 5.111111111em;
  }
  [am-section*="hero"] [am-i*="mouse"] {
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
}

@media (min-width: 1200px) {
  [am-section*="hero"][am-section*="bottom"] {
    min-height: 0;
  }
}

@media (min-width: 1200px) and (min-height: 930px) {
  [am-section*="hero"] {
    min-height: 31.25em;
  }
}

@media (min-width: 992px) and (min-height: 930px) {
  [am-section*="hero"][am-section*="big"] {
    height: 700px;
  }
}

@media (min-width: 992px) and (min-height: 1120px) {
  [am-section*="hero"][am-section*="big"] {
    height: 920px;
  }
}

.hero-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-bg.bg-auto {
  background-size: auto;
}

.hero-bg.bg-contain {
  background-size: contain;
}

@media (min-width: 992px) {
  .hero-bg.isParallaxed {
    top: -75px;
    bottom: -75px;
    height: auto;
  }
}

.hero-header {
  width: 96%;
  max-width: 1180px;
  margin: auto;
}

.hero-header:before {
  content: "";
  z-index: -1;
  position: absolute;
  left: 12.5%;
  width: 75%;
  opacity: 0.25;
}

.cssfilters .hero-header:before {
  top: -10%;
  bottom: -10%;
  background: #000;
  border-radius: 50%;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}

.no-cssfilters .hero-header:before {
  top: -30%;
  bottom: -30%;
  background-image: url("../png/bg-box-shadow.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-header.no-shadow:before {
  display: none;
}

.hero-footer {
  margin-top: 75px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-footer {
    margin-bottom: -55px;
  }
}

/*
## Section "Découvrez aussi"
*/
.decouvrir-section {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

.decouvrir-section .thumbnails {
  font-size: 22px;
  font-size: 1.375rem;
}

.decouvrir-section .surtitle {
  color: #9d8c8c;
}

.decouvrir-section .thumbnails-caption .intro {
  display: block;
  color: #9d8c8c;
}

.decouvrir-section strong {
  color: #414141;
}

.decouvrir-section .title {
  margin-bottom: 1.4em;
}

.decouvrir-section .list-item {
  font-size: 1.33em;
}

.decouvrir-section .list-item + .list-item:before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 1em auto;
  background: #d8d7d7;
}

.decouvrir-section .list-link {
  display: inline-block;
  zoom: 1;
  *display: inline;
  color: #949393;
}

.decouvrir-section .list-link.isActive {
  color: #a4a4a4;
}

.decouvrir-section .list-link:hover {
  color: #6e6d6d;
}

@media (min-width: 768px) {
  .decouvrir-section .list-item + .list-item:before {
    height: 3px;
    margin: 1.4em auto;
  }
}

/*
Mosaïque de photos
==================
*/
[am-section*="mosaic"] {
  padding-bottom: 0;
}

[am-section*="mosaic"] [class*="col-xs-"] {
  padding: 0;
}

[am-section*="mosaic"] [am-i*="chev-bot"] {
  margin: 30px auto;
}

[am-section*="mosaic"] a {
  display: block;
}

[am-section*="mosaic"] .figure {
  margin-bottom: -1px;
}

[am-section*="mosaic"] .figure:hover .figure-caption,
html.touch.mobile [am-section*="mosaic"] .figure .figure-caption,
html.touch.tablet [am-section*="mosaic"] .figure .figure-caption {
  display: block;
}

[am-section*="mosaic"] .figure:nth-child(2n+1) {
  clear: left;
}

[am-section*="mosaic"] .figure-caption {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.875em;
}

[am-section*="mosaic"] .figure-caption:after {
  background: rgba(33, 31, 31, 0.8);
  -webkit-transition: all 0.7s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.7s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

[am-section*="mosaic"] .figure-caption:hover:after,
html.touch.mobile [am-section*="mosaic"] .figure-caption:after,
html.touch.tablet [am-section*="mosaic"] .figure-caption:after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

[am-section*="mosaic"] .figure-caption:hover .title,
[am-section*="mosaic"] .figure-caption:hover [am-btn],
[am-section*="mosaic"] .figure-caption:hover .surtitle,
html.touch.mobile [am-section*="mosaic"] .figure-caption .title,
html.touch.mobile [am-section*="mosaic"] .figure-caption [am-btn],
html.touch.mobile [am-section*="mosaic"] .figure-caption .surtitle,
html.touch.tablet [am-section*="mosaic"] .figure-caption .title,
html.touch.tablet [am-section*="mosaic"] .figure-caption [am-btn],
html.touch.tablet [am-section*="mosaic"] .figure-caption .surtitle {
  opacity: 1;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-section*="mosaic"] .figure-caption,
[am-section*="mosaic"] .figure-caption .table {
  z-index: 1;
  width: 100%;
  height: 100%;
}

[am-section*="mosaic"] .figure-caption .cell {
  vertical-align: middle;
}

[am-section*="mosaic"] .figure-caption .title,
[am-section*="mosaic"] .figure-caption [am-btn],
[am-section*="mosaic"] .figure-caption .surtitle {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
      -ms-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[am-section*="mosaic"] .figure-caption,
[am-section*="mosaic"] .figure-caption .surtitle {
  color: #fff;
}

[am-section*="mosaic"] .figure-caption .title {
  font-size: 2.14em;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[am-section*="mosaic"] .figure-caption .surtitle span:after {
  background: none;
  background: rgba(0, 0, 0, 0.2);
}

[am-section*="mosaic"] .figure-caption [am-btn] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

@media (max-width: 480px) {
  [am-section*="mosaic"] .figure:nth-child(2n+1) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(2n) .figure-sepia {
    display: block;
    visibility: visible;
  }
  [am-section*="mosaic"] .figure:nth-child(2n) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(2n+1) .figure-sepia {
    display: none;
    visibility: hidden;
  }
}

@media (min-width: 480px) and (max-width: 992px) {
  [am-section*="mosaic"] .figure:nth-child(1) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(4) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(5) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(8) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(2) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(3) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(6) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(7) .figure-sepia {
    display: block;
    visibility: visible;
  }
  [am-section*="mosaic"] .figure:nth-child(2) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(3) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(6) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(7) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(1) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(4) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(5) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(8) .figure-sepia {
    display: none;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  [am-section*="mosaic"] .figure:nth-child(2n+1) {
    clear: none;
  }
  [am-section*="mosaic"] .figure:nth-child(4n+1) {
    clear: left;
  }
}

@media (min-width: 992px) {
  [am-section*="mosaic"] .figure:nth-child(1) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(3) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(6) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(8) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(2) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(4) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(5) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(7) .figure-sepia {
    display: block;
    visibility: visible;
  }
  [am-section*="mosaic"] .figure:nth-child(2) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(4) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(5) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(7) .figure-bw,
  [am-section*="mosaic"] .figure:nth-child(1) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(3) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(6) .figure-sepia,
  [am-section*="mosaic"] .figure:nth-child(8) .figure-sepia {
    display: none;
    visibility: hidden;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  [am-section*="mosaic"] .figure {
    font-size: 0.875em;
  }
}

@media (min-width: 1920px) {
  [am-section*="mosaic"] .figure {
    font-size: 1.375em;
  }
}

/*
Vidéo plein écran
=================
*/
[am-section*="video"].isChanging [am-i],
[am-section*="video"].isChanging .title,
[am-section*="video"].isChanging .surtitle,
[am-section*="video"].isChanging .btn-container {
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[am-section*="video"].isChanging [am-i] {
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
}

[am-section*="video"].isChanging .title {
  -webkit-transition-delay: .05s;
          transition-delay: .05s;
}

[am-section*="video"].isChanging .btn-container {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

[am-section*="video"].isChanging .surtitle {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

[am-section*="video"].isOpen .video-container {
  z-index: 800;
  opacity: 1;
}

[am-section*="video"] .hero-header:before {
  z-index: 0;
}

[am-section*="video"] [am-i],
[am-section*="video"] .title,
[am-section*="video"] .surtitle,
[am-section*="video"] .btn-container {
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-section*="video"] [am-i] {
  -webkit-transition-delay: .75s;
          transition-delay: .75s;
}

[am-section*="video"] .btn-container {
  -webkit-transition-delay: .70s;
          transition-delay: .70s;
}

[am-section*="video"] .title {
  -webkit-transition-delay: .65s;
          transition-delay: .65s;
}

[am-section*="video"] .surtitle {
  -webkit-transition-delay: .60s;
          transition-delay: .60s;
}

[am-section*="video"] [am-btn] {
  margin: 1em 1em 0;
}

[am-section*="video"] .video-overlay,
[am-section*="video"] .video-container {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

[am-section*="video"] .video-inner {
  width: 100%;
  height: 100%;
  padding: 2em;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
}

[am-section*="video"] .video-inner,
[am-section*="video"] .video-inner iframe {
  width: 100%;
  height: 100%;
}

[am-section*="video"] .video-inner iframe {
  background: transparent;
}

[am-section*="video"] .video-container {
  z-index: -999;
  position: fixed;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

[am-section*="video"] .video-overlay {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

[am-section*="video"] .video-btn-close {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 3em;
  height: 3em;
  margin: 0;
  padding: 0.5em;
  opacity: 0;
}

[am-section*="video"] .video-btn-close [am-i] {
  color: #949393;
  opacity: 1;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

[am-section*="video"] .video-btn-close [am-s] {
  stroke: #949393;
}

/*
Section des pages AOC
=====================

Une joulie présentation.
*/
.compo-section {
  overflow: hidden;
}

.compo-section .row {
  z-index: 1;
}

.compo-section [class*="col-xs-"] {
  margin-bottom: 30px;
}

.compo-section [class*="col-xs-"]:nth-child(2n+1) {
  clear: both;
}

.compo-section [am-article] {
  z-index: 100;
  margin-bottom: 60px;
}

.compo-section [am-article]:last-child {
  margin-bottom: 0;
}

.compo-section .surtitle {
  margin-bottom: 0.3em;
}

.compo-section .title br {
  display: none;
}

.compo-section .deco,
.compo-section .square {
  display: none;
}

.compo-section .deco {
  z-index: 1;
  position: absolute;
  width: auto;
}

.compo-section .deco.bg {
  z-index: -1;
}

.compo-section .deco.fg {
  z-index: 2;
}

.compo-section .square {
  position: absolute;
  width: 53.389830508%;
  height: 0;
  padding-top: 46.2%;
  border: 12px solid #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.compo-section [am-figure="first"] .square {
  top: -46%;
  right: 45px;
}

.compo-section [am-figure="first"] .bg {
  top: -63.9%;
  right: -140px;
  width: 84.6%;
}

.compo-section [am-figure="first"] .fg {
  top: -31%;
  right: 30%;
  width: 25.3%;
}

.compo-section [am-figure="second"] .square {
  bottom: -46%;
  left: 45px;
}

.compo-section [am-figure="second"] .bg {
  z-index: -2;
  bottom: -70.3%;
  left: -45.8%;
  width: 210%;
}

.compo-section [am-figure="second"] .bg2 {
  z-index: -1000;
  top: -100%;
  right: -50%;
}

.compo-section [am-figure="second"] .fg {
  top: 110.54%;
  left: 41.86%;
  width: 26.27%;
}

.compo-section [am-figure="third"] .square {
  top: -46%;
  left: 45px;
}

.compo-section [am-figure="third"] .bg {
  top: -70.3%;
  left: -16.9%;
  width: 95.4%;
}

.compo-section [am-figure="third"] .fg {
  top: -54.3%;
  left: 27.2%;
  width: 37.3%;
}

.compo-section [am-figure="fourth"] .square {
  z-index: 3;
  right: 45px;
  bottom: -46%;
}

.compo-section [am-figure="fourth"] .bg {
  top: -126.6%;
  left: -64.4%;
  width: 178.3%;
}

.compo-section [am-figure="fourth"] .fg {
  right: 16.9%;
  bottom: -50%;
  width: 33.56%;
}

@media (min-width: 768px) {
  .compo-section {
    padding: 100px 0 150px;
  }
  .compo-section [am-article] {
    margin-bottom: 130px;
  }
  .compo-section [am-figure]:last-of-type {
    margin-bottom: 0;
  }
  .compo-section .title br {
    display: block;
  }
  .compo-section .deco,
  .compo-section .square {
    display: block;
  }
}

@media (min-width: 992px) {
  .compo-section {
    padding: 200px 0 250px;
  }
}

/*
Accordéon
=========
*/
[am-section*="accordion"] {
  counter-reset: accordion;
  padding: 0;
}

[am-section*="accordion"] .row + .row {
  margin-top: 2em;
}

[am-section*="accordion"] .article-header {
  padding: 2.22em 0;
  text-align: center;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: cover;
  cursor: pointer;
  opacity: 1;
}

[am-section*="accordion"] .article-header .container > * + * {
  margin-top: 1rem;
}

[am-section*="accordion"] .article-header .title,
[am-section*="accordion"] .article-header .intro {
  margin-bottom: 0;
}

[am-section*="accordion"] .article-header .title {
  font-family: "garamond-premier-pro-display", "Myriad Pro", sans-serif;
  font-size: 2em;
  font-style: italic;
  font-weight: 400;
  color: #443b39;
}

[am-section*="accordion"] .article-header .title:before {
  counter-increment: accordion;
  content: counter(accordion) ". ";
}

[am-section*="accordion"] .article-header .intro {
  font-family: "garamond-premier-pro", "Myriad Pro", sans-serif;
  font-size: 1.22em;
  color: #888080;
}

[am-section*="accordion"] .article-header [am-i] {
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[am-section*="accordion"] .article-header [am-s] {
  fill: #565e60;
}

[am-section*="accordion"] .accordion-container {
  height: 0;
  overflow: hidden;
}

[am-section*="accordion"] .accordion-container.isOpen {
  height: auto !important;
}

[am-section*="accordion"] .article-content {
  margin: 0;
  overflow: hidden;
}

[am-section*="accordion"] .article-content .row {
  z-index: 1;
}

[am-section*="accordion"] .article-content .surtitle {
  margin: 0 0 1.375em;
  font-size: 1.67em;
  font-weight: 700;
  text-transform: none;
}

[am-section*="accordion"] .article-content * + .surtitle {
  margin-top: 2em;
}

@media (min-width: 768px) {
  [am-section*="accordion"] .row + .row {
    margin-top: 4em;
  }
}

/*
Articles
========
*/
[am-article][am-article*="p0"],
[am-article][am-article*="p0"] > [class^="col-xs-"] {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  [am-article] > [class^="col-xs-"] {
    padding-top: 4em;
    padding-bottom: 5em;
  }
}

@media (min-width: 992px) {
  [am-article] > [class^="col-xs-"] {
    padding-top: 5em;
    padding-bottom: 6em;
  }
}

[am-article*="right"] {
  float: right;
}

[am-article*="white"] {
  background: #fff;
}

[am-article*="darkwhite"] {
  background: #f3f3f3;
}

.article + .article {
  margin-top: 60px;
}

@media (min-width: 768px) {
  .article + .article {
    margin-top: 60px;
  }
}

@media (min-width: 992px) {
  .article + .article {
    margin-top: 100px;
  }
}

.article-figure {
  margin-bottom: 1em;
}

@media (min-width: 1180px) {
  .article-figure.right img {
    float: left;
  }
  .article-figure img {
    float: right;
    width: auto;
  }
}

.article-header .title {
  margin-bottom: 0.5em;
  font-size: 2em;
}

@media (min-width: 768px) {
  .article-header .title {
    font-size: 2.78em;
  }
}

.article-content {
  margin-top: 1em;
  margin-bottom: 1.78em;
}

.article-content p {
  margin-top: 0;
  margin-bottom: 0;
  color: inherit;
}

.article-content p + p,
.article-content p + ul,
.article-content p + h4 {
  margin-top: 1.357em;
}

.article-content figure {
  margin: 2em 0;
}

@media (min-width: 768px) {
  .article-content {
    margin-top: 2em;
    margin-bottom: 2.78em;
  }
}

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

.article-footer.tal {
  text-align: left;
}

@media (min-width: 768px) {
  .article-footer {
    text-align: left;
  }
  .article-footer.tac {
    text-align: center;
  }
}

/*
Règlement
=========
*/
[am-article*="reglement"],
[am-article*="definition"] {
  padding: 1.2em;
}

[am-article*="reglement"] .article-content,
[am-article*="definition"] .article-content {
  margin: 0 0 1em;
  padding: 1em 0 1.2em;
}

@media (min-width: 480px) {
  [am-article*="reglement"],
  [am-article*="definition"] {
    padding: 1.66em;
  }
}

@media (min-width: 768px) {
  [am-article*="reglement"],
  [am-article*="definition"] {
    padding: 2.22em 6.66em;
  }
  [am-article*="reglement"] .article-content,
  [am-article*="definition"] .article-content {
    padding: 1.6em 0 1.8em;
  }
}

[am-article*="reglement"] .article-content {
  margin-bottom: 0;
}

[am-article*="reglement"] .article-content p,
[am-article*="reglement"] .article-content ul {
  margin-bottom: 1.375em;
}

/*
Définitions
===========
*/
[am-article*="definition"] .title {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #b2a99a;
}

[am-article*="definition"] .subtitle {
  margin-bottom: 0;
  padding: 0.66em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

[am-article*="definition"] .subtitle,
[am-article*="definition"] .article-content {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #e1e1e1;
}

[am-article*="definition"] .article-figure {
  margin: 1.66em auto;
  text-align: center;
}

[am-article*="definition"] .article-header + .article-content {
  margin-top: -1px;
}

[am-article*="definition"] img {
  float: none;
  width: 100%;
  height: auto;
}

[am-article*="definition"] [am-btn] {
  margin-left: 1em;
}

/*
Cartouche
=========
*/
[am-article*="cartouche"] {
  padding: 2.66em 2em;
  text-align: center;
  color: #fff;
}

[am-article*="cartouche"]:before {
  content: "";
  position: absolute;
  top: 1em;
  right: 1em;
  bottom: 1em;
  left: 1em;
  border: 1px solid #a19898;
  pointer-events: none;
}

[am-article*="cartouche"][am-article*="white"] {
  color: #949393;
}

[am-article*="cartouche"] .title {
  font-size: 1.67em;
}

[am-article*="cartouche"] .article-content {
  margin-bottom: 0;
  font-family: "garamond-premier-pro", "Myriad Pro", sans-serif;
  font-size: 1.22em;
  font-style: italic;
}

[am-article*="cartouche"] .article-content p {
  max-width: 30em;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  [am-article*="cartouche"] {
    padding: 3.66em 2.66em;
  }
  [am-article*="cartouche"]:before {
    top: 1.67em;
    right: 1.67em;
    bottom: 1.67em;
    left: 1.67em;
  }
  [am-article*="cartouche"] .article-content {
    font-size: 1.4em;
  }
}

figure.deco,
figure.cartouche-figure {
  margin: 0 auto;
}

figure.cartouche-figure img {
  width: inherit;
  height: inherit;
  margin: 0 auto;
}

/*
Accordéon
=========
*/
[am-article*="accordion"] {
  background: #fff;
}

/*
Article simple
==============
*/
[am-article*="simple"] {
  margin-bottom: 26px;
  line-height: 1.375;
}

[am-article*="simple"] .inner {
  padding: 1.5em;
  background: #fff;
}

[am-article*="simple"] .article-content {
  margin: 1em auto;
  color: #565e60;
}

[am-article*="simple"] .surtitle {
  font-size: 1.66em;
  font-weight: 700;
}

[am-article*="simple"] a:not([am-btn]) {
  font-style: normal;
}

[am-article*="simple"] a:not([am-btn]) [am-i*="chev-"],
[am-article*="simple"] a:not([am-btn]) [am-s*="chev-"] {
  vertical-align: middle;
  width: 8px;
  height: 14px;
  margin-right: 0.25em;
  fill: #565e60;
}

[am-article*="simple"] a:not([am-btn]) b {
  border-bottom: 1px solid;
}

[am-article*="simple"] ul:not([class]) {
  margin: 1.375em auto;
  padding: 0;
  font-size: 0.89em;
  list-style: none;
}

[am-article*="simple"] ul:not([class]) li {
  padding-left: 1em;
}

[am-article*="simple"] ul:not([class]) li:before {
  content: "";
  position: absolute;
  top: 0.6875em;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -6px;
  background: #afa1a1;
  border-radius: 7px;
  -webkit-transform: scale(0.4);
      -ms-transform: scale(0.4);
          transform: scale(0.4);
}

.no-csstransforms [am-article*="simple"] ul:not([class]) li:before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  [am-article*="simple"] {
    margin-bottom: 30px;
  }
  [am-article*="simple"] .inner {
    padding: 2em;
  }
  [am-article*="simple"] .article-content {
    margin: 2em auto;
  }
}

@media (min-width: 992px) {
  [am-article*="simple"] {
    margin-bottom: 36px;
  }
  [am-article*="simple"] .inner {
    padding: 3em;
  }
}

/*
Article de type push
====================
*/
[am-article*="push"][am-article*="grey"] {
  color: #fff;
}

[am-article*="push"][am-article*="grey"] .inner {
  background: #565e60;
}

[am-article*="push"][am-article*="white"] {
  background: none;
}

[am-article*="push"][am-article*="white"] .inner {
  background: #fff;
}

[am-article*="push"][am-article*="big"] .table {
  padding: 1.44em 1em;
}

[am-article*="push"] .article-figure {
  margin: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

[am-article*="push"] .article-figure img {
  float: none;
}

[am-article*="push"] .table {
  padding: 1.44em 1em;
}

[am-article*="push"] .article-content,
[am-article*="push"] .article-footer {
  margin: 0;
  text-align: center;
}

[am-article*="push"] .article-footer {
  margin-top: 1em;
}

[am-article*="push"] [am-btn] {
  white-space: nowrap;
}

@media (min-width: 768px) {
  [am-article*="push"][am-article*="big"] .cell {
    padding: 1.44em;
  }
  [am-article*="push"] .article-figure {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
  }
  [am-article*="push"] .article-figure.right {
    right: 0;
    left: auto;
  }
  [am-article*="push"] .article-figure img {
    display: none;
  }
  [am-article*="push"] .article-figure noscript img {
    display: block;
  }
}

@media (max-width: 992px) {
  [am-article*="push"] .cell {
    display: block;
  }
}

@media (min-width: 992px) {
  [am-article*="push"][am-article*="big"] .cell {
    padding: 2.44em;
  }
  [am-article*="push"] .table {
    padding: 0;
  }
  [am-article*="push"] .cell {
    vertical-align: middle;
    padding: 1.44em 1em;
  }
  [am-article*="push"] .article-content {
    text-align: left;
  }
  [am-article*="push"] .article-footer {
    text-align: right;
  }
}

[am-cms*="fiche"] > * {
  margin-top: 0;
}

[am-cms*="fiche"] > * + * {
  margin-top: 1.375em;
}

[am-cms*="fiche"] a {
  color: #2c2c2c;
  border-bottom: 1px solid #e5e4e4;
}

[am-cms*="fiche"] h1,
[am-cms*="fiche"] h2,
[am-cms*="fiche"] h3 {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
}

[am-cms*="fiche"] h3 {
  font-size: 1.33em;
}

[am-cms*="fiche"] h4 {
  font-size: 1.05em;
}

[am-cms*="fiche"] blockquote {
  padding: 0 2em;
  font-size: 1em;
}

[am-cms*="fiche"] blockquote > *:last-child:after, [am-cms*="fiche"] blockquote:before {
  content: "";
  width: 1.5em;
  height: 0.8em;
  background-size: 100% 100%;
}

[am-cms*="fiche"] blockquote:before {
  float: left;
  margin: 0.2em 0 0 -2em;
  background-image: url("https://www.vinsalsace.com/assets/svg/layout/quote-grey-open.svg");
}

[am-cms*="fiche"] blockquote > *:last-child:after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  background-image: url("https://www.vinsalsace.com/assets/svg/layout/quote-grey-close.svg");
}

@media (min-width: 992px) {
  [am-cms*="fiche"] {
    font-size: 0.875em;
  }
}

/*
Tableaux
========
*/
[am-table] {
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
}

[am-table] th,
[am-table] td {
  padding: 0.25em 0.5em;
  line-height: 1;
}

[am-table] .title {
  display: block;
  margin: 0;
  font-size: 1.2em;
  letter-spacing: 0;
}

[am-table] .sub-level + .sub-level td:first-child {
  border-top-width: 1px;
}

[am-table] .sub-level td:first-child {
  border-top-width: 0;
}

[am-table] .sub-level .title {
  padding-left: 1em;
  font-size: 0.9em;
}

@media (min-width: 768px) {
  [am-table] th,
  [am-table] td {
    padding: 0.5em;
  }
}

@media (min-width: 992px) {
  [am-table] th,
  [am-table] td {
    padding: 1em;
  }
  [am-table] .sub-level .title {
    padding-left: 1.4em;
  }
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

.table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

.table-container::-webkit-scrollbar-thumb {
  background: #5a5a5a;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
}

[am-section*="lightergrey"] .table-container::-webkit-scrollbar-track {
  background: #e5e4e4;
}

[am-section*="lightergrey"] .table-container::-webkit-scrollbar-thumb {
  background: #5a5a5a;
  border: 2px solid #e5e4e4;
  border-radius: 4px;
}

/*
Tableau des cépages
===================
*/
[am-table*="cepages"] {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  background: #e3dfdf;
}

[am-table*="cepages"] th,
[am-table*="cepages"] td {
  text-align: center;
  border-top: 1px solid #c0bbbb;
  border-left: 1px solid #c0bbbb;
}

[am-table*="cepages"] th:first-child,
[am-table*="cepages"] td:first-child {
  text-align: left;
  border-left: 0;
}

[am-table*="cepages"] th:last-child,
[am-table*="cepages"] td:last-child {
  border-right: 0;
}

[am-table*="cepages"] th {
  font-size: 0.9em;
  background: #d3cece;
  border-top: 0;
}

[am-table*="cepages"] th:first-child {
  background: #d8d3d3;
}

[am-table*="cepages"] th:nth-child(2n) {
  background: #d0cbcb;
}

[am-table*="cepages"] td {
  background: #d8d3d3;
}

[am-table*="cepages"] td:nth-child(2n) {
  background: #d0cbcb;
}

[am-table*="cepages"] td[colspan], [am-table*="cepages"] td:first-child {
  background: #e3dfdf;
}

[am-table*="cepages"] .title span {
  font-weight: 400;
}

[am-table*="cepages"] .sub-level [am-i*="return-arrow"] {
  position: absolute;
  top: 50%;
  margin-top: -16px;
}

.table-legend {
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 1em 2em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  text-align: center;
  background: #fff;
}

.table-legend dd,
.table-legend dt,
.table-legend h4,
.table-legend dl,
.table-legend .title {
  margin: 0;
}

.table-legend dd,
.table-legend dt {
  display: inline;
}

.table-legend dd:after {
  content: "\A";
  white-space: pre;
}

.table-legend .title {
  font-size: 1.1em;
  text-transform: none;
}

.table-legend [am-i*="dot"] {
  margin-right: 5px;
}

@media (min-width: 768px) {
  .table-legend dd,
  .table-legend dt,
  .table-legend h4,
  .table-legend dl,
  .table-legend .title {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
  }
  .table-legend dl,
  .table-legend dd + dt {
    margin-left: 30px;
  }
}

/*
Tableau des accords mets-vins
=============================
*/
[am-table*="accords-mets-vins"] {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
}

[am-table*="accords-mets-vins"] th,
[am-table*="accords-mets-vins"] td:first-child {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-weight: 700;
  color: #565e60;
}

[am-table*="accords-mets-vins"] th + th,
[am-table*="accords-mets-vins"] td + td {
  border-right: 1px solid #e5e5e5;
}

[am-table*="accords-mets-vins"] th + th:last-child,
[am-table*="accords-mets-vins"] td + td:last-child {
  border-right: 0;
}

[am-table*="accords-mets-vins"] th {
  padding: 1em;
  white-space: nowrap;
}

[am-table*="accords-mets-vins"] th + th {
  background: #f4f4f4;
  border-color: #d4d6d6;
}

[am-table*="accords-mets-vins"] th:nth-child(2), [am-table*="accords-mets-vins"] th:nth-child(3) {
  min-width: 8.6em;
}

[am-table*="accords-mets-vins"] td {
  padding: 0.3em 1em;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  color: #7d7d7d;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

[am-table*="accords-mets-vins"] td:first-child {
  text-transform: uppercase;
  color: #fff;
  background: #565e60;
  border-color: #4d5456;
}

@media (min-width: 768px) {
  [am-table*="accords-mets-vins"] {
    font-size: 16px;
    font-size: 1rem;
  }
  [am-table*="accords-mets-vins"] th,
  [am-table*="accords-mets-vins"] td {
    padding: 0.75em 1em;
  }
  [am-table*="accords-mets-vins"] th,
  [am-table*="accords-mets-vins"] td:first-child {
    font-size: 1.11em;
  }
}

@media (min-width: 992px) {
  [am-table*="accords-mets-vins"] {
    font-size: 18px;
    font-size: 1.125rem;
  }
  [am-table*="accords-mets-vins"] tr:first-child td,
  [am-table*="accords-mets-vins"] tr:first-child th {
    padding-top: 1.2em;
  }
  [am-table*="accords-mets-vins"] tr:last-child td {
    padding-bottom: 1.2em;
  }
}

/*
Recettes
========
*/
.recette {
  background: #fff;
  overflow: hidden;
}

/*
 Infos de recette dans la couverture de page
 ===========================================
 */
.recette-infos {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

@media (min-width: 768px) {
  .recette-infos {
    display: table;
    width: 100%;
  }
}

.recette-infos-item {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.recette-infos-item + .recette-infos-item {
  margin-top: 1em;
}

.recette-infos-item [am-i],
.recette-infos-item [am-s] {
  width: 1.625em;
  height: 1.625em;
}

.recette-infos-item [am-i] {
  margin: -2px 0.5em 0 0;
}

.recette-infos-item [am-i*="dot"] {
  width: 0.6666em;
  height: 0.6666em;
  margin: 0 0.1em;
}

.recette-infos-item [am-i*="black"] {
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .recette-infos-item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  + .recette-infos-item {
    margin-top: 0;
  }
  + .recette-infos-item:before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 1.2em;
    background: #fff;
  }
}

@media (min-width: 992px) {
  .recette-infos-item {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .recette-infos-item {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

/*
 Bloc sidebar
 ============
 */
@media (min-width: 768px) {
  .recette-sidebar {
    padding-right: 0;
  }
}

.recette-share,
.recette-ingredients,
.recette-accord-inner {
  padding: 1.4em;
  background: #f9f9f9;
  border-right: 1px solid #eee;
}

@media (min-width: 992px) {
  .recette-share,
  .recette-ingredients,
  .recette-accord-inner {
    padding: 2.22em;
  }
}

/*
 Bloc "À déguster avec"
 */
.recette-accord {
  text-align: center;
}

.recette-accord-inner {
  background-position: top center;
  background-repeat: no-repeat;
}

.recette-accord-header .title {
  font-size: 1.3em;
}

@media (min-width: 768px) {
  .recette-accord-header .title {
    font-size: 1.6em;
  }
}

@media (min-width: 992px) {
  .recette-accord-header .title {
    font-size: 2.125em;
  }
}

.recette-accord-figure img {
  display: none;
  width: auto;
  max-width: 50%;
  margin: auto;
}

@media (min-width: 768px) {
  .recette-accord-figure img {
    display: block;
    max-width: 100%;
  }
}

.recette-accord-caption .title,
.recette-accord-caption .subtitle {
  margin-bottom: 0;
}

.recette-accord-caption .title {
  font-size: 1.56em;
  color: #2c2c2c;
}

.recette-accord-caption .subtitle {
  font-style: italic;
  font-weight: 400;
  color: #5a5a5a;
}

.recette-accord-caption p {
  margin-top: 1em;
  margin-bottom: 0;
}

/*
 Bloc partage réseaux sociaux
 */
.recette-share {
  padding-bottom: 0;
}

.recette-share:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1.4em;
  background: #eee;
}

.recette-share .list-item {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}

.recette-share .list-link {
  display: block;
  padding: 0.25em;
}

.recette-share .list-link:hover [am-i], .recette-share .list-link:active [am-i] {
  background: #fff;
}

.recette-share .list-link:hover [am-s*="mail"],
.recette-share .list-link:hover [am-s*="print"], .recette-share .list-link:active [am-s*="mail"],
.recette-share .list-link:active [am-s*="print"] {
  fill: #776565;
}

.recette-share .list-link:active [am-i] {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

.recette-share [am-i] {
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recette-share [am-i],
.recette-share [am-s] {
  display: block;
  width: 1.5em;
  height: 1.5em;
}

.recette-share [am-s] {
  fill: #9d8c8c;
}

@media (min-width: 992px) {
  .recette-share:after {
    margin-top: 2.22em;
  }
  .recette-share [am-i],
  .recette-share [am-s] {
    width: 32px;
    height: 32px;
  }
}

/*
 Bloc liste des ingrédients
 */
.recette-ingredients .surtitle,
.recette-ingredients-table td:first-child {
  font-weight: 700;
}

.recette-ingredients .surtitle {
  font-size: 1.5em;
}

.recette-ingredients .surtitle.secondary {
  margin-top: 2em;
  margin-bottom: 1.2em;
  font-size: 1.1em;
}

.recette-ingredients .surtitle.secondary span:after {
  height: 1px;
  background: #5a5a5a;
}

.recette-ingredients .surtitle span {
  width: 100%;
}

@media (min-width: 768px) {
  .recette-ingredients:before {
    content: "";
    position: absolute;
    top: 100%;
    right: -1px;
    left: 0;
    height: 2000px;
    background: #f9f9f9;
    border-right: 1px solid #eee;
  }
}

.recette-ingredients-table {
  width: 100%;
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  line-height: 1.2em;
  color: #615e5e;
}

.recette-ingredients-table tr + tr td {
  border-top: 1px solid #eee;
}

.recette-ingredients-table td {
  vertical-align: top;
  padding: 0.25em;
}

.recette-ingredients-table td:first-child {
  width: 25%;
  padding-right: 0.5em;
  padding-left: 0;
  text-align: right;
}

.recette-ingredients-table td:last-child {
  padding-right: 0;
}

/*
 Bloc de contenu
 ===============
 */
@media (min-width: 768px) {
  .recette-media,
  .recette-content {
    padding-left: 0;
  }
}

.recette-content {
  color: #5a5a5a;
}

.recette-content h3 {
  font-size: 1.33em;
}

.recette-content h4 {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.22em;
}

/*
 Bloc vidéo / photo
 */
.recette-media-inner {
  overflow: hidden;
}

.recette-media-btn,
.recette-media-iframe,
.recette-media-btn [am-i] {
  position: absolute;
}

.recette-media-btn,
.recette-media-iframe {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.recette-media-btn {
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
}

.recette-media-btn:hover + .recette-media-figure {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.recette-media-btn:active + .recette-media-figure {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.recette-media-btn:active [am-s] {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.recette-media-btn [am-i],
.recette-media-btn [am-s] {
  width: 5.625em;
  height: 5.625em;
}

.recette-media-btn [am-i] {
  top: 50%;
  left: 50%;
  margin: -2.8125em 0 0 -2.8125em;
}

.recette-media-btn [am-s] {
  fill: #fff;
}

.recette-media-figure {
  -webkit-transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.recette-media-iframe {
  z-index: -1;
  background: #000 url("https://www.vinsalsace.com/assets/svg/layout/loader.svg") no-repeat center center;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.recette-media-iframe.isLoaded {
  z-index: 3;
  opacity: 1;
}

/*
 Instruction pour la recette
 */
.recette-instructions,
.produit-saison-content {
  padding: 1.5em;
}

+ .recette-instructions, +
.produit-saison-content {
  padding-top: 0;
}

.recette-instructions h1,
.recette-instructions h2,
.produit-saison-content h1,
.produit-saison-content h2 {
  text-align: center;
}

.recette-instructions h2,
.recette-instructions .surtitle,
.produit-saison-content h2,
.produit-saison-content .surtitle {
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: 700;
}

.recette-instructions * + h2,
.produit-saison-content * + h2 {
  margin-top: 1.75em;
}

.recette-instructions h2,
.produit-saison-content h2 {
  font-family: "myriad-pro-condensed", "Myriad Pro", sans-serif;
  font-size: 1.67em;
  text-transform: uppercase;
  color: #d67c43;
}

.recette-instructions h2,
.recette-instructions h2 span,
.produit-saison-content h2,
.produit-saison-content h2 span {
  z-index: 1;
}

.recette-instructions h2 span,
.produit-saison-content h2 span {
  position: static;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 0 0.67em;
  background: #fff;
}

.recette-instructions h2 span:after,
.produit-saison-content h2 span:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}

@media (min-width: 768px) {
  .recette-instructions,
  .produit-saison-content {
    padding: 2em;
  }
}

@media (min-width: 992px) {
  .recette-instructions,
  .produit-saison-content {
    padding: 2.78em;
  }
}

@media (min-width: 1180px) {
  .recette-instructions,
  .produit-saison-content {
    padding: 2.78em 3.88em;
  }
}

.recette-checklist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.4em;
  color: #5a5a5a;
}

.recette-checklist li {
  margin-bottom: 1.275em;
}

.recette-checklist input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.recette-checklist input[type="checkbox"]:checked + label[for] {
  text-decoration: line-through;
  color: #c8c4c4;
}

.recette-checklist input[type="checkbox"]:checked + label[for]:before {
  background-position: 50% 50%;
  border-color: #cacaca;
  -webkit-transition: background-position 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-position 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.recette-checklist label[for] {
  padding-left: 2em;
  line-height: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.recette-checklist label[for]:before {
  content: "";
  position: absolute;
  top: 0.222em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  background: #fff url("https://www.vinsalsace.com/assets/svg/layout/check.svg") no-repeat 50% 700%;
  border: 1px solid #a4a4a4;
  -webkit-transition: background-position 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045), border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background-position 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045), border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.ie .recette-checklist label[for]:before {
  background-image: url("../png/check.png");
}
