/*
Theme Name: Gauchebdo
Theme URI: http://underscores.me/
Author: Wonderweb
Author URI: http://www.wonderweb.ch
Description: Based on underscore
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gauchebdo
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Gauchebdo is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url("../bower_components/font-awesome/css/font-awesome.css");
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

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

figure {
  margin: 1em 40px; }

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

pre {
  overflow: auto; }

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button[disabled],
html input[disabled] {
  cursor: default; }

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

input {
  line-height: normal; }

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*--------------------------------------------------------------
CUSTOM VARS & MIXINS **************** GAUCHE HEBDO
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #000;
  font-family: "Crimson Text", Times, serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.618em; }

h1, h2, h3, h4, h5, h6 {
  clear: both; }

p {
  margin-bottom: 1.5em; }

dfn, cite, em, i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.618em;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark, ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: white;
  /* Fallback for when there is no custom background color defined. */ }

blockquote, q {
  quotes: "" ""; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: ""; }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul, ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

table {
  margin: 0 0 1.5em;
  width: 100%; }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #9a141d;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8); }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02); }
  button:active, button:focus,
  input[type="button"]:active,
  input[type="button"]:focus,
  input[type="reset"]:active,
  input[type="reset"]:focus,
  input[type="submit"]:active,
  input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15); }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 1; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  textarea:focus {
    color: #111;
    outline: none; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px; }

textarea {
  padding-left: 3px;
  width: 100%; }

/*--------------------------------------------------------------
# Navigation CUSTOM **************** GAUCHE HEBDO
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #E4303C; }
  a:visited {
    color: #E4303C; }
  a:hover, a:focus, a:active {
    color: #E4303C; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#cssmenu {
  background: #E4303C;
  margin: 0;
  width: auto;
  padding: 0;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 9999; }
  #cssmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block; }
    #cssmenu ul:after {
      content: ' ';
      display: block;
      font-size: 0;
      height: 0;
      clear: both;
      visibility: hidden; }
    #cssmenu ul li {
      margin: 0;
      padding: 0;
      display: block;
      position: relative;
      width: auto;
      float: left; }
      #cssmenu ul li ul {
        position: absolute;
        left: -9999px;
        top: auto;
        width: 170px;
        display: block;
        width: 170px;
        display: block; }
        #cssmenu ul li ul li {
          max-height: 0;
          position: absolute;
          transition: max-height 0.4s ease-out;
          background: #E4303C;
          width: 170px;
          display: block; }
          #cssmenu ul li ul li.has-sub:after {
            display: block;
            position: absolute;
            content: '';
            height: 10px;
            width: 10px;
            border-radius: 5px;
            background: #F7F7F7;
            z-index: 1;
            top: 13px;
            right: 15px;
            right: auto;
            left: 15px; }
          #cssmenu ul li ul li.has-sub:before {
            display: block;
            position: absolute;
            content: '';
            height: 0;
            width: 0;
            border: 3px solid transparent;
            border-left-color: #E4303C;
            z-index: 2;
            top: 15px;
            right: 15px;
            right: auto;
            left: 15px;
            border-left-color: transparent;
            border-right-color: #E4303C; }
          #cssmenu ul li ul li a {
            font-size: 14px;
            font-weight: 400;
            text-transform: none;
            color: #F7F7F7;
            letter-spacing: 0;
            display: block;
            width: 170px;
            padding: 11px 10px 11px 20px; }
          #cssmenu ul li ul li:hover > a, #cssmenu ul li ul li.active > a {
            background-color: #dedddd;
            color: #E4303C; }
          #cssmenu ul li ul li:hover:after, #cssmenu ul li ul li.active:after {
            background: #E4303C; }
          #cssmenu ul li ul li:hover > ul {
            left: 100%;
            top: 0; }
            #cssmenu ul li ul li:hover > ul > li {
              max-height: 72px;
              position: relative; }
      #cssmenu ul li a {
        text-decoration: none;
        display: block;
        margin: 0;
        transition: color .2s ease;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        color: #F7F7F7;
        padding: 15px 20px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 14px;
        z-index: 2;
        position: relative;
        display: block; }
        @media only screen and (min-width: 320px) and (max-width: 1024px) {
          #cssmenu ul li a {
            padding: 1rem;
            font-size: .8rem; } }
        #cssmenu ul li a:hover {
          background: #F7F7F7;
          color: #E4303C !important; }
      #cssmenu ul li:after {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        z-index: 0;
        background: #E4303C;
        transition: height .2s; }
      #cssmenu ul li.current-menu-ancestor li a {
        background-color: #F7F7F7;
        color: #E4303C !important; }
      #cssmenu ul li.has-sub.current-menu-parent {
        background-color: #F7F7F7;
        color: #E4303C !important; }
      #cssmenu ul li.has-sub li > a {
        background-color: #F7F7F7;
        color: #E4303C; }
      #cssmenu ul li.has-sub > a {
        padding-right: 40px; }
        #cssmenu ul li.has-sub > a.open {
          background-color: #F7F7F7;
          color: #E4303C; }
        #cssmenu ul li.has-sub > a:after {
          display: block;
          content: '';
          background: #E4303C;
          height: 12px;
          width: 12px;
          position: absolute;
          border-radius: 13px;
          right: 14px;
          top: 16px; }
        #cssmenu ul li.has-sub > a:before {
          display: block;
          content: '';
          border: 4px solid transparent;
          border-top-color: #F7F7F7;
          z-index: 2;
          height: 0;
          width: 0;
          position: absolute;
          right: 16px;
          top: 21px; }
  #cssmenu.align-center > ul {
    text-align: center; }
    #cssmenu.align-center > ul ul {
      text-align: left; }
    #cssmenu.align-center > ul > li {
      float: none;
      display: inline-block; }
  #cssmenu.align-right > ul {
    float: right; }
  #cssmenu.align-right > li :hover > ul {
    left: auto;
    right: 0; }
  #cssmenu.align-right ul ul li:hover > ul {
    right: 100%;
    left: auto; }
  #cssmenu.align-right ul ul li a {
    text-align: right; }
  #cssmenu > ul > li:hover > a {
    color: #F7F7F7; }
    #cssmenu > ul > li:hover > a:after {
      background: #F7F7F7; }
    #cssmenu > ul > li:hover > a:before {
      border-top-color: #E4303C; }
  #cssmenu > ul > li:hover:after {
    height: 100%; }
  #cssmenu > ul > li:hover > ul {
    left: 0; }
    #cssmenu > ul > li:hover > ul > li {
      max-height: 72px;
      position: relative; }
  #cssmenu > ul > li.active:after {
    height: 100%; }
  #cssmenu > ul > li.active > a {
    background: #F7F7F7;
    color: #E4303C; }
    #cssmenu > ul > li.active > a:after {
      background: #F7F7F7; }
    #cssmenu > ul > li.active > a:before {
      border-top-color: #E4303C; }
  #cssmenu #menu-button {
    display: none; }
  #cssmenu:after {
    content: ' ';
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden; }

#cssmenu ul li.has-sub.current-menu-parent a {
  color: #E4303C !important; }

@media only screen and (max-width: 480px) {
  #cssmenu .menu-top-container {
    background-color: #F7F7F7;
    width: 100%; }
    #cssmenu .menu-top-container li a {
      color: #E4303C; }
      #cssmenu .menu-top-container li a .fa {
        margin-right: .5rem;
        width: 1rem;
        text-align: center; }
  #cssmenu ul {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease-out;
    -moz-transition: max-height 0.35s ease-out;
    -ms-transition: max-height 0.35s ease-out;
    -o-transition: max-height 0.35s ease-out;
    transition: max-height 0.35s ease-out; }
  #cssmenu > ul > li > ul {
    width: 100%;
    display: block; }
  #cssmenu.align-right ul li a {
    text-align: left; }
  #cssmenu > ul > li > ul > li {
    width: 100%;
    display: block; }
  #cssmenu.align-right ul ul li a {
    text-align: left; }
  #cssmenu > ul > li > ul > li > a {
    width: 100%;
    display: block; }
  #cssmenu ul li ul li a {
    width: 100%; }
  #cssmenu.align-center > ul {
    text-align: left; }
  #cssmenu.align-center > ul > li {
    display: block; }
  #cssmenu ul.open {
    max-height: 1000px;
    border-top: 1px solid rgba(110, 110, 110, 0.25); }
  #cssmenu ul {
    width: 100%; }
  #cssmenu ul > li {
    float: none;
    width: 100%; }
  #cssmenu ul li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 20px; }
  #cssmenu ul > li:after {
    display: none; }
  #cssmenu ul li.has-sub > a:after,
  #cssmenu ul li.has-sub > a:before,
  #cssmenu ul li ul li.has-sub:after,
  #cssmenu ul li ul li.has-sub:before {
    display: none; }
  #cssmenu ul li ul,
  #cssmenu ul li ul li ul,
  #cssmenu ul li ul li:hover > ul,
  #cssmenu.align-right ul li ul,
  #cssmenu.align-right ul li ul li ul,
  #cssmenu.align-right ul li ul li:hover > ul {
    left: 0;
    position: relative;
    right: auto; }
  #cssmenu ul li ul li,
  #cssmenu ul li:hover > ul > li {
    max-height: 999px;
    position: relative;
    background: none; }
  #cssmenu ul li ul li a {
    padding: 8px 20px 8px 35px;
    color: #ffffff; }
  #cssmenu ul li ul ul li a {
    padding: 8px 20px 8px 50px; }
  #cssmenu ul li ul li:hover > a {
    color: #000000; }
  #cssmenu #menu-button {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    cursor: pointer; }
  #menu-button:after {
    height: 3px;
    width: 15px;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    background: #F7F7F7;
    box-shadow: 0 5px 0 #F7F7F7, 0 -5px 0 #F7F7F7;
    content: '';
    display: block;
    margin: 20px 0;
    border-radius: 1px; }
  #cssmenu > ul > li > a {
    border-bottom: 1px solid white; }
  #cssmenu ul li.has-sub > ul {
    max-height: 100%;
    overflow: auto;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid white; }
    #cssmenu ul li.has-sub > ul li.active a {
      background-color: #dedddd; }
  #cssmenu ul li.has-sub > a {
    padding-right: 40px; } }
  @media only screen and (max-width: 480px) and (min-width: 320px) and (max-width: 1024px) {
    #cssmenu ul li.has-sub > a {
      padding-right: 29px;
      margin-top: 4px; } }

.pagination ul {
  margin: 1rem 0;
  text-align: center; }

.pagination li {
  display: inline; }

.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled {
  color: #E4303C;
  text-decoration: none; }

.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled {
  background-color: white;
  border-radius: 3px;
  cursor: pointer;
  padding: .5rem 1rem; }

.pagination li a:hover,
.pagination li.active a {
  color: black; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:hover, .screen-reader-text:active, .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: #000;
    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. */ }

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */ }
  .widget select {
    max-width: 100%; }

