:root{
	--CouleurPrincipaleTableau: #c07620;
}

#gestionlot_tableau{
	width:100%;
	max-width:1000px;
	margin:auto;
	color: #564C3B;
	font-size: 19px;
	font-family: "gothambook";
	line-height: 24px;
	display:table;
}

.optionstableau{
	width:100%;
	margin-top:20px;
	margin-bottom:20px;
}

.gestionlotoptions {
	display:flex;
}

.gestionlotoptions ul{
	margin: 10px auto;
}

/* .optionstableau ul{ */
	/* float:left; */
	/* margin: 0px 70px 0 70px; */
/* } */

.optionstableau ul li{
	list-style:none;
}

.gestionlotoptions .catoptiontableau{
	color: var(--CouleurPrincipaleTableau);
	font-weight: bold;
	margin-bottom:10px;
}

.labeloption{
	position:relative;
	cursor: pointer;
	padding-left: 35px;
}

.labeloption .checkmark{
	position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border: 1px solid var(--CouleurPrincipaleTableau);
}

.labeloption .checkmark:after {
	left: 4px;
	top: 0px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.optionstableau .labeloption:hover input ~ .checkmark {
  background-color: #ccc;
  background-color: var(--CouleurPrincipaleTableau);
  transition: all .5s ease;
}
.optionstableau .labeloption input:checked ~ .checkmark {
  background-color: var(--CouleurPrincipaleTableau);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.optionstableau .labeloption input:checked ~ .checkmark:after {
  display: block;
}

.labeloption input{
	display:none;
}

.titreoptiontableau{
	width:100%;
	font-family: 'gothambook';
	font-size: 36px;
	font-weight: normal;
	color: var(--CouleurPrincipaleTableau);
	line-height: 50px;
}

.tableau_table{
	width:100%;
	border-spacing:0px;
	border-bottom: 1px solid var(--CouleurPrincipaleTableau);
	margin-bottom:10px;
}

.tableau_table td{
	padding:5px;
	text-align:center;
	white-space:nowrap;
}

.tableau_table .firsttr{
	background-color:var(--CouleurPrincipaleTableau);
	color:#fff;
}

.tableau_table .firsttr td{
	border-left: 1px solid #fff;
	white-space:normal;
}

.tableau_table .firsttr td:first-child{
	border-left: 1px solid var(--CouleurPrincipaleTableau);
}

.tableau_table .firsttr .derniere_td{
	border-right: 1px solid var(--CouleurPrincipaleTableau);
	white-space:nowrap;
}

.tableau_table td{
	border-left : 1px solid var(--CouleurPrincipaleTableau);
}

.tableau_table .derniere_td{
	border-right : 1px solid var(--CouleurPrincipaleTableau);
}

@media screen and (max-width: 1000px) {
	#gestionlot_tableau{
		width:100%;
		line-height: auto;
	}
}

@media screen and (max-width: 680px) {
	#gestionlot_tableau{
		font-size: 15px;
	}
	.tableau_table td{
		padding:1px;
	}
	.labeloption{
		padding-left: 25px;
	}
}

@media screen and (max-width: 480px) {
	#gestionlot_tableau{
		font-size: 12px;
	}
}