@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  font-size: 1em;
  --header-gb: #0000ff;
  --blue-base: #001980;
}

@font-face {
  font-family: 'roboto';
  src: url("../roboto/roboto-Regular.ttf");
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/static/Resources/fonts/sourcesanspro-regular.otf") format("otf"), url("/static/Resources/fonts/sourcesanspro-regular.woff") format("woff");
  font-weight: 400;
  font-display: fallback;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/static/Resources/fonts/sourcesanspro-semibold.otf") format("otf"), url("/static/Resources/fonts/sourcesanspro-semibold.woff") format("woff");
  font-weight: 600;
  font-display: fallback;
}


@font-face {
  font-family: 'roboto';
  src: url("../../roboto/roboto-Regular.ttf");
}
@font-face {
  font-family: 'robotoM';
  src: url("../../roboto/Roboto-Medium.ttf");
}
@font-face {
  font-family: 'robotoI';
  src: url("../../roboto/Roboto-Italic.ttf");
}
@font-face {
  font-family: 'robotoB';
  src: url("../../roboto/Roboto-Black.ttf");
}
@font-face {
  font-family: 'robotoL';
  src: url("../../roboto/RobotoCondensed-Light.ttf");
}





.main-div{
  position: relative;
  overflow: hidden;
  background: #f1f1f1;
}
.header_zone_panier{
  display: flex;
  position: relative;
  }
.header_zone_panier div{
  border: 1px solid;
  border-collapse: collapse;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}
.header_zone_panier div:nth-child(2){
  width:calc(100% - 90px) ;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left: none;
  border-right: none;
  font-size: 20px;
  font-weight: 500;
  font-family: 'roboto';
}
.header_zone_panier div:first-child, .header_zone_panier div:last-child{
  border: 1px solid rgba(0, 0, 0, 0.2);
  width:45px ;
}
.header_zone_panier div:first-child a{
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  width:45px ;
  text-align: center;
  color: #000;
}
.header_zone_panier div:first-child a:hover{
   color: #f00;
}
.header_zone_panier div:first-child a i{
  font-size: 30px;
}
.plus-produits {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
 
}
.plus-produits a:first-child {
  display: block;
  padding: 10px 20px;
  font-weight: 700;
  background: rgb(255, 140, 0);
  color: #fff !important;
  margin: 5px;
  border-radius:5px
 
}
.plus-produits a:last-child {
  display: block;
  padding: 10px 20px;
  font-weight: 700;
  background: rgb(255, 238, 238);
  margin: 5px;
  border-radius:5px
 
}
.zone_boutique{
  width:350px ;
  height: 100vh;
  position: fixed;
  right: -350px;
  background: #f7f7f7;
  top: 0;
}
.aller_au_panier{
  display: inline-block;
  color: #fff;
  background-color: #000000;
  padding:13px 25px  ;
  font-size: 13px;
  border: none;
  margin:0 auto;
  text-align: center;
  font-weight: 400;
}
.zone_boutique .contenu_panier{
  position: absolute;
  top:45px;
  bottom: 110px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  overflow: auto;
  z-index: 10000000;

}
.zone_boutique .bas_total{
display: flex;
justify-content: space-between;
align-items: center;
bottom: 55px;
position: absolute;
width: 100%;
background: white;
height:55px;
padding-left: 40px;
padding-right:40px;
}
.zone_boutique .bas_panier{
 display: flex;
 position: absolute;
 bottom: 0;
 width: 100%;
 height: 55px;
}
.zone_boutique .bas_panier a{
  flex: 50%;
  display: block;
  background:rgb(44, 44, 44);
  color:white;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  padding: 17px;
  transition: all 0.5s;

  
}
.zone_boutique .bas_panier a:last-child{
  background: #000; 
}
.zone_boutique .bas_panier a:hover{
  background: #f42b2b; 
}


.header {
  max-height: 150px;
  background: var(--blue-base);
  display: flex;
  justify-content: space-between;
}

.header div {
  display: inline-block;
  color: #fff;
}

.header div a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  display: inline-block;
  padding: 5px 10px;
}

.header div a i {
  color: #fff;
}

.header div a.cible {
  background: #ebbb1a;
  color: #fff;
}

.menu {
  display: flex;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); */
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.98);
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: 'robotoM';
}


.fixed {
  position:fixed;
  top: 0;
  left: 0;
  animation: smoothScroll 1s forwards;
  z-index:2000
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-200px);
	}
	100% {
		transform: translateY(150px);
	}
}
.info-commande{
  position: absolute;
  top: 0;
  right: 50px;
  display: flex;
  flex-direction: column;
  line-height: 20px;
  color: #f0dc9d;
  font-family: 'robotoM';
  span{
 
    border-radius: 25px;
  }
  a{
    text-decoration: none;
    color: #ffffff;
    font-size: 23px;
    padding: 5px 0;
    font-family: 'robotoB';
  }
}
.menu #logo {
  width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
  margin-left: 25px;
}

.menu #logo img {
  width: 100%;
}

.menu #logo h2 {
  margin: 0;
  padding: 0;
  display: inline;
  color: #fff;
}

.menu .detail_menu_mob {
  display: none !important;
  position: fixed;
  height:100vh;
  width: 320px;
  left: -325px;
  z-index: 2000;
  top:0;
  background: #fff !important;
 
}
.menu .mob-fermer {
  position: absolute;
  height:50px;
  width: 100%;
  color: #fff;
  bottom: 0;
  background: #ff0000 !important;
  text-align: center;
  font-size: 14px;
  line-height: 50px;
  user-select: none;
  cursor: default;
 
}

.detail_menu_mob .nav-tabs .nav-item.show .nav-link,.detail_menu_mob  .nav-tabs .nav-link.active {
  background: rgb(0, 0, 0);
  color: #fff;
  border: 1px solid rgb(112, 112, 112);
  width:160px;
  border-radius: 0;
  

}
.detail_menu_mob .nav-item {
  width:160px;
  border-radius: 0;
  
 
}
.detail_menu_mob .nav-item a {
  display: flex;
  height: 55px;
  text-align: center;
  width:160px;
  color: #000;
  font-size: 12px;
  border-radius:0;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}