/* Search widget. */
.widget_search .search-submit {
  display: none; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.hentry {
  margin: 0 0 1.5em; }

.byline,
.updated:not(.published) {
  display: none; }

.single .byline,
.group-blog .byline {
  display: inline; }

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

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

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none; }

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

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

.gallery-caption {
  display: block; }

/*--------------------------------------------------------------
CUSTOM STYLES **************** GAUCHE HEBDO
--------------------------------------------------------------*/
@font-face {
  font-family: 'Lato';
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Lato-regular/Lato-regular.eot");
  src: url("../fonts/Lato-regular/Lato-regular-.eot#iefix") format("embedded-opentype"), local("Lato Regular"), local("Lato-regular"), url("../fonts/Lato-regular/Lato-regular.woff2") format("woff2"), url("../fonts/Lato-regular/Lato-regular.woff") format("woff"), url("../fonts/Lato-regular/Lato-regular.ttf") format("truetype"), url("../fonts/Lato-regular/Lato-regular.svg#Lato") format("svg"); }

@font-face {
  font-family: 'Lato';
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Lato-700/Lato-700.eot");
  src: url("../fonts/Lato-700/Lato-700-.eot#iefix") format("embedded-opentype"), local("Lato Bold"), local("Lato-700"), url("../fonts/Lato-700/Lato-700.woff2") format("woff2"), url("../fonts/Lato-700/Lato-700.woff") format("woff"), url("../fonts/Lato-700/Lato-700.ttf") format("truetype"), url("../fonts/Lato-700/Lato-700.svg#Lato") format("svg"); }

