/* Styles globaux */

@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope.woff2') format("woff2"), url('../fonts/Manrope.woff') format("woff"), url('../fonts/Manrope.ttf') format("truetype");
	/*font-variation-settings: 'wght' 400;*/
}

html {
	scrollbar-color: #222 #EEE;
}

body {
	font-family: Manrope, Segoe UI, Verdana, Tahoma, sans-serif;
	margin: 0 20px 0 290px;
}

section {
	overflow: hidden;
}

.noflow {
	display: inline-block;
	overflow: hidden;
	width: 0;
}

/* redéfinition */
.span2
{
width:155px;
}

#maintitle {
	background-color: #444;
	border-radius: 10px;
	color: #fff;
	font-size: 54px;
	font-weight: bold;
	letter-spacing: -1px;
	line-height: 1;
	margin: 30px 0;
	padding: 20px;
	text-align: center;
}

.container {
	width: 100%;
}

.realign {
	margin-left: 32px;
}

::selection {
	background: #444;
	color: #fff;
}

::-moz-selection {
	background: #444;
	color: #fff;
}

.fn_alert {
	float: right;
	font-weight: bold;
	position: relative;
	right: -4px;
	top: -4px;
}

.url {
	color: #0088CC;
	font-style: italic;
}

.control {
	color: #eee;
	background-color: #222;
	border-radius: 4px;
	font-family: Consolas, Console, monospace;
	font-size: 12px;
	padding: 0 2px;
}

/* Footer */

footer {
	color: #AAA;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1;
	margin: 0 0 20px 0;
	text-align: right;
}

footer hr {
	margin-bottom: 6px;
}

footer span {
	color: #BBB;
	font-size: 10px;
	font-style: italic;
	font-weight: normal;
	letter-spacing: 0;
}

/* Menu lat�ral */

.rmenu {
	background-color: #202020;
	border-right: 1px #d0d0d0 solid;
	margin: 0;
	padding: 0;
	width: 271px;
	z-index: 5;
	
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
}

.rmenu .nav-header, .rmenu .header {
	color: #DDD;
	display: block;
	font-weight: 800;
	padding: 6px 0;
	text-align: center;
}

.rmenu .header {
	font-size: 1.4em;
}

.rmenu > div > ul {
	position: absolute;
	top: 42px;
	bottom: 64px;
	overflow-y: auto;
	right: 0;
	left: 0;
	padding: 4px 0 0 0;
	scrollbar-color: #FFF #202020;
	scrollbar-width: thin;
	z-index: 10;
}

.rmenu > div > ul:last-child {
	bottom: 10px;
	position: absolute;
	width: 188px;
	z-index: 10;
}

.rmenu li {
	display: block;
	list-style-type: none;
	z-index: 50;
}

.rmenu li.divider {
	border-top: 1px #161616 solid;
	border-bottom: 1px #010101 solid;
	left: 4%;
	margin: 5px 0;
	position: relative;
	width: 92%;
}

.rmenu li.supersection {
	color: #909090;
	font-family: Segoe UI, Verdana, Tahoma, sans-serif;
	padding: 4px 8px;
	text-shadow: 1px 1px 0px #e0e0e0;
}

.rmenu li > a {
	color: #e8e8e8;
	display: block;
	font-size: 12px;
	padding: 4px 10px;
	text-decoration: none;
	text-shadow: none;
	z-index: 100;
}

.rmenu li > a:hover {
	background-color: #333;
	color: #FFF;
}

.rmenu .active > a, .rmenu .active > a:hover {
	background-color: #505050;
	color: #FFF;
}

.rmenu li > a > i {
	margin: 0 6px 0 0;
}

.rmenu li > ul {
	display:none;
}

.rmenu li.active > ul {
	display:block;
}

.logo {
	padding: 14px 0;
	position: absolute;
	bottom: 0px;
	text-align: center;
	width: 100%;
}

.logo img {
	max-height: 32px;
	width: 80%;
}

/* Paires de clés - valeurs */

.kvstore {
	padding: 10px;
}

.keyvalue {
	display: flex;
	margin-top: 10px;
}

.keyvalue:first-child, li > a > .keyvalue  {
	margin-top: 0;
}

.keyvalue.optional {
	opacity: 0.7;
}

.keyvalue.optional .name:after {
	content: " (optionnel)";
	font-size: 8px;
	font-style: italic;
	font-weight: normal;
}

.keyvalue.required .name {
	color: #c83c3c;
}

.keyvalue.required .name:after {
	content: " (IMPORTANT)";
	font-size: 8px;
	font-style: italic;
	font-weight: normal;
}

