/*-------------------------------------------------*/
/* =  Init CSS
/*-------------------------------------------------*/
body,
html {
  padding: 0;
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  text-decoration: none;
  outline: none;
  color:#fff;	
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color:#fff;	
}
figure {
  padding: 0;
  margin: 0;
}
img {
  border: 0;
}

.container-fluid {
	padding:0;
}
.row {
	margin-left:0;
	margin-right:0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-right: 15px;
  padding-left: 0px;
}
.col-xs-1:first-child, .col-sm-1:first-child, .col-md-1:first-child, .col-lg-1:first-child, .col-xs-2:first-child, .col-sm-2:first-child, .col-md-2:first-child, .col-lg-2:first-child, .col-xs-3:first-child, .col-sm-3:first-child, .col-md-3:first-child, .col-lg-3:first-child, .col-xs-4:first-child, .col-sm-4:first-child, .col-md-4:first-child, .col-lg-4:first-child, .col-xs-5:first-child, .col-sm-5:first-child, .col-md-5:first-child, .col-lg-5:first-child, .col-xs-6:first-child, .col-sm-6:first-child, .col-md-6:first-child, .col-lg-6:first-child, .col-xs-7:first-child, .col-sm-7:first-child, .col-md-7:first-child, .col-lg-7:first-child, .col-xs-8:first-child, .col-sm-8:first-child, .col-md-8:first-child, .col-lg-8:first-child, .col-xs-9:first-child, .col-sm-9:first-child, .col-md-9:first-child, .col-lg-9:first-child, .col-xs-10:first-child, .col-sm-10:first-child, .col-md-10:first-child, .col-lg-10:first-child, .col-xs-11:first-child, .col-sm-11:first-child, .col-md-11:first-child, .col-lg-11:first-child, .col-xs-12:first-child, .col-sm-12:first-child, .col-md-12:first-child, .col-lg-12 {
  padding-left: 0px;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
	margin-left:0;
	margin-right:0;
}
.help-block {
	margin:0;
}


.sx-spinner-bar {
	position: fixed;
	z-index: 10051;
	width: 100px;
	top: 40%;
	left: 50%;
	margin-left: -55px;
	text-align: center;	
	-webkit-backface-visibility: hidden;
	transition: all 0.17s ease-in-out;
	-moz-transition: all 0.17s ease-in-out;
	-webkit-transition: all 0.17s ease-in-out;
	-o-transition: all 0.17s ease-in-out;
}
.sx-spinner-bar > div {
  margin: 0 5px;
  width: 18px;
  height: 18px;
  background: #eee;
  border-radius: 100% !important;
  display: inline-block;
  -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
  animation: bounceDelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.sx-spinner-bar .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.sx-spinner-bar .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}


/***
Sx Basic Animations
***/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(15px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(15px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation: fadeInUp .5s;
  animation: fadeInUp .5s;
}

@-webkit-keyframes bounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceDelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}



/*-------------------------------------------------*/
/* =  General code
/*-------------------------------------------------*/

html{
    height:100%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:18px;
	color:#303030;
	background-color:#FFF;
	background-repeat:repeat-x;
	background-position:top;
    height: 100%;
    opacity: 0;
}

body.active {
   opacity: 1;
}

/*#container {
    height: 100%;
	width:100%;
	background:#FC0;*/
   /* opacity: 0;
    transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -webkit-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
}*/
#container {
    background: url("/fermes_louison/img/bg.png") #ffffff;
    background-position: top center;
    background-repeat: repeat-x;
    height: auto;
    opacity: 0;
    transition: all 0.17s ease-in-out 0s;
    width: 100%;
}
#index #container {
	height: 100%;
	}

#container.active {
   opacity: 1;
}

.wrapper {
	width:1065px;
	margin:0 auto;   
}
.wrapper2 {
	width:1065px;
	margin:0 auto;   
}
.sx-spinner-bar > div {
  background: #c81a33;
}

.sx_galleria {
	width:100%;
	height:400px;
	margin-top:10px;
}
.gmap3 {
    width: 100%;
    height: 420px;
}

.div-center {
	text-align:center;
}

.div-right {
	text-align:right;	
}