@font-face {
  font-family: 'Lato';
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Lato-900/Lato-900.eot");
  src: url("../fonts/Lato-900/Lato-900-.eot#iefix") format("embedded-opentype"), local("Lato Black"), local("Lato-900"), url("../fonts/Lato-900/Lato-900.woff2") format("woff2"), url("../fonts/Lato-900/Lato-900.woff") format("woff"), url("../fonts/Lato-900/Lato-900.ttf") format("truetype"), url("../fonts/Lato-900/Lato-900.svg#Lato") format("svg"); }

@font-face {
  font-family: 'Crimson Text';
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Crimson-Text-regular/Crimson-Text-regular.eot");
  src: url("../fonts/Crimson-Text-regular/Crimson-Text-regular-.eot#iefix") format("embedded-opentype"), local("Crimson Text"), local("Crimson-Text-regular"), url("../fonts/Crimson-Text-regular/Crimson-Text-regular.woff2") format("woff2"), url("../fonts/Crimson-Text-regular/Crimson-Text-regular.woff") format("woff"), url("../fonts/Crimson-Text-regular/Crimson-Text-regular.ttf") format("truetype"), url("../fonts/Crimson-Text-regular/Crimson-Text-regular.svg#CrimsonText") format("svg"); }

* {
  box-sizing: border-box;
  word-wrap: break-word; }

body {
  border-top: 0.125rem solid #DFD8CF;
  background-color: white; }

a {
  text-decoration: none; }

