@import url('https://fonts.googleapis.com/css?family=Oswald');


:root{
  --color1: #AA1111;
  --color2:#11aa2b;
  --gray1:#444444;
  --gray2:#CCCCCC;
  --gray3:#EEEEEE;
  --text:#000000;
  --text1:#FFFFFF;  /*Couleur du texte pour la color1 **/
  --text2:#FFFFFF;  /*Couleur du texte pour la color2 **/
  --font1:verdana;
  --font2:Oswald, verdana;
  
  /** Boutons **/
  --button-primary-bg:var(--color2);
  --button-primary-hover-bg:var(--color1);
  --button-primary-border-bg:var(--color2);
  --button-primary-border-hover-bg:var(--color1);
  --button-primary-color:var(--text2);
  --button-primary-hover-color:var(--text1);

  --button-secondary-bg:var(--gray1);
  --button-secondary-hover-bg:var(--gray3);
  --button-secondary-color:var(--gray3);
  --button-secondary-hover-color:var(--gray1);

  /** Titres**/
  --h1-bg:var(--color1);
  --h1-color:var(--text1);
  --h2-color:var(--text);
  --h3-color:var(--text);
 
  /** Liens **/
  --a-color:var(--color1);
  --a-hover-color:var(--color2);
  
  /** Body **/
  --body-bg:#FFFFFF;
  --body-color:var(--text);
  
  /** Top **/
  --top-bg:#000000;
  --top-color:#FFFFFF;
  --top-a-hover-color:var(--color2);
  
  /** Info bar **/
  --info-bg:#FAFAFA;
  --info-color:var(--gray1);
  
  /** Menu **/
  --menu-bg:#FFFFFF;
  --menu-border-bg:var(--gray2);
  --menu-color:var(--gray1);
  --menu-hover-bg:#FAFAFA;
  --menu-border-hover-bg:var(--color1);
  --menu-hover-color:#222222;
  
  /** Footer **/
  --footer-bg:#000000;
  --footer-color:var(--gray1);
  --footer-a-hover-color:var(--color2);
  --footer-bullet-color:var(--color1);
  --footer-border-bg:var(--gray3);

  /** Bottom **/
  --bottom-bg:#000000;
  --bottom-color:#FFFFFF;

  /** Sections **/
  --main-bg:#DDDDDD;
  --main-content-bg:#FFFFFF;
  --section-bordered-color:#DDDDDD;
  --login-bg:#e5e5e5;

  /** Home **/
  --home-article-bg:var(--gray3);
  --home-products-bg:var(--gray3);
  --themes-bg:#FFFFFF;

  /** Slidebar mobile **/
  --slidebar-bg:#222222;
  --slidebar-a-color:#FFFFFF;
  --slidebar-a-hover-color:var(--color1);
  --slidebar-a-hover-bg:#111111;

  /** Carte **/
  --map-circle-bg: var(--color1);

  /** Facebook **/
  --widget-facebook-bg: var(--color1);
  --widget-facebook-color: var(--text1);

  /** Liste des produits **/
  --category-a-color:#000000;
  --category-a-hover-color:var(--color1);

}

/*********************************************** 
 ** BOOTSTRAP
 ***********************************************/

.btn{
    font-family: var(--font2);
    text-transform: uppercase;
}

