@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  text-shadow: none;
}

input,
textarea,
select,
button,
label {
  text-rendering: auto;
  color: currentcolor;
  -webkit-text-fill-color: currentcolor;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-shadow: none !important;
  -webkit-text-shadow: none !important;
  -moz-text-shadow: none !important;
  -ms-text-shadow: none !important;
  -o-text-shadow: none !important;
  display: inline-block;
  text-align: start;
  font-size: inherit !important;
  font-family: inherit !important;
  background: transparent;
}

input:disabled,
textarea:disabled,
input:disabled::placeholder,
textarea:disabled::placeholder,
input::placeholder,
textarea::placeholder {
  color: currentcolor !important;
  -webkit-text-fill-color: currentcolor !important;
  /* 1. sets text fill to current `color` for safari */
  opacity: 1 !important;
  /* 2. correct opacity on iOS */
  font-family: inherit !important;
}

area {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

strong {
  font-weight: 500;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

html,
body {
  /*font-family: Arial, Helvetica, sans-serif; */
  font-family: futura-pt, sans-serif;
  font-size: 10px;
  font-size: 1rem;
  background-color: #fff;
  font-weight: 400;
  color: #000;
}

body {
  font-size: 1rem;
  line-height: normal;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

strong,
.strong {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
  /*text-align-last: center;
	-webkit-text-align-last: center;
	-moz-text-align-last: center;
	-ms-text-align-last: center;
	-o-text-align-last: center;*/
}

.fll {
  float: left;
}

.flr {
  float: right;
}

.underline {
  text-decoration: underline;
}

.no-mg {
  margin: 0;
}

.auto-mg {
  margin: auto;
}

.gris {
  color: #888;
}

.gris a,
a.gris {
  color: #888;
}

.black {
  color: #000;
}

.black a {
  color: #000;
}

.ml0 {
  margin-left: 0.5rem;
}

.ml1 {
  margin-left: 1rem;
}

.ml2 {
  margin-left: 2rem;
}

.ml3 {
  margin-left: 3rem;
}

.ml4 {
  margin-left: 4rem;
}

.ml5 {
  margin-left: 5rem;
}

.ml6 {
  margin-left: 6rem;
}

.mt0 {
  margin-top: 0.5rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4rem;
}

.mt5 {
  margin-top: 5rem;
}

.mt6 {
  margin-top: 6rem;
}

.mr0 {
  margin-right: 0.5rem;
}

.mr1 {
  margin-right: 1rem;
}

.mr2 {
  margin-right: 2rem;
}

.mr3 {
  margin-right: 3rem;
}

.mr4 {
  margin-right: 4rem;
}

.mb0 {
  margin-bottom: 0.5rem;
}

.mb1 {
  margin-bottom: 1rem;
}

.valt {
  vertical-align: top;
}

.valb {
  vertical-align: bottom;
}

.valm {
  vertical-align: middle;
}

.dinlb {
  display: inline-block;
}

.db {
  display: block;
}

.italic {
  font-style: italic;
}

.red {
  color: #be6154;
  /*#FF7272 old red color / f3b47c */
  -webkit-text-fill-color: #be6154;
}

.pdt0 {
  padding-top: 0.5rem;
}

.pdl0 {
  padding-left: 0.5rem;
}

.pdr0 {
  padding-right: 0.5rem;
}

.pdb0 {
  padding-bottom: 0.5rem;
}

.pdl1 {
  padding-left: 1rem;
}

.pdr1 {
  padding-right: 1rem;
}

.pdb1 {
  padding-bottom: 1rem;
}

.no-disp {
  display: none;
}

.border {
  border: 1px solid #fff;
}

.linh0 {
  line-height: 0.6rem;
}

.linh1 {
  line-height: 1rem;
}

.linh1-5 {
  line-height: 1.5rem;
}

.linh2 {
  line-height: 2rem;
}

.font-small {
  font-size: 0.8rem;
}

.font-medium {
  font-size: 1rem;
}

.font-big {
  font-size: 1.2rem;
}

.clear {
  clear: both;
}

.green {
  color: #19c719;
  -webkit-text-fill-color: #19c719;
}

/****************************************************************** POP UP LANGUAGE ******************************************/
.country-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5); 
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: .5rem 2rem 2rem;
    max-width: clamp(26rem, 90%, 50rem);
    width: 90%;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: center;
    color: #333;
}

.country-popup button{
    background-color: transparent;
    cursor: pointer;
}

.containerX {
    display: flex;
    justify-content: flex-end;
}

.country-popup h2{
    font-size: 2.5rem;
    color: #452010;
    font-weight: 400;
    white-space: normal; /* respeta los espacios normales */
    word-break: keep-all;
}

.country-popup p{
    white-space: normal; /* respeta los espacios normales */
    word-break: keep-all;
    font-size: 2rem;
}

.country-popup .options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:2rem;
    gap: 1rem;
    
}

.country-popup .options button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #452010;
    position: relative;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

/* Línea subrayada animada */
.country-popup .options button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: #452010;
    transition: width 0.3s ease;
}

/* Al pasar el ratón se pinta la línea */
.country-popup .options button:hover {
    color: #000;
}

.country-popup .options button:hover::after {
    width: 100%;
}



/****************************** header ******************************/
.header {
  display: block;
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  border: none;
  font-size: 1rem;
  color: #000;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header.sticky {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
}

.header .header_P1 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  column-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 1.2rem 1rem;
  text-align: center;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.39); */
  position: relative;
}

/* .header .header_P1::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(80px);
	-webkit-backdrop-filter: blur(80px);
} */
.header .header_P1 img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

.header .header_P1 a {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  color: #000;
  text-decoration: none;
  text-align: inherit;
  font-weight: 400;
  outline: none;
}

.header .header_P1 .home {
  width: 40%;
  height: auto;
  text-align: left;
  z-index: 8;
}

.header .header_P1 .truck_stock_menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  column-gap: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

.header .header_P1 .truck_stock_menu .panier {
  width: 45px;
  height: auto;
  text-align: left;
  position: relative;
  display: none;
}

.header .header_P1 .truck_stock_menu .panier.active {
  display: block;
}

.header .header_P1 .truck_stock_menu .panier .cart {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  color: #000;
  margin: 0 auto;
  padding: 0;
  font-size: 1rem;
  z-index: 3;
  position: absolute;
  top: 0;
  right: 1.9rem;
}

.header .header_P1 .truck_stock_menu .stock {
  width: 70px;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
}

.calc .stock {
  padding: 0.5rem 0;
  border-top: 0.1rem solid #000000;
  margin-top: 0.5rem;
}

.stock .info-stock {
  text-align: justify;
  font-size: 1rem;
  color: #4520108c;
}

.header .header_P1 .truck_stock_menu .stock img.img1 {
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 1;
}

.header .header_P1 .truck_stock_menu .stock img.img2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  opacity: 1;
}

.header .header_P1 .truck_stock_menu .stock.active .img1 {
  filter: alpha(opacity=100);
  opacity: 1;
}

.header .header_P1 .truck_stock_menu .stock.active .img2 {
  filter: alpha(opacity=0);
  opacity: 0;
}

.header .header_P1 .truck_stock_menu .menu_close {
  width: 30px;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: right;
}

.header .header_P1 .truck_stock_menu .menu_close img.img1 {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  filter: alpha(opacity=0);
  opacity: 0;
}

.header .header_P1 .truck_stock_menu .menu_close img.img2 {
  width: 30px;
  height: auto;
  opacity: 1;
}