blockquote {
  padding: 1.618rem;
  font-size: 1.25rem;
  background-color: #E4303C;
  border: 0.0625rem solid white;
  color: #000; }
  blockquote a, blockquote a:visited, blockquote a:active {
    color: inherit; }

ul, ol {
  padding: 0;
  margin: 0 0 1.618em 1.618em; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  line-height: 1.313em;
  font-weight: 700; }

h1 {
  font-size: 3em;
  margin: 0.563em 0; }

h2 {
  font-size: 2.25em;
  margin: 0.625em 0; }

h3 {
  font-size: 1.5em;
  margin: 1.313em 0; }

h4 {
  font-size: 1.313em;
  margin: 1.313em 0; }

h5 {
  font-size: 1.125em;
  margin: 1.313em 0; }

h6 {
  font-size: 1em;
  margin: 0.75em 0; }

.widget-title {
  font-size: 0.8em;
  font-weight: 700;
  background: #E4303C;
  color: white;
  padding: 0.3125rem 0.625rem;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase; }

.mobile-only {
  display: none; }

.desktop-only {
  display: block; }

.content-area {
  float: left;
  margin: 0 -30% 0 0;
  width: 100%; }

.site-main {
  margin: 0 30% 0 0; }

.site-content .widget-area {
  float: right;
  overflow: hidden;
  width: 30%; }

.site-footer {
  clear: both;
  width: 100%; }

.single-product .content-area {
  width: 100%;
  padding: 1rem; }
  @media (min-width: 56.25rem) {
    .single-product .content-area {
      width: 70%; } }
  .single-product .content-area .price {
    display: none; }
  .single-product .content-area div p {
    font-size: 1.5rem; }
  .single-product .content-area .cart {
    width: 50%;
    margin: 0 auto; }
    .single-product .content-area .cart .button {
      width: 100%; }

.site {
  padding-top: 0; }

.site-header {
  max-width: 71.3867306057rem;
  margin: 0 auto 0 auto; }
  .woocommerce-page .site-header {
    display: none; }
  .woocommerce-account .site-header {
    display: block !important; }

.site-header-message {
  background-color: #e3d5b6;
  padding: .5rem;
  margin: 0 auto 1rem auto; }
  .site-header-message p {
    margin: 0;
    font-family: "Lato", sans-serif; }
  .site-header-message a {
    padding: .2rem .6rem;
    background: #e4303c;
    color: white;
    font-size: 110%; }
  .woocommerce-page .site-header-message {
    display: none; }

.site-branding {
  max-width: 71.3867306057rem;
  margin: 0.809rem auto 0 auto;
  font-size: 0.5em; }
  .site-branding img {
    width: 100%; }

.abovecontent p {
  display: none; }

.site-title {
  font-weight: 700;
  line-height: 0; }

.site-title,
.site-description {
  text-align: center;
  vertical-align: bottom;
  margin: 0;
  padding: 0; }

.site-description {
  margin: 0;
  font-style: italic;
  text-align: center;
  background: white;
  color: #E4303C;
  font-size: 1rem;
  padding: 1rem 0; }

.site-description.mobile-only {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 12px; }

.site-content {
  max-width: 71.3867306057rem;
  margin: 1.618rem auto 0 auto; }

.hentry,
.comments-area,
.paging-navigation {
  padding-left: 4.235801032rem;
  padding-right: 4.235801032rem;
  padding-top: 2.617924rem;
  padding-bottom: 2.617924rem;
  margin: 0 0 1.618rem 0;
  background-color: #fff; }

.page-header,
.site-main .posts-navigation {
  padding-left: 1.058950258rem;
  padding-right: 1.058950258rem;
  padding-top: 0.654481rem;
  padding-bottom: 0.654481rem;
  margin: 0 0 0.4045rem 0;
  border: none;
  color: black; }

.nav-links {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  margin: 0 !important; }
  .nav-links a:hover,
  .nav-links a:visited:hover {
    color: black; }
  .nav-links .nav-next {
    float: right; }
  .nav-links .nav-previous {
    float: left; }
  .nav-links .nav-previous:before {
    font-family: "FontAwesome";
    content: "\f104";
    margin-right: 0.5em; }
  .nav-links .nav-next:after {
    font-family: "FontAwesome";
    content: "\f105";
    margin-left: 0.5em; }

.sticky {
  margin: 0;
  padding: 0 !important;
  background-color: #F7F7F7;
  width: 100%; }
  .sticky .post-thumbnail {
    margin: 0; }
  .sticky .entry-title, .sticky h4, .sticky .entry-meta {
    padding: 0 3.5rem; }
  .sticky .entry-meta {
    margin-bottom: 1rem; }

.flickity-viewport {
  background-color: #F7F7F7;
  margin-bottom: 2em; }

.post-thumbnail {
  margin-top: 1.618rem;
  margin-right: -4.235801032rem;
  margin-bottom: 1.618rem;
  margin-left: -4.235801032rem; }
  .bx-wrapper .post-thumbnail {
    width: 800px;
    height: 300px;
    overflow: hidden; }
  .post-thumbnail img {
    min-width: 100%;
    vertical-align: bottom; }
  .edition-pdf .post-thumbnail {
    width: 30%;
    float: left; }
  .edition-pdf .post-thumbnail img {
    min-width: 0; }

.edition-pdf .entry-content .download-area {
  content: "";
  display: table;
  margin: 2rem 0;
  width: 100%; }

.edition-pdf .entry-content .post-thumbnail {
  float: left;
  width: 40%;
  margin: 0; }
  .edition-pdf .entry-content .post-thumbnail figure {
    margin: 0 1rem 0 0; }

.edition-pdf .entry-content .message {
  text-align: center;
  float: right;
  margin: 0;
  padding: 1rem;
  width: 60%; }

.page-header .page-title {
  text-align: center;
  font-size: 1.5em; }
  .search .page-header .page-title span {
    color: #E4303C; }

.logo {
  text-align: center; }
  .logo img {
    width: 100%;
    max-width: 78rem; }

.main-navigation {
  text-transform: uppercase;
  font-family: "Lato", sans-serif; }

.entry-content {
  font-size: 1.3rem;
  margin: 0; }
  .entry-content a img {
    vertical-align: bottom; }
  .entry-content a, .entry-content a:link, .entry-content a:visited {
    border-bottom: 0.0625rem dotted #000;
    color: #000; }
  .entry-content strong {
    font-family: "Lato", sans-serif; }

.entry-header .entry-title,
.entry-header h2,
.bx-wrapper .entry-title,
.bx-wrapper h2 {
  font-weight: 900; }
  .entry-header .entry-title a,
  .entry-header h2 a,
  .bx-wrapper .entry-title a,
  .bx-wrapper h2 a {
    color: black; }

.entry-header .surtitre,
.bx-wrapper .surtitre {
  text-transform: uppercase;
  color: #E4303C; }

.entry-meta {
  display: inline-block;
  font-size: 1em;
  font-weight: 300;
  padding: 0; }
  .entry-meta a, .entry-meta a:visited, .entry-meta a:active {
    color: #E4303C; }
  .entry-meta a:hover, .entry-meta a:active {
    border-bottom: 1px dotted #fff; }

.entry-footer {
  text-align: center;
  margin: 2.617924rem 0 1.618rem 0;
  line-height: 3em;
  color: #E4303C;
  border-bottom: 0.125rem solid #fffbfb; }
  .entry-footer span {
    margin: 0 0.618em;
    padding: 0 0.618em;
    display: inline-block; }
  .entry-footer span {
    border-top: 0.125rem solid #fffbfb; }

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .comment-list .comment {
    padding: 1.618rem;
    background-color: rgba(221, 193, 174, 0.05);
    border: 0.0625rem solid rgba(108, 67, 38, 0.05);
    box-shadow: inset 0 0.125rem 0.3125rem rgba(194, 188, 184, 0.05); }

.message {
  background-color: #F7F7F7;
  border: 1px solid #d1d1d1;
  color: #000;
  margin: 2rem 0;
  padding: 1rem; }
  .message a, .message a:visited, .message a:active {
    color: #E4303C; }

.cat-links:before {
  font-family: "FontAwesome";
  content: "\f07c";
  margin-right: 0.5em; }

.tags-links:before {
  font-family: "FontAwesome";
  content: "\f02c";
  margin-right: 0.5em; }

.comments-link:before {
  font-family: "FontAwesome";
  content: "\f075";
  margin-right: 0.5em; }

.edit-link:before {
  font-family: "FontAwesome";
  content: "\f040";
  margin-right: 0.5em; }

.tags-links {
  margin-left: 1rem; }

.widget {
  padding: 0;
  margin-left: 1.618rem;
  margin-bottom: 1.618rem;
  background-color: white;
  border: 0.0625rem solid white;
  paddding-top: 0;
  color: #000; }
  .widget a, .widget a:visited, .widget a:active {
    color: black; }
  .widget dd, .widget address {
    margin: 0; }
  .widget .post-date, .widget .wprss-feed-meta {
    font-size: .8em;
    display: block;
    color: #E4303C; }
  .widget .load-more {
    margin: 0;
    text-align: right; }
    .widget .load-more a {
      font-family: "Lato", sans-serif;
      font-weight: 300;
      text-decoration: none;
      border: 0;
      color: #E4303C;
      font-size: 0.8em; }
      .widget .load-more a:before {
        font-family: "FontAwesome";
        content: "\f178";
        margin-right: 0.5em;
        color: #ccc; }

.widget ul {
  font-family: "Lato", sans-serif;
  list-style: none;
  margin: 0;
  padding: 0; }
  .widget ul li {
    padding: .3em 2em;
    border-bottom: 0.0625rem solid #E4303C; }
    .widget ul li.page_item_has_children, .widget ul li.menu-item-has-children {
      padding-bottom: 0;
      border: none; }
    .widget ul li:before {
      margin-left: -2em;
      margin-right: .8em;
      font-family: "FontAwesome";
      content: "\f005";
      color: #999; }
    .widget ul li li li li {
      padding-left: 0; }
  .widget ul.edition-pdf li {
    border: 0;
    padding: 0;
    margin-bottom: 1rem; }
    .widget ul.edition-pdf li:before {
      content: "";
      padding: 0;
      margin: 0; }
  .widget ul .children li:first-of-type,
  .widget ul .sub-menu li:first-of-type {
    margin-top: 1em;
    border-top: 0.0625rem solid white; }

#dpe_fp_widget-3 li {
  border: 0;
  padding: 0; }
  #dpe_fp_widget-3 li img {
    width: 100%; }
  #dpe_fp_widget-3 li:before {
    display: none;
    margin: 0;
    font-family: none;
    content: ""; }

#dpe_fp_widget-5 li:before,
#dpe_fp_widget-6 li:before {
  font-family: "FontAwesome";
  content: "\f040"; }

.tribe-events-list-widget ul li a {
  font-weight: 700; }

.tribe-events-list-widget ul li:before {
  content: "\f0a1"; }

.tribe-events-list-widget ul .duration {
  font-size: .8em;
  display: block;
  color: #E4303C; }

#main h2.tribe-events-single-event-title.summary.entry-title {
  font-size: 2em;
  margin-bottom: 0; }

.tribe-events-schedule h3 {
  font-size: 1.5em;
  margin-top: 0;
  color: #E4303C; }

.tribe-events-nav-previous {
  text-align: left; }

.tribe-events-cal-links a {
  margin-right: 1rem; }

.tribe-events-meta-group-details {
  border: 1px solid #dedddd;
  background-color: #F7F7F7;
  padding: 1rem; }
  .tribe-events-meta-group-details h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    display: inline-block;
    border-bottom: 1px solid; }
  .tribe-events-meta-group-details dd {
    margin: 0; }

.tribe-bar-disabled {
  display: none; }

#main .page .tribe-events-list-event-title.entry-title {
  font-size: 1.5rem;
  padding: 0;
  margin: 1rem 0 0;
  line-height: 1.2; }

.tribe-events-event-meta .time-details {
  color: #E4303C; }

.entry-content a.tribe-events-read-more {
  color: #E4303C;
  border: 0;
  text-align: right; }

#tribe-events-content h2 {
  font-size: 2rem !important; }

#tribe-events-content ul.tribe-events-sub-nav {
  text-align: left;
  font-size: 1rem; }
  #tribe-events-footer #tribe-events-content ul.tribe-events-sub-nav {
    border-top: 1px solid; }
  #tribe-events-header #tribe-events-content ul.tribe-events-sub-nav {
    border-bottom: 1px solid; }

#tribe-events-content .tribe-events-abbr {
  color: #E4303C; }

.widget_dpe_fp_widget a {
  font-family: "Lato", sans-serif;
  font-weight: 700; }

.widget_dpe_fp_widget .post-date {
  font-weight: 300; }

input.search-field {
  box-sizing: border-box;
  width: 100%; }

.aboveheader {
  max-width: 71.3867306057rem;
  margin: 0 auto;
  font-size: 1rem;
  font-family: "Crimson Text", Times, serif;
  padding: 0; }
  .aboveheader:after, .aboveheader:before {
    content: "";
    display: table;
    clear: both; }
  .aboveheader a {
    margin-right: 0.618em; }
    .aboveheader a:link, .aboveheader a:visited {
      opacity: 0.75;
      color: black; }
    .aboveheader a:hover, .aboveheader a:active {
      opacity: 1; }
  .aboveheader .aboveheader-right {
    float: right; }
  .aboveheader .aboveheader-left {
    float: left; }
  .aboveheader i {
    margin-right: .5rem; }
  .woocommerce-page .aboveheader {
    display: none; }

.menu-top-container,
.menu-social-container {
  float: right; }
  .menu-top-container ul,
  .menu-social-container ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .menu-top-container ul li,
    .menu-social-container ul li {
      float: left;
      margin-right: 1em; }

.menu-social-container ul li {
  margin-right: .5rem; }
  .menu-social-container ul li a {
    margin-right: 0;
    font-size: 1.5rem; }

.aboveheader-left a {
  padding-left: 1rem; }

.abovecontent {
  max-width: 71.3867306057rem;
  margin: 0 auto;
  background-color: #fff; }

.widget_recent_comments ul li:before {
  content: "\f075"; }

.widget_archive ul li:before {
  content: "\f187"; }

.widget_categories ul li:before {
  content: "\f07c"; }

.widget_pages ul li:before,
.widget_nav_menu ul li:before {
  content: "\f15c"; }

.widget_pages ul .children li:before,
.widget_pages ul .sub-menu li:before,
.widget_nav_menu ul .children li:before,
.widget_nav_menu ul .sub-menu li:before {
  content: "\f101"; }

.widget_pages ul .children .children li:before,
.widget_pages ul .sub-menu .sub-menu li:before,
.widget_nav_menu ul .children .children li:before,
.widget_nav_menu ul .sub-menu .sub-menu li:before {
  content: "\f105"; }

/** search
 */
#searchform {
  border: 0;
  background-color: transparent;
  position: relative; }
  .page-content #searchform {
    width: 50%;
    margin: 0 auto 1rem auto; }
  #searchform .search-submit {
    display: block;
    top: 0;
    right: 0;
    position: absolute;
    padding: .5em;
    height: 2em;
    border: 1px solid white;
    font-size: 1em;
    width: 5rem; }

.page-content {
  background-color: #fff; }

footer.container {
  background-color: #F7F7F7;
  margin-top: 1rem; }
  .woocommerce-page footer.container {
    display: none; }

.header-container {
  background-color: #E4303C; }

.site-footer {
  padding-top: 1.618em;
  padding-bottom: 1.618em;
  max-width: 71.3867306057rem;
  margin: 0 auto;
  background-color: #F7F7F7; }
  .site-footer .footer-widget-areas:before, .site-footer .footer-widget-areas:after {
    content: "";
    display: table;
    clear: both; }
  .site-footer .footer-widget-area {
    float: left;
    width: 33.3333333333%;
    margin: 0;
    padding: 1rem;
    background-color: transparent; }
    .site-footer .footer-widget-area .widget {
      margin: 0 0 1rem 0;
      padding: 0;
      background-color: transparent;
      background-color: transparent;
      border: none;
      box-shadow: none;
      paddding-top: 0;
      color: #000; }
      .site-footer .footer-widget-area .widget .widget-title {
        background: none;
        color: #E4303C; }
      .site-footer .footer-widget-area .widget ul, .site-footer .footer-widget-area .widget h1 {
        padding: 0; }
      .site-footer .footer-widget-area .widget h1 {
        color: #E4303C; }
      .site-footer .footer-widget-area .widget a, .site-footer .footer-widget-area .widget a:visited, .site-footer .footer-widget-area .widget a:active {
        color: #E4303C; }
      .site-footer .footer-widget-area .widget dd, .site-footer .footer-widget-area .widget address {
        margin: 0; }
      .site-footer .footer-widget-area .widget .post-date {
        font-size: .8em;
        display: block;
        color: #000; }
      .site-footer .footer-widget-area .widget img {
        display: none; }
      .site-footer .footer-widget-area .widget .load-more {
        text-align: left; }
        .site-footer .footer-widget-area .widget .load-more a {
          border: 0 !important; }
      .site-footer .footer-widget-area .widget a, .site-footer .footer-widget-area .widget a:link, .site-footer .footer-widget-area .widget a:visited {
        color: black; }
      .site-footer .footer-widget-area .widget .edition-pdf li {
        margin-bottom: 0; }
      .site-footer .footer-widget-area .widget li {
        padding: 0;
        border: none; }
        .site-footer .footer-widget-area .widget li.page_item_has_children, .site-footer .footer-widget-area .widget li.menu-item-has-children {
          padding-bottom: 0;
          border: none; }
        .site-footer .footer-widget-area .widget li:before {
          margin-left: 0;
          margin-right: 0;
          font-family: "FontAwesome";
          content: ""; }
        .site-footer .footer-widget-area .widget li li li li {
          padding-left: 0; }

.author .page-header .page-title {
  margin-bottom: 0; }

.author .email-auteur-btn {
  display: block;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem; }

.author .email-auteur {
  display: none;
  background-color: #F7F7F7;
  border: 1px solid #d1d1d1;
  color: #000;
  padding: 1rem; }
  .author .email-auteur a, .author .email-auteur a:visited, .author .email-auteur a:active {
    color: #E4303C; }

.author form p {
  margin: 0; }

.author form input[type='submit'] {
  background-color: #E4303C;
  color: white;
  border: 0;
  padding: 1rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  box-shadow: none;
  text-shadow: none; }

/* BxSlider */
.bx-wrapper {
  margin-bottom: 1rem !important; }

#secondary .widget.widget_search h1 {
  display: none; }

#secondary .widget .edition-pdf li.imhover {
  background-color: white; }
  #secondary .widget .edition-pdf li.imhover img {
    transition: all 0.5s ease;
    -webkit-box-shadow: -5px 5px 6px #CCC;
    -moz-box-shadow: -5px 5px 6px #CCC;
    box-shadow: -5px 5px 6px #CCC; }

#secondary .widget .edition-pdf a {
  text-align: center;
  width: 100%;
  display: block;
  margin: 1rem 0; }
  #secondary .widget .edition-pdf a img {
    display: block;
    margin: 0 auto;
    -webkit-box-shadow: 5px 5px 6px #CCC;
    -moz-box-shadow: 5px 5px 6px #CCC;
    box-shadow: 5px 5px 6px #CCC;
    margin-bottom: 1rem;
    width: 50%; }

#text-2 .nav-links {
  display: none; }

.rss-aggregator {
  list-style: none; }
  .entry-content .rss-aggregator {
    margin: 0; }
  .rss-aggregator .feed-item {
    border-bottom: 0.0625rem solid #E4303C;
    margin: 0;
    padding: 0;
    margin-right: 0.8em;
    font-family: "FontAwesome";
    content: "\f005";
    color: #999; }
    .rss-aggregator .feed-item .feed-date {
      padding-left: 1rem; }
    .entry-content .rss-aggregator .feed-item {
      padding: 1rem 0;
      font-size: 1rem; }
      .entry-content .rss-aggregator .feed-item a {
        border: 0;
        color: black;
        font-weight: 600; }
      .entry-content .rss-aggregator .feed-item .wprss-feed-meta {
        font-size: .8rem; }
        .entry-content .rss-aggregator .feed-item .wprss-feed-meta a {
          font-weight: 300; }
      .entry-content .rss-aggregator .feed-item:before {
        margin-right: 1rem; }
    .rss-aggregator .feed-item:before {
      margin-left: 0;
      content: "\f09e"; }

/* blog */
#grid .gutter-sizer {
  width: 2%; }
  #grid .gutter-sizer.item-edition {
    width: 1.25%; }

#grid .hentry {
  padding-left: 1.058950258rem;
  padding-right: 1.058950258rem;
  padding-top: 0;
  padding-bottom: 0.654481rem;
  font-size: .8em;
  width: 49%;
  margin-bottom: 1rem;
  border: 1px solid #dedddd; }
  #grid .hentry .entry-title {
    margin: 1rem 0;
    font-size: 1.625rem; }
    #grid .hentry .entry-title a {
      color: black; }
  #grid .hentry.item-edition {
    width: 19%;
    padding: 0;
    text-align: center; }

#grid .post-thumbnail {
  margin-top: 0;
  margin-right: -1.058950258rem;
  margin-bottom: 1.618rem;
  margin-left: -1.058950258rem; }

#grid .cat-links-head {
  display: block; }

#grid .entry-meta {
  line-height: 1.2em; }

#main .page h1 {
  font-size: 2rem; }

#main .page h2 {
  font-size: 1rem; }