.btn-primary {
  color: var(--button-primary-color);
  background-color: var(--button-primary-bg);
  border-color:var(--button-primary-border-bg);
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary.focus, 
.btn-primary:active, 
.btn-primary.active, 
.open > .dropdown-toggle.btn-primary{
	color: var(--button-primary-hover-color);
  	background-color: var(--button-primary-hover-bg);
  	border-color: var(--button-primary-border-hover-bg);
}

.btn-secondary {
    color: var(--button-secondary-color);
    background-color: var(--button-secondary-bg);
    border-color:var(--button-secondary-bg);
}

.btn-outline-secondary{
    color: var(--button-secondary-bg);
    background-color: var(--button-secondary-color);
    border-color:var(--button-secondary-bg);
}

.btn-outline-secondary:hover, 
.btn-outline-secondary:focus, 
.btn-outline-secondary.focus, 
.btn-outline-secondary:active, 
.btn-outline-secondary.active, 
.open > .dropdown-toggle.btn-secondary{
  	background-color: var(--button-secondary-bg);
}

.btn-secondary:hover, 
.btn-secondary:focus, 
.btn-secondary.focus, 
.btn-secondary:active, 
.btn-secondary.active, 
.open > .dropdown-toggle.btn-secondary{
	color: var(--button-secondary-hover-color);
  	background-color: var(--button-secondary-hover-bg);
  	border-color: var(--button-secondary-hover-bg);
}


.list-group-item.active, 
.list-group-item.active:hover, 
.list-group-item.active:focus {
    background-color: var(--color1);
    border-color: var(--color1);
    color:var(--text1);
}


.card-header{
    font-family: var(--font2);
    color: var(--text1);
    font-size: 20px;
    background-color: var(--color1);
    text-transform: uppercase;
    text-align: center;
}


.form-control.is-valid, 
.was-validated .form-control:valid{
    padding-right: 0px!important;
    background-image: none;
}
.form-select.is-valid:not([multiple]):not([size]), 
.form-select.is-valid:not([multiple])[size="1"], 
.was-validated .form-select:valid:not([multiple]):not([size]), 
.was-validated .form-select:valid:not([multiple])[size="1"]
{
    padding:.375rem 2.25rem .375rem .75rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}


/*********************************************** 
 ** SITE
 ***********************************************/

body{
	background:var(--body-bg);
    color:var(--body-color);
	font-family: var(--font1);
	font-size:14px;
}

td, th{
    font-size:14px;
}

h1,h2,h3{
	font-family: var(--font2);
    text-transform: uppercase;
}

h1{
    font-size:32px;
    padding: 5px 10px;
    color: var(--h1-color);
    background: var(--h1-bg);
    border-radius: 5px;
    margin-bottom: 15px;
}



h2{
    font-size:28px;
    color: var(--h2-color);
}


h3{
    font-size:22px;
    color: var(--h3-color);
}

a{
	color:var(--a-color);
}
a:hover{
	color:var(--a-hover-color);
}

a,
a:focus,
a:hover{
	text-decoration:none;
}

section.bordered {
    border: 1px solid var(--section-bordered-color);
    border-radius: 5px;
    padding: 20px 20px;
}

@media (max-width: 991px){
    h1{
        font-size:28px;
        background-image: none;
    }
    
}

/*********************************************** 
 ** HEADER - LOGIN / SUBSCRIBE
 ***********************************************/
header .top {
    background:var(--top-bg);
    padding: 15px 0px;
}


header .top .topStatus,
header .top .topBar .navbar a{
    color: var(--top-color);
    font-size:16px;
    text-transform:uppercase;
    font-family: var(--font2);
}

header .top .topBar .navbar a:hover{
    color: var(--top-a-hover-color);
}


header .top .topBar .dropdown-menu{
    left:auto;
    right:0;
    top:120%;
    background:var(--top-bg);
    border-color:var(--top-color);
}

header .top .topBar .dropdown-menu li:hover{
    background:var(--top-color);
}
header .top .topBar .dropdown-menu li:hover a{
    color:var(--top-bg);
}

header .top .topBar .navbar>ul>li:not(:last-child) {
    padding-right: 10px;
}

header .top .topBar .navbar>ul>li:not(:first-child) {
    padding-left: 10px;
}

header .top .topBar .navbar>ul>li:not(:first-child) {
    border-left: 1px solid var(--top-color);
}

header .top .topBar .nav-link{
    padding-top:0px;
    padding-bottom:0px;
}


header .top .topBar .dropdown-divider{
    border-color:var(--top-color);
    border-width: 2px;
}

header .topBar .avatar{
	width: 36px;
    height: 36px;
    border-radius: 50px;
    margin-top:-6px;
    margin-bottom:-6px;
}

/*********************************************** 
 ** HEADER - HEAD
 ***********************************************/
header .head{
    background-image: url("../images/head.jpg");
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size:cover;
    padding-bottom:5px;
    position:relative;
}

header .head .head-content{
    position:relative;
}

header .head .logo,
header .head .com{
	max-width:45%;
	margin-bottom:16px;
}

@media (max-width: 767px){
	header .head .logo{
		max-width:60%;
    	margin: 0px 0px 0px auto;
	}
}


/*********************************************** 
 ** HEADER - DESKTOP NAV
 ***********************************************/

header .head .menuBar {
    bottom: 0;
    margin-bottom: -30px;
    position: absolute;
    background: none repeat scroll 0 0 var(--menu-bg);
    border-color: var(--menu-border-bg);
    border-radius: 5px;
    border-style: solid;
    border-width: 1px 1px 4px;
    width: 100%;
    z-index:1000;
}

header .head .menuBar.affix {
    top:0px;
    bottom:auto;
    left:0px;
    position:fixed;
    border-radius:0px;
}

header .head .menuBar .navbar-nav{
    margin-bottom: -4px;
}

header .head .menuBar .navbar-nav>li:first-child,
header .head .menuBar .navbar-nav>li:first-child > a{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

header .head .menuBar .navbar-nav>li:last-child,
header .head .menuBar .navbar-nav>li:last-child > a{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

header .head .menuBar.affix .navbar-nav>li:first-child,
header .head .menuBar.affix .navbar-nav>li:first-child > a,
header .head .menuBar.affix .navbar-nav>li:last-child,
header .head .menuBar.affix .navbar-nav>li:last-child > a{
    border-radius:0px;
}


header .head .menuBar .navbar-nav > li > a{
    border-bottom: 4px solid transparent;
    color: var(--menu-color);
    font-family: var(--font2);
    font-size:20px;
    text-transform: uppercase;
    transition: all 100ms linear 0s;
	height:100%;
}

header .head .menuBar .navbar-nav > li > a:hover,
header .head .menuBar .navbar-nav > li.active > a {
    background: none repeat scroll 0 0 var(--menu-hover-bg);
    border-bottom-color: var(--menu-border-hover-bg);
    color: var(--menu-hover-color);
}

header .head .menuBar .dropdown-menu{
	width:100%;
}

header .head .menuBar .dropdown-menu > li > a{
    font-size:16px;
    font-family:var(--font2);
}

@media (max-width: 1132px){
	header .head .menuBar .navbar-nav > li > a{
		font-size:17px;
	}
}


/*********************************************** 
 ** HEADER - MOBILE NAV
 ***********************************************/
 
header .head .mobileBar{
	position: absolute;
    top: calc(50% - 18px);
}

header .head .mobileBar i{
	font-size:28px;
}

header .head .badge.cartNum{
	position: absolute;
	left: 92px;
    top: -14px;
}


/*********************************************** 
 ** HEADER - INFO PANEL
 ***********************************************/

header .infoPanel {
    background: none repeat scroll 0 0 var(--info-bg);
    height: auto;
    position: relative;
    width: 100%;
    padding: 15px 0px 0px 0px;
}

header .infoPanel .info{
	padding-left:50px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 0px top;
    margin-bottom:15px;
}

header .infoPanel .info.icon-b1{
    background-image: url("../images/icons-b1.png");
}
header .infoPanel .info.icon-b2{
    background-image: url("../images/icons-b2.png");
}
header .infoPanel .info.icon-b3{
    background-image: url("../images/icons-b3.png");
}
header .infoPanel .info.icon-b4{
    background-image: url("../images/icons-b4.png");
}

header .infoPanel .info h3{
  font-family: var(--font2);
  font-size:18px;
  text-transform:uppercase;
  color:var(--info-color);
  margin:0px;
}

header .infoPanel .info h4{
  font-size:14px;
  color:var(--info-color);;
  margin:0px;
}

@media (max-width: 991px){
	header .infoPanel {
	  padding-left: 60px;
	  padding-right: 60px;
	}
	
	header .infoPanel .info h3{
	  font-size:20px;
	}
}


/*********************************************** 
 ** HEADER - MOBILE SLIDEBAR
 ***********************************************/

#sb-site #sb-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.8); /* Tweak the transparency here. */
  z-index: 10000; /* Just something higher than your content inside the container. */
}

html.sb-active #sb-site #sb-overlay {
  display: block;
}

html.sb-active {
    overflow: hidden;
}

#sb-site, .sb-site-container{
	background-color:transparent;
	overflow-x: hidden;
}

