@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * 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.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 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;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

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

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

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

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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;
}

/**
 * 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 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: rgb(231.8902439024, 220.3353658537, 88.6097560976);
  background: #ebe16f;
}

.alert-info {
  border-color: rgb(191.1428571429, 227.6326530612, 244.3571428571);
  background: #d5edf8;
}

.alert-error {
  border-color: rgb(247.8125, 204.6875, 206.484375);
  background: #fbe3e4;
}

.alert-success {
  border-color: rgb(221.7207792208, 233.7012987013, 173.7987012987);
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.password-protection form input[type=submit], .blue-btn, #submit, .comment-reply-link, a.bouton,
.button,
.wc-block-components-button {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 500 !important;
  padding: 9px 24px !important;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 7px;
  position: relative;
  opacity: 1;
  transition: all 0.2s;
  cursor: pointer;
}
.password-protection form input[type=submit]:hover, .blue-btn:hover, #submit:hover, .comment-reply-link:hover, a.bouton:hover,
.button:hover,
.wc-block-components-button:hover, .password-protection form input[type=submit]:focus, .blue-btn:focus, #submit:focus, .comment-reply-link:focus, a.bouton:focus,
.button:focus,
.wc-block-components-button:focus {
  color: #fff;
}
.password-protection form input[type=submit]:active, .blue-btn:active, #submit:active, .comment-reply-link:active, a.bouton:active,
.button:active,
.wc-block-components-button:active {
  top: 1px;
}

a.bouton,
.button,
.wc-block-components-button {
  background-color: #333;
  border: 2px solid transparent;
}
a.bouton:hover,
.button:hover,
.wc-block-components-button:hover {
  background-color: #000;
}
a.bouton.contour,
.button.contour,
.wc-block-components-button.contour {
  border-color: #444;
}
a.bouton.blanc,
.button.blanc,
.wc-block-components-button.blanc {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  color: #444;
}
a.bouton.blanc:hover,
.button.blanc:hover,
.wc-block-components-button.blanc:hover {
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08);
  color: #222;
}
a.bouton.gris,
.button.gris,
.wc-block-components-button.gris {
  background-color: #eee;
  color: #444;
}
a.bouton.gris:hover,
.button.gris:hover,
.wc-block-components-button.gris:hover {
  background-color: #ddd;
  color: #222;
}
a.bouton.jaune,
.button.jaune,
.wc-block-components-button.jaune {
  background-color: #ffff00;
  color: #444;
}
a.bouton.jaune:hover,
.button.jaune:hover,
.wc-block-components-button.jaune:hover {
  background-color: rgb(239.7, 239.7, 0);
  color: #222;
}
a.bouton.transparent,
.button.transparent,
.wc-block-components-button.transparent {
  background-color: transparent;
  color: #222;
}
a.bouton.transparent:hover,
.button.transparent:hover,
.wc-block-components-button.transparent:hover {
  background: #fff;
}
a.bouton.secondary,
.button.secondary,
.wc-block-components-button.secondary {
  background-color: #fff;
  transition: all 0.2s;
}
a.bouton.secondary.vert,
.button.secondary.vert,
.wc-block-components-button.secondary.vert {
  color: #17b5a7;
}
a.bouton.secondary.bleu,
.button.secondary.bleu,
.wc-block-components-button.secondary.bleu {
  color: #303f9f;
}
a.bouton.secondary.rouge,
.button.secondary.rouge,
.wc-block-components-button.secondary.rouge {
  color: #c33d32;
}
a.bouton.secondary:hover,
.button.secondary:hover,
.wc-block-components-button.secondary:hover {
  background-color: #fff;
  border-color: #222;
  color: #222;
}
a.bouton.petit,
.button.petit,
.wc-block-components-button.petit {
  padding: 7px 20px !important;
}

.picto {
  padding-left: 20px;
  text-decoration: none;
}
.picto:not(.bouton) {
  color: inherit;
}
.picto::after {
  opacity: 0;
  transition: all 0.2s;
}
.picto::before, .picto::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.picto.image::before, .picto.blanc.image::after {
  background-image: url("../images/pictos/blanc/image.png");
}
.picto.images::before, .picto.blanc.images::after {
  background-image: url("../images/pictos/blanc/images.png");
}
.picto.video::before, .picto.blanc.video::after {
  background-image: url("../images/pictos/blanc/video.png");
}
.picto.doc::before, .picto.blanc.doc::after {
  background-image: url("../images/pictos/blanc/doc.png");
}
.picto.pdf::before, .picto.blanc.pdf::after {
  background-image: url("../images/pictos/blanc/pdf.png");
}
.picto.dir::before, .picto.blanc.dir::after {
  background-image: url("../images/pictos/blanc/folder.png");
}
.picto.blanc:hover::after {
  opacity: 1;
}
.picto.blanc.image::before {
  background-image: url("../images/pictos/noir/image.png");
}
.picto.blanc.images::before {
  background-image: url("../images/pictos/noir/images.png");
}
.picto.blanc.video::before {
  background-image: url("../images/pictos/noir/video.png");
}
.picto.blanc.doc::before {
  background-image: url("../images/pictos/noir/doc.png");
}
.picto.blanc.pdf::before {
  background-image: url("../images/pictos/noir/pdf.png");
}
.picto.blanc.dir::before {
  background-image: url("../images/pictos/noir/folder.png");
}
.picto.gris.image::before {
  background-image: url("../images/pictos/noir/image.png");
}
.picto.gris.images::before {
  background-image: url("../images/pictos/noir/images.png");
}
.picto.gris.video::before {
  background-image: url("../images/pictos/noir/video.png");
}
.picto.gris.doc::before {
  background-image: url("../images/pictos/noir/doc.png");
}
.picto.gris.pdf::before {
  background-image: url("../images/pictos/noir/pdf.png");
}
.picto.gris.dir::before {
  background-image: url("../images/pictos/noir/folder.png");
}
.picto.bouton {
  padding-left: 40px !important;
}
.picto.bouton::before, .picto.bouton::after {
  left: 10px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, #submit, .comment-reply-link {
  background-color: #2980b9;
}
.blue-btn:hover, #submit:hover, .comment-reply-link:hover, .blue-btn:focus, #submit:focus, .comment-reply-link:focus {
  background-color: rgb(37.2991150442, 116.4460176991, 168.3008849558);
}
.blue-btn:active, #submit:active, .comment-reply-link:active {
  background-color: rgb(36.3738938053, 113.5575221239, 164.1261061947);
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #ffff00;
  color: #212121;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: rgb(20.7, 162.9, 150.3);
  opacity: 0.3;
}

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

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #1e1e1e;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: rgb(246.6, 247.8, 249.8);
  outline: none;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/********************* 
GENERAL STYLES
*********************/
body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1e1e1e;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.post-type-archive-production {
  background-color: rgb(255, 255, 234.6);
}

#container {
  overflow-x: hidden;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap,
.content-area,
.nav-wrapper {
  width: 92%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
a {
  transition: all 0.2s;
  color: #333;
  text-decoration-style: dotted;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus {
  color: rgb(28.05, 28.05, 28.05);
}
a:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.007em;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1 {
  font-size: 2em;
  line-height: 1.2em;
  font-weight: 700;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 2.25em;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 0.375em;
}

h3, .h3 {
  font-size: 1.125em;
  font-weight: bold;
}

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

hr {
  height: 1px;
  outline: none;
  border: 0;
  background: #ccc;
  margin: 40px 0 30px;
}

/********************
HEADER STYLES
	*********************/
.header {
  background: #ffff00;
  width: 100%;
}
.header .fond-blanc {
  display: none;
}

.no-cover .header {
  position: static;
}
.no-cover .header .menu-button div span {
  background: #222;
}
.no-cover .header .fond-sombre {
  display: none;
}
.no-cover .header .fond-blanc {
  display: block;
}
.no-cover .header nav li a {
  color: #222;
}
.no-cover .header .pictos-header a {
  padding: 0 !important;
}

#inner-header {
  display: flex;
  padding: 1em 1em 0.75em;
  justify-content: space-between;
  align-items: center;
}
#inner-header > * {
  width: 100%;
}
#inner-header .menu-button-container {
  text-align: right;
}
#inner-header .menu-button-container a {
  padding-top: 0px;
  line-height: 0;
  display: inline-block;
}
#inner-header::before {
  display: none;
}

.logo {
  z-index: 9999;
  line-height: 0;
}
.logo img {
  max-width: 160px;
  max-height: 80px;
  margin-top: -8px;
}
.logo.logo-main, .logo.logo-sticky {
  display: none;
}

.menu-ouvert .header.scrolled-header #inner-header .logo.logo-sticky {
  display: none;
}
.menu-ouvert .header.scrolled-header #inner-header .logo.logo-main {
  display: block;
}

.header.scrolled-header {
  position: fixed;
  top: -200px;
  width: 100%;
  z-index: 100;
  -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.05);
  background: #ffff00;
}
.header.scrolled-header .menu-button div span {
  background: #222;
}
.header.scrolled-header::before {
  content: "";
  position: absolute;
  z-index: 98;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.header.scrolled-header #inner-header .logo {
  display: none;
  margin-bottom: -3px;
}
.header.scrolled-header #inner-header .logo img {
  max-width: 130px;
  max-height: 40px;
}
.header.scrolled-header #inner-header .logo.logo-sticky {
  display: block;
}
.header.scrolled-header #inner-header {
  padding: 1em;
  position: relative;
  z-index: 99;
}
.header.scrolled-header #inner-header .menu-button {
  margin-top: -10px;
}

body.menu-ouvert {
  overflow: hidden;
}

.menu-button {
  position: relative;
  z-index: 200;
  margin-left: 20px;
}
.menu-button > span {
  display: none;
}
.menu-button div {
  width: 22px;
  height: 22px;
  position: relative;
}
.menu-button div:hover {
  cursor: pointer;
}
.menu-button div span {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s ease-in-out, top 0.25s ease-in-out 0.5s, opacity 0.25s ease-in-out 0.5s;
  -moz-transition: -moz-transform 0.5s ease-in-out, top 0.25s ease-in-out 0.5s, opacity 0.25s ease-in-out 0.5s;
  transition: transform 0.5s ease-in-out, top 0.25s ease-in-out 0.5s, opacity 0.25s ease-in-out 0.5s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  transform-origin: center;
}
.menu-button div span.top {
  top: 3px;
}
.menu-button div span.middle {
  top: 10px;
}
.menu-button div span.bottom {
  top: 17px;
}