#main .page fieldset {
  margin-top: 2rem;
  padding: 1rem 0;
  border: 0; }
  #main .page fieldset legend {
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    font-weight: 700; }

/* WOOCOMMERCE */
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled {
  display: none; }

.variations_form {
  margin: 2rem; }

.woocommerce.archive h1.page-title {
  font-size: 2rem; }

.woocommerce h3 {
  font-size: .8rem;
  font-weight: 700;
  background: #E4303C;
  color: white;
  padding: 0.3125rem 0.625rem;
  text-transform: uppercase; }

.woocommerce ul.products li.product {
  background-color: #F7F7F7;
  border: 1px solid #d1d1d1;
  color: #000;
  background-color: rgba(227, 213, 182, 0.22);
  border: 0 solid #e3d5b6; }
  .woocommerce ul.products li.product a, .woocommerce ul.products li.product a:visited, .woocommerce ul.products li.product a:active {
    color: #E4303C; }
  .woocommerce ul.products li.product .single_variation_wrap {
    color: #000;
    margin: 1rem 0 0 0;
    padding: 0;
    border: 0;
    background: transparent; }
  .woocommerce ul.products li.product .price {
    font-size: 1rem;
    color: black;
    font-family: "Lato", sans-serif; }
  .woocommerce ul.products li.product a.button.add_to_cart_button.product_type_subscription {
    margin-bottom: 1rem;
    background-color: #E4303C;
    color: white; }
  .woocommerce ul.products li.product.has-post-thumbnail img {
    width: 100%;
    height: 200px; }
  .woocommerce ul.products li.product table {
    background-color: transparent; }
  .woocommerce ul.products li.product td {
    background-color: transparent; }

.woocommerce ul.products li.product h3 {
  font-size: .8rem; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  text-align: center;
  float: left;
  margin: 0 2% 0 0;
  position: relative;
  width: 31%;
  border: 0; }
  .woocommerce ul.products li.product.last,
  .woocommerce-page ul.products li.product.last {
    margin: 0; }
  .woocommerce ul.products li.product h2,
  .woocommerce-page ul.products li.product h2 {
    font-size: 1rem; }
  .woocommerce ul.products li.product p,
  .woocommerce-page ul.products li.product p {
    padding: 1rem; }

.woocommerce.post-type-archive-product .page-title {
  display: none; }

.woocommerce.post-type-archive-product .page-description {
  text-align: center; }
  .woocommerce.post-type-archive-product .page-description h2 {
    font-size: 3.25em;
    font-family: "Crimson Text"; }
    @media (max-width: 25rem) {
      .woocommerce.post-type-archive-product .page-description h2 {
        font-size: 2rem; } }

.abonnement {
  margin-bottom: 5rem; }
  .abonnement p {
    margin-bottom: 0; }
  .abonnement table {
    margin: 1rem 0 auto;
    font-size: .9rem;
    border-top: 1px solid #ccc;
    background-color: rgba(204, 204, 204, 0.42); }
    .abonnement table td {
      border-bottom: 1px solid #ccc;
      padding: 0 .5rem; }
    .abonnement table.variations {
      border: 0;
      background-color: transparent; }
      .abonnement table.variations td {
        border: 0;
        background-color: transparent; }

.woocommerce .woocommerce-info {
  border-color: #E4303C; }
  .woocommerce .woocommerce-info:before {
    color: #E4303C; }

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

.variations .label {
  display: none; }

.variations select {
  display: block;
  margin: 0 auto; }

.site-info {
  font-family: "Lato", sans-serif;
  padding: 1rem;
  font-size: .8rem;
  border-top: 1px solid #ccc;
  text-align: right; }

.page-template-full-width .site-main {
  margin: 0; }

/* CHECKOUT /paiement/ */
.woocommerce-checkout form .form-row label {
  line-height: 1.5;
  font-size: 1rem;
  color: #777;
  font-family: inherit; }

.woocommerce-checkout form .form-row .select2-container {
  line-height: 1.5rem; }

.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-top: 0; }

.woocommerce-checkout #payment div.payment_box {
  padding: 1rem;
  margin: 0; }
  .woocommerce-checkout #payment div.payment_box:after {
    top: 3px; }

.woocommerce-checkout #payment .terms,
.woocommerce-checkout #payment .terms {
  text-align: right;
  padding: 0 0 1em 0; }