.detail_menu_mob .nav-item .nav-link {
  width:160px;
  border-radius:0;
}
.detail_menu_mob .menu-mob {
  margin: 0;
  padding: 0;
}
.detail_menu_mob .menu-mob li {
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  border-bottom: none;
}
.detail_menu_mob .menu-mob li a {
  display: block;
  padding: 15px;
  color: #000;
  font-weight: 300;
  
  
}
.detail_menu_mob .menu-mob li:last-child {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  
}
.detail_menu_mob .menu-mob li:first-child,.detail_menu_mob .menu-mob li:nth-child(2) {
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  
}
.detail_menu_mob .menu-mob li:first-child a,.detail_menu_mob .menu-mob li:nth-child(2) a {
 width: calc(100% - 50px);
 display: inline-block;
 box-sizing: border-box;
  
}
.detail_menu_mob .menu-mob li:first-child .menu-mob2, .detail_menu_mob .menu-mob li:nth-child(2) .menu-mob2 {
 display: inline-block;
 width:50px;
 border-left: 0.5px solid rgba(0, 0, 0, 0.1);
 box-sizing: border-box;
 text-align: center;
 line-height: 50px;
}
#home .apropos_mob, #home .produits_mob {
 position: absolute;
 width:320px;
 border:none;
 box-sizing: border-box;
 height: 100%;
 background: #fff;
 right: -325px;
}
#home, #profile{
  position:relative;
  height:100vh;
  overflow:hidden
}
#home .apropos_mob>div:first-child, #home .produits_mob>div:first-child{
    background: #f00;
    color:#fff;
    height: 55px;
    padding-left: 15px;
    line-height: 55px;
 }
 
#home .apropos_mob>div:nth-child(2) a, #home .produits_mob>div:nth-child(2) a  {
    display: inline-block !important;
    font-size: 13px;
    padding: 15px;
    background: #fff;
    color: #000;
    width: auto !important;
   
 }
 #home .apropos_mob>div:nth-child(2) a>span, #home .produits_mob>div:nth-child(2) a>span  {
  display: inline !important;
   
}
#profile .mob-connect {
  padding: 45px 15px 15px 15px;
   
}
#profile .mob-connect input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  outline: none;
   
}
#profile .mob-connect input::placeholder {
  color: rgba(0, 0, 0, 0.2);
   font-size: 14px;
}
#profile .mob-connect a{
  display: block;
  color: #494949;
  padding:10px 0 15px 0  ;
   font-size: 13px;
}
#profile .mob-connect button{
  display: block;
  color: #fff;
  background-color: #000000;
  padding:12px 0  ;
  font-size: 13px;
  width: 100%;
  border: none;
  letter-spacing: 2px;
  font-weight: 400;
}


/* .menu .detail-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
} */
/* .menu .detail-menu li{
  list-style-type: none;
  list-style: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position:relative;
  transition:all ease-in 0.5s ;
  
} */

/* .menu .detail-menu li a {
  display: flex;
  padding: 12px 25px;
  position:relative;
  color: black;
  text-decoration: none;
  font-family: 'roboto';
  font-weight: 500;
  font-size: 0.9rem;
  align-items:center;
  justify-content:center;
  transition:all ease-in-out 0.5s;
 
} */

/* 
.menu .detail-menu li a span {
  display:inline-block;
  padding-left:10px;
  padding-right:10px;
  padding-bottom:7px;
  position: relative;
  cursor: pointer; 
  transition: 0.1s;
} */

/* .menu .detail-menu li a span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  background: #ff7000;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
} */

/* .menu .detail-menu li a span:hover::after {
  transform: scaleX(1);
  transform-origin: left;
} */
.menu .detail-menu li a:hover  {
  color: #f00;
}
.propa::first-letter{
  text-transform: uppercase;
}

/**** sous menu ********/
.menu .detail-menu li .sous_menu{
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 2000;
  background:#fff;
  left:20px;
  top:130px;
  opacity: 0;
  padding-bottom:40px;
  padding-bottom:30px;
  min-width:200px;
  transition:all ease-in 0.5s ;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.04);
   
}

.sous_menu a{
  display: flex;
  padding: 5px 10px 5px 20px !important;
  text-decoration: none;
  background: #fff;
  font-size: 0.90rem !important;
  color: #f00 !important;
  text-align:left !important;
  justify-content: left !important;
 
}
.sous_menu a span{
    padding: 0 !important;
    text-align:left !important;
   
}
/* 
.menu .detail-menu li:hover .sous_menu{

   display:block;
   top: 80px;
   opacity: 1;
}
  */

.menu .option-menu {
  display: flex;
  flex-direction: row;
  padding-right: 10px;
}

.menu .option-menu div {
  display: inline-block;
  box-sizing: border-box;
  display:flex;
  align-items:center;
  justify-content:center;

}


.menu .option-menu div a {
  display: block;
  padding: 7px;
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
}

.menu .option-menu div:last-child a {
  color: #000 !important;
  margin-right: 5px;
}

.menu .option-menu div:last-child a span {
  font-size: 1.3rem;
  margin-right: 10px;
  color: inherit;
}
.menu .option-menu div:last-child a span span {
  font-size: 9px;
  background: red;
  color: #fff;
  position: absolute;
}

.menu .bars {
  display: none;
}

.menu .bars {
  position: absolute;
  width: 30px;
  height: 28px;
  left: 15px;
  top: 35px;
  /*transform: translateY(-50%);*/
  padding-top: 5px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  z-index: 2000;
}

.menu .bars > span {
  display: block;
  height: 3px;
  top: -4px;
  background:#000;
  margin-bottom: 4px;
}

.menu .bars > span:nth-child(2) {
   width: 20px;

}

.bars-mobile {
  position: relative;
  width: 20px;
  height: 22px;
  /*transform: translateY(-50%);*/
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-top: 2px;
}

.bars-mobile > span {
  display: block;
  height: 2px;
  background:#fff;
  margin-bottom: 4px;
}

.bars-mobile > span:nth-child(2) {
   width: 15px;

}
.mn-menu{
  position: relative;
  font-size: 14px;
  /*transform: translateY(-50%);*/
  cursor: pointer;
  display: inline-block;
  margin-left:15px;
  font-weight: 300;
 
  }

#panier{
  position: absolute;
  background: red;
  color:white;
  border-radius: 25px;
  padding: 0 3px;
  font-size: 10px;

}

#z_connect #deconnexion{
  position: absolute;
  padding:10px 12px;
  display: block;
  border-radius:5px;
  bottom:-5px;
  background:#fff;
  color:black;
  box-shadow:0 1px 10px rgba(0,0,0,.2);
  visibility: hidden; 
  width: 120px;
  font-size: 13px;
  

}
#z_connect #deconnexion::after{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -18px;
  left:50%;
  transform: translateX(-50%);
 border-top: 10px solid transparent;  
 border-right: 10px solid transparent;  
 border-left: 10px solid transparent;  
 border-bottom: 10px solid rgb(255, 0, 0);  

}
#z_connect:hover #deconnexion{
visibility:visible;
background: red;
color:#fff
}