.sb-slidebar{
    background-color: var(--slidebar-bg);
}

.slidebar .home{
	background-image:url("../images/logo-sb.png");
	background-position:top center;
	background-repeat:no-repeat;
	background-size:contain;
	height:100px;
}


.slidebar .sb-nav a{
	font-family:var(--font2);
	font-size:20px;
	display:block;
	padding:10px 10px 10px 30px;
	color:var(--slidebar-a-color);
}


.slidebar .sb-nav > li{
	border-bottom: 1px solid #333333;
}

.slidebar .sb-nav > li .badge{
	float: right;
}

.slidebar .sb-nav a:hover{
	color:var(--slidebar-a-hover-color);
	background-color:var(--slidebar-a-hover-bg);
}

.slidebar .sb-nav .sb-dropdown-menu{
	display:none;
	list-style:none;
	padding-left:0px;
	border-top: 1px solid #333333;
}

.slidebar .sb-nav .sb-dropdown .sb-caret{
	float:right;
    transition:transform 1s;
}

.slidebar .sb-nav .sb-dropdown.open .sb-caret,
.slidebar .sb-nav .sb-dropdown:hover .sb-caret{
  -webkit-transform:rotate(90deg); 
  -moz-transform:rotate(90deg);
  -o-transform:rotate(90deg); 
  -ms-transform:rotate(90deg); 
  transform:rotate(90deg);
}

.slidebar .sb-nav .sb-dropdown-item{
	padding-left:70px;
	border-top: 1px solid #333333;
}

