/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
a {
  text-decoration: none;
  outline: 0;
}
.actor {
  font-size: 14px;
  color: #707070;
  text-transform: capitalize;
}
.actor a {
  font-size: inherit;
  color: inherit;
  text-transform: inherit;
}
.actor a:focus,
.actor a:hover {
  text-decoration: underline;
}
body {
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
  font-size: 14px;
  background-color: #000000 !important;
  color: #FFFFFF;
  padding: 0;
}
/*Menu*/
.button {
  display: inline-block;
}
.button--collections {
  text-transform: uppercase;
  color: #ECA702;
  font-weight: 700;
  /* bold */
  font-size: 14px;
  display: none!important;
}
.button--block {
  display: block;
}
.button--cta {
  padding: 0.5em 1em;
  font-size: 19px;
  font-weight: 400;
  /* regular */
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ECA702;
  border: thin solid currentColor;
  transition: color 400ms;
}
.button--cta:focus,
.button--cta:hover {
  color: #CD3901;
}
.button--emcta {
  display: inline-block;
  text-align: center;
  padding: 0.5em 1.5em 0.5em 1em;
  border-width: thin;
  border-style: solid;
  border-radius: 2em;
  color: #FFFFFF;
  border-color: #ECA702;
  transition: color 200ms, border-color 200ms;
}
.button--emcta::before {
  content: '€';
  float: left;
  padding-top: 0.1em;
  padding-right: 0.25em;
  font-size: 2em;
  font-weight: boldest;
  color: #ECA702;
  transition: color 200ms;
}
.button--emcta em {
  color: #ECA702;
  transition: color 200ms;
}
.button--emcta:focus,
.button--emcta:hover {
  border-color: #CD3901;
}
.button--emcta:focus::before,
.button--emcta:hover::before {
  color: #CD3901;
}
.button--emcta:focus em,
.button--emcta:hover em {
  color: #CD3901;
}
.button--single {
  padding: 0.5em 1em;
  text-transform: uppercase;
  border: thin solid transparent;
  color: #FFFFFF;
  transition: color 200ms, border-color 200ms;
}
.button--single:focus,
.button--single:hover {
  color: #ECA702;
  border-color: #ECA702;
}
.button--single + .button--single {
  margin-left: 2em;
}
.button--normal {
  font-size: 0.875rem;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #ECA702;
  padding: 0.5em 1em 0.25em 1em;
}
.button--subterm {
  font-size: 0.875rem;
  font-weight: 300;
  background-color: transparent;
  color: #ECA702;
  transition: color 200ms;
}
.button--subterm:focus,
.button--subterm:hover {
  color: #EC4202;
}
.col-1 {
  width: 4.16666667%;
}
.col-2 {
  width: 8.33333333%;
}
.col-3 {
  width: 12.5%;
}
.col-4 {
  width: 16.66666667%;
}
.col-5 {
  width: 20.83333333%;
}
.col-6 {
  width: 25%;
}
.col-7 {
  width: 29.16666667%;
}
.col-8 {
  width: 33.33333333%;
}
.col-9 {
  width: 37.5%;
}
.col-10 {
  width: 41.66666667%;
}
.col-11 {
  width: 45.83333333%;
}
.col-12 {
  width: 50%;
}
.col-13 {
  width: 54.16666667%;
}
.col-14 {
  width: 58.33333333%;
}
.col-15 {
  width: 62.5%;
}
.col-16 {
  width: 66.66666667%;
}
.col-17 {
  width: 70.83333333%;
}
.col-18 {
  width: 75%;
}
.col-19 {
  width: 79.16666667%;
}
.col-20 {
  width: 83.33333333%;
}
.col-21 {
  width: 87.5%;
}
.col-22 {
  width: 91.66666667%;
}
.col-23 {
  width: 95.83333333%;
}
.col-24 {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .col-tab-1 {
    width: 4.16666667%;
  }
  .col-tab-2 {
    width: 8.33333333%;
  }
  .col-tab-3 {
    width: 12.5%;
  }
  .col-tab-4 {
    width: 16.66666667%;
  }
  .col-tab-5 {
    width: 20.83333333%;
  }
  .col-tab-6 {
    width: 25%;
  }
  .col-tab-7 {
    width: 29.16666667%;
  }
  .col-tab-8 {
    width: 33.33333333%;
  }
  .col-tab-9 {
    width: 37.5%;
  }
  .col-tab-10 {
    width: 41.66666667%;
  }
  .col-tab-11 {
    width: 45.83333333%;
  }
  .col-tab-12 {
    width: 50%;
  }
  .col-tab-13 {
    width: 54.16666667%;
  }
  .col-tab-14 {
    width: 58.33333333%;
  }
  .col-tab-15 {
    width: 62.5%;
  }
  .col-tab-16 {
    width: 66.66666667%;
  }
  .col-tab-17 {
    width: 70.83333333%;
  }
  .col-tab-18 {
    width: 75%;
  }
  .col-tab-19 {
    width: 79.16666667%;
  }
  .col-tab-20 {
    width: 83.33333333%;
  }
  .col-tab-21 {
    width: 87.5%;
  }
  .col-tab-22 {
    width: 91.66666667%;
  }
  .col-tab-23 {
    width: 95.83333333%;
  }
  .col-tab-24 {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .col-mob-1 {
    width: 4.16666667%;
  }
  .col-mob-2 {
    width: 8.33333333%;
  }
  .col-mob-3 {
    width: 12.5%;
  }
  .col-mob-4 {
    width: 16.66666667%;
  }
  .col-mob-5 {
    width: 20.83333333%;
  }
  .col-mob-6 {
    width: 25%;
  }
  .col-mob-7 {
    width: 29.16666667%;
  }
  .col-mob-8 {
    width: 33.33333333%;
  }
  .col-mob-9 {
    width: 37.5%;
  }
  .col-mob-10 {
    width: 41.66666667%;
  }
  .col-mob-11 {
    width: 45.83333333%;
  }
  .col-mob-12 {
    width: 50%;
  }
  .col-mob-13 {
    width: 54.16666667%;
  }
  .col-mob-14 {
    width: 58.33333333%;
  }
  .col-mob-15 {
    width: 62.5%;
  }
  .col-mob-16 {
    width: 66.66666667%;
  }
  .col-mob-17 {
    width: 70.83333333%;
  }
  .col-mob-18 {
    width: 75%;
  }
  .col-mob-19 {
    width: 79.16666667%;
  }
  .col-mob-20 {
    width: 83.33333333%;
  }
  .col-mob-21 {
    width: 87.5%;
  }
  .col-mob-22 {
    width: 91.66666667%;
  }
  .col-mob-23 {
    width: 95.83333333%;
  }
  .col-mob-24 {
    width: 100%;
  }
}
.flex-start {
  align-items: flex-start;
}
.flex-end {
  align-items: flex-end;
}
.flex-center {
  align-items: flex-center;
}
.col-p1 {
  padding: 0.5em;
}
/**
 * Collapse

<a href="#tutu" class="collapse">toggle collapse</a>
<div id="tutu" class="collapse__target">
collapsible content
</div>

 */
.collapse__target {
  visibility: visible;
}
.collapse__target:not(.active) {
  visibility: hidden;
  display: none;
}
.collapse.button::after {
  content: '\25BC';
  display: inline-block;
  transform: rotate(0);
  transition: transform 200ms;
}
.collapse.button.active::after {
  transform: rotate(90deg);
}
/**
 * Comments & comment

 <div class="comments">
    <ul class="comments__items">
        <li class="comments__item">
            <blockquote class="comment">
                <cite>
                    <span class="stars">★★★★☆</span>
                    Anonyme
                    22 avril 2010
                </cite>
            </blockquote>
        </li>
    </ul>
 </div>

 */
.comments__items {
  list-style: none;
  padding-left: 0;
}
.comments__item {
  margin-bottom: 1em;
}
.comment > *:not(cite) {
  margin-bottom: 0.5em;
  font-style: italic;
}
.comment > *:not(cite):before {
  content: '\201D';
}
.comment > *:not(cite):after {
  content: '\201C';
}
.comment cite {
  font-style: normal;
}
/*override what's above to fit homepage design */
.container {
  max-width: 1000px;
  margin: auto;
  position: relative;
  padding: 0 20px;
  background-color: #000000 !important;
}
.discount {
  color: #ffffff;
  background-color: #5D9C25;
  font-weight: 500;
  /* medium */
  font-size: 18px;
  padding: 0 0.25em;
}
/*Fonts*/
/**
 * Calcule la taille en rem d'après la taille de base.
 * px La taille en pixel sur la maquette.
 */
/**
 * Calcule la taille en rem d'après la taille de base, ainsi que la taille
 * d'interligne.
 * px La taille de la police en pixel sur la maquette.
 * line-height La taille de l'interligne en pixel sur la maquette.
 */
.footer {
  border-top: 2px solid #363636;
}
.footer_menu {
  margin: auto;
  width: 100%;
  margin-top: 20px;
  border-top: 2px solid #363636;
  padding-top: 20px;
  padding-bottom: 20px;
}
/**
 * Form

# Formulaire horizontal

```html
<form class="form form__rows">
    <p class="form__row form__widget form__widget--text">
        <label class="form__label">...</label>
        <input class="form__control"/>
    </p>
    <p class="form__row form__widget form__widget--checkbox">
        <label>
            <input class="form__control"/>...
        </label>
    </p>
    <p class="form__row form__widget form__widget--submit">
        <button class="form__button">...</button>
    </p>
</form>
```

# Formulaire vertical

```html
<form class="form form--vertical form__rows">
    <p class="form__row form__widget form__widget--email">
        <label class="form__label">...</label>
        <input class="form__control"/>
    </p>
    <p class="form__row form__widget form__widget--password">
        <label class="form__label">...</label>
        <input class="form__control"/>
    </p>
    <p class="form__row form__widget form__widget--submit">
        <button class="form__button">...</button>
    </p>
</form>
```

# Formulaire de commentaire

On gère également le formulaire de commentaire produit par Wordpress.

 */
.form {
  font-size: 1.1875rem;
  font-weight: 400;
}
.form__label,
.form__widget--checkbox {
  display: inline-block;
  padding: 0.5em 0.5em 0.5em 0;
  font-weight: 400 !important;
  color: #8D8D8D;
}
.form__control,
.form__button {
  font-size: inherit;
  border-width: 0;
  padding: 0.5em 0.5em;
}
.form__widget--text .form__control,
.form__widget--email .form__control,
.form__widget--password .form__control {
  color: #FFFFFF;
  background-color: #363636;
  border-radius: 0.5em;
}
.form__widget--checkbox .form__control {
  height: auto;
}
.form__button {
  width: 100%;
  color: #FFFFFF;
  background-color: #ECA702;
  border-radius: 2em;
}
.form--vertical .form__widget--text .form__control,
.form--vertical .form__widget--email .form__control,
.form--vertical .form__widget--password .form__control {
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .form--horizontal .form__row {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-bottom: 0.5em;
  }
  .form--horizontal .form__label {
    flex: 1 1 33.33333333%;
  }
  .form--horizontal .form__widget--submit,
  .form--horizontal .form__widget--checkbox {
    margin-left: 33.33333333%;
  }
  .form--horizontal .form__widget--text .form__control,
  .form--horizontal .form__widget--email .form__control,
  .form--horizontal .form__widget--password .form__control,
  .form--horizontal .form__widget--checkbox {
    flex: 1 1 66.66666667%;
  }
}
@media only screen and (max-width: 800px) {
  .form--horizontal .form__widget--text .form__control,
  .form--horizontal .form__widget--email .form__control,
  .form--horizontal .form__widget--password .form__control {
    width: 100%;
  }
}
.comment-form {
  font-size: 1.1875rem;
  font-weight: 400;
}
.comment-form__label,
.comment-form__widget--checkbox {
  display: inline-block;
  padding: 0.5em 0.5em 0.5em 0;
  font-weight: 400 !important;
  color: #8D8D8D;
}
.comment-form__control,
.comment-form__button {
  font-size: inherit;
  border-width: 0;
  padding: 0.5em 0.5em;
}
.comment-form__widget--text .comment-form__control,
.comment-form__widget--email .comment-form__control,
.comment-form__widget--password .comment-form__control {
  color: #FFFFFF;
  background-color: #363636;
  border-radius: 0.5em;
}
.comment-form__widget--checkbox .comment-form__control {
  height: auto;
}
.comment-form__button {
  width: 100%;
  color: #FFFFFF;
  background-color: #ECA702;
  border-radius: 2em;
}
.comment-form--vertical .comment-form__widget--text .comment-form__control,
.comment-form--vertical .comment-form__widget--email .comment-form__control,
.comment-form--vertical .comment-form__widget--password .comment-form__control {
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .comment-form--horizontal .comment-form__row {
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-bottom: 0.5em;
  }
  .comment-form--horizontal .comment-form__label {
    flex: 1 1 33.33333333%;
  }
  .comment-form--horizontal .comment-form__widget--submit,
  .comment-form--horizontal .comment-form__widget--checkbox {
    margin-left: 33.33333333%;
  }
  .comment-form--horizontal .comment-form__widget--text .comment-form__control,
  .comment-form--horizontal .comment-form__widget--email .comment-form__control,
  .comment-form--horizontal .comment-form__widget--password .comment-form__control,
  .comment-form--horizontal .comment-form__widget--checkbox {
    flex: 1 1 66.66666667%;
  }
}
@media only screen and (max-width: 800px) {
  .comment-form--horizontal .comment-form__widget--text .comment-form__control,
  .comment-form--horizontal .comment-form__widget--email .comment-form__control,
  .comment-form--horizontal .comment-form__widget--password .comment-form__control {
    width: 100%;
  }
}
.comment-form [class^="comment-form-"] label,
.comment-form .acf-label label {
  display: inline-block;
  padding: 0.5em 0.5em 0.5em 0;
  font-weight: 400 !important;
  color: #8D8D8D;
}
.comment-form [class^="comment-form-"] label + *,
.comment-form .acf-input {
  font-size: inherit;
  border-width: 0;
  padding: 0.5em 0.5em;
  color: #FFFFFF;
  background-color: #363636;
  border-radius: 0.5em;
  width: 100%;
}
.comment-form [type="submit"] {
  font-size: inherit;
  border-width: 0;
  padding: 0.5em 0.5em;
  width: 100%;
  color: #FFFFFF;
  background-color: #ECA702;
  border-radius: 2em;
}
/*Globals*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0;
}
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #363636;
  padding: 15px 0px;
  position: relative;
  /*override what's above to fit homepage design */
}
@media only screen and (max-width: 700px) {
  .header {
    justify-content: flex-start;
  }
}
.header_menu,
.header_logo {
  margin-right: 2.08333333vw;
  width: 10.41666667vw;
  min-width: 130px;
}
@media only screen and (min-width: 1920px) {
  .header_menu,
  .header_logo {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_menu,
  .header_logo {
    margin-right: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu,
  .header_logo {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1920px) {
  .header_menu,
  .header_logo {
    width: 200px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_menu,
  .header_logo {
    width: 21.05263158vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu,
  .header_logo {
    width: 200px;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu,
  .header_logo {
    margin: 0;
  }
}
.header_menu {
  flex-grow: 1;
  padding-right: 2.08333333vw;
  padding-left: 2.08333333vw;
  background-color: #000000;
  z-index: 1;
}
@media only screen and (min-width: 1920px) {
  .header_menu {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_menu {
    padding-right: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1920px) {
  .header_menu {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_menu {
    padding-left: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu {
    padding-left: 40px;
  }
}
.header_menu.showed {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .header_menu {
    position: absolute;
    top: 90px;
    width: 100%;
    left: 0;
    display: none;
  }
}
.header_tools {
  display: flex;
  align-items: center;
  padding-left: 2.08333333vw;
  border-left: 2px solid #363636;
  position: relative;
}
@media only screen and (min-width: 1920px) {
  .header_tools {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_tools {
    padding-left: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools {
    justify-content: flex-end;
    flex-grow: 1;
    position: static;
    border: none;
  }
}
.header_tools img {
  display: block;
  width: 1.30208333vw;
  height: 1.30208333vw;
  margin-right: 10px;
}
@media only screen and (min-width: 1920px) {
  .header_tools img {
    width: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_tools img {
    width: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools img {
    width: 25px;
  }
}
@media only screen and (min-width: 1920px) {
  .header_tools img {
    height: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_tools img {
    height: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools img {
    height: 25px;
  }
}
@media only screen and (max-width: 950px) {
  .header_tools img {
    width: 25px;
    height: 25px;
  }
}
.header_tools a {
  color: #ECA702;
  font-size: 1.30208333vw;
  font-weight: 300;
  white-space: nowrap;
  padding-right: 40px;
}
@media only screen and (min-width: 1920px) {
  .header_tools a {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_tools a {
    font-size: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools a {
    font-size: 25px;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools a {
    display: none;
  }
}
.header_tools input[type=search] {
  display: block;
  width: 100%;
  padding: 0 1em;
  width: 20vw;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  text-align: left;
  color: #FFFFFF;
}
@media only screen and (min-width: 1920px) {
  .header_tools input[type=search] {
    width: 384px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_tools input[type=search] {
    width: 40.42105263vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools input[type=search] {
    width: 384px;
  }
}
.header_tools input[type=search]::placeholder {
  color: inherit;
  opacity: 1;
  color: transparent;
}
@media only screen and (max-width: 700px) {
  .header_tools input[type=search]::placeholder {
    color: inherit;
  }
}
.header_tools input[type=search].showed {
  display: block;
}
@media only screen and (max-width: 700px) {
  .header_tools input[type=search] {
    display: none;
    position: absolute;
    width: 100%;
    right: 0;
    top: 70px;
    background-color: #ECA702;
    height: 58px;
    border-radius: 0;
    color: #FFFFFF;
    z-index: 1;
    text-align: center;
  }
}
.header_tools button[type=submit],
.header_tools button[type=button] {
  background-color: transparent;
  font-size: 0;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 14px;
  top: 0px;
  vertical-align: middle;
  display: inline-block;
  z-index: 0;
}
@media only screen and (max-width: 700px) {
  .header_tools button[type=submit],
  .header_tools button[type=button] {
    position: relative;
    right: inherit;
    margin-left: 15px;
  }
}
.header_tools .header_closeInput {
  position: absolute;
  top: 82px;
  z-index: 2;
  display: none;
  font-size: 29px;
  right: 22px;
  color: #FFFFFF;
  cursor: pointer;
}
.header_tools .header_closeInput.showed {
  display: block;
}
.header_menu,
.header_logo {
  margin-right: 21.33333333px;
  width: 106.66666667px;
}
@media only screen and (max-width: 1024px) {
  .header_menu,
  .header_logo {
    margin-right: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu,
  .header_logo {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_menu,
  .header_logo {
    width: 21.05263158vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu,
  .header_logo {
    width: 200px;
  }
}
@media only screen and (max-width: 500px) {
  .header_menu,
  .header_logo {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 1024px) {
  .header_menu,
  .header_logo {
    margin-right: 0vw;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 700px) {
  .header_menu,
  .header_logo {
    margin-right: 0px;
  }
}
.header_menu {
  padding-right: 0px;
  padding-left: 0px;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .header_menu {
    padding-right: 0vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_menu {
    padding-left: 0vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_menu {
    padding-left: 0px;
  }
}
.header_tools {
  padding-left: 21.33333333px;
}
@media only screen and (max-width: 1024px) {
  .header_tools {
    padding-left: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .header_tools {
    padding-left: 10.66666667px;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 1024px) {
  .header_tools {
    padding-left: 2.10526316vw;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 700px) {
  .header_tools {
    padding-left: 20px;
  }
}
.header_tools img {
  width: 13.33333333px;
  height: 13.33333333px;
}
@media only screen and (max-width: 1024px) {
  .header_tools img {
    width: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools img {
    width: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .header_tools img {
    height: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools img {
    height: 25px;
  }
}
.header_tools a {
  font-size: 13.33333333px;
}
@media only screen and (max-width: 1024px) {
  .header_tools a {
    font-size: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools a {
    font-size: 25px;
  }
}
.header_tools input[type=search] {
  width: 204.8px;
}
@media only screen and (max-width: 1024px) {
  .header_tools input[type=search] {
    width: 40.42105263vw;
  }
}
@media only screen and (max-width: 700px) {
  .header_tools input[type=search] {
    width: 384px;
  }
}
iframe {
  max-width: 100%;
  display: block;
}
iframe img {
  width: 100%;
}
input,
textarea,
button {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  padding: 0 0.3em;
  border: none;
  background-color: #363636;
}
input,
button {
  height: 40px;
}
input,
textarea {
  color: #000000;
  border-radius: 10px;
}
input[type=submit],
button {
  background-color: #ECA702;
  color: #FFFFFF;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
}
input[type=search] {
  border-radius: 25px;
}
.list--collections {
  list-style: none;
  padding-left: 0;
  text-overflow: ellipsis;
  color: #FFFFFF;
  font-weight: 400;
  /* regular */
  font-size: 14px;
}
@media only screen and (max-width: 500px) {
  .list--collections {
    padding-left: 10px;
  }
}
.list--collections > li {
  padding: 2px 0;
  display: flex;
}
.list--collections > li::before {
  content: '';
  background-color: #ECA702;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 5px;
  flex-shrink: 0;
  flex-basis: 8px;
  margin-top: 3px;
}
.list--collections > li > a {
  display: inline !important;
  padding: 0 !important;
  color: inherit;
}
/**
 * Publicités Locafilm
 *

<div class="locafilm-ad">
    ...
</div>

 */
.locafilm-ad {
  font-size: 0;
  margin: 0.5rem auto;
  text-align: center;
}
.locafilm-ad.inline {
  margin: 0 0;
}
.locafilm-ad.alignleft {
  margin-left: 0;
}
.locafilm-ad--728x90 {
  width: 728px;
  height: 90px;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 800px) {
  .locafilm-ad--728x90 {
    display: none;
  }
}
.locafilm-ad--320x250 {
  width: 320px;
  height: 250px;
}
@media only screen and (max-width: 1024px) {
  .locafilm-ad--320x250 {
    display: none;
  }
}
.locafilm-ad--responsive .locafilm-ad--320x250,
.locafilm-ad--responsive .locafilm-ad--468x60 {
  display: none;
}
.locafilm-ad--zone-82 {
  display: none;
}
@media only screen and (max-width: 800px) {
  .locafilm-ad--zone-82 {
    display: block;
  }
}
.locafilm-ad--zone-84 {
  display: block;
}
@media only screen and (max-width: 800px) {
  .locafilm-ad--zone-84 {
    display: none;
  }
}
.logo_header {
  width: 100%;
  height: auto;
  display: block;
}
.menu_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding-left: 0;
  /*override what's above to fit homepage design */
}
@media only screen and (max-width: 1024px) {
  .menu_header {
    flex-direction: column;
  }
}
.menu_header .menu-item {
  list-style: none;
  text-align: center;
}
.menu_header .menu-item > a {
  font-size: 30px;
  font-weight: 300;
  color: #FFFFFF;
}
@media only screen and (max-width: 950px) {
  .menu_header .menu-item > a {
    font-size: 20px;
  }
}
.menu_header .menu-item > a:hover {
  color: #ECA702;
}
.menu_header .menu-item.current-menu-item > a {
  color: #ECA702;
}
.menu_header .menu-item > a {
  font-size: 20px;
}
.menu_footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding-left: 0;
  max-width: 400px;
  margin: auto;
}
.menu_footer .menu-item {
  list-style: none;
}
.menu_footer .menu-item a {
  font-size: 12px;
  color: #979797;
}
.menu-social-menu-container > ul > li {
  list-style: none;
}
.menu-item {
  /*&_facebook{
			padding-left:40px;
			@media @xs{
				padding-left:20px;
			}
			a{
				color:@grey2;
				font-size:14px;
			}
			
			&::before{
				width:45px;
				height:50px;
				background-image:url(images/facebook.svg);
				background-size:100% 100%;
				content:"";
				display:block;
				margin:auto;
				margin-bottom:20px;
			}
		}*/
}
.menu-item-facebook a {
  font-size: 0!important;
  background-image: url(images/facebook.svg);
  width: 20px;
  height: 20px;
  content: "";
  display: block;
}
.meta--big {
  font-size: 0.875rem;
  line-height: 1.85714286;
}
.meta--small {
  font-size: 0.75rem;
  line-height: 1.83333333;
}
.meta__key,
.meta__val {
  display: inline-block;
  width: calc(49%);
  vertical-align: top;
}
.meta__key {
  font-weight: 300;
  color: #707070;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meta__val {
  font-weight: 400;
  color: #D5D5D5;
}
.meta__val a {
  font-size: inherit;
  color: inherit;
}
.meta__val a:focus,
.meta__val a:hover {
  text-decoration: underline;
}
.meta--archive {
  padding-left: 2em;
  flex: 0 0 50%;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 1500px) {
  .meta--archive {
    flex: 0 0 100%;
  }
}
/**
 * Offers

<ul class="offers offers__items">
    <li class="offers__item offer">
        <figure class="offer__partner">
            <picture>
                <img src="..." />
            </picture>
            <figcaption>
                ...
            </figcaption>
        </figure>
        <ul class="offer__rows">
            <li class="offer__row">
                ...
            <li>
            ...
        </ul>
    </li>
    ...
</ul>


 */
.offers__items {
  list-style: none;
  padding-left: 0;
}
.offers__item + .offers__item {
  margin-top: 1em;
}
.offer {
  display: flex;
}
@media only screen and (min-width: 500px) {
  .offer {
    flex-flow: row;
  }
}
@media only screen and (max-width: 500px) {
  .offer {
    flex-flow: column;
  }
}
.offer__partner {
  padding: 0.5em;
  text-align: center;
  background-color: #363636;
}
@media only screen and (min-width: 500px) {
  .offer__partner {
    flex: 0 0 calc(12.5%);
    max-width: calc(12.5%);
  }
}
@media only screen and (max-width: 500px) {
  .offer__partner {
    flex: 0 0 100%;
  }
}
@media only screen and (min-width: 500px) {
  .offer__picture {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
  }
  .offer__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
  }
}
.offer__caption {
  padding-top: 0.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer__rows {
  list-style: none;
}
@media only screen and (min-width: 500px) {
  .offer__rows {
    flex: 0 0 calc(87.5%);
    align-self: center;
    padding-left: 0.5em;
  }
}
@media only screen and (max-width: 500px) {
  .offer__rows {
    flex: 0 0 100%;
    padding-left: 0;
    padding-top: 0.5em;
  }
}
.offer__row {
  display: flex;
}
@media only screen and (min-width: 500px) {
  .offer__row {
    flex-flow: row;
    justify-content: space-around;
  }
}
@media only screen and (max-width: 500px) {
  .offer__row {
    flex-flow: column;
  }
  .offer__row > * + * {
    margin-top: 0.5em;
  }
}
.offer__row > * {
  align-self: center;
}
.owl-carousel--works {
  position: relative;
}
.owl-carousel .item {
  padding: 10px;
}
.owl-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
}
.owl-theme .owl-nav {
  position: absolute;
  top: -48px;
  right: 16px;
}
.owl-theme .owl-nav [class*='owl-'] {
  background: none;
  color: transparent;
  padding: 0;
  margin: 0;
}
.owl-theme .owl-nav [class*='owl-'] img {
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
@media only screen and (max-width: 500px) {
  .owl-theme .owl-nav [class*='owl-'] img {
    width: 32px;
  }
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: none;
  color: transparent;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: block;
}
.page-accueil .container {
  max-width: 1024px;
}
.page-accueil .header_menu,
.page-accueil .header_logo {
  margin-right: 21.33333333px;
  width: 106.66666667px;
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    margin-right: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    width: 21.05263158vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    width: 200px;
  }
}
@media only screen and (max-width: 500px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 1024px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    margin-right: 0vw;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 700px) {
  .page-accueil .header_menu,
  .page-accueil .header_logo {
    margin-right: 0px;
  }
}
.page-accueil .header_menu {
  padding-right: 0px;
  padding-left: 0px;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_menu {
    padding-right: 0vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_menu {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_menu {
    padding-left: 0vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_menu {
    padding-left: 0px;
  }
}
.page-accueil .header_tools {
  padding-left: 21.33333333px;
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_tools {
    padding-left: 4.21052632vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_tools {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .page-accueil .header_tools {
    padding-left: 10.66666667px;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 1024px) {
  .page-accueil .header_tools {
    padding-left: 2.10526316vw;
  }
}
@media only screen and (max-width: 500px) and only screen and (max-width: 700px) {
  .page-accueil .header_tools {
    padding-left: 20px;
  }
}
.page-accueil .header_tools img {
  width: 13.33333333px;
  height: 13.33333333px;
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_tools img {
    width: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_tools img {
    width: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_tools img {
    height: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_tools img {
    height: 25px;
  }
}
.page-accueil .header_tools a {
  font-size: 13.33333333px;
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_tools a {
    font-size: 2.63157895vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_tools a {
    font-size: 25px;
  }
}
.page-accueil .header_tools input[type=search] {
  width: 204.8px;
}
@media only screen and (max-width: 1024px) {
  .page-accueil .header_tools input[type=search] {
    width: 40.42105263vw;
  }
}
@media only screen and (max-width: 700px) {
  .page-accueil .header_tools input[type=search] {
    width: 384px;
  }
}
.page-accueil .menu_header .menu-item > a {
  font-size: 20px;
}
.pagination {
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0 20px;
  padding: 30px 0px;
  border-top: 2px solid #363636;
}
.pagination .page-numbers {
  color: #ECA702;
  height: 36px;
  width: 36px;
  display: inline-block;
  border-radius: 18px;
  border: 2px solid #ECA702;
  line-height: 36px;
  font-size: 18px;
}
.pagination .page-numbers.current {
  background-color: #ECA702;
  color: #000000;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  position: absolute;
  border: none;
}
.pagination .page-numbers.prev img,
.pagination .page-numbers.next img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.pagination .page-numbers.next {
  right: 0;
}
.pagination .page-numbers.prev {
  left: 0;
}
.pagination .page-numbers.prev img {
  transform: rotate(-180deg);
}
.price {
  color: #EC4202;
  font-weight: 500;
  /* medium */
  font-size: 18px;
}
/**
 * Related

<div class="related">
    <ul class="related__items">
        <li class="related__item>...</li>
        <li class="related__item>...</li>
        <li class="related__item>...</li>
    </ul>
</div>

*/
.related {
  font-size: 0.875rem;
  line-height: 1.42857143;
  font-weight: 400;
  padding: 1em;
  background-color: #202020;
}
.related__items {
  list-style: none;
  padding-left: 0;
}
.related a {
  color: #FFFFFF;
  transition: color 200ms;
}
.related a:focus,
.related a:hover {
  color: #ECA702;
  text-decoration: underline;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
/**
 * Scrollable

<div class="scrollable">
    ...
</div>

 */
.scrollable {
  max-height: 80vh;
  overflow: hidden;
  overflow-y: scroll;
}
.shortcode--works,
.shortcode--worksby {
  padding: 15px 0;
}
.shortcode--container {
  margin: 0 -10px;
}
.shortcode--container > ul {
  font-size: 0;
  padding: 0;
  position: relative;
}
.shortcode--container > ul > li {
  font-size: 16px;
  list-style: none;
  width: calc(25%);
  display: inline-block;
  padding: 10px;
}
.shortcode--container > ul > li a {
  display: block;
  padding-top: 10px;
}
@media only screen and (max-width: 1500px) {
  .shortcode--container > ul > li {
    width: calc(25%);
  }
}
@media only screen and (max-width: 1024px) {
  .shortcode--container > ul > li {
    width: calc(33.33333333%);
  }
}
@media only screen and (max-width: 800px) {
  .shortcode--container > ul > li {
    width: calc(50%);
  }
}
@media only screen and (max-width: 500px) {
}
.shortcode--container > ul > li img {
  width: 100%;
  height: auto;
  display: block;
}
.shortcode--works {
  overflow: hidden;
}
.shortcode--worksby > ul {
  white-space: wrap;
}
.shortcode--ads {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shortcode--ads iframe {
  max-width: 100%;
  display: block;
}
.sidebar_top {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.sidebar_top .image {
  width: 100%;
  max-width: 300px;
}
.sidebar_bottom {
  display: flex;
  flex-direction: column;
}
.sidebar_bottom_left {
  display: flex;
  flex-direction: row;
  padding-top: 20px;
}
@media only screen and (max-width: 500px) {
  .sidebar_bottom_left {
    flex-direction: column;
  }
}
.sidebar_bottom_left .widget {
  width: calc(50%);
}
.sidebar_bottom_left #terms-2 {
  padding-right: 10px;
}
.sidebar_bottom_left #terms-3 {
  padding-left: 7px;
}
@media only screen and (max-width: 500px) {
  .sidebar_bottom_left #terms-3 {
    padding-left: 0;
  }
}
.sidebar_bottom_right {
  margin-top: 20px;
}
.stars {
  color: #ECA702;
  font-size: 18px;
  font-weight: 500;
  /* medium */
}
.rating {
  color: #ECA702;
  font-size: inherit;
  font-weight: inherit;
  transition: color 400ms;
}
.rating:hover {
  color: #CD3901;
}
.rating {
  float: left;
  border-width: 0;
  padding: 0;
  margin: 0;
}
.rating > input {
  position: absolute;
  top: -9999px;
}
.rating > label {
  float: right;
  width: 1em;
  overflow: hidden;
}
.rating > label::before {
  content: '\2606';
  /* étoile vide ☆ */
}
.rating:not(:hover) > input:checked + label::before,
.rating:not(:hover) > input:checked ~ label::before,
.rating > label:hover ~ label::before,
.rating > label:hover::before {
  content: '\2605';
  /* étoile pleine ★ */
}
/**
 * Subterms

<div class="subterms">
    <ul class="subterms__items">
        <li class="subterms__item">
            <a class="button button--subterms">
                ...
            </a>
        </li>
        ...
    </ul>
</div>

 */
.subterms__items {
  display: flex;
  justify-content: space-around;
}
.subterms__item {
  vertical-align: top;
}
/**
 * Suggestions

<div class="suggestions">
    <ul class="suggestions__items">
        <li class="suggestions__item">...</li>
        <li class="suggestions__item">...</li>
    </ul>
</div>

 */
.suggestions__container {
  width: 100%;
}
.suggestions__items {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0;
  flex-flow: row;
}
.suggestions__item {
  align-items: flex-start;
  margin: 10px 0;
  /*
        width:25%;
        @media @mobile{
            width:50%;
        }
        @media @xs{
            width:100%;
        }
        &+& {
            //margin-top: 1em;
        }
        */
}
/**
 * Tabs
 *
 * @see js/tabs.js

<div class="tabs">
    <ul class="tabs__items">
        <li class="tabs__item"><a href="#tab0">Tab0</a></li>
        <li class="tabs__item"><a href="#tab1">Tab1</a></li>
        <li class="tabs__item"><a href="#tab2">Tab2</a></li>
    </ul>
    <div class="tabs__panes">
        <div id="tab0" class="tabs__pane">...</div>
        <div id="tab1" class="tabs__pane">...</div>
        <div id="tab2" class="tabs__pane">...</div>
    </div>
</div>

 */
.tabs__items {
  display: flex;
  flex-flow: row;
  list-style: none;
  padding-left: 0;
}
.tabs__item {
  flex: 1 1 auto;
  text-align: center;
  padding: 1em 0;
  cursor: pointer;
  transition: color 200ms, background-color 200ms;
}
.tabs__item:not(.active) {
  color: #ECA702;
  background-color: #000000;
}
.tabs__item:focus,
.tabs__item:hover,
.tabs__item.active {
  color: #FFFFFF;
  background-color: #202020;
}
.tabs__item a {
  color: inherit;
}
.tabs__pane {
  padding: 1em;
}
.tabs__pane:not(.active) {
  display: none;
}
.tabs__pane.active {
  background-color: #202020;
}
.tabs--big .tabs__item {
  font-size: 1.25rem;
  font-weight: 300;
}
.tabs--small .tabs__item {
  font-size: 0.875rem;
  font-weight: 400;
}
.tabs--small .tabs__pane {
  font-size: 0.75rem;
}
.text--synopsis {
  color: #D8D8D8;
  font-size: 14px;
  font-weight: 400;
}
.text--lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #FFFFFF;
}
.text--lead a {
  font-weight: 400;
  color: #ECA702;
  transition: color 200ms;
}
.text--lead a:focus,
.text--lead a:hover {
  color: #CD3901;
  text-decoration: underline;
}
.text--center {
  text-align: center;
}
.text--partner {
  font-size: 0.875rem;
  font-weight: 300;
  color: #FFFFFF;
}
.text--tag {
  font-size: 0.875rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 0.5em 0.5em 0.25em 0.5em;
  border: thin solid currentColor;
}
.text--price {
  font-size: 1rem;
  font-weight: 700;
  color: #ECA702;
}
/**
 * Title

Style des titres. S'adapte sur n'importe quel élément, a priori sur un élément
h1 à h6 pour être cohérent sémantiquement parlant.

```html
<h1 class="title title--secondary">...</h1>
```

 */
.title--secondary {
  font-weight: 300;
  color: #FFFFFF;
  font-size: 20px;
}
@media only screen and (max-width: 500px) {
  .title--secondary {
    font-size: 17px;
  }
}
.title--collections {
  font-weight: 300;
  color: #cccccc;
  font-size: 20px;
}
.title--archive {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 30px;
}
.title--see-also {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 1em;
}
.title--comment {
  font-size: 1.25rem;
  font-weight: 300;
  padding-bottom: 0.5em;
}
.title--padded {
  padding-left: 2em;
}
.title--suggestions {
  font-size: 1.125rem;
  font-weight: 300;
  padding: 1em 0 0.5em 0;
}
.title--suggestion {
  font-size: 0.875rem;
  font-weight: 400;
  padding-bottom: 0.5em;
}
.title--seoH1 {
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 400;
}
.title--subterms {
  font-size: 1.25rem;
  font-weight: 300;
}
.toggle_menu_header {
  width: 24px;
  min-width: 24px;
  margin-right: 20px;
  cursor: pointer;
  display: none;
}
.toggle_menu_header span {
  display: none;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  position: relative;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .toggle_menu_header {
    display: block;
  }
}
.toggle_menu_header::before,
.toggle_menu_header::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
}
.toggle_menu_header::before {
  margin-bottom: 7px;
}
.toggle_menu_header::after {
  margin-top: 7px;
  width: 70%;
}
.toggle_menu_header.clicked span {
  display: none;
}
.toggle_menu_header.clicked::before,
.toggle_menu_header.clicked::after {
  background-color: #ECA702;
  width: 130%;
  margin: 0;
}
.toggle_menu_header.clicked::before {
  transform: rotate(-45deg);
  top: 2px;
}
.toggle_menu_header.clicked::after {
  transform: rotate(45deg);
}
/**
 * Twocols

<div class="twocols twocols__items">
    <div class="twocols__item">...</div>
    <div class="twocols__item">...</div>
</div>

 */
.twocols__items {
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .twocols__items {
    flex-flow: row;
  }
  .twocols__item {
    padding: 1em;
  }
  .twocols__item:first-child {
    flex: 1 1 60%;
    padding-left: 0;
  }
  .twocols__item:last-child {
    flex: 1 1 40%;
    padding-right: 0;
    border-left: thin solid #707070;
  }
}
@media only screen and (max-width: 1024px) {
  .twocols__items {
    flex-flow: column;
  }
  .twocols__item:first-child {
    padding-bottom: 1em;
  }
  .twocols__item:last-child {
    padding-top: 1em;
    border-top: thin solid #707070;
  }
}
.widget__terms--alt label,
.widgettitle {
  color: #979797;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 0;
}
.widget__terms--alt label a,
.widgettitle a {
  color: #979797;
}
.widget ul {
  padding: 0;
}
.widget > .widget_gender > li,
.widget > .widget_collection > li > ul > li {
  list-style: none;
}
.widget > .widget_gender > li a,
.widget > .widget_collection > li > ul > li a {
  color: #FFFFFF;
  font-size: 14px;
}
.widget > .widget_gender {
  width: 100%;
  column-count: 3;
}
@media only screen and (max-width: 1500px) {
  .widget > .widget_gender {
    column-count: 2;
  }
}
@media only screen and (max-width: 800px) {
  .widget > .widget_gender {
    column-count: 1;
  }
}
@media only screen and (max-width: 500px) {
  .widget > .widget_gender {
    column-count: 1;
  }
}
.widget > .widget_collection {
  width: 100%;
  column-count: 6;
}
@media only screen and (max-width: 1500px) {
  .widget > .widget_collection {
    column-count: 4;
  }
}
@media only screen and (max-width: 1024px) {
  .widget > .widget_collection {
    column-count: 3;
  }
}
@media only screen and (max-width: 800px) {
  .widget > .widget_collection {
    column-count: 2;
  }
}
@media only screen and (max-width: 500px) {
  .widget > .widget_collection {
    column-count: 1;
  }
}
.widget > .widget_collection > li {
  list-style: none;
}
.widget > .widget_collection > li > a {
  color: #979797;
  font-size: 14px;
  display: block;
}
.widget > .widget_collection > li > ul.widget_collection {
  column-count: 1;
  padding: 10px 0;
}
.widget_nav_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.widget_nav_menu .title small {
  display: block;
  font-size: 14px;
  color: #979797;
  font-weight: 400;
}
.widget__terms--alt {
  display: none;
  padding: 0;
  margin: 0 0;
  border: none;
  width: 100%;
  font-weight: bold;
}
.widget__terms--alt select {
  display: block;
  width: 100%;
}
.widget__terms--alt ~ .widget__terms--alt {
  margin-left: 1em;
  margin-top: 0;
}
@media only screen and (max-width: 500px) {
  .widget__terms--alt ~ .widget__terms--alt {
    margin-left: 0;
    margin-top: 1em;
  }
}
@media only screen and (max-width: 800px) {
  .widget__terms--alt {
    display: block;
  }
}
@media only screen and (max-width: 800px) {
  .widget_terms {
    display: none !important;
    visibility: hidden !important;
  }
}
.words {
  cursor: pointer;
}
.word {
  /*
    &--more:checked~& {
        display: inline;
    }
    */
}
.word--trigger {
  position: absolute;
  left: -9999px;
}
.word--trigger:checked ~ .word--more {
  display: none;
}
@media only screen and (max-width: 800px) {
  .word--trigger:not(:checked) ~ .word--mobile {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .word--trigger:not(:checked) ~ .word--tablette {
    display: none;
  }
}
@media only screen and (max-width: 1920px) {
  .word--trigger:not(:checked) ~ .word--desktop {
    display: none;
  }
}
.content {
  padding: 20px 0;
  color: #cccccc;
  font-weight: 400;
  font-size: 14px;
}
.content h2:not(.title) {
  font-weight: 700;
  /* bold */
  color: inherit;
  font-size: 20px;
}
.content h2:not(.title) small {
  font-weight: 400;
  /* regular */
  color: inherit;
  font-size: inherit;
}
.content .gallery img {
  border: none !important;
}
.content h1,
.content h2,
.content h3 {
  margin: 0.5em 0;
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
.work {
  width: 100%;
  position: relative;
}
.work__picture--collection,
.work__picture--default {
  padding-top: 136%;
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  top: 0;
}
.work__metas {
  font-size: 0.875rem;
  line-height: 1.85714286;
}
.work__archive {
  margin: 0 -20px;
}
.work__archive article {
  flex: 0 0 50%;
}
@media only screen and (max-width: 1024px) {
  .work__archive article {
    flex: 0 0 100%;
  }
}
.work--collection {
  /* @media @xs{
            display:flex;
            flex-direction:row;
        } */
}
.work--collection .work__caption {
  margin-top: 10px;
}
.work .work__caption {
  display: flex;
  justify-content: space-between;
}
.work .work__caption .price,
.work .work__caption .discount {
  display: none;
}
.work--archive {
  padding: 10px;
}
.work--archive .work__title {
  margin: 20px 0;
}
.work--archive .work__body {
  display: flex;
}
@media only screen and (max-width: 500px) {
  .work--archive .work__body {
    flex-direction: column;
  }
}
.work--archive .work__figure {
  display: flex;
  flex-direction: column;
  flex: 1 0 220px;
}
@media only screen and (max-width: 500px) {
  .work--archive .work__figure {
    flex: none;
    width: 220px;
  }
}
.work--archive .work__picture img {
  width: 100%;
  height: auto;
  display: block;
}
.work--archive .work__stars {
  justify-content: center;
  display: flex;
}
.work--archive .work__stars .stars {
  font-size: 30px;
}
.work--archive .work__content {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.work--archive .work__content * {
  max-width: 100%;
}
.work--archive .work__cta nav > * + * {
  margin-top: 20px;
}
.work--archive .work__cta .button--cta {
  width: 100%;
}
@media only screen and (max-width: 1500px) {
  .work--archive .work__metas {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .work--archive .work__metas {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 800px) {
  .work--archive .work__metas {
    margin-top: 10px;
  }
}
.work--archive .work__metas,
.work--archive .work__cta {
  /* flex: 1 0 50%;
                max-width: 50%;
                @media @medium{
                    flex:0 0 100%;
                    max-width: 100%;
                }
                */
  flex: 0 0 100%;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .work--archive .work__metas,
  .work--archive .work__cta {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 800px) {
  .work--archive .work__metas,
  .work--archive .work__cta {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.work--archive .work__synopsisTitle,
.work--archive .work__synopsisText,
.work--archive .work__actors {
  margin-top: 20px;
}
.work--archive .work__title,
.work--archive .work__figure,
.work--archive .work__cta,
.work--archive .work__metas,
.work--archive .work__synopsisTitle,
.work--archive .work__synopsisText,
.work--archive .work__actors {
  padding: 0 10px;
}
.work--single {
  margin: 0 -10px;
  padding: 10px 0;
  max-width: 1200px;
}
@media only screen and (max-width: 500px) {
  .work--single {
    margin: 0;
    text-align: justify;
  }
}
.work--single .work__body {
  display: flex;
}
@media only screen and (max-width: 500px) {
  .work--single .work__body {
    flex-direction: column;
  }
}
.work--single .work__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.work--single .work__content [class*=work] {
  padding: 10px;
}
.work--single .work__figure {
  padding: 10px;
  flex: 1 0 30%;
}
@media only screen and (max-width: 500px) {
  .work--single .work__figure {
    width: 220px;
  }
}
.work--single .work__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.work--single .work__cta {
  display: flex;
  justify-content: space-between;
  flex: 1 0 100%;
}
@media only screen and (max-width: 800px) {
  .work--single .work__cta {
    flex-direction: column;
  }
}
.work--single .work__cta a {
  flex: 0 0 45%;
}
@media only screen and (max-width: 800px) {
  .work--single .work__cta a:nth-child(2) {
    margin-top: 20px;
  }
}
.work--single .work__metas {
  flex: 0 0 100%;
}
.work--single .work__metas .meta {
  max-width: 400px;
}
.work--single .work__stars,
.work--single .work__comments {
  flex: 0 0 200px;
}
.work--single .work__stars .stars {
  font-size: 30px;
}
.work--single .work__comments {
  flex: 0 0 auto;
}
.work--single .work__synopsisTitle {
  flex: 0 0 100%;
}
.work--suggestion {
  display: flex;
  flex-flow: row;
  font-size: 0.875em;
}
.work--suggestion .meta__key {
  width: 100%;
}
.work--suggestion .meta__val {
  width: 100%;
}
.work--suggestion .work__picture {
  flex: 0 0 40%;
}
.work--suggestion .work__picture img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.work--suggestion .work__caption {
  flex: 1 0 auto;
  display: block;
  padding-left: 1em;
  max-width: 60%;
}
.work--suggestion .work__title {
  color: #FFFFFF;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