.header .header_P1 .truck_stock_menu .menu_close.close .img1 {
  filter: alpha(opacity=100);
  opacity: 1;
  z-index: 9;
}

.header .header_P1 .truck_stock_menu .menu_close.close .img2 {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* ============================
MENU DROPDOWN CONTENT WHICH HAS BEEN BROUGHT FROM FOOTER
============================ */
.Spanel .informationSites .service_mobile {
  font-size: 0.7rem;
}
.service_mobile {
  display: flex;
  flex-direction: column;
  color: white;
  gap: 2em;
  font-weight: 300;
  width: 100%;
}

.service_mobile a {
  text-decoration: none;
  font-weight: 300;
  color: white;
  font-size: 1.6em;
}

.service_mobile p {
  font-size: 1.6em;
}

.service_mobile .subservice_mobile {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 2em;
}

.subservice_mobile p {
  margin: 0;
}

.informationBesidesFlag {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: fit-content;
  text-align: left;
}

.informationBesidesFlag > div {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.linkContact {
  text-decoration: underline;
}

.closedP {
  font-size: 1.2em;
  color: #dab431;
}

/* ============================
HEADER DROPDOWN CONTENT NOT FROM FOOTER
============================ */
.header .panel {
  display: none;
  position: absolute;
  top: 76px; /* mantienes esto para la posición */
  left: 0;
  right: 0;
  height: 100vh;
  max-height: calc(100vh - 3rem); /* altura máxima, no fija */
  text-align: center;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  z-index: 9;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);

  overflow-y: auto; /* solo scroll vertical si hace falta */
  -webkit-overflow-scrolling: touch; /* para scroll suave en iOS */
}

/* .header .Spanel {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 2rem 1.5rem;
	text-align: center;
} */

.header .Spanel {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
  max-height: 100%; /* ajusta máximo alto al contenedor padre */
  text-align: center; /* dejé solo uno para evitar conflicto */
  margin: 0 auto;
  padding: 2rem 1.5rem 2rem 1.5rem;

  overflow-y: scroll; /* scroll vertical siempre visible */
  -webkit-overflow-scrolling: touch; /* scroll suave en iOS */
}

.header .Spanel > * {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  color: inherit;
  font-size: 1rem;
}

.header .Spanel .liens {
  display: flex;
  gap: 0.5rem;
  height: fit-content;
}

.header .Spanel .liens p {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  row-gap: 1rem;
}

.header .Spanel .liens p a {
  width: 100%;
  text-align: left;
}

.header .Spanel .liens p:last-child {
  padding-left: 0.5rem;
  border-left: 1px solid #fff;
}

.header .Spanel .liens img {
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 0.5rem;
}

.header .Spanel .liens .active {
  color: #000;
  font-weight: 500;
}

.header .Spanel a {
  color: inherit;
  text-decoration: none;
  outline: none;
  margin: 0 auto;
  padding: 0;
}

.header .Spanel .informationSites a {
  margin: 0;
}

.header .Spanel .flagsEnd {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9em;
}

.header .Spanel .flagsEnd a {
  display: flex;
  align-items: center;
  margin: 0;
}

.header .Spanel .flagsEndMedia {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header .Spanel .showroom {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #fff;
}

.header .Spanel .webs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: fit-content;
  align-items: center;
  align-content: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
  padding: 0;
  text-align: center;
}

.header .Spanel .webs a {
  width: calc(50% - 1rem);
  background-color: #fff;
  color: #000;
  text-align: center;
  text-decoration: none;
  outline: none;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}

.header .Spanel .webs a.active {
  color: white;
  background-color: transparent;
  border: 1px solid white;
  font-weight: 500;
}

.header .Spanel .service {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0;
  line-height: normal;
}

.header .Spanel .serviceplus {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  column-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  text-align: center;
}

.header .Spanel .media_lang_sign {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  row-gap: 0.5rem;
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.header .Spanel .media {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  column-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.header .Spanel .media img {
  vertical-align: bottom;
}

.header .Spanel .media a {
  margin: 0;
  padding: 0;
}

.header .Spanel .languages {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  column-gap: 0.5rem;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.header .Spanel .languages img {
  vertical-align: bottom;
}

.header .Spanel .languages a {
  margin: 0;
  padding: 0;
}

.header .Spanel .languages a.active {
  border: 8px solid rgb(214, 214, 214);
  border-radius: 0.7rem;
  -webkit-border-radius: 0.7rem;
  -moz-border-radius: 0.7rem;
  -ms-border-radius: 0.7rem;
  -o-border-radius: 0.7rem;
}

.header .Spanel .sign {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

.header .Spanel .underline {
  text-decoration: underline;
}

.header .popupInfo {
  display: none;
}

.affiche {
  text-align: center;
  color: #f64f67;
  /*#f3b47c*/
}

/******************************************************************************* Main *****************************************************************************************/
.main {
  position: relative;
  margin: 0;
  padding: 0;
  padding-bottom: 2rem;
  font-size: 1rem;
}

/****************************************************************************** Page Index ************************************************************************************/
.page_index {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  overflow: hidden;
  font-size: 1rem;
}

.page_index .index_video {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
}

.page_index .index_video video {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.page_index .text {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  margin-top: 0.5rem;
  padding: 0 1rem;
  text-align: left;
  color: #000;
}

.page_index .text a {
  font-size: 1rem;
  color: #a8a8a8;
  text-decoration: none;
}

.page_index .text h1 {
  text-align: left;
  color: #5e5e5e;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: normal;
}

.page_index .shapes {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 1.5rem;
  padding: 0.5rem 0.5rem;
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
}

.page_index .shapes h2 {
  text-align: left;
  color: #5e5e5e;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: normal;
}

.page_index .shapes .shapes_slider1 {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.page_index .shapes .shapes_slider1 .pic1 {
  position: relative;
}

.page_index .shapes .shapes_slider1 .lefted {
  position: absolute;
  top: 0.7rem;
  left: 1rem;
  z-index: 1;
}

.page_index .terra_colors {
  display: block;
  text-align: left;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.page_index .terra_colors h2 {
  text-align: left;
  color: #5e5e5e;
  font-weight: 500;
  font-size: 1.4rem;
}

.page_index .colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
}

.page_index .colors .pics {
  width: calc((100% - 1rem) * 1 / 3);
  height: auto;
  display: block;
  color: #5e5e5e;
}

.page_index .colors .pics .colors_slider {
  display: block;
  min-width: 0;
}

.page_index .colors .pics .colors_slider img {
  width: 100%;
  height: auto;
  /*padding-right: 10px;
    padding-bottom: 10px;
    filter: drop-shadow(6px 6px 3px rgba(0, 0, 0, .5));*/
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #8c8a8a;
}

.page_index .colors .pics .colors_slider .slick-dots {
  top: 0.5rem;
  text-align: right;
  padding-right: 1rem;
}

.page_index .colors .pics .colors_slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}

.page_index .colors .pics .colors_slider .slick-dots li button {
  width: 8px;
  height: 8px;
}

.page_index .text_img {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 2rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f6f5f1;
}

.page_index .text_img > * {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.page_index .text_img .text {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: left;
  color: #000;
}

.page_index .text_img .text h2 {
  text-align: left;
  color: #756c52;
  font-weight: 500;
  font-size: 1.4rem;
}

.page_index .text_img .text img {
  margin-top: 0.5rem;
}

.page_index .text_img .text p {
  margin-top: 0.2rem;
  color: #756c52;
  font-size: 1rem;
}

.page_index .text_img .text p.P2 {
  margin-top: 1rem;
  color: #756c52;
  font-size: 1rem;
}

.page_index .text_img .text video {
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 0.5rem;
  padding: 0;
}

.page_index .text_img .text p a {
  margin-top: 1rem;
  padding: 0;
  color: #756c52;
  font-size: 1rem;
  text-decoration: none;
}

.page_index .text_img .text p a.Pimg {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  column-gap: 0.5rem;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  text-align: left;
  color: #756c52;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}

.page_index .text_img .text .sp2 {
  color: #756c52;
  font-size: 1rem;
}

.page_index .gallery_terra {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(30, 1fr);
  grid-auto-columns: 1fr;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "div1 div1"
    "div1 div1"
    "div2 div6"
    "div2 div6"
    "div10 div10"
    "div10 div10"
    "div7 div4"
    "div7 div8"
    "div9 div9"
    "div5 div5"
    "div15 div15"
    "div15 div15"
    "div28 div20"
    "div12 div20"
    "div3 div3"
    "div16 div14"
    "div16 div22"
    "div23 div23"
    "div24 div24"
    "div24 div24"
    "div13 div13"
    "div19 div19"
    "div18 div21"
    "div26 div21"
    "div17 div17"
    "div25 div25"
    "div25 div25"
    "div11 div11"
    "div11 div11"
    "div27 div27";
}

.page_index .gallery_terra > div {
  position: relative;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}

.div1 {
  grid-area: div1;
}

.div2 {
  grid-area: div2;
}

.div3 {
  grid-area: div3;
}

.div4 {
  grid-area: div4;
}

.div5 {
  grid-area: div5;
}

.div6 {
  grid-area: div6;
}

.div7 {
  grid-area: div7;
}

.div8 {
  grid-area: div8;
}

.div9 {
  grid-area: div9;
}

.div10 {
  grid-area: div10;
}

.div11 {
  grid-area: div11;
}

.div12 {
  grid-area: div12;
}

.div13 {
  grid-area: div13;
}

.div14 {
  grid-area: div14;
}

.div15 {
  grid-area: div15;
}

.div16 {
  grid-area: div16;
}

.div17 {
  grid-area: div17;
}

.div18 {
  grid-area: div18;
}

.div19 {
  grid-area: div19;
}

.div20 {
  grid-area: div20;
}

.div21 {
  grid-area: div21;
}

.div22 {
  grid-area: div22;
}

.div23 {
  grid-area: div23;
}

.div24 {
  grid-area: div24;
}

.div25 {
  grid-area: div25;
}

.div26 {
  grid-area: div26;
}

.div27 {
  grid-area: div27;
}

.div28 {
  grid-area: div28;
}

.div29 {
  grid-area: div29;
}

.div30 {
  grid-area: div30;
}

.page_index .gallery_terra div a {
  flex: 1;
}

.page_index .gallery_terra .lazy {
  opacity: 0;
}

.page_index .gallery_terra img,
.page_index .gallery_terra video {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: bottom;
  border: none;
  transition: opacity 0.5s linear 0.2s;
  -webkit-transition: opacity 0.5s linear 0.2s;
  -moz-transition: opacity 0.5s linear 0.2s;
  -ms-transition: opacity 0.5s linear 0.2s;
  -o-transition: opacity 0.5s linear 0.2s;
  opacity: 1;
}

#visage-caption {
  color: #ffffff !important;
  font-size: 1rem !important;
}

#visage-caption a {
  color: inherit !important;
  font-size: 1rem !important;
}

/**************  pop sizes **************/
.pop_info {
  display: none;
  padding: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  height: auto;
  color: inherit;
  font-size: 1rem;
  overflow: visible;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pop_info button {
  background-color: transparent;
  position: absolute;
  width: auto;
  top: -0.7rem;
  right: -0.7rem;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  cursor: pointer;
  z-index: 9;
}

#getinfo1 .block,
#getinfo2 .block {
  display: flex;
  flex-direction: column;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  row-gap: 2rem;
  margin: 0 auto;
  padding: 1rem 0.5rem;
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
  font-size: 1.2rem;
  color: #fff;
}

#getinfo1 .block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-content: space-between;
  padding: 1rem 1rem;
  color: #000;
}

#getinfo1 .allshapes {
  width: 100%;
  height: auto;
  aspect-ratio: 1080/1698;
  vertical-align: bottom;
}

#getinfo1 .block p,
#getinfo2 .block p {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
}

#getinfo1 .block a,
#getinfo2 .block a {
  color: inherit;
  text-decoration: underline;
}

#getinfo2 .block .dekstop {
  width: 40%;
  height: auto;
  aspect-ratio: 562/497;
}

/****************************************************************************** Page Pose ************************************************************************************/
.page_poser_finitions {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-size: 1rem;
}

.page_poser_finitions .poseheader {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  background-color: #faf9f8;
}

.page_poser_finitions .poseheader .video {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.page_poser_finitions .poseheader .video video {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: bottom;
}

.page_poser_finitions .poseheader .text {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1rem 1rem;
  text-align: center;
}

.page_poser_finitions .poseheader .text h2 {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: normal;
  text-align: left;
}

.page_poser_finitions .poseheader .text p {
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  text-align: left;
}

.page_poser_finitions .poseheader .text a {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  text-align: center;
  color: #fff;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  background-color: #5e5e5e;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.page_poser_finitions .poseheader .text ul {
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  padding-left: 2rem;
  list-style: disc;
  overflow: visible;
  text-align: left;
}

.page_poser_finitions .poseheader .text ul li {
  list-style: disc;
  overflow: visible;
}

.page_poser_finitions h1 {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: normal;
}

.page_poser_finitions .block {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: left;
}

.page_poser_finitions .block h2 {
  display: block;
  width: 100%;
  margin: 0;
  margin-top: 1.5rem;
  padding: 0;
  text-align: left;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: normal;
}

.page_poser_finitions .block h3 {
  display: block;
  width: 100%;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  text-align: left;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: normal;
}

.page_poser_finitions .posefooter {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 1rem 1rem;
  text-align: left;
  color: #000;
  font-size: 1rem;
  background-color: #faf9f8;
}

.page_poser_finitions .posefooter h2 {
  text-align: left;
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}

.page_poser_finitions .posefooter p {
  text-align: left;
  color: #000;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  font-style: italic;
}

.produits_entretien > h2 {
  display: inline-flex;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  background-color: #5e5e5e;
  /* margin: 0 auto; */
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.produits_entretien .sealer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 2rem;
  row-gap: 1.5rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* margin-top:2rem; */
  padding: 1rem 1rem;
  font-size: 1rem;
  background-color: #faf9f8;
  display: none;
}

.produits_entretien .sealer li {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 0.3rem;
  width: calc((100% - 2rem) * 1 / 2);
  margin: 0;
  padding: 0;
}

.produits_entretien .sealer li p {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.produits_entretien .sealer .type {
  text-align: center;
}

.produits_entretien .sealer .prix_litre {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  column-gap: 0.5rem;
  font-size: 0.8rem;
}

.produits_entretien .sealer .prix_litre span {
  text-align: left;
}

.produits_entretien .sealer .prix_litre span:last-of-type {
  text-align: right;
}

.produits_entretien .sealer .add_product {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  column-gap: 0.5rem;
}

.produits_entretien .sealer .add_product input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
  background-color: #fff;
  font-weight: 500;
  color: #232323;
  text-align: center;
  border: 1px solid #d0d0d0;
  border-radius: 0.2rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
}

.produits_entretien .sealer .add_product a {
  width: auto;
  margin: 0;
  padding: 0;
  text-align: right;
  font-weight: 500;
  text-decoration: underline;
}

.produits_entretien .sealer .info a {
  display: block;
  margin-top: 1rem;
  padding: 0.5rem 0;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  text-align: center;
}

.produits_entretien .sealer .plusinfo {
  display: none;
  text-align: justify;
}

/************************************************************************* Page Fiche Technique *******************************************************************************/
.page_FTechnique {
  display: flex;
  width: 100%;
  height: 100vh;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  font-size: 1.8rem;
  color: #000;
}

/****************************************************************************** Page Stock ************************************************************************************/
.page_stock {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  overflow: visible;
}

.page_stock .header_stock {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 1rem;
  overflow: visible;
  color: #000;
}

.page_stock .header_stock h1 {
  display: block;
  margin: 0 auto;
  margin-top: 5.5rem;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  color: #000;
  line-height: normal;
  font-style: normal;
  font-weight: 400;
}

.header_stock .filtres {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  column-gap: 1rem;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  overflow: visible;
  position: relative;
}

.header_stock .filtres li {
  font-size: 1rem;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow: visible;
  width: auto;
  height: 2.5rem;
}

.header_stock .filtres .changeface {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  text-align: center;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.header_stock .filtres .changeface .actualface1 {
  position: relative;
}

.header_stock .filtres .changeface .actualface1 img {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: auto;
  height: 1.8rem;
  transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  border: 1px solid #fff;
}

.header_stock .filtres .changeface .actualface1 img.img1 {
  filter: alpha(opacity=100);
  opacity: 0;
}

.header_stock .filtres .changeface .actualface1 img.img2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}

.header_stock .filtres .changeface .actualface1.active img.img2 {
  filter: alpha(opacity=0);
  opacity: 0;
}

.header_stock .filtres .changeface .actualface1.active img.img1 {
  filter: alpha(opacity=0);
  opacity: 1;
}

.header_stock .filtres .shapes_terra {
  margin: 0;
  padding: 0;
  text-align: right;
  background-color: #fff;
}

.header_stock .filtres .shapes_terra input {
  display: none;
}

.header_stock .filtres .shapes_terra label {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.header_stock .filtres .shapes_terra ul {
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  margin: 0 auto;
  padding: 0 0.5rem;
  color: #000;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  background: #fff;
  z-index: 4;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: visible;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  text-align: start;
}

.header_stock .filtres .shapes_terra ul li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  height: auto;
  border: none;
  width: 20%;
  height: auto;
  background: #fff;
  margin: 0 auto;
  padding: 0;
  cursor: pointer;
}

.header_stock .filtres li.shapes_terra ul li img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
#colour_terra0:checked + label > img,
#shapes_terra0:checked + label > img,
#shapes_terra1:checked + label > img {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  vertical-align: middle;
}

.header_stock .filtres .shapes_terra div ul li.active img {
  border: 2px solid #000;
}

#resultats {
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
  overflow: visible;
  background-color: #fff;
  /*FAF7F3*/
}