.alert {
  border: 0;
  -webkit-border-radius: reset;
  -moz-border-radius: reset;
  border-radius: reset;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 18px 24px;
  margin-bottom: 15px;
  display:none;
}
.alert .close {
  top: 2px;
  right: 0;
  color: #343434;
  opacity: 100;
  filter: alpha(opacity=10000);
  font-size: 16px;
  line-height: 16px;
}
.alert.error {
  background: #ffe9e9;
  color: #ff3f3f;
}
.alert.success {
  background: #ebf6e0;
  color: #609e21;
}
.alert.warning {
  background: #fbfadd;
  color: #a7a33e;
}
.alert.info {
  background: #e9f7fe;
  color: #4683a2;
}

.nicescroll-rails {
    z-index: 999999!important;
}

/*-------------------------------------------------*/
/* =  Slider
/*-------------------------------------------------*/

.nivoSlider {
	max-height:520px;
}

/*-------------------------------------------------*/
/* =  Header
/*-------------------------------------------------*/


header {
	position:relative;	
}

.header_right {
    left: 0;
    position: absolute;
    right: 0;
    z-index: 9;
}

.header_top {
/*	background-image:url(/portail/img/bg_top.jpg);
	background-position:center;
	background-repeat:repeat-x;*/
	height:58px;
	z-index:9999;	
	position:relative;
}

.header_right_bg {
	background-image:url(/fermes_louison/img/bg_carte_viste.jpg);
	background-position:right;
	background-repeat:no-repeat;
	width:399px;
	height:514px;
	padding-right:0!important;
	float:right;	
}

a.logo {
    display: block;
	margin:0 auto 25px;
	background-image:url(/fermes_louison/img/logo.png);
	background-position:center;
	background-repeat:no-repeat;
	width:339px;
	height:140px;
}
.logo2
{
	margin:10px 0px;
	  padding-top: 15px;
}

.header_right_contenu {
	padding:55px 19px 36px 51px;
	font-size:16px;
    color:#fff;
	text-align:center;
	line-height:22px;	
}


.header_right .slogan{
    font-size:25px;
	margin:0 23px;
	line-height:30px;
	color:#ffca00;
	font-family:'DancingScript-Regular';
}

.header_right .coordonnees{
	border-top:1px solid #9d9c9c;
	margin-top: 30px;
    padding-top: 30px;
	padding-bottom: 20px;
	font-family: 'open_sansregular';
	color:#fff;
}
header .coordonnees span{
	font-size:25px;
	line-height:55px;
	}


/*-------------------------------------------------*/
/* =  Caption options
/*-------------------------------------------------*/

/*.carousel-indicators {
	z-index: 1;
}
*/
.carousel-caption {
    bottom: 15px;
    left:auto;
    padding-bottom: 0;
    padding-top: 0;
    right: auto;
    text-shadow: none;
	text-align:left;
	width:50%;
}


.carousel-caption h3 , .carousel-caption h1{
    font-family: 'open_sansregular';
    font-size: 18px;
    margin-top: 0;
	background: url("/fermes_louison/img/bg_slogon1.png") repeat;
    padding: 7px 15px;
	text-transform: uppercase;
}
#contenu .carousel-caption h1{
	 font-size: 28px;
	 text-transform:inherit;
}
.carousel-caption p {
    background: url("/fermes_louison/img/bg_slogon2.png") repeat;
    padding: 5px 15px;
	font-family: 'open_sansregular';
    font-size: 16px;
}


/*-------------------------------------------------*/
/* =  Content Site
/*-------------------------------------------------*/



#sx-content h1 a{
   color:#c81a33;
}

.liste_contenu{
	padding:20px 0;
}
.texte{
	margin:20px 0;
}

.texte_cms{
	padding-bottom:25px;
	text-align:justify;
	color:#303030;
	font-size:14px;
	padding-top: 20px;
	font-family: 'open_sansregular';
}

.descriptif_cms{
	padding-bottom:15px;
	text-align:justify;
	padding-top:15px;
	
}

.logo_pieces img {
	 max-width: 100%;
    width: 100%;
	}

#sx-content {
	min-height:400px;
	margin-bottom:12px;
	
}

.texte_cms a {
	color:#c81a33;
}

.bloc_border {
    border-bottom: 1px solid #c81a33;
    margin-bottom: 30px;
    margin-left: 2px;
    padding-top: 0;
    width: 10.4%;
}

