@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@300;400;500;600;700&display=swap');

:root {
	--primary-color: #1F1F1F;
	--secondary-color: #F2B579;
	--global-text-color: #000000;
	--global-background-color: #f4f4f4;
	--global-font: 'Advent Pro', Arial, sans-serif;
}

/**********
 * Global *
 *********/

html {
	margin: 0px;
	padding: 0px;
	color: #000;
	font-size: 12px;
	border: 0px solid transparent;
	font-family: var(--global-font);
	font-weight: 400;
}

body {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

.blk {
	font-weight: 800;
	color: #000000 !important;
	font-size: 30px;
}

img {
	border: none;
}

:focus {
	outline: none;
}

::-moz-focus-inner {
	border: 0;
}

::-moz-selection {
	color: #FFF;
	background: #F2B579;
}

::selection {
	color: #FFF;
	background: #F2B579;
}

.flol {
	float: left;
}

.flor {
	float: right;
}

.flob {
	float: bottom;
}

.alc {
	text-align: center;
}

.alr {
	text-align: right;
}

.prel {
	position: relative;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex.sb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex.sa {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex.start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start; 
}

.flex.end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end; 
}

.flex.jcc {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flex.col { 
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column; 
}

.acc {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.asc {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.wrap {
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
}

.width20 {
	width: 20%;
}

.width33 {
	width: 33.333333%;
}

.width40 {
	width: 40%;
}

.width50 {
	width: 50%;
}

.width60 {
	width: 60%;
}

.width80 {
	width: 80%;
}

.fin {
	clear: both;
	line-height: 0;
	height: 0;
	font-size: 1px;
}

.ovhid {
	overflow: hidden;
}

#strErreur,
#strInfo {
	display: none;
}

.content_max_width {
	max-width: 1366px;
	margin: 0 auto;
}

/**********/

h1,
h2,
h3,
h4 {
	margin: 0px;
}

/*********************** 
 *    SCROLL DOWN      *
***********************/

.container {
	width: 24px;
	height: 24px;
	display: block;
	margin: 0 auto;
}

.chevron {
	position: absolute;
	width: 28px;
	height: 8px;
	opacity: 0;
	transform: scale3d(0.5, 0.5, 0.5);
	animation: move 3s ease-out infinite;
}

.chevron:first-child {
	animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
	animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
	content: ' ';
	position: absolute;
	top: 0;
	height: 100%;
	width: 51%;
	background: #fff;
}

.chevron:before {
	left: 0;
	transform: skew(0deg, 30deg);
}

.chevron:after {
	right: 0;
	width: 50%;
	transform: skew(0deg, -30deg);
}

@keyframes move {
	25% {
		opacity: 1;

	}

	33% {
		opacity: 1;
		transform: translateY(30px);
	}

	67% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 0;
		transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
	}
}

.text {
	display: block;
	margin-top: 75px;
	margin-left: -30px;
	font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: .25;
	animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
	to {
		opacity: 1;
	}
}

/* CUSTOM HR SEPARATOR */
.accessory:before,
.accessory:after {
	content: '';
}

hr.accessory {
	border: 0;
	margin: 6em auto;
	max-width: 100%;
	background-position: 50%;
	box-sizing: border-box;
}

.accessory {
	height: 6px;
	background-image: radial-gradient(closest-side, hsla(0, 0%, 0%, 1.0), hsla(0, 0%, 0%, 0) 100%);
	position: relative;
}

.accessory:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background-color: hsl(0, 0%, 0%);
	height: 12px;
	width: 12px;
	transform: rotate(45deg);
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 4px 0;
	border: 4px solid hsla(0, 0%, 100%, 1);
	background-clip: padding-box;
	box-shadow: -10px 10px 0 hsla(0, 0, 0, 1), 10px -10px 0 hsla(0, 0, 0, 1);
}


/*************************
 * 		BACK TO TOP		 *
 ************************/

#returnOnTop {
	background: #1F1F1F;
	bottom: 1%;
	cursor: pointer;
	display: none;
	filter: alpha(opacity=50);
	/* IE < 8 */
	height: 38px;
	width: 38px;
	opacity: 1;
	position: fixed;
	right: 1%;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	z-index: 9999999;
	text-align: center;
}

#returnOnTop i {
	position: relative;
	left: 3px;
	top: 7px;
	color: #FFF;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
}

#returnOnTop:hover i {
	filter: alpha(opacity=100);
	/* IE < 8 */
	color: #F2B579;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}

/*****************
 * 		MAP		 *
 *****************/

.map {
	position: relative;
}

.map .titreMap {
	position: absolute;
	z-index: 100000000;
	top: 10%;
	left: 50%;
	width: 50%;
	transform: translateX(-50%);
	background: #e30613;
	/* For browsers that do not support gradients */
	background: -webkit-linear-gradient(to right, transparent, #e30613, transparent);
	/* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(to right, transparent, #e30613, transparent);
	/* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(to right, transparent, #e30613, transparent);
	/* For Firefox 3.6 to 15 */
	background: linear-gradient(to right, transparent, #e30613, transparent);
	/* Standard syntax */
}

.map .titreMap span {
	color: #ffffff;
	display: block;
	margin: 0 auto;
	font-family: var(--global-font);
	font-size: 45px;
	padding: 0 50px;
	text-align: center;
	text-transform: uppercase;
}

.map,
#map-canvas {
	width: 100%;
	height: 600px;
}

#map-canvas img {
	max-width: none !important;
	width: 50%;
}

.gm-style-iw {
	width: 260px !important;
	top: 15px !important;
	left: 0px !important;
	background-color: #FFFFFF;
	border: 3px solid #831425;
	color: #FFF;
}

.gm-style .gm-style-iw {
	overflow: visible !important;
}

#iw-container {
	margin-bottom: 10px;
}

