/* LIEN DE VALIDATION SITE */
.validation {
    display: none;
}

/* ================================================================================================================= */
/*                                                      GENERAL                                                      */
/* ================================================================================================================= */
/*Import Fonts*/
@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700');


body {
    font-family: 'Work Sans', sans-serif;
    background: #fff;
}
body.index {
    background: #dadada;
}


.btn {
    border-radius: 0;
}
.btn-primary, .btn-info, .btn-secondary {
    color: #fff;
    background-color: #b00a34;
    border-color: #b00a34;
}
aside .btn-primary {
  color: #fff;
  background-color: #b00a34;
  border-color: #b00a34;
}
.btn-primary:hover, .btn-info:hover, .btn-secondary:hover {
    color: #b00a34;
    background-color: #e6e6e6;
    border-color: #e6e6e6;
}

.home_heading::after {
    content: "";
    display: block;
    position: relative;
    background: #000;
    height: 2px;
    width: 150px;
    margin: 24px auto 24px auto;
}
.marginTop5 {
    margin-top:0.5%;
}


/* COULEURS */
.rouge-clair {

}
.rouge {
  color:#b00a34;
}
.prune {
  color: #6c0935;
}


.flottante {
	z-index:1000; position:fixed; margin-left:90%; margin-top:15%;
}

/* ================================================================================================================= */
/*                                                    MENU BURGER                                                    */
/* ================================================================================================================= */
.header__burger input[type=checkbox] {
    display: none;
}
.header__burger { 
    position: absolute;    
    top: 22px;
    left: 32px;
}
.header__burger > span {
    text-transform: none;
    opacity: .5;
    font-weight: 300;
    font-size: 12px;
}
.header__burger input + label {
    height: 20px;
    width: 40px;
    z-index: 5;
    position: fixed;
}
.header__burger input + label span {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 52%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: #b00a34;
    transition: .5s;
}
.header__burger input + label span:first-child {
    top: 0px;
}
.header__burger input + label span:last-child {
    top: 20px;
}
.header__burger label:hover {
    cursor: pointer;
}
.header__burger input:checked + label span {
    opacity: 0;
    top: 50%;
}
.header__burger input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
}
.header__burger input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
}
.header__burger input ~ nav {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: 3;
    transition: .5s;
    transition-delay: .5s;
    overflow: hidden;
    /* display: flex; */
}
.header__burger input ~ nav > ul {
    text-align: center;
    width: 65%;
    margin: auto;
    background: url(/assets/images/bgimg-nav.png) no-repeat center center;
    background-size: contain;
}
.header__burger input ~ nav > ul > li {
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
}
.header__burger input ~ nav > ul > li > a {
    text-decoration: none;
    text-transform: uppercase;
    color: #b00a34;
    font-weight: 700;
    font-family: sans-serif;
    display: block;
    padding: 15px;
    font-size: 25px;
}
.header__burger .badge {
  padding: 0.29em .43em;
  bottom: 3px;
}
.header__burger input ~ nav > ul > li > a:hover {
  background: #b00a34;
  color: #fff;
}

.header__burger input:checked ~ nav {
    height: 100%;
    width: 100%;
    transition-delay: 0s;
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
}
.header__burger input:checked ~ nav > ul > li {
    opacity: 1;
    transition-delay: .5s;
}
/* RESEAUX SOCIAUX */
.header__burger input ~ nav > .reseaux-sociaux {
    position: absolute;
    bottom: 4%;
    left: 4%;
}
.header__burger input ~ nav > .reseaux-sociaux > ul > li {
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
}
.header__burger input:checked ~ nav > .reseaux-sociaux > ul > li {
    opacity: 1;
    transition-delay: .5s;
    padding: 0 15px;
}
.header__burger input:checked ~ nav > .reseaux-sociaux > ul > li > a{
    font-size: 23px;
    color: #6b6a6a;
}
.header__burger input:checked ~ nav > .reseaux-sociaux > ul > li > a:hover{
    color: #b00a34;
}
/* LANGUE */
.header__burger input ~ nav > .langue {
    position: absolute;
    bottom: 4%;
    right: 38%;
}
.header__burger input ~ nav > .langue >  ul {
    display: flex;
}
.header__burger input ~ nav > .langue >  ul > li {
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
}
.header__burger input:checked ~ nav > .langue > ul > li {
    opacity: 1;
    transition-delay: .5s;
    padding: 0 15px;
}
.langue img {
    width: 30px;
}