.chapeau_cms, .texte_parm_actus {
	font-size:19px;
	line-height:20px;
	letter-spacing:1px;
	margin-top:40px;
	margin-bottom:30px;
}

#sx-content h3 {
    color:#c81a33;
    font-family: 'open_sanscondensed_light';
    font-size: 28px;
    line-height: 35px;
    text-transform: uppercase;
	margin:30px 0 30px;
	letter-spacing:1px;
}
#sx-content .texte_cms h3 {
	line-height: 28px;
    margin: 0 0 20px;
	text-transform:inherit;
}
.lien > a {
    border: 1px solid #be0417;
    color: #be0417;
    font-size: 12px;
    line-height: 14px;
    padding: 5px 30px;
    width: 122px;
}
.row.bloc_home{
	border-bottom:1px solid #303030;
	padding-bottom: 22px;
	padding-top:30px;
	}
.bloc_home.last{
	border-bottom:none;
	}
/*-------------------------------------------------*/
/* =  Produit
/*-------------------------------------------------*/

.produit {
	background-color:#303030;
	padding:10px 23px 30px 10px;
}

.produit .padding {
	padding-right:0;
	padding-left:38px;	
}

.produit .padding-right {
	padding-right:0!important;
}

.produit .chapeau_cms {
    color: #fff;
    font-family: "open_sansbold";
    font-size: 19px;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 7px;
}

.produit .texte_cms {
    color: #fff;
    font-size: 14px;
    min-height: 66px;
    line-height: 16px;
    margin-bottom: 10px;
    padding-bottom: 0;
    text-align: left;
}

/*.produit img{
	max-width:100%;
	display:block;	
}*/

.produit .suite a{
	font-size:12px;
	color:#c81a33;
	text-align:right;
	display: block;
}

/*-------------------------------------------------*/
/* =  Actus
/*-------------------------------------------------*/

.bloc_actus h5{
	margin-bottom:10px;
	 font-family: 'open_sansbold';
	 font-size:17px;
	  color: #c81a33;

}

.bloc_actus .actus-row{
	margin-top:13px;
}
.padding-0 {
	padding-right:0;
	padding-left:40px;
}

/*.bloc_actus .actus-row{
	margin:0 90px 20px;
}
.bloc_actus .actus-row:first-child{
	margin-left:0;
	min-height:330px;
}*/
.bloc_actus .actus-txt, #results .actus-txt  {
    font-size: 14px;
    height: 65px;
    line-height: 20px;
    overflow: hidden;
}
#results .actus-txt  {
    margin-top:12px;
}
.actus-suite {
    display: block;
    padding-top: 15px;
}
.bloc_actus .actus-suite a,
a.actus-retour{
	border: 1px solid #be0417;
    color: #c81a33;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    width: 121px;
	margin-bottom:20px;
	}

.actus-liste {
	margin-top:25px;
	width:100%;
	background-color:#c81a33;
	padding:21px;
	
	}

.actus-liste a {
	display:block;
	background: url("/fermes_louison/img/icon.png") no-repeat;
	background-position:left;
	height:46px;

	
	}
	
.actus-liste span {
	color:#fff;
	font-size:17px;
	padding-left:85px;
	font-family: 'open_sansbold';
	line-height: 46px;
	
	
	}
	
.bloc_actus .date{
	color:#bfbfbf;
	font-size:14px;
	padding-left:5px;
	font-family: 'open_sansregular';
	margin:8px 0 3px;
}

.bloc_actus img{
	max-width:100%;
	display:block;	
}


.flex-direction-nav a::before {
    background-color: #16140d;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    height: 37px;
    line-height: 37px;
    opacity: 0.8;
    text-align: center;
    width: 37px;
}





/*-------------------------------------------------*/
/* =  Footer
/*-------------------------------------------------*/
footer {
	font-size:14px;
	line-height:18px;
	color:#fff;
	margin:0;
	padding-top:25px;
	background-color:#3d3d3d;
	font-family: 'Calibri';
	
}

footer .coordonnees, footer .horaires{
	font-size:15px;
	
}

footer h4{
	margin-top:0;
	font-weight:bold;
	margin-bottom:5px;
}

