/*
Theme Name: Peddlar
Version: NE PAS METTRE A JOUR !

*/
/*

WARNING! DO NOT EDIT THIS FILE!

To make it easy to update your theme, you should not edit the styles in this file. Instead use
the custom.css file to add your styles. You can copy a style from this file and paste it in
custom.css and it will override the style in this file. You have been warned! :)

LAYOUT
Layout styles for desktop orientations is included in a media query at the bottom of this file.

*/
/*-------------------------------------------------------------------------------------------

INDEX:

0. RESET

1. SETUP
-1.1 Defaults
-1.2 Hyperlinks
-1.3 Typography
-1.4 Tables

2. SITE STRUCTURE & APPEARANCE
-2.1 Containers & Columns
-2.2 Navigation
  -2.2.1 Drop-down menus
  -2.2.2 Top Navigation (optional)
-2.3 Header
-2.4 Content
  -2.4.1 Slider
-2.5 Sidebar
-2.6 Footer
-2.7 Breadcrumbs

3. POSTS
-3.1 Images
-3.2 Pagination / WP-Pagenavi / Woo-Pagination
-3.3 Single Post Author
-3.4 Post Entry Nav
-3.5 Subscribe & Connect

4. WIDGETS
-4.1 Generic Widgets
-4.2 Specific Widgets

5. COMMENTS
-5.1 Comments
-5.2 Comments Form
-5.3 Pingbacks / Trackbacks

6. PAGE TEMPLATES
-6.1 Timeline Page Template
-6.2 Contact Form
-6.3 Image Gallery

7. FEATURED SLIDER
-7.1 Core Styles
-7.2 Theme Styles
-7.3 Content Styles

8. MISC
-8.1 Forms
-8.2 Buttons (Includes WF chortcode buttons)
-8.3 Shortcode info boxes
-8.4 Gravity forms
-8.5 IE specific styling

-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/* RESET - http://meyerweb.com/eric/tools/css/reset/ | v2.0 | 20110126 */
/*-------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Hand cursor on clickable input elements */
label,
input[type="button"],
input[type="submit"],
input[type="image"],
button {
  cursor: pointer;
}
/* Bicubic resizing for non-native sized IMG: code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
textarea {
  overflow: auto;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}
/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  padding: 10px;
  margin-bottom: 20px;
}
/* Normalize monospace sizing: en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre,
code,
kbd,
samp {
  font-family: monospace, "lato", sans-serif;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover,
a:active {
  outline: none;
}
/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
sup {
  font-size: 50%;
  vertical-align: super;
}
sub {
  font-size: 50%;
  vertical-align: sub;
}
/* Floating & Alignment  */
.fl {
  float: left;
}
.fr {
  float: right;
}
.ac {
  text-align: center;
}
.ar {
  text-align: right;
}
/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.fix:before,
.fix:after,
.col-full:before,
.col-full:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.fix:after,
.col-full:after {
  clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.fix,
.col-full {
  zoom: 1;
}
/*-------------------------------------------------------------------------------------------*/
/* IMPORTS */
/*-------------------------------------------------------------------------------------------*/
/**
 * Variables
 */
/**
 * Functions
 */
/**
 * Mixins
 */
/**
 * Animations
 */
@-webkit-keyframes spin-360 {
  from {
    -webkit-transform: rotate(0);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(0);
    /* FF3.5+ */
    -ms-transform: rotate(0);
    /* IE9 */
    -o-transform: rotate(0);
    /* Opera 10.5 */
    transform: rotate(0);
    zoom: 1;
  }
  to {
    -webkit-transform: rotate(360deg);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(360deg);
    /* FF3.5+ */
    -ms-transform: rotate(360deg);
    /* IE9 */
    -o-transform: rotate(360deg);
    /* Opera 10.5 */
    transform: rotate(360deg);
    zoom: 1;
  }
}
@-moz-keyframes spin-360 {
  from {
    -webkit-transform: rotate(0);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(0);
    /* FF3.5+ */
    -ms-transform: rotate(0);
    /* IE9 */
    -o-transform: rotate(0);
    /* Opera 10.5 */
    transform: rotate(0);
    zoom: 1;
  }
  to {
    -webkit-transform: rotate(360deg);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(360deg);
    /* FF3.5+ */
    -ms-transform: rotate(360deg);
    /* IE9 */
    -o-transform: rotate(360deg);
    /* Opera 10.5 */
    transform: rotate(360deg);
    zoom: 1;
  }
}
@-o-keyframes spin-360 {
  from {
    -webkit-transform: rotate(0);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(0);
    /* FF3.5+ */
    -ms-transform: rotate(0);
    /* IE9 */
    -o-transform: rotate(0);
    /* Opera 10.5 */
    transform: rotate(0);
    zoom: 1;
  }
  to {
    -webkit-transform: rotate(360deg);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(360deg);
    /* FF3.5+ */
    -ms-transform: rotate(360deg);
    /* IE9 */
    -o-transform: rotate(360deg);
    /* Opera 10.5 */
    transform: rotate(360deg);
    zoom: 1;
  }
}
@keyframes spin-360 {
  from {
    -webkit-transform: rotate(0);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(0);
    /* FF3.5+ */
    -ms-transform: rotate(0);
    /* IE9 */
    -o-transform: rotate(0);
    /* Opera 10.5 */
    transform: rotate(0);
    zoom: 1;
  }
  to {
    -webkit-transform: rotate(360deg);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(360deg);
    /* FF3.5+ */
    -ms-transform: rotate(360deg);
    /* IE9 */
    -o-transform: rotate(360deg);
    /* Opera 10.5 */
    transform: rotate(360deg);
    zoom: 1;
  }
}
body {
  *zoom: 1;
}
body:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
/*-------------------------------------------------------------------------------------------*/
/* 1. SETUP */
/*-------------------------------------------------------------------------------------------*/
/* 1.1 Defaults */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  line-height: 1.618;
  color: #474747;
  font-family: "lato", sans-serif;
  font-weight: 400;
  padding: 0 1.618em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #f7f7f7;
  word-wrap: break-word;
}

body#template-blog {
  background: #303030;
  color: #fff;
}

body#template-blog .autocomplete-suggestion{
  color: black;
}

body#template-blog #content header.head-title{
  color:#F1F1F1;
  padding:10px 0;
  margin: 20px 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
hr {
  background-color: #e6e6e6;
  border: 0;
  height: 1px;
  margin-bottom: 1.618em;
}
/* 1.2 Hyperlinks */
a {
  color: #ef7d00;
  text-decoration: none;
}
a:hover {
  color: #ED8E28;
  text-decoration: underline;
}
a img {
  -webkit-transition: opacity ease-out 0.1s;
  -moz-transition: opacity ease-out 0.1s;
  -ms-transition: opacity ease-out 0.1s;
  -o-transition: opacity ease-out 0.1s;
  transition: opacity ease-out 0.1s;
  -moz-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}
a img:hover {
  opacity: 0.75;
}
mark {
  background: #ef7d00;
  color: #f7f7f7;
  padding: 2px 6px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* 1.3 Typography */
/*
	All typography (and layout) based on a modular scale using 12 & 14 px values scaled in accordance the golden ratio (1.618)
	http://modularscale.com/scale/?px1=16&px2=14&ra1=1.618&ra2=0
	Remember to keep margins consistent and try to avoid margin-top. If everything has an appropriate margin-bottom we don't need one and vertical rhythm will be kept consistent
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "lato", sans-serif;
  color: #474747;
  margin: 0 0 .618em;
  font-weight: 700;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  text-decoration: underline;
}
h1,
.alpha {
  font-size: 2.291em;
  line-height: 1.416em;
}


/** FORMULAIRE NEWSLETTER **/

.form-message{
    text-align: center;
    padding: 20px;
    margin: 10px 0;
    color: #FFF;
}

.form-success{
    background-color: #4dbf56;
}

#form-newsletter-mail-input{
    display: block;
    width: 100%;
}

.form-control label{
    font-weight: bold;
    padding-bottom: 20px;
}

.page-template-template-newsletter-mailjet .listsNewsletterFormUser{
    margin-top: 10px;
}

.page-template-template-newsletter-mailjet .listsNewsletterFormUser div{
    display: block;
    float:none;
    width: 100%;
}

.form-error{
    background-color: #bf4d4d;
}


.page-template-template-newsletter-mailjet .listsNewsletterFormUser .mailjet-lists-container div{
    display: inline-block;
    width: 20%;
}

.page-template-template-newsletter-mailjet .listsNewsletterFormUser .mailjet-lists-container div label{
    font-size: 13px;
    padding-left: 5px;
}

.mailjet-lists-container{
    display: block;
    font-size: 0;
}

/** END FORMULAIRE NEWSLETTER **/


@media (max-width: 768px) {
  h1 {
    font-size: 1.6em;
  }
}
h2,
.beta {
  font-size: 1.618em;
  line-height: 1.416em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.1em;
  }
}
h3,
.gamma {
  font-size: 1.416em;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.875em;
}
p {
  -webkit-hyphens: auto;
  -webkit-hyphenate-character: "\2010";
  -webkit-hyphenate-limit-after: 1;
  -webkit-hyphenate-limit-before: 3;
  -moz-hyphens: manual;
  orphans: 3;
  widows: 3;
}
ul,
ol,
dl,
p,
table,
form,
pre,
hr {
  margin: 0 0 1.618em 0;
}
li > ul,
li > ol {
  margin: 0 0 0 1.618em;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin-bottom: 1.618em;
}
strong {
  font-weight: 700;
}
/*
@font-face icons
- Used for the subscribe & connect social icons. If you would like to add more icons to the font, you can do so by rebuilding the font at http://keyamoon.com/icomoon/app/ and replace the existing font files in the theme with the new ones.
*/
@font-face {
  font-family: 'Social';
  font-weight: normal;
  font-style: normal;
  src: url('includes/fonts//social.eot');
  src: url('includes/fonts//social.eot?#iefix') format('embedded-opentype'), url('includes/fonts/social.woff') format('woff'), url('includes/fonts/social.ttf') format('truetype'), url('includes/fonts/social.svg#WebSymbolsRegular') format('svg');
}
@font-face {
  font-family: 'FontAwesome';
  src: url('includes/fonts//fontawesome-webfont.eot');
  src: url('includes/fonts//fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('includes/fonts//fontawesome-webfont.woff') format('woff'), url('includes/fonts//fontawesome-webfont.ttf') format('truetype'), url('includes/fonts//fontawesome-webfont.svg#FontAwesome') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* 1.4 Tables */
table {
  border-spacing: 0;
  width: 100%;
  border: 1px solid #e6e6e6;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f7f7f7;
  border-collapse: separate;
}
table td,
table th {
  padding: .875em 1.416em;
  text-align: left;
  border-right: 1px dotted #e6e6e6;
  vertical-align: top;
}
table td p:last-child,
table th p:last-child {
  margin-bottom: 0;
}
table thead th {
  background: #fff;
  border-right: 1px dotted #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  padding: 1.416em;
  vertical-align: middle;
}
table thead th:first-child {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table thead th:last-child {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table tr th:last-child,
table tr td:last-child {
  border-right: 0;
}
table tbody th {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}
table tbody tr:nth-child(2n) td {
  border-right: 1px dotted #e6e6e6;
  background: #f7f7f7;
}
table tbody tr:nth-child(2n) td:last-child {
  border-right: 0;
}
table tbody td {
  background: #f2f2f2;
  border-bottom: 1px solid #e6e6e6;
}
table tbody h2 {
  font-size: 1em;
  letter-spacing: normal;
  font-weight: normal;
}
table tbody h2 a {
  font-weight: normal;
}
table tbody tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table tbody tr:last-child td:last-child {
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table tbody tr:last-child td {
  border-bottom: 0;
}
table tbody tr:last-child th {
  border-bottom: 0;
}
/*-------------------------------------------------------------------------------------------*/
/* 2. SITE STRUCTURE & APPEARANCE */
/*-------------------------------------------------------------------------------------------*/
/* 2.1 Containers & Columns */
/* 2.2 Navigation */
ul.nav li a {
  padding: .5em 1em;
  display: block;
}
ul.nav li.current-menu-item > a {
  background: #ffffff;
}
#navigation {
  clear: both;
  padding-bottom: 1em;
  margin-left: -1.618em;
  margin-right: -1.618em;
  padding: 0 1.618em;
  background: #f1f1f1 none repeat scroll 0 0;
  margin-bottom: 0px !important;
  display: block !important;
}
#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
    margin-right: 0;
}

@media (max-width: 768px) {
  #navigation {
    border-bottom: #666 5px solid;
  }
}

#navigation ul.rss {
  margin: 0 1em 0 0;
  padding: 0 1em 0 0;
}
#navigation ul.rss li {
  display: inline;
  padding: 0;
}
#navigation ul.rss li a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f09e";
}
#navigation ul.rss li.sub-email {
  color: #474747;
}
#navigation ul {
  list-style: none;
  margin: 0;
}
#navigation ul ul.sub-menu {
  margin-left: 1em;
}
#navigation .widget_product_search {
  clear: both;
  margin: 1em 1em 0 1em;
  display: none;
}
#navigation .widget_product_search form {
  margin: 0;
  background: #ffffff;
}
/* 2.2.2 Top Navigation (optional) */
#top {
  padding: 1em 1.618em;
  margin-left: -1.618em;
  margin-right: -1.618em;
  background: #f3f3f3;
}
#top select {
  width: 100%;
}
#top #top-nav {
  display: none;
}
/* 2.3 Header */
#header {
  padding: 1.618em 0 0 0;
  margin-bottom: 1.618em;
  /*margin-left: -1.618em;*/
  margin-right: -1.618em;
  margin-bottom: 0;
  clear: both;
  position: relative;
  /*background: #ffffff;*/
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding-left: 1.618em;
  padding-right: 1.618em;
}
#header #logo {
  float: left;
  margin:0 auto;
  margin-bottom: 1.618em;
}
#header .site-title {
  margin: 0;
}
#header .site-description {
  margin-bottom: 1.618em;
}
#header .site-description + .nav.cart {
  margin-top: -1.618em;
  margin-bottom: 1.618em;
}
#header .site-title,
#header .site-description {
  color: #000;
  display: none;
}
#header .site-title a,
#header .site-description a {
  color: #141414;
  text-transform: none;
  font-weight: normal;
  text-decoration: none;
}
#header .site-title a:hover,
#header .site-description a:hover {
  text-decoration: underline;
}
#header .site-description {
  line-height: 1.618em;
}
#header hgroup {
  *zoom: 1;
}
#header hgroup:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#header hgroup:before,
#header hgroup:after {
  content: "";
  display: table;
}
#header hgroup:after {
  clear: both;
}
#header hgroup nav.cart {
  clear: left;
  padding-top: 1em;
}
#header .nav-toggle {
  cursor: pointer;
  clear: both;
  display: block;
  background: rgba(0, 0, 0, 0.05);
  padding: 1.387em 1.618em;
  margin-left: -1.618em;
  margin-right: -1.618em;
}
#header .nav-toggle:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f0c9";
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  line-height: 1.75;
}
#header .nav-toggle a {
  color: #474747;
  text-transform: uppercase;
}
#header .nav-toggle a:hover {
  text-decoration: none;
}
#header .widget_product_search {
  margin-left: -1.618em;
  margin-right: -1.618em;
  padding: 0 1.618em;
  background: rgba(0, 0, 0, 0.025);
}
#header .widget_product_search .woocommerce-product-search {
  border: 0;
  margin-bottom: 0;
}
#header .widget_product_search .woocommerce-product-search .search-field {
  padding: 1.618em 0;
}
#header .widget_product_search .woocommerce-product-search input[type="submit"] {
  top: 1.387em;
}
#header .site-description {
  color: #616161;
  font-family: "Droid Serif", sans-serif;
  font-style: italic;
}
#header #topad {
  float: right;
}
/* 2.4 Content */
/* 2.4.1 Slider */
/* 2.5 Sidebar */
#sidebar {
  overflow: hidden;
}

@media (max-width: 768px) {
    #sidebar {
      display: inline-block;
    }
}

#sidebar .secondary {
  float: left;
  margin-right: 20px;
}
#sidebar .secondary.last {
  margin: 0;
}
/* 2.6 Footer */

#footer #credit img {
  vertical-align: middle;
}
#footer #credit span {
  display: none;
}
#footer .col-left,
#footer .col-right {
  font-size: .875em;
}
#footer p {
  margin: 0;
}
.footer-shop {
  margin-left: -1.618em;
  margin-right: -1.618em;
  margin-bottom: 1.618em;
}
.footer-shop .inner {
  padding: 1.618em;
  background: rgba(0, 0, 0, 0.8);
}
.footer-shop .inner .footer-shop-content {
  text-align: center;
  color: #fff;
}
.fullwidth-widgets .widget {
  margin-bottom: 0;
}
.fullwidth-widgets .widget h3:first-child {
  text-align: center;
  border: 0;
  margin-bottom: 1em;
}
.fullwidth-widgets .widget_brand_thumbnails ul.brand-thumbnails {
  text-align: center;
}
.fullwidth-widgets .widget_brand_thumbnails ul.brand-thumbnails li {
  display: inline-block;
  float: none;
  margin: 0 .618em .618em .618em;
  width: auto !important;
}
.fullwidth-widgets .widget_brand_thumbnails ul.brand-thumbnails li a img {
  filter: gray;
  -webkit-filter: grayscale(1);
  max-height: 2em;
  width: auto;
}
.fullwidth-widgets .widget_brand_thumbnails ul.brand-thumbnails li a:hover img {
  filter: none;
  -webkit-filter: grayscale(0);
}
#footer-widgets {
  padding: 0 0 3em 0;
}
#footer-widgets hr {
  height: 4px;
  background: #ffffff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline;
  float: left;
  width: 95.83333333%;
  margin-left: 2.08333333%;
  margin-right: 2.08333333%;
  *width: 95.78125%;
  *margin-left: 2.03125%;
  *margin-right: 2.03125%;
  margin-bottom: 5.997em;
}
#footer-widgets .widget {
  margin-bottom: 2.618em;
}
/* 2.7 Breadcrumbs */
#breadcrumbs {
  margin-top: 1em;
  margin-bottom: 3.706em;
  font-size: .875em;
  color: #8b8b8b;
}
/*-------------------------------------------------------------------------------------------*/
/* 3. POSTS */
/*-------------------------------------------------------------------------------------------*/
#breadcrumb,
.post .video {
  margin-bottom: 1.618em;
}
.archive-header {
  display: block;
  float: left;
  width: 100%;
  margin: 0 0 1.618em;
  padding: 0 0 1em;
  font-weight: bold;
  border-bottom: #e6e6e6 1px solid;
}
.archive-header h1{
  color:#F1F1F1;
}
.archive-description {
  clear: both;
  margin-bottom: 1.618em;
}
.post,
.type-page {
  margin: 0 0 4.236em;
  /* 3.1 Images */
}
@media only screen and (max-width: 768px) {
    .post,
    .type-page {
      margin: 0 0 2.236em;
    }
}
.post:last-child,
.type-page:last-child {
  margin-bottom: 0;
}
.post header h1,
.type-page header h1 {
  font-weight: bold;
}
.post header h1{
  color: #ef7d00;
}
.post header h1 a:link,
.type-page header h1 a:link,
.post header h1 a:visited,
.type-page header h1 a:visited {
  color: #ef7d00;
}

