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

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so LESS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

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

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

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../font/CaviarDreamsItalic-webfont.eot');
  src: url('../font/CaviarDreamsItalic-webfont.eot?#iefix') format('embedded-opentype'), url('../font/CaviarDreamsItalic-webfont.woff') format('woff'), url('../font/CaviarDreamsItalic-webfont.ttf') format('truetype'), url('../font/CaviarDreamsItalic-webfont.svg#CaviarDreamsItalic') format('svg');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../font/CaviarDreams_BoldItalic-webfont.eot');
  src: url('../font/CaviarDreams_BoldItalic-webfont.eot?#iefix') format('embedded-opentype'), url('../font/CaviarDreams_BoldItalic-webfont.woff') format('woff'), url('../font/CaviarDreams_BoldItalic-webfont.ttf') format('truetype'), url('../font/CaviarDreams_BoldItalic-webfont.svg#CaviarDreamsBoldItalic') format('svg');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../font/CaviarDreams-webfont.eot');
  src: url('../font/CaviarDreams-webfont.eot?#iefix') format('embedded-opentype'), url('../font/CaviarDreams-webfont.woff') format('woff'), url('../font/CaviarDreams-webfont.ttf') format('truetype'), url('../font/CaviarDreams-webfont.svg#CaviarDreamsRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Caviar Dreams';
  src: url('../font/CaviarDreams_Bold-webfont.eot');
  src: url('../font/CaviarDreams_Bold-webfont.eot?#iefix') format('embedded-opentype'), url('../font/CaviarDreams_Bold-webfont.woff') format('woff'), url('../font/CaviarDreams_Bold-webfont.ttf') format('truetype'), url('../font/CaviarDreams_Bold-webfont.svg#CaviarDreamsBold') format('svg');
  font-weight: bold;
  font-style: normal;
}
/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-light {
  font-weight: 300;
}
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #deeaae;
  background: #e6efc2;
}
.gray {
  color: #f4fae6;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BLOCKS
*********************/
.block {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  margin-bottom: 20px;
}
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
BUTTONS
*********************/
.button,
.button:visited {
  border: 1px solid #ffffff;
  padding: 4px 12px;
  color: #ffffff;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  line-height: 1em;
}
.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
  color: #ffffff;
}
/*
.blue-button, .blue-button:visited {
	border-color: darken(@bones-blue, 10%);
	text-shadow: 0 1px 1px darken(@bones-blue, 10%);
	.css-gradient( @bones-blue, darken(@bones-blue, 5%) );
	-webkit-box-shadow: inset 0 0 3px lighten(@bones-blue, 16%);
       -moz-box-shadow: inset 0 0 3px lighten(@bones-blue, 16%);
   	        box-shadow: inset 0 0 3px lighten(@bones-blue, 16%);
	&:hover, &:focus {
		border-color: darken(@bones-blue, 15%);
		.css-gradient( darken(@bones-blue, 4%), darken(@bones-blue, 10%) );
	}
	&:active {
		.css-gradient( darken(@bones-blue, 5%), @bones-blue );
	}
}
*/
/******************************************************************
Site Name: 
Author: 

Stylesheet: 551px and Up Stylesheet

This stylesheet is loaded for larger devices. 

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

******************************************************************/
/*********************
HEADER STYLES
*********************/
.header #topbar {
  display: block;
  margin-bottom: 5px;
}
/*********************
NAVIGATION STYLES
*********************/
/* Main Menu */
#main-menu ul li {
  float: left;
  width: 46%;
  margin: 0 2%;
}
#main-menu ul.sub-menu li {
  width: 42%;
}
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */
}
.entry-content .alignleft,
.entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright,
.entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter,
.entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
/* end .entry-content */
.conseil-anim .conseil-item {
  width: 33%;
}
.post-type-archive-produits .taxonomy-filter li {
  float: left;
  width: 49%;
  margin-bottom: 20px;
  margin-right: 2%;
}
.post-type-archive-produits .taxonomy-filter li:nth-child(even) {
  margin-right: 0;
}
.post-type-archive-produits .product-item {
  float: left;
  margin-right: 2%;
  max-width: 49%;
}
.post-type-archive-produits .product-item:nth-child(even) {
  margin-right: 0;
}
.post-type-archive-produits .product-item .attachment-product-list {
  width: 100%;
  height: auto;
}
.post-type-archive-produits #sidebar-footer-produits .widget_text {
  width: 49%;
  float: left;
  margin: 0 auto 20px auto;
}
.post-type-archive-produits #sidebar-footer-produits .widget_text.widget-odd {
  margin-right: 2%;
}
/*********************
SIDEBARS & ASIDES
*********************/
#sidebar-homepage .half {
  width: 49%;
  margin-right: 1.99%;
  float: left;
}
#sidebar-homepage .half.last {
  margin-right: 0;
}
#sidebar-homepage .full {
  clear: both;
}
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
#footer-left {
  width: 60%;
  float: left;
  margin-right: 5%;
}
#footer-right {
  width: 35%;
  float: left;
}
/* import grid */
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

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

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
/*********************
HEADER STYLES
*********************/
/* Main Menu */
#main-menu {
  display: block;
}
#main-menu .button {
  display: none;
}
#main-menu .menu {
  display: block;
  text-align: center;
}
#main-menu .menu ul {
  margin: 0;
  list-style: circle outside none;
}
#main-menu .menu ul li {
  float: none;
  display: inline-block;
  margin: 0 10px 0 0;
  width: auto;
  background: url(../images/puce.png) no-repeat left center transparent;
  padding-left: 18px;
}
#main-menu .menu ul li a {
  border: 0 none;
  padding: 0;
}
#main-menu .menu ul li:first-child {
  padding-left: 0;
  background: none;
}
#main-menu .menu ul li:last-child {
  margin-right: 0;
}
/*********************
NAVIGATION STYLES
*********************/
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
.nav ul {
  margin-top: 0;
}
.nav li {
  float: left;
  position: relative;
  /*
		plan your menus and drop-downs wisely.
		*/
  /* showing sub-menus */
}
.nav li a {
  border-bottom: 0;
  /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
}
.nav li ul.sub-menu,
.nav li ul.children {
  margin-top: 0;
  border: 1px solid #ccc;
  border-top: 0;
  position: absolute;
  overflow: hidden;
  visibility: hidden;
  z-index: 8999;
  /* highlight sub-menu current page */
}
.nav li ul.sub-menu li,
.nav li ul.children li {
  /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #ccc;
}
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
.nav li:hover ul {
  top: auto;
  overflow: visible;
  visibility: visible;
}
/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
.page-template-page-contact-php #contact-form {
  float: left;
  width: 49%;
  margin-right: 2%;
}
.page-template-page-contact-php #contact-infos {
  float: left;
  width: 49%;
}
.conseil-anim {
  float: right;
  margin-left: 10px;
  max-height: 369px;
}
.conseil-anim .conseil-item-block {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 6px 0 0;
  moz-border-radius: 0 6px 0 0;
  position: absolute;
  bottom: 0;
  width: 30%;
}
.conseil-anim .conseil-label {
  display: none;
}
.conseil-anim .conseil-item {
  float: none;
  text-align: left;
  width: 100%;
}
.single-produits .article-header {
  float: right;
  width: 427px;
}
.single-produits .curve-bg {
  background: url(../images/bg-produit.png) no-repeat 0 0 transparent;
  width: 41px;
  position: absolute;
  top: 0;
  margin-top: -2px;
  left: 0;
  height: 369px;
  z-index: 9999;
  display: block;
}
.single-produits .entry-content {
  float: right;
  margin: 0;
  padding: 0 10px;
  min-height: 369px;
  background: #242a30;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #242a30 0%, #000000 50%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #242a30), color-stop(50%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #242a30 0%, #000000 50%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #242a30 0%, #000000 50%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #242a30 0%, #000000 50%);
  /* IE10+ */
  background: linear-gradient(45deg, #242a30 0%, #000000 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#242a30', endColorstr='#000000', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.single-produits .article-footer {
  clear: both;
}
.post-type-archive-produits .taxonomy-filter li {
  width: 32%;
}
.post-type-archive-produits .taxonomy-filter li:nth-child(even) {
  margin-right: 2%;
}
.post-type-archive-produits .taxonomy-filter li:nth-child(3n) {
  margin-right: 0;
}
.post-type-archive-produits .product-item {
  max-width: 23.5%;
}
.post-type-archive-produits .product-item:nth-child(even) {
  margin-right: 2%;
}
.post-type-archive-produits .product-item:nth-child(3n) {
  margin-right: 2%;
}
.post-type-archive-produits .product-item:nth-child(4n) {
  margin-right: 0;
}
.post-type-archive-produits #sidebar-footer-produits .widget_text {
  width: 32%;
  float: left;
  margin: 0 2% 20px 0;
}
.post-type-archive-produits #sidebar-footer-produits .widget_text.widget-last {
  margin-right: 0;
}
.post-type-archive-videos .videos-player {
  text-align: center;
}
.post-type-archive-videos .videos-thumbs .label {
  opacity: 0;
}
/*********************
SIDEBARS & ASIDES
*********************/
#sidebar-homepage .signature {
  text-align: right;
}
/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.copyright {
  display: inline-block;
}
.footer-links {
  float: right;
  display: inline-block;
  max-width: auto;
}
/* Footer Menu */
.hide831up {
  display: none;
}
/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylsheet

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

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
#container {
  width: 1000px;
}
/*********************
POSTS & CONTENT STYLES
*********************/
.post-type-archive-produits .product-item {
  width: 23.5%;
}
.post-type-archive-produits .product-item:nth-child(even) {
  margin-right: 2%;
}
.post-type-archive-produits .product-item:nth-child(3n) {
  margin-right: 2%;
}
.post-type-archive-produits .product-item:nth-child(4n) {
  margin-right: 0;
}
.post-type-archive-produits #sidebar-footer-produits .widget_text.widget-last {
  margin-right: 0;
}
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
#main-menu a:after {
  content: "" !important;
}
.border .arrow {
  display: none!important;
}
.post-type-archive-produits .taxonomy-filter li {
  width: 31%;
}
.post-type-archive-produits .product-item {
  width: 23%;
}
.slide-related-products .item-slide {
  width: 145px;
}
#sidebar-footer-produits .widget_text p {
  display: none!important;
}
#sidebar-footer-produits .widget_text h4 {
  opacity: 1!important;
}
.block {
  background-color: #000000;
}
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