#resultats .w100 {
  width: 97%;
  height: auto;
  margin: 0rem auto 1rem auto;
  padding: 0;
  text-align: center;
  display: none;
}

#resultats h2 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  text-align: left;
}

#resultats h2 span {
  font-size: 1.8rem;
  font-weight: 400;
}

#resultats ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 4rem;
  font-size: 0;
  text-align: left;
}

#resultats ul li {
  text-align: center;
  font-size: 1rem;
}

#resultats ul.terra > li {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  border: 0.25rem solid #fff;
}

#resultats ul.terra > li img {
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#resultats ul.terra > li.active img {
  border: 1px solid #000;
}

#resultats .terra .picfaces {
  position: relative;
}

#resultats .terra .picfaces img.img_faceB {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: auto;
}

#resultats .terra .picfaces img.img_faceA {
  z-index: 2;
  width: 100%;
  height: auto;
  opacity: 1;
}

#resultats .terra .picfaces.active img.img_faceA {
  opacity: 0;
}

#resultats .terra .picfaces.active img.img_faceB {
  opacity: 1;
}

#resultats ul.terra li .red {
  color: #ff0000;
}

#resultats ul.terra li.border {
  position: relative;
  text-align: center;
}

#resultats ul.terra li.border p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

/********************* getdetail ***************/
#resultats .getdetail {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
  font-size: 1rem;
  white-space: normal;
  color: #000;
  background-color: #fff;
}