/* COORDONNES AGENCE */
.coordonnees {
  width: 35vw;
  text-align: center;
  /* margin: auto; */
  border-left: 2px solid #b00a346b;
}
#map_contact {
  height: 50vh !important;
  -webkit-transition-property: height;
  -webkit-transition-duration: .5s;
  -webkit-transition-timing-function: ease-in-out;
  transition-property: height;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}
.coordonnees .map {
  height: 50vh;
  background: #efe6e6;
  margin: auto;
}
.coordonnees .address {
  height: 50vh;
  background: #efe6e6;
  margin: auto;
  display: grid;
  border-bottom: 2px solid #b00a346b;

}
.coordonnees .address ul{
  margin: auto;
}
.coordonnees .btn-primary:hover {
  color: #b00a34;
  background-color: #e6e6e6;
  border-color: #b00a34;
}
.coordonnees .address-logo {
  margin-bottom: 11%;
}
.address-logo img {
  width: 150px;
}

/* MOTEUR DE RECHERCHE TOP DROITE */
.search .moteur-nav {
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
}
.search .moteur-nav {
    opacity: 1;
    transition-delay: .5s;
    padding: 0 15px;
}
.search .moteur-nav {
    position: relative;
    width: 50%;
    margin: auto 0;
    height: 100%;
    background: #b00a34;
    display: flex;
}
.search .container_search{
    margin: auto 0;
}
.moteur-nav .search__form-item:nth-child(n+2) {
    margin-right: 10px;
    margin-bottom: 10px;
    vertical-align: top;
    width: calc(100% / 1 - 4px);
    height: auto;
}
.search .moteur-nav input + label {
    height: 45px;
    width: 100%;
    position: initial;
}
.search .moteur-nav .radio_trans input.css-checkbox[type="radio"]:checked + label.css-label {
    border: 2px solid #fff;
    color: #fff;
    font-size: 17px;
}
.searchr .moteur-nav .plusdecritere a{
    color: #fff;
}
.plusdecritere .btn-default:hover{
    color: #fff;
    background-color: #b00a34;
}