.woocommerce table {
  font-size: .85em;
  background-color: #E6E6E6; }
  .woocommerce table td {
    background-color: white; }

.subscription-title p {
  font-size: .9rem;
  color: #E4303C; }

dl.variation {
  font-size: .9rem;
  color: #E4303C; }

.woocommerce td.product-name dl.variation dt {
  font-weight: 700;
  padding: 0;
  margin: 0;
  clear: left; }

.woocommerce td.product-name dl.variation dd {
  padding: 0;
  margin: 0; }
  .woocommerce td.product-name dl.variation dd p {
    margin: 0 .5rem; }

a.reset_variations {
  display: none !important; }

#black-studio-tinymce-3 h2 {
  padding: 1rem 1rem 0;
  background-color: #E4303C; }
  #black-studio-tinymce-3 h2 a {
    color: white; }

/* COMMANDES */
.woocommerce-thankyou-order-received {
  text-align: center;
  padding: 1rem;
  border: 1px solid #18cb4a;
  color: #18cb4a; }

/** POSTFINANCE */
/** page de selection  methode de paiement **/
.boutonPositif, #postfinance-payment-form table #submit3 {
  background: #4db8e8;
  font-size: 1rem;
  box-shadow: none;
  text-shadow: none;
  border: none;
  font-family: "Lato", sans-serif;
  margin: 1rem;
  color: #ffffff;
  padding: 1rem; }

.boutonStandard, #postfinance-payment-form table #btn_Back {
  background: #e3d5b6;
  font-size: 1rem;
  box-shadow: none;
  text-shadow: none;
  border: none;
  font-family: "Lato", sans-serif;
  margin: 1rem;
  color: #E4303C;
  padding: 1rem; }

#postfinance-payment-form table {
  font-size: 1.5rem; }
  #postfinance-payment-form table td {
    padding: .5rem;
    border-bottom: 1px solid #e7e7e7; }
  #postfinance-payment-form table.ncoltable3 td {
    border-bottom: 0; }