#iw-container .iw-title {
	font-family: var(--global-font);
	font-size: 22px;
	font-weight: 400;
	padding: 10px;
	background-color: #FFFFFF;
	color: #313131;
	margin: 0;
	border-radius: 2px 2px 0 0;
}

#iw-container .iw-content {
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	margin-right: 1px;
	padding: 15px 5px 20px 15px;
	max-height: 140px;
	text-align: center;
	color: #1F1F1F;
}

.iw-content img {
	display: block;
	margin: 0 auto;
}

.iw-content hr {
	border: none;
	color: #1F1F1F;
	background: #313131;
	height: 3px;
	margin: 5px auto;
	width: 50px;
}

.iw-content span {
	font-family: var(--global-font);
	font-weight: 700;
	font-size: 18px;
	padding: 10px 0px 0px 0px;
}

.iw-content a {
	display: table;
	margin: 0 0 0 -70px;
	background: #000;
	padding: 10px 20px;
	bottom: -15px;
	left: 50%;
	position: absolute;
}

.iw-subTitle {
	font-size: 16px;
	font-weight: 700;
	padding: 5px 0;
}

.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 85px 32.5px 0 32.5px;
	border-color: #007bff transparent transparent transparent;
}

/*************
**** BODY ****
**************/

.reg_content {
	margin: 0 auto;
	font-family: var(--global-font);
}

.reg_seo {
	width: 70%;
	padding: 50px 0px;
	margin: 0 auto;
	font-family: var(--global-font);
	font-weight: 700;
}

.reg_seo h1,
.reg_seo h2 {
	font-size: 50px;
	font-weight: normal;
	text-align: center;
}

.reg_seo h1 strong,
.reg_seo h2 strong {
	font-weight: normal;
}

.reg_seo h3 {
	color: #F2B579;
	font-size: 20px;
	font-weight: normal;
	line-height: 24px;
	text-align: center;
}

.reg_seo p {
	padding: 0;
	margin: 0;
	font-size: 1.5em;
	text-align: left;
}

.wide-container {
	width: 100%;
	height: 540px;
}

.pad50tb {
	padding: 70px 0 120px 0;
}

/********
*  TOP  *
*********/

.topBg {
	background: rgba(0, 0, 0, 0.2);
}


.reg_contentTop_accueil,
.reg_contentTop_404 {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.home.jpg") no-repeat scroll center center;
	min-height: 840px;
	background-size: cover;
	position: relative;
}

.reg_contentTop_la-carte {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.carte.jpg") no-repeat scroll center center;
	min-height: 840px;
	background-size: cover;
	position: relative;
}

.reg_contentTop_vente-a-emporter {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.carte.jpg") no-repeat scroll center center;
	min-height: 100vh;
	background-size: cover;
	position: relative;
}

.reg_contentTop_bons-cadeaux {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.bons-cadeaux") no-repeat scroll center center;
	min-height: 840px;
	background-size: cover;
	position: relative;
}

.reg_contentTop_contact {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.contact.jpg") no-repeat scroll center center;
	min-height: 840px;
	background-size: cover;
	position: relative;
}


.reg_contentTop .reg_content {
	padding: 0 65px;
}

.reg_topGauche {
	float: left;
	width: 40%;
}

.reg_topGauche a,
.reg_topGauche img {
	display: block;
}

.reg_topGauche a {
	padding: 0 0 0 20px;
}

.reg_topGauche a.tel {
	padding: 0px;
	display: inline-block;
}

.reg_topDroite {
	float: right;
	width: 60%;
}

.reg_topDroite .reg_encartNumBack {
	float: right;
}

.logo {
	width: 200px;
}

.menu_phone {
	color: #FFFFFF;
	font-size: 30px;
	padding: 35px 0 0 0;
	width: 50%;
	font-family: var(--global-font);
	font-weight: 700;
}

.top_title,
h2.p404 {
	color: #ffffff;
	font-size: 36px;
	z-index: 2;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 1);
}

h2.p404 {
	margin: 0 auto;
	text-align: center;
	font-size: 40px;
	padding: 30px 0;
}

.top_contTitle {
	display: table;
	margin: 0 auto;
	text-align: center;
	padding: 12% 0 0 0;
}

.top_button {
	color: #ffffff;
	font-size: 28px;
}