.keyvalue .name {
	flex: 1 0 260px;
	font-weight: bold;
}

.keyvalue .value {
	display: inline-block;
	flex: 20;
}

.struct .keyvalue {
	flex-wrap: wrap;
}

.struct .keyvalue .value, .struct .keyvalue .name {
	width:100%;
	flex:initial;
}

/* Style des d�finitions de fonctions */

.method-call {
	border-radius: 4px;
	position: relative;
}

.method-call:before {
	color: rgba(255, 255, 255, .8);
	display: block;
	float: left;
	font-weight: bold;
	left: 2px;
	position: absolute;
	top: 10px;
	transform: translateX(-100%) rotate(-90deg);
	transform-origin: right top 0;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.method-call.get, .nav-pin.get {
	background-color: #32C3FC;
	background-color: #AAA;
}

.method-call.get:before {
	content: "GET";
}

.method-call.post, .nav-pin.post {
	background-color: #4B4;
}

.method-call.post:before {
	content: "POST";
}

.method-call.put, .nav-pin.put {
	background-color: #44B;
}

.method-call.patch:before {
	content: "PATCH";
}

.method-call.patch, .nav-pin.patch {
	background-color: #EE9333;
}

.method-call.put:before {
	content: "PUT";
}

.method-call.delete, .nav-pin.delete {
	background-color: #F00;
}

.method-call.delete:before {
	content: "DELETE";
}

.method-call .desc {
	font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
	margin: 15px 0 20px 0;
	/*padding: 10px 8px 20px 8px;*/
	padding: 12px;
}

.method-call .panel-disabled {
	opacity: 0.7;
}

.method-call .panel-disabled p {
	font-style: italic;
	text-align: center;
}

.method-call .panel-heading {
	color: #505050;
	font-size: 1.2em;
	font-weight: bold;
	padding: 6px 10px;
	text-shadow: 1px 1px 1px #FFF;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.method-call .panel-heading .glyphicon {
	font-size: 0.82em;
}

.method-call .request h4, .method-call .response h4 {
	border-bottom: 1px #EEE solid;
	margin-top: 15px;
	padding: 0px 2px 8px 2px;
}

.method-call .request h4:first-child, .method-call .response h4:first-child {
	margin-top: 0;
}

.method-class {
	background: #fff;
	border: #AAA 1px solid;
	border-radius: 4px;
	margin: 0 0 0 24px;
	padding: 10px;
}
.method-call.deprecated::after {
	background-color: #c83c3c;
	/*border: 3px solid #555;*/
	border-radius: 4px;
	box-shadow: /* inset 0px 0px 12px 0px rgba(85, 85, 85, 1), */ 0px 0px 12px 0px rgba(85, 85, 85, 1);
	color: white;
	content: "OBSOLÈTE";
	display: block;
	font-weight: bold;
	padding: 18px 36px;
	position: absolute;
	top: 12px;
	right: 12px;
}

.method-call.deprecated .method-class {
	background-color: #f0f0f0 !important;
}

.method-class .method {
	font-size: 1.2em;
	font-weight: bold;
	margin: 4px 0;
}

.method-class .method .baseuri {
	color: #C0C0C0;
	font-size: 0.95em;
	font-weight: normal;
	margin-right: 4px;
}

.method-class .description {
	font-style: italic;
	padding: 10px;
	margin: 12px;
}

.method-class fieldset {
	margin-bottom: 12px;
}

.method-class fieldset:last-child, .method-class fieldset .well {
	margin-bottom: 4px;
}

.method-class fieldset legend {
	font-size: 16px;
	font-style: italic;
	margin-bottom: 10px;
}

.method-class *:last-child {
	margin-bottom: 0;
}

/* navigation - Pins */

.nav-pin {
	/*background-color: #888;*/
	border-radius: 0 4px 4px 0;
	position: absolute;
	top: 50%;
	left: -5px;
	padding: 0;
	width: 10px;
	height: 22px;
	transform: translate(0, -50%);
	z-index: 10;
}

.struct .nav>li {
	border-bottom: 1px solid #e3e3e3;
}

.struct .nav>li:last-child {
	border-bottom:none;
}

.deprecated {
	background-color : #FFADAD;
}

.simple-list li a {
	font-size: 13px;
	font-weight: bold;
	padding: 4px 20px;
}

.nav > li > a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ctype {
	color: #000070;
	cursor: default;
	font-weight: bold;
	padding: 1px 3px;
	font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
}

a.ctype {
	cursor: pointer;
}

.ctype .ctype {
	padding: 0;
}

p.margin-aligned {
	margin-left: 20px;
}