div.right	{ float: right; }
div.hline	{ margin-top: 8px; margin-bottom: 8px; border-top: 1px solid #ddd; }

body {
	color: #333;
	height: 100%;
	min-height:100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
}

#section {
	width: 100%;
	max-width: 970px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
}

#section:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.hidden { visibility: hidden; }

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

div.button {
	color: white !important;
	background-color: #FF6651;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
	box-shadow: 2px 2px 2px #aaa;
	cursor: pointer;
	width: fit-content;
	display: inline-block;
	padding: 2px 0px;
	margin: 2px 12px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
div.button:hover {
	background-color: #F2462E;
	color: white !important;
	text-decoration: none !important;
	font-weight: bolder;
	padding: 4px 2px;
	margin: 0px 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

div.button a {
    display: block;
    height: fit-content;
    width: fit-content;
    text-decoration: none;
	color: white !important;
	padding: 5px 20px 5px 20px;
	text-decoration: none;
	font-weight: bold;
}
div.button:hover a {
	color: white !important;
	text-decoration: none !important;
}

p.clear	{ clear: both; }
.clear	{ clear: both; }

body {
	font-family: Geneva, Arial, Helvetica, sans-serif !important;
	background: #BBB;
}

html, body {
	scroll-behavior: smooth;
}

#header {
	width: 100%;
	max-width: 970px;
	margin: 0 auto !important;
	padding: 12px 0 0 0 !important;
	position: relative;
}

#title {
	max-height: 170px;
	background: url('../img/header.webp') no-repeat;
}

h1, h2, h3, h4, h5, h6{
	color: #333;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

h1 {font-size: 1.75em;}
h2 {font-size: 1.25em;}
h3 {font-size: 1.1em;}
h4 {font-size: 1em;}
h5 {font-size: 0.9em;}
h6 {font-size: 0.75em;}

.box {
	font-size: 1em;
	border: 1px solid grey !important;
	background: #f0f0f0;
	padding: 16px !important;
	margin-bottom: 12px !important;
}

img.pixel {
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}

div.social {
	position:absolute;
	right:21px;
	top:21px;
}

div.social img {
	width:32px;
	height:32px;
	-webkit-filter: grayscale(0.8);
	filter: grayscale(0.8);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

div.social img:hover {
	filter: none;
}

img.logo {
	width:80%;
	max-width:200px;
	padding-bottom:10px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

img.logo:hover {
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-o-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}



/* CSS pour ordinateur */
@media screen and (min-width: 641px)
{
	#registerbutton {
		position: sticky;
		left: 50%;
		transform: translateX(-50%) translateY(-60px);
	}
}

/* CSS pour mobile */
@media screen and (max-width: 640px) {
	#registerbutton {
		position: sticky;
		left: 50%;
		transform: translateY(-60px);
	}
}

/** Menu de navigation  **/

#nav, #navfloat {
	min-height: 24px;
	padding: 2px 25px;
	-webkit-border-radius: 0 0 24px 24px;
	-moz-border-radius: 0 0 24px 24px;
	border-radius: 0 0 24px 24px;
	background-color: rgba(1, 1, 1, 0.8);
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	vertical-align: middle;
	text-align: center;
}

#navfloat {
	display: none;
	position: fixed;
	top: 0;
    width: fit-content;
	-webkit-box-shadow: 0px 0px 4px 0px #000000;
	-moz-box-shadow: 0px 0px 4px 0px #000000;
	box-shadow: 0px 0px 4px 0px #000000;
	z-index: 1000;
}

#nav a, #navfloat a {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	color: #ddd;
	text-decoration: none;
	margin-top: 1px;
}

@media screen and (min-width: 640px) {
	#nav a:hover, #navfloat a:hover { color: orange; }
}

.mobile-topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.mobile-topnav #mobile-links {
  display: none;
}

.mobile-topnav a.txori {
  padding: 14px 2px;
  display: inline-block !important
}

.mobile-topnav a.icon {
  background: #990000;
  position: absolute;
  right: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 19px;
  vertical-align: bottom;
  margin: 16px !important;
  text-align: center;
  color: white;
}

.mobile-topnav a.link {
  color: white;
  padding: 14px 14px 14px 26px;
  text-decoration: none;
  font-size: 18px;
  display: block;
}


.mobile-topnav a.icon:hover, .mobile-topnav a.link:hover {
  background-color: #ddd;
  color: black;
  border: none;
}


/** Footer  **/

#footer {
	clear: both;
	max-width: 970px;
	background-color: rgba(1, 1, 1, 0.8);
	line-height: 24px;
	color: #ddd;
	text-align: center;
	font-size: 1em;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	margin: 12px auto 0;
}

#footer a {
	color: #ddd;
	font-weight: bold;
	text-decoration: none;
}
#footer a:hover { color: orange; }

.radius {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

/* ChatBro */

div.PeerFly320x50, div.chatbro_body iframe {
	display: none !important;
	height:0px !important;
}

.chatbro_container .chatbro_movable_chat {
	z-index: 2147483647 !important;
}

.chatbro_chat .chatbro_movable_chat .chatbro_body .chatbro_messages_wrapper .chatbro_modal_block .chatbro_messages {
	scroll-behavior: none !important;
}

/* Google translate */

#wtgbr { visibility: hidden; }

/* Google search */

.gsc-control-cse { background-color: #f0f0f0 !important; border: 0 !important }
.gsc-input:hover { background-color: #f0f0f0 !important; }
.gsc-input-box { border: 1px solid grey !important; background-color: #f0f0f0 !important; }

.gsc-search-button { margin-left: 0 !important; border-radius: 10px !important; cursor: pointer !important }
.gsc-search-button:hover { background-color: #f0f0f0 !important; }
.gsc-search-button-v2 { background-color: #FF6651 !important; border: 0 !important; box-shadow: rgb(0 0 0 / 30%) 0px 2px 4px 0px !important; height: 40px; border-radius: 18px !important; }
.gsc-search-button-v2:hover { background-color: #F2462E !important }
.gcsc-more-maybe-branding-root { visibility: hidden !important; height: 0 !important }
.gsc-cursor { font-size: 1.2em }
.gscb_a { color: #DC143C !important }
.gscb_a:hover { color: #ff6651 !important }

/* AddToAny */

.a2a_dd .a2a_svg { border-radius: 50% !important; box-shadow:rgb(0 0 0 / 30%) 0px 2px 4px 0px !important; }
.a2a_dd .a2a_svg svg {transform: scale(0.7) !important; }
.a2a_full_footer { visibility: hidden !important; }

/* FontAwesome */

.fa-solid { margin-left: 7px; margin-right: 10px !important; }