.chemin {
  padding: 13px 40px;
  font-size: 0.75rem;
}

.chemin a {
  text-decoration: none;
  color: #000000;
  padding-left: 5px;
  padding-right: 5px;
}

.chemin a:hover {
  color: #ebbb1a;
}
/*--------------Form de connexion----------------*/
#frmCompte0 ,#frmReset0,#frmCreer0 {
  padding: 45px 15px 15px 15px;
   
}
#frmCompte0 .titre {
  text-align: center;
  padding: 0 10px 10px 10px;
  font-size: 18px;
}
#frmReset0 p, #frmCreer0 p {
  text-align: center;
  letter-spacing: 1px;
  padding: 0 10px 25px 10px;
  font-size: 18px;
}

#frmCompte0 .mdp-oublie {
   display: block;
  padding:  0 0 18px 0;
  font-size: 13px;
  color: #9e9e9e;
}
#frmCompte0 .bas-form{
  text-align: center;
  padding:  10px 30px;
  font-size: 11px;
  background:#dfdfdf ;
  color: #9e9e9e;
  margin-top: 35px;
}
#frmReset0 .bas-form a,#frmCreer0 .bas-form a {
  text-decoration: none;
  text-align: center;
  padding:  13px;
  font-size: 14px;
  background:#f4f4f4 ;
  color: #959595;
  margin-top: 25px;
  display: block;
}

#frmCompte0 input, #frmReset0 input,#frmCreer0 input{
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 13px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  outline: none;
   
}
#frmCompte0 input::placeholder,#frmReset0 input::placeholder,#frmCreer0 input::placeholder{
  color: rgba(0, 0, 0, 0.3);
   font-size: 14px;
}

#frmCompte0 .mob-connect a{
  display: block;
  color: #494949;
  padding:10px 0 15px 0  ;
   font-size: 13px;
}
#frmCompte0 button,#frmReset0 button,#frmCreer0 button{
  display: block;
  color: #fff;
  background-color: #000000;
  padding:15px 0  ;
  font-size: 13px;
  width: 100%;
  border: none;
  letter-spacing: 2px;
  font-weight: 400;
}
#frmCompte0 button:hover,#frmReset0 button:hover,#frmCreer0 button:hover{
  background-color: #f80a0a;

}



/*************/

.img-slider {
  position: relative;
  width: 100%;
  height: 300px;
  background: #cc9f09;
  overflow: hidden;
}

.img-slider .slide {
  z-index: 1;
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}

.img-slider .slide img {
  z-index: 1;
  width: 100%;
}