/************************************************* OVERRIDING  *****************************************************************/


section.col-left article.post > a > img{
  border: 5px solid white;
}

article div.triangle{
  visibility: hidden;
  display: none;
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  margin-top: 110px;
  border-style: solid;
  border-width: 61px 0 61px 59px;
  border-color: transparent transparent transparent #ef7b00;
  line-height: 0px;
}

@media (min-width: 1100px) {
  article div.triangle{
    visibility: visible;
    display: block;
  }
}

.post header .post-meta{
  background-color:#EBEBEB;
  color:#303030;
  padding: 0 20px;
}

#main article .post-more .read-more a{
  color:#fff;
}

.post .post-meta .post-category{
  float: right;
}

.post .post-meta a,
.type-page .post-meta > a {
  color: #474747;
}
.post .post-meta,
.type-page .post-meta {
  margin: 0 0 2.618em 0;
  font-size: .875em;
}
.post .post-meta li,
.type-page .post-meta li {
  display: inline;
}
.post .post-meta .post-author a {
  font-style: italic;
}
.post .post-meta .post-category a {
  font-weight: bold;
}
.post .post-meta .post-author a:before,
.type-page .post-meta .post-author a:before,
.post .post-meta .post-category a:before,
.type-page .post-meta .post-category a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  margin-right: .207em;
  color: #ef7d00;
}
.post .post-more,
.type-page .post-more {
  clear: both;
  color:#fff;
  /*border-top: 0.236em solid #ffffff;*/
  padding-top: 0.5em;
  font-size: .875em;
}

.post .post-more .post-more-sep,
.type-page .post-more .post-more-sep {
  margin: 0 .618em;
  color: #adadad;
}
.post .post-more .comments a:before,
.type-page .post-more .comments a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f075";
  color: #ef7d00;
}
.post p.tags,
.type-page p.tags {
  width: 100%;
  clear: both;
}
.post p.tags:before,
.type-page p.tags:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: '\f02c';
  color: #fff;
}
.type-page .entry {
  margin-bottom: 2.618em;
}
.post .entry blockquote,
.type-page .entry blockquote {
  position: relative;
  margin: 3.706em 0 3.706em 2.618em;
  padding: 0 0 0 2.618em;
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-style: italic;
  border-left: 0.334em solid #ef7d00;
}
.post .entry blockquote p{
  color:#fff;
}
.post .entry .widget_woothemes_testimonials blockquote,
.type-page .entry .widget_woothemes_testimonials blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 768px) {
  .post .entry blockquote {
    margin: 0px;
    font-size: 0.75em;
  }
}

.post img,
.type-page img,
.post img.thumbnail,
.type-page img.thumbnail {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
.post img:hover,
.type-page img:hover,
.post img.thumbnail:hover,
.type-page img.thumbnail:hover {
  border-color: #cdcdcd;
}
.post img.wp-smiley,
.type-page img.wp-smiley {
  padding: 0;
  border: 0;
}
.post .alignleft,
.type-page .alignleft {
  float: left;
  margin: 0 1.618em 1em 0;
}
.post .alignright,
.type-page .alignright {
  float: right;
  margin: 0 0 1em 1.618em;
}
.post .aligncenter,
.type-page .aligncenter {
  display: block;
  text-align: center;
  margin: 0 auto 1.618em;
}
.post .wp-caption,
.type-page .wp-caption {
  padding: .079em;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  max-width: 100%;
}
.post .wp-caption img,
.type-page .wp-caption img {
  margin: 0;
  padding: .334em 0;
  background: none;
  border: 0;
}
.post .wp-caption-text,
.type-page .wp-caption-text {
  margin: 0;
  padding: 0;
  text-align: center;
}
.single .post p:first-child {
  font-size: 1.416em;
  /*color: #252525;*/
}
/* 3.2 Pagination / WP-Pagenavi / Woo-Pagination */
.nav-entries,
.wp-pagenavi,
.woo-pagination {
  padding: 1em 1.618em;
}
.nav-entries a {
  display: block;
  color: #474747;
  text-decoration: none;
}
.nav-entries a:hover {
  text-decoration: underline;
}
.woo-pagination {
  margin: 0;
  text-align: center;
  margin: 0 0.146em;
}
.woo-pagination .page-numbers {
  display: inline-block;
  text-decoration: none;
  color: #474747;
  padding: .334em .875em;
  font-weight: bold;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: .875em;
  background: #eaeaea;
}
.woo-pagination .page-numbers.dots {
  background: none;
}
.woo-pagination .page-numbers.dots:hover {
  background: none;
}
.woo-pagination .page-numbers:hover {
  background: #d5d5d5;
}
.woo-pagination .page-numbers.current {
  background: #474747;
  color: #f7f7f7;
}
/* 3.3 Single Post Author */
#post-author {
  clear: both;
  display: block;
  width: 106.25%;
  margin-left: -3.125%;
  margin-right: -3.125%;
  *width: 106.19791667%;
  *margin-left: -3.17708333%;
  *margin-right: -3.17708333%;
  *zoom: 1;
  margin-bottom: 2.618em;
}
#post-author:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#post-author:before,
#post-author:after {
  content: "";
  display: table;
}
#post-author:after {
  clear: both;
}
#post-author .profile-image {
  display: inline;
  float: left;
  width: 18.75%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 18.69791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
#post-author .profile-image img {
  width: 100%;
  height: auto;
}
#post-author .profile-content {
  display: inline;
  float: left;
  width: 68.75%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 68.69791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
/* 3.4 Post Entry Nav */
#post-entries {
  border-top: 0.236em solid #ffffff;
  border-bottom: 0.236em solid #ffffff;
  padding: 1.618em 0;
  margin-bottom: 2.618em;
}
#post-entries .nav-prev a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f060";
}
#post-entries .nav-next a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f061";
}
/* 3.5 Connect */
#connect {
  clear: both;
  margin-bottom: 2.618em;
}
#connect .newsletter-form {
  margin: 0 0 1.387em;
}
#connect .newsletter-form .email {
  margin: 0 1em 1em 0;
}
#connect .newsletter-form .submit {
  margin: 0 0 1em;
}
#connect .social {
  margin-bottom: 1.618em;
}
#connect .social a {
  opacity: 0.8;
  /*filter: alpha(opacity=@opacity * 100);*/
/*  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;*/
  margin-left: 7px;
}
#connect .social a:hover {
  opacity: 1;
  /*filter: alpha(opacity=@opacity * 100);*/
}
#connect .social a:hover {
  text-decoration: none;
}
#connect .social a:before {
  line-height: 1.1;
  margin: 0 0.53em 0.53em 0;
  padding: .53em;
  display: inline-block;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #fff;
  background: #ef7d00;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
}
#connect .social a.subscribe {
  background: url('images/rss.png');
  display: inline-block;
  width: 30px;
  height: 30px;
}
#connect .social a.twitter,
.mega-toggle-blocks-left .social a.twitter {
    background: url(images/picto_sprites.png);
    background-position: 0 -1958px;
  display: inline-block;
  width: 27px;
  height: 30px;
}
#connect .social a.facebook,
.mega-toggle-blocks-left a.facebook {
        background: url(images/picto_sprites.png);
    background-position: 0 -1836px;
  display: inline-block;
  width: 27px;
  height: 30px;
}

#connect .social a.linkedin,
.mega-toggle-blocks-left a.linkedin {
    background: url(images/picto_sprites.png);
    background-position: 0 -2199px;
  width: 30px;
  height: 31px;
    display: inline-block;
}
#connect .social a.linkedin:hover {
        background: url(images/picto_sprites.png);
    background-position: 0 -2239px;
}

#connect .social a.flickr:before {
  content: '\e005';
  background-color: #ff0084;
}

#connect .social a.delicious:before {
  content: '\e007';
  background-color: #285da7;
}
#connect .social a.googleplus,
.mega-toggle-blocks-left a.googleplus {
  background: url('images/google+.png');
  display: inline-block;
  width: 27px;
  height: 30px;
}
#connect .social a.dribbble:before {
  content: '\e009';
  background-color: #ea4c89;
}

#connect .social a.instagram,
.mega-toggle-blocks-left a.instagram {
    background: url(images/picto_sprites.png);
    background-position: 0 -2120px;
  display: inline-block;
  width: 30px;
  height: 30px;
}
#connect .social a.instagram:hover {
  background: url('images/instagramlogo_overed.png');
}

#connect .social a.youtube,
.mega-toggle-blocks-left a.youtube {
        background: url(images/picto_sprites.png);
    background-position: 0 -2039px;
  display: inline-block;
  width: 30px;
  height: 31px;
}

#connect .social a.youtube:hover {
        background: url(images/picto_sprites.png);
    background-position: 0 -2160px;
    background-position: 0 -2080px;
}


#connect .social a.vimeo:before {
  content: '\e011';
  background-color: #33454E;
}
#connect .social a.pinterest,
.mega-toggle-blocks-left a.pinterest {
  background: url('images/pinterest.png');
  display: inline-block;
  width: 30px;
  height: 30px;
}
.widget #connect .fl,
.widget #connect .fr {
  float: none;
}
#main #connect .col-left,
#main #connect .col-right {
  float: none;
}
#main #connect .col-right ul {
  list-style: none;
}
#mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-1:after {
    font-size: 30px;
}
#main #connect .col-right ul a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f0f6";
}
/*-------------------------------------------------------------------------------------------*/
/* 4. WIDGETS */
/*-------------------------------------------------------------------------------------------*/
/* 4.1 Generic Widgets */
.widget h3 {
  color: #474747;
  font-size: 1em;
}
/* 4.2 Specific Widgets */
/* SEARCH FORM */
#searchform,
.woocommerce-product-search {
  width: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  position: relative;
  border-color: #d5d5d5;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 0.236em;
  border-radius: 0.236em;
 /* -moz-background-clip: padding;*/
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#searchform .s,
.woocommerce-product-search .s,
#searchform #s,
.woocommerce-product-search #s,
#searchform .search-field,
.woocommerce-product-search .search-field {
  font-size: 1em;
  padding: 1.45em 2.618em 1.45em .875em;
  width: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  margin: 0;
  border: 0;
  background: none;
  color: #474747;
  -webkit-appearance: none;
}
#searchform .search-submit,
.woocommerce-product-search .search-submit,
#searchform #searchsubmit,
.woocommerce-product-search #searchsubmit,
#searchform input[type="submit"],
.woocommerce-product-search input[type="submit"] {
  position: absolute;
  top: 1.3em;
  right: 1em;
  border: none;
  overflow: hidden;
  margin: 0;
  height: 1.618em;
  width: 1.618em;
  padding: 0;
  background: url('images/ico-search.png') no-repeat center;
  background-size: 16px 16px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  opacity: 0.2;
/*  filter: alpha(opacity=@opacity * 100);*/
  text-indent: -99em;
}
#searchform .search-submit:hover,
.woocommerce-product-search .search-submit:hover,
#searchform #searchsubmit:hover,
.woocommerce-product-search #searchsubmit:hover,
#searchform input[type="submit"]:hover,
.woocommerce-product-search input[type="submit"]:hover {
  opacity: 1;
 /* filter: alpha(opacity=@opacity * 100);*/
  background: url('images/ico-search.png') no-repeat center;
  background-size: 16px 16px;
  background-color: none;
  -webkit-animation: none;
}
#searchform label,
.woocommerce-product-search label {
  display: none;
}
.search-results .search-results #main > :not(.type-post) {
  display: none;
}
.search-results .search-results #main .type-page {
  display: block;
}
/* FLICKR */
.widget_woo_flickr h3 span {
  color: #0051d8;
}
.widget_woo_flickr h3 span span {
  color: #ff1183;
}
.widget_woo_flickr .wrap {
  margin: 1em 0 0;
  text-align: center;
}
.widget_woo_flickr .wrap .flickr_badge_image {
  display: inline-block;
  margin: 0 1em 1.416em;
}
.widget_woo_flickr .wrap .flickr_badge_image a img {
  display: block;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* CALENDAR */
#wp-calendar caption {
  padding: 1em;
}
#wp-calendar th,
#wp-calendar td {
  text-align: center;
  padding: .541em 0;
}
/* BLOG AUTHOR */
.widget_woo_blogauthorinfo .avatar {
  padding: .382em;
  border: 1px solid #e6e6e6;
}
.widget_woo_blogauthorinfo .left {
  float: left;
  margin: 0 1em .618em 0;
}
.widget_woo_blogauthorinfo .right {
  float: right;
  margin: 0 .618em 1em;
}
/* WOOTABS */
.widget_woodojo_tabs,
.woocommerce_tabs,
.woocommerce-tabs {
  clear: both;
}
.widget_woodojo_tabs ul.nav-tabs,
.woocommerce_tabs ul.nav-tabs,
.woocommerce-tabs ul.nav-tabs,
.widget_woodojo_tabs ul.tabs,
.woocommerce_tabs ul.tabs,
.woocommerce-tabs ul.tabs {
  margin-bottom: 0;
  list-style: none;
  *zoom: 1;
}
.widget_woodojo_tabs ul.nav-tabs:after,
.woocommerce_tabs ul.nav-tabs:after,
.woocommerce-tabs ul.nav-tabs:after,
.widget_woodojo_tabs ul.tabs:after,
.woocommerce_tabs ul.tabs:after,
.woocommerce-tabs ul.tabs:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.widget_woodojo_tabs ul.nav-tabs:before,
.woocommerce_tabs ul.nav-tabs:before,
.woocommerce-tabs ul.nav-tabs:before,
.widget_woodojo_tabs ul.tabs:before,
.woocommerce_tabs ul.tabs:before,
.woocommerce-tabs ul.tabs:before,
.widget_woodojo_tabs ul.nav-tabs:after,
.woocommerce_tabs ul.nav-tabs:after,
.woocommerce-tabs ul.nav-tabs:after,
.widget_woodojo_tabs ul.tabs:after,
.woocommerce_tabs ul.tabs:after,
.woocommerce-tabs ul.tabs:after {
  content: "";
  display: table;
}
.widget_woodojo_tabs ul.nav-tabs:after,
.woocommerce_tabs ul.nav-tabs:after,
.woocommerce-tabs ul.nav-tabs:after,
.widget_woodojo_tabs ul.tabs:after,
.woocommerce_tabs ul.tabs:after,
.woocommerce-tabs ul.tabs:after {
  clear: both;
}
.widget_woodojo_tabs ul.nav-tabs li,
.woocommerce_tabs ul.nav-tabs li,
.woocommerce-tabs ul.nav-tabs li,
.widget_woodojo_tabs ul.tabs li,
.woocommerce_tabs ul.tabs li,
.woocommerce-tabs ul.tabs li {
  float: left;
  margin-bottom: 0;
  display: block;
  margin-right: .09em;
  font-size: .875em;
}
.widget_woodojo_tabs ul.nav-tabs li a,
.woocommerce_tabs ul.nav-tabs li a,
.woocommerce-tabs ul.nav-tabs li a,
.widget_woodojo_tabs ul.tabs li a,
.woocommerce_tabs ul.tabs li a,
.woocommerce-tabs ul.tabs li a {
  border-bottom: 0;
  border-bottom-width: 0;
  border-right-width: 0;
  display: block;
  margin: 0 !important;
  padding: .618em 1.9em !important;
  color: #474747;
  -webkit-border-top-left-radius: 3px !important;
  -webkit-border-top-right-radius: 3px !important;
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
}
.widget_woodojo_tabs ul.nav-tabs li a:hover,
.woocommerce_tabs ul.nav-tabs li a:hover,
.woocommerce-tabs ul.nav-tabs li a:hover,
.widget_woodojo_tabs ul.tabs li a:hover,
.woocommerce_tabs ul.tabs li a:hover,
.woocommerce-tabs ul.tabs li a:hover {
  color: #ef7d00;
  background: #ef7d00;
  text-decoration: none;
  color: #fff;
}
.widget_woodojo_tabs ul.nav-tabs li.active a,
.woocommerce_tabs ul.nav-tabs li.active a,
.woocommerce-tabs ul.nav-tabs li.active a,
.widget_woodojo_tabs ul.tabs li.active a,
.woocommerce_tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li.active a {
  background: #ef7d00;
  color: #fff;
}
.widget_woodojo_tabs ul.nav-tabs li.description_tab a,
.woocommerce_tabs ul.nav-tabs li.description_tab a,
.woocommerce-tabs ul.nav-tabs li.description_tab a,
.widget_woodojo_tabs ul.tabs li.description_tab a,
.woocommerce_tabs ul.tabs li.description_tab a,
.woocommerce-tabs ul.tabs li.description_tab a,
.widget_woodojo_tabs ul.nav-tabs li.additional_information_tab a,
.woocommerce_tabs ul.nav-tabs li.additional_information_tab a,
.woocommerce-tabs ul.nav-tabs li.additional_information_tab a,
.widget_woodojo_tabs ul.tabs li.additional_information_tab a,
.woocommerce_tabs ul.tabs li.additional_information_tab a,
.woocommerce-tabs ul.tabs li.additional_information_tab a,
.widget_woodojo_tabs ul.nav-tabs li.tab-les-auteurs_tab a,
.woocommerce_tabs ul.nav-tabs li.tab-les-auteurs_tab a,
.woocommerce-tabs ul.nav-tabs li.tab-les-auteurs_tab a,
.widget_woodojo_tabs ul.tabs li.tab-les-auteurs_tab a,
.woocommerce_tabs ul.tabs li.tab-les-auteurs_tab a,
.woocommerce-tabs ul.tabs li.tab-les-auteurs_tab a,
.widget_woodojo_tabs ul.nav-tabs li.tab-auteurs_tab a,
.woocommerce_tabs ul.nav-tabs li.tab-auteurs_tab a,
.woocommerce-tabs ul.nav-tabs li.tab-auteurs_tab a,
.widget_woodojo_tabs ul.tabs li.tab-auteurs_tab a,
.woocommerce_tabs ul.tabs li.tab-auteurs_tab a,
.woocommerce-tabs ul.tabs li.tab-auteurs_tab a,
.widget_woodojo_tabs ul.nav-tabs li.tab-lauteur_tab a,
.woocommerce_tabs ul.nav-tabs li.tab-lauteur_tab a,
.woocommerce-tabs ul.nav-tabs li.tab-lauteur_tab a,
.widget_woodojo_tabs ul.tabs li.tab-lauteur_tab a,
.woocommerce_tabs ul.tabs li.tab-lauteur_tab a,
.woocommerce-tabs ul.tabs li.tab-lauteur_tab a,
.widget_woodojo_tabs ul.nav-tabs li.tab-auteur_tab a,
.woocommerce_tabs ul.nav-tabs li.tab-auteur_tab a,
.woocommerce-tabs ul.nav-tabs li.tab-auteur_tab a,
.widget_woodojo_tabs ul.tabs li.tab-auteur_tab a,
.woocommerce_tabs ul.tabs li.tab-auteur_tab a,
.woocommerce-tabs ul.tabs li.tab-auteur_tab a,
.widget_woodojo_tabs ul.nav-tabs li.reviews_tab a,
.woocommerce_tabs ul.nav-tabs li.reviews_tab a,
.woocommerce-tabs ul.nav-tabs li.reviews_tab a,
.widget_woodojo_tabs ul.tabs li.reviews_tab a,
.woocommerce_tabs ul.tabs li.reviews_tab a,
.woocommerce-tabs ul.tabs li.reviews_tab a/*,
.widget_woodojo_tabs ul.nav-tabs li.external_tab a,
.woocommerce_tabs ul.nav-tabs li.external_tab a,
.woocommerce-tabs ul.nav-tabs li.external_tab a,
.widget_woodojo_tabs ul.tabs li.external_tab a,
.woocommerce_tabs ul.tabs li.external_tab a,
.woocommerce-tabs ul.tabs li.external_tab a */{
  text-indent: -9999em;
  position: relative;
  width: 1em;
}
.widget_woodojo_tabs ul.nav-tabs li.description_tab a:after,
.woocommerce_tabs ul.nav-tabs li.description_tab a:after,
.woocommerce-tabs ul.nav-tabs li.description_tab a:after,
.widget_woodojo_tabs ul.tabs li.description_tab a:after,
.woocommerce_tabs ul.tabs li.description_tab a:after,
.woocommerce-tabs ul.tabs li.description_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.additional_information_tab a:after,
.woocommerce_tabs ul.nav-tabs li.additional_information_tab a:after,
.woocommerce-tabs ul.nav-tabs li.additional_information_tab a:after,
.widget_woodojo_tabs ul.tabs li.additional_information_tab a:after,
.woocommerce_tabs ul.tabs li.additional_information_tab a:after,
.woocommerce-tabs ul.tabs li.additional_information_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.tab-les-auteurs_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-les-auteurs_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-les-auteurs_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-les-auteurs_tab a:after,
.woocommerce_tabs ul.tabs li.tab-les-auteurs_tab a:after,
.woocommerce-tabs ul.tabs li.tab-les-auteurs_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.tab-auteurs_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-auteurs_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-auteurs_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-auteurs_tab a:after,
.woocommerce_tabs ul.tabs li.tab-auteurs_tab a:after,
.woocommerce-tabs ul.tabs li.tab-auteurs_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.tab-lauteur_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-lauteur_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-lauteur_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-lauteur_tab a:after,
.woocommerce_tabs ul.tabs li.tab-lauteur_tab a:after,
.woocommerce-tabs ul.tabs li.tab-lauteur_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.tab-auteur_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-auteur_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-auteur_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-auteur_tab a:after,
.woocommerce_tabs ul.tabs li.tab-auteur_tab a:after,
.woocommerce-tabs ul.tabs li.tab-auteur_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.reviews_tab a:after,
.woocommerce_tabs ul.nav-tabs li.reviews_tab a:after,
.woocommerce-tabs ul.nav-tabs li.reviews_tab a:after,
.widget_woodojo_tabs ul.tabs li.reviews_tab a:after,
.woocommerce_tabs ul.tabs li.reviews_tab a:after,
.woocommerce-tabs ul.tabs li.reviews_tab a:after/*
.widget_woodojo_tabs ul.nav-tabs li.external_tab a:after,
.woocommerce_tabs ul.nav-tabs li.external_tab a:after,
.woocommerce-tabs ul.nav-tabs li.external_tab a:after,
.widget_woodojo_tabs ul.tabs li.external_tab a:after,
.woocommerce_tabs ul.tabs li.external_tab a:after,
.woocommerce-tabs ul.tabs li.external_tab a:after*/ {
  text-indent: 0;
  font-family: 'FontAwesome';
  content: "\f0f6";
  display: block;
  line-height: 1;
  height: 1em;
  width: 1em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
}
.widget_woodojo_tabs ul.nav-tabs li.external_tab a,
.woocommerce_tabs ul.nav-tabs li.external_tab a,
.woocommerce-tabs ul.nav-tabs li.external_tab a,
.widget_woodojo_tabs ul.tabs li.external_tab a,
.woocommerce_tabs ul.tabs li.external_tab a,
.woocommerce-tabs ul.tabs li.external_tab a {
    text-decoration: underline;
}
.widget_woodojo_tabs ul.nav-tabs li.additional_information_tab a:after,
.woocommerce_tabs ul.nav-tabs li.additional_information_tab a:after,
.woocommerce-tabs ul.nav-tabs li.additional_information_tab a:after,
.widget_woodojo_tabs ul.tabs li.additional_information_tab a:after,
.woocommerce_tabs ul.tabs li.additional_information_tab a:after,
.woocommerce-tabs ul.tabs li.additional_information_tab a:after {
  content: "\f022";
}
/* les auteurs */
.widget_woodojo_tabs ul.nav-tabs li.tab-les-auteurs_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-les-auteurs_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-les-auteurs_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-les-auteurs_tab a:after,
.woocommerce_tabs ul.tabs li.tab-les-auteurs_tab a:after,
.woocommerce-tabs ul.tabs li.tab-les-auteurs_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.tab-auteurs_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-auteurs_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-auteurs_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-auteurs_tab a:after,
.woocommerce_tabs ul.tabs li.tab-auteurs_tab a:after,
.woocommerce-tabs ul.tabs li.tab-auteurs_tab a:after {
  content: "\f0c0"; /*f044 f040*/
}
/* l'auteur */
.widget_woodojo_tabs ul.nav-tabs li.tab-lauteur_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-lauteur_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-lauteur_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-lauteur_tab a:after,
.woocommerce_tabs ul.tabs li.tab-lauteur_tab a:after,
.woocommerce-tabs ul.tabs li.tab-lauteur_tab a:after,
.widget_woodojo_tabs ul.nav-tabs li.tab-auteur_tab a:after,
.woocommerce_tabs ul.nav-tabs li.tab-auteur_tab a:after,
.woocommerce-tabs ul.nav-tabs li.tab-auteur_tab a:after,
.widget_woodojo_tabs ul.tabs li.tab-auteur_tab a:after,
.woocommerce_tabs ul.tabs li.tab-auteur_tab a:after,
.woocommerce-tabs ul.tabs li.tab-auteur_tab a:after {
  content: "\f007";
}
.widget_woodojo_tabs ul.nav-tabs li.reviews_tab a:after,
.woocommerce_tabs ul.nav-tabs li.reviews_tab a:after,
.woocommerce-tabs ul.nav-tabs li.reviews_tab a:after,
.widget_woodojo_tabs ul.tabs li.reviews_tab a:after,
.woocommerce_tabs ul.tabs li.reviews_tab a:after,
.woocommerce-tabs ul.tabs li.reviews_tab a:after {
  content: "\f005";
}