body.menu-ouvert .menu-button div span {
  background: #fff;
  -webkit-transition: -webkit-transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: transform 0.5s ease-in-out 0.3s, top 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
body.menu-ouvert .menu-button div span.top, body.menu-ouvert .menu-button div span.middle {
  top: 9px;
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
body.menu-ouvert .menu-button div span.top {
  opacity: 0;
}
body.menu-ouvert .menu-button div span.bottom {
  top: 9px;
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

body.mini-header .scrolled-header #inner-header .menu-button-container a {
  position: absolute;
  top: 20px;
}
body.mini-header .scrolled-header #inner-header .menu-button-container a div {
  margin-left: -40px;
}

/*


********************
NAVIGATION STYLES
	*********************/
.header nav {
  display: none;
  height: 100vh;
  width: 100vw;
  overflow: scroll;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: #ffff00;
}
.header nav .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0 25px;
}
.header nav .nav-wrapper .pictos-header {
  order: 2;
  width: 100%;
}
.header nav .nav-wrapper ul.top-nav {
  order: 1;
  width: 100%;
}

.pictos-header {
  padding: 100px 15px 30px;
}
.pictos-header ul {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  text-align: center;
}
.pictos-header img {
  max-height: 18px;
  position: absolute;
  top: 2px;
}
.pictos-header li {
  display: inline-block;
  position: relative;
  margin: 15px 25px 5px;
  font-size: 0.9em;
}
.pictos-header a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.pictos-header span {
  margin-left: 30px;
}

.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
.nav li {
  text-align: center;
}
.nav li a {
  display: block;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-transform: none !important;
  height: 60px;
  font-size: 1.5em;
  font-weight: 700;
  padding: 0.3em 0.75em;
  position: relative;
  transition: all 0.2s;
  left: 0;
}
.nav li a:hover, .nav li a:focus, .nav li a:active {
  font-size: 1.75em;
}
.nav li.menu-item-has-children > a {
  padding-bottom: 0.25em;
}
.nav li ul.sub-menu,
.nav li ul.children {
  margin-top: 0;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding: 0.5em 30px;
  text-transform: none;
  font-size: 1em;
}
.nav li ul.sub-menu li a::before,
.nav li ul.children li a::before {
  content: "— ";
}
.nav > li a {
  text-transform: uppercase;
}
/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  min-height: 90vh;
}

.home #content {
  margin-top: 0;
}

.home .hentry {
  padding-top: 0;
}

body.post-type-archive #main .wrap header {
  padding-top: 0;
}

.hentry {
  padding-top: 2em;
  margin-bottom: 1.5em;
}
.hentry header, .hentry .main, .hentry .textes {
  padding: 1em;
}
.hentry footer {
  padding: 1em;
}
.hentry footer p {
  margin: 0;
}
.hentry img {
  max-width: 100%;
}

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content,
.site-main .single-product .articles {
  padding: 1.5em 1em 0;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content p,
.site-main .single-product .articles p {
  margin: 0 0 1.5em;
}
.entry-content table,
.site-main .single-product .articles table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
.entry-content table caption,
.site-main .single-product .articles table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr,
.site-main .single-product .articles tr {
  border-bottom: 1px solid #eaedf2;
}
.entry-content tr:nth-child(even),
.site-main .single-product .articles tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td,
.site-main .single-product .articles td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
.entry-content td:last-child,
.site-main .single-product .articles td:last-child {
  border-right: 0;
}
.entry-content th,
.site-main .single-product .articles th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
.entry-content th:last-child,
.site-main .single-product .articles th:last-child {
  border-right: 0;
}
.entry-content blockquote,
.site-main .single-product .articles blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd,
.site-main .single-product .articles dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img,
.site-main .single-product .articles img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
.site-main .single-product .articles .size-auto,
.site-main .single-product .articles .size-full,
.site-main .single-product .articles .size-large,
.site-main .single-product .articles .size-medium,
.site-main .single-product .articles .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre,
.site-main .single-product .articles pre {
  background: #212121;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

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

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
  clear: both;
  width: 100%;
}

.pagination,
.woocommerce #container nav.woocommerce-pagination {
  text-align: center;
}
.pagination ul,
.woocommerce #container nav.woocommerce-pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
  border: none;
  margin-bottom: 30px;
}
.pagination li,
.woocommerce #container nav.woocommerce-pagination li {
  padding: 0;
  border: none;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
.pagination a, .pagination span,
.woocommerce #container nav.woocommerce-pagination a,
.woocommerce #container nav.woocommerce-pagination span {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: transparent !important;
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1.5em;
  font-weight: normal;
  padding: 0.25em 1em;
  min-width: 1em;
  display: block;
  color: inherit;
  opacity: 0.6;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus,