.img-slider .navigation {
  z-index: 2;
  position: absolute;
  display: flex;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.img-slider .navigation .btn {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.img-slider .navigation .btn.active {
  background: #2696E9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.continuer_shop{
  display: block;
  border: 2px solid red;
  color:black;
  font-weight: 300px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 17px;
  transition: all ease-in-out 0.5s;
}

.continuer_shop:hover{
  background: red;
  color:#fff;
}
.continuer_shop_prev{
  display: block;
  border: 2px solid red;
  color:#fff;
  font-weight: 300px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  background: #f00;
  transition: all ease-in-out 0.5s;
}
.continuer_shop_prev:hover{
  border: 2px solid black;
  color:#fff;
  background: #000;
}
.qte-panier-prev{
  border: 2px solid black;
  height: 56px;
  width: 80px;
  box-sizing: border-box;
  position: relative;
}
.qte-panier-prev>input{
  border: none;
  height: 100%;
  position: absolute;
  text-align: center;
  width:40px;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  outline: none;

}
.qte-panier-prev>input:focus{
    outline: none;
    box-shadow: none;
}
.qte-panier-prev .prev_plus{
  border: none;
  border-left:1px solid black;
  border-bottom:1px solid black;
  color: #000;
  display: block;
  height: 27px;
  position: absolute;
  right: 0;
  text-align: center;
  width:40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  box-sizing: border-box;
  text-decoration: none;
  top: 0;
}
.qte-panier-prev .prev_moin{
  border: none;
  border-left:1px solid black;
  color: #000;
  text-decoration: none;
  display: block;
  height: 27px;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  line-height: 27px;
  text-align: center;
  width:40px;
  font-size: 18px;
  font-weight: 700;
  top: 27px;
}

.aller_panier{
  display: block;
  border: 2px solid red;
  color:#fff;
  font-weight: 300px;
  padding: 12px;
  background: red;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

.aller_panier:hover{
   color:#fff;
}

@media (max-width: 820px) {
  .img-slider {
    width: 100%;
    height: 250px;
  }
  .img-slider .slide .info {
    padding: 10px 25px;
  }
  .img-slider .slide .info h2 {
    font-size: 35px;
  }
  .img-slider .slide .info p {
    width: 70%;
    font-size: 15px;
  }
  .img-slider .navigation {
    bottom: 25px;
  }
  .img-slider .navigation .btn {
    width: 10px;
    height: 10px;
    margin: 8px;
  }
}

@media (max-width: 620px) {
  .img-slider {
    width: 100%;
    height: 180px;
  }
  .img-slider .slide .info {
    padding: 10px 20px;
  }
  .img-slider .slide .info h2 {
    font-size: 30px;
  }
  .img-slider .slide .info p {
    width: 80%;
    font-size: 13px;
  }
  .img-slider .navigation {
    bottom: 15px;
  }
  .img-slider .navigation .btn {
    width: 8px;
    height: 8px;
    margin: 6px;
  }
}

@media (max-width: 420px) {
  .img-slider {
    width: 100%;
    height: 140px;
  }
  .img-slider .slide .info {
    padding: 5px 10px;
  }
  .img-slider .slide .info h2 {
    font-size: 25px;
  }
  .img-slider .slide .info p {
    width: 90%;
    font-size: 11px;
  }
  .img-slider .navigation {
    bottom: 10px;
  }
}

.content-intro {
  margin: 0 auto;
  padding: 0px 10px 0 10px;
  width: 98vw;
  background: #ffffff;
  display: flex;
  position: relative;
  box-sizing:border-box;
  justify-content: space-between;
  z-index: 10;
}

.content-intro > div {
  flex: 20%;
  margin:5px;
 
  overflow: hidden;
  transition: all 0.3s ease;
  
}

.content-intro > div .des-intro {
  position: absolute;
  padding: 15px 14px;
  color: #fff;
  top: 29%;
  right: 20px;
  box-shadow: none;
  max-width: 300px;
  z-index: 12;
}

.content-intro > div .des-intro h2 {
  font-size: 1.6vw;
  font-family: 'robotoB';
  color: #fff;
  line-height: normal;
}

.content-intro > div .des-intro a {
  text-decoration: none;
  color: #fff;
  background: #001980;
  display: inline-block;
  border-radius: 4px;
  padding: 6px;
  font-size: 0.88vw;
  margin-bottom: 10px;
}

.content-intro > div .des-intro a:last-child {
  background: transparent;
  border: 1px solid #ebbb1a;
  border-radius: 25px;
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
  font-size: 0.9rem;
  margin-top: 10px;
}

.content-intro > div:first-child {
  margin-right: 15px;
}

.content-intro > div:last-child {
  margin-left: 15px;
}

.content-intro > div a:hover img {
  transform: scale(1.3);
}

.content-intro div a> img {
  width: 100%;
  overflow: hidden;
  transition: all 1.5s ease;
  transform: scale(1.08);
}
.vedette{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 50px 30px 50px;
 }

 .vedette h4 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 10px;
  font-size: 19px;
  background: rgba(255, 255, 255, 0.827);

  
}
 .vedette h4::after {
  content: '';
  position: absolute;
  height: 30px;
  bottom: -10px;
  border-top: 0 solid transparent;
  border-left: 3px solid red;
  border-bottom: 3px solid red;
  border-right: 0 solid transparent;
  left: -10px;
  width: 40%;
  z-index: 1000;
 
}

.vedette h4::before {
  content: '';
  position: absolute;
  height: 30px;
  border-top: 3px solid black;
  border-left: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-right: 3px solid black;
  top: -10px;
  right: -10px;
  width: 30%;
  z-index:100;

}


.content {
  margin: 0 auto;
  position: relative;
  top: -30px;
  padding: 20px 30px;
  width: 1100px;
  background: #fff;
  border-radius: 25px;
  z-index: 1001;
}

.content h1 {
  font-family: 'robotoB';
  text-align: center;
  margin-bottom: 10px;
}

.content p {
  text-align: center;
}

.content-rubrique {
  margin: 0 auto;
  position: relative;
  top: -30px;
  padding: 20px 80px;
  width: 100%;
  background: #f4f5f6;
  z-index: 1001;
}

.content-rubrique > h1 {
  text-align: center;
  margin: 30px 0 30px 0;
  font-family: 'robotoB';
}

.content-rubrique .rubriques {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.content-rubrique .rubriques .rubrique {
  position: relative;
  background: #fff;
  margin: 10px 10px;
  flex: 30%;
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-rubrique .rubriques .rubrique .ico-rubrique {
  position: absolute;
  width: 50px;
  top: 0;
  bottom: 0;
  left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-rubrique .rubriques .rubrique .ico-rubrique img {
  width: 100%;
}

.content-rubrique .rubriques .rubrique div:last-child {
  position: relative;
  left: 55px;
}

.content-rubrique .rubriques .rubrique div:last-child h3 {
  font-size: 1.4rem;
  font-family: 'robotoB';
  margin-bottom: 12px;
}

.content-rubrique .rubriques .rubrique div:last-child p {
  font-size: 0.95rem;
}

.content-rubrique .rubriques .rubrique :not(:first-child) {
  margin-right: 20px;
}

.content-rubrique .rubriques .rubrique:last-child {
  margin-right: 10px;
  flex: 33.33%;
}

.content-service {
  margin: 0 auto;
  position: relative;
  top: -5px;
  padding: 20px 80px;
  width: 100%;
  background: #ffffff;
}

.content-service > h1 {
  text-align: center;
  margin: 5px;
  font-family: 'robotoB';
  font-size: 1.7rem;
}

.content-service > p {
  display: flex;
  justify-content: center;
}

.content-service .services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.content-service .services .service {
  position: relative;
  background: #fff;
  margin: 20px 10px;
  flex: 30%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.content-service .services .service .img-service {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.content-service .services .service .img-service img {
  transform: scale(1.1);
  width: 100%;
}

.content-service .services .service div:last-child {
  position: absolute;
  z-index: 10;
  bottom: 0;
  padding: 12px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.content-service .services .service div:last-child h3 {
  font-size: 1.3rem;
  font-family: 'robotoB';
  margin-bottom: 10px;
  color: #ffffff;
}

.content-service .services .service div:last-child p {
  font-family: 'robotoB';
  font-size: 0.95rem;
  color: #ffffff !important;
}

.content-service .services .service div:last-child p a {
  background: #fff;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none;
  font-family: 'robotoM';
  color: #eb1a1a;
  margin-top: 5px;
  padding: 6px 7px;
  font-size: 0.85rem;
}

.content-service .services .rubrique :not(:first-child) {
  margin-right: 20px;
}

.content-service .services .rubrique:last-child {
  margin-right: 0;
  flex: 33.33%;
}

.content-rubrique2 {
  position: relative;
  display: flex;
  top: 0;
  padding: 20px 80px 10px 80px;
  width: 100%;
  background: #ffffff;
}

.content-rubrique2 .rubriques {
  display: flex;
  flex-direction: column;
}

.content-rubrique2 .rubriques > h1 {
  text-align: center;
  margin: 0 0 9px 0;
  font-family: 'robotoB';
}

.content-rubrique2 .rubriques > p {
  font-size: 1.3rem;
  margin-bottom: 5px;
  padding: 10px;
}

.content-rubrique2 .rubriques .rubrique {
  position: relative;
  background: #fff;
  margin: 10px;
  flex: 100%;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-rubrique2 .rubriques .rubrique .ico-rubrique {
  position: absolute;
  width: 50px;
  top: 0;
  bottom: 0;
  left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-rubrique2 .rubriques .rubrique .ico-rubrique img {
  width: 100%;
}

.content-rubrique2 .rubriques .rubrique .details {
  position: relative;
  width: calc(100% - 75px);
  top: 0;
  bottom: 0;
  left: 55px;
}

.content-rubrique2 .rubriques .rubrique .details h3 {
  font-size: 1.3rem;
  font-family: 'robotoB';
  margin-bottom: 10px;
}

.content-rubrique2 .rubriques .rubrique .details p {
  font-size: 0.95rem;
}

.content-rubrique2 .rubriques .rubrique .fleche {
  position: absolute;
  display: flex;
  align-items: center;
  right: 10px;
  top: 0;
  bottom: 0;
}

.content-rubrique2 .rubriques .rubrique .fleche i {
  color: #e0b62b;
}

.content-rubrique2 .rubriques2 {
  flex: 50%;
  text-align: right;
}

.content-rubrique2 .rubriques2 img {
  width: 90%;
  border-radius: 5px;
}

.content-rubrique3 {
  position: relative;
  bottom: -39px;
  padding: 20px 180px 40px 180px;
  width: 100%;
  background: #f1f1f1;
}

.content-rubrique3 > h1 {
  text-align: center;
  margin: 30px 0 9px 0;
  font-family: 'robotoB';
}

.content-rubrique3 > p {
  font-size: 1.2rem;
  padding: 10px;
  text-align: center;
}

.content-rubrique3 .rubriques {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.content-rubrique3 .rubriques .rubrique {
  position: relative;
  display: flex;
  margin: 0 10px;
  flex: 30%;
  padding: 5px 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content-rubrique3 .rubriques .rubrique div {
  text-align: center;
}

.content-rubrique3 .rubriques .rubrique div h3 {
  font-size: 1.5rem;
  font-family: 'robotoB';
}

.content-rubrique3 .rubriques .rubrique div p {
  font-size: 0.9rem;
}

.content-rubrique3 .rubriques .rubrique a {
  text-decoration: none;
  display: block;
  margin: 15px;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  border: 2px solid black;
  width: 70%;
  transition: all 0.6s ease;
}

.content-rubrique3 .rubriques .rubrique a:hover {
  background: #3a3a3a;
  border: 2px solid #3a3a3a;
  color: #fff;
}


@media screen and (min-width: 1001px) {
  /* .detail-menu {
    display: flex !important;
  } */
  .menu {
    position: relative;
  }
  .menu .bars {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .menu {
    position: relative;
  }
  .menu .bars {
    display: none;
  }
  /* .detail-menu a {
    background: #fff !important;
    display: block !important;
    padding: 15px !important;
    font-size: 0.9rem;
  } */
 
  .option-menu div:last-child a {
    border-radius: 25px;
    padding: 10px;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem !important;
    margin-right: 5px;
  }
}

@media screen and (max-width: 760px) {
  :root {
    font-size: 1.0em;
  }
  .header {
    display: none;
  }
  .menu {
    position: relative;
    height: 100px;
    width: 100%;
  }
  .menu .bars {
   display: block;
   
  }
  .menu #logo {
    position: absolute;
    width: 170px;
    margin: auto auto;
    left:0;
    right:0;
    top:50%;
    transform:translateY(-50%);
  }
  .menu #logo img {
    width: 100% !important;
    border-radius: 5px;
  }
  .slide-intro{
    margin-top: 20px;
  }

  /* .detail-menu {
    display:none !important;
  } */

  .menu .detail_menu_mob {
    display: block !important;
    
  }


  /* .detail-menu {
   display: none;
  }
  .detail-menu a {
    background: #fff !important;
    display: block !important;
    padding: 12px !important;
  } */
  .menu .option-menu {
    position: absolute;
    right: 10px;
    top:15px;
    padding-right:10px;
  }
 
  .option-menu div:nth-child(2){
    display: none !important;
  }

  .option-menu div a {
    padding: 0 !important;
    height: 40px;
    width: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .option-menu div:last-child a i {
    color: #000;
    margin-right: 0;
    margin: auto;

  }
 
  .chemin {
    font-size: 0.8rem;
  }
  .content {
    position: relative;
    top: 0;
    padding: 30px 20px;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content h1 {
    font-family: 'robotoB';
    font-size: 5.5vw;
    margin-bottom: 10px;
  }
  .content-intro {
    margin: 0 auto;
    width: 97vw;
    height: auto;
    padding: 10px;
    position: initial;
    box-sizing:border-box;
    flex-direction: column;
    z-index: 10;
    background: red;
  }
  
  .content-intro div {
    flex: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
  }

 
  .content-intro div:first-child {
    margin: 0;
    margin-bottom: 25px;
  }
  .content-intro div:last-child {
    margin: 0;
  }
  .content-intro div:hover img {
    transform: scale(1.3);
  }
  .content-intro div > img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    transition: all 1.5s ease;
    transform: scale(1.08);
  }

  .vedette{
   display: flex;
   justify-content: center;
   align-items: center;
  }
  .vedette h2{
    margin: 0;padding: 0;
    font-size: 18px;
  }
  .content-rubrique {
    margin: 0 auto;
    position: relative;
    top: 0;
    padding: 15px;
    width: 100%;
    background: #f4f5f6;
    z-index: 1001;
  }
  .content-rubrique > h1 {
    text-align: center;
    margin: 30px 0 25px 0;
    font-family: 'robotoB';
    font-size: 6.7vw;
  }
  .content-rubrique .rubriques {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .content-rubrique .rubriques .rubrique {
    position: relative;
    background: #fff;
    margin: 10px;
    flex: 100%;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .content-rubrique .rubriques .rubrique .ico-rubrique {
    position: absolute;
    width: 50px;
    top: 0;
    bottom: 0;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .content-rubrique .rubriques .rubrique .ico-rubrique img {
    width: 100%;
  }
  .content-rubrique .rubriques .rubrique:last-child {
    margin: 10px;
    flex: 100%;
  }
  .content-rubrique2 {
    position: relative;
    top: 0;
    padding: 15px 0;
    width: 100%;
    background: #ffffff;
  }
  .content-rubrique2 .rubriques {
    display: flex;
    margin: 0 auto;
    width: calc(100% - 45px);
  }
  .content-rubrique2 .rubriques > h1 {
    margin: 0 0 15px 0;
    font-size: 1.8rem;
  }
  .content-rubrique2 .rubriques > h6 {
    font-size: 1.1rem;
  }
  .content-rubrique2 .rubriques .rubrique {
    position: relative;
    background: #fff;
    margin: 10px 0;
    flex: 100%;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .content-rubrique2 .rubriques .rubrique .ico-rubrique {
    position: absolute;
    width: 50px;
    top: 0;
    bottom: 0;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .content-rubrique2 .rubriques .rubrique .ico-rubrique img {
    width: 100%;
  }
  .content-rubrique2 .rubriques .rubrique .details {
    position: relative;
    width: calc(100% - 75px);
    top: 0;
    bottom: 0;
    left: 55px;
  }
  .content-rubrique2 .rubriques .rubrique .details h3 {
    font-size: 1.3rem;
    font-family: 'robotoB';
    color: #001980;
    margin-bottom: 10px;
  }
  .content-rubrique2 .rubriques .rubrique .details p {
    font-size: 0.95rem;
  }
  .content-rubrique2 .rubriques .rubrique .fleche {
    position: absolute;
    display: flex;
    align-items: center;
    right: 10px;
    top: 0;
    bottom: 0;
  }
  .content-rubrique2 .rubriques .rubrique .fleche i {
    color: #e0b62b;
  }
  .content-rubrique2 .rubriques2 {
    display: none;
    flex: 100%;
    text-align: right;
  }
  .content-rubrique2 .rubriques2 img {
    width: 90%;
    border-radius: 5px;
  }
  .content-service {
    margin: 0 auto;
    position: relative;
    top: -5px;
    padding: 15px;
    width: 100%;
    background: #ffffff;
  }
  .content-service > h1 {
    text-align: center;
    margin: 5px;
    font-family: 'robotoB';
    font-size: 1.7rem;
  }
  .content-service > p {
    display: flex;
    justify-content: center;
  }
  .content-service .services {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .content-service .services .service {
    position: relative;
    background: #fff;
    margin: 10px;
    flex: 30%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  .content-service .services .service .img-service {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  .content-service .services .service .img-service img {
    transform: scale(1.1);
    width: 100%;
  }
  .content-service .services .service div:last-child {
    position: absolute;
    z-index: 10;
    bottom: 0;
    padding: 12px;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  }
  .content-service .services .service div:last-child h3 {
    font-size: 1.3rem;
    font-family: 'robotoB';
    margin-bottom: 10px;
    color: #ffffff;
  }
  .content-service .services .service div:last-child p {
    font-family: 'Montserrat-SemiBold';
    font-size: 0.95rem;
    color: #ffffff !important;
  }
  .content-service .services .service div:last-child p a {
    background: #fff;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
    font-family: 'Montserrat-SemiBold';
    color: #ebbb1a;
    margin-top: 5px;
    padding: 6px 7px;
    font-size: 0.85rem;
  }
  .content-service .services .rubrique :not(:first-child) {
    margin-right: 20px;
  }
  .content-service .services .rubrique:last-child {
    margin-right: 0;
    flex: 33.33%;
  }
  .content-rubrique3 {
    position: relative;
    bottom: -39px;
    padding: 15px;
    width: 100%;
    background: #f1f1f1;
  }
  .content-rubrique3 > h1 {
    text-align: center;
    margin: 0 0 9px 0;
    font-family: 'robotoB';
  }
  .content-rubrique3 > p {
    font-size: 1.2rem;
    font-family: 'Montserrat-SemiBold';
    padding: 10px;
    text-align: center;
  }
  .content-rubrique3 .rubriques {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .content-rubrique3 .rubriques .rubrique {
    position: relative;
    display: flex;
    margin: 0 10px;
    flex: 1;
    padding: 5px 20px;
    align-items: center;
    justify-content: center;
  }
}

#form-gds{
    background:rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    
  }
  
 
  #form-gds .zone{
    margin-top: 18px;
    margin-bottom: 18px;
    background: #fff;
  }
  #form-gds .zone select{
    border: transparent;
    border-radius: 8px;
    font-size: 16px;
    padding: 12px;
    margin: 5px;
    box-sizing: border-box;
    background: #e0e0e0;
  
    } 
  #form-gds .zoneg input:first-child{
        margin-right: 5px ;
          
        }
  #form-gds .zoneg{
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    
    }
  #form-gds .zoneg div{
    border:1px solid rgba(255, 0, 0, 0.729);;
    border-radius:8px;
    
    }
  #form-gds .zone label{
    display: block;
    font-size: 16px;
    margin-bottom:8px
    
    }
  #form-gds .zone a{
    text-decoration: none;
    font-size: 12px;
     color: rgb(255, 255, 255);
    
    }
  #form-gds .zone a:first-child{
    float: left;
    }
  #form-gds .zone a:last-child{
    float: right;
    }
  
  #form-gds .zone input::placeholder{
    color: #6e6e6e;
  
  }
  #form-gds .zone div{
   position: relative;
    width: calc(100%);
         
    }
  #form-gds .zone div i{
    position: absolute;
    color: rgba(255, 0, 0, 0.729);;
    font-size: 25px;
    left: 10px;
    top: 5px;
        
    }
  #form-gds .zonedate div i{
     top: 33px;
        
    }
  
    
  #form-gds .zone div input{
  border: transparent;
  border-radius: 8px;
  font-size: 15px;
  padding: 12px;
  padding-left: 50px;
  width: calc(100%);
  box-sizing: border-box;
  outline: #616161;
    
  }
  
  #form-gds .zone input{
    border: transparent;
    border-radius: 8px;
    font-size: 15px;
    padding: 12px;
    width: calc(100%);
    box-sizing: border-box;
    outline: #868686;
        
    }
  #form-gds .zone #lieubascule,#form-gds .zone #lieubascule-dest{
    background: #fff;
    color: rgba(255, 0, 0, 0.729);;
    width: 70px;
    border-radius:8px;
    margin: 0 7px;
  }
  #form-gds .zonedate #lieubascule{
  margin-top: 27px;
  }
  #form-gds .zonedate #d1>i,#form-gds .zonedate #d2>i{
  position:absolute ;
  top:5px
  }
  #form-gds .zone button,.btn{
    color: rgb(255, 255, 255);
    width:100%;
    height:65px;
    border-radius: 6px;
    font-size: 18px;
    right:5px;
    margin-top: 35px;
    border: none;
    background: #f00;
    
  }
  #form-gds .zone button i{
  font-size: 25px;
  color:rgba(255, 0, 0, 0.729);
  
  }
  #form-gds .zone button #demarrer i{
  color: #fff !important;
  
  }
  
  /*******************/
  /****Pays****/
  .list_city {
      list-style: none;
      padding: 0;
      margin: 0;
      position: absolute;
      background: #fff;
      max-height: 400px;
      border: 1px solid rgba(255, 0, 0, 0.729);;
      border-top:none;
      border-radius:0 0 8px 8px;
      -webkit-border-radius: 0 0 8px 8px;
      -moz-border-radius:0 0 8px 8px;
      -ms-border-radius:0 0 8px 8px;
      -o-border-radius:0 0 8px 8px;
      z-index: 200;
      width: calc(100% - 24px);
      overflow-y: auto;
      box-sizing: border-box;
      min-width: 200px;
      box-shadow:0 8px 15px rgba(0, 0, 0, .2);
      min-height: 30px;
      display: none;
  }
  
  .list_city li {
      padding: 5px 10px 5px 5px;
      list-style: none;
      margin: 0;
      transition: 'all' 1s;
      -webkit-transition: 'all' 1s;
      -moz-transition: 'all' 1s;
      -ms-transition: 'all' 1s;
      -o-transition: 'all' 1s;
      cursor: default;
      color: #4f4f4f;
  }
  
  .list_city li:hover {
      color:rgba(255, 0, 0, 0.729);;
      
  }
  
  .ligne_vol{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .ligne_vol li{
   padding: 15px 20px;
   border: 0.5px solid rgba(177, 181, 182, 0.547);
   display: flex;
   justify-content: space-between;
  }
  .ligne_vol li:first-child{
    border-radius: 8px 8px 0 0;
    
   }
  /********/
  
/***Check Perso****************/
/* Exemple 1*/

#choix_module{
    min-width: 100px;
    padding-bottom:15px;
    display: block;
    height: 40px;
    border: none;
    display:flex;
    align-items: flex-start;
    padding-left: 0;
    margin-bottom: 15px;
 }