footer .icon_contact {
    padding-top:18px;
}

footer .icon_contact a:hover, footer .icon_contact a:focus {
    color:#fff;
}

footer .contact {
    background: url("/fermes_louison/img/contact.png") no-repeat scroll left center;
    display: block;
    height: 16px;
}

footer .localisation {
    background: url("/fermes_louison/img/maps.png") no-repeat scroll left center;
    display: block;
    height: 19px;
}

footer .contact span, footer .localisation span {
	padding-left:20px;
	
}

.sx-menu-footer li {
	display: inline-block;
    float: inherit;
    padding: 0 14px;
}

.sx-menu-footer li {
	position:relative;
}
.sx-menu-footer li a:before {
    border-left: 1px solid #fff;
    content: " ";
    height: 15px;
    left: 0;
    position: absolute;
    top: 4px;
}

.sx-menu-footer li:first-child a:before {
    border-left: none;

}


.sx-menu-footer a {
	color:#908f8f;	
}

.sx-copyright {
	padding:10px 0;
	color:#fff;
	display:inline-block;
	
}
.sx-copyright a , .sx-copyright a:hover{
	color:#7b7f80;
	
}

.border {
	border-top:1px solid #5a5a5a;
	border-bottom:1px solid #5a5a5a;
	padding:20px 0;
	margin-top:23px;
	
}


#menu_footer li a{
	color:#fff;
	font-size:14px;
	line-height:18px;
	letter-spacing:1px;
}
#footer_bottom{
	line-height:40px;
	display: inline-block;
}
.bloc_footer_bottom{
	background-color:#1f1f1f;
	color:#ffffff;
}
footer ul.sx-social-icons{
	text-align:left;
	padding:10px 0;
}
footer .coordonnees{
	color:#ffffff;
	font-size:14px;
	
}
.bloc_coord_titre{
	color:#ffffff;
	text-transform:uppercase;
	margin-bottom:25px;
	font-size:18px;
}

footer .coordonnees, footer .horaires {
		padding-right:0;
		
	}


/*-------------------------------------------------*/
/* =  Contact
/*-------------------------------------------------*/

.position {
	position:relative;	
}

.coordonnes {
	position:absolute;
	right:0;
	float:none;	
}

.demande .checkbox-inline {
    font-size: 13px;
    line-height: 15px;
    width: 314px;
}

.sx-form .div-right {
    padding-right: 0;
}

.demande .checkbox input[type="checkbox"], .demande .checkbox-inline input[type="checkbox"] {
    margin-top: 0;
}


.contact-info,
#sx-form  {
	margin-bottom:20px;
}


#sx-form.form-horizontal .form-group {
	margin-left:0;
	margin-right:0;
}
#sx-form .form-control {
	border: 1px solid #e1e1e1;
	border-radius: 2px;
	background-color: #fcfcfc;
	color: #919191;  
	padding: 10px;
	height:auto;
	font-size:12px;
}
.sx-form .form-control:focus {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
 color: #555;
}

.sx-form #sx-captcha {
	width:70%;
}

.sx-form input[type="submit"] {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    background: #c81a33;
    border: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.sx-form input[type="submit"]:hover,
.comment-form input[type="submit"]:hover {
    opacity: 0.8;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 9px 10px;
}

.btn {
    padding: 8px 10px;
}
.btn-info, .btn-info:hover, .btn-info:focus {
    background-color: #c81a33;
    border-color: #c81a33;
    color: #fff;
}

#sx-form .col-sm-6:first-child, .sx-form .col-sm-6:first-child{
	padding-left:0;
}

#sx-form .col-xs-1, #sx-form .col-sm-1, #sx-form .col-md-1, #sx-form .col-lg-1, #sx-form .col-xs-2, #sx-form .col-sm-2, #sx-form .col-md-2, #sx-form .col-lg-2, #sx-form .col-xs-3, #sx-form .col-sm-3, #sx-form .col-md-3, #sx-form .col-lg-3, #sx-form .col-xs-4, #sx-form .col-sm-4, #sx-form .col-md-4, #sx-form .col-lg-4, #sx-form .col-xs-5, #sx-form .col-sm-5, #sx-form .col-md-5, #sx-form .col-lg-5, #sx-form .col-xs-6, #sx-form .col-sm-6, #sx-form .col-md-6, #sx-form .col-lg-6, #sx-form .col-xs-7, #sx-form .col-sm-7, #sx-form .col-md-7, #sx-form .col-lg-7, #sx-form .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, #sx-form .col-md-11, #sx-form .col-lg-11, #sx-form .col-xs-12, #sx-form .col-sm-12, #sx-form .col-md-12, .col-lg-12 {
    padding-left: 15px;
    padding-right: 0;
}