.widget_woodojo_tabs .panel,
.woocommerce_tabs .panel,
.woocommerce-tabs .panel {
  clear: both;
  background: #eee;
  padding: 1.618em;
  margin-bottom: 1.618em;
  min-height: 200px;
}
.widget_woodojo_tabs ul.nav-tabs {
  text-align: center;
  margin-bottom: 1.618em;
  border: 0;
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.widget_woodojo_tabs ul.nav-tabs li {
  float: none;
  display: inline-block;
}
.widget_woodojo_tabs ul.nav-tabs li a {
  padding: 0 !important;
  position: relative;
  display: block;
  width: 1.618em;
  height: 1.618em;
  font-size: 1.618em;
  text-indent: -999em;
  background: none !important;
  border: 0 !important;
}
.widget_woodojo_tabs ul.nav-tabs li a:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: 0;
  font-family: 'FontAwesome';
  line-height: 1.5;
}
.widget_woodojo_tabs ul.nav-tabs li.active a:after,
.widget_woodojo_tabs ul.nav-tabs li a:hover:after {
  color: #ef7d00;
}
.widget_woodojo_tabs ul.nav-tabs li.active a:before,
.widget_woodojo_tabs ul.nav-tabs li a:hover:before {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.875em;
  left: 50%;
  margin-left: -0.5em;
  border: .5em solid #ef7d00;
  border-color: #ef7d00 transparent transparent transparent;
}
.widget_woodojo_tabs ul.nav-tabs li.tab-heading-latest a:after {
  content: "\f0f6";
}
.widget_woodojo_tabs ul.nav-tabs li.tab-heading-popular a:after {
  content: "\f005";
}
.widget_woodojo_tabs ul.nav-tabs li.tab-heading-comments a:after {
  content: "\f075";
}
.widget_woodojo_tabs ul.nav-tabs li.tab-heading-tags a:after {
  content: "\f02b";
}
.widget_woodojo_tabs .tab-pane ul li {
  margin: 0 0 1em;
  *zoom: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1em;
}
.widget_woodojo_tabs .tab-pane ul li:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.widget_woodojo_tabs .tab-pane ul li:before,
.widget_woodojo_tabs .tab-pane ul li:after {
  content: "";
  display: table;
}
.widget_woodojo_tabs .tab-pane ul li:after {
  clear: both;
}
#main .widget_woothemes_features .feature {
  display: block;
  width: 108.33333333%;
  margin-left: -4.16666667%;
  margin-right: -4.16666667%;
  *width: 108.28125%;
  *margin-left: -4.21875%;
  *margin-right: -4.21875%;
  *zoom: 1;
  margin-bottom: 1.618em;
}
#main .widget_woothemes_features .feature:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#main .widget_woothemes_features .feature:before,
#main .widget_woothemes_features .feature:after {
  content: "";
  display: table;
}
#main .widget_woothemes_features .feature:after {
  clear: both;
}
#main .widget_woothemes_features .feature img {
  display: inline;
  float: left;
  width: 8.33333333%;
  margin-left: 4.16666667%;
  margin-right: 4.16666667%;
  *width: 8.28125%;
  *margin-left: 4.11458333%;
  *margin-right: 4.11458333%;
  height: auto;
}
#main .widget_woothemes_features .feature h3,
#main .widget_woothemes_features .feature .feature-content {
  display: inline;
  float: left;
  width: 75%;
  margin-left: 4.16666667%;
  margin-right: 4.16666667%;
  *width: 74.94791667%;
  *margin-left: 4.11458333%;
  *margin-right: 4.11458333%;
}
#sidebar .widget_woothemes_features img,
#footer-widgets .widget_woothemes_features img {
  float: left;
  margin: 0 1em 1em 0;
}
#sidebar .widget_woothemes_features .feature,
#footer-widgets .widget_woothemes_features .feature {
  margin-bottom: 2.618em;
}
#main .widget h2:first-of-type,
.home .home .widget h2:first-of-type,
.layout-full.business .widget h2:first-of-type,
#main #recent-products h2:first-of-type,
.home .home #recent-products h2:first-of-type,
.layout-full.business #recent-products h2:first-of-type,
#main #component-widget h2:first-of-type,
.home .home #component-widget h2:first-of-type,
.layout-full.business #component-widget h2:first-of-type {
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4.236em;
}
.home .homepage-area {
  margin-bottom: 4.236em;
}
.home .homepage-area #recent-products:first-child {
  padding-top: 20px;
}
.business .widget_woothemes_features {
  clear: both;
  *zoom: 1;
}
.business .widget_woothemes_features:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.business .widget_woothemes_features:before,
.business .widget_woothemes_features:after {
  content: "";
  display: table;
}
.business .widget_woothemes_features:after {
  clear: both;
}
#main .widget_woothemes_testimonials .quote {
  margin-bottom: 2.618em;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 2.618em;
}
#main .widget_woothemes_testimonials .quote .quote-content {
  display: block;
  width: 108.33333333%;
  margin-left: -4.16666667%;
  margin-right: -4.16666667%;
  *width: 108.28125%;
  *margin-left: -4.21875%;
  *margin-right: -4.21875%;
  *zoom: 1;
  font-style: italic;
}
#main .widget_woothemes_testimonials .quote .quote-content:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#main .widget_woothemes_testimonials .quote .quote-content:before,
#main .widget_woothemes_testimonials .quote .quote-content:after {
  content: "";
  display: table;
}
#main .widget_woothemes_testimonials .quote .quote-content:after {
  clear: both;
}
#main .widget_woothemes_testimonials .quote .quote-content img.avatar {
  width: 100%;
  display: inline;
  float: left;
  width: 8.33333333%;
  margin-left: 4.16666667%;
  margin-right: 4.16666667%;
  *width: 8.28125%;
  *margin-left: 4.11458333%;
  *margin-right: 4.11458333%;
  height: auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: .334em;
  background: #ffffff;
}
#main .widget_woothemes_testimonials .quote .quote-content .testimonials-text {
  display: inline;
  float: left;
  width: 75%;
  margin-left: 4.16666667%;
  margin-right: 4.16666667%;
  *width: 74.94791667%;
  *margin-left: 4.11458333%;
  *margin-right: 4.11458333%;
}
#main .widget_woothemes_testimonials .quote .quote-content cite.author {
  display: block;
  font-style: normal;
  font-weight: bold;
}
#main .widget_woothemes_testimonials .quote .quote-content cite.author .excerpt,
#main .widget_woothemes_testimonials .quote .quote-content cite.author .url {
  font-weight: normal;
  display: block;
}
#main .widget_woothemes_testimonials .quote .quote-content .title {
  display: block;
}
.entry .widget_woothemes_testimonials .columns-2,
.entry .widget_woothemes_testimonials .columns-3,
.entry .widget_woothemes_testimonials .columns-4,
.entry .widget_woothemes_testimonials .columns-5,
.entry .widget_woothemes_testimonials .columns-6 {
  *zoom: 1;
}
.entry .widget_woothemes_testimonials .columns-2:after,
.entry .widget_woothemes_testimonials .columns-3:after,
.entry .widget_woothemes_testimonials .columns-4:after,
.entry .widget_woothemes_testimonials .columns-5:after,
.entry .widget_woothemes_testimonials .columns-6:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.entry .widget_woothemes_testimonials .columns-2:before,
.entry .widget_woothemes_testimonials .columns-3:before,
.entry .widget_woothemes_testimonials .columns-4:before,
.entry .widget_woothemes_testimonials .columns-5:before,
.entry .widget_woothemes_testimonials .columns-6:before,
.entry .widget_woothemes_testimonials .columns-2:after,
.entry .widget_woothemes_testimonials .columns-3:after,
.entry .widget_woothemes_testimonials .columns-4:after,
.entry .widget_woothemes_testimonials .columns-5:after,
.entry .widget_woothemes_testimonials .columns-6:after {
  content: "";
  display: table;
}
.entry .widget_woothemes_testimonials .columns-2:after,
.entry .widget_woothemes_testimonials .columns-3:after,
.entry .widget_woothemes_testimonials .columns-4:after,
.entry .widget_woothemes_testimonials .columns-5:after,
.entry .widget_woothemes_testimonials .columns-6:after {
  clear: both;
}
.entry .widget_woothemes_testimonials .columns-2 .quote,
.entry .widget_woothemes_testimonials .columns-3 .quote,
.entry .widget_woothemes_testimonials .columns-4 .quote,
.entry .widget_woothemes_testimonials .columns-5 .quote,
.entry .widget_woothemes_testimonials .columns-6 .quote {
  float: left;
  margin-right: 3.8%;
}
.entry .widget_woothemes_testimonials .columns-2 .quote.first,
.entry .widget_woothemes_testimonials .columns-3 .quote.first,
.entry .widget_woothemes_testimonials .columns-4 .quote.first,
.entry .widget_woothemes_testimonials .columns-5 .quote.first,
.entry .widget_woothemes_testimonials .columns-6 .quote.first {
  clear: both;
}
.entry .widget_woothemes_testimonials .columns-2 .quote.last,
.entry .widget_woothemes_testimonials .columns-3 .quote.last,
.entry .widget_woothemes_testimonials .columns-4 .quote.last,
.entry .widget_woothemes_testimonials .columns-5 .quote.last,
.entry .widget_woothemes_testimonials .columns-6 .quote.last {
  margin-right: 0;
}
.entry .widget_woothemes_testimonials .columns-2 .quote {
  width: 48%;
}
.entry .widget_woothemes_testimonials .columns-3 .quote {
  width: 30.75%;
}
.entry .widget_woothemes_testimonials .columns-4 .quote {
  width: 22.05%;
}
.entry .widget_woothemes_testimonials .columns-5 .quote {
  width: 16.9%;
}
.entry .widget_woothemes_testimonials .columns-6 .quote {
  width: 13.5%;
}
#sidebar .widget_woothemes_testimonials img,
#footer-widgets .widget_woothemes_testimonials img {
  float: left;
  margin: 0 0 1em 1em;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#sidebar .widget_woothemes_testimonials .quote,
#footer-widgets .widget_woothemes_testimonials .quote {
  margin-bottom: 2.618em;
}
#sidebar .widget_woothemes_testimonials .quote {
  background-color: #fff;
  padding: 1em;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#sidebar .widget_woothemes_testimonials img.avatar {
  float: right;
  margin: 0 0 1em 1em;
}
#sidebar .widget_woothemes_testimonials .title {
  display: block;
}
/**
 * WooDojo
 */
.widget_woodojo_tweets ul li {
  border: 0;
  position: relative;
  padding-left: 3.706em;
}
.widget_woodojo_tweets ul li:before {
  display: block;
  font-family: "FontAwesome";
  content: "\f099";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.618em;
}
/*-------------------------------------------------------------------------------------------*/
/* 5. COMMENTS */
/*-------------------------------------------------------------------------------------------*/
/* 5.1 Comments */
#comments {
  clear: both;
}
#comments .nocomments {
  padding: 1em 1em 1em 3.706em;
  position: relative;
  margin-bottom: 1.618em;
  -webkit-border-radius: 0.327em;
  border-radius: 0.327em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ffffff;
}
#comments .nocomments:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  position: absolute;
  top: 1.416em;
  left: 1.416em;
  padding-left: .541em;
  content: "\f05a";
  color: #6c98c9;
}
#comments .commentlist {
  list-style: none;
}
#comments .commentlist ul.children {
  margin: 0;
}
#comments .commentlist li.comment {
  list-style: none;
  clear: both;
}
#comments .commentlist li.comment .avatar {
  height: auto;
}
#comments .commentlist li.comment .avatar img.avatar {
  width: 100% !important;
  height: auto;
  margin: 0 !important;
}
#comments .commentlist > li.comment {
  display: block;
  width: 106.25%;
  margin-left: -3.125%;
  margin-right: -3.125%;
  *width: 106.19791667%;
  *margin-left: -3.17708333%;
  *margin-right: -3.17708333%;
  *zoom: 1;
  list-style: none;
}
#comments .commentlist > li.comment:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#comments .commentlist > li.comment:before,
#comments .commentlist > li.comment:after {
  content: "";
  display: table;
}
#comments .commentlist > li.comment:after {
  clear: both;
}
#comments .commentlist > li.comment:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#comments .commentlist > li.comment:before,
#comments .commentlist > li.comment:after {
  content: "";
  display: table;
}
#comments .commentlist > li.comment:after {
  clear: both;
}
#comments .commentlist > li.comment .avatar {
  display: inline;
  float: left;
  width: 6.25%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 6.19791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