#resultats .getdetail .block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  row-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  overflow: hidden;
  color: #000;
  font-size: 1rem;
  position: relative;
  background-color: #fff;
}

#resultats .getdetail .w100_close {
  float: right;
  cursor: pointer;
  margin-bottom: .5rem;
}

#resultats .getdetail .block > li {
  flex: 1;
  padding: 1.5rem 1.5rem;
  background-color: #f7f2eb;
}

#resultats .block h1 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  height: auto;
  text-align: left;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  line-height: normal;
}

#resultats .getdetail .block .cadre {
  flex: 1;
  padding: 0;
  background-color: #fff !important;
  position: relative;
}

#resultats .block .cadre img.zoom {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 2rem;
  z-index: 4;
}

#resultats .block .cadre .easyzoom {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
}

#resultats .block .cadre .bigsface {
  display: flex;
  flex: 1;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  position: relative;
}

#resultats .block .cadre img {
  max-width: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

#resultats .block .cadre img.img_FaceB {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  z-index: 1;
  width: 100%;
}

#resultats .block .cadre img.img_FaceA {
  width: 100%;
  height: auto;
  opacity: 1;
  z-index: 2;
}

#resultats .block .bigsface.active img.img_FaceA {
  opacity: 0;
}

#resultats .block .bigsface.active img.img_FaceB {
  opacity: 1;
}

#resultats .block .cadre .actualface2 {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

#resultats .block .cadre .changefacebig {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  z-index: 9;
}

#resultats .block .cadre.pics {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  text-align: left;
  column-gap: 0.3rem;
  overflow-x: scroll;
}

#resultats .block .cadre.pics img {
  width: 100px;
  height: auto;
}

#resultats .block .cadre .indication {
  display: block;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-size: 0.8rem;
}

#resultats .block .cadre .changefacebig img {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  border: 1px solid #faf7f3;
}

#resultats .block .cadre .changefacebig img.img1 {
  filter: alpha(opacity=100);
  opacity: 0;
}

#resultats .block .cadre .changefacebig img.img2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}

#resultats .block .cadre .changefacebig.active img.img2 {
  filter: alpha(opacity=0);
  opacity: 0;
}

#resultats .block .cadre .changefacebig.active img.img1 {
  filter: alpha(opacity=0);
  opacity: 1;
}

#resultats .block .info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-end;
  row-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

#resultats .block .info ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

#resultats .block .info ul li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0;
  text-align: left;
  white-space: normal;
  font-size: 1rem;
}

#resultats .block .info ul li > span {
  flex: 1;
}

#resultats .block .info ul li > span:last-of-type {
  text-align: right;
}

#resultats .block li.info ul li font {
  font-weight: 400;
}

#resultats .block .info ul li input {
  text-align: right;
  width: 4rem;
  margin: 0;
  background-color: transparent;
  background-color: #f7f2eb;
}

#resultats .block .info input.brd {
  padding: 0.3rem;
  text-align: center;
  border: 1px solid #000;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  min-width: 0;
  background-color: #fff;
}

#resultats .block .info .msg {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  color: #ff0000;
}

#resultats .block .info .bottom {
  flex: none;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

#resultats .block .info .bottom .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 0 auto;
  font-size: 16px;
  height: 50px;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}

#resultats .block #choixpaquet {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}

#resultats .block #choixpaquet li {
  margin: 0;
  padding: 0;
}

