/*UnderFlames Style*/

/* Lato GoogleFonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
  font-family: NewYork;
  src: url(/fonts/NewYork.otf) format("opentype");
}
@font-face {
  font-family: Windsor-el-bt;
  src: url(/fonts/WindsorElBT.ttf) format("truetype");
}

/* Ultrafin */
@font-face {
  font-family: 'HelveticaNeue-UltraLight';
  src: url('/fonts/HelveticaNeue-UltraLight.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

/* Ultrafin Italique */
@font-face {
  font-family: 'HelveticaNeue-UltraLightItalic';
  src: url('/fonts/HelveticaNeue-UltraLightItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* Maigre */
@font-face {
  font-family: 'HelveticaNeue-Thin';
  src: url('/fonts/HelveticaNeue-Thin.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

/* Maigre Italique */
@font-face {
  font-family: 'HelveticaNeue-ThinItalic';
  src: url('/fonts/HelveticaNeue-ThinItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

/* Fin */
@font-face {
  font-family: 'HelveticaNeue-Light';
  src: url('/fonts/HelveticaNeue-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Fin Italique */
@font-face {
  font-family: 'HelveticaNeue-LightItalic';
  src: url('/fonts/HelveticaNeue-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Normal */
@font-face {
  font-family: 'HelveticaNeue-Regular';
  src: url('/fonts/HelveticaNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Italique */
@font-face {
  font-family: 'HelveticaNeue-Italic';
  src: url('/fonts/HelveticaNeue-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Moyen */
@font-face {
  font-family: 'HelveticaNeue-Medium';
  src: url('/fonts/HelveticaNeue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Moyen Italique */
@font-face {
  font-family: 'HelveticaNeue-MediumItalic';
  src: url('/fonts/HelveticaNeue-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* Gras */
@font-face {
  font-family: 'HelveticaNeue-Bold';
  src: url('/fonts/HelveticaNeue-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Gras Italique */
@font-face {
  font-family: 'HelveticaNeue-BoldItalic';
  src: url('/fonts/HelveticaNeue-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Condensé Gras */
@font-face {
  font-family: 'HelveticaNeue-CondensedBold';
  src: url('/fonts/HelveticaNeue-CondensedBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Condensé Noir */
@font-face {
  font-family: 'HelveticaNeue-CondensedBlack';
  src: url('/fonts/HelveticaNeue-CondensedBlack.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

:root{
  --main-bg-color: #FAF6F1;
  --sand-1-color: #C5B8A0;
  --sand-2-color: #F0EBE5;
  --main-yellow-color: #FFC000;
  --black-color: #131623;
  --grey-color-1: #7C7F8D;
  --grey-color-2: #C1C3C7;
  --lightgrey-color: #EFEFF0;
  --error-color: #e90101;
}

body{
background: var(--main-bg-color);
font-family:'Helvetica Neue', Helvetica, Lato, Arial;
color: var(--black-color);
margin: 0;
padding: 0;
outline:0;
}
* { 
  -webkit-tap-highlight-color: transparent; 
}
input { 
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/*Change text in autofill textbox*/
form#form-footer-newsletter input:-webkit-autofill, form.forget_password input:-webkit-autofill{
    -webkit-text-fill-color: var(--black-color) !important;
    -webkit-box-shadow: 0 0 0 30px var(--main-bg-color) inset !important;
}
/*
input::-webkit-contacts-auto-fill-button, 
input::-webkit-credentials-auto-fill-button {
  visibility: visible;
  position: absolute;
  left: 0;
}*/

/*input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--main-bg-color) inset !important;
}*/
a {
  text-decoration: none;
  color: var(--black-color);
}
/*
a, article, div, h1, h2, h3, h4, h5, h6, img, section, span {
    -moz-user-select: none; 
    -webkit-user-select: none; 

}
 input , textarea  , select { 
    -webkit-appearance: none; 
    -webkit-border-radius:0; 
    border-radius: 0; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
}
*/

/* Accessibility */

.container{
  display: flex;
  justify-content: center;
}
.box {
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
}
/* flex-direction */
.column {
  display: flex;
  flex-direction: column;
}
.row{
  display: flex;
  flex-direction: row;
}
/* justify-content */
.space-between{
  justify-content: space-between;
}
.space-around{
  justify-content: space-around;
}
.justify-center{
  justify-content: center;
}
/* Align Items */
.baseline{
  align-items: baseline;
}
.align-center{
  align-items: center;
}
.align-flex-start {
  align-items: flex-start;
}
.align-flex-end {
  align-items: flex-end;
}
.wrap{
  flex-wrap: wrap;
}
.width100 {
  width: 100%;
}
.lighter{
  font-weight: 100;
}
.bold{
  font-weight: bold;
}
.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.line-through{
  text-decoration: line-through;
}
.none {
display: none;
}

.form-success{
display: flex;
justify-content: center;
align-items: center;
font-family: HelveticaNeue-Medium, Helvetica, Lato;
font-size: 14px;
font-weight: 500;
border-radius: 5px;
padding: 7px 15px;
color: #5E7E45;
background-color: #C8E5B0;
}
.form-error {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
align-self: stretch;
font-family: HelveticaNeue-Bold, "Helvetica Neue", Helvetica, Lato;
font-size: 14px;
font-weight: 600;
border-radius: 5px;
padding: 7px 15px;
background-color: #FFE5E5;
color: #BF1A1A;
}
.form-success2{
display: flex;
flex-direction: row;
justify-content: flex-start;
font-family: 'Helvetica Neue', Helvetica, Arial;
font-size: 14px;
border-radius: 5px;
padding: 5px 15px 5px 15px;
color: #5E7E45;
background-color: #C8E5B0;
opacity: 0;
}
.is-loaded{
transition: all 0.6s;
-webkit-transition: all 0.7s;
opacity: 1;
}
.is-unloaded{
transition: all 1s;
-webkit-transition: all 1s;
opacity: 0;
}

.input-error
{
box-shadow: 0 0 5px var(--error-color);
}
/****** COLOR *********/
.black{
  color: var(--black-color);
}
.white{
  color: #fff;
}
.green {
 color : #70A55E;
}
.yellow {
  color: var(--main-yellow-color);
}
/************ INPUT *****************/
.form_input{
  color: var(--black-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.32px;
  border: 0;
  outline: none;
  background: none;
  display: flex;
  height: 44px;
  padding: 12px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  flex: 1 0 0;
  width: 100%;
  border-bottom: 2px solid var(--Sand-1, #C5B8A0);
}
.form_input_bis{
outline: 0;
border: none;
background: none;
border-bottom: 2px solid var(--main-yellow-color);
width: 47%;
font-size: 17px;
font-family: HelveticaNeue-Light, NewYork;
font-style: normal;
font-weight: 300;
letter-spacing: 0.5px;
color: var(--black-color);
margin: 20px 0;
padding: 0 0 3px 3px;
}

/****************** BUTTON *********************/
[class*="small-btn"] {
font-size: 22px;
padding: 8px 17px;
border-radius: 10px;
}
[class*="medium-btn"] {
font-size: 25px;
padding: 8px 20px;
border-radius: 10px;
}
[class*="large-btn"] {
font-size: 30px;
padding: 9px 24px;
border-radius: 10px;
}
[class*="btn-"] {
font-family: Windsor-el-bt, 'Helvetica Neue';
font-weight: normal;
transition: 0.17s ease-in-out;
}
[class*="btn-"]:hover {
transition: 0.17s ease-in-out;
cursor: pointer;
}
.btn-yellow{
border: 2px solid transparent; 
background: var(--main-yellow-color);
color: var(--main-bg-color);
}
.btn-yellow:hover{
border: 2px solid var(--main-yellow-color); 
background: transparent;
color: var(--main-yellow-color);
}
.btn-green {
border: 2px solid transparent; 
background: #70A55E;
color: var(--main-bg-color);
}
.btn-green:hover{
border: 2px solid #70A55E; 
background: transparent;
color: #70A55E;
}
.btn-black {
border: 2px solid var(--black-color); 
background: var(--main-bg-color);
color: var(--black-color);
}
.btn-black:hover{
border: 2px solid var(--main-yellow-color); 
background: transparent;
color: var(--main-yellow-color);
}
/* Loader */

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 7px solid var(--main-yellow-color);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--main-yellow-color) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Reveal Image */
.reveal-1
{
  opacity: 0;
  transform: translateY(22px);
}
.reveal-2
{
  opacity: 0;
  transform: translateY(46px);
}
.reveal-visible
{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s cubic-bezier(0.5, 0, 0, 1);
}

/* End Of Accessibility */


/* BARRE DE RECHERCHE ----- */

.container-search_box{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
}
#search_txt{
background: none;
height: 40px;
width: 100%;
font-family: HelveticaNeue-Light, NewYork;
font-size: 17px;
font-weight: 300;
letter-spacing: 0.5px;
color: var(--black-color);
border-top: none;
border-right: none;
border-left: none;
border-bottom: 3px solid var(--main-yellow-color);
outline: 0;
}
#overlay_search {
position: fixed;
opacity: 0;
transition: 200ms ease-in-out;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .3);
pointer-events: none;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
#overlay_search.active {
opacity: 1;
pointer-events: all;
z-index: 6;
}
.top_panel {
display: flex;
background: var(--main-bg-color);
width: 100%;
height:69px;
position: fixed;
justify-content: space-between;
align-items: center;
top: 0px;
margin-top: 0px;
z-index: 10;
transition: all 0.28s ease-in-out;
}
.transparent {
  background: transparent;
}
/* -----LEFT - Header ----*/

.top_left{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
height: 100%;
width: 30%;
padding-left: 60px;
}
.content--top-left {
text-decoration: none;
color: var(--black-color);
font-family: windsor-el-bt, 'Helvetica Neue', Lato, Arial;
font-size: 22px;
font-weight: normal;
font-style: normal;
transition: 0.28s ease-in-out;
cursor: pointer;
}
.content--top-left:hover {
color: var(--main-yellow-color);
}
.content--top-left.transparent-header {
  color: #fff;
}
.clickable-area-menu {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.menu-container {
  width: 20px; 
  height: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.menu-line {
  width: 18px;
  height: 1.2px;
  background: var(--black-color);
  transition: all 0.3s; 
}

/* Classe pour l'animation d'ouverture du menu */
.clickable-area-menu.active .menu-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.clickable-area-menu.active .menu-line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ----------- Déroulante ----------- */

.dropdown_menu {
position: fixed;
top: 0;
left: 0;
display: flex;
flex-direction: column;
visibility: hidden;
transform: translateX(-100%);
transition: 0.17s ease-in-out;
background-color: var(--main-bg-color);
z-index: 9;
width: 500px;
max-width: 85%;
height: 100vh;
}
.dropdown_menu.active {
visibility: visible;
transform: translate(0px);
}
@keyframes openMobileMenu{
  from {
    transform: translateY(-100%) scale(0); 
    border-radius: 50px;
  }
  80%{
    transform: translateY(-100%) scale(0); 
  }

  to {
    transform: translate(0px) scale(1);
    border-radius: 1px;
  }
}
.container_menu{
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
margin-top: 96px;
}
.container_menu-1{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 10px;
width: 100%;
padding-left: 60px;
}
.element-menu {
  font-family: 'Helvetica Neue', Helvetica, Arial, Lato;
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
  letter-spacing: 0.2px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  padding: 5px 0;
  margin: 0;
}
.element-menu.mobile {
  display: none;
}
.element-menu:hover {
  color: var(--main-yellow-color);
}
#overlay_menu {
position: fixed;
opacity: 0;
transition: 200ms ease-in-out;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .5);
pointer-events: none;
}
#overlay_menu.active {
opacity: 1;
pointer-events: all;
z-index: 2;
}

/* ----- Ttile Header ----*/
.underflames_title {
 font-family: windsor-el-bt;
 font-size: 32px;
 color: var(--main-yellow-color);
}
/* ----- right header ------*/
.top_right{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 30%;
height: 100%;
padding-right: 30px;
}
.navbar_header {
display: flex;
justify-content: space-between;
flex-direction: row;
align-items: center;
gap: 45px;
}
a.header--icon{
  width: 26px;
  height: 26px;
}
#loupe-icon {
width: 26px;
cursor: pointer;
}

#connexion-icon {
width: 26px;
cursor: pointer;
}
#panier-icon {
width: 26px;
cursor: pointer;
display: none;
}
div .icon_panier{
background: transparent;
cursor: pointer;
}
.icon_panier a{
color: var(--black-color);
}
.cart_header{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cart_header p{
  color: var(--black-color);
  font-family: windsor-el-bt;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cart_round_quantity{
  display: flex;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #C5B8A0;
  border-radius: 50px;
}
.cart_round_quantity span{
  color: #FFF;
  font-family: 'Helvetica Neue', Helvetica, Arial;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/****************************************** Search ***********************************************/

.box_result_search {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 0;
  background-color: var(--main-bg-color);
  width: 100%;
  overflow-y: auto;
}
.text_produit_corresp{
  font-family: HelveticaNeue-Light, Lato, Arial;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--black-color);
  padding: 0.5px;
  margin: 0;
}
.title-produit_correspondant {
  display: flex;
  justify-content: flex-start;
  font-family: HelveticaNeue-Light, Lato, Arial;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--black-color);
  padding: 0 0 25px 25px;
  margin: 0;
}
.box_search_product {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 15px;
}
.box_search_product:hover {
  background-color: var(--sand-2-color);
}
.box_search_product img{
  width: 17%;
  height: auto;
}
.box_search_product p {
  margin-left: 30px;
  font-family: Windsor-el-bt, 'Helvetica Neue', Helvetica, Lato;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.2px;
  color: var(--black-color);
}

/* -------------------- Cart -------------- */

/* Ici mettre le css de la popup cart */

    .overlay_cart {
	  cursor: default;
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Overlay noir semi-transparent */
      z-index: 9998; /* Placez l'overlay en dessous de la popup */
    }

    .cart-popup {
	  cursor: default;
    position: fixed;
    top: 0;
    right: -420px; /* Démarre caché sur la droite */
    width: 100%;
    max-width: 420px;
    height: 100%;
    z-index: 9999;
    transition: right 0.3s ease;
    }

    .cart-popup-content {
		display: flex;
		width: 100%;
		height: 100%;
		padding: 16px 16px 51px 16px;
		flex-direction: column;
		align-items: flex-start;
    gap: 28px;
		background: #FAF6F1;
    }
	.cart-popup-content-header{
		display: flex;
		justify-content: space-between;
		align-items: center;
		align-self: stretch;
	}
  .title_cart_popup{
		color: #000;
		font-family: "Windsor-el-BT";
		font-size: 24px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin: 0;
	}
  .empty-cart-popup-content{
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
    gap: 58px;
    align-self: stretch;
  }
  .empty-cart-popup-content div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .empty-cart-popup-content div p:nth-child(1){
    color: #000;
    font-family: 'Helvetica Neue', Helvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
  }
  .empty-cart-popup-content div p:nth-child(2){
    color: #000;
    font-family: 'Helvetica Neue', Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    margin: 0;
  }
	.cart-popup-content-articles{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
    flex: 1 0 0;
		align-self: stretch;
    overflow-y: auto;
	}
  .cart-popup-content-articles::-webkit-scrollbar {
    width: 0; /* Masquer la barre de défilement */
}
  @media (min-width: 961px) {
    /* Style de la barre de défilement */
    .cart-popup-content-articles::-webkit-scrollbar {
        padding-left: 10px;
        width: 2px; /* Largeur de la barre de défilement */
    }

    /* Style du track de la barre de défilement */
    .cart-popup-content-articles::-webkit-scrollbar-track {
        background: var(--grey-color-2); /* Couleur du fond du track */
        border-radius: 1px; /* Coins arrondis */
    }

    /* Style du slider de la barre de défilement */
    .cart-popup-content-articles::-webkit-scrollbar-thumb {
        background: var(--black-color); /* Couleur du slider */
        border-radius: 1px; /* Coins arrondis */
    }

    /* Style du slider de la barre de défilement au survol */
    .cart-popup-content-articles::-webkit-scrollbar-thumb:hover {
        background: var(--sand-1-color); /* Couleur du slider au survol */
    }
}
	.cart-popup-article{
		display: flex;
		align-items: flex-start;
		gap: 14px;
		align-self: stretch;
	}
	.cart-popup-article-img{
		display: flex;
		width: 100px;
		height: 110px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background: var(--sand-2-color);
	}
	.cart-popup-article-img img{
		width: 70px;
		height: auto;
	}
	.cart-popup-article-infos{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
		flex: 1 0 0;
		align-self: stretch;
	}
	.cart-popup-article-infos div{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		align-self: stretch;
	}
	.cart_article_name{
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 15px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		margin: 0;
	}
	.cart_article_size{
		color: var(--Gris-Gris-2, #7C7F8D);
		font-family: 'Helvetica Neue';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin: 0;
	}
	.cart_article_price{
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 20px;
		font-style: normal;
		font-weight: 300;
		line-height: normal;
		margin: 0;
	}
	.cart-popup-article-quantity{
		display: flex;
		width: 80px;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-end;
		align-self: stretch;
	}
	.cart_remove_article{
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 11px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		text-decoration-line: underline;
		margin: 0;
    cursor: pointer;
	}
	.cart_remove_article:hover{
		opacity: 0.6;
	}
	.cart_article_quantity{
		display: flex;
		justify-content: space-between;
		align-items: center;
		align-self: stretch;
	}
	.cart_article_quantity img {
		width: 24px;
		height: auto;
		cursor: pointer;
	}
	.cart_article_quantity img:hover {
		opacity: 0.6;
	}
	.cart_article_quantity p{
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		margin: 0;
	}
	.cart-popup-content-footer{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		align-self: stretch;
	}
	.cart-popup-delivery{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		align-self: stretch;
	}
	.cart-popup-delivery-text{
		display: flex;
		justify-content: space-between;
		align-items: center;
		align-self: stretch;
	}
	.cart-popup-delivery-text p:nth-child(1){
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 15px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: 0.3px;
		margin: 0;
	}
	.cart-popup-delivery-text p:nth-child(2){
		color: var(--Gris-Gris-2, #7C7F8D);
		font-family: 'Helvetica Neue';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 0.28px;
		margin: 0;
	}
	.cart-delivery-progress-bar {
		width: 100%;
		height: 12px;
		border-radius: 10px;
		overflow: hidden;
		background: var(--Gris-Gris-4, #EFEFF0);
    
	}
	.cart-delivery-progress {
		height: 100%;
		border-radius: 10px;
		background: var(--Main-Color, #FFC000);
		width: var(--progress-width, 0%);
		transition: width 350ms cubic-bezier(0, 0, 0.25, 1);
	}
	.cart-popup-datas-payment{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		align-self: stretch;
	}
	.cart-popup-sous_total{
		display: flex;
		padding: 4px;
		justify-content: space-between;
		align-items: center;
		align-self: stretch;
	}
	.cart-popup-sous_total p:nth-child(1){
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: 0.32px;
		margin: 0;
	}
	.cart-popup-sous_total p:nth-child(2){
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		letter-spacing: 0.4px;
		margin: 0;
	}
	.cart-popup-secured_payment{
		display: flex;
		align-items: center;
		gap: 5px;
	}
	.cart-popup-secured_payment img{
		display: flex;
		width: 20px;
		height: 20px;
		justify-content: center;
		align-items: center;
	}
	.cart-popup-secured_payment p{
		color: #000;
		font-family: 'Helvetica Neue';
		font-size: 12px;
		font-style: normal;
		font-weight: 300;
		line-height: normal;
		margin: 0;
	}

/* NE PAS TOUCHER CECI */
.box_bottom_page {
  background-color: #fffff2;
}
/* NE PAS TOUCHER CI-DESSUS */

/* Accueil Index Under Flames*/

.container_background_index{
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #c5b8a0;
}
.image__background_landing {
width: 100%;
animation: zoominRefresh 2.3s ease-in-out;
overflow: hidden;
object-fit: cover;
object-position: center;
}
@keyframes zoominRefresh {
  0% {
      transform: scale(1.14);
    }
  100% {
      transform: scale(1);
  }
}
.overlay__image_fixed {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.overlay__image_fixed div {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  font-family: HelveticaNeue-Light, 'Helvetica Neue', Lato, NewYork, Arial;
  width: 330px;
}
.overlay_landing{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
}
.overlay_landing p{
  color: #FFF;
  font-family: windsor-el-bt, 'Helvetica Neue', Helvetica;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  margin: 0px;
}
.landing-zone-1{
  display: flex;
  padding: 100px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.landing-zone-1 p{
  color: var(--black-color);
  font-family: HelveticaNeue-Thin, 'Helvetica Neue', Helvetica, Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: center;
  margin: 0;
  width: 1150px;
  max-width: 100%;
}
.landing-zone-1 span{
  color: var(--black-color);
  font-family: NewYork, 'Helvetica Neue', Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}

.landing-products-section {
  display: flex;
  justify-content: space-between;
  padding: 0px;
}
.landing-products-section.bis {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  margin-top: 3px;
}

.product-container {
  width: calc(50% - 0px); /* Répartir l'espace en deux colonnes avec le padding */
}

.product-section {
  height: 900px; /* Hauteur fixe de 900px */
  width: 100%; /* Largeur de 100% pour s'adapter à l'écran */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px;
  position: relative;
}

.pudding {
  width: 3px;
  height: 3px;
  background-color: transparent;
}

.product-section img {
  width: 100%; /* Largeur de 100% pour remplir tout l'espace disponible en largeur */
  height: 100%; /* Hauteur de 100% pour conserver les proportions et remplir tout l'espace vertical disponible */
  object-fit: cover; /* Pour préserver le ratio d'aspect sans déformation */
}

.product-section .text-bottom-left {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.text-bottom-left .first-paragraph {
  color: #FFF;
  font-family: Windsor-el-bt;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin: 0;
  padding: 0;
}

.text-bottom-left .second-paragraph {
  color: #FFF;
  font-family: HelveticaNeue-Light;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.landing-product-description{
  display: flex;
  padding: 100px 10px 10px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 50%;
}
.landing-product-description h2{
  color: var(--black-color);
  font-family: windsor-el-bt, 'Helvetica Neue', Arial;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.landing-product-description p{
  color: var(--black-color);
  font-family: HelveticaNeue-Light, 'Helvetica Neue', Helvetica, Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  width: 500px;
  max-width: 100%;
  margin: 0;
}


.marquee-news {
display: flex;
width: 100%;
height: 55px;                           
overflow: hidden;
background: var(--main-bg-color);
opacity: 100%;
}

.marquee-news > :first-child {
display: inline-block;                      
display: flex;
flex-direction: row;
align-items: center;              
padding-left: 100%;                         
white-space: nowrap;                        
animation: defilement 20s infinite linear;
}
.text-marquee-news{
font-family: windsor-el-bt;
font-size: 45px;
letter-spacing: 1px;
}
.index-photo.newsletter{
display: block;
width: 100%;
max-height: 500px;
object-fit: cover;
}

.overlay__image{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.35);
color: #fff;
font-family: 'Helvetica Neue', lato;
font-style: italic;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.25s;
}
.overlay__image > * {
transform: translateY(20px);
transition: transform 0.25s;
}
.overlay_blur {
backdrop-filter: blur(1.9px);
}
.overlay__image:hover {
opacity: 1;
}

.overlay__image:hover > * {
transform: translateY(0);
}
.overlay__image p {
font-size: 21px;
}
.overlay__image h2 {
font-size: 35px;
font-family: NewYork;
font-weight: normal;
color: #fff;
}
.container__shop_event {
transition: 1s;
margin-top: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container__shop_event p {
font-family: NewYork, 'Helvetica Neue', Lato;
font-weight: bold;
font-size: 34px;
color: #fff;
}
.overlay__image_fixed{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
transition: opacity 0.25s;
}
.overlay__image3{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.16);
color: #fff;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
opacity: 0;
transition: opacity 0.25s;
transform: translateX(0);
transition: 1s;
}
.overlay__image3:hover{
opacity: 1;
}
.overlay__image3:hover .container__shop_event{
transform: translateX(30px);
transition: 1.4s;
}
/* ----------------------------------------------- FOOTER ---------------------------------------------*/
.container_footer {
background-color: var(--main-bg-color);
}
.thankstoyou {
font-family: Windsor-el-bt;
font-weight: 400;
font-size: 26px;
color: var(--black-color);
}
/* Header Footer */
.container_footer_subscribe {
margin-top: 212px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
/* Abonnement à la Newsletter */

#form-footer-newsletter {
display: flex;
flex-direction: row;
align-items: flex-end;
flex-wrap: wrap;
}

#form-footer-newsletter input {
  background: none;
  border: none;
  border-bottom: solid 4px var(--black-color);
  width: 410px;
  height: 45px;
  margin-right: 10px;
  padding-left: 10px;
  color: var(--black-color);
  font-family: Windsor-el-bt, 'Helvetica Neue';
  font-size: 28px;
  font-weight: normal;
  outline: 0;
}
.subscribe-btn{
  border: 4px solid var(--black-color);
  font-size: 40px;
  padding: 10px 30px;
  border-radius: 10px;
}
.subscribe-btn:hover{
  border: 4px solid var(--main-yellow-color);
}
/* Link Footer */
.container_footer_link{
margin-top: 158px;
width: 100%;
}
/* Footer Information */
.footer {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
list-style-type: none;
padding: 0;
margin: 0;
}
.footer li a, .footer li a button {
display: flex;
font-family: windsor-el-bt, 'Helvetica Neue', Lato;
font-size: 27px;
color: var(--black-color);
text-decoration: none;
background: none;
cursor: pointer;
}
.footer li a:hover{
opacity: 0.8;
}
.copyright {
text-align: center;
font-family: 'Helvetica Neue', Lato;
font-style: normal;
font-size: 14px;
color: var(--black-color);
margin-top: 20px;
padding-bottom: 35px;
}
/* COOKIE */
.cookie_consent {
  background: var(--main-bg-color);
  padding: 0px 80px;
  height: 65px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  animation: cookie_consent_anim 1s ease-in-out;
  z-index: 999;
}
.cookie_consent.hide{
  opacity: 0;
  pointer-events: none;
}
@keyframes cookie_consent_anim {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.cookie--text{
  font-family: 'Helvetica Neue', Lato;
  font-size: 15px;
  color: var(--black-color);
  margin: 0;
}
.cookie--text span{
  text-decoration: underline;
}
.cookie-btn {
  flex-wrap: nowrap;
  border: 0;
  height: 31px;
  padding: 0px 38px;
  font-family: 'Helvetica Neue', Lato;
  font-size: 13px;
  color: var(--main-bg-color);
  background: var(--black-color);
  margin-left: 20px;
}
.cookie-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}
/* Modal Newsletter */
.modal_newsletter_text{
  display: flex;
  padding: 40px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
.modal_newsletter_text p:nth-child(1){
  color: var(--black-color);
  font-family: windsor-el-bt, 'Helvetica Neue', Arial;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.modal_newsletter_text p:nth-child(2){
  color: var(--black-color);
  font-family: windsor-el-bt, 'Helvetica Neue', Arial;
  font-size: 75px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.modal_newsletter_text p:nth-child(3){
  color: var(--black-color);
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.form_ajax{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-modal.newsletter{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.form-modal.newsletter input{
  display: flex;
  height: 45px;
  padding: 10px;
  border-bottom: 1px solid var(--black-color);
  margin: 0;
  width: 95%;
}
.Newsletter_message-modal{
  height: 35px;
}
.modal_newsletter_img{
  width: 340px;
  flex-shrink: 0;
  align-self: stretch;
}
.modal_newsletter_img img{
  object-fit: cover;
  height: 100%;
}
.container_cross.newsletter{
  position: absolute;
  top: 15px;
  right: 15px;
}
.container_cross.newsletter div span {
  background: #fff;
  }
#overlay_newsletter {
position: fixed;
opacity: 0;
transition: 200ms ease-in-out;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .3);
pointer-events: none;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
#overlay_newsletter.active {
opacity: 1;
pointer-events: all;
z-index: 2;
}
/* --------------------------------------FIN DE LA PAGE D'ACCUEIL--------------------------------*/

/*---------------------------------------MENTIONS LEGALES --------------------------------------------*/
.mentionslegales {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 130px 0;
font-family: 'Helvetica Neue', Lato;
color: var(--black-color);
}
.mentionslegales div{
  padding: 20px;
  width: 65%;
}
.mentionslegales h1 {
display: flex;
justify-content: center;
font-size: 24px;
margin-bottom: 60px;  
}
.mentionslegales h2 {
font-size: 18px; 
}
.mentionslegales h3 {
font-size: 16px; 
}
/*---------------------------------------SERVICE CLIENT------------------------------------------------*/

.box_sav {
display: flex;
margin-top: 100px;
margin-right:15%;
margin-left:15%;
background-color: var(--main-bg-color);
padding: 6%;
border: 1px solid var(--black-color);
border-radius: 5px;
}
.title_h1_sav {
display: flex;
justify-content: center;
margin-bottom: 100px;
}
.title_h2_sav {
margin-top:30px; 
margin-bottom:30px;
}

/*-----------------------------------------------------CONTACT--------------------------------------------------*/
.container-box_contact{
display: flex;
justify-content: center;
}
.box_contact {
margin-top: 160px;
display: flex;
flex-direction: column;
align-items: center;
width: 600px;
max-width: 95%;
border-radius: 16px;
padding: 14px;
}
.contact_title {
align-content: flex-start;
width: 100%;
font-family: 'Helvetica Neue', Lato, NewYork;
font-weight: 400;
font-size: 22px;
color: var(--main-yellow-color);
margin: 34px;
padding: 0px 32px;
}

.contact_input {
outline: 0;
border: none;
background: none;
border-bottom: 2px solid var(--main-yellow-color);
width: 100%;
font-size: 16px;
font-family: 'Helvetica Neue', Lato;
font-style: normal;
font-weight: normal;
color: var(--black-color);
margin: 20px 0;
padding: 0 0 3px 3px;
}

.contact_input_message {
width: 100%;
height: 120px;
border: 2px solid var(--main-yellow-color);
border-radius: 8px;
font-family: 'Helvetica Neue', Lato;
font-size: 15px;
color: var(--black-color);
padding: 7px 0 0 7px;
outline: 0;
margin-bottom: 10px;
resize: none;
background: transparent;
}
/*------------------------------------------------- UNSUBSCRIBE NEWSLETTER --------------------------------------------------*/
.container_unsbuscribe_newsletter{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 30px;
gap: 50px;
}
.container_unsbuscribe_newsletter img {
width: 145px;
height: auto;
}
.container_unsbuscribe_newsletter .title_texte{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.container_unsbuscribe_newsletter .title_texte h1{
  color: var(--black-color);
  font-family: 'Helvetica Neue', HelveticaNeue-Light, Helvetica, Arial;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.5px;
  margin: 0;
}
.container_unsbuscribe_newsletter .title_texte p{
  color: var(--black-color);
  font-family: 'Helvetica Neue', HelveticaNeue-Light, Helvetica, Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: center;
}
/*---------------------------------------------- New Arrivals -------------------------------------------*/
.new_arrivals_title{
  display: flex;
  justify-content: center;
  font-family: windsor-el-bt, 'Helvetica Neue', Lato;
  font-size: 35px;
  font-style: normal;
  font-weight: normal;
  color: var(--main-yellow-color);
  margin-top: 110px;
}
.news_d1 {
  text-align: center;
  font-family: NewYork, 'Helvetica Neue', Lato;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  color: var(--black-color);
  width: 50%;
  animation: glissement 2s ease-in-out;
}
@keyframes glissement {
  0%{
    opacity: 0;
    transform: translateX(-60px);
  }
  100%{
    opacity: 1;
    transform: translateX(0px);
  }
}

/*----------------------------------------------SHOP PAGE -------------------------------------------*/
.shop-content{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
}
.top-shop {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 69px;
width: 100%;
}
.free-delivery-banner {
  width: 100%;
  display: flex;
  height: 23px;
  padding: 10px;
  align-items: center;
  background-color: var(--sand-1-color);
  overflow: hidden; /* Masque les parties défilantes */
  position: relative; /* Pour positionner l'élément enfant absolument */
}
.free-delivery-banner.header-banner{
  position: fixed;
  top: 0;
  z-index: 10;
  display: none;
}
.scrolling-text {
  display: flex;
  white-space: nowrap; /* Empêche le texte de se décomposer sur plusieurs lignes */
  animation: scroll 45s linear infinite; /* Animation de défilement */
  gap: 80px;
}
.scrolling-text p {
  color: #FFF;
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@keyframes scroll {
  0% {
      transform: translateX(0%); /* Commence à gauche */
  }
  100% {
      transform: translateX(-50%); /* Se termine à la moitié pour une répétition continue */
  }
}
.shop-links{
  display: flex;
  padding: 0px 50px;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.category-shop-link{
  color: var(--black-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  padding: 13px;
  margin: 0;
}
.category-shop-link p{
  margin: 0;
}
.container_shop {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.poster__section {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.products__section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
  padding: 0 4px;
}
.products__section.solo{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.poster_product {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Pour cacher toute partie de l'image qui déborde du cadre */
}

.poster_product img {
  max-width: none; /* Désactivez la limite de largeur maximale */
  max-height: none; /* Désactivez la limite de hauteur maximale */
  width: 100%; /* Remplit la largeur du cadre */
  height: 100%; /* Remplit la hauteur du cadre */
  object-fit: cover; /* Remplit le cadre tout en préservant les proportions */
}


.box-item_inshop {
  flex-basis: calc(50% - 2px);
  position: relative;
}
.box-item_inshop_soldout{
  flex-basis: calc(50% - 2px);
  position: relative;
  opacity: 0.85;
}

.img_item_shop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  background-color: var(--sand-2-color);
  cursor: pointer;
}

.product__informations {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  padding-left: 3px;
  margin: 0;
  margin-top: 8px;
  margin-bottom: 20px;
  gap: 4px;
}

.item_name {
  font-family: 'Helvetica Neue', Helvetica, Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.32px;
  color: var(--black-color);
  margin: 0;
}

.item_price {
  font-family: 'Helvetica Neue', HelveticaNeue-Light, Helvetica, Lato;
  font-size: 18px;
  font-weight: 300;
  color: var(--black-color);
  padding: 0;
  margin: 0;
}

.sales_item_price {
  font-family: 'Helvetica Neue', Lato;
  font-weight: 400;
  margin: 6px 0px 6px 18px;
  font-size: 17px;
  color: var(--error-color);
}

.coming_soon_product {
  margin-top: 95px;
  font-family: Windsor-el-bt, 'Helvetica Neue', Lato;
  font-weight: normal;
  font-size: 40px;
  color: var(--main-yellow-color);
}

.soldout_or_soon {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Helvetica Neue', HelveticaNeue-Bold, Helvetica, Arial;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  border-radius: 0px;
  padding: 12px 18px;
  margin: 0;
  color: var(--black-color);
}

/*----------------------------------------- Article Page ------------------------------------------*/

.row_article {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin-top: 69px;
}
.col_article {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 50%;
}
.col_article.right {
  padding: 45px 20px;
  height: 90vh;
  overflow: hidden;
  position: sticky;
  top: 55px;
}
.col-inner_article.right{
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.col-inner_article.right::-webkit-scrollbar {
  display: none;
}
.col-inner_article.right {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.img_article {
  width: 100%;
  margin-bottom: 7px;
  background: var(--lightgrey-color);
}
/* Class pour les animations des Images */
.reveal-1
{
  opacity: 0;
  transform: translateY(22px);
}
.reveal-2
{
  opacity: 0;
  transform: translateY(46px);
}
.reveal-visible
{
  opacity: 1;
  transform: translateY(0);
  transition: 1.6s cubic-bezier(0.5, 0, 0, 1);
}
/* Coté droit - shopping de l'Article*/
.container_title_price{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.title_article {
font-family: Windsor-el-bt;
font-weight: 400;
font-size: 40px;
letter-spacing: 0.2px;
color: var(--black-color);
margin: 0;
}
.price_article {
font-family: HelveticaNeue-Light;
font-weight: 300;
font-size: 28px;
letter-spacing: 0.5px;
color: var(--black-color);
margin: 0;
}
.price_article.soldes, .item_price.soldes, .cart_article_price.soldes, .price_article__success.soldes{
  text-decoration: line-through;
}
.sales_price_article {
font-family: HelveticaNeue-Light;
font-weight: 300;
letter-spacing: 0.5px;
margin: 0;
margin-left: 18px;
font-size: 26px;
color: var(--error-color);
}
.information_article{
width: 580px;
max-width: 100%;
font-family: HelveticaNeue-Light;
font-weight: 300;
font-size: 18px;
line-height: 28px;
color: var(--black-color);
letter-spacing: 0.3px;
margin: 0;
}
.information_article::first-letter {
  font-size: 23px;
}
.container_box-article{
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 500px;
  max-width: 100%;
}
.buy-container{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
#form-size_product{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sizes-buy-buttons{
  background: var(--main-bg-color);
  left: 0;
  width: 100%;
}
.sizeguide_select {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.hidden{
height: 0;
padding: 0;
margin: 0;
border: none;
opacity: 0;
}
.variant__button-label {
width: 24%;
padding: 4px 0;
text-align: center;
border: 2px solid var(--black-color);
border-radius: 10px;
font-family: HelveticaNeue-Light, Lato, Arial;
font-size: 25px;
font-weight: 300;
letter-spacing: 0.5px;
cursor: pointer;
color: var(--black-color);
background: none;
}
.clicked {
width: 24%;
padding: 4px 0;
text-align: center;
border: 2px solid var(--black-color);
border-radius: 10px;
font-family: HelveticaNeue-Light, Lato, Arial;
font-size: 25px;
font-weight: 300;
cursor: pointer;
color: #fff;
background: var(--black-color);
}
.button_submit1 {
width: 100%;
height: 52px;
margin-top: 0px;
background-color: transparent;
border: 2px solid var(--black-color);
border-radius: 10px;
color: var(--black-color);
cursor: pointer;
font-size: 24px;
font-family: HelveticaNeue-Light, Lato, Arial;
font-weight: 300;
letter-spacing: 0.5px;
outline: 0;
transition: 0.21s;
transition-timing-function: ease-out;
}
.button_submit1:hover {
transition: all 0.17s;
transition-timing-function: ease-out;
border: 2px solid var(--main-yellow-color);
color: var(--main-yellow-color);
}
.button_soldout{
width: 100%;
height: 52px;
margin-top: 0px;
background-color: var(--grey-color-2);
border: solid 2px var(--grey-color-2);
border-radius: 10px;
color: #fff;
font-size: 25px;
font-family: HelveticaNeue-Light, Lato, Arial;
font-weight: 300;
letter-spacing: 0.5px;
transition: all 0.07s;
transition-timing-function: ease-out;
}
.sold_out_buttons{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.button_notify-when-available{
width: 100%;
height: 52px;
background: none;
border: solid 2px var(--black-color);
border-radius: 10px;
color: var(--black-color);
cursor: pointer;
font-size: 25px;
font-family: HelveticaNeue-Light, Lato, Arial;
font-weight: 300;
letter-spacing: 0.5px;
outline: 0;
transition: all 0.21s;
transition-timing-function: ease-out;
}
.button_notify-when-available:hover {
transition: all 0.17s;
transition-timing-function: ease-out;
border: 2px solid var(--main-yellow-color);
color: var(--main-yellow-color);
}
.box_btn-sizeguide {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.box_btn-sizeguide:hover{
  cursor: default;
}
.button_sizeguide {
  background: none;
  border: none;
  text-decoration: none;
  color: var(--main-yellow-color);
  font-size: 30px;
  font-family: Windsor-el-bt, NewYork, 'Helvetica Neue';
  padding: 0 5px;
  outline: 0;
}
.button_sizeguide:hover {
  opacity: 0.8;
  cursor: pointer;
}
.img-sizeguide {
  margin-left: 4px;
  position: relative;
  top: 5px;
  width: 24px;
  height: auto;
  cursor: pointer;
}
*, *::after, *::before {
box-sizing: border-box;
}
#overlay_size {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}
#overlay_size.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.tee_size_draw {
  width: 220px;
  height: auto;
} 
table.sizeguide {

font-family: 'Helvetica Neue', Lato;
color: var(--black-color);
border-collapse: collapse;
border-radius: 12px;
border-style: hidden; /* hide standard table (collapsed) border */
box-shadow: 0 0 0 1px var(--grey-color-1); /* this draws the table border  */
}
table.sizeguide td, table.sizeguide th {
  border: 1px solid var(--black-color); 
  text-align: center;
  font-size: 15px;
}
table.sizeguide td {
  padding: 10px 25px;
}
table.sizeguide th {
  padding: 10px 30px;
}
p.modal_size-text {
  font-size: 14px;
  font-family: 'Helvetica Neue', Lato;
  color: var(--black-color);
}

/* Fin POPUP SizeGuide */

/* NOTIFY WHEN AVAILABLE */

*, *::after, *::before {
box-sizing: border-box;
}

#overlay_notify
{
position: fixed;
opacity: 0;
transition: 200ms ease-in-out;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .5);
pointer-events: none;
}

#overlay_notify.active
{
opacity: 1;
pointer-events: all;
z-index: 2;
}
.modal {
  position: fixed;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border-radius: 5px;
  z-index: 10;
  background-color: var(--main-bg-color);
  max-width: 95%;
  max-height: 80%;
  overflow-y: auto;
  padding: 14px;
}
.modal.active {
  transform: translate(-50%, -50%) scale(1);
}
.modal.stock {
  width: 400px;
}
.modal.notify {
  width: 500px;
}
.modal.contact {
  width: 600px;
}
.modal.password {
  width: 700px;
}
.modal.livraison {
  width: 800px;
}
.modal.size{
  width: 1000px;
}
.modal.connect {
  top: 50%;
  width: 450px;
  display: none;
}
.modal.connect.active {
  display: flex;
  width: 450px;
  padding: 14px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.modal.connect .modal-body{
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.modal.account{
  width: 450px;
  transition: unset;
}
.modal.search {
  top: 50px;
  transform: translate(-50%, 0);
  display: none;
  width: 700px;
  padding: 0;
}
.modal.search .modal-header{
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.modal.search .modal-body {
  padding: 0;
}
.modal.search.active {
  display: block;
}
.modal.order_history{
  transition: unset;
  border-radius: 5px;
  width: 500px;
}
.modal.view_command {
  width: 1000px;
  background: var(--main-bg-color);
}
.modal.newsletter {
  width: 815px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.modal.newsletter p {
  margin: 0px;
  padding: 0px;
}
.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  color: var(--black-color);
}

.modal-title_2, .modal-title  {
  display: flex;
  justify-content: center;
  font-size: 22px;
  font-family: 'Helvetica Neue';
  font-weight: 400;
  font-style: normal;
  color: var(--main-yellow-color);
  margin: 0;
  padding: 0;
}
.modal-title-black{
  font-size: 17px;
  font-weight: bold;
  color: var(--black-color);
}
.modal-title.view_command {
  font-size: 28px;
}
.modal-body {
  padding: 10px;
  color: var(--black-color);
}
.modal-body p.informed, .modal-body p.disponibility {
  font-size: 14px;
  font-family: 'Helvetica Neue';
  font-weight: 300;
  letter-spacing: 0.5px;
}
.modal-body p.disponibility {
  margin-top: 0;
}
.modal-body p.informed {
  color: var(--grey-color-2);
}
.modal-body h3 {
  color: var(--main-yellow-color);
}

.modal-signature{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
.modal-signature p {
  font-family: Windsor-el-bt, 'Helvetica Neue', Lato;
  font-size: 20px;
  font-weight: normal;
  color: var(--main-yellow-color);
}
#overlay_contact {
position: fixed;
opacity: 0;
transition: 200ms ease-in-out;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .3);
pointer-events: none;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
#overlay_contact.active {
opacity: 1;
pointer-events: all;
z-index: 2;
}
#overlay_livraison {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .3);
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#overlay_livraison.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
#overlay_blurred {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .3);
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#overlay_blurred.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.button_modal-ViewCommand{
  font-family: HelveticaNeue-Bold, Lato;
  font-size: 23px;
  font-weight: 700;
  font-style: normal;
  color: var(--main-yellow-color);
  cursor: pointer;
  margin-bottom: 30px;
  transition: 0.2s ease-in-out;
}
.button_modal-ViewCommand:hover {
  opacity: 0.7;
}
#overlay_view_command {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}
#overlay_view_command.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.button_modal-password{
position: relative;
top: 20px;
background: none;
border: none;
color: var(--black-color);
font-style: normal;
font-size: 15px;
font-family: 'Helvetica Neue';
cursor: pointer;
margin-bottom: 30px;
text-decoration: none;
outline: 0;
}

.form-modal{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  padding: 10px 0;
}
.form-modal input {
  background: none;
  border: none;
  border-bottom: solid 2px var(--main-yellow-color);
  width: 90%;
  height: 45px;
  margin-right: 20px;
  padding-left: 10px;
  color: var(--black-color);
  font-family: Windsor-el-bt;
  font-size: 28px;
  font-weight: normal;
  outline: 0;
  position: relative;
  bottom: 2px;
}
#overlay_password {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .3);
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#overlay_password.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.details_order_history-btn {
  font-family: HelveticaNeue-Bold, Lato;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--black-color);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 15px;
  padding: 10px;
}
.details_order_history-btn:hover {
  color: var(--main-yellow-color);
}
.modal-header.view_command div{
display: flex;
flex-direction: row;
align-items: center;
}
.modal-header.view_command div a{
margin-left: 21px;
}
.modal-header.view_command div a img{
width: 22px;
height: auto;
color: var(--black-color);
}
.modal-header.view_command div a img:hover{
opacity: 0.8;
}

.close_ViewCommand-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--black-color);
}
.close_ViewCommand-button:hover {
opacity: 0.9;
}
.modal_ViewCommand-body {
  margin-top: 20px;
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
#overlay_view_command {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}
#overlay_view_command.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.big_container_command{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 50px;
  padding: 0px 20px 20px 22px;
}
.container_command{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px 0px;
}
.article_informations{
  margin-left: 30px;
}
.container_command img {
 width: 120px;
 height: auto;
}
.container_command .article_descritpion{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  margin-left: 25px;
}
.container_command-total{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 25px;
}
.container_command-total .download_invoice{
  font-family: HelveticaNeue-Medium, Lato, NewYork;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--black-color);
}
.container_command-total .total{
  font-size: 20px;
  font-family: HelveticaNeue-Light, Lato, NewYork;
  font-weight: 300;
  letter-spacing: 2px;
  font-style: normal;
  color: var(--black-color);
}
/* END MODAL */
.big_container_pop_up_command{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.container_command.histo_commande {
  border: none;
  padding: 10px 0;
}
.container_cross{
background: transparent;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
width: 30px;
height: 20px;
border: none;
cursor: pointer;
border-radius: 5px;
position: relative;
outline: 0;
transform: rotate(0deg);
transition: 0.4s ease-in-out;
}
.container_cross.cart-option {
padding: 20px;
}
.container_cross.histo_commande div {
width: 25px;
height: 18px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
pointer-events: none;
}
.container_cross.histo_commande div span {
position: absolute;
top: 8px;
right: 0px;
border-radius: 10px;
width: 25px;
height: 1px;
background: var(--black-color);
transform: rotate(0deg);
transition: 0.5s ease-in-out;
}
.container_cross div {
width: 20px;
height: 18px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
pointer-events: none;
}
.container_cross div span {
position: absolute;
top: 8px;
right: 0px;
border-radius: 10px;
width: 20px;
height: 1.5px;
background: var(--black-color);
transform: rotate(0deg);
transition: 0.5s ease-in-out;
}
.container_cross div span:nth-child(1){
  transform: rotate(45deg);
}
.container_cross div span:nth-child(2){
  transform: rotate(-45deg);
}
.container_cross:hover {
  opacity: 1;
  transform: rotate(-180deg);
  transition: 0.4s ease-in-out;
}
.container_cross.minus-option:hover div span:nth-child(1), .container_cross.minus-option:hover div span:nth-child(2){
  transform: rotate(0deg);
  width: 15px;
  height: 2px;
}
#notify_form select
{
  width: 100%;
  height: 40px;
  font-size: 17px;
  border-radius: 10px;
  border: 1px solid var(--grey-color-2);
  padding-left: 15px;
  color: var(--black-color);
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
#notify_form input
{
outline: 0;
border: none;
background: none;
border-bottom: 2px solid var(--main-yellow-color);
width: 100%;
font-size: 15px;
font-family: 'Helvetica Neue', Lato, NewYork;
font-style: normal;
font-weight: normal;
margin: 20px 0;
padding: 0 0 3px 3px;
}
/* ---------------- NOTE & DETAILS ---------------- */

/* product_tabs */
.product_tabs div.tab{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid var(--main-yellow-color);
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.product_tabs div.tab:last-child{
  border-bottom: 1px solid var(--main-yellow-color);
}
.product_tabs div.plus_cross{
  display: flex;
}
.product_tabs p{
  font-family: Windsor-el-bt, 'Helvetica Neue', Lato;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  color: var(--main-yellow-color);
  padding: 2px;
  margin: 0;
}
.box_details p{
  color: var(--black-color);
}
.plus_cross{
background: transparent;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
margin: 10px 10px 10px 40px;
width: 20px;
height: 20px;
border: none;
cursor: pointer;
border-radius: 5px;
position: relative;
outline: 0;
transform: rotate(0deg);
transition: 0.4s ease-in-out;
}
.plus_cross div {
width: 16px;
height: 18px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
pointer-events: none;
}
.plus_cross div span {
position: absolute;
top: 8px;
right: 0px;
border-radius: 10px;
width: 16px;
height: 2px;
background: var(--main-yellow-color);
transform: rotate(0deg);
transition: 0.5s ease-in-out;
}
.plus_cross div span:nth-child(1){
  transform: rotate(90deg);
}
.plus_cross div span:nth-child(2){
  transform: rotate(180deg);
}
.tab:hover .plus_cross {
  opacity: 1;
  transform: rotate(-135deg);
  transition: 0.4s ease-in-out;
}
/* ---------------- NOTE - ARTICLE--------------- */
.box_note {
  font-family: HelveticaNeue-Light;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-top: 40px;
  color: var(--black-color);
  width: 370px;
  max-width: 95%;
  display: none;
}
.box_note ul{
  list-style-type: disc;
}
.box_note ul li {
  padding-left: 16px;
  margin-left: 12px;
}
.cercle {
  margin-left: 20px;
  height: 17px; 
  width: 17px; 
  border-radius: 50%;
  position: relative;
  top: 2px;
}
.img_pousse-icon{
  width: auto;
  height: 30px;
  margin-left: 16px;
  position: relative;
  top: 2px;
}
.box_note.active, .box_details.active{
  display: flex;
  transition: 1s ease-in-out;
}
/* -------------- DETAILS - ARTICLE ------------ */
.box_details{
display: flex;
flex-direction: column;
margin-top: 40px;
display: none;
}
.box_details h3{
font-family: NewYork;
font-size: 26px;
font-weight: normal;
padding-bottom: 10px;
border-bottom: solid 2px var(--black-color);
}
.box_details p {
font-family: HelveticaNeue-Light;
margin-top: 0px;
font-size: 18px;
font-weight: 300;
letter-spacing: 0.3px;
line-height: 24px;
max-width: 100%;
word-wrap: break-word;
text-align: justify;
white-space: normal;
}


/*-----------------------------------------------PANIER--------------------------------------------------*/
.container_panier {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;

}
.box_title_panier{
width: 80%;
}
.box_title_panier h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: windsor-el-bt, NewYork, 'Helvetica Neue';
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--black-color);
  padding: 50px 0 10px 0;
  margin-bottom: 0;
}
/* Panier Vide */

.box.empty_card h1 {
  
  font-family: windsor-el-bt, NewYork, 'Helvetica Neue';
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  color: var(--black-color);
  margin-top: 50px;
}

/* Fin du Panier Vide */

.container-cart {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 20px 40px;
  gap: 40px;
}
.container-articles-cart{
  width: 100%;
}

/* Bloc de gauche */

.article-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--lightgrey-color);
}

.item_panier {
  display: flex;
  width: 180px;
  margin: 10px 0 10px 0;
}
.box_item-info_panier {
  margin-left: 50px;
}
.box_item-info_panier a{
text-decoration: none;
}
.box_item-info_panier p {
  font-family: 'Helvetica Neue', Lato, NewYork;
  font-weight: 400;
  color: var(--black-color);
  margin: 15px;
}
p.item_name_panier {
font-family: Windsor-el-bt;
font-size: 26px;
font-weight: 400;
letter-spacing: 1.6px;
}
p.item_price_panier {
font-family: HelveticaNeue-Light;
font-size: 22px;
font-weight: 300;
letter-spacing: 0px;
margin-top: 0;
margin-bottom: 10px;
}
p.item_price_panier.soldes {
text-decoration: line-through;
}
p.item_price_panier.new_price{
color: var(--error-color);
margin-left: 12px;
}
p.item_size_panier {
font-size: 20px;
color: var(--grey-color-1);
}
.container_quantity_in_panier{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
gap: 5px;
margin-left: 15px;
}
.container_quantity_in_panier div.nbre_in_panier,
.container_quantity_in_panier button.remove_in_panier,
.container_quantity_in_panier button.add_in_panier{
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: HelveticaNeue-Medium, Lato;
  font-weight: 500;
  font-size: 20px;
  transition: all 0.22s ease-in-out;
  height: 35px;
  width: 55px;
  padding: 5px;
  border-radius: 5px;
}
.container_quantity_in_panier button.remove_in_panier,
.container_quantity_in_panier button.add_in_panier {
  font-family: HelveticaNeue-Medium, Lato;
  border: none;
  font-weight: 500;
  font-size: 17px;
  width: 35px;
  cursor: pointer;
  background: var(--lightgrey-color);
}
.container_quantity_in_panier button.remove_in_panier:hover,
.container_quantity_in_panier button.add_in_panier:hover {
  filter: contrast(90%);
}

.div-crosstimes_cart{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.box-continue_achat {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}
.continuer_mes_achats {
font-family: windsor-el-bt, 'Helvetica Neue', Lato, NewYork, KeeponTruckin;
font-weight: normal;
color: var(--main-yellow-color);
filter: contrast(90%);
font-size: 21px;
text-decoration: none;
}
.continuer_mes_achats:hover {
  color: var(--main-yellow-color);
  filter: contrast(100%);
}
/* FIN du Bloc de gauche */


/*Bloc de Droite*/
.container_cart_paiement{
  display: flex;
  flex-direction: column;
  width: 500px;
  position: sticky;
  top: 80px;
}
.box_paiement {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 10px;
}
.subtotal_global {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 11px;
}
.subtotal_global h2, .subtotal_global p {
  font-family: HelveticaNeue-Medium, Lato, NewYork;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--black-color);
  margin: 0;
  padding: 0;
}
#checkout-button{
  background: black;
  font-size: 17px;
  padding: 10px 25px 10px 25px;
  margin-bottom: 10px;
}
.FreeShippingCost {
  font-family: HelveticaNeue-Light, Lato;
  font-size: 14px;
  font-weight: 300px;
  letter-spacing: 0.8px;
  color: var(--black-color);
  margin: 0;
  padding: 0;
  padding-bottom: 30px;
}
.ShippingCost {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  color: var(--black-color);
  margin: 0;
  padding: 0;
  padding-bottom: 23px;
}
.ShippingCost p, .ShippingCost h2 {
  font-size: 16px;
  font-family: 'Helvetica Neue', Lato, Arial;
  font-weight: 400;
  letter-spacing: 2px;
}

/* ---------------------------------------------------- WEATHER_LINE ---------------------------------------------------- */

/* le block conteneur */
.marquee-weather {
position: fixed;
bottom: 0px;
display: flex;
width: 100%;
height: 35px;                             
overflow: hidden;                         
background-color: var(--black-color);
opacity: 80%;
z-index: 20;
}
/* le bloc défilant */
.marquee-weather > :first-child {
display: inline-block;
display: flex;
flex-direction: row;
align-items: center;              
padding-right: 1em;
padding-left: 100%;                       
white-space: nowrap;
animation: defilement 90s infinite linear;
}
@keyframes defilement {
  0% {
    transform: translate(0%);        
  }
  100% {
    transform: translate(-100%);    
  }
}


/* ----------------------------METEO-------------------------- */
/* Icon Météo */
.soleil {
max-height: 30px;
width: auto;
margin-top: 3px;
}
.nuage_soleil {
height: 34px;
width: auto;
margin-top: 2px;
}
.nuage {
height: 30px;
width: auto;
margin-top: 3px;
}
.pluie {
height: 30px;
width: auto;
margin-top: 3px;
}
.orage {
height: 30px;
width: auto;
margin-top: 3px;
}
.neige {
height: 30px;
width: auto;
margin-top: 3px;
}
.brouillard {
height: 35px;
width: auto;
margin-top: 3px;
}
.tornade {
height: 27px;
width: auto;
margin-top: 3px;
}
.volcan {
height: 30px;
width: auto;
}

/* Paramètres villes */
.city { /* Villes */
color: white;
margin-left: 20px;
font-family: HelveticaNeue-Light, NewYork;
font-weight: 300;
letter-spacing: 7px;
}
.style_temp { /* température affiché */
color: white;
margin-left: 20px;
font-family: HelveticaNeue-Light, NewYork;
font-weight: 300;
}
/* séparation de la température*/
.temp_sep {
color: white;
margin-left: 40px;
margin-right: 40px;
}


/* ---------------------------------------------------- CONNEXION / INSCRIPTION -----------------------------------------------*/

.container_formulaire_co{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.no-account--login{
  color: var(--black-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  cursor: pointer;
}
.no-account--login span{
  color: var(--main-yellow-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.inputs-connection{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.buttons-connection{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.form-connexion_message, .form-inscription_message{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.titre {
margin-left: 2px;
font-size: 22px;
font-family: 'Helvetica Neue', Lato, Arial;
font-weight: 400;
color: var(--black-color);
letter-spacing: 1px;
}
.element_formulaire {
  border: 1px solid var(--black-color);
  border-radius: 7px;
  width: 100%;
  height: 33px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 15px;
  outline: 0;
}
.box-input_nom_prenom-inscr{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.element_formulaire_bis{
  border: 1px solid var(--black-color);
  border-radius: 7px;
  width: 47%;
  height: 33px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 15px;
  outline: 0;
}
.box_checkbox_co{
  display: flex;
  flex-direction: row;
  align-items: center;
  outline: 0;
  margin: 0;
}


/* CHECKBOX */ 
.box_checkbox_co div{
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border: 1px solid var(--main-yellow-color);
  border-radius: 5px;
}
.roundOne-checkbox{
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}
.active-RememberMe{
  background: var(--main-yellow-color);
}
.checkox_co_text{
  color: var(--black-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  cursor: pointer;    
}
.text_no-compte{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.inscrire_mdpoublie{
  color: var(--sand-1-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}
.inscrire_mdpoublie:hover {
opacity: 0.8
}
/* -------------------------------- CONFIRMATION D'INSCRIPTION ---------------------------------- */
.container-confirm_inscription{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 100px 5% 0 5%;
}
.box-confirm_inscription{
display: flex;
flex-direction: column;
align-items: flex-start;
}
.h1_confirm-inscr{
font-family: 'Helvetica Neue';
font-size: 24px;
font-weight: bold;
font-style: italic;
color: var(--main-yellow-color);
}
.text_confirm-inscr{
margin-top: 0px;
font-family: 'Helvetica Neue';
font-size: 18px;
font-weight: bold;
font-style: italic;
color: var(--main-yellow-color);
}
.IMG_plage-confirm-inscr{
width: 900px;
max-width: 100%;
height: auto;
}
.No-email_confirm-inscr{
text-decoration: none;
font-family: 'Helvetica Neue';
font-size: 15px;
font-weight: bold;
font-style: italic;
color: var(--black-color);
background: linear-gradient(to top, var(--black-color) 0%, var(--black-color) 5%, transparent 5.01%) no-repeat left bottom / 0 100%;
transition: background-size .5s;
outline: 0;
}

.No-email_confirm-inscr:hover {
background-size: 100% 100%;
}
/*--------------------------------------------------Mon PROFIL-----------------------------------------------------------------------------*/
.profil-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
  margin-top: 150px;
}
.profil-title h1 {
  font-family: Windsor-el-bt, NewYork, 'Helvetica Neue', Lato;
  font-weight: 400;
  font-size: 30px;
  margin: 0;
  color: var(--black-color);
}
.profil-title span {
  font-family: HelveticaNeue-Light, Lato, Arial;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  color: var(--black-color);
}
.profil-title span:hover {
  opacity: 0.6;
}
.body_profil {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 120px;
}
.container_monprofil {
display: flex;
flex-direction: column;
justify-content: center; 
align-items: center;
}
.container_monprofil h2 {
  color: var(--black-color);
  font-size: 30px;
  font-family: Windsor-el-bt, 'Helvetica Neue', Lato, Arial;
  font-weight: 400;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  align-self: flex-start;
  height:40px;
  align-items: flex-end;
}
.container_profil-information{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.container_profil-information p   {
  margin: 6px 0;
  padding: 0;
  font-family: HelveticaNeue-Light, Lato, Arial;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--black-color);
  line-height: 20px;
}
.box-input_Monprofil{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.input_profil-information {
  font-family: HelveticaNeue-Light, Lato, Arial;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-align: left;
  color: var(--main-black-color);
  padding: 2px;
  border: none;
  border-bottom: solid 2px var(--main-yellow-color);
  width: 100%;
  margin-top: 9px;
  margin-bottom: 9px;
  background: none;
  outline: none;
}
.add_submit-profil{
  margin-top: 50px;
  width: 100%;
}
/*--------------------------------------------------MES COMMANDES---------------------------------------------------*/
.title-histo-des-commandes{
display: flex;
justify-content: center;
align-items: center;
margin: 63px 0;
font-family: 'Helvetica Neue', Lato, Helvetica;
font-size: 23px;
text-align: center;
}
.body-mes-commandes{
display: flex;
justify-content: center;
align-items: center;
margin-top: 69px;
}
.container-table-histo-des-commandes{
display: flex;
justify-content: center;
}
.no_commande{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.no_commande p{
  font-family: Helvetica-Light, 'Helvetica Neue', Helvetica, Arial;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  color: var(--black-color);
  text-align: center;
  line-height: 24px;
}
table.histo-des-commandes{
font-family: 'Helvetica Neue', Lato, Helvetica;
border-collapse: collapse;
/*border-radius: 20px;
/*border-style: hidden; /* hide standard table (collapsed) border */
/*box-shadow: 0 0 0 1px var(--grey-color-1); /* this draws the table border  */ 
}
th.histo-commande{
border-bottom: 1px solid var(--black-color);
padding: 16px 34px;
font-family: HelveticaNeue-Medium;
font-size: 16px;
font-weight: 500;

}
td.histo-commande{
border-bottom: 1px solid var(--black-color);
text-align: left;
padding: 14px 26px;
font-size: 16px;
}
.content-histo{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.product-content-histo-commande{
width: 90px;
cursor: pointer;
}

.overlay--classic
{
position: fixed;
opacity: 0;
transition: 200ms ease-in-out;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .5);
pointer-events: none;
}

.overlay--classic.active
{
opacity: 1;
pointer-events: all;
z-index: 2;
}
.overlay--blurred {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .3);
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.overlay--blurred.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

/* -------------------------------------- MDP OUBLIE ------------------------------------- */
.container_forget_password {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
margin-top: 160px;
}
form.forget_password input {
  outline: 0;
  border: none;
  background: none;
  border-bottom: 2px solid var(--main-yellow-color);
  width: 100%;
  font-size: 28px;
  font-family: Windsor-el-bt, 'Helvetica Neue', Lato;
  color: var(--black-color);
  margin: 20px 0;
  padding: 0 0 3px 3px;
}
form.forget_password input.code_pass {
  font-family: HelveticaNeue-Light, Lato;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.5px;
}
.titre_mdp_oublie{
  margin-bottom: 20px;
  font-size: 18px;
  font-family: HelveticaNeue-Medium, Lato, Arial;
  font-weight: 500;
}

.img_search_tee-shirt {
  width: 50px;
  height: 50px;
}
/**************************************** PAIEMENT ***************************************/
.banner-delivery-payment{
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  animation: translateMouvY 2s;
  background: #fff;
}
.banner-delivery-payment div{
  display: flex;
  width: 1040px;
  max-width: 100%;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.banner-delivery-payment .free_delivery {
font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: normal;
color: var(--black-color);
margin: 0;
}
.underflames_title.payment{
  font-family: windsor-el-bt;
  font-weight: 400;
  font-size: 32px;
  font-style: normal;
  padding: 0;
  margin: 0;
}

/*----FIN DU TOP ------*/
.all_box-paiement
{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  align-self: stretch;
  flex-wrap: wrap;

}
.all_box-paiement p {
  margin: 0;
}
.container-delivery.payment{
  gap: 30px;
}
.container-delivery
{
  display: flex;
  width: 500px;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
.delivery--contact-adress{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  align-self: stretch;
}
.title--delivery-payment
{
  font-family: HelveticaNeue-Medium, 'Helvetica Neue', Helvetica, Lato, Arial;
  color: var(--black-color);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.44px;
}
.container--inputs-delivery{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}
.delivery-inputs-in-row{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.input--delivery{
  display: flex;
  height: 44px;
  padding: 12px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  width: 100%;
  border-style: none;
  border-bottom: solid 2px var(--sand-1-color);
  background: transparent;
  color: var(--black-color);
  font-family: HelveticaNeue-Regular, 'Helvetica Neue', Helvetica, Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
.input--delivery:disabled{
  opacity: 0.5;
}
.container-order-recap{
  display: flex;
  width: 400px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
#order-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.order-recap-total-details{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.order-recap-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.order-recap-details p:nth-child(1){
  color: var(--black-color);
  font-family: HelveticaNeue-Regular, 'Helvetica Neue', Helvetica, Arial, Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
.order-recap-details p:nth-child(2){
  color: var(--black-color);
  font-family: HelveticaNeue-Medium, 'Helvetica Neue', Helvetica, Arial, Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
}
.order-recap-details.promo p:nth-child(1){
  font-family: HelveticaNeue-Medium, 'Helvetica Neue', Helvetica, Arial;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 10px;
  background: var(--sand-2-color);
}
.order-recap-details.total p:nth-child(1){
  color: var(--black-color);
  font-family: HelveticaNeue-Regular, 'Helvetica Neue', Helvetica, Arial, Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
}
.order-recap-details.total p:nth-child(2){
  color: var(--black-color);
  font-family: HelveticaNeue-Medium, 'Helvetica Neue', Helvetica, Arial, Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.4px;
}
.order-recap-ctas{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.order-recap-discount-form{
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
/* RIGHT BOX */
#order_price_box{
  margin-top: 20px;
  margin-bottom: 15px;
}
#promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.code_result{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
input.discount_code {
  color: var(--black-color);
  font-family: HelveticaNeue-Regular, 'Helvetica Neue', Helvetica, Arial, Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  border-style: none;
  background: transparent;
  border-bottom: 2px solid var(--sand-1-color);
  display: flex;
  height: 50px;
  padding: 12px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}
.discount_code-btn{
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--Main-Color, #FFC000);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.5px;
  border-radius: 10px;
  font-family: windsor-el-bt, 'Helvetica Neue', Lato;
  color: var(--main-yellow-color);
  border: 2px solid var(--main-yellow-color);
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.reduction-container{
  display: flex;
  height: 54px;
  padding: 0px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background:var(--sand-2-color);
}
p.code_promo {
  font-size: 18px;
  font-weight: 500;
  font-family: HelveticaNeue-Medium, Lato;
  color: var(--black-color);
  line-height: normal;
  letter-spacing: 0.36px;
}
/*--- FOOTER ---*/
.footer_paiement
{
    height: 90px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 80px;
    margin-top: 100px;
}
.footer_paiement.success
{ 
    width: 90%;
    height: 90px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 100px;
}
.footer_paiement p:nth-child(1)
{
    display: flex;
    font-family: windsor-el-bt, 'Helvetica Neue', Lato;
    font-size: 27px;
    color: var(--main-yellow-color);
    cursor: pointer;
}
.footer_paiement p:nth-child(1):hover{
    opacity: 0.8;
}
.footer_paiement p:nth-child(2)
{
    font-family: 'Helvetica Neue', Lato;
    font-style: normal;
    font-size: 14px;
    color: var(--main-yellow-color);
}

/******************* PAIEMENT CARD ********************/


@keyframes translateMouvY{
  from{
    transform: translateY(-40px);
  }
  to {
    transform: translateY(0px);
  }
}
.checkout-status-bar{
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
}
.checkout-steps{
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.container-payment{
  display: flex;
  flex-direction: column;
  width: 400px;
  max-width: 100%;
  gap: 30px;
}
.customer-delivery-information{
  display: flex;
  padding: 30px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--sand-2-color);
}
.delivery-information{
  color: var(--black-color);
  font-family: HelveticaNeue-Regular, 'Helvetica Neue', Helvetica, Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
.delivery-customer_name{
  color: var(--black-color);
  font-family: HelveticaNeue-Bold, 'Helvetica Neue', Helvetica, Arial;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.52px;
}
.customer-delivery-information-address{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
.delivery-information.address{
  color: var(--black-color);
  font-family: HelveticaNeue-Medium, 'Helvetica Neue', Helvetica, Arial;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.36px;
  font-weight: 500;
}
.customer-delivery-information-address div{
  display: flex;
  align-items: center;
  gap: 25px;
  align-self: stretch;
}
.title--delivery-payment-total{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
/*--- Paiement Card ----*/


.input-card_number
{
    width: 100%;
    height: 40px;
    border-style: none;
    border: 1px solid var(--black-color);
}
.box-input_CVC-ExpDate
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}
.input-card__
{
    width: 48%;
    height: 40px;
    border-style: none;
    border: 1px solid var(--black-color);
}

/************************************ BOX PAIEMENT *****************************************/
#payment-form{
  width: 100%;
}
.box-payement_card{
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.result-message {
  line-height: 22px;
  font-size: 16px;
}
.result-message a {
  color: rgb(89, 111, 214);
  font-family: HelveticaNeue-Bold;
  font-weight: 600;
  text-decoration: none;
}
#card-error {
  color: rgb(105, 115, 134);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}
#card-element {
  border-radius: 10px ;
  padding: 12px 9px ;
  /*border: 1px solid rgba(50, 50, 93, 0.1);*/
  height: 64px;
  /*background: transparent;*/
  background: #FBFAF6;
  margin-bottom: 15px;
  box-shadow: 0px 1px 10px 1px rgba(50, 50, 93, 0.05);
}
#payment-request-button {
  margin-bottom: 32px;
}
/* Buttons and links */
/*
.button_payer {
  background: #70A55E;
  color: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
  border-radius: 0 0 4px 4px;
  border: 0;
  margin: 0;
  height: 43px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
*/
.button_payer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  margin: 0;
  height: 55px;
  border-radius: 10px;
  /* background: linear-gradient(-45deg, #70A55E, #93C880, #A6CF98); */
  background: var(--black-color);
  background-size: 300%;
  animation: anime 4s linear infinite;
  /*box-shadow: 0px 4px 20px 1px #D0EBC6;*/
  font-family: HelveticaNeue-Bold, Arial;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.button_payer:hover {
  filter: contrast(115%);
}
.button_payer:disabled {
  opacity: 0.8;
  cursor: default;
  background: var(--black-color);
  animation: none;
  box-shadow: none;
}

/* spinner/processing state, errors */
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*@media only screen and (max-width: 600px) {
  #payment-form {
    width: 80vw;
  }
}*/

.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: absolute;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: var(--black-color);
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: var(--black-color);
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}
/* SUCCESS */

.container__success{
  display: flex;
  flex: row;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--sand-2-color); /*second bg color*/
  width: 100%;
}
img.underflames__success {
  width: 250px;
  margin-top: 0;

}
.container_left__success{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--main-bg-color);
  width: 60%;
  height: 100%;
  padding-top: 70px;
/*  border-right: 2px solid var(--lightgrey-color);*/
}
.container1_left__success{
  width: 90%;
}
.container1_left__success p, .container_left__success h1 {
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
}
.container1_left__success div h1{
  font-size: 16px;
  font-weight: 200;
}
.thanks_to__success{
  font-size: 22px;
  font-weight: 400;
}
.order_sum_content{
  z-index: 5;
}
.order_summary{
  background: var(--sand-2-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  height: 50px;
  border-radius: 10px;
  padding: 0px ;
  gap: 10px;
  z-index: 5;
  cursor: pointer;
}
.order_summary p{
  font-family: 'Helvetica Neue', Lato;
  font-size: 16px;
  color: var(--black-color);
  font-weight: normal;
  font-style: normal;
  user-select: none;
  pointer-events: none;
}
.arrow_rotation{
  transform: rotate(180deg);
}
.arrow_drop{
  width: 24px;
  height: 24px;
  user-select: none;
  pointer-events: none;
}
.order_content {
  position: relative;
  bottom: 15px;
  background: var(--sand-2-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 0 0 10px 10px;
  padding: 26px 10px 0 10px;
  border: none;
}

.customer_data__success{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 20px;
  margin-top: 10px;
  padding: 24px 30px ;
  border: 1px solid var(--sand-2-color);
}
.customer_data__success p{
  font-size: 15px;
  font-family: HelveticaNeue-Light, 'Helvetica Neue', Helvetica, Arial;
  font-weight: 300;
  margin: 2px;
  padding: 5px;
}
.customer_data__success h3{
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 15px;
  font-weight: bold;
  color: var(--black-color);
  margin: 5px 5px 10px 5px;
  padding: 5px;
}
.customer_data__success div:nth-child(2) div:nth-child(2) h3{
  margin-top: 36px;
}
.header_customer_data__success{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}
.header_customer_data__success div {
  display: flex;
  justify-content: center;
  width: 80%;
  border-bottom: 1px solid var(--lightgrey-color);
}
.header_customer_data__success h2 {
  font-size: 20px;
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-weight: normal;
}
.container_right__success{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 600px;
  max-width: 100%;
  height: 100%;
  padding-top: 36px;
}
.box_articles__success{
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: center;
}
.box_article__success{
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: center;
 width: 100%;
 margin-bottom: 15px;
}
.box_article__success p {
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 14px;
  padding: 2px;
  margin: 0;
}
.number_article__success{
  position: absolute;
  background: #C5B8A0;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 62px 63px;
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 13px;
  color: #fff;
}
.name_article__success{
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 15px;
  font-weight: bold;
  color: var(--black-color);
}
.size_article__success{
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 13px;
  color: var(--grey-color-1);
/*  color: var(--grey-color-1);*/
}
.price_article__success {
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 16px;
  font-weight: bold;
  color: var(--black-color);
}
.price_article__success.new_price{
  color: var(--black-color);
}
.box_img_article__success{
  background: var(--lightgrey-color);
  width: 72px;
  height: 72px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 11px;
}
.img_product__success{
  width: 58px;
  position: relative;
  user-select: none;
}
.box__data_article__success{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.box__data_article__success.right{
  width: 270px;
}
.container_paiement__success{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.container_subtotal__success{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 350px;
  margin-top: 15px;
  border-top: 2px solid #f0ede4;
  border-bottom: 2px solid #f0ede4;
}
.container_subtotal__success div, .container_total_success {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.container_subtotal__success .bold{
  font-size: 16px;
}
.container_subtotal__success p, .container_total_success p {
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 16px;
}
.container_total_success .bold {
  font-size: 18px;
}
.container_continue__success{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 78px;
}
.container_continue__success p{
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-weight: normal;
  font-style: italic;
  font-size: 15px;
  color: var(--black-color);
}
.container_continue__success p span {
  color: var(--main-yellow-color);
}
.container_continue__success p span:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* ADMIN PAGE */


.container_header_admin{
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
width: 100%;
background: var(--main-bg-color);
z-index: 10;
}
.container_header_admin div {
display: flex;
justify-content: center;
align-items: center;
}
.icon-reload{
  width: 20px;
  height: auto;
  transition: 0.4s;
}
.icon-reload:hover{
  opacity: 0.8;
  cursor: pointer;
  transform: rotate(90deg);
}
.admin_header{
font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
font-size: 20px;
font-weight: bold;
color: var(--black-color);
}
.container_admin{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0px 100px;
  margin-top: 80px;
}
.title_admin {
  font-family: 'Helvetica Neue', Helvetica, Lato;
  font-size: 27px;
  font-weight: bold;
  color: var(--black-color);
}
.container_admin button {
  background: var(--black-color);
  color: #fff;
  font-family: HelveticaNeue-Bold, 'Helvetica Neue', Lato, Arial;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 0;
  padding: 3px 13px;
  height: 43px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
.container_admin button:hover {
  filter: contrast(115%);
}
.box_form-message_update-products{
display: flex;
flex-direction: row;
justify-content: flex-start;
}
#add_product{
  margin-top: 80px;
}
.container_admin_table{
display: flex;
justify-content: flex-start;
}
.container_admin_table table{
border-collapse: collapse;
border-radius: 20px;
border-style: hidden; /* hide standard table (collapsed) border */
box-shadow: 0 0 0 1px var(--grey-color-1); /* this draws the table border  */ 
}
.container_admin_table td, th {
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
}
.container_admin_table td {
  font-size: 13px;
  padding: 3px 7px;
}
.container_admin_table th {
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid;
}
.container_admin_table input{
  width: 80px;
  font-size: 15px;
  padding: 3px 8px;
  border: none;
  text-align: center;
  background: transparent;
}
.container_admin_table input:focus{
  outline-color: var(--main-yellow-color);
}
.container_admin_table .input_name-article{
  width: 250px;
}
.container_admin_table .input_type-article{
  width: 110px;
}
.form_update_message{
  height: 10px;
  text-align: center;
}
.block{
  display: block;
}
.no-decoration{
  text-decoration: none;
}
     
/* WAIT PAGE */


.container.wait {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px 0 80px 0;
height: 100vh;
}
.under_flames__wait{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  text-align: center;
}
.under_flames__wait h1 {
font-family: Windsor-el-bt;
font-size: 30px;
font-weight: normal;
color: var(--black-color);
margin-left: 20px;
}
.under_flames__wait img{
  width: 50px;
  height: auto;
}
.under_flames__wait p {
  margin: 0;
  margin-top: 50px;
  font-family: HelveticaNeue-Light, Lato, Arial;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 300;
  font-style: normal;
}
.container.wait h2 {
margin-top: 60px;
font-family: 'Helvetica Neue', Lato;
font-weight: normal;
font-size: 21px;
color: var(--black-color);
}
.box-sub_newsletter.wait{
  margin-top: 100px;
  margin-left: 0;
}
.launch-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.launch-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Helvetica Neue', Helvetica, Arial;
  font-size: 20px;
  font-weight: bold;
  color: var(--black-color);
}
.launch-date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Helvetica Neue', Helvetica, Arial;
  font-size: 20px;
  font-weight: bold;
  color: var(--black-color);
  margin-left: 10px;
}
.copyright-wait {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
  margin-top: 50px;
  font-family: 'Helvetica Neue', Helvetica, Lato, Arial;
  font-size: 12px;
  font-weight: 400;
}
.countdown-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.countdown-block p, .countdown-block span {
  margin: 10px;
  font-size: 20px;
  font-family: 'Helvetica Neue', Helvetica, Lato;
  font-weight: normal;
}
/* ERROR 404 */

.err404{
  margin-top: 200px;
}
.box.err404 h1{
  font-family: 'Helvetica Neue', Helvetica;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--black-color);
  margin-bottom: 40px;
}
.box.err404 a{
  text-decoration: none;
}










/*-----------------------------------------------------------------------------------------------------------------
------------------------------------------------RESPONSIVE---------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------*/



















  @media screen and (max-width: 500px) {
.free-delivery-banner.header-banner {
  display: flex;
}
.marquee-weather {
display: none;
}
/*  --------------------------------------- TOP --------------------------------------------*/
/* Header element */

.clickable-area-menu{
  display: flex;
}
.element-menu.mobile {
  display: flex;
}
.top_panel {
height:50px;
top: 23px;
}
.top_left{
  padding-left: 20px;
}
.container_menu-1 {
  padding-left: 35px;
}
.element-menu{
  font-size: 16px;
}
.top_right{
  padding-right: 20px;
}
.content--top-left {
  display: none;
}
.container-search_box{
top: 58px;
}
/* ----- Ttile Header ----*/
.underflames_title {
 font-size: 22px;
 margin: 0;
 padding: 0;
}
.navbar_header{
  gap: 12px;
}
a.header--icon{
  width: 24px;
  height: 24px;
}
#loupe-icon {
  display: none;
}
#connexion-icon {
  width: 24px;
}
#panier-icon {
  width: 24px;
  display: flex;
}
.cart_header {
display: none;
}
.container_DropPanier{
  top: 59px;
}
.DropPanier_header{
  margin-top: 13px;
}
#btn_cart {
display: block;
}
.box_checkout-cart{
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
}
/* INDEX */
.container_background_index{
  height: 70vh;
}
.overlay__image_fixed{
  display: none;
}
.landing-products-section {
  flex-direction: column;
}
.landing-product-description {
  display: flex;
  justify-content: center;
  padding: 100px 30px 40px;
  width: 100%;
}
.landing-zone-1 {
  padding: 60px 30px;
}
.landing-zone-1 p {
  font-size: 22px;
}
.product-container {
  width: 100%;
}
.product-section {
  height: 600px;
}
.mobileon {
  display: none;
}
.container__text_event_mobile{
 width: 95%;
 margin-top: 25px;
}
.overlay__image3.newarrivals, .overlay__image3.accessories, .overlay__image3.event1{
  opacity: 1;
}
.overlay__image3.newarrivals p{
  font-size: 25px;
  margin-left: 20px;
}
.overlay__image3.accessories p{
  font-size: 26px;
}

/*  ------------------------------------ FOOTER -----------------------------------------*/
/* Header footer */

.container_footer_subscribe {
margin-top: 140px;
}

.weloveyou {
font-family: Windsor-el-bt;
color: var(--black-color);
font-size: 20px;
}
.a_weloveyou{
text-decoration: none;
color: var(--black-color);
}
.footer_logo {
width: 30px;
height: auto;
margin-left: 20px;
}
/* body footer */
.body_footer{
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
}
/* Footer Information */

.container_footer_link{
margin-top: 80px;
}

.footer li a {
display: flex;
font-family: Windsor-el-bt, 'Helvetica Neue', Helvetica, Lato;
font-size: 15px;
color: var(--black-color);
text-decoration: none;
background: none;
cursor: pointer;
filter: opacity(90%);
z-index: -1;
}
.footer li a:hover{
opacity: 0.8;
}
/* Abonnement à la Newsletter */
.box-sub_newsletter{
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
margin-left: 0;
}
#form-footer-newsletter {
flex-wrap: nowrap;
flex-direction: column;
align-items: center;
}
#form-footer-newsletter input {
border-bottom: solid 2px var(--black-color);
width: 280px;
height: 38px;
margin-right: 0px;
margin-bottom: 9px;
font-size: 20px;
}
.subscribe-btn{
  border: 2px solid var(--black-color);
  font-size: 30px;
  padding: 8px 20px;
  border-radius: 10px;
}
.subscribe-btn:hover{
  border: 2px solid var(--main-yellow-color);
}
.copyright {
font-size: 10px;
padding-bottom: 15px;
}
/* COOKIE */
.cookie_consent {
  padding: 10px 20px;
}
.cookie--text{
  font-size: 11px;
}
.modal_newsletter_text{
  padding: 50px 20px 10px 20px;
  gap: 16px;
}
/* INDEX */
.container_mobile_menu-1{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 70vh;
  align-items: flex-start;
  justify-content: flex-start;
  }
/* ------ SHOP ------ */
.top-shop{
  margin-top: 73px;
}
.free-delivery-banner.shop-banner {
  display: none;
}
.shop-links{
  display: flex;
  padding: 0px 10px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  align-self: stretch;
  overflow: scroll;
}
/* Pour les navigateurs basés sur WebKit (Chrome, Safari) */
.shop-links::-webkit-scrollbar {
  display: none; /* Masquer la scrollbar */
}
/* Pour Firefox */
.shop-links {
  scrollbar-width: none; /* Masquer la scrollbar */
}
.category-shop-link{
  color: var(--black-color);
  font-family: "Helvetica Neue", Helvetica, Arial;
  font-size: 12px;
  font-style: normal;
  line-height: normal;
  padding: 10px;
  margin: 0;
  text-wrap: nowrap;
}
.poster__section {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.products__section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 4px;
}
.poster_product {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Pour cacher toute partie de l'image qui déborde du cadre */
}
/* ARTICLE */

.col_article{
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.col_article.right{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 10px;
  height: 100%;
}
.col-inner_article.right{
  overflow-y: scroll;
}
.title_article {
  font-size: 23px;
  margin-top:  20px;
}
.price_article {
  margin-top: 0px;
  font-size: 25px;
  margin-bottom: 10px;
}
.information_article{
font-size: 16px;
margin: 0;
line-height: 23px;
letter-spacing: 0.3px;
}

.buy-container{
  height: 124px;
}
.sizeguide_select {
width: 100%;
margin-top: 0px;
margin-bottom: 0px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.sizes-buy-buttons{
  padding-top: 10px;
  padding-bottom: 10px;
}
#form-size_product{
  gap: 6px;
}
.variant__button-label, .clicked{
  font-size: 22px;
  border-radius: 8px;
}
.button_submit1{
  border-radius: 8px;
  height: 48px;
  font-size: 22px;
}
/* Modal */

.form-modal input {
  background: none;
  border: none;
  border-bottom: solid 2px var(--main-yellow-color);
  width: 90%;
  height: 45px;
  margin-right: 20px;
  padding-left: 10px;
  color: var(--main-yellow-color);
  font-family: Windsor-el-bt, 'Helvetica Neue', Helvetica;
  font-size: 20px;
  font-weight: normal;
  outline: 0;
  position: relative;
  bottom: 2px;
}

/* POP - UP SizeGuide */
table.sizeguide {
  margin-left: 0px;
  margin-right: 0px;
}
table.sizeguide td, th {
  border: 1px solid var(--black-color);  
  font-size: 11px;
}
table.sizeguide td {
  padding: 8px 10px;
}
table.sizeguide th {
  padding: 8px 12px;
}
p.modal_size-text {
  font-size: 12px;
  font-family: 'Helvetica Neue', Helvetica;
}
.tee_size_draw {
  width: 130px;
  height: auto;
}

/* FIN de la POP-UP */

.box_tab-affiche{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 80%;
}
/* ---------------- NOTE - ARTICLE--------------- */
.box_note {
  font-size: 16px;
  line-height: 27px;
  margin-top: 40px;
}
.img_pousse-icon{
width: 20px;
}
.cercle {
  height: 12px; 
  width: 12px; 
}
/* -------------- DETAILS - ARTICLE ------------ */
.box_details h3{
font-size: 18px;
border-bottom: solid 1px var(--black-color);
}
.box_details p{
font-size: 16px;
line-height: 24px;
}

/* Contact */

.contact_title {
font-size: 20px;
}
.contact_input_name {
font-size: 14px;
}
.contact_input_email {
font-size: 14px;
}
.contact_input_message {
font-size: 14px;
}
/* ------------------------------ Panier ------------------------------ */


.box_title_panier{
  width: 93%;
}
.article-cart {
  border-bottom: 1px solid var(--lightgrey-color);
}
.item_panier {
  width: 115px;
}
.box_item-info_panier{
  margin-left: 20px;
}
.box_item-info_panier p {
  margin: 10px;
}
p.item_name_panier {
  font-size: 20px;
}
p.item_price_panier{
  font-size: 18px;
}
p.item_size_panier{
  font-size: 16px;
}
.item_quantity_panier {
  font-size: 11px;
}
.div-crosstimes_cart{
  display: flex; 
  flex-direction: row; 
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
.container-cart {
  padding: 20px 20px;
}
.details_order_history-btn{ /* Bouton de la pop-up */
   font-size: 13px;
  }
/* Fin du Panier */

/*---------- Mon PROFIL -----------*/
.body_profil {
  flex-direction: column;
}
/* MENTIONS LEGALES */

.mentionslegales div {
  width: 90%;
}

/* THANKS */

.text-MERCI{
  font-size: 14px;
  line-height: 21px;
}

/*------ Mes commandes ------*/

.title-histo-des-commandes{
font-size: 17px;
}
th.histo-commande{
border: none;
border-bottom: 1px solid var(--black-color);
padding: 11px;
font-size: 14px;
font-weight: bold;
}
td.histo-commande{
text-align: center;
padding: 8px 13px;
font-size: 13px;
}

/* Mon profil */

.container-header_monprofil h2 {
font-size: 17px;
}
.container-header_monprofil h3 {
font-size: 13px;
}
.container-form_Monprofil{
max-width: 100%;
}
.profil_information_unit {
font-size: 13px;
}
.input_profil-information {
height: 26px;
font-size: 18px;
}
.box_button_submit-profil{
display: flex;
justify-content: flex-end;
}
.add_submit-profil{
margin-top: 40px;
}
.big_container_command{
  margin-top: 20px;
  padding-left: 0px;
  padding-bottom: 70px;
}
.container_command img {
 width: 70px;
}
.container_command div:nth-child(2) p{
  font-size: 14px;
  margin: 2px;
}
/*************************** Paiement *******************/
.banner-delivery-payment{
  padding: 0px 20px;
}
.banner-delivery-payment div{
  padding: 0;
}
.banner-delivery-payment .free_delivery {
  font-size: 14px;
  }
  .underflames_title.payment{
    font-size: 22px;
  }
.all_box-paiement {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 80px;
}
.all_box-paiement.payment{
  gap: 50px;
}
.container-delivery, .container-order-recap, .container-payment {
  width: 100%;
  padding: 0 20px;
}
.title--delivery-payment{
  font-size: 20px;
}
.customer-delivery-information{
  padding: 24px 40px;
}
.delivery-customer_name {
  font-size: 22px;
}
.delivery-information, .delivery-information.address{
  font-size: 16px;
}
/***************** Paiement Card *****************/


/*--- FOOTER ---*/

.footer_paiement
{
    padding: 0 20px;
}
.footer_paiement p:nth-child(1)
{
    font-size: 20px;
}
.footer_paiement p:nth-child(2)
{
    font-size: 12px;
}
/****** SUCCESS *******/
.header_customer_data__success h2 {
  font-size: 18px;
}
.customer_data__success h3{
  font-size: 16px;
}
.customer_data__success p{
  font-size: 16px;
}
.container_continue__success{
  flex-direction: column-reverse;
  justify-content: center;
}
.container_continue__success p{
  font-size: 13px;
}

  /* SUCCESS */
.container_left__success{
  width: 100%;
  border-right: none;
}
.container1_left__success div h1{
  margin-top: 34px;
}
.container_right__success{
  display: none;
}

/* Wait */

.countdown-block p, .countdown-block span {
  margin: 10px;
  font-size: 15px;
  font-family:'Helvetica Neue', Helvetica, Lato;
  font-weight: normal;
}
}/* FIN du responsive 500px














/*-----------------------------------------------------------------------------------------------------------------
------------------------------------------------RESPONSIVE---------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 960px) {

/* Landing */
.overlay__image_fixed div {
  position: absolute;
  top: 85%;
  left: 50%;
}
.modal_newsletter_img{
  display: none;
}
.container_cross.newsletter div span{
  background: var(--black-color);
}
.modal.newsletter{
  width: 475px;
}
.modal_newsletter_text{
  padding: 50px 20px 10px 20px;
  gap: 22px;
}
.modal_newsletter_text p:nth-child(2){
  font-size: 50px;
}
/* Footer */

.subscribe-btn {
  width: 100%;
}


/* Profil */

.container_monprofil.commande, .container_monprofil.profil {
align-self: center;
}
.modal_ViewCommand-title {
  font-size: 22px;
}
.close_ViewCommand-button {
  font-size: 1rem;
}
.img_pop-up_view_command{
  width: 80px;
}
.p_pop-up_view_command{
  font-size: 8px;
}
/* ARTICLE */

.row_article {
display: flex;
flex-direction: column;
width: 100%;
margin-top: 69px;
}
.col_article {
display: flex;
flex-direction: column;
width: 100%;
}
.col_article.right{
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
/* Panier */
.container-cart{
  flex-direction: column;
}
.container_cart_paiement{
  width: 100%;
  position: static;
  top: 0;
}
  /* SUCCESS */
.container_left__success{
  width: 100%;
  border-right: none;
}
.container1_left__success div h1{
  margin-top: 34px;
}
.container_right__success{
  display: none;
}

} /* Fin du Media 960px */


















@media screen and (min-width: 501px) and (max-width: 960px) {

/*  --------------------------------------- TOP --------------------------------------------*/
.container-Menu-box{
display: flex;
}
/* ----- Ttile Header ----*/
.top_left, .container_menu-1{
  padding-left: 40px;
}
.underflames_title{
  font-size: 29px;
}
.navbar_header {
  gap: 24px;
}
#connexion-icon {
display: flex;
width: 24px;
height: 24px;
}
#panier-icon {
display: flex;
width: 24px;
height: 24px;
}
.cart_header {
display: none;
}
#loupe-icon {
display: flex;
width: 24px;
height: 24px;
}

/*  ------------------------------------ FOOTER -----------------------------------------*/
.body_footer{
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
}
/* Abonnement à la Newsletter */
.box-sub_newsletter{
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
margin-left: 0;
}
#form-footer-newsletter {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
align-items: center;
}
#form-footer-newsletter input {
width: 400px;
height: 45px;
margin-right: 0px;
margin-bottom: 9px;
}

/* POP UP */

table.sizeguide {
border-collapse: collapse;
border-radius: 12px;
border-style: hidden; /* hide standard table (collapsed) border */
box-shadow: 0 0 0 1px var(--grey-color-1); /* this draws the table border  */
margin-right: 0;
margin-left: 0;
}
.tee_size_draw {
  width: 170px;
  height: auto;
}

/* Fin de la POP UP */

/* ------------------------------ Panier ------------------------------ */


.box_title_panier{
  width: 85%;
}
.box_panier {
  flex-direction: column;
  align-items: flex-start;
  width: 87%;
}
.article-cart {
  border-bottom: 1px solid var(--lightgrey-color);
}
.item_panier {
  width: 175px;
}
.item_name_panier {
  font-size: 16px;
}
.item_price_panier{
  font-size: 15px;
}
.item_size_panier{
  font-size: 15px;
}
.item_quantity_panier {
  font-size: 15px;
}
.div-crosstimes_cart{
  display: flex; 
  flex-direction: row; 
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
.crosstimes_cart{
  display: flex;
  text-decoration: none;
  font-size: 23px;
}

/* Fin du Panier */

/* ---------------- SHOP --------------*/
.category-shop-link{
  font-size: 11px;
  padding: 6px;
}
.poster__section {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.products__section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 4px;
}

.poster_product {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Pour cacher toute partie de l'image qui déborde du cadre */
}
/* Article */

.container_article_right{
  position: sticky;
  top: 0px;
  padding: 0 45px;
}
/* ------------------------------- ARTICLE ------------------------------- */
.buy-container{
  height: 171px;
}
.sizes-buy-buttons{
  padding-top: 10px;
  padding-bottom: 45px;
}
/*--------------------------------------------------Mon PROFIL-----------------------------------------------------------------------------*/
.body_profil {
  flex-direction: column;
}
.content_video-monprofil {
  margin: 50px;
}
.video__profil-2{
  display: none;
}

/* MENTIONS LEGALES */

.mentionslegales div {
  width: 90%;
}

/* WAIT */

.container-wait {
  margin-top: 0px;
}
.IMG-Branding_wave{
  margin-top: 20px;
}
.launch-box {
  flex-direction: column;
}

/* Paiement */

/* Delivery Adress */
.banner-delivery-payment{
  display: flex;
  padding: 0px 50px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.banner-delivery-payment div{
  min-width: 500px;
  padding: 0;
}
.container-delivery, .container-order-recap, .container-payment {
  width: 540px;
  padding: 0 20px;
  max-width: 100%;
}

}/* fin du @media 481 - 960 */














/*-----------------------------------------------------------------------------------------------------------------
------------------------------------------------RESPONSIVE---------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------*/

















@media screen and (min-width: 961px){

  .order_summary, .order_content{
    display: none;
  }
  .order_summary.payment, .order_content.payment{
    display: flex;
  }

}
/* fin du @media 1681 - */


