@charset "utf-8";
/* CSS Document */
* {
  padding: 0;
  margin: auto;
  border: 0;
}
body {
  font-family: 'Poppins', sans-serif;
}
.table_prod {
  border-collapse: collapse;
  margin: auto;
  width: 100%;
  max-width: 980px;
}
.table_prod td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px;
}
.table_prod th {}
.quantite input {
    width: 80px;
    padding: 10px;
    font-size: 16px;
    border-bottom: 2px dotted #999;
}
.obligatoire {
    text-align: center;
    color: #999;
}
span.oblig {
    color: red;
    font-size: 20px;
}

#banner .wrap {
  text-align: center;
}
#banner .wrap img {
  margin: 10px auto;
  display: flex
}
.table_prod td {
  color: #666;
  transition: all 0.3s ease 1ms;
}
.table_prod tr.actif td {
  color: #000;
  background-color: rgba(255, 250, 50, 0.1);
}
.table_prod td.nom {
  width: calc(100% - 280px);
}
.table_prod td.pu {
  text-align: center;
  width: 100px;
  background: #e4cd5b linear-gradient(15deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  font-weight: bold;
  font-size: 18px;
}
.row {
  width: 100%;
  max-width: 980px;
  display: flex;
  margin: auto;
  padding: 5px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.row label {
  min-width: 200px;
  margin: auto 15px auto 0
}
.row input.input_nom {
  width: 100%;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.row input.button {
  transition: all 0.3s ease 1ms;
  cursor: pointer;
}
.row input.button:hover {}
input.input_check {
  position: fixed;
  opacity: 0;
  top: -450px;
}
.table_prod td.quantite {
  text-align: center;
  width: 80px;
}
.table_prod td.total {
  width: 100px;
  text-align: center;
}
fieldset {
  border: 0;
  margin: 30px auto;
}
fieldset legend {
  margin: auto;
  color: #fff;
  background: #000;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 24px;
  width: 100%;
  text-align: center;
  padding: 5px 0;
}
#row_total {
  border: 2px solid rgba(0, 0, 0, 0.3);
  width: 250px;
  text-align: center;
  border-radius: 5px;
  background: #fff1ae;
  margin: 10px auto;
  transition: all 0.3s ease 1ms;
  opacity: 0;
}
#row_total em {
  display: block;
}
#row_total span {
  font-size: 25px;
}
.row input.bouton {
    transition: all 0.3s ease 1ms;
    background: #fd3;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px auto;
    box-shadow: 0px 5px 15px -10px #000;
    border: 1px solid #333;
    font-size: 20px;
    cursor: pointer;
}
.row input.bouton.disabled {
    background-color: rgba(0,0,0,0.2);
}

.row input.bouton:hover {
    color: #fff;
    background-color: #291b00;
}



#row_total.isvis {
  opacity: 1;
}
#row_total span {}
#total_outer {}
#total_outer.fixed #row_total {
  position: fixed;
  bottom: 5px;
  right: 5px;
}

.info_commande { 
	text-align: center; 
background: #e4cd5b linear-gradient(15deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
border:1px solid rgba(0,0,0,0.3);
padding:10px;}

select.classselect {
    border: 1px solid rgba(0,0,0,0.3);
    width: 80%;
    padding: 5px;
    font-size: 16px;
    max-width: 350px;
}