.slidebar .separator{
	height:4px;
	background-color:#444444;
}

.slidebar .sb-username{
	text-align: center;
    margin-top:20px;
    color:var(--slidebar-a-color);
    font-style: italic;
}

.slidebar .sb-username i{
	font-size: 40px;
}


.slidebar .sb-username img{
    margin-top:20px;
	width: 96px;
    border-radius: 48px;
}


/*********************************************** 
 ** MAIN
 ***********************************************/
#sb-site, .sb-site-container{
	background-color:transparent;
}

#main{

  background: var(--main-bg) url('../images/background.jpg') repeat;
 /* background-size: cover;*/
  padding-top: 50px;
  padding-bottom: 40px;
}

#main .mainContent{
	border-radius: 5px;
	background-color: var(--main-content-bg);
	overflow:hidden;
	padding:20px;
}

/*********************************************** 
 ** FOOTER
 ***********************************************/
footer{
	background: url('../images/footer.jpg') repeat center top var(--footer-bg);
	background-size: initial;
	font-size:16px;
	font-family: var(--font2);
}

footer .info-block h4{
	border-bottom: solid 3px var(--footer-border-bg);
    text-transform: uppercase;
    font-size: 18px;
    
}

footer .info-block h4 span{
	border-bottom: solid 3px var(--footer-bullet-color);
    margin-bottom: -3px;
    display: inline-block;
    padding-bottom: 15px;
}

footer .info-block ul.bullet {
    padding:0px;
}

footer .info-block ul.bullet li {
    list-style:none; 
}

footer .info-block ul.bullet li:before {
    color: var(--footer-bullet-color);
    content: "\f054";
    margin-right: 6px;
    font-family: 'FontAwesome';
}

footer,
footer a,
footer span{
  color:var(--footer-color);
}

footer a:hover{
  color:var(--footer-a-hover-color);
}




/*********************************************** 
 ** FOOTER - SOCIAL
 ***********************************************/


footer .social-block ul {
    float: none;
    margin: 0;
    padding:0;
}

footer .social-block ul li{
    padding:0;
}

footer .social-block ul li a {
    text-transform: uppercase;
    border-left: 1px solid #A3A3A3;
    padding-left: 10px;
}

footer .social-block ul li:first-child a{
	padding-left:0px;
	border-left: none;
}

footer .social-block ul li a:before {
    display: inline-block;
    font-family: "FontAwesome";
  	content: "\f09a";
  	padding-right:10px;
  	font-size:20px;
}

footer .social-block ul li.facebook a:before {
  	content: "\f09a";
}
footer .social-block ul li.twitter a:before {
  	content: "\f099";
}
footer .social-block ul li.youtube a:before {
  	content: "\f167";
}
footer .social-block ul li.instagram a:before {
  	content: "\f16d";
}
footer .social-block ul li.tripadvisor a:before {
  content: "\f262";
}

/*********************************************** 
 ** FOOTER - PAYMENT 
 ***********************************************/


footer .payment-block img{
    height:30px;
}


/*********************************************** 
 ** FOOTER - POWERED BY
 ***********************************************/
 
footer .bottom {
    background-color: var(--bottom-bg);
    min-width: 100%;
    width: 100%;
}

footer .bottom .powered {
	text-align:right;
	line-height:40px;
}

footer .bottom .powered a{
	color:var(--bottom-color);
	text-decoration:none;
}


footer .bottom .manger-bouger a{
	color:var(--bottom-color);
}

/*********************************************** 
 ** BREADCRUMB
 ***********************************************/
.breadcrumb a{
	font-size:14px;
    text-transform: uppercase;
    font-family:var(--font2)
}

.breadcrumb .breadcrumb-item:last-child{
    display: none;
}


/*************************************
 ** HOME SLIDE
 *************************************/
 .homeSlide{
	background-color: #FFFFFF;
}

.homeSlider{
	height:350px;
}

.homeSlider.rsDefault,
.homeSlider.rsDefault .rsOverflow,
.homeSlider.rsDefault .rsSlide,
.homeSlider.rsDefault .rsVideoFrameHolder,
.homeSlider.rsDefault .rsThumbs {
	background:transparent;
}


.homeSlider.rsDefault .rsBullets{
	background:transparent;
}

.homeSlider.rsDefault .rsBullet {
	width: 22px;
	height: 22px;
	display: inline-block;
	padding: 6px 5px 40px;
}

.homeSlider.rsDefault .rsBullet span{
	width: 16px;
	height: 16px;
}

.homeSlider.rsDefault .rsArrowIcn{
	background-color: rgba(255,255,255,0.5);
}

.homeSlider.rsDefault .rsSlide{
	border-radius:5px 5px 0px 0px;
}