#menu-item-6481,
#menu-item-6485,
#menu-item-6486 {
  font-size: 1.5rem;
  margin-right: 0; }
  #menu-item-6481 a,
  #menu-item-6485 a,
  #menu-item-6486 a {
    margin: 0; }

#souscription_actif {
  border: 1px solid #E4303C; }
  #souscription_actif td {
    border-bottom: 1px solid #E4303C;
    padding: 1rem; }

/* simple share icons */
.ssba a,
.ssba a:link,
.ssba a:hover {
  border: 0 !important; }

/* FUN STUFF */
.is-sticky .stickyNav {
  display: block;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.stickyNav {
  background-color: #fff;
  z-index: 9001;
  width: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.28);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: 0.33s -webkit-transform cubic-bezier(0.3, 0.73, 0.3, 0.74);
  transition: 0.33s transform cubic-bezier(0.3, 0.73, 0.3, 0.74);
  transition: 0.33s transform cubic-bezier(0.3, 0.73, 0.3, 0.74), 0.33s -webkit-transform cubic-bezier(0.3, 0.73, 0.3, 0.74); }
  .stickyNav__logo {
    width: 180px;
    float: left;
    height: 60px;
    display: block;
    background: #e73137;
    padding: 1rem;
    vertical-align: middle; }
  .stickyNav__title {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0a0404;
    height: 60px;
    line-height: 60px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    padding-left: 2rem;
    padding-right: 2rem;
    font-family: "Lato", sans-serif; }

/* Sticky header pour les article en single*/
.visibility-prive .single-title {
  z-index: 10 !important; }

article,
.entry-title a,
.widget li,
.widget li a {
  transition: all 0.5s ease; }