#comments .commentlist > li.comment .avatar img {
  width: 100%;
  height: auto;
}
#comments .commentlist > li.comment .comment-text {
  display: inline;
  float: left;
  width: 81.25%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 81.19791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
  background: #ffffff;
  padding: 1.618em;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  margin-bottom: 2.618em;
}
#comments .commentlist > li.comment .comment-text p:last-child {
  margin-bottom: 0;
}
#comments .commentlist > li.comment .comment-text .comment-head {
  margin-bottom: 1em;
}
#comments .commentlist > li.comment .comment-text .comment-head a {
  margin-right: 1em;
  font-size: .875em;
}
#comments .commentlist > li.comment .comment-text .comment-head .name {
  margin-right: 1em;
}
#comments .commentlist > li.comment .comment-text .comment-head .name:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f007";
}
#comments .commentlist > li.comment .comment-text .comment-head a.comment-reply-link:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f112";
}
#comments .commentlist > li.comment .comment-text .comment-head .edit a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f044";
}
#comments .commentlist > li.comment .comment-text .comment-head .date a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f073";
}
#comments .commentlist > li.comment ul.children li.comment .comment-text {
  display: inline;
  float: left;
  width: 68.75%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 68.69791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
#comments .commentlist > li.comment ul.children li.comment .comment-text,
#comments .commentlist > li.comment ul.children li.comment .avatar {
  float: right;
}
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment .comment-text {
  display: inline;
  float: left;
  width: 56.25%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 56.19791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment .comment-text,
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment .avatar {
  float: right;
}
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment-text {
  display: inline;
  float: left;
  width: 43.75%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 43.69791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment-text,
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment ul.children li.comment .avatar {
  float: right;
}
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment-text {
  display: inline;
  float: left;
  width: 31.25%;
  margin-left: 3.125%;
  margin-right: 3.125%;
  *width: 31.19791667%;
  *margin-left: 3.07291667%;
  *margin-right: 3.07291667%;
}
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment-text,
#comments .commentlist > li.comment ul.children li.comment ul.children li.comment ul.children li.comment ul.children li.comment .avatar {
  float: right;
}
#reviews ol.commentlist li.comment .comment-text {
  padding: 0;
}
/* 5.2 Comments Form */
#respond label {
  color: #616161;
}
#respond #reply-title small {
  display: block;
  margin: 0 0 1.618em;
}
#respond #commentform .comment-form-author,
#respond #commentform .comment-form-email,
#respond #commentform .comment-form-url {
  width: 30.75%;
  float: left;
  margin-right: 3.8%;
}
#respond #commentform .comment-form-url {
  margin-right: 0;
}
#respond #commentform label {
  display: block;
}
#respond #commentform input.txt,
#respond #commentform textarea {
  width: 100%;
}
/* 5.3 Pingbacks / Trackbacks */
.pinglist li {
  margin: 0 0 0 1.618em;
  list-style-type: decimal;
}
.pinglist li .author {
  font-weight: bold;
}
.pinglist li .pingcontent {
  display: block;
  margin: 0 0 1.618em;
}
/*-------------------------------------------------------------------------------------------*/
/* 6. PAGE TEMPLATES */
/*-------------------------------------------------------------------------------------------*/
/* 6.1 Timeline Page Template */
.archives_list {
  border-left: 1px solid #e6e6e6;
  list-style: none;
  margin: 0 0 1em 1em;
  font-size: .875em;
}
.archives_list li {
  clear: left;
  padding-left: 2.334em;
  font-style: normal;
  list-style: none !important;
}
.archives_list li:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f073";
}
.archives_list .date {
  color: #616161;
}
.archives_list .linked {
  display: none;
}
.archives_list .comments {
  display: block;
  margin-bottom: 1em;
}
.archives_list .comments a {
  color: #6d6d6d;
}
.archives_list .comments a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f075";
}
.archives_list .comments a:hover {
  text-decoration: none;
}
h3.archive_year {
  font-weight: bold;
  color: #474747;
  margin-top: 0;
}
/* 6.2 Contact Form */
#contactForm {
  clear: both;
}
#contact-page {
  *zoom: 1;
}
#contact-page:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#contact-page:before,
#contact-page:after {
  content: "";
  display: table;
}
#contact-page:after {
  clear: both;
}
#contact-page .screenReader {
  left: -9999px;
  position: absolute;
  top: -9999px;
}
#contact-page ol.forms {
  float: left;
  list-style: none;
  width: 100%;
}
#contact-page ol.forms li {
  clear: both;
  float: left;
  margin-bottom: 1.618em;
  position: relative;
  width: 48%;
}
#contact-page ol.forms li:first-child {
  margin-right: 3.8%;
}
#contact-page ol.forms li:nth-child(2n) {
  clear: none;
}
#contact-page ol.forms li.textarea,
#contact-page ol.forms li.screenReader,
#contact-page ol.forms li.inline,
#contact-page ol.forms li.buttons {
  width: 100%;
}
#contact-page ol.forms li input.txt,
#contact-page ol.forms li textarea {
  width: 100%;
}
#contact-page ol.forms li .error {
  display: block;
  color: red;
}
#contact-page ol.forms li.textarea .error {
  display: block;
}
#contact-page ol.forms li.screenReader {
  margin-bottom: 0;
}
#contact-page ol.forms li.inline input {
  width: auto;
}
#contact-page ol.forms li.inline label {
  display: inline;
  float: none;
  width: auto;
}
#contact-page ol.forms label {
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 0 0 1em;
}
#contact-page ol.forms input#sendCopy {
  border: none;
  margin-right: 1em;
}
.entry #contact-page ol.forms li {
  list-style: none;
}
.page-template-template-contact-php #location ul {
  list-style: none;
}
.page-template-template-contact-php #location ul address {
  margin-bottom: 1em;
}
.page-template-template-contact-php #location ul li.tel:before,
.page-template-template-contact-php #location ul li.fax:before,
.page-template-template-contact-php #location ul li.email:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
}
.page-template-template-contact-php #location ul li.tel:before {
  content: "\f095";
}
.page-template-template-contact-php #location ul li.fax:before {
  content: "\f02f";
}
.page-template-template-contact-php #location ul li.email:before {
  content: "\f003";
}
.page-template-template-contact-php #twitter-connect h2:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f099";
}
.page-template-template-contact-php #twitter-connect ul li {
  list-style: none;
  padding: 1em;
  background: #ffffff;
  position: relative;
}
.page-template-template-contact-php #twitter-connect ul li:after {
  content: "";
  display: block;
  border: 1em solid red;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  left: 1em;
  bottom: -2em;
  border-width: 1em 0 1em 1em;
}
.page-template-template-contact-php #twitter-connect ul li .content {
  display: block;
}
.page-template-template-contact-php #map {
  clear: both;
  margin-bottom: 1.618em;
}
/* 6.3 Image Gallery */
#main div.gallery {
  margin-left: -10px;
}
#main div.gallery dl.gallery-item dt.gallery-icon {
  margin: 7%;
}
#main div.gallery dl.gallery-item img {
  border: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.image-gallery-item img {
  max-width: 100%;
  padding: .236em;
  margin: 0 1em 1em 0;
  border: 1px solid #dedede;
  background: #f7f7f7;
  -webkit-border-radius: 0.236em;
  border-radius: 0.236em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.image-gallery-item img:hover {
  border: 1px solid #c4c4c4;
  box-shadow: 0 1px 0.334em 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 0.334em 0px rgba(0, 0, 0, 0.2);
}
/* 6.4 Sitemap */
/*-------------------------------------------------------------------------------------------*/
/* 7. FEATURED SLIDER */
/*-------------------------------------------------------------------------------------------*/
/* 7.1 Core Styles */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* FlexSlider Necessary Styles */
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides .slide-media img {
  width: 100%;
  display: block;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* Clearfix for the .slides element */
.flexslider .slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* 7.2 Theme Styles */
.slider-wrap {
 margin-left: -1.618em;
 margin-right: -1.618em;
}
.flexslider {
  background: #fff;
  position: relative;
  zoom: 1;
  clear: both;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.flexslider .slides {
  zoom: 1;
}
/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  display: block;
  position: absolute;
  top: 50%;
  cursor: pointer;
  text-indent: -9999px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: width ease 0.3s;
  -moz-transition: width ease 0.3s;
  -ms-transition: width ease 0.3s;
  -o-transition: width ease 0.3s;
  transition: width ease 0.3s;
}
.flex-direction-nav a:after {
  font-family: "FontAwesome";
  color: #fff;
  text-indent: 0;
  text-align: center;
  line-height: 2;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.flex-direction-nav a.flex-next {
  -webkit-border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.flex-direction-nav a.flex-next:after {
  content: "\f054";
}
.flex-direction-nav a.flex-prev {
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.flex-direction-nav a.flex-prev:after {
  content: "\f053";
}
.flexslider .flex-next {
  right: 0px;
}
.flexslider .flex-prev {
  left: 0px;
}
.flex-direction-nav .flex-disabled {
  opacity: .3!important;
  filter: alpha(opacity=30);
  cursor: default;
}
/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #ef7d00;
}
.flex-control-paging li a.flex-active {
  background: #ef7d00;
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
  }
}
/* 7.3 Content Styles */
.flexslider .layout-full .slide-content,
.flexslider .layout-full .slide-media {
  width: 100%;
  float: none;
}
.flexslider .layout-left-content .slide-content,
.flexslider .layout-right-content .slide-content,
.flexslider .layout-left-content .slide-media,
.flexslider .layout-right-content .slide-media {
  width: 45%;
}
.flexslider .layout-left-content {
  *zoom: 1;
}
.flexslider .layout-left-content:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.flexslider .layout-left-content:before,
.flexslider .layout-left-content:after {
  content: "";
  display: table;
}
.flexslider .layout-left-content:after {
  clear: both;
}
.flexslider .layout-left-content .slide-content {
  float: left;
}
.flexslider .layout-left-content .slide-media {
  float: right;
}
.flexslider .layout-right-content {
  *zoom: 1;
}
.flexslider .layout-right-content:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.flexslider .layout-right-content:before,
.flexslider .layout-right-content:after {
  content: "";
  display: table;
}
.flexslider .layout-right-content:after {
  clear: both;
}
.flexslider .layout-right-content .slide-content {
  float: right;
}
.flexslider .layout-right-content .slide-media {
  float: left;
}
.flexslider .slide-content {
  padding: 1.618em;
}
@media (max-width: 768px) {
    .flexslider .slide-content {
      padding: 0px;
    }
}
/*-------------------------------------------------------------------------------------------*/
/* 8. MISC */
/*-------------------------------------------------------------------------------------------*/
/* 8.1 Forms */
input[type=text],
input.input-text,
textarea,
input.txt,
input[type=tel],
input[type=email],
input[type=password] {
  padding: .875em 1em;
  border: 0;
  -webkit-border-radius: 0.236em;
  border-radius: 0.236em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 1em;
  /* Make inputs the same size as normal text */
  line-height: 1;
  font-family: inherit;
  /* Make inputs use the correct typeface instead of the browser default */
  outline: none;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
/* 8.2 Buttons (Includes WF chortcode buttons) */
a.button,
#commentform #submit,
.submit,
.added_to_cart,
input[type=submit],
input.button,
button.button,
.wrapper .woo-sc-button,
.slide-content .woo-sc-button {
  /* Prevent Apple from forcing iOS style */
  -webkit-appearance: none;
  display: inline-block;
  padding: .875em 1.416em;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  /* Make inputs the same size as normal text */
  font-family: inherit;
  /* Make inputs use the correct typeface instead of the browser default */
  cursor: pointer;
  /* Inputs need pointers! */
  overflow: visible;
  /* IE fix */
  width: auto;
  /* IE fix */
  line-height: 1;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  white-space: nowrap;
  font-weight: bold;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: "lato", sans-serif;
  text-shadow: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ef7d00;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (max-width: 768px) {
  button.button {
    white-space: inherit;
  }
}
a.button:hover,
#commentform #submit:hover,
.submit:hover,
.added_to_cart:hover,
input[type=submit]:hover,
input.button:hover,
button.button:hover,
.wrapper .woo-sc-button:hover,
.slide-content .woo-sc-button:hover {
  background: #ED8E28;
  color: #fff;
  text-decoration: none !important;
}
a.button:active,
#commentform #submit:active,
.submit:active,
.added_to_cart:active,
input[type=submit]:active,
input.button:active,
button.button:active,
.wrapper .woo-sc-button:active,
.slide-content .woo-sc-button:active {
  border-color: #227618;
  -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.3), 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.3), 0 1px 0 #ffffff;
  box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.3), 0 1px 0 #ffffff;
}
a.button.large,
#commentform #submit.large,
.submit.large,
.added_to_cart.large,
input[type=submit].large,
input.button.large,
button.button.large,
.wrapper .woo-sc-button.large,
.slide-content .woo-sc-button.large {
  font-size: 1.416em;
}
a.button.small,
#commentform #submit.small,
.submit.small,
.added_to_cart.small,
input[type=submit].small,
input.button.small,
button.button.small,
.wrapper .woo-sc-button.small,
.slide-content .woo-sc-button.small {
  font-size: .875em;
}
a.button.red,
#commentform #submit.red,
.submit.red,
.added_to_cart.red,
input[type=submit].red,
input.button.red,
button.button.red,
.wrapper .woo-sc-button.red,
.slide-content .woo-sc-button.red {
  border-color: #af4040;
  border-bottom-color: #9a2020;
  background: #d72323;
}
a.button.red:hover,
#commentform #submit.red:hover,
.submit.red:hover,
.added_to_cart.red:hover,
input[type=submit].red:hover,
input.button.red:hover,
button.button.red:hover,
.wrapper .woo-sc-button.red:hover,
.slide-content .woo-sc-button.red:hover {
  background: #d20000;
}
a.button.orange,
#commentform #submit.orange,
.submit.orange,
.added_to_cart.orange,
input[type=submit].orange,
input.button.orange,
button.button.orange,
.wrapper .woo-sc-button.orange,
.slide-content .woo-sc-button.orange {
  border-color: #af7440;
  border-bottom-color: #9a5420;
  background: #d76b23;
}
a.button.orange:hover,
#commentform #submit.orange:hover,
.submit.orange:hover,
.added_to_cart.orange:hover,
input[type=submit].orange:hover,
input.button.orange:hover,
button.button.orange:hover,
.wrapper .woo-sc-button.orange:hover,
.slide-content .woo-sc-button.orange:hover {
  background: #d25e00;
}
a.button.green,
#commentform #submit.green,
.submit.green,
.added_to_cart.green,
input[type=submit].green,
input.button.green,
button.button.green,
.wrapper .woo-sc-button.green,
.slide-content .woo-sc-button.green {
  border-color: #87bf00;
  border-bottom-color: #7ca122;
  background: #8dc11e;
}
a.button.green:hover,
#commentform #submit.green:hover,
.submit.green:hover,
.added_to_cart.green:hover,
input[type=submit].green:hover,
input.button.green:hover,
button.button.green:hover,
.wrapper .woo-sc-button.green:hover,
.slide-content .woo-sc-button.green:hover {
  background: #87c000;
}
a.button.aqua,
#commentform #submit.aqua,
.submit.aqua,
.added_to_cart.aqua,
input[type=submit].aqua,
input.button.aqua,
button.button.aqua,
.wrapper .woo-sc-button.aqua,
.slide-content .woo-sc-button.aqua {
  border-color: #40af96;
  border-bottom-color: #209a82;
  background: #23d7af;
}
a.button.aqua:hover,
#commentform #submit.aqua:hover,
.submit.aqua:hover,
.added_to_cart.aqua:hover,
input[type=submit].aqua:hover,
input.button.aqua:hover,
button.button.aqua:hover,
.wrapper .woo-sc-button.aqua:hover,
.slide-content .woo-sc-button.aqua:hover {
  background: #00d2a8;
}
a.button.teal,
#commentform #submit.teal,
.submit.teal,
.added_to_cart.teal,
input[type=submit].teal,
input.button.teal,
button.button.teal,
.wrapper .woo-sc-button.teal,
.slide-content .woo-sc-button.teal {
  border-color: #23a6d6;
  border-bottom-color: #20799a;
  background: #23abd7;
}
a.button.teal:hover,
#commentform #submit.teal:hover,
.submit.teal:hover,
.added_to_cart.teal:hover,
input[type=submit].teal:hover,
input.button.teal:hover,
button.button.teal:hover,
.wrapper .woo-sc-button.teal:hover,
.slide-content .woo-sc-button.teal:hover {
  background: #009ed2;
}
a.button.purple,
#commentform #submit.purple,
.submit.purple,
.added_to_cart.purple,
input[type=submit].purple,
input.button.purple,
button.button.purple,
.wrapper .woo-sc-button.purple,
.slide-content .woo-sc-button.purple {
  border-color: #234dd6;
  border-bottom-color: #20489a;
  background: #2356d7;
}
a.button.purple:hover,
#commentform #submit.purple:hover,
.submit.purple:hover,
.added_to_cart.purple:hover,
input[type=submit].purple:hover,
input.button.purple:hover,
button.button.purple:hover,
.wrapper .woo-sc-button.purple:hover,
.slide-content .woo-sc-button.purple:hover {
  background: #0036d2;
}
a.button.pink,
#commentform #submit.pink,
.submit.pink,
.added_to_cart.pink,
input[type=submit].pink,
input.button.pink,
button.button.pink,
.wrapper .woo-sc-button.pink,
.slide-content .woo-sc-button.pink {
  border-color: #d623cb;
  border-bottom-color: #9a2096;
  background: #d723d5;
}
a.button.pink:hover,
#commentform #submit.pink:hover,
.submit.pink:hover,
.added_to_cart.pink:hover,
input[type=submit].pink:hover,
input.button.pink:hover,
button.button.pink:hover,
.wrapper .woo-sc-button.pink:hover,
.slide-content .woo-sc-button.pink:hover {
  background: #bc00d2;
}
a.button.silver,
#commentform #submit.silver,
.submit.silver,
.added_to_cart.silver,
input[type=submit].silver,
input.button.silver,
button.button.silver,
.wrapper .woo-sc-button.silver,
.slide-content .woo-sc-button.silver {
  color: #444 !important;
  text-shadow: 0 1px #fff;
  border-color: #bbb;
  border-bottom-color: #999;
  background: #d8d8d8;
}
a.button.silver:hover,
#commentform #submit.silver:hover,
.submit.silver:hover,
.added_to_cart.silver:hover,
input[type=submit].silver:hover,
input.button.silver:hover,
button.button.silver:hover,
.wrapper .woo-sc-button.silver:hover,
.slide-content .woo-sc-button.silver:hover {
  background: #ccc;
}
a.button.alt,
#commentform #submit.alt,
.submit.alt,
.added_to_cart.alt,
input[type=submit].alt,
input.button.alt,
button.button.alt,
.wrapper .woo-sc-button.alt,
.slide-content .woo-sc-button.alt {
  background: #ef7d00;
}
/* 8.3 Shortcode info boxes */
p.woo-sc-box,
div.woo-sc-box {
  margin: 1em 0 1.5em 0;
  padding: 9px 10px 9px 50px;
  border-width: 1px 0 1px 0;
  color: #212121;
  text-shadow: none;
}
p.woo-sc-box.rounded,
div.woo-sc-box.rounded {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
p.woo-sc-box.alert,
div.woo-sc-box.alert {
  border-color: #f0baa2;
  background-color: #ffd9c8;
}
p.woo-sc-box.download,
div.woo-sc-box.download {
  border-color: #d4ebaf;
  background-color: #edfcd5;
}
p.woo-sc-box.tick,
div.woo-sc-box.tick {
  border-color: #d4ebaf;
  background-color: #edfcd5;
}
p.woo-sc-box.info,
div.woo-sc-box.info {
  border-color: #e6e6e6;
  background-color: #f7f7f7;
}
p.woo-sc-box.note,
div.woo-sc-box.note {
  border-color: #efe3ae;
  background-color: #fef6d2;
}
p.woo-sc-box.normal,
div.woo-sc-box.normal {
  border-color: #e6e6e6;
  background-color: #f7f7f7;
}
/* 8.4 Gravity forms */
ul.gform_fields li {
  list-style: none;
}
.gfield {
  margin-bottom: 1.618em;
}
.gfield_label {
  width: 100%;
  font-weight: bold;
  margin-bottom: .618em;
  display: block;
}
.gfield_required {
  color: red;
}
.ginput_container {
  *zoom: 1;
  margin-bottom: 1.618em;
}
.ginput_container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.ginput_container:before,
.ginput_container:after {
  content: "";
  display: table;
}
.ginput_container:after {
  clear: both;
}
.ginput_container label {
  display: block;
}
.ginput_container input,
.ginput_container textarea {
  width: 100%;
}
.ginput_container .ginput_left,
.ginput_container .ginput_right,
.ginput_container .ginput_full {
  margin-bottom: 1em;
  display: block;
}
.ginput_container .ginput_left label,
.ginput_container .ginput_right label,
.ginput_container .ginput_full label {
  font-size: .875em;
}
.ginput_container .ginput_left,
.ginput_container .ginput_right {
  width: 48%;
  float: left;
  clear: left;
}
.ginput_container .ginput_right {
  float: right;
  clear: none;
}
.ginput_container .gfield_checkbox,
.ginput_container .gfield_radio {
  margin-left: 0;
}
.ginput_container .gfield_checkbox label,
.ginput_container .gfield_radio label {
  display: inline-block;
  margin-left: .618em;
}
.ginput_container .gfield_checkbox input,
.ginput_container .gfield_radio input {
  width: auto;
}
img.ui-datepicker-trigger {
  border: 0;
  padding: 0;
}
/* 8.5 IE specific styling */
.ie8 .widget_woo_blogauthorinfo .avatar {
  width: auto;
}

/*****************************************************************************************************
*                                             CUSTOM CSS
******************************************************************************************************/

body #wrapper-header{
  width: 100% !important;
  background: #303030 none repeat scroll 0 0;
  padding-right: 3.236em !important;
  margin-left: -1.618em !important;
}

.center{
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

#header #connect{
  margin-bottom: 0px;
}

header#header a#logo {
  margin: 0 0 20px;
}

#header #logo img{
  width: 100%;
}