#choix_module legend{
  
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
 }

 .ck_input{
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  cursor: pointer;
 }
 .checkperso{
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  cursor: pointer;
  background: rgb(240, 240, 240);
  border-radius: 5px;
  text-align: center;
 
 }
 .checkperso_cat{
  position: absolute;
  left: 10px;
  top: 0;
  height: 20px;
  width: 20px;
  border-radius:4px;
  transition: all 0.3s;
  cursor: pointer;
  background:rgba(222, 222, 222, 0.229);
  border: 1px solid rgb(208, 208, 208) ;
  text-align: center;


 }
 #contenu_marchandise{
  border-radius:6px ;
  border: 1px solid rgb(208, 208, 208) ;
  position: relative;
  padding:10px 15px 7px 15px ;
 }
 .detail_categorie{
  padding-left: 20px;
  font-size: 15px;
  }
 .detail_categorie:hover{
  color: rgb(245, 17, 17);
  }

  .detail_categorie input:checked ~.checkperso_cat{
     background:rgb(255, 25, 25);
     color:rgb(255, 255, 255);
     border: 1px solid rgb(255, 25, 25);
  }


 .block_check:hover .checkperso{
     background: rgb(198, 198, 198);
  }
  .block_check input:checked ~.checkperso{
     background: rgba(255, 0, 0, 0.729) !important;
     color: #fff;
  }
  .block_check input:checked ~.checkperso:after{
     position: absolute;
     content: "";
     top: 9px;
     left:10px;
     height: 5px;
     width:10px ;
     border: solid white;
     border-width:0 0 3px 3px;
     color: #fff;
     text-align: center;
     transform: rotate(-45deg);
     
  }
  .detail_categorie input:checked ~.checkperso_cat:after{
    position: absolute;
    content: "";
    top: 5px;
    left:3px;
    height: 5px;
    width:10px ;
    border: solid white;
    border-width:0 0 3px 3px;
    color: #fff;
    text-align: center;
    transform: rotate(-45deg);
    
 }
 /****************************************/
 .block_check_module{
    display: inline-block;
    position: relative;
    padding-left: 35px;
    padding-right: 5px;
    line-height: 30px;
    min-width: 50px;
    height: 30px;
    box-sizing: border-box;
    font-size: 17px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    margin-bottom: 22px;
   
    /*background: red;*/
   }
   
   .ck_input{
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    cursor: pointer;
   }
   .checkperso_module{
    position: absolute;
    left: 0;
    top: 0;
    height: 25px;
    width: 25px;
    cursor: pointer;
    background: rgb(249, 249, 249);
    border-radius: 25px;
    text-align: center;
   
   }
   .block_check_module:hover{
    color: rgb(252, 1, 1);
 }
   .block_check_module:hover .checkperso_module{
       background: rgb(237, 237, 237);
    }
    .block_check_module input:checked ~.checkperso_module{
       background: rgb(252, 1, 1) !important;
         color: #fff;
    }
    .checkperso_module:after{
       transition: all 0.5s;
       position: absolute;
       content: "";
       top: 9px;
       left:9px;
       height: 5px;
       width:8px ;
       border: solid white;
       border-width:0 0 3px 3px;
       color: #fff;
       text-align: center;
       opacity: 0;
 
       
    }
    .block_check_module input:checked ~.checkperso_module:after{
       opacity: 1;
       transform: rotate(-45deg);
    }
   
   .ck_input{
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    cursor: pointer;
   }
 
  
    .choix_mode_paiement input:checked ~.checkperso_mode_paiement:after{
        opacity: 1;
       transform: rotate(-45deg);
    }
 /****************************************/
   
 #jour{
    position: absolute;
    top:-25px;
    padding: 3px 7px;
    border-radius: 15px;
    color: #fff;
    right: 6px;
    font-size: 10px !important;
    display:inline-block;
   background: #cf9d15;
    
   }
   .info{
    position: relative;
    display: flex;
    align-items: center;
    height:40px;
  
    background: rgba(0, 0, 0, 0.03);
   }
   .info #in1{
    position: absolute;
    width: 130px;
    top:0;
    bottom: 0;
    left: 0;
    background: #b21f2d;
    color: white;
    display: flex;
    border-radius: 0 25px 25px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   }
   .info #in2{
    position: absolute;
    width: calc(100% - 130px );
    padding-left: 8px ;
    padding-right: 8px;
    box-sizing: border-box;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
   }
  
  
    .bloc_input{
        border-radius:6px;
        padding:7px 5px 7px 30px;
        background:#fff; 
        position:relative;
       /*box-shadow:0 1px 7px rgba(0,0,0,.05);*/
        margin-top:7px;
        margin-bottom:10px;
        border:1px solid rgba(220, 220, 220, 0.729);
  
    }  
  
      
    .bloc_area{
      border-radius:6px;
      padding:8px 0 0 30px;
      background:#fff; 
      position:relative;
      box-shadow:0 1px 7px rgba(0,0,0,.05);
      margin-top:7px;
      margin-bottom:10px;
      border:1px solid rgba(255, 0, 0, 0.729);
      min-height: 120px;
  
  } 
    .bloc_input i{
         position:absolute;
          left:5px;
          color:rgba(255, 0, 0, 0.729);
   }  
   .bloc_area i{
    position:absolute;
     left:5px;
     top:45%;
     bottom: 0;
     margin:auto 0;
     color:rgba(255, 0, 0, 0.729);
  }
   
    .floatting-label{
        display:inline-block;
        border-radius:4px;
        pointer-events:none;
        position:absolute;
        color:rgba(44, 44, 44, 0.5);
        left:40px;
        font-size:16px !important;
        padding:0 4px;
        top:28px;
        transform:translateY(-50%);
        transition:all 0.3s
      
    } 
    .bloc_input .floatting-input,.bloc_area .floatting-input{
        padding: 10px;
        border:none;
        outline:none;
        font-size:16px;
        box-sizing:border-box;
        height:40px;
        width:calc(100% - 10px);
  
    }  
    
    .bloc_input .floatting-input:focus ~ .floatting-label , .bloc_area .floatting-input:focus ~ .floatting-label{
        background:#fff;
        top:13px;
     
        font-size:12px !important;
        color:black
    
    } 
    .bloc_input .floatting-input:not(:placeholder-shown) ~ .floatting-label, .bloc_area .floatting-input:not(:placeholder-shown) ~ .floatting-label {
    top:13px;
    font-size:12px !important;
    color:#7f7f7e;
  
    }
  
    .bloc_area .floatting-area{
      padding: 10px;
      border:none;
      outline:none;
      font-size:16px;
      box-sizing:border-box;
      width:calc(100%);
      min-height: 120px;
  
  
  }  
  
  .bloc_area .floatting-area:focus ~ .floatting-label{
      background:#fff;
      top:-4px;
      box-shadow:0 1px 14px rgba(0,0,0,.05);
      font-size:13px !important;
      color:black
  
  } 
  .bloc_area .floatting-area:not(:placeholder-shown) ~ .floatting-label {
    top:-8px;
    font-size:12px !important;
    color:white;
    background:#7f7f7e;
  }
  
  /***********************************************/
  #deconnexion{
    display: none;
  }

  .bloc_inputh{
        border-radius:4px;
        padding:8px 5px 8px 30px;
        background:#fff; 
        position:relative;
        box-shadow:0 1px 7px rgba(0,0,0,.05);
        margin-top:7px;
        margin-bottom:10px;
        border:1px solid rgba(255, 0, 0, 0.729);;
  
    }  
  
      
   
    .bloc_inputh i{
         position:absolute;
          left:5px;
          color:rgba(255, 0, 0, 0.729);
   }  
  
   
   .bloc_inputh .floatting-label{
        display:inline-block;
        border-radius:4px;
        pointer-events:none;
        position:absolute;
        color:rgba(0,0,0,.5);
        left:40px;
        font-size:12px !important;
        padding:4px;
        top:10px;
        transform:translateY(-50%);
        transition:all 0.3s
      
    } 
    .bloc_inputh .floatting-input{
        padding: 10px;
        border:none;
        outline:none;
        font-size:16px;
        box-sizing:border-box;
        height:40px;
        width:calc(100% - 45px);
  
    }  
  