span.caseBleu {
	float: left;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 40px 40px;
	border-color: transparent transparent #98c63c transparent;
	/* #color */
	line-height: 0px;
	_border-color: #000000 #000000 #98c63c #000000;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

a.caseGris {
	padding-right: 42px;
	height: 40px;
	float: left;
	background: url('/imgs/picto.angle-gris.png') right bottom no-repeat;
	overflow: hidden;
	width: 160px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.accueil a.caseGris {
	width: 30px;
}

a.caseGris strong {
	height: 40px;
	display: block;
	background: #6C6B6B url('/imgs/picto.portable.png') right center no-repeat;
	color: #FFF;
	line-height: 40px;
	font-weight: normal;
	font-size: 16px;
	padding-left: 20px;
}

a:hover.caseGris {
	width: 160px;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

a:hover.caseGris strong {
	color: #FFF;
}

.accueil a.caseGris strong {
	color: transparent;
}

.contentMenuTop {
	padding: 35px 0 0 0;
}

.contentMenuTop a {
	color: #FFF;
	font-size: 25px;
	padding: 0px 30px;
	display: block;
	float: right;
	text-align: center;
	text-transform: uppercase;
	font-family: var(--global-font);
	font-weight: 700;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.contentMenuTop a:hover,
.contentMenuTop a.sel {
	color: #F2B579;
	/* #color */
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.reg_sMenuCont {
	float: left;
	width: 20%;
	padding: 25px 0 0 0;
}

.reg_sMenuCont a {
	margin: 0 0 5px 0;
}

.reg_listeDr {
	float: left;
	width: 80%;
}

.contentMenuTop a.home {
	display: block;
	background: url('/imgs/picto.homeMenu.png') center 5px no-repeat;
	height: 27px;
	width: 27px;
	padding: 0px;
}

.contentMenuTop a.home:hover,
.contentMenuTop a.home.sel {
	background: url('/imgs/picto.homeMenu.png') center 5px no-repeat;
	border-bottom: solid 1px #F2B579;
}

/* #color */


.slides-container .txt {
	position: absolute;
	left: 50%;
	margin-left: -200px;
	top: 24%;
	color: #FFF;
	text-align: center;
	width: 400px;
	height: 260px;
}

.slides-container .txt h3 {
	font-size: 60px;
	color: #F2B579;
	/* #color */
	opacity: 0.7;
	filter: alpha(opacity=70);
	padding: 0;
}

.slides-container .txt h4 {
	font-size: 40px;
	padding: 0 0 20px 0;
}

.blocActu {
	position: relative;
	min-height: 250px;
	border-bottom: solid 3px #F2B579;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-ms-behavior: url(backgroundsize.min.htc);
	margin: 0 0 20px 0;
}

.blocActu .bgBack h3 {
	color: #F2B579;
	display: block;
	font-size: 26px;
	font-weight: normal;
	padding: 110px 20px 5px;
	text-align: center;
}

.blocActu .bgBack h4 {
	font-size: 14px;
	font-weight: normal;
	padding: 10px 20px 20px;
	line-height: 20px;
	text-align: justify;
}

.regPadTop {
	padding: 25px 0 0 0;
}

.reg_topGauche .fa.fa-phone {
	display: inline-block;
	line-height: 37px;
	padding: 0 5px;
}

/*************
*** BOTTOM ***
**************/

.reg_contentBot {
	background: #262626;
	font-size: 12px;
	color: #000;
}

.reg_contentBot img {
	width: 12%;
}

.reg_contentBot .botReferenceTitre {
	color: #000;
	text-align: center;
	font-size: 24px;
	padding: 20px 0 20px 0;
	text-transform: uppercase;
}

.reg_contentBot .botReferenceTitre strong {
	font-weight: normal;
}

.refCarousel img {
	display: block;
	float: left;
	padding: 0 6px;
}

.reg_contentBot .botFooterGauche,
.reg_contentBot .botFooterDroite {
	height: 30px;
	line-height: 30px;
	padding: 30px 0 10px 0;
}

.reg_contentBot .botMenu a,
.reg_contentBot .botMenu span {
	float: left;
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 5px;
}

.reg_contentBot .botMenu span {
	color: #F2B579;
	/* #color */
}

.reg_contentBot .botMenu img {
	float: left;
	display: block;
}

.reg_michelin {
	position: relative;
	z-index: 10;
	text-align: center;
	background-color: #F4F4F4;
	padding-bottom: 10px;
}

.reg_michelin .logo_michelin {
	max-width: 220px;
	height: auto;
	position: relative;
	top: -70px;
	margin-bottom: -70px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
}

.reg_content_info {
	display: block;
	width: 100%;
	background-color: #F4F4F4;
}

.reg_content_info .reg_content {
	padding: 20px 0;
	display: block;
	height: 100%;
	text-align: center;
}

.part2 {
	padding: 40px 0;
}

.part3 {
	padding: 10px;
	background: black;
}

.part3 a,
.part3 span {
	font-family: var(--global-font);
	font-size: 12px;
	color: #FFF;
}

.menuTab,
.botTab {
	display: table;
	margin: 0 auto;
	width: 100%;
	border-bottom: 2px solid;
	padding: 25px 0px;
}

.menuRow,
.botRow {
	display: block;
}

.botCell {
	text-align: center;
	float: left;
	padding-top: 8px;
	width: 33.3333%;
}

.botCell strong {
	color: #ddd;
	font-family: var(--global-font);
	font-weight: 700;
	font-size: 18px;
	font-weight: normal;
	padding: 40px 0;
	text-align: center;
	text-transform: uppercase;
}

.contentBotLien strong {
	font-family: var(--global-font);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 2px;
	padding: 10px 0;
	color: #FFFFFF;
	text-transform: uppercase;
	text-align: center;
	display: block;
}

.contentBotLien span {
	font-size: 12px;
	padding: 10px 0;
	color: #FFFFFF;
	text-align: center;
	display: table;
	margin: 0 auto;
}

.contentBotLien a {
	display: table-row;
	font-size: 18px;
}

.contentBotLien a:hover {
	color: #F2B579;
}

.contentBotLien cite {
	display: inline-table;
	font-size: 15px;
	font-style: italic;
	padding: 6px 0 6px 25px;
	color: #FFFFFF;
	text-align: justify;
	font-style: normal;
	font-family: var(--global-font);
	line-height: 18px;
}

.contentBotLien i {
	display: block;
	font-size: 18px;
	text-align: justify;
}

.contentBotLien p {
	font-size: 18px;
	color: #FFFFFF;
}

.contentBotLien .BotP {
	margin: 0 auto;
	width: 70%;
	display: block;
}

.botLogo {
	padding: 5px 25px;
}


/*************
*** BOUTON ***
**************/

.btnStd {
	background-color: #1F1F1F;
	display: table;
	margin: 0 auto;
	padding: 15px 30px;
	font-size: 26px;
	text-align: center;
	font-family: var(--global-font);
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	margin-top: 15px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.6);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.6);
}

.btnStd:hover {
	background: #F2B579;
	color: #FFF;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

/*************
*** MIDDLE ***
**************/

.reg_contentMid {
	margin: 0 auto;
	padding: 0 0 20px 0;
}

.homesSlide {
	color: #FFF;
}

.reg_tableStd {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0px;
}

.reg_tableStd td {
	border: 0px;
	opacity: 0.0;
	filter: alpha(opacity=0);
}

.reg_tableStd td.tdMid {
	text-align: center;
	width: 1024px;
	height: 340px;
	border: 0px;
	background: #F2B579 url('/imgs/bg.homeSlide.png') left bottom no-repeat;
	/* #color */
}

.reg_tableStd td.tdMid a.linkSlide {
	display: block;
	padding: 0 0 0 30px;
}

.reg_tableStd td.tdDroite {
	background: #F2B579 url('/imgs/bg.homeSlideDr.png') left bottom no-repeat;
}

/* #color */

.reg_tableStd .infos {
	float: left;
	display: block;
	width: 43.9453125%;
}

.homesSlide .illustration {
	float: right;
	display: block;
	width: 56.0546875%;
}

.homesSlide .illustration img {
	display: block;
	margin: 0 auto;
}

.bxslider {
	margin: 0px;
	display: block;
}

.reg_tableStd span.infos .titre {
	width: 100%;
	text-transform: uppercase;
	color: #000;
	text-align: center;
	font-weight: normal;
	padding: 10px 0;
	letter-spacing: 1px;
	font-size: 30px;
	text-align: left;
	display: block;
}


.homesSlide .slides span.infos span.texte {
	width: 340px;
	font-size: 18px;
	padding: 0 0 20px 0;
	color: #6c6b6b;
	text-align: justify;
	display: block;
	font-weight: normal;
}

.homesSlide .slides span.infos span.texte strong {
	font-weight: normal;
}

.bx-wrapper img {
	display: block;
}

.accueil .blocAccueil {
	padding: 15px 0px 50px 0px;
}

.accueil .blocAccueil .blocContent {
	width: 85%;
	margin: 0 auto;
}

.accueil .blocAccueil .blocContent.one {
	background: #1f1f1f;
	color: #FFF;
}

.accueil .blocAccueil .blocContent.two {
	background: #f4f4f4;
}


.blocAccueil.pad01 {
	padding: 0 0 20px 0;
}

.blocAccueil.pad02 {
	padding: 20px 0 0 0;
}

.blocAccueil.padmin {
	padding: 0 0;
}

.blocAccueil a,
.blocAccueil .bloc {
	display: block;
	position: relative;
	z-index: 100;
	width: auto;
	opacity: 0.0;
	filter: alpha(opacity=0);
	border: none;
	width: auto;
}

.blocAccueil .blocL a {
	width: 100%;
}

.blocAccueil a.padBas {
	/*margin: 0 0 7px 0;*/
}

.blocAcceuil img,
.blocAccueil .padDroite img {
	display: block;
	width: 100%;
	max-height: 387px;
}

.reg_contentBloc img {
	width: 100%;
	max-height: 452px;
}

.blocAccueil .bgBack,
.blocActu .bgBack {
	width: 100%;
	display: block;
	bottom: 0px;
	z-index: 2000;
}

.blocActu .bgBack {
	bottom: 0px;
}

.blocAccueil .blocG a {
	width: 100%;
}

.blocAccueil .bgBack h3 {
	display: block;
	font-size: 32px;
	text-align: center;
	color: #FFF;
	padding: 30px 20px 5px 20px;
	font-family: var(--global-font);
	font-weight: 700;
}

.blocAccueil .bgBack h3.color2 {
	color: #1F1F1F;
}

.blocAccueil .bgBack h3 strong {
	font-weight: normal;
}

.blocAccueil .bgBack p {
	font-size: 20px;
	font-weight: normal;
	line-height: 23px;
	padding: 20px 50px;
	text-align: center;
	margin: 0px;
}

.blocAccueil .reg_contentBlocTexte.width60.flol .bgBack h4 {
	padding: 20px 65px 25px;
}

.blocAccueil .bgBack hr,
.blocActu .bgBack hr {
	display: block;
	width: 30%;
	height: 1px;
	margin: 0 auto;
	border: none;
	background-color: #F2B579;
	/* #color */
}

.reg_contentBloc {
	display: block;
	max-height: 452px;
}

.reg_contentBloc.width40.flol {
	display: block;
}

.imgOne {
	padding: 0 0 130px;
	min-height: 300px;
	background: url('/imgs/img.aubergedelabrie-home2.jpg') center no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}

.imgTwo {
	padding: 0 0 130px;
	min-height: 300px;
	background: url('/imgs/img.aubergedelabrie-home1.jpg') center no-repeat;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}


.reg_contentBlocTexte.width40 {
	display: block;
	color: #FFFFFF;
}

.reg_contentBlocTexte.width60 {
	display: block;
}

.blocAccueil .reg_contentBlocTexte1 .bgBack,
.blocActu .bgBack {
	position: relative;
	color: #FFFFFF;
}

.blocAccueil .reg_contentBlocTexte2 .bgBack,
.blocActu .bgBack {
	position: relative;
	color: #545454;
}

.reg_contentBloc.width33.flol {
	padding: 0px 10px;
	margin: 0px auto;
	max-height: none;
}


/**************** INFOS *****************/

.reg_illusprod {
	padding: 30px 0;
}

.reg_illusprod a {
	width: 33.333333333%;
	display: block;
	float: left;
}

.reg_illusprod a img {
	display: block;
	margin: 0 auto;
}

.reg_illusprod a h3 {
	display: block;
	text-align: center;
	font-weight: normal;
}

.reg_content h1.titre {
	font-size: 36px;
	padding: 20px 0 10px 15px;
	font-weight: normal;
	margin: 0px;
	color: #F2B579;
	/* #color */
	text-align: center;
}

.reg_content h2.sousTitre {
	font-size: 18px;
	padding: 0 0 20px 15px;
	font-weight: normal;
	margin: 0px;
	text-align: center;
}

.reg_content .texte {
	font-size: 16px;
	text-align: justify;
	padding: 15px 15px 20px 210px;
	line-height: 24px;
	min-height: 190px;
	background-repeat: no-repeat;
	background-position: 0 0;
}

.reg_content h3 {
	font-size: 32px;
	font-weight: normal;
	line-height: 34px;
	color: #F2B579;
	/* #color */
}

.reg_content_info h3 {
	color: black;
	font-size: 22px;
}

.reg_content_info span {
	color: black;
	font-family: var(--global-font);
	font-weight: 700;
}

.reg_content .page404 h3 {
	text-align: center;
}

.contact .reg_content h3 {
	color: #000;
}

.p404 .reg_contentTop,
.p404 .reg_content_info,
.p404 .reg_contentBot {
	display: none;
}

.p404 .reg_content h1.titre {
	padding: 20px 15px;
}

.p404 .reg_content h2.sousTitre {
	padding: 5px 15px;
}

.reg_contact {
	margin: 0 auto;
	padding: 0px 0px 0px 0px;
}

.reg_contactL form {
	padding: 25px 0;
}

.formStd {
	width: 100%;
}

.formStd fieldset {
	margin: 0px;
	border: 0px;
}

.subStd {
	display: block;
	background: #F2B579;
	/* #color */
	padding: 5px 20px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: #FFF;
	font-family: var(--global-font);
}

.formStd input.textStd {
	height: 35px;
	width: 100%;
	background: #e8e9e9;
	color: #6c6b6b;
	border: none;
	text-indent: 10px;
	font-size: 14px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-family: var(--global-font);
}

.formStd textarea.areaStd {
	width: 100%;
	background: #e8e9e9;
	color: #6c6b6b;
	border: none;
	font-size: 14px;
	text-indent: 10px;
	padding: 5px 0 0 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-family: var(--global-font);
	resize: none;
	min-height: 150px;
}

.blocAcc {
	width: 85%;
	margin: 0 auto;
}

.blocAcc a {
	display: block;
	color: #FFF;
	font-size: 26px;
	font-family: var(--global-font);
	font-weight: 700;
}

.bloc50 {
	width: 50%;
	float: left;
	padding: 0 0 30px 0;
}

.bloc100 {
	width: 70%;
	margin: 0 auto;
	padding: 20px 0 0;
}

.bloc50 img,
.bloc100 img {
	display: block;
	width: 200px;
	padding: 25px 0 0 0;
}

.bloc50 h3,
.bloc100 h3 {
	display: block;
	width: 100%;
	padding: 0 0 15px 0;
}

.bloc50 .texte,
.bloc100 .texte {
	font-style: italic;
}

.bloc50Pad {
	padding: 20px;
}

.mid {
	display: block;
	width: 100%;
}

.mid h3,
.mid span {
	display: block;
	float: left;
}

.mid span {
	font-size: 16px;
	padding: 26px 0 0 10px;
}

/**************** LA CARTE *****************/

.la-carte .contentMenu.one {
	background: #1f1f1f;
	color: white;
}

.la-carte .contentMenu h3 {
	font-family: var(--global-font);
	font-weight: 700;
	font-size: 26px;
	text-transform: uppercase;
	color: #FFF;
}

.la-carte .contentMenu.two h3 {
	color: #000;
}

.la-carte .contentMenu p {
	font-size: 20px;
}

.la-carte .contentMenu.two {
	background: #FFF;
}

.la-carte .blocCarteTop h3 {
	font-size: 25px;
}

.la-carte .blocCarteTop p {
	font-size: 15px;
}

.la-carte .blocMenu {
	width: 95%;
	margin: 0 auto;
	padding: 25px 0;
}

.la-carte .contentMenu.one .blocImageMenu {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.menu1.jpg") no-repeat scroll center center;
	background-size: cover;
	height: 559px;
	width: 40%;
	display: block;
}

.la-carte .contentMenu.two .blocImageMenu {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.menu2.jpg") no-repeat scroll center center;
	background-size: cover;
	height: 559px;
	width: 40%;
	display: block;
}

.la-carte .blocTexteMenu.flol {
	width: 60%;
}

.la-carte .blocTexteMenu.flol .menuP {
	text-align: center;
	font-size: 18px;
}

.la-carte .menuh3 {
	text-align: center;
}

.la-carte .menuh4 {
	text-align: center;
}

.la-carte .blocTexteMenu .blocContentTexte hr,
.la-carte .blocTexteMenu .blocContentTexte hr.white {
	margin: 10px auto;
	width: 30%;
	border: none;
	height: 1px;
	background: #000;
}

.la-carte .blocTexteMenu .blocContentTexte hr.white {
	background: #FFF;
}

.la-carte .blocTitreBot {
	background: rgba(0, 0, 0, 0) url("/imgs/bg.aubergedelabrie-carte.jpg") no-repeat scroll center center /cover;
	border-top: solid 1px #262626;
	padding: 15px 0;
}

.la-carte .blocContentTexte {
	padding: 40px 20px;
}

.la-carte .menuRow {
	padding: 15px 0;
}

.la-carte .menuRow h4 {
	float: left;
	padding: 0px 10px 0px 0px;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: normal;
}

.la-carte .menuRow p {
	float: left;
	margin: 0px;
	font-size: 18px;
	line-height: 26px;
	color: #828282;
}

.la-carte .menuRow span {
	font-family: var(--global-font);
	font-weight: 700;
	color: #000;
}

.la-carte .reg_content.blocContentCarte {
	padding: 50px 0px;
	margin: 0 auto;
	width: 85%;
}

.la-carte .blocCarte {
	padding: 10px 0px;
}

.la-carte .blocCarte .blocImageCarte {
	width: 30%;
	min-height: 370px;
	-moz-background-size: cover !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
}

.la-carte .blocCarte .blocTexteCarte {
	width: 70%;
}

.la-carte .blocTitreBot>h2 {
	font-size: 3em;
	font-family: var(--global-font);
	font-weight: 700;
	padding-bottom: 10px;
	text-align: center;
}

.la-carte .blocTitreBot>p {
	font-size: 2em;
	text-align: center;
	margin: 5px 0;
}

.la-carte .reg_content .blocTexteCarte h3 {
	font-size: 36px;
	color: #262626;
	padding: 15px 0 5px 0;
	font-family: var(--global-font);
	font-weight: 700;
}

.la-carte .blocTextePadL {
	padding: 0 0 0 30px;
}

.la-carte .blocTextePadR {
	padding: 0 30px 0 0;
}

.la-carte .blocTextBordL {
	padding: 0 0 0 30px;
	border-left: solid 2px #e1e1e1;
}

.la-carte .blocTextBordR {
	padding: 0 30px 0 0;
	border-right: solid 2px #e1e1e1;
}

/************* VENTE A EMPORTER ************/

.ventaemporter-infos {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.ventaemporter-infos i {
	padding: 0 50px 0 0;
	font-size: 4em;
}

.ventaemporter-infos h2 {
	font-size: 1.5em;
}

.vente-a-emporter .la-carte .reg_content.blocContentCarte {
	padding: 15px 0;
}

.reg_content.blocContentCarte .venteaemporter-list-element h3 {
	margin: 50px 0 25px 0;
	padding: 10px 25px;
	background-color: #313131;
	color: #fff;
}

.vente-a-emporter .btnStd {
	display: table;
}

.vente-gros header {
	background-color: #313131;
	margin: 50px 0 45px 0;
}

.vente-gros header h1 {
	font-size: 2.5em;
	color: #fff;
	padding: 15px 0;
	display: block;
	width: 100%;
	text-transform: uppercase;
	text-align: center;
}

.commande-telephone h1 {
	text-align: center;
	font-size: 2.5em;
	padding: 0 0 25px 0;
}

.commande-telephone .component-global-list article {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 50px 0 0 0;
}

/* GLOBAL - LIST */
.component-global-list {
	margin: 15px 50px;
}

.component-global-list article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2em;
	margin: 15px 0;
}

.component-global-list article h2 {
	font-size: 1.5em;

}

.component-global-list article h3 {
	font-size: 1.4em;
	color: #828282;
	padding-left: 15px;
}


/**************** MENTIONS *****************/

.mentionsCont {
	width: 80%;
	margin: 0 auto;
	padding: 50px 0;
}

.mentionsLeg {
	padding: 10px 0;
}

.mentionsLeg h3 {
	color: #000000;
	display: block;
	font-weight: 600;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	float: left;
	width: 35%;
	line-height: 16px;
}

.mentionsLeg h4 {
	color: #000000;
	display: block;
	font-size: 16px;
	font-weight: normal;
	text-align: justify;
	float: left;
	font-weight: 400;
	width: 65%;
}


/**************** BON-CADEAUX *****************/

.blocCadeaux {
	width: 31.33333333%;
	margin: 0 1%;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.blocCadeaux .blocCadeauContent {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.blocCadeaux:hover .blocCadeauContent {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	background: #F2B579;
}

.cad50 {
	width: 65%;
	margin: 0 auto;
}

.cad50 .blocCadeaux {
	width: 48%;
	margin: 0 1%;
}

.bons-cadeaux .bgParalax.bgIntro {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.bons-cadeaux.jpg") no-repeat scroll center center;
	height: 840px;
	width: 100%;
}

.bons-cadeaux .bgIntro .bloc_content {
	width: 95%;
	margin: 0 auto;
	padding: 15px 0px;
}

.bons-cadeaux .blocCadeauContent {
	background-color: #ebebeb;
	min-height: 330px;
}

.bons-cadeaux .ContentBloc {
	padding: 15px 0px;
}

.bons-cadeaux .blocPad {
	padding: 25px;
}

.bons-cadeaux .blocCadeauxTop {
	background-color: #FFFFFF;
	min-height: 350px;
}

.bons-cadeaux .blocCadeauxTop h3 {
	text-transform: uppercase;
	font-size: 20px;
	font-family: var(--global-font);
	font-weight: 700;
	text-align: center;
	padding: 30px 5px;
	color: #000000;
}

.bons-cadeaux .blocCadeauxTop h4 {
	text-align: center;
	font-size: 24px;
	font-family: var(--global-font);
}

.bons-cadeaux .blocCadeauxTop p {
	color: #a0a0a0;
	text-align: center;
	margin: 0px;
	font-size: 18px;
	padding: 30px 10px;
}

.bons-cadeaux .blocCadeauxBot h3 {
	text-align: center;
	padding: 25px 0 50px 0;
	font-size: 50px;
	color: #000;
}


/**************** CONTACT *****************/

.contact .bgParalax.bgIntro {
	background: rgba(0, 0, 0, 0) url("/imgs/img.aubergedelabrie.contact.jpg") no-repeat scroll center center;
	height: 840px;
	width: 100%;
}

.contact .texteContact {
	display: block;
	padding: 35px 15px;
	background-color: #F4F4F4;
}

.contact .padContact {
	padding: 0 15px 45px 15px;
}

.contact .texteContact i {
	font-size: 40px;
	padding: 0px 15px;
}

.contact .fa.fa-clock-o {
	font-size: 50px;
	padding: 2% 15px;
}

.contact .texteContact.phone p {
	font-family: var(--global-font);
	font-weight: 700;
	font-size: 34px;
}

.contact .texteContact p {
	font-size: 20px;
	margin: 0px;
	line-height: 25px;
}

.contact .bgContact {
	background: url('/imgs/img.aubergedelabrie-home10.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	min-height: 450px;
}

.bloc_contactMid {
	background-color: #F4F4F4;
	padding: 40px 0px;
}

.contact .imgInfosContact {
	width: 30%;
}

.contact .reg_contentMid {
	padding: 0;
}

.contact .bloc_contactTop {
	width: 80%;
	margin: 0 auto;
}

.contact .contactMid_Top h2 {
	padding: 15px 0px 25px 0px;
	text-align: center;
}

.contact .contactMid_Bot span {
	color: #a0a0a0;
}

.contact .imgInfosContact.width50.flol>div {
	margin: 0 auto;
	display: block;
	padding: 6% 0;
}

.contact .imgInfosContact.width50.flol img {
	width: 45%;
	display: block;
	margin: 0px auto;
}

.contact .texteInfosContact {
	border: 1px solid black;
	margin: 0 auto;
	padding: 15px 45px;
	font-size: 18px;
}

.contactMid_Top.reg_seo {
	padding: 0px 0 30px 0;
}

.contactMid_Bot {
	width: 70%;
	margin: 0 auto;
	border: solid 1px #959595;
}

.contactMid_BotPad {
	padding: 50px;
}

.contactMid_BotL {
	float: left;
	width: 20%;
}

.contactMid_BotR {
	float: right;
	width: 80%;
}

.contactMid_Bot p {
	margin: 0px;
	font-size: 20px;
	padding: 0 0 0 40px;
}

.contactMid_Bot p span {
	color: #a0a0a0;
	font-family: var(--global-font);
	font-weight: 700;
}

.contactMid_BotL span {
	display: block;
	margin: auto;
	width: 150px;
	height: 150px;
	background: url('/imgs/img.aubergedelabrie-logo-infos.jpg') 0 0 no-repeat;
	-moz-border-radius: 90px;
	-webkit-border-radius: 90px;
	border-radius: 90px;
}

/***********
 * CUSTOM
 */

@media screen and (max-width: 1200px) {
	.reg_topGauche a.tel {
		text-align: center;
	}

	.reg_topGauche .fa.fa-phone {
		display: none;
	}

	.reg_topGauche a.flol {
		float: none;
		width: 200px;
		padding: 0px;
		margin: 0 auto;
	}

	.contentMenuTop a {
		padding: 0 17px;
		font-size: 24px;
	}

	.menu_phone.flol {
		padding: 10px 0 0 0;
		width: 100%;
		float: none;
	}

	.contact .bloc_contactTop {
		width: 95%;
	}

	.la-carte .contentMenu.one .blocImageMenu,
	.la-carte .contentMenu.two .blocImageMenu {
		height: 720px;
	}
}

/***********
 * TABLETTE PAYSAGE
 */

@media screen and (max-width: 1060px) {
	.tdDroite {
		display: none;
	}

	.blocAccueil .bgBack h4 {
		font-size: 12px;
	}

	.homesSlide .illustration img {
		max-width: 60%;
	}

	.reg_tableStd td.tdMid {
		background: url('/imgs/bg.homeSlide.png') left bottom no-repeat;
	}

	.reg_tableStd span.infos .titre {
		font-size: 26px;
	}

	.homesSlide .slides span.infos span.texte {
		font-size: 14px;
	}

	.reg_sMenuCont,
	.reg_listeDr {
		float: none;
		width: 100%;
	}

	.reg_topGauche,
	.reg_topDroite {
		float: none;
		margin: 0 auto;
		display: table;
		width: auto;
	}

	.reg_content .bloc50 .texte {
		padding: 190px 15px 0 15px;
	}

	.bloc50 h3,
	.bloc100 h3 {
		padding: 0 0 5px;
	}

	.contentMenuTop {
		padding: 20px 0;
	}

	.menu_phone {
		padding: 0px;
	}

	.reg_content_info h3 {
		font-size: 24px;
	}

	.reg_contentBlocTexte {
		width: 100%;
		float: none;
	}

	.bons-cadeaux .blocCadeaux {
		margin: 1%;
		width: 100%;
	}

	.bons-cadeaux .blocCadeauxTop {
		min-height: 200px;
	}

	.bons-cadeaux .cad50 {
		width: 100%;
	}

	.contact .bloc_contactTop {
		width: 95%;
	}

	.contact .fa.fa-clock-o {
		float: none;
		display: block;
		text-align: center;
	}

	.contact .texteContact.horaire {
		padding: 20px 15px;
	}

	.botTab .botCell {
		width: 100%;
	}

	.contact .texteContact p {
		text-align: center;
	}

	.contact .padContact {
		padding: 0 15px 16px;
	}

	.la-carte .contentMenu.one .blocImageMenu,
	.la-carte .contentMenu.two .blocImageMenu {
		height: 559px;
	}

	.contentMenuTop a {
		font-size: 23px;
	}
}

/***********
 * TABLETTE PORTRAIT 
 */
@media screen and (max-width: 1005px) {
	.reg_tableStd span.infos .titre {
		font-size: 22px;
	}

	.reg_illusprod a {
		width: 100%;
		float: none;
	}

	.blocAccueil .reg_contentBloc.flol {
		width: 100%;
		margin-top: 10px;
		float: none;
	}

	.blocAccueil .bgBack h4 {
		font-size: 14px;
	}

	.bloc100,
	.bloc50 {
		float: none;
		width: 100%;
	}

	.reg_content .texte {
		padding: 190px 15px 15px 15px;
		background-position: center top;
	}

	.blocAcc {
		width: 600px;
	}

	.blocAccueil {
		padding: 0 0 20px 0;
	}

	.padSep {
		margin: 0 5px 10px 5px;
	}

	.blocAccueil .bgBack h4 {
		font-size: 12px
	}

	.reg_contentTop_contact,
	.reg_contentTop_bons-cadeaux,
	.reg_contentTop_accueil,
	.reg_contentTop_la-carte {
		min-height: 550px;
	}

	.contactMid_Bot {
		width: 90%;
	}

	.contactMid_BotPad {
		padding: 30px;
	}

	.la-carte .blocTexteMenu.flol {
		width: 100%;
	}

	.la-carte .blocImageMenu {
		display: none;
	}

	.contact .bloc_contactTop {
		width: 95%;
	}

	.la-carte .contentMenu.one .blocImageMenu,
	.la-carte .contentMenu.two .blocImageMenu {
		width: 100%;
	}

	.reg_seo p {
		font-size: 1.2em;
	}
}


/***********
 * SMARTPHONE PAYSAGE
 */
@media screen and (max-width: 640px) {

	.top_title,
	h2.p404 {
		font-size: 30px;
	}

	.contact .contactMid_Top h2 {
		font-size: 34px;
	}

	.reg_content h3 {
		font-size: 22px;
	}

	.reg_content_info h3 {
		font-size: 18px;
	}

	.reg_content h1.titre {
		font-size: 26px;
		padding: 20px 0 10px 0;
	}

	.reg_content h2.sousTitre {
		font-size: 14px;
	}

	.slides-container .txt h3 {
		font-size: 40px;
	}

	.slides-container .txt h4 {
		font-size: 30px;
	}

	.reg_contentBloc {
		float: none;
		width: 100%;
	}

	.reg_tableStd .infos {
		float: none;
		width: 100%;
	}

	.reg_tableStd td.tdMid a.linkSlide {
		padding: 0px;
	}

	.reg_topGauche,
	.reg_topDroite,
	.reg_topDroite .reg_encartNumBack {
		float: none;
		display: table;
		margin: 0 auto;
	}

	.homesSlide .illustration {
		float: none;
		width: 100%;
	}

	.reg_tableStd .infos .btnStd.flor {
		float: none;
	}

	.homesSlide .slides span.infos span.texte {
		width: 100%;
	}

	.contentMenuTop a {
		padding: 5px 10px;
	}

	.refCarousel img {
		width: 50%;
		padding: 0px;
	}

	.reg_contentBot .botFooterGauche,
	.reg_contentBot .botFooterDroite {
		font-size: 11px;
		text-align: center;
		float: none;
	}

	.reg_contactL,
	.reg_contactR {
		float: none;
		width: 100%;
	}

	.reg_seo {
		width: 95%;
		padding: 20px 0;
	}

	.reg_contentBot .botFooterGauche,
	.reg_contentBot .botFooterDroite {
		padding: 10px 0 10px;
	}

	.blocActu .bgBack h3 {
		font-size: 20px;
	}

	.blocActu .bgBack h4 {
		font-size: 12px;
	}

	.blocAccueil .bgBack h4 {
		font-size: 12px;
	}

	.contentMenuTop a {
		float: none;
		width: 100%;
		font-size: 18px;
		margin: 0px;
		text-align: center;
	}

	.contentMenuTop {
		padding: 0px;
	}

	.contentMenuTop a.home {
		display: none;
	}

	.blocAccueil .reg_contentBloc {
		padding: 0 0 10px 0;
	}

	.blocAccueil a,
	.blocAccueil .bloc {
		border: none;
	}

	.blocAcc {
		width: 100%;
	}

	.blocAcc a {
		width: 75%;
		float: none;
		margin: 0 auto 5px auto;
	}

	.reg_contentMid {
		width: 100%;
	}

	.reg_contentBlocTexte.width40.flol,
	.reg_contentBlocTexte.width60.flol,
	.blocTexteMenu.flol,
	.blocImageMenu.flol,
	.la-carte .blocCarte .blocImageCarte,
	.la-carte .blocCarte .blocTexteCarte.flol,
	.blocCadeaux.flol {
		float: none;
		width: 100%;
	}

	.la-carte .contentMenu.one .blocImageMenu,
	.la-carte .blocTexteMenu.flol {
		width: 100%;
	}

	.reg_contentBloc.width40.flol.imgTwo,
	.la-carte .contentMenu.two .blocImageMenu {
		display: none;
	}

	#thumbnail-slider {
		display: none;
	}

	.la-carte .blocTextePadL,
	.la-carte .blocTextePadR {
		padding: 0px;
	}

	.pad50tb {
		padding: 30px 0;
	}

	.la-carte .reg_content .blocTexteCarte {
		padding: 25px 0 0 0;
	}

	.contact .flol.width50 {
		float: none;
		width: 100%;
	}

	.contactMid_BotL {
		display: none;
	}

	.contactMid_BotPad {
		padding: 20px;
	}

	.contactMid_Bot p {
		padding: 0px;
	}

	.contactMid_BotR {
		float: none;
		width: 100%;
	}

	.cad50 {
		width: 100%;
	}

	.contentBotLien .BotP {
		padding: 0 10px;
	}

	.contact .fa.fa-clock-o {
		float: none;
		display: block;
		text-align: center;
	}

	.contact .textContact {
		padding: 25px 15px;
	}

	.botTab .botCell {
		width: 100%;
	}

	.contact .texteContact p {
		text-align: center;
	}

	.contact .padContact {
		padding: 0 15px 29px;
	}

	.commande-telephone h3 {
		padding-left: 0;
		padding-top: 5px;
		text-align: center;
	}

	.component-global-list article h2 {
		font-size: 1.3em;
	}
}

/***********
 * SMARTPHONE PORTRAIT
 */
@media screen and (max-width: 360px) {

	.contact .texteContact i {
		display: block;
		text-align: center;
		float: none;
	}

	.contact .texteContact p {
		padding: 12px 0;
		text-align: center;
	}

	.contact .fa.fa-clock-o {
		float: none;
	}

	.contact .textContact {
		padding: 25px 15px;
	}

}