#resultats .block #choixpaquet label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
  color: #ff0000;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

#resultats .block #choixpaquet input.radio {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  margin-right: 0.3rem;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  content: "";
}

#resultats .block #choixpaquet input.radio:checked {
  background-color: #000;
}

/******* formulaire *******/
#resultats .block #divsavechoose {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  list-style: none;
  color: #000;
  background-color: #fff;
  display: none;
}

#resultats .block #divsavechoose li {
  display: block;
  text-align: left;
  padding: 0;
  margin: 0.5rem 0 0;
  width: auto;
  height: auto;
  border: 0;
  overflow: hidden;
  font-size: 0;
}

#resultats .block #divsavechoose #erreursavechoose {
  font-size: 1rem !important;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

#resultats .block #divsavechoose label {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  height: auto;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 1rem !important;
  color: #000;
  font-weight: normal;
}

#resultats .block #divsavechoose input {
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  height: 2rem;
  margin: 0;
  padding: 0 0.2rem;
  font-size: 1rem !important;
  font-weight: 400;
  text-align: left;
  color: #000;
  -webkit-text-fill-color: #000;
  background-color: #fff;
  border: 1px solid #bdbdbd;
}

#resultats .block #divsavechoose textarea {
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  height: 4rem;
  margin: 0;
  padding: 0 0.2rem;
  font-size: 1rem !important;
  font-weight: 400;
  text-align: left;
  color: #000;
  -webkit-text-fill-color: #000;
  background-color: #fff;
  border: 1px solid #bdbdbd;
}

#resultats .block #divsavechoose input.submit {
  font-size: 1rem;
  text-decoration: none;
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  outline: none;
  cursor: pointer;
  border: 0;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 500;
  background-color: #5e5e5e;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  cursor: pointer;
  float: right;
}

/***************** tooltips *****************/
.tooltip1 span,
.tooltip2 span,
.tooltip3 span,
.tooltip4 span,
.tooltip5 span,
.tooltip6 span {
  z-index: 3;
  font-size: 0.8rem;
  display: none;
  padding: 10px 15px;
  line-height: normal;
  font-weight: normal;
  text-align: left;
  white-space: normal;
  -moz-box-shadow: 0px 0px 10px 0px #c0c0c0;
  -webkit-box-shadow: 0px 0px 10px 0px #c0c0c0;
  -o-box-shadow: 0px 0px 10px 0px #c0c0c0;
  box-shadow: 0px 0px 10px 0px #c0c0c0;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#c0c0c0, Direction=NaN, Strength=10);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.tooltip1 span {
  margin-top: 20px;
  margin-left: -120px;
  width: 200px;
}

.tooltip2 span {
  margin-top: 23px;
  margin-left: -80px;
  width: 192px;
}

.tooltip3 span {
  margin-top: 27px;
  margin-left: -130px;
  width: 260px;
}

.tooltip4 span {
  margin-top: 20px;
  margin-left: -130px;
  width: 260px;
}

.tooltip5 span {
  margin-top: -140px;
  margin-left: -110px;
  width: 200px;
}

.tooltip6 span {
  margin-top: -136px;
  margin-left: -171px;
  width: 373px;
}

.tooltip1 span p,
.tooltip2 span p,
.tooltip3 span p {
  padding: 0;
  margin: auto;
  font-weight: 500;
  text-align: center;
}

.tooltip1 span span,
.tooltip2 span span,
.tooltip3 span span {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

.tooltip1:hover span,
.tooltip2:hover span,
.tooltip3:hover span,
.tooltip4:hover span,
.tooltip5:hover span,
.tooltip6:hover span {
  display: inline;
  position: absolute;
  border: 0;
  color: #000;
  background: #fff;
}

.tooltip4:hover span{
 margin: 0 auto;   
}

.tooltip4:hover span {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.callout {
  z-index: 3;
  position: absolute;
  border: 0;
  top: -7px;
  left: 105px;
}

.tooltip2 span img {
  z-index: 3;
  position: absolute;
  border: 0;
  top: -8px;
  left: 64px;
}

.tooltip3 span img,
.tooltip4 span img {
  z-index: 3;
  position: absolute;
  border: 0;
  top: -8px;
  left: 115px;
}

.tooltip5 span img {
  z-index: 3;
  position: absolute;
  border: 0;
  top: 145px;
  left: 90px;
}

.tooltip6 span img {
  z-index: 3;
  position: absolute;
  border: 0;
  top: 135px;
  left: 152px;
}

/***************** end tooltips *****************/

/********************************************************************* Page Panier *********************************************************************/
.panier {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  font-size: 1rem;
}

.panier .TPanier {
  width: 100%;
  text-align: left;
  font-weight: normal;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0;
  display: table;
  table-layout: auto;
}

.panier .TPanier th {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
  padding: 0;
  line-height: normal;
  font-style: normal;
  position: relative;
}

.panier .TPanier th img {
  position: absolute;
  left: 0;
  top: 50%;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.panier .TPanier tr.block {
  display: table;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1rem 0.5rem 1rem;
  border: 1px solid #000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
}

.panier .TPanier td {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  vertical-align: top;
  border: 0;
}

td.w3 {
  vertical-align: middle !important;
}

/* .panier .TPanier td table tr{
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
} */
.panier .TPanier td table td {
  flex-grow: 1;
  line-height: 1.3rem;
  padding-bottom: 0.5rem;
}

.panier .TPanier td h2 {
  font-size: 1.2rem;
  text-align: left;
  font-weight: 500;
  margin: 0 auto;
  padding: 0;
  line-height: normal;
  font-style: normal;
}

.panier .TPanier .block.main{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panier .TPanier .block.main td.img{
  width: 90%;
  margin: 0 auto;
}

.panier_page .panier .TPanier td.img .divButtons a{
  width: fit-content;
}

.panier_page .panier .TPanier td.img .divButtons img{
  width: 2rem;
  height: auto;
}

.panier .TPanier .block.main .productImage{

  width: 20rem;

}

.panier .TPanier .block.main .w1{
  margin: 0;
}

.panier .TPanier td.img {
  width: 25%;
  vertical-align: middle;
  padding-right: 2%;
  font-size: 0;
  text-align: center;
}

.panier .TPanier td.img a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  margin-top: 0.5rem;
  padding: 0;
  width: 45%;
  height: auto;
  margin-right: 1px;
  margin-left: 2px;
}

/* .panier .TPanier td.img a:first-of-type{
	margin-right:10%;
} */
.panier .TPanier td.img img {
  width: 100%;
  vertical-align: bottom;
}

.panier .TPanier td > table {
  min-width: 100%;
}

.panier .TPanier td input.metrage,
.panier .TPanier td input.litres,
.panier .TPanier td input.metrage_plinth {
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  color: #000;
  -webkit-text-fill-color: #000;
  border: none;
  font-weight: normal;
  text-align: right;
  width: 3rem;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.panier .TPanier td .choixpaquet {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
  text-align: left;
}

.panier .TPanier td .choixpaquet li {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-size: 1rem;
}

.panier .TPanier td .choixpaquet li label {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  color: #be6154;
}

.panier .TPanier td .choixpaquet li input.radio {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  margin-right: 0.3rem;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  content: "";
}

.panier .TPanier td .choixpaquet li input.radio:checked {
  background-color: #000;
}

.panier .TPanier tr.separation {
  height: 0.3rem;
}

/* .panier .TPanier td a{
	color: #007bff;
	font-size: inherit;
	font-style: normal;
	text-decoration:none;
	font-weight:inherit;
} */

.panier .TPanier td table tr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.panier .sauvg a {
  flex-grow: 1;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0.5rem 0;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  white-space: normal;
}

.panier .TPanier td .cadr {
  max-width: 80%;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
}

.sauvg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.5rem;
}

.sauvg a.cmd {
  color: #fff !important;
  background-color: #000;
}

.panier .TPanier td a.black {
  display: block;
  margin: 0;
  padding: 0.5rem 0;
  text-align: center;
  border: 1px solid #000;
  color: #fff;
  background-color: #000;
}

.panier .TPanier td input.checkbox {
  display: inline-block;
  vertical-align: sub;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  font-size: 1rem !important;
  position: relative;
  border-radius: 1px;
}

.panier .TPanier td input.checkbox:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  background-color: #000;
  color: #fdfdfd;
  -webkit-text-fill-color: #fff;
  /* content: "\2714"; */
  content: "✓";
  text-align: center;
}

.panier .TPanier td .tree {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;
}

.panier .TPanier td .tree a {
  text-decoration: underline;
}

.panier .TPanier .choose_plinthes {
  padding-bottom: 0.5rem;
}
.panier .TPanier .choose_plinthes > div {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.panier .TPanier .choose_plinthes div > div{
    display:flex; 
    height: fit-content; 
    gap:.4rem; 
    align-items: center;
    width: 5rem;
}

.panier .TPanier .choose_plinthes label {
  margin-right: 0.5rem;
}

.panier .TPanier td .photos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 0.5rem;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0;
  cursor: pointer;
}

.panier .TPanier td .photos li img {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier .TPanier td.infos a {
  text-decoration: underline;
}

/********************************************************************* Page Devis *********************************************************************/
.panier .TDevis td.img {
  width: 30%;
}

.panier .calcul_devis {
  padding: 0 5%;
}

.panier .calcul_devis a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}

.panier .calcul_devis ul.calcul_trsp {
  font-weight: normal;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-size: 0;
  background-color: #fff;
}

.panier .calcul_devis ul.calcul_trsp li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 47%;
  margin: 4px auto;
  padding: 0;
  font-size: 1rem;
  color: #000;
}

.panier .calcul_devis ul.calcul_trsp .divButtonConfirm {
  margin: 0;
  display: flex;
  justify-content: center;
}

.panier .calcul_devis ul.calcul_trsp .divButtonConfirm li {
  margin: 0.5rem 0 0 0;
}

.panier .calcul_devis ul.calcul_trsp .divButtonConfirm li input[name="Submit"] {
  background-color: black; /* Un color de fondo azul para destacar */
  color: white !important; /* Texto blanco para mayor contraste */
  -webkit-text-fill-color: white !important; /* Asegura que el texto sea blanco en WebKit */
  cursor: pointer; /* Cambiar el cursor a mano para indicar que es un botón */
}

.panier .calcul_devis ul.calcul_trsp li:first-of-type {
  margin-right: 6%;
}

.panier .calcul_devis ul.calcul_trsp li select {
  display: block;
  width: 100%;
  min-height: inherit;
  background-color: #fff;
  font-weight: normal;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  color: #000;
  -webkit-text-fill-color: #000;
  font-size: 1rem;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  text-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  line-height: 2rem;
}

.panier .calcul_devis ul.calcul_trsp li input {
  width: 100%;
  min-height: inherit;
  background-color: #fff;
  font-weight: normal;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  color: #000;
  -webkit-text-fill-color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  line-height: 2rem;
}

.panier .calcul_devis .radio {
  display: inline-block;
  vertical-align: middle;
  width: 1.3rem;
  height: 1.3rem;
  margin: 0 auto;
  margin-left: 0.2rem;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  outline: none;
  content: "";
  font-size: 1.4rem;
  position: relative;
}

.panier .calcul_devis .radio:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  background-color: #000;
  color: #fff;
  -webkit-text-fill-color: #fff;
  content: "\2714";
}