.zone_recherche{
  position: absolute;
  width: 100%;
  background: #fff;
  padding:50px ;
}
/* Google Style Search Box */
  /* Styles de base pour la recherche style Google */
  .google-style-search {
    font-family: Arial, sans-serif;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.search-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 14px;
    height: 44px;
    box-shadow: none;
    transition: box-shadow 0.3s, border-radius 0.3s, border-color 0.3s;
    background-color: #fff;
}

.search-icon {
    display: flex;
    align-items: center;
    padding-right: 12px;
}

.search-icon svg {
    color: #9aa0a6;
    width: 20px;
    height: 20px;
}

#google-style-input {
    flex: 1;
    border: none;
    height: 100%;
    outline: none;
    font-size: 16px;
    color: #202124;
    background-color: transparent;
}

/* Style pour le bouton de suppression */
.clear-button {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    cursor: pointer;
}

.clear-button svg {
    color: #9aa0a6;
    width: 20px;
    height: 20px;
}

.clear-button:hover svg {
    color: #5f6368;
}

#google-style-suggestions {
    position: absolute;
    top: 77%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 6px rgba(32, 33, 36, 0.28);
    z-index: 1000;
    display: none;
    margin-top: -1px;
    border-top: 1px solid #dfe1e5;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item.active {
    background-color: #ebedef;
}