.imhover {
  cursor: pointer;
  background-color: #F7F7F7; }
  .imhover h1.entry-title a {
    color: #E4303C !important; }
  .widget .imhover {
    box-shadow: none;
    color: #E4303C; }
    .widget .imhover a {
      color: #E4303C; }

@media (max-width: 71.3867306057rem) {
  h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", sans-serif;
    line-height: 1.313em;
    font-weight: 700; }
  h1 {
    font-size: 2.7em;
    margin: 0.563em 0; }
  h2 {
    font-size: 2.025em;
    margin: 0.625em 0; }
  h3 {
    font-size: 1.35em;
    margin: 1.313em 0; }
  h4 {
    font-size: 1.1817em;
    margin: 1.313em 0; }
  h5 {
    font-size: 1.0125em;
    margin: 1.313em 0; }
  h6 {
    font-size: 1em;
    margin: 0.75em 0; }
  .widget-title {
    font-size: 0.8em;
    font-weight: 700;
    background: #E4303C;
    color: white;
    padding: 0.3125rem 0.625rem;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase; }
  .hentry,
  .comments-area,
  .page-header,
  .site-main .posts-navigation,
  .site-main .post-navigation,
  .paging-navigation {
    padding-left: 2.617924rem;
    padding-right: 2.617924rem;
    padding-top: 1.618rem;
    padding-bottom: 1.618rem; }
  .post-thumbnail {
    margin-top: 1.618rem;
    margin-right: -2.617924rem;
    margin-bottom: 1.618rem;
    margin-left: -2.617924rem; }
  .entry-title {
    margin-bottom: 1.618rem; }
  .site-footer {
    padding: 1.618em; } }

@media (max-width: 56.25rem) {
  .woocommerce ul.products li.product:nth-child(2n),
  .woocommerce-page ul.products li.product:nth-child(2n),
  .woocommerce-page[class*=columns-] ul.products li.product:nth-child(2n),
  .woocommerce[class*=columns-] ul.products li.product:nth-child(2n) {
    float: left;
    clear: none !important; }
  .content-area {
    float: none;
    margin: 0;
    width: 100%;
    padding: 0 1rem; }
    .content-area .hentry {
      padding: 0; }
  .site-main {
    margin: 0; }
  .widget {
    display: none; }
  .rsImg {
    height: 400px !important;
    width: auto !important; }
  .site-footer .widget {
    display: block;
    width: 100%;
    background-color: transparent; }
  .site-footer .footer-widget-area {
    margin: 0;
    margin-top: 1rem;
    padding: .3rem;
    font-size: 80%;
    background-color: transparent; }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    text-align: center;
    float: left;
    margin: 0 2% 0 0;
    position: relative;
    width: 48%;
    margin-bottom: 2rem; }
    .woocommerce ul.products li.product.last,
    .woocommerce-page ul.products li.product.last {
      margin: 0; }
    .woocommerce ul.products li.product h2,
    .woocommerce-page ul.products li.product h2 {
      font-size: 1rem; } }

@media (max-width: 37.5rem) {
  h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", sans-serif;
    line-height: 1.313em;
    font-weight: 700; }
  h1 {
    font-size: 2.4em;
    margin: 0.563em 0; }
  h2 {
    font-size: 1.8em;
    margin: 0.625em 0; }
  h3 {
    font-size: 1.2em;
    margin: 1.313em 0; }
  h4 {
    font-size: 1.0504em;
    margin: 1.313em 0; }
  h5 {
    font-size: 1em;
    margin: 1.313em 0; }
  h6 {
    font-size: 1em;
    margin: 0.75em 0; }
  .widget-title {
    font-size: 0.8em;
    font-weight: 700;
    background: #E4303C;
    color: white;
    padding: 0.3125rem 0.625rem;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase; }
  .rsImg {
    height: 300px !important;
    width: auto !important; }
  .mobile-only {
    display: block; }
  .desktop-only {
    display: none; } }

@media (max-width: 25rem) {
  h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", sans-serif;
    line-height: 1.313em;
    font-weight: 700; }
  h1 {
    font-size: 2.1em;
    margin: 0.563em 0; }
  h2 {
    font-size: 1.575em;
    margin: 0.625em 0; }
  h3 {
    font-size: 1.05em;
    margin: 1.313em 0; }
  h4 {
    font-size: 1em;
    margin: 1.313em 0; }
  h5 {
    font-size: 1em;
    margin: 1.313em 0; }
  h6 {
    font-size: 1em;
    margin: 0.75em 0; }
  .widget-title {
    font-size: 0.8em;
    font-weight: 700;
    background: #E4303C;
    color: white;
    padding: 0.3125rem 0.625rem;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase; }
  .mobile-only {
    display: block; }
  .desktop-only {
    display: none; }
  .hentry,
  .comments-area,
  .page-header,
  .site-main .posts-navigation,
  .site-main .post-navigation,
  .paging-navigation {
    padding-left: 1.618rem;
    padding-right: 1.618rem;
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .post-thumbnail {
    margin-top: 1.618rem;
    margin-right: -1.618rem;
    margin-bottom: 1.618rem;
    margin-left: -1.618rem; }
  .entry-title {
    margin-bottom: 1rem; }
  .widget {
    padding-left: 1.618rem;
    padding-right: 1.618rem;
    padding-top: 1.618rem;
    padding-bottom: 1.618rem; }
  #grid .hentry {
    font-size: 1em;
    width: 100%; }
  .site-footer .widget {
    float: none;
    width: 100%;
    margin: 0;
    padding: 1rem; }
  .site-footer .footer-widget-area {
    float: none;
    width: auto;
    margin: 1rem; }
  .bx-wrapper img {
    height: auto !important;
    width: auto !important; }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    text-align: center;
    float: none;
    margin: 1rem;
    position: relative;
    width: auto; }
    .woocommerce ul.products li.product.last,
    .woocommerce-page ul.products li.product.last {
      margin: 1rem; }
  .woocommerce ul.products li.product:nth-child(2n),
  .woocommerce-page ul.products li.product:nth-child(2n),
  .woocommerce-page[class*=columns-] ul.products li.product:nth-child(2n),
  .woocommerce[class*=columns-] ul.products li.product:nth-child(2n) {
    float: none;
    clear: none !important; } }

/*! Flickity v1.0.2
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1; }

  #message-top_banner {
    display:none!important;
  }
  .aboveheader {
    display:none!important;
  }
  #page {
    margin-top: -15px!important;
  }

/*# sourceMappingURL=style.css.map */