.contact-info{
	padding-left:25px;	
}

.contact-info li {
    font-size: 15px;
    padding: 10px 0 10px 43px;
}

.contact-info li.telephone {
    background: url("/fermes_louison/img/telephone.png") no-repeat scroll 0 50% rgba(0, 0, 0, 0);
}

.contact-info li.address {
    background: url("/fermes_louison/img/marker.png") no-repeat scroll 0 50% rgba(0, 0, 0, 0);
}

.contact-info li.mail {
    background: url("/fermes_louison/img/mail.png") no-repeat scroll 0 50% rgba(0, 0, 0, 0);
}

.contact-info a {
   color:#303030;
}

#sx-form .checkbox-inline {
	 margin-left: 10px;
	
}




/********** | VALIDATION | *****************/
.sx-errblock {
	color:#eb2c06;
    display: block;
	margin:0;
	opacity:0.6;
}
small.sx-errblock {
	position:absolute;
	bottom:0;
	right:5px;
}


/*-------------------------------------------------*/
/* =  Carousel Slider
/*-------------------------------------------------*/

.carousel {
	width:100%; 
	margin:0 auto; 
}
#index .carousel {
	height:100%;
	}
.slider-size {
	height: 514px; 
	background-position:top center;
	background-size:cover;
}
#index .slider-size{
	/*height: 1000px; */
	background-position:top center;
	/*background-size:100% 100%;*/
	background-repeat:no-repeat;
	/*background-attachment:fixed;*/
	min-height:100%;
	
  
  
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
	}
.fill-size {
	width:100%;
	height:100%;
}

.carousel .carousel-inner {
	position: relative;
	height:100%;
}


/* Carousel Fading slide */
.carousel-fade .item {
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.carousel-fade .active.left,
.carousel-fade .active.right {
  left: 0;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
}
.carousel-fade .carousel-control { z-index: 10; }
.carousel-fade .next,
.carousel-fade .prev {
  left: 0;
  z-index: 1;
}

/* Carousel Control */
.carousel-control {
  top: 43%;
  font-size: 48px;
} 

  /* Animation */
  .control-box, a.carousel-control, .carousel-indicators li {
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;   
    /* hardware acceleration will cause Bootstrap carousel controlbox margin error in webkit browsers */
    /* Assigning animation to indicator li will make slides flicker */
   } 

  /* Removing BS background */
  .carousel .control-box { opacity: 0; }
  a.carousel-control.left  { left: 0; background: none; border: 0;}
  a.carousel-control.right { right: 0; background: none; border: 0;}

  /* Hover animation */
  .carousel:hover .control-box { opacity: 1; }
  .carousel:hover a.carousel-control.left { left: 15px; }
  .carousel:hover a.carousel-control.right { right: 15px; }    



/* Carouse Indicator */

.carousel-indicators {
    bottom: 9px;
	left: 53%;
	z-index:100;
}
.carousel-indicators li.active,
.carousel-indicators li {
  border: 0;
  width: 8px;
  height: 8px;
}

.carousel-indicators li {
  background: #666;
  margin: 0;
  
}

.carousel-indicators li.active {
  background: #fff;
  margin: 0;
}



/*-------------------------------------------------*/
/* =  Menu
/*-------------------------------------------------*/
.navbar-default {
    background-color: transparent;
    border: none;
}
.navbar{
	margin:0;
	border:none;
	min-height:56px;
}

.navbar-collapse{
	padding:0;
}
.header_bottom{
	padding-top:74px;
}
.navbar-default .navbar-nav > li{
	position:relative;
	padding:0 7px;
}
.navbar-default .navbar-nav > li > a {
    background-color: transparent;
    color: #232323;
    font-size: 16px;
    position: relative;
	font-family: 'open_sansregular';
	line-height: 17px;
	padding: 22px 8px 15px;
	/*padding:15px 0;*/
	
}

.navbar-default .navbar-nav > li:first-child {
	padding:0 7px 0 0;
}

.navbar-default .navbar-nav > li:last-child {
	padding:0 0 0 7px;
}

.navbar-default .sub-arrow {
	display:none;
	
}

.navbar-default  .navbar-nav > li > a:hover, .navbar-default  .navbar-nav > li > a:focus {
	color:#2b2b2b;
	border: none;
	background-color:transparent;
}
.dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 0;
    padding: 6px 0;
	box-shadow:none;
}
.navbar-default .navbar-nav > .open  > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus{
	background-color:transparent;
}
.navbar-default a:before,.navbar-default li:before {
    background: none repeat scroll 0 0 #f21434;
    color: transparent;
    content: "";
    font-size: 37.2em;
    height: 11px;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    text-shadow: 0 0 transparent;
    top: 100%;
    transform: translateX(-50%);
    transition: all 0.3s ease 0s, color 0.3s ease 0s;
    width: 100%;
}