/*************************************
 ** HOME ARTICLE SLIDER
 *************************************/

.homeArticle{
	padding:20px;
    background:var(--home-article-bg);
}


.homeArticleSlider.rsDefault .rsBullets{
	background:transparent;
}

.homeArticleSlider.rsDefault .rsBullet {
	width: 22px;
	height: 22px;
	display: inline-block;
	padding: 6px 5px 40px;
}

.homeArticleSlider.rsDefault .rsBullet span{
	width: 16px;
	height: 16px;
}

.homeArticleSlider.rsDefault .rsArrowIcn{
	background-color: rgba(255,255,255,0.5);
}

.homeArticleSlider.rsDefault .rsSlide{
	border-radius:5px 5px 0px 0px;
}



/*************************************
 ** HOME PRODUCTS
 *************************************/
.homeProducts{
	background:var(--home-products-bg);
	padding: 20px;
}

.homeProducts .cat a, 
.homeProducts .product a{
    background:#FFFFFF;
}

.homeProducts .links a{
	text-transform: uppercase;
	font-family: var(--font2);
}

/*********************************************** 
 ** MAP
 ***********************************************/
.homeMap #map{
	width:100%;
	height:500px;
}



/*********************************************** 
 ** THEME
 ***********************************************/
.themes{
	background-color: var(--themes-bg);
	padding:20px 20px 0px 20px;
}

.themes>.row>div{
	margin-bottom:20px;
}

.theme{
    background-color: #EEEEEE;
	border-radius: 5px;
	overflow: hidden;
}

.theme .btn {
    text-transform: uppercase;
    font-family: var(--font2);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}


/*********************************************** 
 ** LOGIN 
 ***********************************************/

/*.login .loginStandard,
.login .loginCreate{
	padding-top:20px;
	padding-bottom:10px
}	*/		

.login .loginExternal .btn{
	margin-top:10px;
}

.login .or{
	text-align:center;
	font-size:28px;
	color:#BBBBBB;
}

.login .retrievePassword{
    font-size:14px;
    margin-top:10px
}

.login{
    background-color: var(--login-bg);
    border: 1px solid var(--section-bordered-color);
    border-radius: 5px;
    padding: 20px 20px;

}
/*********************************************** 
 ** ACCOUNT
 ***********************************************/

.accountCreate .loginExternal{
	padding-top:10px;
	padding-bottom:20px
}

.accountCreate .loginExternal .btn{
	margin-top:10px;
}
.accountCreate .or{
	text-align:center;
	font-size:28px;
	color:#BBBBBB;
    margin-bottom:15px;
}

@media (min-width: 768px){
	.accountForm label {
		text-align: right;
		padding-top:3px
	}
}

/*********************************************** 
 ** NEWS LIST
 ***********************************************/
.newsList .news {
    overflow: hidden;
}

.newsList .news .more .btn{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}


/*********************************************** 
 ** NEWS DETAIL
 ***********************************************/

.newsDetail .text{
	text-align:justify;
}

/*********************************************** 
 ** PRODUCT LIST
 ***********************************************/



.productList .cat,
.productList .product{
	text-align: center;
	padding-bottom:20px;
}

.productList .cat a,
.productList .product a{
    display: block;
    height: 100%;
    width: 100%;
    position:relative;
    padding:0px;
    border: 1px solid var(--gray3);
    border-radius:5px;
    text-transform:uppercase;
    overflow:hidden;
}

.productList .cat a:hover,
.productList .product a:hover{
    box-shadow:1px 2px 5px 0 #DDDDDD;
}

.productList .cat a img,
.productList .product a img{
    max-width:100%;
}
.productList .cat a:hover img,
.productList .product a:hover img{
    opacity:0.8;
}

.productList .cat a .title,
.productList .product a .title{
  line-height: 60px;
  height: 60px;
  padding-left:10px;
  padding-right:10px;
  vertical-align: middle;
}

.productList .cat a .title h3,
.productList .product a .title h3{
	display: inline-block;
	line-height: normal;
	vertical-align: middle;
    font-size: 16px;
    font-family:var(--font2);
    margin:0px;
}

.productList .product a .priceTTC {
    background-color: #EEEEEE;
    border-radius: 0px 0px 5px 5px;
    line-height: 33px;
    text-align: center;
    width: 100%;
}

.productList .product a .priceTTC .btn {
    display: inline-block;
    font-family: var(--font2);
    font-size: 16px;
    padding: 0 10px;
    height:100%;
    line-height:inherit;
    border:none;
}

.productList .product a .priceTTC .btn .oldPriceTTC {
    text-decoration:line-through;
    margin-right:5px;
}

