:root {
--fond:		rgba(255, 255, 255, 0.9) !important;
--nav:		#89009D;	/* pourpre agile */
--titre:		#89009D;	/* pourpre agile */
--corps:		#473AA5;	/* violet intense */
--lien:		#AA00FF;	/* violet */
--bord:		#A9A9A9;	/* DarkGrey */
--texte: 	#A9A9A9;	/* DarkGrey */
--disabled: #D3D3D3;	/* LightGrey */
--avant:	0;
--apres:	0;
}

html {
/*	background-color: var(--fond); */
}
*, *::before, *::after {
	box-sizing: border-box;
}
body {
	background-color: whitesmoke;
	color: var(--corps);
/*	font-family: Lato, Roboto, sans-serif; */
	font-family: titilium web, sans-serif;
	margin: 1.0rem auto 2.0rem auto;
	padding: 0 1rem;
	width: 100%;
	max-width: 800px;
}
img, svg {
	max-width: 100%;
	height: auto;
}
a:link {
	color: var(--lien);
}
a:visited {
	color: var(--lien);
}
a:hover {
	background-color: var(--lien);
	color: white;
	text-decoration: none;
}
a:active {
	color: var(--lien);
}
h1, h2, h3, h4, h5, h6 {
	color: var(--titre);
/*	font-family: Lato, Roboto, sans-serif; */
	font-weight: bold;
	margin-top: 1.0rem;
	margin-bottom: 0;
}
p {
	margin-top: 1.0rem;
	margin-bottom: 0.5rem;
}
hr {
	background-color: var(--titre);
	color: var(--titre);
/*	border: 0; */
	height: 1px;
	margin: 0;
	padding: 0;
}
label {
	display: inline-block;
}
input, textarea, select, radio {
	font-size: medium;
}
input {
	outline: none;
}
input:valid {
/*	outline: 1px solid var(--bord); */
/*	outline: none; */
}
input:invalid {
/*	outline: 1px solid red; */
}
select {
	background-image: none;
	padding-right: 1rem;
}
option:disabled {
	color: red;
}
ul, ol, dl, blockquote, pre,
label, textarea, caption, details, figure {
	margin-top: 0
}
table {
	color: SlateGray;
	margin: 1.0rem auto 0.5rem auto;
}
th, td {
   padding: 0 5px;
}
.retrait {
   margin-left: 1.5rem;
}
.text {
	color: var(--corps);
}
.cadre {
	border:solid 1px var(--nav);
	border-radius: 10px;
	margin: 1.0rem auto 0 auto;
	padding: 0 1.0rem;
	width: fit-content;
	max-width: 100%;
}
.centre {
	margin: 0 auto 0 auto;
	text-align: left;
	padding: 0 1.0rem;
	width: fit-content;
	max-width: 100%;
}
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
.italique {
	font-style: italic;
}
.underline {
	text-decoration: underline;
}
.txtright {
	text-align: right;
}
.txtleft {
	text-align: left;
}
.txtcenter {
	text-align: center;
}
.txtjustify {
	text-align: justify;
}
.middle {
	vertical-align: middle;
}
.pre-list {
	margin-bottom: 0;
}
.requis {
	color: red;
	font-size: 110%;
	font-weight: bold;
}
.btn {
	background-color: var(--nav);
	color: white;
	border-radius: 20px;
	display: inline-block;
	font-size: medium;
	font-weight: bold;
	margin: 0;
	height: 40px;
	padding: 0 1.0rem;
	width: fit-content;
}
.btn:disabled {
	background-color: white;
	color: var(--disabled);
}

/*	Boutons (radio) OuiNon */
input[type="radio"].OuiNon {
	display: none;
}
input[type="radio"].OuiNon + label {
	padding: 0.5rem 1rem;
	font-size: 1.0rem;
	line-height: 1.0rem;
	border-radius: 0.3rem;
	color: white;
	background-color: var(--nav);
	border: 1px solid transparent;
	transition: all 0.5s ease-in-out;
	text-align: center;
	width: 2rem;
}
input[type="radio"].OuiNon.Oui:hover + label {
	background-color: var(--nav);	/* vert */
	border-color: #1e7e34;		/* vert foncé */
}
input[type="radio"].OuiNon.Oui:checked + label {
	background-color: var(--nav);	/* vert clair */
	border-color: #1e7e34;		/* vert foncé */
}
input[type="radio"].OuiNon.Non:hover + label {
	background-color: var(--nav);	/* vert			#c82333;	// rouge */
	border-color: #1e7e34;		/* vert foncé	#bd2130;	// rouge foncé */
}
input[type="radio"].OuiNon.Non:checked + label {
	background-color: var(--nav);	/* vert clair	#dc3545;	// rouge clair */
	border-color: #1e7e34;		/* vert foncé */
}

/* Les tableaux larges (tarifs, créneaux, contact) défilent
   horizontalement au lieu de casser la mise en page. */
.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.table-responsive table {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 700px) {
	body {
		margin: 0.5rem auto 1.5rem auto;
		padding: 0 0.75rem;
	}
	h1 { font-size: 1.6em; }
	h2 { font-size: 1.3em; }
	h3 { font-size: 1.1em; }

	table { font-size: 0.9em; }
	table th, table td { padding: 4px 6px; }

	.btn, input[type="button"] {
		width: 100%;
		max-width: 320px;
		white-space: normal;
		height: auto;
		min-height: 40px;
		padding: 0.6rem 1rem;
	}

	input[type="text"] {
		width: 6em;
	}

	.cadre p, article p {
		text-align: left;
	}

	label {
		max-width: calc(100% - 30px);
		vertical-align: top;
	}
}

@media (max-width: 480px) {
	body { font-size: 0.95em; }
	table { font-size: 0.8em; }
	h1 { font-size: 1.4em; }
	h2 { font-size: 1.15em; }
	h3 { font-size: 1em; }

	.table-responsive table th,
	.table-responsive table td {
		padding: 3px 4px;
	}
}