.navbar-default a.active:before, .navbar-default a:hover:before, .navbar-default a:focus:before,.navbar-default li.active_parent:before {
	opacity: 1;
}

.dropdown-menu a.active:before, .dropdown-menu a:hover:before, .dropdown-menu a:focus:before,.dropdown-menu li.active_parent:before {
	opacity: 0;
}

/*********** <<< Sous menu 1 >>> ***************/
.navbar-nav > li > .dropdown-menu{
	background-color:#262626;
	margin-top:5px!important;
}
.navbar-nav .dropdown-menu > li > a{
	color:#a8a5a5;
	font-size:14px;	
	font-family: 'open_sansregular';
}

.navbar-nav .dropdown-menu > li > a:hover,.navbar-nav .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .dropdown-menu  > .open  > a,  .navbar-default .navbar-nav .dropdown-menu  > .open > a:focus, .navbar-default .navbar-nav .dropdown-menu  > .open > a:hover {
	color:#262626;
	background-color:#fff;
}

/*********** <<< Sous menu 2 >>> ***************/
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu{
	background-color:#262626;
/*	margin-top:0!important;*/
}
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a{
	font-size:14px;	
	font-family: 'open_sansregular';
	line-height:17px;
}
.navbar-nav > li > .dropdown-menu > li.open > .dropdown-menu > li > a:hover, .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus{
	color:#fff;
	background-color:transparent;
}




/*-------------------------------------------------*/
/* =  SX Flexslider 
/*-------------------------------------------------*/
.flexslider{
	margin-bottom:35px;
 	background: transparent;
    border: none;
    border-radius: 0px;
    box-shadow: none;
}
.sx_flexslider .flex-slider .slides li {
	height:500px;
	width:auto;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}

/*.sx_flexslider .flex-slider .slides li {
	height:auto;
	width:auto;
	background-position:center;
	background-repeat:no-repeat;
	background-size:74% auto;
}*/
.sx_flexslider .flex-carousel {
	margin-top:10px;
}
.sx_flexslider .flex-carousel .slides li {
	height:150px;
	width:150px ;
    cursor: pointer;
    display: block;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}
.sx_flexslider .flex-carousel .slides li img {
	height:150px;
	width:150px;
}

.sx_flexslider .flex-carousel .slides li:hover,
.sx_flexslider .flex-carousel .slides li:focus,
.sx_flexslider .flex-carousel .slides li.flex-active-slide {
    opacity: 0.8;	
}

.sx_flexslider .flex-carousel .slides li.flex-active-slide {
    cursor: default;
}

.fancybox{
	display:block;
	height:100%;
	width:100%;
	
}


/*-------------------------------------------------*/
/* =  Produits
/*-------------------------------------------------*/

/*.titre_produit{
	margin:10px 0;
}
.texte_produit{
	font-size:12px;
	margin-bottom:10px
}
.produit-suite a{
	width:120px;
	background-color:#666;
	color:#fff;
	text-align:center;
	display:block;
	line-height:30px;
}
*/
/*-------------------------------------------------*/
/* =  Produits detail
/*-------------------------------------------------*/