.productList .product .promo {
    position:absolute;
    top:10px;
    right:-2px;
    font-size:16px;
    padding:10px;
    font-family: var(--font2);
    opacity:0.9;
}

.productList .note{
	font-style: italic;
	font-size:12px;
}

.productList .alert-warning,
.productDetail .alert-warning {
    text-transform: uppercase;
    font-family: var(--font2);
    font-size: 16px;
}


/*********************************************** 
 ** PRODUCT DETAIL
 ***********************************************/
.productDetail h1{
	margin-bottom:20px;
}
.productDetail h2{
	margin-top:0px;
	margin-bottom:20px;
	font-size:20px;
}

.productDetail .priceTTC{
	font-size: 32px;
	text-align: right;
	color: var(--color1);
    text-shadow: 1px 1px 2px #666;

}

.productDetail .priceTTC .oldPriceTTC{
	text-decoration:line-through;
	font-weight:normal;	
	padding-right:10px;
	color:#325C2C;
	font-size: 20px;
}


.productDetail .priceTTC .ship{
	font-size: 10px;
	/*text-align:right;*/
	
}

.productDetail .text{
	font-size:14px;
}

.productDetail .ingredientsLabel{
	font-size:13px;
	padding:0px;
	list-style:none;
	text-align:left;
	margin-bottom:0px;
}	

.productDetail .ingredientsLabel .rem{
	color:red;
}

.productDetail .ingredientsLabel .add{
	color:green;
}


.productDetail .ingredientsLink:hover .ingredientsLabel .rem,
.productDetail .ingredientsLink:hover .ingredientsLabel .add{
	color: #FFFFFF;
}

.productDetail .img-small{
	margin-top:10px;
}

.productDetail .img-large img{
	width:100%;
}


.productDetail select{
	font-size: 14px;
    font-family: var(--font2);
    text-transform: uppercase;
	
}

/*.productDetail .tinymce{
	margin-top:10px;
	font-size:14px;
}*/

.productDetail .note{
	font-style: italic;
	font-size:12px;
}


@media (max-width: 767px){
	.productDetail .img-small{
		display:none;
	}
}


/*********************************************** 
 ** PANIER 
 ***********************************************/


.cart .oldPriceTTC{
	text-decoration:line-through;
}
.cart .item_description,
.cart .discount{
	text-align:left;
}

.cart .buttons .pull-left{
	margin-right:10px;
}

.cart th,
.cart td{
	text-align:right;
}

.cart .discountDescription,
.cart .more{
	text-align:left;
}

.cart .item_priceUnitTTC,
.cart .item_priceTotalTTC,
.cart .cart_totalTTC{
	white-space:nowrap;
	
}

.cart .cart_totalTTC{
    font-size: 18px;
}


.cart .shipping .btn{
	white-space:normal;
	padding-left:50px;
}

.cart .shipping label{
	text-align: left;
	position: relative;
}
.cart .shipping input{
	display:none;
}
.cart .shipping i.fa{
	display:none;
	position: absolute;
	left:10px;
	top:8px;
	font-size:20px;
}

.cart .shipping .btn-success i.icon-selected{
	display:block;
}
.cart .shipping .btn-secondary i.icon-unselected{
	display:block;
}

.cart .shipping .shippingTitle{
	font-weight: bold;
}
.cart .shipping .shippingMinimum{
	color:red;
}

.cart .shipping .shippingDescription{
    text-align: left;;
}


@media (max-width: 767px){
	.cart .item_options{
		padding-left:0px;
		font-size:11px;
		list-style-type:none;
	}
	.cart .shippingMinimum,
	.cart .shippingDescription,
	.cart .more{
		font-size:12px;
        
	}
	.cart th{
		font-size:10px;
	}
	.buttons .btn{
		font-size:12px;
	}
}

.cart .tableCart  > tbody > tr > td{
vertical-align: middle;
}

/*********************************************** 
 ** MINI PANIER
 ***********************************************/


 .miniCart .card-body {
    font-size: 18px;
    font-family: var(--font2);
}

.miniCart .card-footer .price{
    text-transform: uppercase;
    font-size: 18px;
    font-family: var(--font2);
}


.miniCart .itemTotalTTC{
	text-align:right;
	vertical-align:top;
}
.miniCart .address,
.miniCart .comment{
	padding:5px 0px;
	border-top:1px solid #dddddd;
}

.miniCart .itemOptions{
	font-size:14px;
	margin:0px 0px 0px 15px;
}

/*********************************************** 
 ** CATEGORIES
 ***********************************************/
nav.categories li:not(:last-child){
	border-bottom: 1px solid #d6d6d6;
	padding: 2px 0;
}