.radio_trans input[type=radio].css-checkbox + label.css-label {
    cursor: pointer;
    display: inline-block;
    padding: 7px;
}
.search {
  display: none;
}
.index .search {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: 100px;
  height: 100px;
  z-index: 9;
}
.search ul {
    top: 18%;
}
.search ul li a i {
  font-size: 40px;
  margin: auto 0;
  color: #b00a34;
}
aside.aside_contact {
  background-color: #393832;
}
aside .form-search-d label.btn,aside .form-search-d label.btn.small {
  border: 1px solid #ddd;
  font-size: .7em;
  width: 100%;
  background-color: transparent;
  margin: 0;
  height: auto;
  color: #fff;
}
aside .form-search-d label.btn.active,aside .form-search-d label.btn:hover {
  background: #b00a34;
  color: #fff;
}
aside .form-search-d .check {
  padding: 5px;
  display: none;
  z-index: 10;
}
aside .form-search-d .txt {
  padding: 5px;
  display: inline-block;
}
aside .search_form .c_type {
  background: transparent;
  height: auto ! important;
  width: 100%;
}
aside .search_form .label {
  float: initial ! important;
  border-bottom: 1px solid #ffffff45;
  width: 100% ! important;
  font-style: italic;
}
.index .radio_trans input.css-checkbox[type="radio"]:checked + label.css-label {
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.search__form-item:nth-child(2), .search__form-item:nth-child(3) {
  background: transparent;
}
aside .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  background: #fff;
}
aside .form-search-d > li {
  width: 50%;
  padding: 4px 6px;
  font-size: 17px;
  text-transform: capitalize;
}
aside .form-group label.active .check::before {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: block;
  height: auto;
  margin: 0 auto;
  width: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: width .3s ease,height .3s ease;
  transition: width .3s ease,height .3s ease;
}
aside .search_form .c_surfacemin,
aside .search_form .c_surfacemax,
aside .search_form .c_prixmin,
aside .search_form .c_prixmax {
  width:calc(100% / 2 - 10px)! important;
}
aside .search__form-item {
  padding: 3% 0;
}
aside .form-search-d {
  margin: 0;
}
/* ================================================================================================================= */
/*                                                        LOGO                                                       */
/* ================================================================================================================= */
.logo-header {
    background: rgba(255,255,255,0.5);
    /* position: fixed; */
}
/* ================================================================================================================= */
/*                                                       HEADER                                                      */
/* ================================================================================================================= */
.bloc-index .container-fluid {
    padding-right: 6.1%;
    padding-left: 6.1%;
    padding-top: 0.25%;
    padding-bottom: 0.25%;
}
.bgAccueil {
    height: 10px;
    position: relative;
    background: transparent;

}
.bloc-index {
    margin-top: 95px;
}
.bloc-index .col1,
.bloc-index .col2,
.bloc-index .col3,
.bloc-index .col4,
.bloc-index .col5,
.bloc-index .col6 {
    height: 25rem;
}
.bloc-index a img{
    padding: 20px;
    background: #dadada;
    -webkit-filter: blur(0);
	filter: blur(0);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 0;
    padding-left: 0;
}
.detail  .col,
.detail  .col-1,
.detail  .col-10,
.detail  .col-11,
.detail  .col-12,
.detail  .col-2,
.detail  .col-3,
.detail  .col-4,
.detail  .col-5,
.detail  .col-6,
.detail  .col-7,
.detail  .col-8,
.detail  .col-9,
.detail  .col-auto,
.detail  .col-lg,
.detail  .col-lg-1,
.detail  .col-lg-10,
.detail  .col-lg-11,
.detail  .col-lg-12,
.detail  .col-lg-2,
.detail  .col-lg-3,
.detail  .col-lg-4,
.detail  .col-lg-5,
.detail  .col-lg-6,
.detail  .col-lg-7,
.detail  .col-lg-8,
.detail  .col-lg-9,
.detail  .col-lg-auto,
.detail  .col-md,
.detail  .col-md-1,
.detail  .col-md-10,
.detail  .col-md-11,
.detail  .col-md-12, .col-md-2,
.detail  .col-md-3,
.detail  .col-md-4,
.detail  .col-md-5,
.detail  .col-md-6,
.detail  .col-md-7,
.detail  .col-md-8,
.detail  .col-md-9,
.detail  .col-md-auto,
.detail  .col-sm,
.detail  .col-sm-1,
.detail  .col-sm-10,
.detail  .col-sm-11,
.detail  .col-sm-12,
.detail  .col-sm-2,
.detail  .col-sm-3,
.detail  .col-sm-4,
.detail  .col-sm-5,
.detail  .col-sm-6,
.detail  .col-sm-7,
.detail  .col-sm-8,
.detail  .col-sm-9,
.detail  .col-sm-auto,
.detail  .col-xl,
.detail  .col-xl-1,
.detail  .col-xl-10,
.detail  .col-xl-11,
.detail  .col-xl-12,
.detail  .col-xl-2,
.detail  .col-xl-3,
.detail  .col-xl-4,
.detail  .col-xl-5,
.detail  .col-xl-6,
.detail  .col-xl-7,
.detail  .col-xl-8,
.detail  .col-xl-9,
.detail .col-xl-auto {
    padding-right: 15px;
    padding-left: 15px;
}
.bloc-index a:hover img {
    -webkit-filter: blur(5px);
	filter: blur(5px);
}

  
  

/* ================================================================================================================= */
/*                                                     EFFETS                                                        */
/* ================================================================================================================= */