.suggestion-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.suggestion-highlight {
    font-weight: bold;
}

.footer {
    padding: 10px 14px;
    border-top: 1px solid #e8eaed;
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.action-item {
    display: flex;
    align-items: center;
    background-color: #f1f3f4;
    border-radius: 16px;
    padding: 0 12px;
    height: 32px;
    cursor: pointer;
}

.action-item:hover {
    background-color: #e8eaed;
}

.action-item svg {
    margin-right: 8px;
}

.search-by {
    color: #70757a;
    font-size: 13px;
}

/* Newsletter en haut */
.newsletter-banner {
  background-color: #1e1e1e;
  padding: 20px 0;
  position: relative;
  margin-top: 40px;
}

.newsletter-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.newsletter-text {
  flex: 1;
  min-width: 250px;
}

.newsletter-text h3 {
  color: #e74c3c;
  font-size: 20px;
  margin-bottom: 5px;
}
.newsletter-text p {
  color: #ffffff;

}
.newsletter-form {
  flex: 2;
  display: flex;
  gap: 10px;
  min-width: 300px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.newsletter-form input::placeholder {
  color: #bdc3c7;
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  background-color: #e74c3c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #c0392b;
}

/* Styles du footer */
.footer {
  background-color: #121212;
  color: #f5f5f5;
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c, #c0392b);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: #e74c3c;
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e74c3c;
}

.footer-about p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #e74c3c;
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 12px;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: #fff;
}

.footer-contact i {
  margin-right: 10px;
  font-size: 16px;
  color: #e74c3c;
}

.social-links {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #e74c3c;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.payment-methods {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-methods img {
  height: 30px;
  background-color: #333;
  padding: 3px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .newsletter-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  .newsletter-form button {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .social-links {
    justify-content: center;
  }
  
  .footer-section h3 {
    text-align: center;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-about p {
    text-align: center;
  }
  
  .footer-links ul {
    text-align: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}

.entete-produits{
  position: relative;
  display: flex;
  justify-content: space-between;
}
.entete-produits .more-produits{

  color: #fff;
  margin-right: -35px;
  display: block;
 
}