#header .widget #connect .fr{
  /*float: right;*/
}

#header .products{
  text-align: left;
  margin-bottom: 10px;
}

#header .col-left hgroup .nav{
  margin-bottom: 10px;
}

#header .nav .cart-contents::before{
  margin: 0 0 0.541em 0.541em;
  background-color: rgba(239, 125, 0, 1);
}

#header .nav .cart-contents:hover::before{
  background-color: rgba(239, 125, 0, 0.95);
}

#header .nav .cart-contents{
  position: inherit;
  width:auto;
  color:#fff;
}

#header .woocommerce-product-search{
  border:none;
}

#header .woocommerce-product-search .search-field,
.header-block.search-box.is-mobile-search .search-field,
 #searchform #s 
{
  width: 100%;
    color: white;
    text-align:left;
  background: #4C4C4C;
    border-radius:0;
    border:none;
  padding: 1.10em 2.618em 1.10em 0.875em;
}

@media (min-width: 768px) {

 #searchform #s ,
  #header .woocommerce-product-search .search-field{
    width: 280px;
  }
}
@media (max-width: 768px) {

 #searchform #s ,
  #header .woocommerce-product-search .search-field{
    width:100%
  }
}
 #searchform{
    border-radius:0;
    margin: 0;
    border:none;
}

 #searchform #searchsubmit,
#header .woocommerce-product-search input[type="submit"],
.header-block.search-box.is-mobile-search .woocommerce-product-search input[type="submit"]{
    background: #E57902 url("images/ico-search.png") no-repeat scroll center center / 16px 16px;
    border: medium none;
    border-radius: 0;
    box-shadow: none;
    height: 1.618em;
    margin: 0;
    opacity: 1;
    overflow: hidden;
    padding: 26.5px;
    position: absolute;
    right: 0;
    text-indent: -99em;
    top: 0;
    width: 1.618em;
}
#header #searchform #searchsubmit:hover,
#header .woocommerce-product-search input[type="submit"]:hover{
  opacity: 0.5;
}

#header .my_account #mega-menu-wrap-top-menu #mega-menu-top-menu > li.mega-menu-item > a {
  background-color: #4C4C4C;
  opacity: 1;
  padding: 14px 20px;
  -webkit-transition: opacity ease-out 0.5s;
  -moz-transition: opacity ease-out 0.5s;
  -ms-transition: opacity ease-out 0.5s;
  -o-transition: opacity ease-out 0.5s;
  transition: opacity ease-out 0.5s;
}

#header .my_account #mega-menu-wrap-top-menu #mega-menu-top-menu > li.mega-menu-item > a:hover{
  opacity: 0.5;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
      padding: 10px ;
}

#mega-menu-top-menu{
  background-color: #303030;
}
.header-icons,
.header-block.search-box.is-mobile-search {
    display: none;
}
  
.main-nav-inner .header-subscribe #connect .social{
  height: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .main-nav-inner .header-subscribe {
    position: absolute !important;
    top: 380px !important;
    left: 25px !important;
  }
  .main-nav-inner div.header-subscribe-blog{
    top: 114px !important;
    position: absolute !important;
    float: none !important;
  }
  #mega-menu-wrap-primary-menu .mega-menu-toggle, #mega-menu-wrap-blog-primary-menu .mega-menu-toggle {
    padding: 5px 0;
  }
}

.nav .price{
  margin-left: 3px;
}

#mega-menu-wrap-top-menu, 
#mega-menu-wrap-top-menu #mega-menu-top-menu, 
#mega-menu-wrap-top-menu #mega-menu-top-menu ul, 
#mega-menu-wrap-top-menu #mega-menu-top-menu li, 
#mega-menu-wrap-top-menu #mega-menu-top-menu p, 
#mega-menu-wrap-top-menu #mega-menu-top-menu img, 
#mega-menu-wrap-top-menu #mega-menu-top-menu div, 
#mega-menu-wrap-top-menu #mega-menu-top-menu a {
    background: #303030 none repeat scroll 0 0;
    color:#fff !important;
}


.separateur{
    margin-bottom: 50px;
    min-width: 860px;
}

.produit_like{
  width:100%;
  float:left !important;
  text-align:center;
  margin: 10px auto;
  min-height: 21px;
}
.produit_share{
  width:180px;
  margin: 25px auto;
  float: left;
}
.produit_share i{
  background-position:-213px -576px;
  width: 19px;
  height: 19px;
}
.produit_share i a{
  width: 19px;
  height: 19px;
  display: block;
}

.yith_magnifier_gallery .yith_magnifier_thumbnail{
  width:auto !important;
}

@media only screen and (min-width: 800px) {
  .single-product .product .images{
    width: 37.9167%;
  }

  .single-product .product .summary{
    width: 57.9167%;
  }

}

.single-product .images .woocommerce-main-image{
  position: relative;
}

.single-product .images img{
  width: 350px;
  height: auto;
}

.single-product .images .thumbnails{
  margin-left:-5px;
}

.single-product .images .pdf_extrait{
  width: 60px;
  position: absolute;
  bottom:40px;
  left:265px;
}

.single-product .images .woocommerce-main-image .wp-post-image{
  position: relative;
}

.single-product .images .bandeau-new{
  background-image: url('images/picto_nouveaute.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 145.5px 90.75px;
  width: 145.5px;
  height: 90.75px;
  position: relative;
  bottom: 545px;
  right: 60px;
  display: inline-block;
  float: right;
}

.single-product .images .bandeau-prom{
  background-image: url('images/picto_promotion.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 145.5px 90.75px;
  width: 145.5px;
  height: 90.75px;
  position: relative;
  bottom: 545px;
  right: 60px;
  display: inline-block;
  float: right;
}

@media (max-width: 768px) {
  .single-product .images .bandeau-new, .single-product .images .bandeau-prom{
    display: none;
  }
}


ul.products li.product div div.picto-new{
  background-image: url('images/picto_nouveaute.png');
  background-repeat: no-repeat;
  background-position: left center;
  width: 62px;
  height: 51px;
  bottom: 55px;
  float: right;
}

@media (max-width: 768px) {
  #tab-additional_information {
      padding-left: 0;
      padding-right: 0;
  }
  table.shop_attributes{
    font-size: 0.75em;
    width: 90%;
    margin: auto;
  }
}

.hide-mobile{
  visibility: hidden;
  display: none;
}
@media (max-width: 768px) {
    .hide-mobile{
      visibility: visible;
      display: block;
    }
    #connect {
        margin-bottom: 0px;
    }
}

#custom-filter div{
  margin-bottom: 10px;
}

#custom-filter form h3 {
    color: #474747;
    font-size: 16px;
}

@media (max-width: 768px) {
  #custom-filter form h3 {
    display: inline-block;
    width: 110px;
  }
}

#paiement-cb-livraison{
  background-color: #f7f7f7;
  margin-left: -1.618em !important;
  padding-bottom: 10px;
}

#paiement-cb-livraison div.wrapper{
  padding-left: 1em;
}

@media (min-width: 768px) {
  #paiement-cb-livraison{
    width: 100%;
    padding-right: 3.236em !important;
  }

  #paiement-cb-livraison div.wrapper{
    padding-left: 3.236em;
  }
}


#paiement-cb-livraison .wrapper .widget_image_text{
  color: #4e4e4e;
  width: 100%;
  text-align: center;
  margin: 0 auto 30px auto;
}

#paiement-cb-livraison .wrapper .widget_image_text .image-bloc{
  padding: 20px 0 40px 0;
}

#paiement-cb-livraison .wrapper .widget_image_text p,
#paiement-cb-livraison .wrapper .widget_image_text h3{
  margin: 0;
  color:#484848;
}

.hide-logo {
  visibility: hidden;
  display: none;
}

#header div.header-block.search-box form.woocommerce-product-search{
  display: inline-block;
}

#header div.header-block.my_account{
  margin: 0 0 1.618em 0;
}

#footer-widgets-bottom.col-3 #copyrights, #footer-widgets-bottom.col-3 #share{
  width:100%;
}

.homepage-area .post img.alignleft{
  float:none;
}

#footer {
  margin-left: -1.618em;
  margin-right: -1.618em;
  background: #303030;
}

@media (min-width: 768px) {
  #footer {
    padding: 2.618em 1.618em;
  }
  .homepage-area .post img.alignleft{
    float:left;
  }

  #footer-widgets-bottom.col-3 #copyrights, #footer-widgets-bottom.col-3 #share{
    width: 29.1667%;
  }

  #header div.header-block.my_account{
    margin: 1.618em 0 0 0;
  }
}

#footer .widget_nav_menu ul li{
  list-style-type: none;
}

#footer .widget_nav_menu a,
#footer p,
#footer .textwidget{
  color: #ffffff;
}

#footer h3{
  color: #ef7d00;
  font-size: .875em;
}

#footer .menu-footer-container ul li{
  display: inline-block;
  margin-left: 10px;
}

#footer .newsletter-submit,
#footer .newsletter-email{
  width: 100%;
}

@media (min-width: 768px) {
  #footer .newsletter-subscription{
    width: 300px;
  }

  #footer .newsletter-email{
    width: 200px;
  }
}

#footer .newsletter-subscription table,
#footer .newsletter-subscription td{
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-top: 10px;
}


#footer #footer-widgets-adresse, 
#footer #footer-widgets-footer-menu, 
#footer #copyrights-amphora{
  text-align: center;
  margin: 0 auto;
  font-size: 0.875em;
}

#footer #footer-widgets-adresse, 
#footer #footer-widgets-footer-menu{
  padding:0 0 10px 0;
}

#footer .footer-bottom-inner .textwidget{
  color: #303030; 
  font-size: 0.8em;
  margin-bottom: 10px;
}

.footer-top{
  font-size: 0.7em;
}

@media (min-width: 768px) {
  .footer-top,
  #footer .footer-bottom-inner .textwidget{
    font-size: 100%;
  }
}

.footer-top #footer-widgets.col-3 .block {
  display: inline;
  float: left;
  width: 100%;
  margin-top: 10%;
}

@media (min-width: 768px) {
  .footer-top #footer-widgets.col-3 .block {
    margin-left: 3.33333333%;
    margin-right: 3.33333333%;
  }
}


#footer .newsletter-subscription .newsletter-td-submit{
  padding-left: 5px;
}

.footer-top{
  padding-bottom: 15px;
}

#footer-widgets-bottom.col-3 .block {
  display: inline;
  float: left;
  width: 29.16666667%;
  margin-left: 2.08333333%;
  margin-right: 2.08333333%;
  *width: 29.11458333%;
  *margin-left: 2.03125%;
  *margin-right: 2.03125%;
}

#footer-widgets-bottom #share{
  text-align: center;
}

.woocommerce-product-search .search-field{
  color: white;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
}

@media (min-width: 768px) {
  .layout-full .related ul.products li.product{
    overflow: hidden;
    width:13% !important;
    margin: 0 10px 0 0 !important;
  }
  
  #custom-filter > div, #custom-filter > form {
    width:33%;
    float:left;
  }
  #custom-filter form, #custom-filter div{
    margin-bottom: 0 auto 20px auto;
    text-align: center;
  }
  #paiement-cb-livraison .wrapper .widget_image_text{
    display: inline-block;
    width: 30%;
    padding: 0 10px;
  }
  header#header{
    height: 125px;
    text-align: justify;
    padding: 0;
  }

  #header div.header-block{
    width: auto;
    height: auto;
    margin: 1.618em 0 0 0;
    vertical-align: top;
    display: inline-block;
    *display: inline;
  }

  .stretch {
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
  }

  #header div.header-block.cart{
    width: 185px;
  }
  
  #header div.header-block.search-box{
    width: 160px;
  }
  #header div.header-block.search-box form.woocommerce-product-search{
    display: block;
  }
  .footer-top #footer-widgets.col-3 .block {
    display: inline;
    float: left;
    width: 20%;
    margin-top: 0;
    margin-left: 3.33333333%;
    margin-right: 3.33333333%;
  }
}

@media (min-width: 880px) {
  #header div.header-block.search-box{
    width: auto;
  }
}
@media (min-width: 1035px) {
  #header.col-3 .block {
    display: inline;
    float: left;
    width: 29.16666667%;
    margin-left: 2.08333333%;
    margin-right: 2.08333333%;
    *width: 29.11458333%;
    *margin-left: 2.03125%;
    *margin-right: 2.03125%;
  }
   
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li{
    line-height: 30px !important;
  }
  .hide-mobile{
    visibility: visible;
    display: inline-block;
  }

  #custom-filter .woocommerce-result-count{
    text-align: left;
  }

  nav#navigation{
    height: 47px;
  }
  
  #mega-menu-wrap-top-menu, #mega-menu-wrap-primary-menu{
    display: inline-block;
  }
  
  #mega-menu-wrap-primary-menu {
    /*width: 914px;*/
  }
  
  .main-nav-inner{
    width: 1134px; 
  }
  
  .main-nav-inner div.header-subscribe{
    display: inline-block;
    position: relative;
        top: 10px;
    vertical-align:top;
  }
  
  .main-nav-inner div.header-subscribe-blog{
    height: 0;
    top: -35px;
    left: -65px;
    position: relative;
    float: right;
  }
}

/*@media (max-width: 768px) {
  .main-nav-inner div.header-subscribe{
    top: -34px !important;
    height: 0px;
  }
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img {
      visibility: hidden;
  }
}*/

.product .summary h2{
  font-size: 18px;
  color: #ef7d00;
}

.summary .product_meta{
  margin:15px 0;
}

#footer{
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  margin-left: -1.618em !important;
  margin-right: -1.618em !important;
}

#footer #connect {
  margin-bottom: 0;
}


@media screen and (max-width:1136px){
    .main-nav-inner #connect .social a.linkedin{
        display: none;
    }
    .main-nav-inner{
        max-width: 1084px !important;
        width: 100%;
    }
    
    .header-subscribe #connect{
        width: 210px;
    }
    
    
}    
@media screen and (max-width:1105px){
    .main-nav-inner #connect .social a.instagram, .main-nav-inner #connect .social a.youtube{
        display: none;
    }
}

@media screen and (max-width:1105px){
    .header-subscribe #connect{
        width: 130px;
    }
    
}
@media screen and (max-width:1105px){
    .header-subscribe #connect{
        display: none;
    }
    
}
@media screen and (max-width:600px){
    .main-nav-inner #connect .social a.instagram, .main-nav-inner #connect .social a.youtube, .main-nav-inner #connect .social a.linkedin{
        display: inline-block;
    }
    .header-subscribe #connect{
        display: none;
    }
    
    .main-nav-inner .header-subscribe{
        top: 98px !important;
    }
}
@media screen and (max-width:375px){
    .main-nav-inner .header-subscribe{
        top: 93px !important;
    }
}
@media screen and (max-width:360px){
    .main-nav-inner #connect .social a.instagram, .main-nav-inner #connect .social a.youtube, .main-nav-inner #connect .social a.linkedin{
        display: none;
    }
}
@media screen and (max-width:300px){
    .header-subscribe #connect{
        display: none;
    }
}

#footer .footer-top,
#footer .footer-bottom-inner{
  max-width: 77.498em;
  padding-top: 2.618em;
  margin: 0 auto;
}

#footer .footer-bottom-inner{
  padding-left: 3.236em;
}

#footer .footer-bottom{
  width: 100%;
  background-color: #ebebeb;
  padding-right: 3.236em !important;
  margin-left: -1.618em !important;
}

@media (max-width: 768px) {
  #footer, #footer .footer-bottom {
    margin: 0;
  }
  #footer .footer-bottom {
    width: inherit;
  }
}

.body-separator {
  color:#fff;
  font-weight: bold;
  height: 35px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: relative;
  padding:10px 0 0;
  margin-bottom: 10px;
}

h1 .body-separator{
    line-height: 0.8em;    
}