.woocommerce #container nav.woocommerce-pagination a:hover,
.woocommerce #container nav.woocommerce-pagination a:focus,
.woocommerce #container nav.woocommerce-pagination span:hover,
.woocommerce #container nav.woocommerce-pagination span:focus {
  color: #17b5a7;
  opacity: 1;
}
.pagination .current,
.woocommerce #container nav.woocommerce-pagination .current {
  cursor: default;
  color: #111;
  opacity: 1;
  background: transparent;
  z-index: 2;
}
.pagination .current:hover, .pagination .current:focus,
.woocommerce #container nav.woocommerce-pagination .current:hover,
.woocommerce #container nav.woocommerce-pagination .current:focus {
  background-color: #fff;
  color: #1e1e1e;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #f8f9fa;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
} /* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #1e1e1e;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}

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

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #111;
  color: #f8f9fa;
  padding: 15px 0 25px;
}
.footer .main-footer-content {
  font-size: 0.9em;
}
.footer .main-footer-content img {
  margin-bottom: 10px;
  max-width: 40%;
}
.footer .alignright {
  margin: 15px 20px 30px 0;
  max-height: 34px;
  width: auto;
}
.footer img + strong {
  display: block;
}
.footer a {
  color: #bbb;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer nav {
  margin-top: -10px;
  margin-bottom: -10px;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
}
.footer nav ul {
  text-align: left;
  display: inline-block;
  border-bottom: 1px solid #ffff00;
  padding-bottom: 10px;
}
.footer nav ul li {
  display: inline-block;
}
.footer nav ul li a {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0.1em 0.6em;
}
.footer nav ul li:first-child a {
  padding-left: 0;
}
.footer nav ul li:last-child a {
  padding-right: 40px;
}
.footer nav + div {
  font-size: 0.85em;
  opacity: 0.7;
}

.pictos-footer {
  display: none;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
#diaporama {
  padding: 0;
  overflow: hidden;
}
#diaporama .slick-arrow {
  display: none !important;
}
#diaporama .slick-dots {
  position: absolute;
  bottom: 15px;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 9px;
}
#diaporama .slick-dots li {
  opacity: 0.5;
  transition: all 0.2s;
}
#diaporama .slick-dots li.slick-active {
  opacity: 1 !important;
}
#diaporama .slick-dots li.slick-active button {
  width: 17px;
  height: 17px;
  margin-top: -2px;
}
#diaporama .slick-dots li:hover {
  opacity: 0.9;
}
#diaporama .slick-dots li button {
  transition: 0.3s all;
  color: transparent;
  width: 13px;
  height: 13px;
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 0;
  padding: 0;
}
#diaporama ul {
  margin: 0;
  position: relative;
}
#diaporama li {
  position: relative;
  text-align: center;
  font-weight: 500;
}
#diaporama li .wrap {
  position: absolute;
  margin: 0 auto;
  left: 4%;
  bottom: 20px;
  padding-bottom: 30px;
  color: #fff;
  z-index: 3;
}
#diaporama li header {
  height: 60vh;
  min-height: 300px;
  width: 100%;
  text-align: left;
  padding: 0;
  background-position: center center;
  background-size: cover;
  position: relative;
}
#diaporama li header::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: #000;
  opacity: 0.05;
  top: 0;
  left: 0;
  z-index: 2;
}
#diaporama li p {
  margin: 5px 0;
}
#diaporama li p:not(.top) {
  font-size: 1.2em;
}
#diaporama li h1 {
  color: #fff;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.1;
  margin: 0;
  text-transform: none;
  font-weight: 700;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
#diaporama li h1 a {
  color: inherit !important;
}
#diaporama li h1.titre-1 {
  font-size: 3em;
}
#diaporama li h1.titre-2 {
  font-size: 2.2em;
}
#diaporama li h1.titre-3 {
  font-size: 2.2em;
}
#diaporama li h1.titre-4 {
  font-size: 1.8em;
}
#diaporama li h3 {
  margin: 0;
  font-size: 0.9em;
  font-weight: normal;
  margin-bottom: 10px;
}
#diaporama li .bouton {
  margin-top: 15px;
  font-size: 0.8em;
  padding: 6px 24px;
}
.ligne-accueil header a,
a.side-button {
  opacity: 0.9;
  text-decoration: none;
  position: relative;
  color: #000;
  transition: all 0.3s;
  display: inline-block;
  padding: 6px 100px 8px 30px;
  background: #eee;
  border-radius: 100px;
}
.ligne-accueil header a::after,
a.side-button::after {
  content: "";
  transition: all 0.3s;
  width: 70px;
  opacity: 0.8;
  height: 14px;
  position: absolute;
  top: 14px;
  right: 30px;
  background-image: url("../images/fleche.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
.ligne-accueil header a:hover,
a.side-button:hover {
  opacity: 1;
}
.ligne-accueil header a:hover::after,
a.side-button:hover::after {
  right: 25px;
}

.ligne-accueil {
  padding: 40px 0;
}
.ligne-accueil.ligne-production {
  background: #ffff00;
}
.ligne-accueil.ligne-production header a {
  background: #fff;
}
.ligne-accueil header {
  padding: 0;
}
.ligne-accueil header h2 {
  margin-bottom: 20px;
}
.ligne-accueil .inner {
  position: relative;
}
.ligne-accueil .bouton {
  margin: 0 15px 15px;
}
.ligne-accueil.ligne-full section {
  width: 100%;
}
.ligne-accueil.ligne-cinema ul.images-accueil li:nth-of-type(5) {
  display: none;
}
.ligne-accueil ul.images-accueil li {
  width: 100%;
  margin: 35px 0;
}
.ligne-accueil ul.images-accueil li > a {
  display: block;
  width: 100%;
  height: 50vw;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 3px;
}
.ligne-accueil ul.images-accueil li a {
  color: inherit;
  text-decoration: none;
}
.ligne-accueil ul.images-accueil li h3 {
  text-transform: uppercase;
  margin: 10px 0 0;
  font-weight: 600;
  font-size: 1.1em;
}
.ligne-accueil ul.images-accueil li p {
  margin: 8px 0 0;
  font-size: 0.9em;
  line-height: 1.4;
}
.ligne-accueil ul.affiches-accueil li {
  width: 100%;
  margin: 35px 0;
}
.ligne-accueil ul.affiches-accueil li img {
  margin: 0 !important;
  border-radius: 3px;
}
.ligne-accueil ul.affiches-accueil li footer {
  text-align: center;
}
.ligne-accueil ul.affiches-accueil li a {
  color: inherit;
  text-decoration: none;
}
.ligne-accueil ul.affiches-accueil li h3 {
  text-transform: uppercase;
  margin: 10px 0 0;
  font-size: 1.2em;
}
.ligne-accueil ul.affiches-accueil li p {
  margin: 0;
  font-size: 0.9em;
}
.ligne-accueil aside {
  padding-top: 30px;
  text-align: center;
}
.ligne-accueil.ligne-boutique header a {
  background: #ffff33;
}
.ligne-accueil.ligne-boutique header a:hover {
  background: #ffff00;
}
.ligne-accueil.ligne-boutique ul.images-accueil {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6%;
}
.ligne-accueil.ligne-boutique ul.images-accueil li {
  width: 47%;
  margin-bottom: 0;
}
.ligne-accueil.ligne-boutique ul.images-accueil li > a {
  height: 39vw;
}
.ligne-accueil.ligne-boutique ul li {
  text-align: center;
}
.ligne-accueil.ligne-boutique ul li img {
  width: auto;
  height: 100%;
}
.ligne-accueil.ligne-boutique p {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.9em !important;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: 600;
}
.ligne-accueil.ligne-boutique p:first-of-type {
  margin-top: 10px;
}
.ligne-accueil.ligne-boutique p .price {
  color: #aaa;
  font-weight: 400;
  display: block;
  margin-top: 7px;
  font-size: 0.8em;
}
.ligne-accueil.ligne-boutique .single_add_to_cart_button {
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.05);
  color: #444;
  font-size: 0.8em !important;
  padding: 4px 16px 6px !important;
  text-transform: none;
}
.ligne-accueil.ligne-boutique .single_add_to_cart_button::after {
  display: none;
  bottom: 7px;
  right: 10px;
}
.ligne-accueil.ligne-boutique .single_add_to_cart_button:hover, .ligne-accueil.ligne-boutique .single_add_to_cart_button:active, .ligne-accueil.ligne-boutique .single_add_to_cart_button:focus {
  background: #eee;
  color: #222;
}
.ligne-accueil.ligne-boutique .single_add_to_cart_button:hover::after, .ligne-accueil.ligne-boutique .single_add_to_cart_button:active::after, .ligne-accueil.ligne-boutique .single_add_to_cart_button:focus::after {
  right: 8px;
}
.ligne-accueil.ligne-boutique .quantity {
  display: none;
}

ul.products .product .attachment-woocommerce_thumbnail {
  max-height: 45vw;
  width: auto !important;
  margin: 0 auto 1em !important;
  display: inline-block;
}
ul.products .product .add_to_cart_button {
  background: rgba(0, 0, 0, 0.05);
  color: #444;
  font-size: 0.8em !important;
  padding: 10px 24px !important;
  text-transform: none;
}
ul.products .product .add_to_cart_button::after {
  display: none;
  bottom: 7px;
  right: 10px;
}
ul.products .product .add_to_cart_button:hover, ul.products .product .add_to_cart_button:active, ul.products .product .add_to_cart_button:focus {
  background: #eee;
  color: #222;
}
ul.products .product .add_to_cart_button:hover::after, ul.products .product .add_to_cart_button:active::after, ul.products .product .add_to_cart_button:focus::after {
  right: 8px;
}
ul.products .product .added_to_cart {
  font-size: 0.8em;
  font-weight: 500;
}
ul.products .product .added_to_cart::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 18px;
  position: relative;
  bottom: -6px;
  margin-right: 5px;
  background-image: url("../images/petite-fleche.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
  transition: 0.3s all;
}
ul.products .product .added_to_cart:hover::after {
  margin-left: 20px;
  margin-right: 0;
}

.affiche .surimpression {
  display: none;
}
.affiche > a {
  display: block;
  line-height: 0;
}

.ligne-vod .images-accueil li p {
  padding-right: 25px !important;
}

.flat-list li {
  display: inline;
}
.flat-list li:not(:last-of-type)::after {
  content: ", ";
}

.avec-liste ul {
  display: inline;
}
.avec-liste ul::before {
  content: "Avec ";
}

.woocommerce-breadcrumb {
  display: none !important;
}

.woocommerce-product-gallery,
.woocommerce-product-gallery + .summary {
  padding-top: 30px;
}

.woocommerce .summary + * {
  clear: both;
}

.download-jaquette {
  padding: 30px 0;
  text-align: center;
}

.grille-affiches > li, .grille-affiches > div {
  width: 100%;
  padding: 0 0 40px;
  text-align: left;
}
.grille-affiches > li img, .grille-affiches > div img {
  width: 100%;
  border-radius: 3px;
}
.grille-affiches h2, .grille-affiches h3, .grille-affiches p {
  margin: 0 0 5px;
}
.grille-affiches h2 {
  font-size: 1em;
  margin-top: 8px;
  text-transform: uppercase;
}
.grille-affiches p {
  font-size: 0.85em;
}
.grille-affiches a {
  color: inherit;
}

.grille-affiches {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6%;
}
.grille-affiches > li, .grille-affiches > div {
  width: 47%;
}
.grille-affiches a img {
  transition: 0.2s opacity;
}
.grille-affiches:hover a img {
  opacity: 0.8;
}
.grille-affiches:hover a img:hover {
  opacity: 1;
}

.term-vod .grille-affiches li p {
  padding-right: 25px;
}

.social-accueil section {
  width: 100%;
  padding-top: 50px;
  margin-bottom: 40px;
}
.social-accueil section h2 {
  margin-top: 0px;
}
.social-accueil section p {
  font-size: 1.1em;
}
.social-accueil a {
  text-decoration: none;
  font-weight: bold;
  color: #444;
}
.social-accueil .lien-twitter {
  color: rgb(29, 155, 240);
}
.social-accueil .lien-facebook {
  color: #1B74E4;
}
.social-accueil .lien-youtube {
  color: #c00;
}

iframe#twitter-widget-0 .timeline-Header {
  display: none !important;
}

.woocommerce ul.products li.product .price {
  color: inherit;
}

.page-sections > div {
  margin-bottom: 30px;
  padding-top: 20px;
}
.page-sections > div.bordure {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.page-sections > div > *:first-child {
  margin-top: 0;
}
.page-sections > div h4 {
  margin: 0;
}

.archive-header h1 + p {
  margin-top: -30px;
  margin-bottom: 40px;
}

div#moteur input[type=text] {
  width: 100%;
  max-width: none;
  padding: 15px;
  height: 60px;
  font-size: 1em;
  border-radius: 6px;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: #f6f6f6;
}
div#moteur .input-container {
  position: relative;
  max-width: 1000px;
  display: inline-block;
  width: 100%;
  margin: 50px auto;
}
div#moteur .spinner, div#moteur .loupe {
  position: absolute;
  top: 19px;
  right: 22px;
  font-size: 1.5em;
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1001;
}
div#moteur .loupe {
  background-image: url("../images/pictos/loupe.png");
  opacity: 0.5;
  transition: opacity 0.2s;
}
div#moteur .loupe:hover {
  opacity: 1;
  cursor: pointer;
}
div#moteur .spinner {
  background-image: url("../images/pictos/spinner.png");
  display: none;
}
div#moteur.loading {
  opacity: 0.6;
}
div#moteur.loading .spinner {
  display: block;
  opacity: 0.25;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
div#moteur.loading .loupe {
  display: none;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.autocomplete-suggestions {
  background: rgb(255, 255, 255);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  padding-top: 14px;
  transition: all 0.4s;
}
.autocomplete-suggestions .autocomplete-suggestion {
  padding: 10px 20px 6px;
  font-size: 1.2em;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.autocomplete-suggestions .autocomplete-suggestion:hover {
  cursor: pointer;
  opacity: 1;
}
.autocomplete-suggestions .autocomplete-suggestion:last-of-type {
  padding-bottom: 10px;
}
.autocomplete-suggestions .autocomplete-suggestion a {
  text-decoration: none;
}
.autocomplete-suggestions .autocomplete-suggestion a.titre:hover {
  font-weight: bold;
}
.autocomplete-suggestions .autocomplete-suggestion a.titre:hover + .labels a.label:first-of-type {
  background: #444;
  color: #fff;
}
.autocomplete-suggestions .autocomplete-suggestion a.titre:hover + .labels a.label:first-of-type.cinema {
  background: #303f9f;
}
.autocomplete-suggestions .autocomplete-suggestion a.titre:hover + .labels a.label:first-of-type.vod {
  background: #c33d32;
}
.autocomplete-suggestions .autocomplete-suggestion a.titre:hover + .labels a.label:first-of-type.cinema {
  background: #303f9f;
}
.autocomplete-suggestions .autocomplete-suggestion a.titre:hover + .labels a.label:first-of-type.affiches, .autocomplete-suggestions .autocomplete-suggestion a.titre:hover + .labels a.label:first-of-type.dvd {
  background: #17b5a7;
}
.autocomplete-suggestions .autocomplete-suggestion .label {
  display: inline-block;
  margin-left: 12px;
  padding: 0px 6px;
  border: 1px solid #444;
  color: #444;
  border-radius: 4px;
}
.autocomplete-suggestions .autocomplete-suggestion .label:hover {
  background: #444;
  color: #fff;
}
.autocomplete-suggestions .autocomplete-suggestion .label.cinema {
  border-color: #303f9f;
  color: #303f9f;
}
.autocomplete-suggestions .autocomplete-suggestion .label.cinema:hover {
  background: #303f9f;
  color: #fff;
}
.autocomplete-suggestions .autocomplete-suggestion .label.vod {
  border-color: #c33d32;
  color: #c33d32;
}
.autocomplete-suggestions .autocomplete-suggestion .label.vod:hover {
  background: #c33d32;
  color: #fff;
}
.autocomplete-suggestions .autocomplete-suggestion .label.affiches, .autocomplete-suggestions .autocomplete-suggestion .label.dvd {
  border-color: #17b5a7;
  color: #17b5a7;
}
.autocomplete-suggestions .autocomplete-suggestion .label.affiches:hover, .autocomplete-suggestions .autocomplete-suggestion .label.dvd:hover {
  background: #17b5a7;
  color: #fff;
}

.actus {
  padding-bottom: 40px;
}
.actus ul {
  margin: 0;
}
.actus ul li {
  display: block;
}
.actus ul li img {
  width: auto;
}
.actus .slick-dots {
  text-align: center;
}
.actus .slick-dots li {
  display: inline-block;
  margin: 6px 4px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #000;
  opacity: 0.3;
  cursor: pointer;
}
.actus .slick-dots li:hover, .actus .slick-dots li.slick-active, .actus .slick-dots li:focus, .actus .slick-dots li:active {
  opacity: 0.5;
}
.actus .slick-dots li button {
  display: none;
}

div.apropos {
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.lecteur-vod .iframe-vimeo-container {
  height: 300px;
}

.password-protection {
  display: none;
}
.password-protection form {
  padding: 5px 0 10px;
  position: relative;
}
.password-protection form input[type=text] {
  display: inline-block;
  width: calc(100% - 100px);
  background: #fff;
  font-size: 0.9em;
  height: 32px;
  margin: 0 10px 0 0;
}
.password-protection form input[type=submit] {
  background-color: #303f9f;
  border: 1px solid #303f9f;
  padding: 6px 13px;
  position: relative;
  top: 1px;
}
.password-protection form input[type=submit]:hover {
  background-color: rgb(30.2608695652, 39.7173913043, 100.2391304348);
  border-color: rgb(30.2608695652, 39.7173913043, 100.2391304348);
}
.password-protection form.processing {
  opacity: 0.5;
}
.password-protection form.processing input[type=submit] {
  background-color: #444 !important;
  border: 1px solid #444 !important;
}
.password-protection form.processing input[type=submit]:hover {
  cursor: default;
}
.password-protection form.processing::after {
  position: absolute;
  right: 0;
  top: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/pictos/spinner.png");
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  background-size: contain;
}
.password-protection .message {
  display: none;
  margin: 0 0 7px;
  font-size: 0.8em;
}
.password-protection .message.success {
  color: #0a9346;
}

.couverture-header {
  height: 60vh;
  background-color: #444;
  padding: 0 !important;
}
.couverture-header.archive-header, .couverture-header.page-header, .couverture-header.film-header {
  height: 40vh;
}
.couverture-header .image-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.couverture-header .image-container::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: #000;
  opacity: 0.15;
  top: 0;
  left: 0;
  z-index: 2;
}
.couverture-header .image-container a {
  width: 100%;
  height: 80%;
  top: 20%;
  display: block;
  position: absolute;
  z-index: 3;
}
.couverture-header .image-container a span {
  display: none;
}
.couverture-header .image-container a::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-image: url("../images/play.png");
  background-position: center center;
  background-size: contain;
  margin-left: -40px;
  margin-top: -40px;
  opacity: 0.8;
  transition: all 0.6s;
}
.couverture-header .image-container a:hover::before {
  width: 86px;
  height: 86px;
  margin-left: -43px;
  margin-top: -43px;
  transform: rotate(-360deg);
  opacity: 1;
}

.fiche-film .hentry {
  padding-top: 0;
}
.fiche-film .main-content {
  padding-bottom: 40px;
}
.fiche-film .main-content .wrap {
  display: flex;
  flex-wrap: wrap;
}
.fiche-film .main-content .wrap.no-aside > div {
  max-width: 1100px;
}
.fiche-film .main-content .wrap > div {
  order: 1;
}
.fiche-film .main-content .wrap > aside {
  padding: 30px 0;
  order: 2;
  position: relative;
  z-index: 4;
}
.fiche-film .main-content header {
  padding: 0;
  margin: 50px 0 18px;
}
.fiche-film .main-content header h1 {
  margin: 0;
}
.fiche-film .main-content .accroche {
  font-weight: bold;
}
.fiche-film .main-content .liens {
  padding: 10px 0;
}
.fiche-film .main-content .liens ul li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}
.fiche-film .main-content .telechargements.bottom {
  padding: 10px 0 0 0;
}
.fiche-film .telechargements {
  padding: 50px 0 0 10px;
}
.fiche-film .telechargements section {
  padding: 20px 0;
}
.fiche-film .telechargements section:last-child {
  padding-bottom: 5px;
}
.fiche-film .telechargements h2 {
  margin: 0 0 30px;
  line-height: 1;
  font-size: 1.8em;
  margin-right: 40px;
  position: relative;
  top: 2px;
}
.fiche-film .telechargements .bouton {
  margin: 0 30px 20px 0;
  text-transform: none;
  display: inline-block !important;
}
.fiche-film .galerie-film {
  padding: 30px 0;
}

.textes-supplementaires {
  margin-top: 40px;
}
.textes-supplementaires .texte-supplementaire {
  border-top: 2px solid #eee;
}
.textes-supplementaires .texte-supplementaire:first-child:not(.has-titre) {
  border-top: none;
}
.textes-supplementaires .texte-supplementaire:first-child:not(.has-titre) div {
  padding: 0 0 0.25em;
}
.textes-supplementaires .texte-supplementaire:not(.has-titre):not(:first-child) div {
  padding: 1.25em 0 0.25em;
}
.textes-supplementaires .texte-supplementaire header {
  padding: 1.25em 40px 1.5em 0;
  margin: 0;
  position: relative;
}
.textes-supplementaires .texte-supplementaire header h3 {
  margin: 0;
}
.textes-supplementaires .texte-supplementaire header::after {
  content: "";
  position: absolute;
  top: 1.6em;
  right: 0;
  height: 24px;
  width: 24px;
  opacity: 0.75;
  background-image: url("../images/plus.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.25s;
}
.textes-supplementaires .texte-supplementaire header:hover::after {
  opacity: 1;
}
.textes-supplementaires .texte-supplementaire.inactive header::after {
  transform: rotate(-90deg);
}
.textes-supplementaires .texte-supplementaire div {
  padding-bottom: 15px;
}
.textes-supplementaires .texte-supplementaire div > :first-child {
  margin-top: -5px;
}
.textes-supplementaires .texte-supplementaire .toggle-texte {
  text-decoration: none;
}
.textes-supplementaires .texte-supplementaire.hidden div {
  display: none;
}

.texte-supplementaire .details-programme h2 {
  text-align: center;
  text-transform: uppercase;
}
.texte-supplementaire .details-programme article {
  height: auto !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
.texte-supplementaire .details-programme article header {
  padding: 0;
}
.texte-supplementaire .details-programme article header p {
  margin: 0;
}
.texte-supplementaire .details-programme article header h3 {
  margin: 5px 0 0;
  font-size: 1.8em;
  padding-top: 9px;
  text-transform: uppercase;
}
.texte-supplementaire .details-programme article ul.film-details {
  margin: 0;
  font-weight: bold;
}
.texte-supplementaire .details-programme article ul.film-details li {
  display: inline-block;
  margin: 0 10px 0 0;
}
.texte-supplementaire .details-programme article .film-synopsis p {
  margin: 4px 0 8px 0;
}
.texte-supplementaire .details-programme article .diaporama {
  position: relative;
}
.texte-supplementaire .details-programme article .diaporama .slick-slide {
  height: auto !important;
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow {
  position: absolute;
  top: 50%;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  background-color: transparent;
  background-image: url("../images/fleche-diapo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 99;
  border: none;
  opacity: 0.5;
  transition: all 0.2s;
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow span {
  display: none;
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow:hover {
  opacity: 1 !important;
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow.slick-next {
  right: 10px;
  transform: rotate(-90deg);
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow.slick-next:hover {
  right: 7px;
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow.slick-prev {
  left: 10px;
  transform: rotate(90deg);
}
.texte-supplementaire .details-programme article .diaporama .slick-arrow.slick-prev:hover {
  left: 7px;
}
.texte-supplementaire .details-programme article .diaporama li .img-container {
  height: 50vw;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.texte-supplementaire .details-programme article .diaporama li .img-container span {
  display: none;
}
.texte-supplementaire .details-programme article .diaporama li .img-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.details-programme {
  width: 100%;
}
.details-programme .articles {
  display: grid;
  grid-template-columns: 100%;
}
.details-programme .articles article {
  margin-bottom: 50px;
}

.custom-fancy-video {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
}

#ari-mainvideo {
  background: transparent;
  border-radius: 8px;
  padding: 40px;
}
#ari-mainvideo video {
  max-width: 100%;
}

.archive #main .wrap header {
  padding-top: 40px;
}

.lien-vod,
.ligne-boutique .single_add_to_cart_button {
  text-decoration: none;
  opacity: 0.8;
  position: relative;
  display: inline-block;
  width: auto;
}
.lien-vod::after,
.ligne-boutique .single_add_to_cart_button::after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 12px;
  opacity: 0.5;
  background-image: url("../images/petite-fleche.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  margin-left: 10px;
  position: absolute;
  right: -35px;
  bottom: 5px;
  transition: all 0.2s;
}
.lien-vod:hover,
.ligne-boutique .single_add_to_cart_button:hover {
  opacity: 1;
  color: inherit;
}
.lien-vod:hover::after,
.ligne-boutique .single_add_to_cart_button:hover::after {
  right: -39px;
}

.woocommerce div.product div.summary .donnees-techniques {
  font-weight: bold;
}
.woocommerce div.product div.summary .donnees-techniques li {
  display: inline-block;
}
.woocommerce div.product div.summary .donnees-techniques li:not(:last-child) {
  margin-right: 20px;
}
.woocommerce div.product div.summary .message-prix-produits {
  color: #17b5a7;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: -20px;
  margin-bottom: 20px;
}
.woocommerce div.product div.summary .message-prix-produits a {
  color: #17b5a7;
}
.woocommerce div.product div.summary .message-prix-produits a:hover {
  color: #444;
}
.woocommerce div.product div.summary .accroche {
  font-weight: bold;
}
.woocommerce div.product div.summary .accroche + .donnees-techniques {
  font-weight: normal;
}
.woocommerce div.product div.summary .bonus {
  margin-bottom: 30px;
}
.woocommerce div.product div.summary .bonus h3 {
  margin: 0 20px 0 0;
  display: inline-block;
}
.woocommerce div.product div.summary .bonus ul {
  margin-top: 0;
  display: inline;
}
.woocommerce div.product div.summary .bonus li {
  display: inline-block;
}
.woocommerce div.product div.summary .bonus li:not(:last-child) {
  padding-right: 20px;
}
.woocommerce div.product div.summary .apartirde {
  font-weight: bold;
  color: #17b5a7;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:not(:first-of-type) {
  display: none;
}
.woocommerce div.product p.price {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #212121;
  display: inline-block;
  padding: 1px 20px;
  border-radius: 7px;
}
.woocommerce div.product .product_meta {
  display: none !important;
}
.woocommerce div.product .woocommerce-tabs {
  display: none !important;
}
.woocommerce div.product .details-programme {
  border-top: 1px solid #ccc;
  padding: 40px 0 60px;
}
.woocommerce div.product form.cart {
  padding-top: 40px;
}
.woocommerce div.product .galerie-film {
  padding-bottom: 60px;
}
.woocommerce div.product .nb-films-1 + .galerie-film {
  margin-top: -60px;
}

.single-product .single_add_to_cart_button {
  padding: 0.75em 1.5em !important;
}

.single-product .products.related {
  clear: both;
  border-top: 1px solid #ccc;
  padding-top: 40px;
}
.single-product .products.related h2 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.woocommerce-notices-wrapper {
  margin-top: 30px;
}

.details-dvds .dvd > section > div > header {
  padding: 30px 0 10px;
}
.details-dvds .dvd > section > div > header h2 {
  text-align: left;
}
.details-dvds .dvd > section > div > header .img-container {
  display: none;
}
.details-dvds .dvd .bonus > * {
  margin: 0;
}
.details-dvds .dvd .donnees-techniques li {
  display: inline-block;
}
.details-dvds .dvd .donnees-techniques li:not(:last-child) {
  margin-right: 10px;
}
.details-dvds .dvd .details-programme {
  padding: 0 0 50px !important;
}
.details-dvds .dvd:not(:first-of-type) > section > div > header {
  border-top: 1px solid #ccc;
}
.details-dvds .dvd:not(:first-of-type) h2 {
  margin-top: 10px;
}

.woocommerce ul.products li.product {
  text-align: center;
}
.woocommerce ul.products li.product a {
  color: inherit;
}
.woocommerce ul.products li.product h2 {
  text-transform: uppercase;
}

.wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.page-template .couverture-header + .wrap,
.page-template .couverture-header + .content-area,
.page-template .couverture-header + .nowrap,
.page-template-default .couverture-header + .wrap,
.page-template-default .couverture-header + .content-area,
.page-template-default .couverture-header + .nowrap,
.archive .couverture-header + .wrap,
.archive .couverture-header + .content-area,
.archive .couverture-header + .nowrap {
  padding-top: 40px;
}

.wp-block-woocommerce-empty-cart-block h2:not(:first-of-type),
.wp-block-woocommerce-empty-cart-block .wc-block-product-new {
  display: none;
}

.wc-block-components-product-name {
  text-decoration: none;
  color: inherit;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.wc-block-components-form input {
  height: auto !important;
  max-width: none !important;
}

.entry-content ul {
  list-style: disc;
  padding-left: 30px;
}
.entry-content ul li {
  margin: 8px 0;
}

.equipe {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  margin-bottom: 50px;
  padding-top: 20px;
}
.equipe ul {
  display: flex;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.equipe ul li {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
.equipe ul li > * {
  margin: 5px 0;
}
.equipe ul li .img-container {
  margin: 0 auto;
  width: 70vw;
  height: 70vw;
  max-width: 170px;
  max-height: 170px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.equipe ul li h3 {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 10px;
}
.equipe ul li p.supp {
  font-size: 0.85em;
}

#ari-inscription-newsletter {
  width: 90vw;
}
#mc_embed_signup_scroll {
  margin: 30px 0;
}
#mc_embed_signup_scroll h2,
#mc_embed_signup_scroll .content__gdprLegal,
#mc_embed_signup_scroll .indicates-required {
  display: none;
}
#mc_embed_signup_scroll fieldset {
  border: none;
  padding: 10px 0;
}
#mc_embed_signup_scroll .content__gdpr {
  margin: 20px 0;
}

.filtrable {
  overflow-y: hidden;
  min-height: 800px;
  position: relative;
}
.filtrable .no-results {
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  text-align: center;
  z-index: -1;
}
.filtrable .no-results img {
  width: auto !important;
}
.filtrable .no-results p {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.7;
}
.filtrable .no-results p img {
  height: 30px;
  opacity: 0.9;
  margin-bottom: -5px;
  margin-right: 20px;
}
.filtrable.mixitup-container-failed .no-results {
  opacity: 1;
}

.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
  float: none;
}

.woocommerce-products-header .term-description {
  display: none;
}

.woocommerce-product-details__short-description .liens + .synopsis {
  margin-top: 40px;
}

.nav-product-cat {
  display: flex;
  gap: 10px 30px;
}
.nav-product-cat .side-button {
  padding: 4px 80px 6px 30px;
  font-size: 1em;
  border-radius: 100px;
}
.nav-product-cat .side-button::after {
  height: 12px;
  top: 16px;
}

.header-product-cat {
  display: flex;
  gap: 10px 20px;
  font-size: 0.9em;
}
.header-product-cat a {
  background: #f6f6f6;
  padding: 3px 15px;
  text-decoration: none;
  border-radius: 5px;
}
.header-product-cat a:hover {
  background: #ddd;
}

.woocommerce-ordering select {
  border-radius: 100px;
  height: 47px;
  padding: 0 50px 0 30px;
  background-position: 95% center;
  background-color: #eee;
}

.filters.products {
  border: none;
  padding: 4px 0 0;
  margin-bottom: 20px;
  display: inline-block;
}
.filters.products button {
  top: 0 !important;
  color: #fff !important;
  margin-bottom: 5px;
  margin-right: 20px;
}
.filters.products h4 {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: normal;
}

.filters {
  display: none;
  padding: 20px 30px 20px;
  border: 4px solid #ffff00;
  background: rgb(255, 255, 224.4);
  border-radius: 10px;
  margin-top: 0px;
  margin-bottom: 70px;
  position: relative;
}
.filters input[type=text], .filters input[type=password], .filters input[type=datetime], .filters input[type=datetime-local], .filters input[type=date], .filters input[type=month], .filters input[type=time], .filters input[type=week], .filters input[type=number], .filters input[type=email], .filters input[type=url], .filters input[type=search], .filters input[type=tel], .filters input[type=color], .filters select, .filters textarea, .filters .field {
  background-color: #fff;
}
.filters input[type=text]:focus, .filters input[type=text]:active, .filters input[type=password]:focus, .filters input[type=password]:active, .filters input[type=datetime]:focus, .filters input[type=datetime]:active, .filters input[type=datetime-local]:focus, .filters input[type=datetime-local]:active, .filters input[type=date]:focus, .filters input[type=date]:active, .filters input[type=month]:focus, .filters input[type=month]:active, .filters input[type=time]:focus, .filters input[type=time]:active, .filters input[type=week]:focus, .filters input[type=week]:active, .filters input[type=number]:focus, .filters input[type=number]:active, .filters input[type=email]:focus, .filters input[type=email]:active, .filters input[type=url]:focus, .filters input[type=url]:active, .filters input[type=search]:focus, .filters input[type=search]:active, .filters input[type=tel]:focus, .filters input[type=tel]:active, .filters input[type=color]:focus, .filters input[type=color]:active, .filters select:focus, .filters select:active, .filters textarea:focus, .filters textarea:active, .filters .field:focus, .filters .field:active {
  background-color: #fff;
}
.filters .avance,
.filters .toggle-avance .hide {
  display: none;
}
.filters.avances-visibles .toggle-avance .show {
  display: none;
}
.filters.avances-visibles .toggle-avance .hide {
  display: inline;
}
.filters .toggle-avance {
  text-align: right;
  padding: 0;
  margin: 0;
}
.filters .toggle-avance a {
  color: #888;
}
.filters h3 {
  font-size: 1.6em;
  display: inline-block;
  text-transform: uppercase;
  margin-top: 0;
  padding: 0 20px 0 10px;
  margin-left: -10px;
}
.filters h4 {
  font-size: 1.2em;
  margin: 0 30px 0 0;
  margin-right: 30px;
}
.filters h4, .filters fieldset {
  display: inline-block;
}
.filters > div {
  overflow: hidden;
}
.filters fieldset {
  padding: 0 0 20px;
  border: none;
}
.filters fieldset input, .filters fieldset select {
  margin-bottom: 5px;
}
.filters fieldset button {
  position: relative;
  top: -3px;
  opacity: 0.7;
  margin: 10px 0 5px;
}
.filters fieldset button:not(:last-of-type) {
  margin-right: 20px;
}
.filters fieldset button.mixitup-control-active {
  padding-right: 50px !important;
  opacity: 1;
}
.filters fieldset button.mixitup-control-active::after {
  position: absolute;
  content: "X";
  font-weight: bold;
  right: 14px;
  top: 9px;
}
.filters fieldset button {
  background: #888;
}
.filters fieldset[data-filter-group=age] button:nth-of-type(1),
.filters fieldset[data-filter-group=age] a:nth-of-type(1) button {
  background: #007DAA;
}
.filters fieldset[data-filter-group=age] button:nth-of-type(2),
.filters fieldset[data-filter-group=age] a:nth-of-type(2) button {
  background: #EE226C;
}
.filters fieldset[data-filter-group=age] button:nth-of-type(3),
.filters fieldset[data-filter-group=age] a:nth-of-type(3) button {
  background: #ADCD26;
}
.filters fieldset[data-filter-group=age] button:nth-of-type(4),
.filters fieldset[data-filter-group=age] a:nth-of-type(4) button {
  background: #831519;
}

.logo-accessibilite {
  max-height: 30px;
  width: auto;
  border-radius: 7px;
  margin-bottom: -8px;
}
.logo-accessibilite:not(:first-child) {
  margin-left: 20px;
}

.tippy-box[data-theme~=light] {
  text-align: center;
}

.home-rs h2 {
  font-size: 2em;
  padding-top: 10px;
  opacity: 0.6;
}
.home-rs ul {
  list-style: none;
}
.home-rs ul li {
  margin: 20px 50px 20px 0;
  display: inline-block;
}
.home-rs ul li img {
  max-height: 35px;
  width: auto;
  transition: all 0.2s;
}
.home-rs ul li a img:hover {
  transform: scale(1.05);
}

.social-accueil h3 {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
}

.home-rs iframe {
  margin-left: -25px;
}

#sb_instagram .sb_instagram_header p, .sb_instagram_header p {
  font-weight: normal;
}

.message-boutique {
  margin: 0 0 30px;
  padding: 0 20px;
  border: 2px solid #bbb;
  color: #888;
  border-radius: 8px;
}
.message-boutique a {
  color: inherit;
}
.message-boutique a:hover {
  color: #222;
}

.products.upsells h2 {
  text-transform: uppercase;
  padding: 30px 0;
  text-align: center;
}

body.post-type-archive-production .filters {
  background-color: #ffffcc;
}

.grille-images {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.grille-images li {
  width: 100%;
}
.grille-images li div > a {
  border-radius: 3px;
  height: 60vw;
  display: block;
  background-size: cover;
  background-position: center center;
}
.grille-images li h3 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.grille-images li p {
  margin: 0;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
  #diaporama .slick-arrow {
    display: block !important;
    position: absolute;
    top: 44%;
    height: 50px;
    width: 50px;
    background-color: transparent;
    background-image: url("../images/fleche-diapo.png");
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: center top 60%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    z-index: 99;
    border: none;
    opacity: 0.5;
    transition: all 0.2s;
  }
  #diaporama .slick-arrow span {
    display: none;
  }
  #diaporama .slick-arrow:hover {
    opacity: 1 !important;
  }
  #diaporama .slick-arrow.slick-next {
    right: 10px;
    transform: rotate(-90deg);
  }
  #diaporama .slick-arrow.slick-next:hover {
    right: 7px;
  }
  #diaporama .slick-arrow.slick-prev {
    left: 10px;
    transform: rotate(90deg);
  }
  #diaporama .slick-arrow.slick-prev:hover {
    left: 7px;
  }
  #diaporama li header {
    height: 60vh;
    width: 100%;
  }
  #diaporama li .boutons .bouton {
    font-size: 0.9em;
  }
  #diaporama li h1 {
    margin: 0 0 6px 0;
  }
  #diaporama li h1.titre-1 {
    font-size: 3.6em;
  }
  #diaporama li h1.titre-2 {
    font-size: 3em;
  }
  #diaporama li h1.titre-3 {
    font-size: 2.5em;
  }
  #diaporama li h1.titre-4 {
    font-size: 2.2em;
  }
  #diaporama li h3 {
    font-size: 1.2em;
  }
  .ligne-accueil {
    padding: 25px 0;
  }
  .ligne-accueil ul.images-accueil {
    display: flex;
    flex-wrap: wrap;
    gap: 6%;
  }
  .ligne-accueil ul.images-accueil li {
    width: 47%;
  }
  .ligne-accueil ul.images-accueil li > a {
    height: 30vw;
  }
  .ligne-accueil ul.affiches-accueil {
    display: flex;
    flex-wrap: wrap;
    gap: 6%;
  }
  .ligne-accueil ul.affiches-accueil li {
    width: 47%;
  }
  .affiche {
    position: relative;
  }
  .affiche .surimpression {
    padding: 8px;
    background: rgba(255, 255, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;
    opacity: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s all;
  }
  .affiche .surimpression > a {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .affiche .surimpression a {
    text-decoration: none;
  }
  .affiche:hover .surimpression {
    opacity: 1;
  }
  .affiche h3 {
    text-transform: uppercase;
    margin: 10px 0 0;
    font-size: 1.2em;
  }
  .equipe ul {
    justify-content: center;
  }
  .equipe ul li {
    width: 50%;
    padding: 10px 30px;
  }
  .grille-images {
    justify-content: flex-start;
    gap: 40px 6%;
  }
  .grille-images > li, .grille-images > div {
    width: 47%;
  }
  .grille-images li div > a {
    height: 30vw;
  }
  .grille-images li h3 {
    font-size: 1em;
  }
  .grille-images li p {
    font-size: 0.9em;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap,
  .content-area,
  .nav-wrapper {
    width: 760px;
  }
  h1, .h1 {
    font-size: 2.75em;
  }
  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .social ul li img {
    width: 42px;
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
  /* end .footer-links */
  .footer .alignright {
    float: right;
    margin: 10px 0 0 60px;
    max-height: 35px;
    width: auto;
  }
  #diaporama .slick-dots {
    bottom: 30px;
  }
  #diaporama li header {
    height: 65vh;
    width: 100%;
    min-height: 440px;
  }
  #diaporama li h1 {
    margin: 0;
  }
  #diaporama li h1.titre-1 {
    font-size: 4.5em;
  }
  #diaporama li h1.titre-2 {
    font-size: 4em;
  }
  #diaporama li h1.titre-3 {
    font-size: 3.2em;
  }
  #diaporama li h1.titre-4 {
    font-size: 3em;
  }
  #diaporama li h3 {
    font-size: 1.3em;
  }
  #diaporama li .bouton {
    font-size: 1em;
    padding: 9px 24px;
  }
  .with-side-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .with-side-button .side-button {
    margin-top: 9px;
  }
  .ligne-accueil {
    padding: 40px 0;
  }
  .ligne-accueil header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ligne-accueil header h2 {
    margin: 0;
  }
  .ligne-accueil header a {
    margin-top: 9px;
  }
  .ligne-accueil.survol ul li {
    opacity: 0.85;
  }
  .ligne-accueil.survol ul li:hover {
    opacity: 1;
  }
  .ligne-accueil ul.images-accueil li {
    margin: 50px 0 20px;
    padding-bottom: 0;
    transition: 0.3s all;
  }
  .ligne-accueil ul.images-accueil li > a {
    height: 230px;
  }
  .ligne-accueil ul.images-accueil li h3 {
    padding-top: 12px;
    transition: 0.3s all;
  }
  .ligne-accueil ul.images-accueil li:hover {
    padding-bottom: 5px;
  }
  .ligne-accueil ul.images-accueil li:hover h3 {
    padding-top: 7px;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil {
    justify-content: center;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil li {
    width: 29%;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil li > a {
    height: 30vw;
  }
  .grille-affiches {
    gap: 4%;
  }
  .grille-affiches > li, .grille-affiches > div {
    width: 22%;
  }
  .woocommerce .infos-films .video-container {
    max-width: 700px;
    max-height: 400px;
  }
  .social-accueil .inner {
    position: relative;
  }
  .social-accueil .inner section {
    display: inline-block;
    vertical-align: top;
  }
  .social-accueil section:nth-of-type(1) {
    width: 49%;
    padding-right: 150px;
  }
  .social-accueil section:nth-of-type(2) {
    width: 50%;
  }
  .social-accueil section:nth-of-type(2) h3 {
    margin-top: 40px;
  }
  .social-accueil section:nth-of-type(2) h3:first-of-type {
    margin-top: 77px;
  }
  .page-sections > div.cols > div {
    vertical-align: top;
  }
  .page-sections > div.cols-2 > div {
    display: inline-block;
    width: 50%;
    padding-right: 30px;
  }
  .autocomplete-suggestions .autocomplete-suggestion {
    padding: 10px 20px 6px 20px;
    font-size: 1em;
  }
  .autocomplete-suggestions .autocomplete-suggestion .labels {
    float: right;
    text-align: right;
  }
  .lecteur-vod .iframe-vimeo-container {
    height: 450px;
  }
  .couverture-header {
    height: 70vh;
  }
  .couverture-header.archive-header, .couverture-header.page-header, .couverture-header.produit-header, .couverture-header.film-header {
    height: 50vh;
  }
  .couverture-header .image-container a::before {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
  }
  .couverture-header .image-container a:hover::before {
    width: 106px;
    height: 106px;
    margin-left: -53px;
    margin-top: -53px;
  }
  .fiche-film .main-content .wrap {
    display: block;
  }
  .fiche-film .main-content .wrap aside + div {
    margin-left: calc(36% + 40px);
  }
  .fiche-film .main-content .wrap aside {
    float: left;
    position: relative;
    width: 36%;
    margin-top: -70px;
    margin-right: 40px;
    margin-bottom: 40px;
    padding: 0;
  }
  .fiche-film .main-content .wrap aside > a {
    transition: all 0.4s;
    display: block;
  }
  .fiche-film .main-content .wrap aside > a:hover {
    transform: scale(1.05);
  }
  .details-programme {
    width: 100%;
  }
  .details-programme article {
    display: inline-block;
    vertical-align: top;
  }
  .details-programme.nb-films-2 .articles, .details-programme.slide-films .articles {
    grid-template-columns: 47% 47%;
    gap: 6%;
  }
  .details-programme.nb-films-2 article, .details-programme.slide-films article {
    margin-bottom: 0px;
  }
  .details-programme.nb-films-2 article header .diaporama li .img-container, .details-programme.slide-films article header .diaporama li .img-container {
    height: 270px;
  }
  .details-programme.nb-films-3 .articles {
    grid-template-columns: 45% 45%;
    gap: 5%;
  }
  .details-programme.nb-films-3 article header .diaporama li .img-container {
    height: 190px;
  }
  .woocommerce div.product div.images {
    float: right;
    padding: 60px;
    background: #fff;
  }
  .woocommerce div.product .details-programme,
  .woocommerce div.product .galerie-film {
    border: none;
  }
  .woocommerce div.product .details-programme + .woocommerce-tabs + .related.products,
  .woocommerce div.product .details-dvds + .woocommerce-tabs + .related.products,
  .woocommerce div.product .galerie-film + .woocommerce-tabs + .related.products {
    border: none;
  }
  .equipe ul li {
    width: 33%;
  }
  #ari-inscription-newsletter {
    width: 500px;
  }
  .details-dvds .dvd:first-of-type > section > div > header .img-container {
    margin-top: 25px;
  }
  .details-dvds .dvd > section > div > header .img-container {
    display: block;
    float: right;
    width: 20vw;
    height: 20vw;
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    margin: 0 0 30px 40px;
    overflow: hidden;
  }
  .details-dvds .dvd > section > div > header .img-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.2s;
  }
  .details-dvds .dvd > section > div > header .img-container a:hover img {
    transform: scale(1.05);
  }
  .grille-images {
    justify-content: flex-start;
    gap: 40px 6%;
  }
  .grille-images > li, .grille-images > div {
    width: 47%;
  }
  .grille-images li div > a {
    height: 260px;
  }
  .grille-images li h3 {
    font-size: 1em;
  }
  .grille-images li p {
    font-size: 0.9em;
  }
  ul.products.columns-4 .product .attachment-woocommerce_thumbnail {
    max-height: 180px;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  ******************************************************************/
  .wrap,
  .content-area {
    width: 960px;
  }
  .bouton-menu {
    display: none;
  }
  /*


  ********************
  HEADER STYLES
    *********************/
  .no-cover .header .pictos-header ul {
    padding-top: 5px;
  }
  .no-cover .header .pictos-header li {
    margin-left: 10px;
  }
  .header #inner-header {
    padding: 0 0 0 1.5em;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .header #inner-header .logo {
    padding-top: 3px;
    padding-right: 10px;
  }
  .header #inner-header > * {
    width: auto;
  }
  .header #inner-header #logo {
    margin-top: 4px;
    max-width: none;
    max-height: 115px;
  }
  .header #inner-header nav {
    display: block !important;
    height: auto;
    width: 100%;
    position: static;
    overflow: visible;
    background: transparent;
  }
  .header #inner-header nav .nav-wrapper {
    padding: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
  }
  .header #inner-header nav .nav-wrapper .pictos-header {
    order: 3;
    padding: 14px 20px 16px;
    display: none !important;
  }
  .header #inner-header nav .nav-wrapper ul.top-nav {
    width: auto;
    flex-grow: 2;
  }
  .menu-button-container {
    display: none !important;
  }
  .pictos-header {
    border: 0;
    margin: 0;
    padding: 0 8px 0 0;
    width: auto !important;
  }
  .pictos-header h2 {
    display: none;
  }
  .pictos-header ul {
    text-align: right;
    margin: 0;
    border: none;
  }
  .pictos-header li {
    margin: 0 6px 0 0;
  }
  .pictos-header a {
    background: transparent;
    padding: 0 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .pictos-header a:hover {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .pictos-header a img {
    position: static;
  }
  .pictos-header span {
    display: none;
  }
  .header.scrolled-header {
    background: #fff;
    border-bottom: 3px solid #ffff00;
  }
  .header.scrolled-header #inner-header {
    padding: 0 0 0 1.5em;
  }
  .header.scrolled-header #inner-header .logo img {
    max-width: 130px;
    max-height: 40px;
  }
  .header.scrolled-header #inner-header nav .nav-wrapper {
    padding: 0;
  }
  .header.scrolled-header #inner-header .pictos-header {
    display: none !important;
  }
  .header.scrolled-header #inner-header .top-nav {
    font-size: 0.9em;
    padding-top: 0px;
    margin-top: -2px;
  }
  .header.scrolled-header #inner-header .nav li a {
    padding: 12px 30px;
  }
  .header.scrolled-header #inner-header .nav li a:hover {
    padding: 11px 30px 13px;
  }
  /*

  ********************
  NAVIGATION STYLES
    *********************/
  .nav {
    border: 0;
    padding-top: 0;
    text-align: right;
    display: flex;
    padding-left: 20px;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav > li {
    padding-bottom: 0;
    border-left: 1px solid #212121;
  }
  .nav > li:last-child {
    flex-grow: 10;
    justify-self: flex-end;
    text-align: right;
  }
  .nav > li:last-child a {
    border-left: 1px solid #212121;
    border-right: 1px solid #212121;
    margin-right: -1px;
  }
  .nav > li.menu-item-has-children {
    padding-right: 13px;
    position: relative;
  }
  .nav > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 3%;
    height: 94%;
    width: 8px;
    opacity: 0.7;
    background-image: url("../images/down-filled-triangular-arrow-black.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .nav li {
    display: inline-block;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav li a {
    border-bottom: 0;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: inline-block;
    letter-spacing: 0.05em;
    height: auto;
    font-size: 0.95em !important;
    padding: 18px 33px;
    color: #fff;
    position: relative;
    transition: all 0.1s;
  }
  .nav li a::after {
    content: "";
    width: 0px;
    height: 3px;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all 0.3s;
  }
  .nav li a:hover, .nav li a:focus, .nav li a:active {
    padding: 16px 33px 20px;
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    text-align: left;
    margin-top: 0;
    margin-left: -10px;
    padding: 0 10px 10px 20px;
    background: #fff;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding: 2px 0;
    border-right: 0;
    display: block;
    width: 180px;
    font-size: 0.9em;
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0px;
    left: calc(100% + 20px);
  }
  .nav li ul.sub-menu li ul li,
  .nav li ul.children li ul li {
    font-size: 0.9em;
  }
  .nav li ul.sub-menu li ul li:first-of-type,
  .nav li ul.children li ul li:first-of-type {
    padding-top: 4px;
  }
  .nav li ul.sub-menu li ul li a::before,
  .nav li ul.children li ul li a::before {
    content: "> ";
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
    opacity: 1;
    display: block !important;
  }
  /* end .nav */
  .init-menu-mobile .nav .sub-menu .menu-item-has-children > a {
    padding-right: 0px;
    display: block;
  }
  .init-menu-mobile .nav .sub-menu .menu-item-has-children > a::after {
    display: none;
  }
  #diaporama .slick-arrow {
    height: 66px;
    width: 66px;
  }
  #diaporama .slick-arrow.slick-next {
    right: 30px;
  }
  #diaporama .slick-arrow.slick-next:hover {
    right: 27px;
  }
  #diaporama .slick-arrow.slick-prev {
    left: 30px;
  }
  #diaporama .slick-arrow.slick-prev:hover {
    left: 27px;
  }
  #diaporama .slick-dots {
    bottom: 35px;
    gap: 10px;
  }
  #diaporama .slick-dots li.slick-active button {
    width: 19px;
    height: 19px;
  }
  #diaporama .slick-dots li button {
    width: 15px;
    height: 15px;
  }
  #diaporama li .wrap {
    position: static;
    padding: 0 40% 70px 80px;
  }
  #diaporama li .wrap > * {
    max-width: 500px;
  }
  #diaporama li header {
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
  }
  #diaporama li .infos {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
  }
  #diaporama li h1 {
    margin: 0 0 12px 0;
  }
  #diaporama li h1.titre-1 {
    font-size: 5em;
  }
  #diaporama li h1.titre-2 {
    font-size: 4.4em;
  }
  #diaporama li h1.titre-3 {
    font-size: 4em;
  }
  #diaporama li h1.titre-4 {
    font-size: 3.8em;
  }
  #diaporama li h3 {
    font-size: 1.4em;
    margin: 0;
  }
  #diaporama li .boutons {
    padding-left: 30px;
    text-align: right;
    min-width: 450px;
  }
  .ligne-accueil .inner {
    padding: 20px 0;
  }
  .ligne-accueil.ligne-2-2 section {
    width: 50%;
  }
  .ligne-accueil.ligne-2-2 section ul li {
    width: 50%;
  }
  .ligne-accueil ul.images-accueil {
    margin-top: 0;
    gap: 2%;
  }
  .ligne-accueil ul.images-accueil li {
    width: 23.5%;
  }
  .ligne-accueil ul.images-accueil li h3, .ligne-accueil ul.images-accueil li p {
    padding-right: 10px;
  }
  .ligne-accueil ul.images-accueil li > a {
    height: 160px;
  }
  .ligne-accueil ul.affiches-accueil {
    gap: 2%;
  }
  .ligne-accueil ul.affiches-accueil li {
    width: 18.33%;
  }
  .ligne-accueil ul.affiches-accueil li:nth-of-type(5) {
    display: block;
  }
  .ligne-accueil aside {
    padding-top: 30px;
    text-align: center;
  }
  .ligne-accueil.ligne-production ul.images-accueil h3 {
    margin-top: 20px;
  }
  .video-container {
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .page-sections > div.cols-3 > div {
    display: inline-block;
    width: 33%;
    padding-right: 30px;
  }
  .page-sections > div.cols-4 > div {
    display: inline-block;
    width: 25%;
    padding-right: 30px;
  }
  .lecteur-vod .iframe-vimeo-container {
    height: 600px;
  }
  .fiche-film .telechargements h2 {
    display: inline-block;
  }
  .fiche-film .telechargements .bouton:not(.blanc) {
    margin-left: 0;
  }
  .fiche-film .main-content .wrap aside {
    width: 38%;
    margin-top: -90px;
    margin-right: 70px;
    margin-bottom: 50px;
    padding: 0;
  }
  .fiche-film .main-content .wrap aside + div {
    margin-left: calc(38% + 70px);
  }
  .details-programme.nb-films-1 article .diaporama li .img-container {
    height: 400px;
  }
  .details-programme.nb-films-2 article header .diaporama li .img-container, .details-programme.slide-films article header .diaporama li .img-container {
    height: 280px;
  }
  .details-programme.nb-films-3 .articles {
    grid-template-columns: 32% 32% 32%;
    gap: 3%;
  }
  .details-programme.nb-films-3 article header .diaporama li .img-container {
    height: 210px;
  }
  .details-programme article .diaporama .slick-arrow {
    opacity: 0.1;
    height: 45px;
    width: 45px;
    margin-top: -22px;
  }
  .details-programme article .diaporama:hover .slick-arrow {
    opacity: 0.7;
  }
  .details-programme.slide-films .articles {
    display: block;
    position: relative;
    padding: 0 20px;
  }
  .details-programme.slide-films .articles article {
    padding: 0 30px;
  }
  .details-programme.slide-films .articles > .slick-arrow {
    position: absolute;
    top: 327px;
    height: 30px;
    width: 50px;
    background-color: transparent;
    background-image: url("../images/fleche.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    z-index: 99;
    border: none;
    opacity: 0.4;
    transition: all 0.2s;
  }
  .details-programme.slide-films .articles > .slick-arrow span {
    display: none;
  }
  .details-programme.slide-films .articles > .slick-arrow:hover {
    opacity: 0.8 !important;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-disabled {
    opacity: 0 !important;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-next {
    right: -20px;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-prev {
    left: -20px;
    transform: rotate(180deg);
  }
  .archive #main .wrap header {
    padding-bottom: 20px;
  }
  .grille-affiches li {
    margin-bottom: 20px;
  }
  .grille-affiches h2 {
    font-size: 1.1em;
  }
  .grille-affiches p {
    font-size: 0.9em;
  }
  .woocommerce div.product div.images {
    width: 30%;
  }
  .woocommerce div.product div.summary {
    width: 69%;
  }
  .single-product .summary .price {
    float: right;
    margin: 8px 0 10px 40px;
  }
  #ari-inscription-newsletter {
    width: 700px;
  }
  .footer nav ul li a {
    padding: 0.3em 0.75em;
  }
  .pictos-footer {
    display: block;
  }
  .pictos-footer ul {
    text-align: left;
    padding: 0 0 10px;
    margin-top: -10px;
  }
  .pictos-footer ul a[data-tippy-content=Newsletter] span {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    bottom: 4px;
    font-size: 0.9em;
    font-weight: 600;
    color: #fff;
  }
  .pictos-footer img.fond-blanc {
    display: none;
  }
  .details-dvds .dvd > section > div > header .img-container {
    width: 200px;
    height: 200px;
  }
  .filters h4 {
    min-width: 200px;
  }
  .filters input[type=text] {
    width: 600px;
    max-width: none;
    padding: 20px;
    height: 50px;
    border-radius: 10px;
  }
  .filters select {
    width: 400px;
    padding: 0 20px;
    border-radius: 10px;
    height: 50px;
    background-position: 95% center;
  }
  .filters:not(.products) fieldset[data-filter-group=age] button {
    padding: 14px 27px 14px 27px !important;
    font-size: 18px !important;
  }
  .filters:not(.products) fieldset[data-filter-group=age] button.mixitup-control-active {
    padding: 14px 47px 14px 27px !important;
  }
  .filters:not(.products) fieldset[data-filter-group=age] button.mixitup-control-active::after {
    top: 14px;
    right: 18px;
  }
  .filters:not(.products) fieldset[data-filter-group=format], .filters:not(.products) fieldset[data-filter-group=technique], .filters:not(.products) fieldset[data-filter-group=accessibilite] {
    padding-bottom: 5px;
  }
  .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
    float: right;
  }
  .grille-images {
    gap: 40px 3.5%;
  }
  .grille-images > li, .grille-images > div {
    width: 31%;
  }
  .grille-images li div > a {
    height: 200px;
  }
  ul.products.columns-4 .product .attachment-woocommerce_thumbnail {
    max-height: 220px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  .wrap,
  .content-area {
    width: 1140px;
  }
  .header:not(.scrolled-header) #inner-header nav .nav-wrapper .pictos-header {
    display: block !important;
  }
  #diaporama li header {
    min-height: 580px;
    width: 100%;
  }
  #diaporama li h1.titre-1 {
    font-size: 6em;
  }
  #diaporama li h1.titre-2 {
    font-size: 5.2em;
  }
  #diaporama li h1.titre-3 {
    font-size: 4.8em;
    margin-bottom: 10px;
  }
  #diaporama li h1.titre-4 {
    font-size: 4em;
    margin-bottom: 20px;
  }
  .lecteur-vod .iframe-vimeo-container {
    height: 700px;
  }
  .couverture-header {
    height: 80vh;
  }
  .couverture-header.archive-header, .couverture-header.page-header, .couverture-header.produit-header {
    height: 60vh;
  }
  .details-programme.nb-films-1 article .diaporama li .img-container {
    height: 500px;
  }
  .details-programme.nb-films-2 article header .diaporama li .img-container {
    height: 340px;
  }
  .details-programme.nb-films-3 article header .diaporama li .img-container, .details-programme.slide-films article header .diaporama li .img-container {
    height: 210px;
  }
  .details-programme.slide-films .articles {
    padding: 0 20px;
  }
  .details-programme.slide-films .articles > .slick-arrow {
    position: absolute;
    top: 257px;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-next {
    right: -30px;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-prev {
    left: -30px;
  }
  .details-programme.slide-films .articles article {
    padding: 0 22px;
  }
  .ligne-accueil {
    padding: 50px 0 30px;
  }
  .ligne-accueil ul.images-accueil li > a {
    height: 186px;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil {
    justify-content: center;
    gap: 2%;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil li {
    width: 18%;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil li p {
    font-size: 1em !important;
    margin: 0 !important;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil li > a {
    height: auto;
  }
  .ligne-accueil.ligne-boutique ul.images-accueil li img {
    padding: 0 20px 20px;
    width: 100%;
  }
  .woocommerce div.product div.images {
    width: 36%;
  }
  .woocommerce div.product div.summary {
    width: 64%;
  }
  .grille-images li div > a {
    height: 230px;
  }
  .fiche-film .main-content .wrap.no-aside {
    width: 1100px !important;
  }
  .fiche-film .main-content .wrap aside {
    width: 30%;
    margin-right: 90px;
  }
  .fiche-film .main-content .wrap aside + div {
    margin-left: calc(30% + 90px);
  }
  ul.products.columns-4 .product .attachment-woocommerce_thumbnail {
    max-height: 270px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1500px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
  .wrap,
  .content-area {
    width: 1350px;
  }
  .header #inner-header {
    padding-left: 3em;
    padding-right: 2em;
  }
  .nav li a {
    padding: 22px 33px;
  }
  .nav li a:hover {
    padding: 20px 33px 24px;
  }
  .header #inner-header nav .nav-wrapper .pictos-header {
    padding: 18px 20px 16px;
  }
  #diaporama li .wrap {
    margin-left: 80px;
  }
  #diaporama li header {
    min-height: 580px;
    width: 100%;
  }
  #diaporama li h1.titre-1 {
    font-size: 6em;
  }
  #diaporama li h1.titre-2 {
    font-size: 5.2em;
  }
  #diaporama li h1.titre-3 {
    font-size: 4.8em;
    margin-bottom: 10px;
  }
  #diaporama li h1.titre-4 {
    font-size: 4em;
    margin-bottom: 20px;
  }
  .details-programme.nb-films-1 article .diaporama li .img-container {
    height: 500px;
  }
  .details-programme.nb-films-2 article header .diaporama li .img-container {
    height: 390px;
  }
  .details-programme.nb-films-3 article header .diaporama li .img-container, .details-programme.slide-films article header .diaporama li .img-container {
    height: 250px;
  }
  .details-programme.slide-films .articles {
    padding: 0 30px;
  }
  .details-programme.slide-films .articles > .slick-arrow {
    position: absolute;
    top: 297px;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-next {
    right: -60px;
  }
  .details-programme.slide-films .articles > .slick-arrow.slick-prev {
    left: -60px;
  }
  .details-programme.slide-films .articles article {
    padding: 0 22px;
  }
  .ligne-accueil {
    padding: 50px 0 30px;
  }
  .ligne-accueil.ligne-production {
    padding: 90px 0 80px;
  }
  .ligne-accueil ul.images-accueil {
    margin-top: 20px;
    gap: 3%;
  }
  .ligne-accueil ul.images-accueil li {
    width: 22.75%;
  }
  .ligne-accueil ul.images-accueil li h3, .ligne-accueil ul.images-accueil li p {
    padding-right: 10px;
  }
  .ligne-accueil ul.images-accueil li > a {
    height: 190px;
  }
  .grille-affiches {
    gap: 2.5%;
  }
  .grille-affiches > li, .grille-affiches > div {
    width: 18%;
  }
  .grille-images {
    justify-content: flex-start;
    gap: 40px 3.25%;
  }
  .grille-images > li, .grille-images > div {
    width: 22.5%;
  }
  .grille-images li h3 {
    font-size: 1.2em;
  }
  .grille-images li div > a {
    height: 205px;
  }
  .couverture-header.film-header {
    height: 60vh;
  }
  ul.products.columns-4 .product .attachment-woocommerce_thumbnail {
    max-height: 306px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Retina Screens & Devices Stylesheet

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

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

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

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

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

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

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

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