nav.categories li a{
	color: var(--category-a-color);
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

nav.categories li a:hover{
	color: var(--category-a-hover-color);
}

nav.categories li img{
    margin-right: 15px;
    vertical-align: middle;
}

nav.categories li span{
    display: inline-block;
    line-height: 15px;
    vertical-align: middle;
    font-family: var(--font2);
    font-size:16px;
}
nav.categories ul{
    margin-bottom:0px;
}

/*********************************************** 
 ** METHOD OF DELIVERY
 ***********************************************/

.delivery .btn-xs{
	margin-top:5px;
}
.delivery .cgv{
	width:20px;
	height:20px;
}

/*********************************************** 
 ** METHOD OF PAYMENT
 ***********************************************/
.mop .table td{
	vertical-align:middle;
}

.mop .text{
	font-weight:normal;
}

.mop input[type=radio]{
	width:20px;
	height:20px;
}


/*********************************************** 
 ** CONTACT
 ***********************************************/

.contactMap #map{
	width:100%;
	height:550px;
    border-radius:5px;
}


.modal.contact .modal-body .fa{
	font-size:30px;
	margin-right:15px;
}

@media (min-width: 576px){
    .contactForm label{
        text-align: right;
        padding-top:3px;
    }
}


/*********************************************** 
 ** SIDEBAR
 ***********************************************/

.sidebar .information img{
	width:100%;
}

.sidebar .video iframe{
	width:100%;
}

 .communication .card{
	overflow:hidden;
}
.communication .card-body{
	padding:0px;
}

.communication img{
	width:100%;
	display:none;
}



/*********************************************** 
 ** MODAL WINDOW
 ***********************************************/
 
.modal{
	background-color:rgba(0,0,0,0.5)
}

.modal .modal-title{
    font-family:var(--font2);
    text-transform: uppercase;
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 600px;
    }
}

/*********************************************** 
 ** MODAL - INGREDIENTS
 ***********************************************/
 .modal.cart .modal-body .fa{
	font-size:30px;
	margin-right:15px;
}

.modal.cart .cartItem .badge-wrapper{
	position: relative;
}
.modal.cart .cartItem .badge-wrapper .badge-quantity{
	position: absolute;
	left: 5px;
	top: -7px;
	border-radius: 25px;
}

.modal.cart .modal-body .fa{
	font-size:30px;
	margin-right:15px;
}

.modal.cart .cartItem .price,
.modal.cart .cartItem .total{
	font-family: var(--font2);
	font-size: 18px;
}
.modal.cart .cartItem h3{
	margin-top: 0px;
	font-size: 20px;
}
.modal.cart .cartItem .separator{
	border-top: 1px dashed var(--color2);
	margin: 10px 0px;
}
.modal.cart .cartItem .options{
	min-height: 20px;
}

.modal.cart .cartItem .label{
	font-family: var(--font1);
}

/*********************************************** 
 ** MODAL - INGREDIENTS
 ***********************************************/

.modal.productDetail input[type=checkbox]{
	height:17px;
	width:17px;
}
.modal.productDetail label{
	margin-top: 3px;
    margin-left: 3px;
}


.modal.productDetail h6{
	font-weight:bold;
	font-size:14px;
    text-transform: uppercase;
}

.modal.productDetail .modal-body{
	font-family:var(--font2);
}

.modal.check .modal-body .fa {
    font-size: 30px;
    margin-right: 15px;
}

/*********************************************** 
 ** AUTOCOMPLETION DES VILLES
 ***********************************************/
.typeahead li.active{
    background-color: #CCCCCC;
}

/*********************************************** 
 ** TINYMCE
 ***********************************************/
.tinymce img{
	max-width:100%;
	height:auto;
}

.tinymce img.fullWidth{
	width:100%;
}

/*********************************************** 
 ** BLOCK FACEBOOK
 ***********************************************/
#facebookBlock {
    z-index: 10999;
    animation: fadeinright 2.4s;
    position: fixed;
    padding: 0;
    top: 35%;
    right: 0;
    margin-right: -350px;
    overflow: hidden;
    background: none;
    transition: all 240ms linear;
    transform: rotate(-90deg)
}

#facebookBlock.hover,
#facebookBlock:hover {
    margin-right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg)
}

#facebookBlock h4 {
    background: var(--widget-facebook-bg);
    padding: 15px 10px 14px 30px;
    margin: 0;
    position: relative;
    border-radius: 5px 5px 0 0;
    font-size: 18px;
    color: var(--widget-facebook-color);
    font-family:var(--font2);
}