.body-separator.border-grey{
  border-top: 3px solid #444;
  border-bottom: 3px solid #444;
  color:#444;
}

.body-separator .txt-left,
.body-separator .txt-right{
  width: 40%;
  display: inline-block;
  height: 35px;
}

.body-separator .txt-center{
  width: 90%;
  display: inline-block;
  height: 35px;
  text-align: center;
  font-size:0.8em;
}

h1 .body-separator .txt-center{
    font-size: 0.5em;
}

.body-separator .image-center{
  display: none;
  width: 0;
}

.body-separator .txt-left{
  text-align: right;
  margin-right: 10px;
  font-size: 0.8em;
}

.body-separator .image-content{
  display: none;
  visibility: hidden;
}

.body-separator .txt-right{
  text-align: left;
  font-size: 0.8em;
}

.image-separateur{
  display: none;
  visibility: hidden;
  padding:25px 0;
  margin: 0 auto;
}

#recent-news .image-separateur {
  padding-bottom: 45px;
}

@media (min-width: 768px) {
  .body-separator {
    display:none;
    visibility: hidden;
  }

  .image-separateur{
    display: block;
    visibility: visible;
  }

  #main-auteur .image-separateur{
    margin: 0 auto;
  }
  
  .body-separator .image-content{
    position: absolute;
    left:43%;
    top:-24px;
    height: 117px;
  }
  .body-separator .image-content{
    display: inline-block;
    visibility: visible;
  }

  .body-separator .txt-center{
    font-size:12px;
  }

  .body-separator .image-center{
    display: inline-block;
    width: 5%;
    margin: 0 auto;
    z-index: 1;
  }
}

@media (min-width: 1024px) {
  .body-separator .image-content{
    position: absolute;
    left:49%;
    top:-24px;
    height: 117px;
  }
}

.color-orange{
  color: #ef7d00;
}

.wrapper select {
  font-family: 'helvetica', Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 6px 10px;
  color: #565550;
  background: transparent;
  width: 170px;
  background: #fff;
  border: 1px solid #aaaaa7;
  color: #666;
  font-size: 12px;
}

#actus header h2{
  font-size: 1em;
  margin-bottom: 4.236em;
  text-align: center;
  text-transform: uppercase;
}

.home .homepage-area {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .home .homepage-area {
    margin-top: 20px;
  }
}

.homepage-area .post{
  margin-bottom: 20px;
  min-height: 153px;
}

.homepage-area .post .entry{
  margin-bottom: 0.5em;
  margin-left: 0px;
}

.homepage-area .post .entry p{
  text-align: justify;
}

.homepage-area .post h4
{
	font-size: 1.2em;
}

.homepage-area .entry .read-more{
  margin: 10px 0px 5px 0px;
}

@media (max-width: 768px) {
    .homepage-area .entry .read-more{
      display: block;
      margin: 30px 0 25px 0;
    }
}

.homepage-area .entry .read-more a{
	padding: 0.7em 1.5em;
	font-weight: initial;
	font-style: italic;
        font-size: 16px;
}

.homepage-area .col-right{
  display: block;
}

.home .col-right{
  margin-bottom: 1.5em;
}

.home .col-right .widget_sp_image{
  padding-top: 10px;
}

.home .col-right .widget_sp_image .aligncenter{
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home #recent-news{
/*  display: inline;
  float: left;*/
  width: 95.83333333%;
  margin-left: 2.08333333%;
  margin-right: 2.08333333%;
}

.home .body-separator{
  color:#474747;
  border-color:#474747;
  margin-bottom: 55px;
}

@media (min-width: 800px) {
  .homepage-area .post .entry{
    margin-left: 385px;
  }
}

@media (min-width: 1024px) {
  #main .post .alignleft{
    vertical-align: middle;
  }
}

#footer-widgets{
  margin-left: 10%;
  margin-right: 10%;
}

#footer #footer-widgets .widget{
  margin-bottom: 0;
}

#footer #footer-widgets .widget_nav_menu ul, #footer #footer-widgets-footer-menu .widget_nav_menu ul{
  margin-bottom: 0;
}

.slides .slide-content header{
  visibility: hidden;
  display: none !important;
}

ul.products{
  margin: 0;
}

ul.products li.product .product-details {
    background: rgba(234, 121, 0, 0.95) none repeat scroll 0 0 !important;
    border: 0.334em solid #ffffff;
    bottom: 0;
    color: #f7f7f7;
    left: 0;
    opacity: 0;
    padding: 1.618em;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
    transition: all 0.4s ease 0s;
}

.single-product .summary h1{
  margin: 0;
}

@media (max-width: 768px) {    
    .body-separator { /* #footer #main-cat-products #content */
      color: #fff;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff;
      margin-top: 20px;
      text-transform: uppercase;
      text-align: center;
    }
    .homepage-area .body-separator, #main .body-separator, .page-template-template-newsletter .body-separator  { 
      color:inherit;
      border-top: 2px solid #474747;
      border-bottom: 2px solid #474747;
      margin-bottom: 25px;
      text-transform: uppercase;
      text-align: center;
    }
    body.home.blog section#recent-products .body-separator {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
  .single-product .summary h1{
    font-size: 1.3em !important;
    line-height: inherit;
  }
}

.single-product .summary h2{
  color:#303030;
  font-style: italic;
  margin-bottom: 1.2em;
}

.single-product .summary .product-desc{
  margin-top: 1.2em;
}

.single-product .product_meta .posted_in{
  font-weight: bold;
}
.single-product .product_meta .posted_in a{
  font-weight: normal;
}

.single-product ul.products li.product .product-details h3{
  font-size: 0.8em;
  line-height: 1.2em;
}

.single-product #content .related h2{
  text-align: left;
  text-transform: none;
  margin-bottom: 1.2em;
}

.single-product #content .related ul.products{
  margin: 0;
}

.single-product .recent-news-product{
  background-color: #303030;
}

.single-product .recent-news-product #main{
  float: none;
}

.single-product .recent-news-product #main article{
  margin-bottom: 20px;
  padding: 0 1em;
}

.single-product .recent-news-product #main p{
  color: #fff;
}

.footer-single-product #recent-news{
  max-width: 77em;
  margin: 0 auto;
}

.product-details{
  overflow: hidden;
}

div#tab-tab-lauteur img{
  width: 100%;
}

div#tab-tab-lauteur p{
  display: block;
  text-align: justify;
}

div#tab-tab-lauteur div.image-auteur{
  float: left;
  width: 200px;
  margin-right: 35px;
}

.product .entry-summary #prix_produit,
.product .entry-summary #form-add-cart{
  display: inline-block;
}

.single-product .summary #prix_produit .price{
  color: #ef7d00;
  font-size: 1.8em;
  line-height: 1.8em;
  margin-right: 0.2em;
}

.inline-block{
  display: inline-block;
}

.image-icon-produit{
  max-width: 80px;
  margin-left: 10px;
  vertical-align: middle;
}

.image-icon-produit-2{
  max-width: 230px;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  background-color: #ef7d00;
  padding:5px 2em;
  -webkit-transition: opacity ease-out 0.1s;
  -moz-transition: opacity ease-out 0.1s;
  -ms-transition: opacity ease-out 0.1s;
  -o-transition: opacity ease-out 0.1s;
  transition: opacity ease-out 0.1s;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
}

.image-icon-produit-2:hover{
  opacity: 0.8;
}

.image-icon-produit-2 span{
  color: #fff !important;
}

.image-icon-produit-2 img{
  position: absolute;
  right:-58px;
  top:-2px;
}

#connect .social a.twitter:hover{
    background: url(images/picto_sprites.png);
    background-position: 0 -1999px;
  display: inline-block;
  width: 27px;
  height: 30px;
}

#connect .social a.facebook:hover{
        background: url(images/picto_sprites.png);
    background-position: 0 -1797px;
  display: inline-block;
  width: 27px;
  height: 30px;
}

#connect .social a.googleplus:hover{
  background: url('images/google+_over.png');
  display: inline-block;
  width: 27px;
  height: 30px;
}

.single-product .product .onsale{
  z-index: 999;
}

.unbold{
  font-weight: normal;
}

div.related h2{
  padding: 5px 0px 5px 25px;
  width: 220px;
  background-color: #ef7b00;
  font-size: 18px;
  font-weight: bolder;
  color: white;
}

@media (max-width: 768px) {
  div.related h2{
    width: inherit;
  }
}

form.woocommerce-ordering h3{
  display: inline;
}

@media (min-width: 1270px){
    .layout-full .woocommerce-columns-4 ul.products li.product {
        min-height: 444.875px;
        position: relative;
    }
    
    div#main ul.products li.product .button, div#main ul.products li.product .added_to_cart {
        position: absolute;
        bottom: 0;
        left: 72px;
    }
}

div.cross-sells ul.products li.product .product-details h3 {
    font-size: 0.7em;
}

/*************************************************************************** PAGE AUTEUR *************************************************************/

.page-template-template-auteurs #wrapper-header .wrapper{
  max-width: 77.498em;
}

.page-template-template-auteurs .wrapper{
  max-width: 100%;
}

#main-auteur header{
  margin-bottom: 1.618em;
  margin-left: -1.618em;
  margin-right: -1.618em;
  padding-top: 1em;
  background: #303030 none repeat scroll 0 0;
}

@media (min-width: 1024px) {
  #main-auteur header .body-separator{
    margin: 2em;
  }
}

#main-auteur .lettre-auteur{
  max-width: 49%;
  margin:80px auto 0 auto;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  #main-auteur .lettre-auteur{
    max-width: 78%;
  }
}

#main-auteur .current-letter{
  border-bottom: 5px solid #ef7d00;
  margin: 3em;
  position: relative;
}

#main-auteur .current-letter span{
  position: absolute;
  /*left:50%;*/
  top:-30px;
  left:0;
  right:0;
  margin-left:auto;
  margin-right:auto;
  display: block;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-color: #ef7d00;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding:10px;
  font-weight: bold;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

#main-auteur .lettre-auteur a{
  text-decoration: none;
  display: inline-block;
  width:35px;
  height:35px;
  line-height: 35px;
  text-align: center;
  background-color: #4C4C4C;
  font-weight: bold;
  color:#fff;
  margin-left: 10px;
  margin-bottom: 20px;
  padding:10px;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: all ease-out 0.1s;
  -moz-transition: all ease-out 0.1s;
  -ms-transition: all ease-out 0.1s;
  -o-transition: all ease-out 0.1s;
  transition: all ease-out 0.1s;
}

#main-auteur .content-auteur{
  padding:20px;
}

@media (max-width: 768px) {
  #main-auteur .content-auteur{
    padding:0px;
  }
}

#main-auteur .content-auteur article{
  padding:10px;
}

#main-auteur .content-auteur .image-auteur{
  position: relative;
}

#main-auteur .content-auteur .image-auteur img{
  width: 200px;
  height: auto;
}

#main-auteur .content-auteur .image-auteur .triangle{
  visibility: hidden;
  display: none;
  
  position: relative;
  bottom: 125px;
  left: 200px;
  margin: 0;

  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #ef7b00;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #ef7b00;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

#main-auteur .content-auteur .bloc-content h3{
  background-color: #ef7b00;
  font-weight: bolder;
  color: white;
  padding: 0px 5px 0px 5px;
}

@media (min-width: 1100px) {
  #main-auteur .content-auteur .image-auteur .triangle{
    visibility: visible;
    display: block;
  }
}

#custom-filter .bloc-content{
  background-color: #EBEBEB;
  padding: 15px;
  float: none;
}

#custom-filter .bloc-content h3{
  color:#ef7b00;
  display: inline-block;
}

#main-auteur .content-auteur .bloc-content{
  background-color: #EBEBEB;
  padding: 15px;
  min-height: 170px;
}

#main-auteur .content-auteur .bloc-content h3{
  display: inline-block;
}

#main-auteur .content-auteur .bloc-content p{
  text-align: justify;
}

#main-auteur .content-auteur .bloc-content .link-auteur{
  display: inline-block;
  background-color: #4C4C4C;
  padding: 5px;
}

#main-auteur .content-auteur .bloc-content .link-auteur{
  color:#fff;
}

#main-auteur .content-auteur .bloc-content .link-auteur a{
  color:#fff;
  margin:0 5px;
}

#main-auteur .content-auteur .bloc-content .link-auteur a:hover{
  color:#ef7b00;
}


@media (min-width: 320px) {
  #main-auteur .body-separator .txt-right{
    padding-left: 60px;
  }
}

@media (min-width: 520px) {

  #main-auteur .content-auteur .image-auteur{
    width:25%;
    display: inline-block;
  }

  #main-auteur .content-auteur .bloc-content{
    width:60%;
    display: inline-block;
    margin-left: 35px;
    vertical-align: top;
  }
}

@media (min-width: 1024px) {
  #main-auteur .body-separator .image-content{
    position: absolute;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    top:-24px;
    height: 117px;
  }
  #main-auteur .body-separator .image-content{
    display: inline-block;
    visibility: visible;
  }

  #main-auteur .body-separator .txt-left{
    padding-right: 20px;
  }

  #main-auteur .body-separator .txt-right{
    padding-left: 120px;
  }

  #main-auteur .body-separator .txt-left, .body-separator .txt-right {
    width:45%;

  }  

  #main-auteur .content-auteur{
    max-width: 80%;
    margin:0 auto;
    padding:20px;
  }

  #main-auteur .content-auteur .bloc-content .link-auteur{
    float: right;
  }
}

@media (min-width: 1600px) {
  #main-auteur .content-auteur .bloc-content{
    width:65%;
  }
}

#main-auteur .lettre-auteur a:hover,
#main-auteur .lettre-auteur a.current{
  background-color: #ef7d00;
  text-decoration: none;
}


/*************************************************************************** PAGE PANIER *************************************************************/

table.cart{
  border: 1px solid #fff;
}

table.cart thead th{
  border-bottom: 2px solid #fff;
  border-right: 1px dotted #fff;
}

table.cart tbody td {
    border-bottom: 1px solid #fff;
}

table.cart td.product-remove a{
  color:#ef7d00 !important;
}

table.cart td.product-remove a:hover{
  background-color:#ef7d00 !important;
  color:#fff !important;
}


table.cart td.product-name img {
  height: 3.618em !important;
  width: auto !important;
}

table.cart td.product-name a {
  line-height: 3.618em;
  color:#474747;
}

@media (max-width: 768px) {
  table.cart > tbody > tr{
    font-size: 0.75em;
  }
  table.cart > tbody > tr > td.product-name {
    max-width: 100px;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
  table.cart td.product-name a {
    line-height: 1em;
  }
}

table.cart th {
    text-align: center !important;
}

table.cart td {
    /*text-align: center !important;*/
    vertical-align: middle;
}

table.cart td.actions {
    text-align: right !important;
}

section.entry table p {
    margin-right: 0;
}

table .shipping th.bgd-grey{
  line-height: 35px;
}

table .shipping .img-livraison{
  height: 35px;
  margin-left: 20px;
}

table .bgd-white{
  background-color: #F7F7F7;
}

table .bgd-grey{
  background-color: #EBEBEB;
}

table .bgd-grey-plus{
  background-color: #4C4C4C !important;
  color:#fff;
  text-align: center;
}

.center-txt{
  text-align: center;
}

#article-main-auteur{
  background-color: #ebebeb;
  padding:20px;
}

@media (min-width: 1024px) {
  #article-main-auteur .image-auteur{
    display: inline-block;
    width: 35%;
    vertical-align: top;
  }

  #article-main-auteur .bloc-content{
    display: inline-block;
    width: 60%;
    padding-left: 10px;
  }
}

#article-main-auteur .image-auteur img{
  border:5px solid #fff;
}

#article-main-auteur .bloc-content .link-auteur{
  background-color: #303030;
  padding: 0 20px;
}

#article-main-auteur .bloc-content .link-auteur a{
  color:#fff;
  margin:0 5px;
}

#article-main-auteur .bloc-content .bloc-subcontent{
  padding: 10px 0  0 20px;
}

#article-main-auteur .bloc-content h3{
  color:#ef7d00;
}

#article-main-auteur .bloc-content p{
  color:#303030;
}

#sidebar .widget h2 div{
  background-repeat: no-repeat !important;
  background-position: left center;
  padding: 31px;
  position: relative;
  bottom: 8px;
  float: left;
}

#sidebar .widget h2 div.picto-parutions{
  background-image: url("images/picto_blog/picto_blog_parutions.png");
}

#sidebar .widget h2 div.picto-fb{
  background-image: url("images/picto_blog/picto_blog_facebook.png");
}

#sidebar .widget h2 div.picto-actus{
  background-image: url("images/picto_blog/picto_blog_actus.png");
}

#sidebar .widget_categories,
#sidebar .widget_products{
  /*padding: 10px;*/
}

#sidebar .widget_categories h2,
#sidebar .widget_products h2,
#sidebar .widget_FacebookLikeBox h2,
#sidebar .popular-posts h2{
  background-color: #ef7d00;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  margin: 0;
}

@media (max-width: 768px) {
  #sidebar .widget_categories h2, #sidebar .widget_products h2 {
      font-size: 1.1em;
  }
  #sidebar .popular-posts {
      margin-top: 20px;
  }
}
#sidebar .widget_categories ul {
  background-color: #4C4C4C;
  padding: 35px 0 20px 20px;
}

#sidebar .widget_categories ul li{
  list-style-type: none;
  color:#fff;
  text-transform: uppercase;
}

#sidebar .widget_categories ul li:before {
    content: "• ";
    color: #ef7d00;
    margin-right: 5px;
}

#sidebar .widget_categories ul li a{
  color:#fff;
  font-weight: bold;
}

#sidebar .widget_products ul{
  background-color: #F7F7F7;
  padding: 40px 10px 10px 10px;
}

#sidebar .popular-posts ul{
  background-color: #F7F7F7;
  padding: 30px 10px 10px 10px;
}

#sidebar .popular-posts hr{
  color: #F7F7F7;
  border-width: 1px;
  margin: 1em 0px 1em 0px;
}

#sidebar .wpp-title {
  color: #474747;
  font-weight: bold;
  font-style: italic;
}

#sidebar .wpp-thumbnail.wpp_def_noPath{
  height: 108px;
}

#sidebar .widget_products ul li .amount{
  color:#303030;
}

#sidebar .product_list_widget li{
  margin: 0;
}

#sidebar .product_list_widget li img{
  width: 90px;
  margin-left: 10px;
  margin-right: 15px;
  float: left;
}

#sidebar .product_list_widget .product-button{
    background-clip: padding-box;
    background: #ef7d00;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
    padding: 0.01em 0.26em;
    position: relative;
    bottom: 45px;
    left: 115px;
}

#sidebar .product_list_widget li .product-title{
  color: black;
  font-weight: bold;
}

/*************************************************************************** PAGE HUB CATEGORIES *************************************************************/

#main-cat-products{
  width: 100%;
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 75px;
}

body.page-template-template-categoriesproduits{
  background: #303030;
}

.catprod_img{
  display: block;
}

@media (max-width: 768px) {
  .catprod_img{
    margin-bottom: 10px;
  }
}

.catprod_img.hide-mobile-cat{
  visibility: hidden;
  display: none;
}