.panier .calcul_devis input.NbTVA {
  width: 100%;
  height: 1.5rem;
  line-height: 1.5rem;
  padding: 0 0.2rem;
  border: none;
  background-color: #fff;
  font-weight: normal;
  display: none;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  color: #000;
  -webkit-text-fill-color: #000;
}

.panier .calcul_devis span#msgTVA {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
}

.panier .calcul_devis .outdevis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.5rem;
}

.panier .calcul_devis .outdevis a {
  flex-grow: 1;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  margin: 0 auto;
  padding: 0.5rem 0;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  white-space: normal;
}

.panier .calcul_devis .outdevis a.black {
  color: #fff;
  background-color: #000;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard {
  text-align: center;
  padding: 0;
  margin: 0 auto;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard li {
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  padding: 0;
  text-align: left;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard li ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard li ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  padding: 0;
  font-size: 1rem;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard .email {
  display: none;
}

.panier_page
  .panier
  .TDevis
  .calcul_devis
  .formulaire_sauvegard
  li
  ul
  li.label {
  width: 40%;
}

.panier_page
  .panier
  .TDevis
  .calcul_devis
  .formulaire_sauvegard
  li
  ul
  li.input {
  width: 60%;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard input {
  font-weight: normal;
  background-color: #fff;
  width: 100%;
  height: 2rem;
  line-height: 2rem;
  text-align: left;
  border: 1px solid #000;
  color: #000;
  -webkit-text-fill-color: #000;
  margin: 0 auto;
  padding: 0 0.2rem;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard li.no-mg {
  margin: 0;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard textarea {
  font-weight: normal;
  background-color: #fff;
  color: #000;
  -webkit-text-fill-color: #000;
  width: 100%;
  height: 5rem;
  margin: 0;
  padding: 0 0.2rem;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard .submit {
  text-align: right;
  margin-top: 0.5rem;
}

.panier_page .panier .TDevis .calcul_devis .formulaire_sauvegard .submit input {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 500;
  background-color: #000;
  text-decoration: none;
  width: auto;
  height: auto;
  margin: 0 auto;
  padding: 0 1rem;
  outline: none;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

/*************************** GetFormulaires **********************/
.panier_page .forms {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1rem;
  color: #000;
  font-weight: normal;
  margin: 0 auto;
  padding: 0;
}

.panier_page .forms h1 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0;
  line-height: normal;
  font-style: normal;
  position: relative;
}

.panier_page .forms h1 img {
  position: absolute;
  left: 0;
  top: 50%;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.panier_page .forms h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0;
  text-align: left;
}

.panier_page .forms h2 a {
  color: inherit;
  text-decoration: underline;
}

.panier_page .forms .formulaire_commande {
  text-align: center;
  margin: 0 auto;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier_page .forms .formulaire_commande li {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.5rem auto;
  padding: 0;
  text-align: left;
}

.panier_page .forms .formulaire_commande li ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
}

.panier_page .forms .formulaire_commande li ul li {
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 1rem;
}

.panier_page .forms .formulaire_commande li.mt {
  margin-top: 3rem;
}

.panier_page .forms .formulaire_commande .email {
  display: none;
}

.panier_page .forms .formulaire_commande li ul li.label {
  width: 40%;
  margin-right: 2%;
}

.panier_page .forms .formulaire_commande li ul li.label.w100 {
  width: 100%;
  margin-right: 0;
}

.panier_page .forms .formulaire_commande li ul li.input,
.panier_page .forms .formulaire_commande li.input {
  width: 58%;
}

.panier_page .forms .formulaire_commande li ul li.input.w100 {
  width: 100%;
}

.panier_page .forms .formulaire_commande input {
  font-weight: normal;
  background-color: #fff;
  width: 100%;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  -webkit-text-fill-color: #000;
  margin: 0 auto;
  padding: 0 0.2rem;
  font-weight: normal;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier_page .forms .formulaire_commande .mini-input input {
  width: 30%;
  margin: 0 2% 0 0;
}

.panier_page .forms .formulaire_commande .mini-input input.no-mg {
  width: 68%;
  margin: 0;
}

.panier_page .forms .formulaire_commande li.no-mg {
  margin: 0;
}

.panier_page .forms .formulaire_commande textarea {
  font-weight: normal;
  background-color: #fff;
  color: #000;
  -webkit-text-fill-color: #000;
  width: 100%;
  height: 4rem;
  margin: 0;
  padding: 0 0.2rem;
  text-align: left;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier_page .forms .formulaire_commande select {
  background-color: #fff;
  border: 0;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding: 0 0.2rem;
  color: #000;
  -webkit-text-fill-color: #000;
  height: 2rem;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

.panier_page .forms .expedition {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  margin-top: 0.5rem;
  padding: 0;
}

.panier_page .forms .expedition span {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.panier_page .forms .expedition span label,
.panier_page .forms .expedition span input {
  display: inline-block;
  vertical-align: middle;
}

.panier_page .forms .radio,
.panier_page .forms .checkbox {
  display: inline-block;
  vertical-align: middle;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 auto;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  outline: none;
  content: "";
  font-size: 1rem;
  position: relative;
}

.panier_page .forms .radio:checked:before,
.panier_page .forms .checkbox:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: #000;
  color: #fff;
  -webkit-text-fill-color: #fff;
  content: "\2714";
}

.panier_page .forms .formulaire_commande.no-dispaly {
  display: none;
}

.panier_page .forms .responsabilite {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  column-gap: 0.2rem;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0;
  font-size: 0.8rem;
}

.panier_page .forms .responsabilite .checkbox {
  flex: none;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #000;
  outline: none;
  content: "";
  font-size: 1rem;
  position: relative;
}

.panier_page .forms .responsabilite .checkbox:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: #000;
  color: #fff;
  -webkit-text-fill-color: #fff;
  content: "\2714";
}

.panier_page .forms .responsabilite a {
  color: inherit;
  outline: none;
}

.panier_page .forms .submit {
  display: block;
  width: 50%;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0;
  outline: none;
  cursor: pointer;
  font-weight: normal;
  text-align: center;
  color: #fff;
}

.panier_page .forms .submit input {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0.5rem 0;
  text-align: center;
  outline: none;
  cursor: pointer;
  font-weight: normal;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}

/* ********************* 12-06-2025 ********************* */

.terra-text {
  padding: 20px 5px;
}

.terra-text p {
  padding: 0 1rem;
  color: #452010;
  text-align: center;
  font-size: 0.9rem;
}

.terra-circle {
  width: 100%;
  margin: auto;
  padding: 20px;
}

.face-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.face-circle {
  display: flex;
  gap: 15px;
}

.face-circle a {
  color: #452010;
  cursor: pointer;
  text-decoration: none;
}

.active {
  font-weight: bold;
}

.more-info {
  text-align: right;
  cursor: pointer;
}

.more-info img {
  width: 25px;
}

.terra-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  justify-items: center;
  align-items: center;
}

/* grid  */

.gallery-section {
  width: 100%;
  margin-top: 2rem;
}

.gallery-section .gallerypic {
  position: relative;
  overflow: hidden;
}

.gallery-section .photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  display: flex;
  align-items: end;
  font-size: 0.85rem;
  color: white;
  text-align: left;
  z-index: 2;
}

.gallery-section .img_foot_img {
  width: auto;
  height: 1.2rem;
}

.gallery-header {
  text-align: left;
  color: #452010;
  font-weight: 400;
}

.gallery_terra1 {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(9, 1fr); */
  grid-auto-columns: 0;
  gap: 2px;
  /* grid-auto-flow: row; */
  /* grid-auto-flow: dense; */
  /* grid-template-areas: "div1 div1 div2 div2 div3 div4"
    "div1 div1 div6 div6 div3 div4"
    "div5 div5 div6 div6 div7 div7"
    "div8 div9 div9 div10 div7 div7"
    "div8 div9 div9 div10 div11 div11" 
    "div12 div12 div13 div13 div14 div14"
    "div12 div12 div16 div16 div14 div14"
    "div15 div15 div16 div16 div17 div17"
    "div18 div19 div19 div20 div17 div17"
    "div18 div19 div19 div20 div21 div21"; */

  grid-template-areas:
    "div1 div1 div2 div2"
    "div1 div1 div6 div6"
    "div5 div5 div6 div6"
    "div3 div16 div16 div4"
    "div11 div11 div8 div10"
    "div7  div7 div8 div10"
    "div7 div7 div13 div13"
    "div18 div14 div14 div20"
    "div15 div15 div19 div19"
    "div17 div17 div19 div19"
    "div17 div17 div21 div21"
    "div12 div12 div9 div9";
}

.gallery_terra1 .div1 {
  grid-area: div1;
}

.gallery_terra1 .div2 {
  grid-area: div2;
}

.gallery_terra1 .div3 {
  grid-area: div3;
}

.gallery_terra1 .div4 {
  grid-area: div4;
}

.gallery_terra1 .div5 {
  grid-area: div5;
}

.gallery_terra1 .div6 {
  grid-area: div6;
}

.gallery_terra1 .div7 {
  grid-area: div7;
}

.gallery_terra1 .div8 {
  grid-area: div8;
}

.gallery_terra1 .div9 {
  grid-area: div9;
}

.gallery_terra1 .div10 {
  grid-area: div10;
}

.gallery_terra1 .div11 {
  grid-area: div11;
}

.gallery_terra1 .div12 {
  grid-area: div12;
}

.gallery_terra1 .div13 {
  grid-area: div13;
}

.gallery_terra1 .div14 {
  grid-area: div14;
}

.gallery_terra1 .div15 {
  grid-area: div15;
}

.gallery_terra1 .div16 {
  grid-area: div16;
}

.gallery_terra1 .div17 {
  grid-area: div17;
}

.gallery_terra1 .div18 {
  grid-area: div18;
}

.gallery_terra1 .div19 {
  grid-area: div19;
}

.gallery_terra1 .div20 {
  grid-area: div20;
}

.gallery_terra1 .div21 {
  grid-area: div21;
}

.gallery_terra1 div img {
  width: 100%;

  display: block;
  object-fit: contain;
}

.gallery_terra1 div {
  break-inside: avoid;
  height: 100%;
  width: 100%;
  display: inline-block;
}

.back_menu {
  display: none;
}

#devimg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: flex-start;
  align-items: center;
  z-index: 9999;
  overflow: scroll;
}

.nav-arrow {
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}

.left {
  left: 5px;
}

.right {
  right: 5px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.media-item video {
  width: 100%;
  height: 100%;
}

.two-files-cont {
  display: flex !important;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  /* margin: auto; */
  gap: 0.5rem;
}

.ref a {
  color: #ffffff;
  text-decoration: underline;
}

.two-files-cont .media-detailss .ref {
  color: #ffffff;
  text-align: center;
}

.media-detailss .gallery_details_heading {
  margin-bottom: 10px;
  text-align: center;
  /* font-weight: 500; */
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

.more-info {
  text-align: right;
  cursor: pointer;
}

.more-info-content {
  margin-bottom: 1rem;
  color: #452010;
  font-size: 0.875rem;
  text-align: right;
}

.media-details-btnn .gallery_btn_btn .btn_btn_two {
  width: 350px;
  margin: 0 auto;
  height: 50px;
  background-color: white;
  max-width: 100%;
  text-align: center;
  color: #452010;
}

/* .btn_btn_two::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    background-size: cover;
    background-image: url("../images/commun/stock.webp");
    background-repeat: no-repeat;
    background-position: center left;
    text-decoration: none !important;
} */

.media-details-btnn .gallery_btn_btn .btn_btn_one {
  width: 350px;
  margin: 5px auto;
  max-width: 100%;
  height: 50px;
  background-color: #767676;
  color: white;
  text-align: center;
}

.media-details-btnn .gallery_btn_btn {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.divider-shape-block {
  width: 1px;
  background-color: #452010;
  height: 60px;
}

.divider-shape-block1 {
  width: 1px;
  background-color: #452010;
  height: 70px;

  margin: auto;
}

/* ************** 23-06-2025 ***************** */

.colors_buy {
  /* padding: 1rem; */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 10px;
}

.sides a#Face-A {
  border: 0.5px solid;
  border-radius: 50px;
  padding: 0 7px;
}

.sides a#Face-B {
  border: 0.5px solid;
  border-radius: 50px;
  padding: 0 7px;
}

.sides img {
  width: 25px;
  margin: 0 5px;
}

.buychoose_stock {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: #e7ded8;
}

.calc {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  row-gap: 0.5rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 2rem;
  font-size: 1rem;
  border-radius: 0.1rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.calc h3 {
  color: #452010;
  text-align: left;
  font-weight: 500;
  margin-bottom: 1rem;
}

.calc .normalText {
  font-weight: 300;
}

.calc > p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  column-gap: 1rem;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  /* margin-top: .5rem; */
  text-align: left;
  color: #452010;
}

.calc .font-small {
  font-size: 1rem;
}

.calc .mt {
  margin-top: 1rem;
}

.calc input {
  width: 4rem;
  height: 1.5rem;
  padding: 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #bdbdbd;
}

.simulator-button {
  text-align: right;
  display: block;
  width: 100%;
  margin: 1rem 0;
}

.stock {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 2rem;
  width: 100%;
  height: auto;
  font-size: 1rem;
  color: #452010;
  text-align: left;
}

.simulator-button .simulator-cart-btn {
  cursor: pointer;
  width: auto;
  height: 2.5rem;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  color: #452010;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  background-color: #fff;
  text-align: center;
  font-weight: 500;
}

.stock .info {
  font-size: 0.8rem;
}

.stockdisp {
  /* visibility: hidden; */
  width: 100%;
  height: auto;
  text-align: left;
  cursor: pointer;
}

.stock .buttonContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn_btn_colorSamples {
  width: 100%;
  text-decoration: none;
  height: 50px;
  background-color: #767676;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn_btn_colorSamples:hover {
  text-decoration: underline;
}

/* .buy .parent .buychoose_stock .stock .stockdisp .bstok {
    display: flex;
    align-items: center;
    width: 100%;
    height: 5rem;
    margin-top: 1.5rem;
    font-weight: 300;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
} */

.stockdisp .bstok {
  display: flex;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
  height: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  margin: auto;
}

.stockdisp .bstok span {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  flex: 1.5;
  font-weight: 200;
  padding: 0.5rem;
}

.go-to-stock:hover {
  text-decoration: underline;
}

.go-to-stock::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  background-size: cover;
  background-image: url("../images/commun/stock.webp");
  background-repeat: no-repeat;
  background-position: center left;
  text-decoration: none !important;
}

/* ************* 27-6-2025 ************** */

.tiles-shapes {
  position: relative;
}

.tiles-shapes p {
  position: absolute;
  top: 0;
  left: 50%;
  color: #452010;
  font-weight: 500;
  padding-top: 0.3rem;
  font-size: 0.9rem;
  transform: translateX(-50%);
}

.tiles-shapes .shape-pic {
  width: 55px;
}

.shape-pic.op-1 {
  opacity: 0.2;
}

.shape-pic.op-2 {
  opacity: 0.4;
}

.shape-pic.op-3 {
  opacity: 0.6;
}

.shape-pic.op-4 {
  opacity: 1;
}

.shapes-down img,
.shapes-up img {
  width: 50px;
}

.shapes-all {
  background-color: #ebe7e4;
}

/* 
.sizes{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
} */

.block1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding-right: 10px;
}

.block2 {
  display: flex;
  justify-content: center;
}

.block2 .pic {
  width: 80px;
}

.shapes-up {
  padding-top: 10px;
}

.buy .sizes .pic .img1 {
  opacity: 0;
  display: none;
}

.buy .sizes .pic .img2 {
  height: 100%;
  /* object-fit: cover; */
  overflow: visible;
}

.buy .parent .choose_buychoose .choose .choose_terra .pack {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
}

.tiles {
  display: none;
}

.choose_buychoose {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.choose {
  position: relative;
}

.choose .changeside {
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.swapFace {
  display: flex;
  height: 2rem;
  gap: 0.1rem;
  background-color: transparent;
  align-items: center;
  cursor: pointer;
}

.swapFace p {
  border: 1px solid black;
  border-radius: 3.75rem;
  padding: 0 0.5rem;
}

.swapFace img {
  width: 1.1rem;
  height: auto;
  margin: 0 0.2rem;
}

.boldButton {
  font-weight: 500;
}

.views {
  display: flex;
  margin: 1rem 0;
  /* max-width: 150px; */
  gap: 10px;
  width: 150px;
  height: 70px;
}

.views img {
  height: 100%;
}
#Base {
  display: flex;
}

#actualface {
  display: none;
}

.shapes-all.sizes {
  position: absolute;
  top: 26%;
  left: 50%;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.modal-slide-down {
  animation-name: slideDown;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Optional: Background overlay */
#modal-overlay {
  display: none;
  z-index: 900;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.size_shape_active {
  border: 1px solid #b86e4e !important;
}

/* ******************* Cart ******************* */

.panier_page {
  min-height: 600px;
  position: relative;
  margin-top: 100px;
}

.choose_plinthes p {
  margin-bottom: 5px;
}

.description-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em;
  transition: all 0.3s ease-in-out;
}

.description-clamp.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.read-more-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  padding: 0;
  font-size: 0.9em;
  margin-top: 5px;
}

.panier_page .panier .TPanier td.img img {
  height: auto;
}

/* 17-07-2025  */

img.Shapeimg2 {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: 6px;
}

/* 21-07-2035   */

.selectColor {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 10px;
}
@media (max-width: 767px) {
  /* Aug-6-2025 Start */
  .face-AB {
    width: 80px !important;
  }

  .header_stock .shape-color .color-text {
    color: #7c503d !important;
    white-space: nowrap;
  }
  .filter-delete a {
    color: #7c503d !important;
    text-align: end !important;
  }
  .filter-delete {
    text-align: end;
    padding: 16px;
  }
  .header_stock .shape-color .flex-col li {
    margin-bottom: 10px !important;
  }
  .header_stock .shape-color .flex-col {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 0px;
  }
  /* Aug-6-2025 End */
  /* 14 Aug 2025 STart */
  button.btn.btn-clear-shopping {
    background: #452010;
    padding: 0px 15px;
    line-height: 35px;
    font-size: 16px !important;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #452010;
    color: #fff;
    margin: auto;
    position: absolute;
    top: -2px;
    right: 0;
    cursor: pointer;
  }
  button.btn.btn-clear-shopping:hover {
    background-color: transparent;
    border: 1px solid #452010;
    color: #452010;
  }
  /* 14 Aug 2025 End */
}