#facebookBlock h4:before {
    position: absolute;
    right: 8px;
    top: 9px;
    background: var(--widget-facebook-color);
    width: 30px;
    height: 30px;
    display: inline-block;
    color: var(--widget-facebook-bg);
    text-align: center;
    padding-top: 8px;
    border-radius: 50%;
    font-size: 16px;
    content: "\f09a";
    font-family: "FontAwesome";
    transition: all 240ms linear;
    transform: rotate(90deg)
}
#facebookBlock.hover h4:before,
#facebookBlock:hover h4:before {
    transform: rotate(0deg)
}

#facebookBlock .facebook-fanbox {
    background: white;
    border-style: solid;
    border-color: var(--widget-facebook-bg);
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 5px 5px;
}

@media (max-width: 1199px) {
    #facebookBlock {
        display:none!important
    }
}


/*********************************************** 
 ** TRIP ADVISOR
 ***********************************************/
.tripadvisorWrap {margin-top:20px;margin-bottom:20px;}
.tripadvisorWrap #CDSWIDEXC {width: 100%; margin: 0px; border-radius:4px;}
.tripadvisorWrap #CDSWIDSSP {width: 100% !important;}
.tripadvisorWrap #CDSWIDSSP.widSSPnarrow .widSSPData {border-radius:4px;}
.tripadvisorWrap #CDSWIDSSP.widSSPnarrow .widSSPData .widSSPBranding dd {width: 100%;}
.tripadvisorWrap #CDSSCROLLINGRAVE.narrow {width:100%; border-radius:4px;}
.tripadvisorWrap .cdsROW.narrow{width:100%;border-radius:4px;}
.tripadvisorWrap #CDSWIDLNKR{width:100%;border-radius:4px;}
.tripadvisorWrap #CDSWIDWRL{width:100%;max-width:100%;}

/*********************************************** 
 ** BUTTON SOCIAL
 ***********************************************/
.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding:0}.btn-social-icon>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon>:first-child{border:none;text-align:center;width:100% !important}
.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}
.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}
.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}
.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:hover{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}.btn-facebook:active:hover,.btn-facebook.active:hover,.open>.dropdown-toggle.btn-facebook:hover,.btn-facebook:active:focus,.btn-facebook.active:focus,.open>.dropdown-toggle.btn-facebook:focus,.btn-facebook:active.focus,.btn-facebook.active.focus,.open>.dropdown-toggle.btn-facebook.focus{color:#fff;background-color:#23345a;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{background-image:none}
.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled.focus,.btn-facebook[disabled].focus,fieldset[disabled] .btn-facebook.focus{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}
.btn-facebook .badge{color:#3b5998;background-color:#fff}
.btn-google{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
.btn-google:hover{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}.btn-google:active:hover,.btn-google.active:hover,.open>.dropdown-toggle.btn-google:hover,.btn-google:active:focus,.btn-google.active:focus,.open>.dropdown-toggle.btn-google:focus,.btn-google:active.focus,.btn-google.active.focus,.open>.dropdown-toggle.btn-google.focus{color:#fff;background-color:#a32b1c;border-color:rgba(0,0,0,0.2)}
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{background-image:none}
.btn-google.disabled:hover,.btn-google[disabled]:hover,fieldset[disabled] .btn-google:hover,.btn-google.disabled:focus,.btn-google[disabled]:focus,fieldset[disabled] .btn-google:focus,.btn-google.disabled.focus,.btn-google[disabled].focus,fieldset[disabled] .btn-google.focus{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}
.btn-google .badge{color:#dd4b39;background-color:#fff}
.btn-twitter{color:#fff;background-color:#55acee;border-color:rgba(0,0,0,0.2)}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
.btn-twitter:hover{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}.btn-twitter:active:hover,.btn-twitter.active:hover,.open>.dropdown-toggle.btn-twitter:hover,.btn-twitter:active:focus,.btn-twitter.active:focus,.open>.dropdown-toggle.btn-twitter:focus,.btn-twitter:active.focus,.btn-twitter.active.focus,.open>.dropdown-toggle.btn-twitter.focus{color:#fff;background-color:#1583d7;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{background-image:none}
.btn-twitter.disabled:hover,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter:hover,.btn-twitter.disabled:focus,.btn-twitter[disabled]:focus,fieldset[disabled] .btn-twitter:focus,.btn-twitter.disabled.focus,.btn-twitter[disabled].focus,fieldset[disabled] .btn-twitter.focus{background-color:#55acee;border-color:rgba(0,0,0,0.2)}
.btn-twitter .badge{color:#55acee;background-color:#fff}


/*********************************************** 
 ** DEBUG
 ***********************************************/
.debug{
	display:none;
}

body.modal-open #sb-site {
    position: static;
    -webkit-transform: none !important;
    transform: none !important;
  }

.cat.saleKO,
.product.saleKO{
	opacity:0.5;	
}


 