.catprod_img a img{
  width: 100%;
}

.content-cat-products{
  margin-top: 50px;
}

@media (min-width: 833px) {
  #main-cat-products{
    max-width: 765px;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  
  .catprod_img{
    display: inline-block;
    margin: 3px;
  }
  
  .catprod_img a img{
    width: 376px;
  }
}

@media (min-width: 1215px) {
   #main-cat-products{
    max-width: 1147px;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 75px;
   }
   
  .catprod_img.hide-mobile-cat{
    visibility: visible;
    display: inline-block;
  }
}

/*************************************************************************** PAGE INSTITUTIONNEL *************************************************************/

.institu{
    padding-top: 30px;
    padding-bottom: 75px;
    max-width: 900px;
}

.institu h1,
.institu h2,
.institu h3,
.institu h4,
.institu h5,
.institu h6 {
    position: relative;
    padding-left: 25px;
    width: 425px;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;

    background: #ef7b00;
}

.institu h1:before,
.institu h2:before,
.institu h3:before,
.institu h4:before,
.institu h5:before,
.institu h6:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;

    background: #ef7b00;

    transform-origin: top left;
    -ms-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
}

.institu p{
    padding-left: 25px;
}

@media (max-width: 768px) {
    .institu p{
        padding-left: 0px;
    }
}

/*************************************************************************** UPPER FOTTER WIDGETS *************************************************************/

section#upper-footer{
    width: 95.83333333%;
    margin-left: 2.08333333%;
    margin-right: 2.08333333%;
}

section#upper-footer #recent-news{
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section#upper-footer {
        /*margin-top: 30px;*/
        padding-left: 1.1em;
        padding-right: 1.1em;
        width: inherit;
    }
    section#upper-footer:before {
        content: "\00A0";
    }
    section#upper-footer #recent-news .center{
        padding-bottom: 10px;
    }
}

section#upper-footer #recent-news #main{
    width: 95%;
}

section#upper-footer #recent-products{
    max-width: 1140px;
    margin: 0 auto;
}

section#upper-footer #recent-news #main h4
{
	font-size: 1.2em;
}

section#upper-footer #recent-news #main p
{
    font-size: 1.1em;
}

section#upper-footer div.product-details h3{
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  border: 0 !important;
}

#nos-univers-title{
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 30px;
}

#nos-univers-title div.body-separator{
  color: #f7f7f7;
  border-color: #f7f7f7;
}

#nos-univers-content{
  min-height: 250px;
  max-width: 510px;
  margin: 0 auto;
}

#nos-univers-content #wrapper{
  max-width: 510px;
  padding-top: 15px;
}

@media (min-width: 1161px) {
    #nos-univers-content,
    #nos-univers-content #wrapper{
      max-width: 1020px;
    }
}

#nos-univers-content #wrapper div{
  padding: 20px;
  display: inline-block;
}

#nos-univers-content a{
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 62px 62px;
  padding: 31px;
  display: inline-block;
}

#nos-univers-content a:hover{
  background-repeat: no-repeat !important;
  background-size: 62px 62px;
  padding: 31px;
  display: inline-block;
}

.post .post-meta li.post-category div,
.post .post-meta li.post-category div > a,
.post .post-meta li.post-category div > a:hover{
  display: none;
}

.post .post-meta li.post-category{
  float: none;
}

@media (max-width: 1075px) {
    .post .post-meta li.post-category{
      float: none;
      display: block;
    }
    .post .post-meta li.post-category div {
      display: block;
      border-radius: 50px;
      width: 40px;
      height: 40px;
      position: relative;
      bottom: 24px;
      left: 20px;
      float: right;
      background: none;
    }

    .post .post-meta li.post-category div > a{
      display: block;
      background-repeat: no-repeat;
      background-position: inherit;
      background-size: 60%;
      padding: 31px;
      margin: 0;
      position: relative;
      top: 5px;
      right: -22px;
      float: right;
    }
}

@media (min-width: 1075px) {
    .post .post-meta li.post-category{
      float: right;
    }
    
    .post header .post-meta{
        min-width: 560px;
    }
    
    .post .post-meta a{
      margin-right: -15px;
    }
    
    .post .post-meta li.post-category div {
      display: block;
      border-radius: 50px;
      width: 70px;
      height: 70px;
      position: relative;
      bottom: 24px;
      left: 25px;
      float: right;
      background: #EBEBEB;
    }

    .post .post-meta li.post-category div > a{
      display: block;
      background-repeat: no-repeat;
      background-position: left center;
      padding: 31px;
      margin: 0;
      position: relative;
      top: 4px;
      right: 4px;
      float: right;
    }

    .post .post-meta li.post-category div > a:hover{
      display: block;
      background-repeat: no-repeat !important;
      background-position: left center;
      padding: 31px;
      margin: 0;
      position: relative;
      top: 4px;
      right: 4px;
      float: right;
    }
}

#nos-univers-content .picto-dietetique > a,
li.post-category .picto-dietetique > a{
  background-image: url("images/picto_big/picto_big_alimentation-dietetique.png");
}

#nos-univers-content .picto-dietetique > a:hover,
li.post-category .picto-dietetique >a:hover{
  background-image: url("images/picto_big/picto_big_alimentation-dietetique_over.png") !important;
}

#nos-univers-content .picto-apnee-plongee > a,
li.post-category .picto-apnee-plongee > a{
  background-image: url("images/picto_big/picto_big_apnee-plongee.png");
}

#nos-univers-content .picto-apnee-plongee > a:hover,
li.post-category .picto-apnee-plongee >a:hover{
  background-image: url("images/picto_big/picto_big_apnee-plongee_over.png") !important;
}

#nos-univers-content .picto-arts-martiaux > a,
li.post-category .picto-arts-martiaux > a{
  background-image: url("images/picto_big/picto_big_arts_martiaux.png");
}

#nos-univers-content .picto-arts-martiaux > a:hover,
li.post-category .picto-arts-martiaux >a:hover{
  background-image: url("images/picto_big/picto_big_arts_martiaux_over.png") !important;
}

#nos-univers-content .picto-cyclisme > a,
li.post-category .picto-cyclisme > a{
  background-image: url("images/picto_big/picto_big_cyclisme.png");
}

#nos-univers-content .picto-cyclisme > a:hover,
li.post-category .picto-cyclisme >a:hover{
  background-image: url("images/picto_big/picto_big_cyclisme_over.png") !important;
}

#nos-univers-content .picto-divers > a,
li.post-category .picto-divers > a{
  background-image: url("images/picto_big/picto_big_divers.png");
}

#nos-univers-content .picto-divers > a:hover,
li.post-category .picto-divers >a:hover{
  background-image: url("images/picto_big/picto_big_divers_over.png") !important;
}

#nos-univers-content .picto-enseignement > a,
li.post-category .picto-enseignement > a{
  background-image: url("images/picto_big/picto_big_enseignement.png");
}

#nos-univers-content .picto-enseignement > a:hover,
li.post-category .picto-enseignement >a:hover{
  background-image: url("images/picto_big/picto_big_enseignement_over.png") !important;
}

#nos-univers-content .picto-golf > a,
li.post-category .picto-golf > a{
  background-image: url("images/picto_big/picto_big_golf.png");
}

#nos-univers-content .picto-golf > a:hover,
li.post-category .picto-golf >a:hover{
  background-image: url("images/picto_big/picto_big_golf_over.png") !important;
}

#nos-univers-content .picto-numerique > a,
li.post-category .picto-numerique > a{
  background-image: url("images/picto_big/picto_big_livres_numeriques.png");
}

#nos-univers-content .picto-numerique > a:hover,
li.post-category .picto-numerique >a:hover{
  background-image: url("images/picto_big/picto_big_livres_numeriques_over.png") !important;
}

#nos-univers-content .picto-lafay > a,
li.post-category .picto-lafay > a{
  background-image: url("images/picto_big/picto_big_lafay.png");
}

#nos-univers-content .picto-lafay > a:hover,
li.post-category .picto-lafay >a:hover{
  background-image: url("images/picto_big/picto_big_lafay_over.png") !important;
}

#nos-univers-content .picto-musculation > a,
li.post-category .picto-musculation > a{
  background-image: url("images/picto_big/picto_big_musculation-prepa_physique.png");
}

#nos-univers-content .picto-musculation > a:hover,
li.post-category .picto-musculation >a:hover{
  background-image: url("images/picto_big/picto_big_musculation-prepa_physique_over.png") !important;
}

#nos-univers-content .picto-natation > a,
li.post-category .picto-natation > a{
  background-image: url("images/picto_big/picto_big_natation.png");
}

#nos-univers-content .picto-natation > a:hover,
li.post-category .picto-natation >a:hover{
  background-image: url("images/picto_big/picto_big_natation_over.png") !important;
}

#nos-univers-content .picto-preparation-mentale > a,
li.post-category .picto-preparation-mentale > a{
  background-image: url("images/picto_big/picto_big_prepa_mentale.png");
}

#nos-univers-content .picto-preparation-mentale > a:hover,
li.post-category .picto-preparation-mentale >a:hover{
  background-image: url("images/picto_big/picto_big_prepa_mentale_over.png") !important;
}

#nos-univers-content .picto-sante > a,
li.post-category .picto-sante > a{
  background-image: url("images/picto_big/picto_big_sante_bien-etre.png");
}

#nos-univers-content .picto-sante > a:hover,
li.post-category .picto-sante >a:hover{
  background-image: url("images/picto_big/picto_big_sante_bien-etre_over.png") !important;
}

#nos-univers-content .picto-sportsco > a,
li.post-category .picto-sportsco > a{
  background-image: url("images/picto_big/picto_big_sports-co.png");
}

#nos-univers-content .picto-sportsco > a:hover,
li.post-category .picto-sportsco >a:hover{
  background-image: url("images/picto_big/picto_big_sports-co_over.png") !important;
}

#nos-univers-content .picto-endurance > a,
li.post-category .picto-endurance > a{
  background-image: url("images/picto_big/picto_big_endurance.png");
}

#nos-univers-content .picto-endurance > a:hover,
li.post-category .picto-endurance >a:hover{
  background-image: url("images/picto_big/picto_big_endurance_over.png") !important;
}

#nos-univers-content .picto-sports-montagne > a,
li.post-category .picto-sports-montagne > a{
  background-image: url("images/picto_big/picto_big_sports_de_montagne.png");
}

#nos-univers-content .picto-sports-montagne > a:hover,
li.post-category .picto-sports-montagne >a:hover{
  background-image: url("images/picto_big/picto_big_sports_de_montagne_over.png") !important;
}

#nos-univers-content .picto-sports-raquette > a,
li.post-category .picto-sports-raquette > a{
  background-image: url("images/picto_big/picto_big_sports_de_raquettes.png");
}

#nos-univers-content .picto-sports-raquette > a:hover,
li.post-category .picto-sports-raquette >a:hover{
  background-image: url("images/picto_big/picto_big_sports_de_raquettes_over.png") !important;
}

#nos-univers-content .picto-sports-nautiques > a,
li.post-category .picto-sports-nautiques > a{
  background-image: url("images/picto_big/picto_big_sports_nautiques.png");
}

#nos-univers-content .picto-sports-nautiques > a:hover,
li.post-category .picto-sports-nautiques >a:hover{
  background-image: url("images/picto_big/picto_big_sports_nautiques_over.png") !important;
}

#nos-univers-content .picto-sports-equestres > a,
li.post-category .picto-sports-equestres > a{
  background-image: url("images/picto_big/picto_big_equitation.png");
}

#nos-univers-content .picto-sports-equestres > a:hover,
li.post-category .picto-sports-equestres >a:hover{
  background-image: url("images/picto_big/picto_big_equitation_over.png") !important;
}

#nos-univers-content .picto-tir-arc > a,
li.post-category .picto-tir-arc > a{
  background-image: url("images/picto_big/picto_big_tala.png");
}

#nos-univers-content .picto-tir-arc > a:hover,
li.post-category .picto-tir-arc >a:hover{
  background-image: url("images/picto_big/picto_big_tala_over.png") !important;
}

/*************************************************************************** MENU *************************************************************/

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a{
  color: #484848;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a{
  font-size: 0.7em;
  padding-top: 3px;
}