/*.titre_detail_produit{
	margin:10px 0;
	font-size:30px;
	font-weight:bold;
}
.texte_detail_produit{
	font-size:12px;
	margin-bottom:10px;
	min-height:350px;
}
.produitdetail-suite{
	float:right;
}
.produitdetail-suite a{
	width:200px;
	background-color:#666;
	color:#fff;
	text-align:center;
	display:block;
	line-height:30px;
}*/

/*-------------------------------------------------*/
/* =  Pagination
/*-------------------------------------------------*/
.paginate{
	text-align:center;
	margin:0 auto;
	width:8%;
}
.paginate li{
	float:left;
	margin-right:5px;
	
}
.paginate li a{
	color:#000;
	width:20px;
	height:20px;
	display:block;
	line-height:21px;
}
.paginate li a:hover, .paginate li a.active{
	color:#fff;
	background-color:#000;
}
#contenu .bloc_texte{
	margin-top:20px;
}
.bloc_texte .texte_cms > ul {
    list-style: inside;
  margin:15px;
}

/* ----------------------------------
Page Tarif
---------------------------------- */

.liste_tarif .col-sm-6{
	padding-bottom:20px;}
.tarif, .first_tarif{
	display:block;
	background-color:#474646;
	padding:5px;
	margin-right:5px;	
	}
.first_tarif{
	background-color:#be0417;
	}
.tarif_content{
	border:	1px solid #fff;
	text-align:center;
    padding-top: 55px;
    padding-bottom: 55px;
    color: #fff;
    font-size: 21.7px;
    line-height: 1.2;
	font-family: 'open_sansregular';
	}
.tarif_content span{
	font-size:65.5px;
	font-family: 'open_sansbold';
	}
.tarif_content span.euro{
	font-size:45px;
}
.border_tarif{
	border-bottom: 1px solid #f1f2f3;
    width: 97px;
	margin:10px auto 40px;
	}
.container_home{
	position:relative;
	display:block;
	height:100%;}
	

.logo_index{
	background-image: url("../img/logo_accueil.png");
    background-position: center top;
    background-repeat: no-repeat;
    height: 168px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
	z-index: 2147483647;
    top: 34%;
    width: 536px;
	}
#sx-content h1, #sx-content h3.title_page, #sx-content h2.chapeau_cms_red {
	font-size:30px;
	line-height:40px;
	color:#c81a33;
	font-family:'DancingScript-Regular'; 
	letter-spacing:1px;
	background-image:url(../img/border_titre.png);
	background-position:left top 4px;
	background-repeat:no-repeat;
	background-color:transparent;
	padding-left:29px;
	margin-top:32px;
	text-transform:inherit;
}
#sx-content h3.title_page {
	margin-top:12px;
}

#sx-content h2.chapeau_cms_red {
	margin-top:12px;
	text-transform:inherit;
	}
span.titre_footer{
	font-weight:bold;
	text-transform:uppercase;
	}
.bg_red {
    background-color: #be0417;
    color: #fff;
    font-size: 21.5px;
    font-weight: bold;
    padding-bottom: 16px;
    padding-top: 16px;
    text-align: center;
    width: 100%;
	margin-top:10px;
	margin-bottom: 35px;
}
.row.bloc_actus{
 	margin-bottom: 20px;
 }
.chap_actu{
	 font-size:17px;
	 margin-bottom:15px;
	 }
.texte_cms.tarifs_page{
	padding-top:17px;
	font-size: 12px;
	}
.row.liste_tarif{
	 padding-right: 19.8%;
	 }
span.num_reservation{
	font-size:21px;
	line-height:35px;
	}
.news_content{
	padding-bottom:30px;
	}
.texte_cms.tarifs_page span {
    line-height: 40px;
}
img#img_slider{
	height: 100%;
	width: 100%;
	}
		
.content-accueil{
	display:none;
	}

.texte_cms.tarifs_page .bold {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: middle;
}

.fancybox-opened {
    z-index: 2147483647!important;
}
.row.footer_bottom.text-center {
    color: #fff;
}

.col_reservation {
    position: relative;
    padding-left: 42px;
    font-size: 18px;
    line-height: 24px;
}
.col_reservation::before{
	position: absolute;
    content: "\f073";
    top: 5px;
    left: 0;
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 30px;
}
.col_reservation a{
	font-weight: 700;
}