.snip1573 {
    background-color: #dadada;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
  }
  
  .snip1573 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  
  .snip1573:before, .snip1573:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    background-color: #ffffff85;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    opacity: 0.9;
    z-index: 1;
}
  
  .snip1573:before {
    -webkit-transform: skew(45deg) translateX(-155%);
    transform: skew(45deg) translateX(-155%);
  }
  
  .snip1573:after {
    -webkit-transform: skew(45deg) translateX(155%);
    transform: skew(45deg) translateX(155%);
  }
  
  .snip1573 img {
    backface-visibility: hidden;
    max-width: 100%;
    vertical-align: top;
  }
  
  .snip1573 figcaption {
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    -webkit-box-shadow: 0 0 10px #000000;
    box-shadow: 0 0 10px #000000;
  }
  
  .snip1573 h2 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
    position: absolute;
    top: 46%;
    left: 41.5%;
    text-align: center;
}
  .snip1573 h3 {
    background-color: #b00a34;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    padding: 10px 15px;
    text-transform: uppercase;
}
  
  .snip1573 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }
  
  .snip1573:hover > img,
  .snip1573.hover > img {
    opacity: 0.5;
  }
  
  .snip1573:hover:before,
  .snip1573.hover:before {
    -webkit-transform: skew(45deg) translateX(-55%);
    transform: skew(45deg) translateX(-55%);
  }
  
  .snip1573:hover:after,
  .snip1573.hover:after {
    -webkit-transform: skew(45deg) translateX(55%);
    transform: skew(45deg) translateX(55%);
  }
  
  .snip1573:hover figcaption,
  .snip1573.hover figcaption {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }








  .snip1477 {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    background-color: transparent;
    padding: 20px;
  }
  .snip1477 *,
  .snip1477 *:before,
  .snip1477 *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.55s ease;
    transition: all 0.55s ease;
  }
  .snip1477 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
    opacity: 0.9;
  }
  .snip1477 .title {
    position: absolute;
    top: 58%;
    left: 25px;
    padding: 5px 10px 10px;
  }
  .snip1477 .title:before,
  .snip1477 .title:after {
    height: 2px;
    width: 400px;
    position: absolute;
    content: '';
    background-color: #ffffff;
  }
  .snip1477 .title:before {
    top: 0;
    left: 58%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .snip1477 .title:after {
    bottom: 0;
    right: 10px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .snip1477 .title div:before, .snip1477 .title div:after {
    width: 2px;
    height: 320px;
    position: absolute;
    content: '';
    background-color: #ffffff;
}
  .snip1477 .title div:before {
    top: 10px;
    right: -8px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  .snip1477 .title div:after {
    bottom: 1px;
    left: -8px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
  .snip1477 h2,
  .snip1477 h4 {
    margin: 0;
    text-transform: uppercase;
  }
  .snip1477 h2 {
    font-weight: 400;
  }
  .snip1477 h4 {
    display: block;
    font-weight: 700;
    background-color: #b00a34;
    padding: 5px 10px;
    color: #fff;
}
  .snip1477 figcaption {
    position: absolute;
    bottom: 39%;
    left: 31px;
    text-align: left;
    opacity: 0;
    padding: 5px 60px 5px 10px;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 1.5px;
}
  .snip1477 figcaption p {
    margin: 0;
  }
  .snip1477 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .snip1477:hover img,
  .snip1477.hover img {
    zoom: 3;
    filter: alpha(opacity=7);
    -webkit-opacity: 0.7;
    opacity: 0.7;
  }
  .snip1477:hover .title:before,
  .snip1477.hover .title:before,
  .snip1477:hover .title:after,
  .snip1477.hover .title:after,
  .snip1477:hover .title div:before,
  .snip1477.hover .title div:before,
  .snip1477:hover .title div:after,
  .snip1477.hover .title div:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .snip1477:hover .title:before,
  .snip1477.hover .title:before,
  .snip1477:hover .title:after,
  .snip1477.hover .title:after {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  .snip1477:hover figcaption,
  .snip1477.hover figcaption {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  







  .snip0029 {
    font-family: 'Raleway', Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 10px;
    width: 100%;
    background: transparent;
  }
  .snip0029 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .snip0029 img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
  }
  .snip0029 figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
  }
  .snip0029 figcaption h2 {
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    margin: 0;
    padding: 18px 15px;
    position: absolute;
    font-size: 1em;
    bottom: 20%;
    right: 30%;
    left: 30%;
    word-spacing: -0.1em;
    font-weight: 300;
    text-transform: uppercase;
    box-shadow: 0 0 6px rgb(255, 255, 255);
    background-color: #ffffff;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s,-moz-transform 0.35s,-o-transform 0.35s,transform 0.35s;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    color: #000;
}
  .snip0029 figcaption h2 span {
    font-weight: 800;
  }
  .snip0029 figcaption > div {
    border-radius: 0 0 5px 5px;
    background-color: #b00a34;
    position: absolute;
    left: 35%;
    right: 35%;
    bottom: 42px;
    text-align: center;
    padding: 5px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s,-moz-transform 0.35s,-o-transform 0.35s,transform 0.35s;
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
}
.snip0029 figcaption > div i {
    font-size: 17px;
    padding: 6px;
    color: #ffffff;
    opacity: 0;
    position: relative;
    top: -50px;
    -webkit-transition: top 0.35s, opacity 0.35s;
    transition: top 0.5s, opacity 0.5s;
}
  .snip0029 figcaption a {
    opacity: 0.8;
  }
  .snip0029 figcaption a:hover {
    opacity: 1;
  }
  .snip0029 figcaption::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background-image: linear-gradient(to top, #000000 0%, transparent 50%, #000000 100%);
  }
  .snip0029:hover img {
    opacity: 0.7;
  }
  .snip0029:hover figcaption h2 {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
  }
  .snip0029:hover figcaption > div {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
  }
  .snip0029:hover figcaption::before{
    opacity: 0.8;
  }
  .snip0029:hover figcaption i {
    top: 0px;
    opacity: 0.7;
  }
  .snip0029:hover a:first-child i {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .snip0029:hover a:nth-child(2) i {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .snip0029:hover a:nth-child(3) i {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .col5 .snip1573 h2 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
    position: absolute;
    bottom: 7%;
    left: 6.5%;
    text-align: center;
}
.snip1477 .title:before, .snip1477 .title:after {
  width: 150rem;
}






/* ================================================================================================================= */
/*                                                       LISTING                                                     */
/* ================================================================================================================= */
/* GENERAL AUX 3 VUES */
[class*="listing"] .container_search,
[class*="listing-"] .container_search {
  margin: 0;
  background-color: rgba(255,255,255,0.5);
  padding: 5px;
}
[class*="listing"] .sticking .header__burger,
[class*="listing-"] .sticking .header__burger {
  display: none;
}
[class*="listing"] .sticking .logo-header,
[class*="listing-"] .sticking .logo-header {
  display: none;
}
/* [class*="listing"] .not-sticking .container_search .formSearch ,
[class*="listing-"] .not-sticking .container_search .formSearch  {
  margin-top: 10%;
} */
.dropdown-menu.open.show {
  transform: translate3d(0px, 36px, 0px)!important;
}

/* VUE DAMIER */
.prod_listing.damier > .listing_article article {
  background: #fff;
  text-align: center;
}
.prod_listing.damier .info_titre {
  display: none;
}

/* VUE CARTE */
.prod_listing > .listing_article article {
  background-color: #fff;
}


/* VUE LISTING */


/* ITEMS */
.ion-ios-heart.active:before {
  color: red;
}



/*PAGE DETAILS*/
.detail_taber .nav-link {
    padding: 10px;
}
.detail_taber .nav-link.active,
.detail_taber .nav-link:hover {
    background: #b00a34 !important;
    color: #fff;
    padding: 10px;
}
.detail_taber {
    border-bottom: 1px solid #b00a34;
}
.detail_header .titre:after {
    background: #b00a34;
}
.detail_header .crit span:nth-child(1) {
    font-weight: 600;
}
.retour_pret {
    font-size: 25px;
    font-weight: 700;
    color: #b00a34;
}
.retour_pret span {
    color: #b00a34;
}
.detail .page_heading {
    font-size: 22px;
    font-weight: 500;
    border-left: 2px solid #b00a34;
    padding-left: 10px;
}
.detail .info_titre {
    text-transform: inherit;
}
.detail .info_prix {
    padding: 0;
}
.detail .header-item {
    padding: 0;
}
.lafficheur li:hover, .lafficheur li.active {
    background-color: #b00a34 !important;
}
.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #b00a34 !important;
}
.detail #descdetail{
    text-align: justify;
}
/*MISE EN FORME TABLEAU DETAILS*/
.detail .attribut_label0 {
    position: relative;
    background: #fff;
}
.detail .bloc-champ{
    background: #fff;
}
/* .detail_header{
  margin-top: 110px;
} */

/* ================================================================================================================= */
/*                                                     FOOTER                                                        */
/* ================================================================================================================= */
footer {
    background-color: #fff;
    padding: 20px 10px;
    color: #b00a34;
}
footer a{
    color: #000;
}
a:hover {
  color: #b00a34;
  text-decoration: underline;
}
/* ================================================================================================================= */
/*                                                    RESPONSIVE                                                     */
/* ================================================================================================================= */
@media (min-width: 992px) {
    nav.menu ul li {
        display: inline-block;
    }
    .menu ul > li > a {
        padding: 12px 10px;
        line-height: 1.2;
        color: #000;
    }
    .index .not-sticking .menu ul > li > a {
        color: #fff;
    }
    .header__logo {
        display: block;
        height: 100px;
        padding: 3px;
    }
    .header__logo img {
        width: 200px;
    }
}
@media(max-width:1280px) {
    .header__burger input ~ nav > ul > li > a {
        font-size: 20px;
    }
    .drapeau a img {
      width: 30px;
    }
    .header {
        background: transparent;
    }
    .logo-header {
        height: 100px;
        z-index: 1;
    }
    aside.aside_contact {
        height: 100% !important;
        top: 0!important;
    }
    .form-search-d > li {
      margin: 3px;
  }
  aside .form-search-d > li {
    width: 46%;
}
  aside .search__form-item {
    padding: 2% 0;
  }
 }
@media(min-width:769px) {

}
@media(max-width:768px) {
    .header__logo img {
        width: 140px;
        padding: 10px 0;
    }
    .bloc-header .container-fluid {
        padding-right: 3.1%;
        padding-left: 3.1%;
        padding-top: 1.3%;
    }
    .bloc-index .col1,
    .bloc-index .col2,
    .bloc-index .col3,
    .bloc-index .col4,
    .bloc-index .col5, 
    .bloc-index .col6 {
        height: 12.5rem;
    }
    .snip1477 h2 {
      font-size: 20px;
  }
  .snip1477 {
    padding: 10px;
  }
  .snip1477 h4 {
    font-size: 14px;
  }
  .snip1477 .title {
    left: 15px;
  }
  .bgAccueil {
    height: 0;
    position: relative;
    background: transparent;
  }
  aside .form-search-d > li {
    width: 47.5%;
  }
  .header__burger input ~ nav > ul,.coordonnees {
    width: 50%;
  }
  .map {
    top: 0;
  }
  .header__burger input ~ nav > .langue {
    position: absolute;
    bottom: 0.7%;
    right: 65%;
  }
  .header__burger input ~ nav > .reseaux-sociaux {
    position: absolute;
    bottom: 4%;
    left: 12%;
  }
}
@media(max-width:560px) {
  .bloc-index {
      margin-top: 105px;
  }
  .bgAccueil {
      height: 0;
  }
  .header__burger input ~ nav {
    width: 60px;
    height: 60px;
  }
  .header__burger input:checked ~ nav {
    display: block;
}
.header__burger input ~ nav > ul, .coordonnees {
  width: 100%;
}
  .search, .index .search {
    width: 60px;
    height: 60px;
  }
  .header__logo img {
    width: 100px;
  }
  .logo-header {
    height: 60px;
  }
  .header__logo img {
    margin-left: 4%;
    margin-top: 4px; 
    padding: 0; 
  }
  .header__burger input + label span {
    width: 84%;
}
  .header__burger {
    top: 5px;
    left: 14px;
  }
  .search ul li a i {
    font-size: 37px;
  }
  .search ul {
    top: 9%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
    .bgAccueil {
        background: #dadada! important;
    }
}

@media (max-width: 420px) {
}