@media (min-width: 768px) {
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a{
    font-size: 14px;
  }
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-item > a, 
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-ancestor > a {
  background: none;
  color: #484848;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a:hover{
  color: black;
  background: #ef7d00;
  color: #fff;
  text-decoration: none;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu{
  width: 100%;
  padding-bottom: 10px;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu {
  padding-left: 35px;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li{
  line-height: 20px !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item{
  padding: 10px;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu a:hover {
  color:#ef7d00 !important;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
      float: none !important;
      display: inline-table !important;
  }
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
      vertical-align:middle;
      display: table-cell;
  }
   #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item-object-custom {
      width: 25% !important;
  }
  #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li .mega-menu-item-object-product_cat {
      width: 50% !important;
  }
  
}


#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-dietetique > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-dietetique > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -200px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-dietetique:hover > a,
li.mega-picto-dietetique > a:hover{
background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -234px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-apnee-plongee > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-apnee-plongee > a {
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-apnee-plongee:hover > a,
li.mega-picto-apnee-plongee > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -32px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-arts-martiaux > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-arts-martiaux > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -67px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-arts-martiaux:hover > a,
li.mega-picto-arts-martiaux > a:hover{
 background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat!important;
    background-position: 0 -101px!important;
    background-size: 30px!important;
    padding-left: 35px !important;
    height: 30px !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-cyclisme > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-cyclisme > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -133px;
    background-size: 30px;
    padding-left: 35px!important;
    height: 30px!important;
}

li.mega-picto-cyclisme:hover > a,
li.mega-picto-cyclisme > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat!important;
    background-position: 0 -166px!important;
    background-size: 30px!important;
    padding-left: 35px!important;
    height: 30px!important;
  color:#ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-divers > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-divers > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -269px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-divers:hover > a,
li.mega-picto-divers > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -301px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-enseignement > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-enseignement > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -336px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-enseignement:hover > a,
li.mega-picto-enseignement > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -370px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-golf > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-golf > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -405px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-golf:hover > a,
li.mega-picto-golf > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat!important;
    background-position: 0 -438px!important;
    background-size: 30px!important;
    padding-left: 35px !important;
    height: 30px !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-numerique > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-numerique > a{
  background-image: url("images/picto_menu/picto_numerique.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
  padding-left: 35px !important;
  height:30px !important;
}

li.mega-picto-numerique:hover > a,
li.mega-picto-numerique > a:hover{
  background-image: url("images/picto_menu/picto_numerique_over.png") !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: 30px 30px !important;
  color:#ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-lafay > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-lafay > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 00 -470px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-lafay:hover > a,
li.mega-picto-lafay > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 00 -841px!important;
    background-size: 30px !important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-musculation > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-musculation > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -506px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-musculation:hover > a,
li.mega-picto-musculation > a:hover{
    background-image: url(images/picto_sprites.png) !important;
    background-repeat: no-repeat !important;
    background-position: 0 -539px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-natation > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-natation > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -571px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-natation:hover > a,
li.mega-picto-natation > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -605px!important;
    background-size: 30px !important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-preparation-mentale > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-preparation-mentale > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -708px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-preparation-mentale:hover > a,
li.mega-picto-preparation-mentale > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -742px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

.main-nav-inner #mega-menu-wrap-primary-menu #mega-menu-primary-menu a.mega-menu-link {
    transition: none;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-sante > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-sante > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -772px;
    background-size: 30px!important;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-sante:hover > a,
li.mega-picto-sante > a:hover{
  background-image: url(images/picto_sprites.png)!important;
  background-repeat: no-repeat !important;
  background-position: 0px -806px!important;
  background-size: 30px;
  color:#ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-sportsco > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-sportsco > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -1211px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-sportsco:hover > a,
li.mega-picto-sportsco > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -1245px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-endurance > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-endurance > a{
  background-image: url("images/picto_menu/picto_sports_endurance.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
  padding-left: 35px !important;
  height:30px !important;
}

li.mega-picto-endurance:hover > a,
li.mega-picto-endurance > a:hover{
  background-image: url("images/picto_menu/picto_sports_endurance_over.png") !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: 30px 30px !important;
  color:#ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-endurance > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-endurance > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -941px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-endurance:hover > a,
li.mega-picto-endurance > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -1076px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-sports-montagne > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-sports-montagne > a{
background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -1043px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-sports-montagne:hover > a,
li.mega-picto-sports-montagne > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat!important;
    background-position: 0 -1110px!important;
    background-size: 30px!important;
    padding-left: 35px !important;
    height: 30px !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-sports-raquette > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-sports-raquette > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -874px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-sports-raquette:hover > a,
li.mega-picto-sports-raquette > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -906px!important;
    background-size: 30px !important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-sports-nautiques > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-sports-nautiques > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -1145px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-sports-nautiques:hover > a,
li.mega-picto-sports-nautiques > a:hover{
  background-image: url("images/picto_menu/picto_sports_nautiques_over.png") !important;
  background-repeat: no-repeat !important;
  background-position: 0 0!important;
  background-size: 30px!important;
  color:#ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-sports-equestres > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-sports-equestres > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -975px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-sports-equestres:hover > a,
li.mega-picto-sports-equestres > a:hover{
    background-image: url(images/picto_sprites.png)!important;
    background-repeat: no-repeat !important;
    background-position: 0 -1008px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu .mega-picto-tir-arc > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu .mega-picto-tir-arc > a{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -1280px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}

li.mega-picto-tir-arc:hover > a,
li.mega-picto-tir-arc > a:hover{
background-image: url(images/picto_sprites.png) !important;
    background-repeat: no-repeat !important;
    background-position: 0 -1312px!important;
    background-size: 30px!important;
    color: #ef7d00 !important;
}


#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img  > a,
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img  > a:hover{
  color: transparent !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img > a,
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img > a:hover{
    background-image: url(images/picto_sprites.png);
    background-repeat: no-repeat;
    background-position: 0 -975px;
    background-size: 30px;
    padding-left: 35px !important;
    height: 30px !important;
}


#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-ed-amp-img > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-ed-amp-img > a:hover{
    background-image: url("images/les_editions_amphora.jpg") !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: 121px 47px !important;
    height: 47px !important;
    width: 121px !important;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-ed-amp-img{
    vertical-align: bottom;
}

@media (min-width: 768px) {
    #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-club-img,
    #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-ed-amp-img
    {
        height: auto;
    }
}

.payment_method_paypal img{
  display: none;
  visibility: hidden;
}

.page #payment .payment_methods li img{
  float:none;
}

#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-home-icon.mega-menu-item > a,
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-home-icon.mega-menu-item > a:hover{
  background: #ef7d00;
  color: black;
}

#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-home-icon.mega-menu-item.mega-current-menu-item > a, 
#mega-menu-wrap-blog-primary-menu #mega-menu-blog-primary-menu > li.mega-home-icon.mega-menu-item.mega-current-menu-ancestor > a {
    color: black;
}
/*************************************************************************** FULL WIDTH *************************************************************/


.fullwidth > article > section.entry > h1,
.fullwidth > article > section.entry > h2,
.fullwidth > article > section.entry > h3,
.fullwidth > article > section.entry > h4,
.fullwidth > article > section.entry > h5,
.fullwidth > article > section.entry > h6 {
    position: relative;
    padding-left: 25px;
    width: 425px;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
    background: #ef7b00;
}

.fullwidth > article > section.entry > h1:before,
.fullwidth > article > section.entry > h2:before,
.fullwidth > article > section.entry > h3:before,
.fullwidth > article > section.entry > h4:before,
.fullwidth > article > section.entry > h5:before,
.fullwidth > article > section.entry > h6:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #ef7b00;
    transform-origin: top left;
    -ms-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
}


@media (max-width: 768px) {
    .fullwidth > article > section.entry > h2,
    .fullwidth > article > section.entry > h3,
    .institu h3    {
        width: 91%;
        text-align: left !important;
        font-size: 15px;
        padding: 5px 5px 5px 25px;
    }
    .institu h2    {
        width: 91%;
        text-align: left !important;
        font-size: 16px;
        padding: 5px 5px 5px 25px;
    }
    .fullwidth > article > section.entry > h1:before,
    .fullwidth > article > section.entry > h2:before,
    .fullwidth > article > section.entry > h3:before,
    .fullwidth > article > section.entry > h4:before,
    .fullwidth > article > section.entry > h5:before,
    .fullwidth > article > section.entry > h6:before {
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
}
/*************************************************************************** PANIER *************************************************************/

div #TB_title{
    display: none;
}

div #TB_ajaxContent{
    border: 5px solid #FFFFFF;
    background-color: #303030;
}

@media (max-width: 768px) {
  div #TB_window{
    width: 85% !important;
    margin: -4.5% !important;
    margin-top: -142px !important;
  }
  div #TB_ajaxContent{
    width: 100% !important;
    height: inherit !important;
  }
  div #TB_ajaxContent .shipping-popup-buttons a.button{
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-left: -20px;
  }
}

p.shipping-popup-text{
    text-align: center;
    font-weight: bold;
    color: white;
    margin-top: 65px;
}

@media (max-width: 768px) {
    p.shipping-popup-text{
        margin: 65px auto;
        width: 48%;
        margin-left: 170px;
    }
}

div.shipping-popup-buttons{
    margin-left: 10%;
    margin-right: 10%;
}

div.shipping-popup-buttons a.right,
div.wc-proceed-to-checkout a.right{
    float: right;
}

div.wc-proceed-to-checkout a.left{
    float: left;
}

@media (max-width: 768px) {
    div.shipping-popup-buttons a.right,
    div.wc-proceed-to-checkout a.right{
        float: none;
    }

  div.wc-proceed-to-checkout a.right, div.wc-proceed-to-checkout a.left{
      float: none;
      display: block;
      margin-top: 20px;
  }
}

/*************************************************************************** BIO AUTEUR *************************************************************/


 div.bio-auteur {
  overflow: hidden;
  background-color: #EBEBEB;
  padding: 15px;
  padding-bottom: 0px;
  margin-bottom: 20px;
}

 div.bio-auteur .link-auteur span.orange{
  color: #ef7d00;
}

 div.bio-auteur .link-auteur{
  color:#fff;
  display: inline-flex;
  background-color: #4C4C4C;
  padding: 5px;
  width: 100%;
  padding-left: 245px;
  overflow: auto;
}

 div.bio-auteur .link-auteur a{
  color:#fff;
  margin:0 5px;
}

 div.bio-auteur .link-auteur a:hover{
  color:#ef7b00;
}

 div.bio-auteur .image-auteur{
  float: left;
  display: inline-block;
  width: 200px;
  position: relative;
  top: -36px;
  margin-right: 35px;
  border: 5px solid white;
}

 div.bio-auteur .desc-auteur{
  text-align: justify;
  margin-top: 10px;
}

div.bio-auteur .desc-auteur h1,
 div.bio-auteur .desc-auteur h3{
  color: #ef7d00;
  font-size: 1.28em;
}

section.col-left div.bio-auteur {
    float: left;
}

section.col-left div.bio-auteur .desc-auteur p{
  color: black;
}

@media (max-width: 768px) {
  div.bio-auteur .link-auteur {
      padding-left: 8px;
      max-width: 97%;
  }
  div.bio-auteur .image-auteur {
      float: none;
      position: inherit;
      width: inherit;
  }
  div.bio-auteur .desc-auteur {
      font-size: 0.75em;
  }
}

ul.biblio {
  list-style: none;
  position: relative;
  background-color: #EBEBEB;
}

ul.biblio div.biblio-title{
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  background-color: #4C4C4C;
}

div.woocommerce-columns-4 ul.biblio li.product:nth-child(2n) {
  float: left;
  clear: both;
}

div.woocommerce-columns-4 ul.biblio li.product:nth-child(2n + 1) {
  float: right;
  clear: none
}

@media (min-width: 800px){
    body.layout-full div.woocommerce-columns-4 ul.biblio {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    body.layout-full div.woocommerce-columns-4 ul.biblio li.product {
        float: left;
        clear: none;
    }
}

@media (max-width: 768px) {
  #cookie-law-info-bar {
    left: 0px;
  }
  
  /* Google Maps */
  article.type-page, article.page {
      overflow: hidden;
  }
  /*article.type-page p > iframe, article.page p > iframe {
      margin-left: -400px;
  }*/
}


/* AJOUT de champs le formulaire user woocommerce */
#my_custom_checkout_field label.radio{
    display: inline;
}


#my_custom_checkout_field input#sexe_F{
    margin-left: 20px; 
}

#my_custom_checkout_field label:first-child{
    display: block !important;
    padding: .236em 0 !important;
}

.produit_share {
    width: auto;
    margin: 25px 0;
    float: left;
}

.produit_like.produit_share > .fb-share-button > span{
    vertical-align:top !important;
}
.produit_share.produit_share_top {
    float: none !important;
    margin: 10px 0;
    text-align:left;
}

.produit_like.produit_share > div,.produit_like.produit_share > iframe{
    margin-right:5px;
}

.listsNewsletterFormUser .mailjet-lists-container{
    font-size: 0;
    margin-top: 8px;
}

.listsNewsletterFormUser .mailjet-lists-container label{
    font-size: 14px;
    padding-left: 5px;
}

.listsNewsletterFormUser .mailjet-lists-container > div{
    float:left;
    width:25%;
}
.listsNewsletterFormUser::after{
    clear:both;
    content:'';
    display:block;
}
.listNewsletterFormUserActus{
    margin-bottom:20px;
}
#checkAllLists{
    margin-top: 10px;
    font-size: 12px;
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .listsNewsletterFormUser .mailjet-lists-container > div{
        width:50%;
    }
}
@media screen and (max-width: 800px) {
  .listsNewsletterFormUser .mailjet-lists-container > div{
         float:none;
    width:100%;
    }
}


/* RGPD mon compte */

.col2-set.addresses{
    margin: 0 0 1.618em 0;
}
#formulaire_droits{
    margin-top: 100px;
    font-size: 1.618em;
    line-height: 1.416em;
    color: #474747;
    margin: 0 0 .618em;
    font-weight: 700;
    text-transform: initial;
    padding-left: 0;
    background: none;
}
#formulaire_droits::before {
    background: none;
}

.ct-ultimate-gdpr-container #tabs .ui-tabs-nav,
.ct-ultimate-gdpr-container #tabs .ui-widget-content, 
.ct-ultimate-gdpr-container label, 
.ct-ultimate-gdpr-container .ui-widget input, 
.ct-ultimate-gdpr-container .ui-widget select, 
.ct-ultimate-gdpr-container .ui-widget textarea, 
.ct-ultimate-gdpr-container .ui-widget button {
    font-family: "lato", sans-serif;
}
.ct-ultimate-gdpr-container .ui-state-hover,
.ct-ultimate-gdpr-container .ui-widget-content .ui-state-hover,
.ct-ultimate-gdpr-container .ui-widget-header .ui-state-hover {
    border-top: 1px solid #ef7d00;
    border-left: 1px solid #ef7d00;
    border-right: 1px solid #ef7d00;
    background: #ef7d00;
}
.ct-ultimate-gdpr-container #tabs .ui-tabs-nav .ui-state-active a, .ct-ultimate-gdpr-container #tabs .ui-tabs-nav .ui-widget-content .ui-state-active a, .ct-ultimate-gdpr-container #tabs .ui-tabs-nav .ui-widget-header .ui-state-active a {
    color: #474747;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.618;
}
.ct-ultimate-gdpr-container #tabs .ui-tabs-nav .ui-state-active a{
    font-weight: 700;
} 
.ct-ultimate-gdpr-container #tabs .ui-widget-header {
    background: #f7f7f7;
}
.ct-ultimate-gdpr-container input[type="submit"] {
    background-color: #4C4C4C;
    display: block;
}
.ct-ultimate-gdpr-container input[type="submit"]:hover {
    background-color: #747d8c;
}

input[name="ct-ultimate-gdpr-consent"] {
    width: 16px;
    height: 15px;
    vertical-align: sub;
}

.notice-info.notice{
    color: #ef7d00;
}

.ct-ultimate-gdpr-container #tabs .ui-tabs-nav .ui-tabs-anchor, 
.ct-ultimate-gdpr-container.container input[type=submit]{
    font-weight: normal;
}

#ct-ultimate-gdpr-cookie-popup {
    opacity: 1;
    position: fixed;
    font-weight: normal;
    display: block;
    background-color: rgb(229, 121, 2);
    color: rgb(255, 255, 255);
    font-family: inherit;
    bottom: 0;
    right: initial;
    border-top: 4px solid rgb(68, 68, 68);
    font-size: 10pt;
    text-align: center;
    width: 100%;
    z-index: 9999;
    left: 0;
    box-shadow: none;
    border-radius: 0;
    line-height: initial;
    padding: 5px;
}

.ct-ultimate-gdpr-cookie-popup-modern #ct-ultimate-gdpr-cookie-content{
    float: none;
    display: inline-block;  
    margin-right: 10px;
}

.ct-ultimate-gdpr-cookie-buttons.clearfix{
    display: inline-block;
    vertical-align: middle;
}

.ct-ultimate-gdpr-cookie-popup-modern .ct-ultimate-gdpr-cookie-buttons {
    float: none;
}

#ct-ultimate-gdpr-cookie-accept, 
#cookie_read_more, 
#ct-ultimate-gdpr-cookie-change-settings{
    display: inline-block;
    padding: 5px 10px 6px;
    text-decoration: none;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    cursor: pointer;
    margin: auto 10px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    color: rgb(255, 255, 255);
    background-color: #3b3b3b !important;
    border: 0;
}
#ct-ultimate-gdpr-cookie-accept:hover, 
#ct-ultimate-gdpr-cookie-change-settings:hover, 
#cookie_read_more:hover{
    opacity: 1;
}
#ct-ultimate-gdpr-cookie-accept:hover, 
#cookie_read_more:hover, 
#ct-ultimate-gdpr-cookie-change-settings:hover{
    text-decoration: underline;
}

#cookie_read_more a{
    color: #fff;
}
#cookie_read_more a:hover{
    color: #fff;
}

#ct-ultimate-gdpr-cookie-open{
    background-color: rgb(229, 121, 2);
    color: rgb(255, 255, 255);
    bottom: 0px;
    right: 0px;
    top: auto;
    left: auto;
    border-radius: 2px;    
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.6);
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    font-size: 16px;
    line-height: 1;
}
.ct-ultimate-gdpr-cookie-modal-btn a:hover{
    
    color: #595959 !important;
}
#ct-ultimate-gdpr-cookie-modal-body {
    font-family: "lato", sans-serif;
}
.ct-ultimate-gdpr-cookie-modal-content{
    font-family: initial;
}

.ct-ultimate-gdpr-slider-not-block .ct-ultimate-gdpr-slider{
    border: 3px solid #e57902;
}

.ct-ultimate-gdpr-cookie-modal-slider-item--active path, .ct-ultimate-gdpr-cookie-modal-slider-item--selected path{
    fill: #e57902 !important;
}
.ct-ultimate-gdpr-cookie-modal-slider li.ct-ultimate-gdpr-cookie-modal-slider-item--active label:after{
    background: #e57902;
}

.ct-ultimate-gdpr-cookie-modal-btn a{
    background: #ef7d00;
    border: 2px solid #ef7d00;
    font-weight: 500;
}
.ct-ultimate-gdpr-cookie-modal-btn a:hover {
    color: #3b3b3b;
    background: none;
    text-decoration: none;
}

.ct-ultimate-gdpr-cookie-popup-bottomPanel,
.ct-ultimate-gdpr-cookie-popup-modern.ct-ultimate-gdpr-cookie-topPanel{
    padding:  0;
}
.ct-ultimate-gdpr-cookie-popup-modern.ct-ultimate-gdpr-cookie-bottomPanel, 
.ct-ultimate-gdpr-cookie-popup-modern.ct-ultimate-gdpr-cookie-topPanel{
   padding: 5px !important;
    
}

.ct-ultimate-gdpr-cookie-popup-bottomPanel #ct-ultimate-gdpr-cookie-content, 
.ct-ultimate-gdpr-cookie-popup-topPanel #ct-ultimate-gdpr-cookie-content{
    margin-bottom: 0;    
}

label[for=ct-ultimate-gdpr-consent-data-access] a,
label[for=ct-ultimate-gdpr-consent-forget-me] a,
label[for=ct-ultimate-gdpr-consent-data-rectification] a{
    color: #ef7d00;
}


@media (max-width: 1600px){
    .ct-ultimate-gdpr-cookie-popup-modern #ct-ultimate-gdpr-cookie-content {
        display: block;
    }
    .ct-ultimate-gdpr-cookie-buttons.clearfix {
        margin: 6px auto;
    }
    .ct-ultimate-gdpr-cookie-popup-bottomPanel #ct-ultimate-gdpr-cookie-content, 
    .ct-ultimate-gdpr-cookie-popup-topPanel #ct-ultimate-gdpr-cookie-content{
        margin-bottom: 0;
    }
    #ct-ultimate-gdpr-cookie-popup{
        left: 0 !important;
    }
    .ct-ultimate-gdpr-cookie-popup-modern.ct-ultimate-gdpr-cookie-bottomPanel, 
    .ct-ultimate-gdpr-cookie-popup-modern.ct-ultimate-gdpr-cookie-topPanel{
        padding: 5px !important;        
    }
} 

.aa-dropdown-menu .suggestion-post-thumbnail {
	width: 50px;
	height: auto;
}
#algolia-search-box input {
    border-bottom: 2px solid #E57902;
}
#algolia-search-box .search-icon {
    fill: #E57902;
}
.ais-stats--body{
    display:none;
}
.algolia-autocomplete {
    width: auto !important;
}
.algolia-autocomplete .aa-dataset-2,
.algolia-autocomplete .aa-dataset-3{
    display: inline-block;
    vertical-align: top;
    width: 280px;
}


@media (max-width: 480px){
    #cookie_read_more,
    #ct-ultimate-gdpr-cookie-accept, 
    #ct-ultimate-gdpr-cookie-change-settings {
        float: none;
        margin: 4px auto;
        display: block;
    }
    #cookie_read_more a{
        width: 100%;
    }
    .ct-ultimate-gdpr-cookie-buttons.clearfix div {
        width: 160px;
    }
    #cookie_read_more{
        margin: 5px 0;
    }
}

@media (max-width: 949px) {


.algolia-autocomplete {
    width: 100% !important;
}
    body #wrapper-header {
        width: calc(100% + 1.618em + 1.618em)!important;
        padding: 0!important;
        margin-left: -1.618em !important;
    }
    .wrapper header#header {
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px 1.618em!important;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        height: auto;
        box-sizing: border-box;
        width: 100%;
    }
    #header div.header-block.cart {
        width: auto;
        margin: 0;
    }
    .wrapper #header .header-block.logo {
        margin: 0;
        margin-right: auto;
    }
    .wrapper #header div.header-block.search-box {
        display: none;
    }
    header#header a#logo {
        margin: 0;
    }
    #header div.header-block.my_account {
        display: none;
    }
    .header-icons i {
        font-size: 30px;
        color: white;
        margin-right: 20px;
    }
    .wrapper #header .cart-contents .amount:after,
    .wrapper #header .cart-contents:before {
        content: none;
    }
    #header .nav .cart-contents {
        color: #ef7d00;
        font-size: 17px;
    }
    .nav .price {
        margin-left: 0;
        display: block;
    }

    span.mega-toggle-label-closed,
    span.mega-toggle-label-open {
        color: black;
    }
    button#mobile-menu-search {
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }
    .header-block.search-box.is-mobile-search {
        margin-left: -1.618em;
        margin-right: -1.618em;
    }
    .header-block.search-box.is-mobile-search form#yith-ajaxsearchform {
        border: 0;
        margin-bottom: 0;
    }
    .stretch {
        display: none;
    }
    .header-icons {
        display: block;
    }
      #header .nav .cart-contents {
        font-size: 4vw;
    }
    .header-icons i {
        font-size: 35px;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 500px){
    .ais-hits--thumbnail {
        text-align: center;
    }
    .ais-hits--thumbnail img {
        width: auto !important;
        max-height: 185px;
    }
}

@media (max-width: 767px) {
      header#header a#logo {
        width: 30vw;
    }
      .header-icons i {
        font-size: 6vw;
        margin-right: 4vw;
    }

@media (max-width: 600px) {
    #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left .social {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-blocks-left .social a {
        margin-right: 10px;
    }
}

@media (max-width: 425px) {
    /*COOKIE POPUP*/
    div#ct-ultimate-gdpr-cookie-content {
        text-align: justify;
    }
    .ct-ultimate-gdpr-cookie-buttons.clearfix {
        width: 100%;
    }
    div#ct-ultimate-gdpr-cookie-popup div#ct-ultimate-gdpr-cookie-accept,
    div#ct-ultimate-gdpr-cookie-popup div#cookie_read_more,
    div#ct-ultimate-gdpr-cookie-popup div#ct-ultimate-gdpr-cookie-change-settings {
        display: inline-block;
    }
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons #ct-ultimate-gdpr-cookie-accept,
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons #cookie_read_more,
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons div#ct-ultimate-gdpr-cookie-change-settings {
        width: 76px;
        border: 0;
        text-shadow: none;
        border-radius: 0;
        padding: 10px;
        text-transform: uppercase;
        background: black!important;
        margin: 0;
        font-size: 12px;
    }
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons div#ct-ultimate-gdpr-cookie-change-settings {
        width: 100px;
    }
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup {
        box-sizing: border-box;
        padding: 10px 1.618em!important;
    }
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup #ct-ultimate-gdpr-cookie-content {
        margin: 0;
    }
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 374px) {
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons #ct-ultimate-gdpr-cookie-accept, 
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons #cookie_read_more, 
    .ct-ultimate-gdpr-cookie-popup-modern#ct-ultimate-gdpr-cookie-popup .ct-ultimate-gdpr-cookie-buttons div#ct-ultimate-gdpr-cookie-change-settings {
        width: 100%;
        margin-bottom: 5px;
    }
}