@import url('../font/font.css');

html {
	font-size: var(--fontSize);
	font-family: var(--textStyle);
	font-weight: 300;
	height: 100%;
	width: 100%;
	overflow: hidden;
	/* for iOS */
	position: fixed;
	/* for iOS */
}

body {
	background-color: var(--contentBG);
	color: var(--contentFG);
	height: 100%;
}

h1,h2,h3,h4,h5,h6{
	font-family: var(--titleStyle);
	font-weight: 600;
}

h1{
	font-size: 2em;
	font-weight: 300;
}
h2{
	font-size: 1.5em;
}
h3{
	font-size: 1.3em;
}
h4{
	font-size: 1.2em;
}
h5{
	font-size: 1.1em;
}
h6{
	font-size: 1em;
}

p{
	margin-block: 0;
	margin-inline: 0;
	padding-block: 0;
	padding-inline: 0;
	line-height: 1.3;
}

a{
	color: var(--linkColor);
	border-color: var(--linkColor);
	opacity: 1;
}
a:hover{
	opacity: 0.8;
}

ul, ol {
    margin-block: 0.2em;
}

table {
    color: var(--contentFG);
}

.hidden {
	display: none;
}

::-webkit-scrollbar {
	width: 15px;
}
div.scroller {
	scrollbar-color: var(--accentDarkBG) var(--borderColor);
}
::-webkit-scrollbar-track {
	background: var(--borderColor);
}
::-webkit-scrollbar-thumb {
	background-color: var(--accentDarkBG) ;
	border-radius: 4em;
	border: 3px solid transparent;
	background-clip: content-box;
}

/*=== DEFAULT LAYOUT - GENERAL ===============================================*/
.default #root,
.sco #root {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
    flex-flow: column;
}

.default #header h1,
.sco #header h1 {
	margin: 0;
	text-align: end;
	font-size: 1.5em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.default #accessibility,
.sco #accessibility {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}

.home section.article{
	margin-block-end: 2rem;
}
.home section.article h1{
	font-size: 2.7em;
	font-weight: 600;
	margin-block: 0;
	margin-inline: 0;
}

.home section.article .hBk_co{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 90%;
}

.home section.article .hBk_co .auth .auth_ti span{
    display:none;
}

.home section.article .hBk_co .logo {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	line-height: 0;
	position: absolute;
	z-index: -1;
	display: flex;
	justify-content: space-around;
}
.home section.article .hBk_co .logo:before{
	content: "";
	display: flex;
	flex: 5;
}
.home section.article .hBk_co .logo:after{
	content: "";
	display: flex;
	flex: 1;
}
.home section.article .hBk_co .logo img {
	max-width: 32vw!important;
	height: auto;
}

/*=== DEFAULT LAYOUT - FLEXBOX ===============================================*/

/*--- ROOT -------------------------------------------------------------------*/
.sco #root {
	display: flex;
	flex-flow: column;
}

.default #header,
.sco #header {
	flex: 0 0 65px;
	background-color: var(--accentLightBG);
	border-block-end: 1px solid var(--borderColor);
	display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-inline: 20px;
}

.home #header {
    border-block-end: 1px solid var(--borderColor);
}

.sco #main {
	flex: 1 1 auto;
}

.default #footer,
.sco #footer {
	flex: 0 0 20px;
}

.default #main,
.sco #main {
	display: flex;
    flex-flow: row;
    position: relative;
    flex: 1 1 auto;
}

/*--- DOCUMENT ---------------------------------------------------------------*/
.default #document,
.sco #document {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.default #content,
.sco #content {
	flex: 1 1 auto;
	background: var(--contentBG);
	color: var(--contentFG);
	position: relative;
}

.default .scroller,
.sco .scroller {
	/* DEBUG - IE11 : ne peut pas scroller un flex auto */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: auto;
    padding-block: 1em;
    padding-inline: calc(45vw - (var(--maxWidth) / 2));
	-webkit-overflow-scrolling: touch;
	/* for iOS */
	scroll-padding-block-start:250px;
	scroll-behavior: smooth;
}

/*=== DEFAULT LAYOUT - TOOLS MENU ============================================*/
.default #tools ul {
	list-style-type: none;
	padding: 0;
	padding-inline-start: 10px;
	margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.default #tools ul.nav {
    padding-block-start: 10px;
}

.default #tools li {
	display: inline-block;
}

.default #tools .btnTool {
	display: flex;
    align-items: center;
    justify-content: center;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
    background-color: var(--linkColor);
    color: var(--accentDarkFG);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.5);
}

/*=== LAYOUT - ACCESSIBILITY MENU  ===========================================*/
#accessibility {
	font-size: 60%;
	list-style-type: none;
	padding: 0;
	margin: 0;
	z-index: 2;
}

#accessibility li {
	display: inline-block;
	margin: 0 1em;
}

#accessibility a {
	opacity: 0;
	color: var(--accentLightBG);
	text-decoration: none;
}

#accessibility:hover a {
	opacity: 0.4;
}

#accessibility a:focus {
	opacity: 1;
}

/*=== LAYOUT - SUB-WINDOWS ===================================================*/

/*--- CONTAINER --------------------------------------------------------------*/
.subWindow_over {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: black;
	opacity: 0.5;
}

.subWindow_win {
	border-block-start: 50px solid var(--accentDarkBG);
	top: 1em;
	bottom: 1em;
	left: 1em;
	right: 1em;
	display: flex;
	flex-flow: column;
	background-color: var(--accentDarkFG);
	border-radius: 15px;
}

.subWindow_ti {
	flex: 0 0 50px;
	background-color: var(--accentDarkBG);
	color: var(--accentDarkFG);
	max-width: var(--maxWidth);
	width: -moz-available;
	width: -webkit-fill-available;
	width: fill-available;
	padding-block: 0;
    padding-inline: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-block: 0;
	margin-inline: auto;
	margin-block-start: -50px;
	position: relative;
	border-radius: 15px 15px 0 0;
}

.subWindow_co {
	flex: 1 1 auto;
	position: relative;
}

.subWindow_co>a.focusOnCloseBtn {
	position: absolute;
	left: -1000px;
	top: -1000px;
}

.subWindow_fra {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0 0 15px 15px;
}

a.subWindow_x {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 0;
	padding-inline: 0;
	margin-block: 0;
	margin-inline: 0;
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	order: 2;
	background-color: var(--btnBG);
	border-radius: 5em;
	text-decoration: none;
}
a.subWindow_x::before{
	font-family: "fontello";
	content: "\E80B";
	font-size: 80%;
	color: var(--accentDarkFG);
}
a.subWindow_x span{
	display: none;
}
a.subWindow_x:hover {
	opacity: 0.9;
}

.subWindow_win[aria-label="Solution d'exercice"]{
	border-block-start:50px solid var(--quizAnswerBG);
}
.subWindow_win[aria-label="Solution d'exercice"] .subWindow_ti{
	background-color: var(--quizAnswerBG);
	color: var(--accentLightFG);
}
.subWindow_win[aria-label="Solution d'exercice"] .subWindow_ti a.subWindow_x{
	background-color: var(--contentBG);
}
.subWindow_win[aria-label="Solution d'exercice"] .subWindow_ti a.subWindow_x::before{
	color: var(--accentLightFG);
}

/*--- subWin - FLEXBOX --------------------------------------------------*/
.subWin #root {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	flex-flow: column;
}

.subWin #header {
	position: absolute;
	text-align: end;
	width: 100%;
	z-index: 1;
}

.subWin #accessibility {
	padding-inline-end: 20px;
}

.subWin #accessibility a {
	color: var(--accentDarkBG);
}

.subWin #main {
	flex: 1 1 auto;
	display: flex;
	flex-flow: column;
	margin-block-end: 0;
}

.subWin #document {
	flex: 1 1 auto;
	display: flex;
	flex-flow: column;
}

.subWin #content {
	flex: 1 1 auto;
	position: relative;
	padding-block: 0;
    padding-inline: 0.5em;
	color: var(--contentFG);
}
.subWin #content:focus-visible{
	outline: none;
}

.subWin .scroller {
	/* DEBUG - IE11 : ne peut pas scroller un flex auto */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding-block: 1em;
    padding-inline: 10px;
	overflow-y: auto;
}
.startPage.subWin .scroller,
.validPage.subWin .scroller,
.endPage.subWin .scroller {
    padding-block-start: 4em;
}
.subWin .scroller > section,
.subWin .scroller > div,
.subWin .scroller > table {
	max-width: var(--maxWidth);
	margin-block: 0;
	margin-inline: auto;
}
.startPage.subWin.eval .scroller > div,
.startPage.subWin.eval .scroller > div > div,
.validPage.subWin.eval .scroller table td,
.endPage.subWin.eval .scroller > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.btnBarAssmnt {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}

.subWin footer {
    padding-block: 5px;
    padding-inline: 5px;
}

/*--- subWin.eval - NAVBAR ---------------------------------------------------*/
.subWin.eval #navigation {
	flex: 0 0 auto;
	display: grid;
	justify-content: center;
	gap: 2em;
	grid-template:
	    [prev-left] "prev counter next" auto [next-right]
        / auto auto auto;
	padding-block: 0.3em;
    padding-inline: 1em;
	position: relative;
	border-block-start: 1px solid var(--borderColor);
}
.resultPage.eval #navigation {
    display: none;
}

.subWin.eval #navigation span.evalCounter{
	grid-area: counter;
	line-height:2em;
}

.subWin.eval #navigation nav{
    display:contents;
	/*width: 100%;
	max-width: var(--maxWidth);
	margin-block: 0;
	margin-inline: auto;*/
}

.subWin.eval #navigation ul {
    display:contents;
	list-style-type: none;
	margin-block: 0;
	margin-inline: 0;
	padding-block: 0;
	padding-inline: 0;
}

.subWin.eval #navigation ul li{
    display: contents;
}

.subWin.eval #navigation li:last-child {
	margin-inline-start: auto;
}

.subWin.eval #navigation a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding-block: 0.3em;
    padding-inline: 1em;
	border-radius: 0.5rem;
	font-weight: 500;
}
.subWin.eval #navigation a.btnNav.prevEval{
    grid-area: prev;
	border: 1px solid;
}
.subWin.eval #navigation a.btnNav.prevEval::before {
	font-family: "fontello";
}
html[dir='ltr'] .subWin.eval #navigation a.btnNav.prevEval::before {
    content: "\E817";
}
html[dir='rtl'] .subWin.eval #navigation a.btnNav.prevEval::before {
    content: "\E818";
}

.subWin.eval #navigation a.btnNav.nextEval{
    grid-area: next;
	background-color: var(--linkColor);
	color: #fff;
}
.subWin.eval #navigation a.btnNav.nextEval::after {
	font-family: "fontello";
}
html[dir='ltr'] .subWin.eval #navigation a.btnNav.nextEval::after {
    content: "\E818";
}
html[dir='rtl'] .subWin.eval #navigation a.btnNav.nextEval::after {
    content: "\E817";
}

.subWin.eval #navigation a:hover {
	opacity: 0.9;
}

.subWin.eval #navigation span.btnNav {
	display: inline-block;
	padding-block-start: 1.5em;
	margin-block:0;
	margin-inline:0 1em;
	box-sizing: border-box;
	width: 35px;
	height: 35px;
}

.subWin.eval #navigation span.btnNav span {
	display: none;
}

/* === START - article ====================================================== */
section h3.hBk_ti{
	margin-block-end: 0.5em;
}
figcaption {
	vertical-align: middle;
}

.zoom a::before {
	font-family: "fontello";
	display: inline-block;
	content: "\E827";
}

a.tooltip_a.info {
	font-style: normal;
}
a.tooltip_a.info span{
	display: none;
}
a.tooltip_a.info::before{
	font-family: "fontello";
	display: inline-block;
	content: "\E812";
	margin-inline-start:10px;
}

.tooltip {
	background-color: var(--contentBG);
	border-radius: 10px;
	box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.5);
	min-width: 200px;
}

.tooltip_co {
	padding-block: 2px;
    padding-inline: 4px;
    overflow-wrap: break-word;
}

.tooltip_ti {
	background-color: var(--accentDarkBG);
	min-height: 25px;
	padding-block: 5px;
	padding-inline: 5px 35px;
	color: var(--accentDarkFG);
	border-radius: 10px 10px 0 0;
}

.tooltip .tooltip_ti .txt_ico_tim {
    display: none;
}

.tooltip_x {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 0;
    padding-inline: 0;
	margin-block: 0;
    margin-inline: 0;
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	order: 2;
	background-color: var(--btnBG);
	border-radius: 5em;
	text-decoration: none;
	position: absolute;
	top: 5px;
}
html[dir='ltr'] .tooltip_x {
    right: 5px;
}
html[dir='rtl'] .tooltip_x {
    left: 5px;
}
.tooltip_x::before{
	font-family: "fontello";
	content: "\E80B";
	font-size: 70%;
	color: var(--accentDarkFG);
}
.tooltip_x span{
	display: none;
}

.cc-button img {
	vertical-align: middle;
}

.tooltip .resInFlow img {
    max-width:95%;
    height:auto;
}

/* Nomenclature */
.nomeFra{
	width: 100%;
	border-spacing: inherit;
	border-collapse: collapse;
}
.nomeFra td{
	text-align: center;
	padding-block: 5px;
    padding-inline: 5px;
    border-inline-end: 1px solid var(--borderColor);
}

.nomeFra td:last-of-type{
	white-space: nowrap;
	border: 0;
}

.nomeFra.equ td:last-of-type{
	white-space: normal;
}

.nomeFra tr:first-child td{
	font-weight: 600;
    background: var(--inputBG);
    font-family: var(--titleStyle);
}

.nomeFra table{
	border-collapse: collapse;
}

.nomeFra table th,
.nomeFra table td{
	border-block-end: 1px solid var(--borderColor);
	padding: 8px;
}

.nomeFra table tr:first-child{
    background-color: var(--accentLightBG);
}

.nomeFra table td:last-of-type{
	white-space: nowrap
}

/* === STOP - article ======================================================= */

/* === CodeMirror =========================================================== */
.CodeMirror-static {
	margin-inline-start: 40px;
}

.CodeMirror-static pre {
	/* Reset some styles that the rest of the page might have set */
	border-radius: 0;
	border-width: 0;
	background: transparent;
	font-size: inherit;
	margin-block: 0;
	margin-inline: 0;
	white-space: pre;
	word-wrap: normal;
	line-height: inherit;
	color: inherit;
	z-index: 2;
	position: relative;
	overflow: visible;
	border-inline-end: 30px solid transparent;
	width: fit-content;
	font-family: monospace;
	tab-size: 2;
}
.CodeMirror-line {
	position: relative;
	min-height: 16px;
	padding-inline:5px;
}
.CodeMirror-linenumber {
	position: absolute;
	top: 0;
	width: 30px;
	padding-block: 0;
	padding-inline-start: 5px;
    padding-inline-end: 3px;
	min-width: 20px;
	min-height: 16px;
	text-align: end;
	font-size: 0.8em;
}
html[dir='ltr'] .CodeMirror-linenumber {
    left: -38px;
}
html[dir='rtl'] .CodeMirror-linenumber {
    right: -38px;
}
.cm-variable, .cm-property, .cm-operator, .cm-qualifier {
	color: var(--contentFG);
}
.cm-header,
.cm-strong {
	font-weight: bold;
}
.cm-em {
	font-style: italic;
}
.cm-link {
	text-decoration: underline;
}
.CodeMirror-linenumber {
    background-color: var(--accentLightBG);
}
html[data-theme='light'] .cm-keyword {
    color: #708;
}
html[data-theme='light'] .cm-atom {
    color: #219;
}
html[data-theme='light'] .cm-number {
    color: #164;
}
html[data-theme='light'] .cm-def {
    color: #00f;
}
html[data-theme='light'] .cm-variable-2 {
    color: #05a;
}
html[data-theme='light'] .cm-variable-3 {
    color: #085;
}
html[data-theme='light'] .cm-comment {
    color: #757575;
}
html[data-theme='light'] .cm-string {
    color: #de6d6d;
}
html[data-theme='light'] .cm-string-2 {
    color: #e28c8c;
}
html[data-theme='light'] .cm-meta {
    color: #555;
}
html[data-theme='light'] .cm-error {
    color: #f00;
}
html[data-theme='light'] .cm-builtin {
    color: #30a;
}
html[data-theme='light'] .cm-bracket {
    color: #997;
}
html[data-theme='light'] .cm-tag {
    color: #170;
}
html[data-theme='light'] .cm-attribute {
    color: #00c;
}
html[data-theme='light'] .cm-header {
    color: blue;
}
html[data-theme='light'] .cm-quote {
    color: #090;
}
html[data-theme='light'] .cm-hr {
    color: #999;
}
html[data-theme='light'] .cm-link {
    color: #00c;
}
html[data-theme='light'] .cm-negative {
    color: #d44;
}
html[data-theme='light'] .cm-positive {
    color: #292;
}
html[data-theme='light'] .cm-invalidchar {
    color: #f00;
}

html[data-theme='dark'] .CodeMirror-linenumber {
    color: #f7f7f7;
    background-color: #3b3b3b;
}
html[data-theme='dark'] .cm-keyword {
    color: #df50f3;
}
html[data-theme='dark'] .cm-atom {
    color: #8e7eff;
}
html[data-theme='dark'] .cm-number {
    color: #164;
}
html[data-theme='dark'] .cm-def {
    color: #c082e3;
}
html[data-theme='dark'] .cm-variable-2 {
    color: #2290ff;
}
html[data-theme='dark'] .cm-variable-3 {
    color: #00aa6a;
}
html[data-theme='dark'] .cm-comment {
    color: #8f8f8f;
}
html[data-theme='dark'] .cm-string {
    color: #de6d6d;
}
html[data-theme='dark'] .cm-string-2 {
    color: #e28c8c;
}
html[data-theme='dark'] .cm-meta {
    color: #555;
}
html[data-theme='dark'] .cm-error {
    color: #f00;
}
html[data-theme='dark'] .cm-builtin {
    color: #7c4aef;
}
html[data-theme='dark'] .cm-bracket {
    color: #997;
}
html[data-theme='dark'] .cm-tag {
    color: #2ead19;
}
html[data-theme='dark'] .cm-attribute {
    color: #00c;
}
html[data-theme='dark'] .cm-header {
    color: blue;
}
html[data-theme='dark'] .cm-quote {
    color: #090;
}
html[data-theme='dark'] .cm-hr {
    color: #999;
}
html[data-theme='dark'] .cm-link {
    color: #00c;
}
html[data-theme='dark'] .cm-negative {
    color: #d44;
}
html[data-theme='dark'] .cm-positive {
    color: #292;
}
html[data-theme='dark'] .cm-invalidchar {
    color: #f00;
}
/* === STOP - CodeMirror ==================================================== */

/* === START - scCode ======================================================= */
.scCodeActive {
	border: 1px solid var(--accentLightBG);
	background-color: var(--contentBG);
}

.scCodeCtrl {
    border-block-end: 1px solid var(--borderColor);
    height:25px;
	padding-block: 0;
	padding-inline: 0;
	display:flex;
    justify-content: flex-end;
    align-items: center;
    gap:3px;
	z-index: 2;
	position: relative;
	background-color: var(--accentLightBG);
}

.scCodeActive .CodeMirror-static {
	transition: margin-inline-start 200ms ease-in;
}

.scCodeLineNums-invisible .CodeMirror-linenumber {
	display: none;
}

.scCodeLineNums-invisible .CodeMirror-static {
	margin-inline-start: 2px;
}

.scCodeRaw-invisible .scCodeRaw,
.scCodeRaw-visible .scCodeCode {
	display: block;
}

.scCodeActive .scCodeRaw,
.scCodeActive .scCodeCode {
	transition: opacity 1s ease-out;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.scCodeRaw-invisible .scCodeCode,
.scCodeRaw-visible .scCodeRaw {
	opacity: 1;
	height: auto;
	overflow: auto;
}

.scCodeCtrl a {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 20px;
	height: 20px;
	margin-block:0;
	margin-inline:0;
	text-decoration:none;
}

.scCodeCtrl a:hover {
	opacity: 0.8;
}

.scCodeCtrl a span {
	display: none;
}

a.scCodeBtnLineNums::before,
a.scCodeBtnWrap::before,
a.scCodeBtnRaw::before,
a.scCodeBtnCopy::before {
    font-family: "fontello";
    font-size:16px;
}

.scCodeLineNums-visible .scCodeCtrl a.scCodeBtnLineNums::before {content: "\E84F";}
.scCodeLineNums-invisible .scCodeCtrl a.scCodeBtnLineNums::before {content: "\E852";}
.scCodeRaw-visible .scCodeCtrl a.scCodeBtnLineNums {visibility: hidden;}

.scCodeCtrl a.scCodeBtnWrap::before {content: "\E806";}
.scCodeWrap-on .scCodeCtrl a.scCodeBtnWrap::before {content: "\E851";}
.scCodeRaw-visible .scCodeCtrl a.scCodeBtnWrap {visibility: hidden;}

.scCodeCtrl a.scCodeBtnRaw::before {content: "\E84D";}
.scCodeRaw-visible .scCodeCtrl a.scCodeBtnRaw::before {content: "\E850";}
.scCodePlain .scCodeCtrl a.scCodeBtnRaw::before {content: "\E806";}
.scCodeRaw-visible.scCodePlain .scCodeCtrl a.scCodeBtnRaw::before {content: "\E806";}

.scCodeCtrl a.scCodeBtnCopy::before {content: "\E84E";}

.scCodeCopyMsg.scCodeHidden {
	display: block;
	height: 0;
}

.scCodeCopyMsg.scCodeVisible {
	display: block;
	height: 26px;
}

.scCodeCopyMsg {
	position: absolute;
	z-index: 1;
	top: 26px;
	left: 0;
	width: 100%;
	text-align: center;
	overflow: hidden;
	transition: height 300ms ease-out;
	color: var(--accentDarkFG);
}
html[data-theme='light'] .scCodeCopyMsg {background-color: #453aa2;}
html[data-theme='dark'] .scCodeCopyMsg {background-color: #02264c;}

/* === STOP - scCode ======================================================== */

/* === START - FOCUS ======================================================== */
/*a:focus,
input:focus,
video:focus,
button:focus,
[type="checkbox"]:checked:focus+label:before,
[type="checkbox"]:not(:checked):focus+label:before {
	border-color: transparent;
	outline: 2px dotted rgb(78, 188, 225);
	transition: outline .25s ease-in-out;
}*/

/* === STOP - FOCUS ========================================================= */

/* === START - FOOTER ======================================================= */
.default #footer,
.sco #footer {
	grid-area: footer;
	font-size: 0.8em;
	padding-block: 5px;
    padding-inline: 15px;
	display: flex;
	gap:15px;
	align-items: center;
	justify-content: flex-end;
	color: var(--footerFG);
	background-color: var(--footerBG);
	border-block-start: 1px solid var(--borderColor);
}

#footer > a, #footer > span {
	text-decoration: none;
	overflow-wrap: break-word;
	color: var(--footerFG);
}
#footer > span.legalInfo{
	display: flex;
	gap: 15px;
}

/* === STOP - FOOTER ======================================================== */

/* === START - BALISE PEDAGOGIQUE =========================================== */
.resInFlow {
	text-align: center;
	margin-block: 10px;
	margin-inline: 0;
}

.resInFlow_ti {
	margin-block:0.5em;
	margin-inline:0.5em;
}

.resInFlow_ti .bkBase {
	margin-block-start: 10px;
}

.resInFlow_ti .desc {
	text-align: start;
}

/* SVG */
.resInFlow.svg svg {
	max-width: 630px;
	height: auto;
}

.listing {
	margin-block:10px;
	margin-inline:10px;
}

/* BALISES PEDAGOGIQUES */
.cBk,
.pBk {
	--pb-color: var(--pBkText);
	--pb-color-light: var(--pBkTextLight);
	border: 2px solid var(--pb-color);
	border-radius: 10px;
	padding-block: 15px;
	padding-inline: 15px;
	margin-block: 1em;
}

/* Blocs spéciaux */
.warning {
	--pb-color: var(--pBkWarning);
	--pb-color-light: var(--pBkWarningLight);
}
.complement {
	--pb-color: var(--pBkComplement);
	--pb-color-light: var(--pBkComplementLight);
}

/* Blocs de démonstration */
.simulation, .method, .example {
	--pb-color: var(--pBkDemo);
	--pb-color-light: var(--pBkDemoLight);
}

/* Blocs d'expression */
.txt_blockquote_div,
.txt_quote_is {
    display:flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-block: 1em;
    gap: 10px;
    font-style:italic;
    font-size:115%;
}
.txt_blockquote_div::before,
.txt_quote_is::before {
    font-family: "fontello";
    content: "\E854";
    font-style:normal;
}
.txt_quote_isp,
.txt_quote_iss,
:has(.txt_quote_is) .txt_ico_tim {
    display: none;
}

.advice, .remark {
	--pb-color: var(--pBkExpression);
	--pb-color-light: var(--pBkExpressionLight);
}

.cBk_ti,
.pBk_ti {
	font-size: 1.2em;
	text-align: end;
	margin-block:0 10px;
	margin-inline:0;
}
.hint .cBk_ti,
.sol .cBk_ti {
    text-align: start;
}

.iBk_ti {
	font-size: 1.2em;
	margin-block-end: 0.3em;
	line-height: 1.5;
}

.cBk_ti > a,
.pBk_ti > span {
	display: flex;
	align-items:center;
}

.cBk_ti i.type,
.pBk_ti i.type {
	font-size: 0.8em;
	font-style: normal;
	font-weight: normal;
	color: var(--pb-color);
	flex: 0 0 auto;
	order: 2;
	background-color: var(--pb-color-light);
	border-radius: 5px;
	padding-block: 4px;
    padding-inline: 8px;
}

.pBk_ti span.title {
	flex: 1 1 auto;
	order: 1;
	text-align: start;
}

.cBk_ti span.title {
	flex: 1 1 100%;
	order: 1;
	text-align: start;
	margin-block-start: 2px;
}

.cBk_ti i.type::before,
.pBk_ti i.type::before{
	font-family: "fontello";
	display: inline-block;
	margin-inline-end: 5px;
	font-size: 110%;
}

.def_ti i.type::before {content: "\E826";}
.remark_ti i.type::before {content: "\E82C";}
.legal_ti i.type::before {content: "\E82E";}
.remind_ti i.type::before {content: "\E82D";}
.method_ti i.type::before {content: "\E82B";}
.advice_ti i.type::before {content: "\E828";}
.complement_ti i.type::before {content: "\E829";}
.basic_ti i.type::before {content: "\E82A";}
.simulation_ti i.type::before {content: "\E81B";}
.example_ti i.type::before {content: "\E82F";}
.syntax_ti i.type::before {content: "\E81F";}
.warning_ti i.type::before {content: "\E81A";}

/* === STOP - BALISE PEDAGOGIQUE ============================================ */

/* === START - PRIMITIVE ==================================================== */

.txt_ili::marker,
.txt_oli::marker {
	color: var(--contentLightFG);
}

.resLnk, .subLnk, .txt_ul {
	text-decoration: none;
	font-weight:500;
	border-block-end:1px dashed;
	display: inline-flex;
	align-items: baseline;
	gap: 5px;
}

.op_txt_ul, .dwnLnk, .txt_ul.url {
	text-decoration: none;
	font-weight:500;
	border-block-end:1px solid;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.home .op_txt_ul {
	color: var(--accentDarkFG);
}

.home .op_txt_ul::after {
	color: var(--accentDarkFG);
}

.txt_form_tim img {
	vertical-align: middle;
}

.txt_form_tim .MathJax_SVG_Display {
	display: inline !important;
}

.infoAnc::after, .op_txt_ul::after, .dwnLnk::after, .subLnk::after {
	font-family: "fontello";
	font-size:95%;
}
.acr.infoAnc::after {content: "\E847";}
.glos.infoAnc::after {content: "\E849";}
.bib.infoAnc::after {content: "\E848";}
.ref.infoAnc::after {content: "\E84B";}
.nome.infoAnc::after {content: "\E84A";}
.op_txt_ul::after {content: "\E845";}
.dwnLnk::after {content: "\E84C";}
.subLnk::after, .resLnk.infoAnc::after {content: "\E807";}

.txt_tb {
	border-collapse: collapse;
	margin-block:15px;
	margin-inline:auto;
}

.txt_tb th {
	border: 2px solid var(--borderColor);
	background-color: var(--accentLightBG);
}

.txt_tb td {
	border: 1px solid var(--borderColor);
	padding-block: 5px;
    padding-inline: 5px;
}

.txt_tb td.txt_word_tbtd {
	text-align: center;
}

.txt_tb td.txt_num_tbtd {
	text-align: end;
}

.txt_tb caption {
	font-style: italic;
}

.txt_tb p {
	margin-block:0.1em;
	margin-inline:0.2em;
}

q:before {
    font-family:"fontello";
    content:"\E854";
}
q:after {
    display:none;
}

.txtRes {
    display: grid;
    grid-template-columns: auto auto;
    gap:20px;
}
.question .rBk .txtRes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.question .rBk .txtRes figure {
    margin: 0;
}

.txtRes .img {
	max-width:400px;
}

.lnkDoc {
	margin-block:0 1em;
	margin-inline:1em;
}

i.webInstruct p {
	margin-block-end: 0;
}

.txt_auth_tl {
	font-weight: bold;
}

.cbkClosed a {
	text-decoration: none;
	color: var(--contentFG);
	display: flex!important;
    align-items: baseline;
    gap: 5px;
}

a.cBk_closed,
a.cBk_open {
    display: flex;
    align-items: normal;
    gap: 5px;
}

a.iBk_closed::after,
a.iBk_open::after {
	font-family: "fontello";
}
a.iBk_closed::after {content: "\E829";}
a.iBk_open::after {content: "\E841";}

/* === STOP - PRIMITIVE ===================================================== */


/* === START - QUIZ ========================================================= */

/* --- GENERAL STYLES ------------------------------------------------------- */
.quizBody {
	display: flex;
	flex-flow: column;
	/*	margin-block-start: 4em;*/
}

.quizBody>* {
	flex: 0 0 auto;
}

.quizBody>.toolbar {
	order: 3;
}

.subQuiz .quizBody>.toolbar {
	order: 2;
}

.quizBody > .question {
	order: 2;
    margin-block-end: 0.5em;
    font-size: 115%;
}
.subQuiz .quizBody > .question{
	font-size: 1.4em;
	font-family: var(--titleStyle);
	font-weight: 600;
}

.quizBody>.subQuiz {
	order: 3;
	border-block-end: 1px dashed var(--borderColor);
}

.quizBody>.response {
	order: 3;
	font-size: 1.1em;
}

.quizBody>.globalExp {
	order: 4;
    border: 2px dashed var(--pBkComplement);
    border-radius: 0.5em;
    padding: 1em;
    margin-inline: 0;
    margin-block: 0.5em 0;
}

.toolbar {
	/*	background-color: var(--accentLightBG);*/
	display: flex;
	align-items: center;
	gap: 10px;
	margin-block:1em;
	margin-inline:0;
}

input[type="text"].gapInput, select.gapInput {
	border: 1px solid var(--inputBorder);
	background-color: var(--inputBG);
	border-radius: 6px;
	font-size: 1em;
	padding-block: 4px;
    padding-inline: 4px;
	margin-block:1px;
	margin-inline:1px;
}
input[type="text"].gapInput{
	cursor: text;
}
.assmntResult_0 input[type="text"].gapInput {
    color: var(--quizWorstFG);
    background-color: var(--quizWorstBG);
    border: 2px solid var(--quizWorstFG);
    cursor: default;
}
.assmntResult_1 input[type="text"].gapInput {
    color: var(--quizAnswerFG);
    background-color: var(--quizAnswerBG);
    border: 2px solid var(--quizAnswerFG);
    cursor: default;
}
select.gapInput{
	cursor: pointer;
}
.gapInput:focus-visible{
	outline-color: var(--inputFocus);
}

/* Toolbar dans liste de Quiz */
.subQuiz .toolbar {
	background-color: var(--accentLightBG);
}

.subQuiz .quizBody {
	margin-block-start: 0;
}

.coQuiz .subQuiz .toolbar {
	background-color: var(--contentBG);
	margin-block: 0 5px;
	margin-inline: 0;
}

.btnQuiz {
	text-decoration: none;
	background-color: var(--linkColor);
	color: var(--accentDarkFG);
	padding-block: 5px;
    padding-inline: 8px;
	border-radius: 0.5rem;
	display: flex;
	gap: 5px;
	align-items: center;
}

.btnQuiz:hover {
	opacity: 0.9;
}

.btnQuiz::before{
	font-family: "fontello";
	font-size: 1.1em;
	content: "\E82A";
}

.btnQuiz.correction.toggleButtonOn {
    display:none;
}

.btnQuiz.reset::before{content: "\E832";}

.scoreBox .score[style="visibility: hidden;"] {
    display: none;
}
.scoreBox .score {
    margin-block-start: 5px;
	font-weight:500;
}

.cbkClosed .cBk_closed::before,
.cbkClosed .gExpln_closed::before,
.cbkClosed .explain_closed::before {
	font-family:"fontello";
	content:"\E810";
	margin-block-start: 4px;
}

.cbkClosed .cBk_open::before,
.cbkClosed .gExpln_open::before,
.cbkClosed .explain_open::before {
	font-family:"fontello";
	content:"\E819";
	margin-block-start: 4px;
}

.quizBk > h3 {
    font-size: 1.1em;
    color: var(--contentLightFG);
    margin-block: 15px 5px;
    margin-inline: 0;
    font-weight: 300;
}

.question >.rBk {
    font-size: 1.2em;
    font-family: var(--titleStyle);
    font-weight: 600;
    margin-block: 0 0.5em;
}

.quest .hBk_co {
	border-inline-start:2px solid var(--borderColor);
	padding-inline-start: 15px;
	min-height: 60px;
	position: relative;
}

.hBk.quest > div > div.rBk {
	font-size:105%;
	font-weight:500;
}

.collBlk_open,
.globalExp {
	margin-block:10px;
	margin-inline:10px;
	margin-block:10px;
	margin-inline:10px;
	padding-inline-start: 5px;
}
.exoAsw{
	display: flex;
	align-items: center;
}
.exoAsw input{
	width: 90%;
	cursor: text;
	color: var(--contentFG);
	border: 1px solid var(--inputBorder);
	background-color: var(--inputBG);
	border-radius: 6px;
	font-size: 1em;
	padding-block: 8px;
	padding-inline: 8px;
}
.exoSol {
    border-radius: 6px;
    color: var(--contentFG);
    background-color: var(--accentLightBG);
    font-size: 1em;
    padding-block: 10px;
    padding-inline: 8px;
    margin-inline: 3px;
}
.exoAsw .assmntResult_0 input{
	color: var(--quizWorstFG);
}
/* --- QCU/QCM STYLES ------------------------------------------------------- */
.evalBody .question{
	margin-block-end:10px;
}

.eval .imgZoom img,
.solBody .imgZoom img {
    width: fit-content;
}

.response_ti[style="visibility: hidden;"] {
	display: none;
}

ul.choiceList {
	display: flex;
	flex-flow: column;
	gap: 5px;
	counter-reset: item;
	padding-block: 0;
	padding-inline: 0;
	margin-block: 0;
	margin-inline: 0;
}

.choiceList_ch {
	flex: 0 0 auto;
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: 0.5em;
	background-color: var(--inputBG);
	border-radius: 10px;
	padding-block: 7px;
    padding-inline: 40px 7px;
	position: relative;
	z-index: 1;
	min-height: 33px;
	opacity: 1;
}

.choiceList_ch.assmntSolWrong:hover,
.choiceList_ch.assmntSolRight:hover,
.choiceList_ch.assmntSolUnche:hover,
.choiceList_ch.assmntSolCheck:hover,
.choiceList_ch.assmntSolWrong:hover input,
.choiceList_ch.assmntSolRight:hover input,
.choiceList_ch.assmntSolUnche:hover input,
.choiceList_ch.assmntSolCheck:hover input,
.choiceList_ch.assmntSolUnche:has(input[type="checkbox"]:checked):hover,
.choiceList_ch.assmntSolCheck:has(input[type="checkbox"]:checked):hover,
.choiceList_ch.assmntSolUnche:has(input:checked) .choiceList_la:hover,
.choiceList_ch.assmntSolCheck:has(input:checked) .choiceList_la:hover,
.choiceList_ch.assmntSolWrong:hover,
.choiceList_ch.assmntSolRight:hover,
.choiceList_ch.assmntSolUnche:hover,
.choiceList_ch.assmntSolCheck:hover,
.choiceList_ch.assmntSolCheck {
	pointer-events: none;
}

.choiceList_ch.assmntSolWrong,
.choiceList_ch.assmntSolRight,
.choiceList_ch.assmntSolUnche,
.choiceList_ch.assmntSolCheck {
	background-color: transparent;
	display: flex;
	gap: 10px;
	pointer-events: none;
}

.choiceList_in {
	flex: 0 0 auto;
	display: list-item;
    list-style: upper-alpha inside;
    counter-increment: item;
    color: var(--contentFG);
}

.randomizeAnswers .choiceList_in {
    display: flex;
    align-items: center;
    justify-content: center;
}

.choiceList_in > input::before {
	content: counter(item,upper-alpha) "";
	font-size: 1.1em;
	border: 2px solid var(--inputBorder);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
html[data-theme='dark'] .choiceList_in > input::before {
    background-color: #ffffff30;
}
html[data-theme='light'] .choiceList_in > input::before {
    background-color: #ffffffde;
}

.choiceList_in > input:hover {
    border-color: var(--inputFocus) !important;
}
.choiceList_in > input:checked:hover {
    border-color: initial!important;
}

.randomizeAnswers .choiceList_in > input::before {
    content: "";
}

.choiceList_in > input[type="radio"]::before {
    border-radius: 5em;
}
.choiceList_in > input[type="checkbox"]::before {
    border-radius: 5px;
}
.choiceList_in > input:checked::before{
    background-color: var(--inputFocus)!important;
    color: var(--accentDarkFG);
}

.choiceList_in > input[type="radio"]:checked,
.choiceList_in > input[type="checkbox"]:checked {
    border: 2px solid var(--inputFocus);
}
.choiceList_in > input[type="radio"]:checked {
    pointer-events: none;
}

.randomizeAnswers .choiceList_in > input[type="checkbox"]:checked::before,
.randomizeAnswers .choiceList_in > input[type="radio"]:checked::before {
    font-family: "fontello";
    content: "\E838";
}

.choiceList_in::marker {
    content: none;
}
.choiceList_in > input[type="radio"],
.choiceList_in > input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*z-index: -1;*/
    border-radius: 10px;
    border: 2px solid var(--inputBorder);
    display: flex;
    align-items: center;
}

.choiceMap_mk {
	background-image: none!important;
	width: 30px!important;
	height: 30px!important;
	background-color: var(--contentBG);
	outline: 1px solid var(--contentBG);
	border: 3px solid var(--inputFocus);
	border-radius: 5em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.choiceMap_mk::before {
	font-family: 'fontello';
	content: "\E838";
	color: var(--inputFocus);
	font-size:25px;
}

.choiceList_ch.assmntSolRight::after,
.choiceList_ch.assmntSolCheck::after {
    font-family: "fontello";
    position: absolute;
    content: "\E838";
    font-size: 1.5em;
    line-height: 1.2;
    color: var(--quizAnswerFG);
}
html[dir='ltr'] .choiceList_ch.assmntSolRight::after,
html[dir='ltr'] .choiceList_ch.assmntSolCheck::after {
    right: 0.5em;
}

html[dir='rtl'] .choiceList_ch.assmntSolRight::after,
html[dir='rtl'] .choiceList_ch.assmntSolCheck::after {
    left: 0.5em;
}

.choiceList_ch.assmntSolWrong > .choiceList_in > input:checked,
.choiceList_ch.assmntSolUnche > .choiceList_in > input:checked {
	background-color: transparent!important;
	border: none;
	color: var(--quizWorstFG);
}
.choiceList_ch.assmntSolWrong > .choiceList_in > input[type="radio"]:checked::before,
.choiceList_ch.assmntSolUnche > .choiceList_in > input[type="checkbox"]:checked::before {
	background-color: transparent!important;
	border-color:var(--quizWorstFG);
	color: var(--quizWorstFG);
}
.choiceList_ch.assmntSolRight > .choiceList_in > input:checked,
.choiceList_ch.assmntSolCheck > .choiceList_in > input:checked {
    background-color: transparent!important;
	border: none;
	color:var(--quizAnswerFG);
}
.choiceList_ch.assmntSolRight > .choiceList_in > input[type="radio"]:checked::before,
.choiceList_ch.assmntSolCheck > .choiceList_in > input[type="checkbox"]:checked::before {
    background-color: transparent!important;
	border-color:var(--quizAnswerFG);
	color:var(--quizAnswerFG);
}

/*.choiceList_sol input[type="radio"],
.choiceList_sol input[type="checkbox"] {
	display:none;
}*/

.choiceList_la {
	flex: 1 1 auto;
	cursor: pointer;
}

.choiceList_ch:has(input:checked) .choiceList_la{
	font-weight: 500;
	display: flex;
    align-items: center;
}
.choiceList_ch:has(input:checked) .choiceList_la:hover {
    cursor: default;
}
/*.choiceList_ch.assmntSolWrong:has(input:checked) .choiceList_la,
.choiceList_ch.assmntSolUnche:has(input:checked) .choiceList_la {
	font-weight: 900;
	color:var(--quizWorstFG);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline-end: 0.5em;
}*/

/*.choiceList_ch.assmntSolWrong > .choiceList_in > input:checked::after,
.choiceList_ch.assmntSolUnche > .choiceList_in > input:checked::after {
	font-family: "fontello";
	font-weight: normal;
    content: "\E80B";
    position: absolute;
    font-size: 1.5em;
    line-height: 1.2;
    color: var(--quizWorstFG);
}
html[dir='ltr'] .choiceList_ch.assmntSolWrong > .choiceList_in > input:checked::after,
html[dir='ltr'] .choiceList_ch.assmntSolUnche > .choiceList_in > input:checked::after {
    right: 0.5em;
}
html[dir='rtl'] .choiceList_ch.assmntSolWrong > .choiceList_in > input:checked::after,
html[dir='rtl'] .choiceList_ch.assmntSolUnche > .choiceList_in > input:checked::after {
    left: 0.5em;
}*/

.choiceList_ch.assmntSolRight .choiceList_la,
.choiceList_ch.assmntSolCheck .choiceList_la,
.choiceList_ch.assmntSolWrong .choiceList_la,
.choiceList_ch.assmntSolUnche .choiceList_la {
    padding-inline-end: 2em;
    pointer-events: none;
}

.choiceList_la p {
	margin-block-start: 0;
	margin-inline-start: 0;
	display: flex;
    align-items: center;
    gap: 8px;
}
.choiceList_la .choice .choiceExp p {
    display: block;
}
.choiceList_la .choice .choiceExp {
    border: 1px dashed var(--pBkComplement);
    border-radius: 0.5em;
    padding: 0.5em;
    margin-block: 0.2em 0;
    font-size: 90%;
}

.feed {
    margin-block: 1em;
}

/* --- QCU/QCM GRAPHIQUE ------------------------------------------------------- */
.choiceMap_map {
	margin-block: 0;
	margin-inline: auto;
}

/* --- CATEGORISATION/ORDONNANCEMENT ------------------------------------------------------- */
.mtTable, .pairTable {
	width: 100%;
	border-collapse: separate;
	border-spacing: 5px;
}

.mtTable td, .pairTable td {
	vertical-align: top;
}

.sol .mtTable {
    font-weight: 500;
}

.mtTable tr,
.pairTable tr {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 5px;
}

.mtTdBasket,
.mtTdDropCont {
	/*width: 30%;
    overflow-y: auto;
    max-height: 60vh;*/
}

.mtTdBasketSol {
	display: none;
}

.mtTdArrow {
	width: 40px;
}
html[dir='rtl'] .mtTdArrow {
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}
.mtTdArrow::before {
	font-family:"fontello";
	content: "\E837";
	font-size: 2em;
}

.mtLabel .txt_blockquote_div,
.mtLabel .txt_quote_is {
    font-size: 0.9em;
}

.mtTdSol {
	width: 50%;
}

.mtTdBasket {
	padding: 0;
	margin: 0;
}
.mtTdDropCont {
    background-color: var(--accentLightBG);
    border-radius: 10px;
    margin: 0;
    padding: 0.5em;
}

.mtTdBasket .ddBasket,
.mtTdBasket .ddBasketCatch {
	min-height: 250px;
}

.mtTdHeading {
	text-align: center;
	font-weight:500;
	color: var(--contentFG);
	font-size: 110%;
}

.olTableSol {
	width: 100%;
	font-weight: 500;
}

.olTableSol .matchLabelList {
    gap: 0.5em;
}

.olTableSol > tbody > tr:last-child {

}

.olTdSolHead {
    white-space: nowrap;
	padding-inline-end: 1em;
    font-style: italic;
    vertical-align: baseline;
}

.ddBasket {
	margin-block-end: 5px;
}

.ddBasketCont,
.ddDropCont {
	padding-block: 2px;
    padding-inline: 2px;
    display: flex!important;
    flex-direction: row;
    gap: 5px;
    flex-wrap: wrap;
}

.ddBasketSol {
	display: none;
}

.ddDropContIfEmpty span {
    font-style: italic;
}

.ddRepArea {
	margin-block:30px 10px;
	margin-inline:0;
	padding-block: 8px;
    padding-inline: 8px;
	border: 1px solid var(--borderColor);
	position: relative;
	background-color: var(--contentBG);
	border-radius: 10px;
}
.ddRepArea::before {
	font-family: "fontello";
	position: absolute;
	top: -22px;
}
html[dir='ltr'] .ddRepArea::before {
	left: 0;
	content: "\E817";
}
html[dir='rtl'] .ddRepArea::before {
	right: 0;
	content: "\E818";
}
.ddRepArea::after {
	font-family: "fontello";
	position: absolute;
	bottom: -22px;
}
html[dir='ltr'] .ddRepArea::after {
    right: 0;
    content: "\E818";
}
html[dir='rtl'] .ddRepArea::after {
    left: 0;
    content: "\E817";
}
.pairTable .ddRepArea,
.mtTable .ddRepArea,
.pairTable .solAreaValid,
.mtTable .solAreaValid {
	margin-block:0 7px;
	margin-inline:0;
	position: initial;
}
.pairTable .ddRepArea::before,
.mtTable .ddRepArea::before{
	content: none!important;
}
.pairTable .ddRepArea::after,
.mtTable .ddRepArea::after{
	content: none!important;
}

.pairTable .solAreaValid,
.mtTable .solAreaValid {
    padding-block-end: 10px;
    border-block-end: 1px dashed var(--borderColor);
}

.mtLabel p,
.mtLabelSol p,
.ddLabel p,
.ddLabelSol p {
	text-indent: 0;
	margin-block:0;
	margin-inline:0;
	padding-block:0;
	padding-inline:0;
}

.ddDropTi {
	color: var(--contentFG);
	padding-inline-start: 5px;
	font-size: 115%;
}

.ddDropContIfEmpty {
	height: 27px;
	text-align: center;
}

.mtTdSol .ddDropContIfEmpty,
.olTableSol .ddDropContIfEmpty {
	background: inherit;
}

/* Pair table */
.pairTable .ddDropCatch {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable .ddDropCont {
	flex: 0 0 48%;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 5px;
}

.ddDropContIfEmpty {
    border: 1px dashed var(--borderColor);
    padding-block: 5px;
}

.pairTable .ddDropTi {
	flex: 0 0 50%;
	display: flex;
}

/*Cadre gris des étiquettes */
.ddLabel,
.ddLabelSol,
.mtLabel,
.mtLabelSol {
	display: flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	zoom: 1;
	/* Hack inline-block pour ie6 & 7*/
	vertical-align: top;
	border: 1px solid;
	border-radius: 8px;
	background-color: var(--contentBG);
	cursor: move;
}
.ddLabel,
.mtLabel {
    border-block-end: 4px solid;
    border-color: var(--borderColor);
    padding-block: 5px;
    padding-inline: 5px 7px;
}
.ddLabelSol,
.mtLabelSol {
    /*border-color: var(--borderColor);*/
    padding-block: 0.3em;
    padding-inline: 0.5em;
}
.pairTable .mtLabel,
.pairTable .mtLabelSol{
	width: -moz-available;
	width: -webkit-fill-available;
	width: fill-available;
}
.ddLabel:hover, .mtLabel:hover{
	filter: brightness(0.9);
}
/*.ddLabel::after, .mtLabel::after{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: " ";
	display: block;
	border-block-end: 2px solid var(--borderColor);
}*/
.ddLabel::before, .mtLabel::before{
	font-family:"fontello";
	content: "\E839";
}
.mtLabel span.myTT_a {
	cursor: move;
}

.mtLabelSol,
.mtLabelSol span.myTT_a,
.ddLabelSol {
	cursor: default;
}

/*Survol des paniers */
.ddBasketDragOver,
.ddCatchDragOver .ddDropCont{
	background-color: color-mix(in oklab, var(--accentDarkBG), transparent 80%);
	border-radius: 10px;
}
.ddBasketCatch.ddBasketDragOver {
   background-color: transparent;
}

/*Fin du panier*/
.ddBasketEnd,
.ddCatchDragEnd {
	clear: both;
}

/*Titres des catégories et des étiquettes  */
.ddDropTi p,
.ddLabel p,
.ddLabelSol p {
	margin-block: 0;
	margin-inline: 0;
	text-align: center;
}

/* Si le panier de propositions est vide */
.ddBasketIfEmpty {
	clear: both;
	font-style: italic;
	font-size: 0.9em;
	color: #686868;
	text-align: center;
	padding-block: 5px;
    padding-inline: 0;
}

.sortableLabelList {
	list-style: none;
	padding-block: 0;
	padding-inline: 0;
	display: flex;
	flex-flow: wrap;
	gap: 2em;
}
.sol .sortableLabelList {
    column-gap: 0.5em;
    row-gap: 0.2em;
}
.sortableLabelItem {
    border: 1px solid var(--inputBorder);
    background-color: var(--inputBG);
    border-radius: 6px;
    padding-block: 0.5em;
    padding-inline: 1.5em;
	display:flex;
	align-items: center;
	position: relative;
}
.sol .sortableLabelItem {
    padding-inline: 0.5em;
}

.sortableLabelItem_selected {
	animation: drag 3s 1;
}

@keyframes drag {
	from {
		border-color: var(--accentLightBG);
	}

	to {
		border-color: var(--inputFocus);
	}
}

.sortableLabelItem .label{
	flex: 1 1 auto;
}
.sortableLabelItem .sorter{
	display:flex;
	flex-direction: column;
}

.sortableLabelItem .sorter a{
	font-family: "fontello";
	text-decoration: none;
	background-color: var(--inputFocus);
	color: var(--accentDarkFG);
	border-radius: 50%;
    width: 1.5em;
    line-height: 1.5em;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sortableLabelItem .sorter a span, .matchLabelListItem .targets > a span, .pairLabelListItem .targets > a span{
	position: absolute;
	left: -9999px;
}

a.btnSort_up {
	left: -10px;
}
a.btnSort_up::before{
	content:"\E817";
}

a.btnSort_down {
	right: -10px;
}
a.btnSort_down::before {
	content:"\E818";
}

.sortableLabelItem:first-child .sorter a.btnSort_up,
.sortableLabelItem:last-child .sorter a.btnSort_down {
	visibility: hidden;
}

.matchLabelList{
	list-style: none;
	padding-block: 0;
	padding-inline: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5em;
}
.matchLabelListItem {
	display:flex;
	flex-direction:column;
	gap: 5px;
	position: relative;
	flex: 1 1 300px;
	border: 2px solid var(--borderColor);
	border-radius: 0.5em;
	padding-inline: 0.6em;
	padding-block: 0.6em;
}
.matchLabelListItem .label {
	padding: 0;
	font-weight: 900;
}
.matchLabelListItem p {
	margin-block: 0;
	margin-inline: 0;
	line-height: 100%;
}
.matchLabelListItem .targets{
    flex: 1 1 auto;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 30px;
    gap: 0.3em;
}
.matchLabelTargetList {
    list-style: none;
    padding-block: 0;
    padding-inline: 0;
    min-height: 40px;
    width: calc(100% - 28px);
}
.matchLabelTargetList.matchLabelTargetList_closed li[role="menu"] {
    border-radius: 7px;
    border: 2px solid var(--inputBorder);
}
.matchLabelTargetList.matchLabelTargetList_closed li[role="menuitem"] {
    border-radius: 7px;
    background-color: var(--inputBG);
    border: 1px solid var(--inputBorder);
}

.matchLabelTargetList_open{
    background-color: var(--contentBG);
    border: 1px solid transparent;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    z-index:2;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 7px;
}
.matchLabelTargetList_closed input{
	display: none;
}
.matchLabelTargetList_lbl > p > em {
    font-style: normal!important;
}
.matchLabelTargetList_ch {
    display: flex;
    gap: 7px;
    align-items: center;
    padding-block: 0.2em;
    padding-inline: 0.5em;
    min-height: 40px;
    box-sizing: border-box;
    position: relative;
}

.matchLabelTargetList_ch > input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 8px;
    padding-inline-start: 18px;
    padding-inline-end: 8px;
    border-radius: 10px;
    color: var(--contentFG);
}

.matchLabelTargetList_open .matchLabelTargetList_ch:not(.matchLabelTargetList_selected):hover {
    background-color: var(--accentLightBG);
    border-radius: 10px;
}
.matchLabelTargetList_open .matchLabelTargetList_selected input {
    cursor: inherit!important;
}

.matchLabelTargetList_open .matchLabelTargetList_selected::before {
    display: inline-block;
    font-family: "fontello";
    content: "\E853";
}

.matchLabelListItem .targets > a {
    font-family: "fontello";
    text-decoration: none;
    display: flex;
    position: absolute;
}
.matchLabelTargetList_dropdown_closed,
.matchLabelTargetList_dropdown_open {
    top:0;
    bottom:0;
    align-items: center;
}
html[dir='ltr'] .matchLabelTargetList_dropdown_closed,
html[dir='ltr'] .matchLabelTargetList_dropdown_open {
    left:0;
	right: 38px;
	justify-content: flex-end;
}
html[dir='rtl'] .matchLabelTargetList_dropdown_closed,
html[dir='rtl'] .matchLabelTargetList_dropdown_open {
	left: 38px;
	right: 0;
	justify-content: flex-start;
}

html[dir='ltr'] .matchLabelTargetList_deselect {
	right: 3px;
}
html[dir='rtl'] .matchLabelTargetList_deselect {
	left: 3px;
}
.matchLabelTargetList_dropdown_closed::before {
	content:"\E819";
}
.matchLabelTargetList_dropdown_open::before {
	content:"\E81C";
}
.matchLabelTargetList_deselect::before {
	content:"\E857";
}

.olTableSol .matchLabelListItem {
    gap: 0.5em;
    padding-inline: 0.6em;
    padding-block: 0.6em;
}
.olTableSol .matchLabelListItem .targets::before,
.olTableSol .matchLabelListItem .targets::before {
    font-family: "fontello";
    content:"\E818";
}
.olTableSol .matchLabelListItem.fixedLabel_Wrong .targets::before,
.olTableSol .matchLabelListItem.fixedLabel_Right .targets::before {
    content: none;
}
.olTableSol .matchLabelListItem .targets > a {
    position: relative;
}
.olTableSol .matchLabelTargetList_dropdown_closed::before {
    content: none;
}
.olTableSol .matchLabelTargetList.matchLabelTargetList_closed li {
    border-radius: initial;
    background-color: transparent;
    border: 2px solid var(--accentLightBG);
    border-radius: 0.4em;
}

.pairLabelList {
	list-style: none;
	padding-block: 0;
	padding-inline: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.pairLabelListItem {
	margin-block:0.5em;
	margin-inline:0.5em;
	display:flex;
	align-items: stretch;
	flex-direction: column;
	gap: 5px;
	padding-block: 3px;
    padding-inline: 3px;
	position: relative;
	border-radius: 0.2em;
}
.pairLabelListItem .label {
    flex: 1 1 auto;
	width: -webkit-fill-available;
	padding-block: 0;
	display: flex;
	align-items: center;
	font-weight: 900;
}
.pairLabelListItem p {
	margin-block: 0;
	margin-inline: 0;
	line-height: 100%;
}
.pairLabelListItem .targets{
    flex: 1 1 auto;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 30px;
}
.pairLabelTargetList {
	list-style: none;
	padding-block: 0;
	padding-inline: 0;
	min-height: 40px;
	width: calc(100% - 28px);
}
.pairLabelTargetList.pairLabelTargetList_closed li[role="menu"] {
    border-radius: 7px;
    border: 2px solid var(--inputBorder);
}
.pairLabelTargetList.pairLabelTargetList_closed li[role="menuitem"] {
    border-radius: 7px;
    background-color: var(--inputBG);
    border: 1px solid var(--accentDarkBG);
}

.pairLabelTargetList_open{
    background-color: var(--contentBG);
	border: 1px solid transparent;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
	z-index:2;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 7px;
}
.pairLabelTargetList_closed input{
	display: none;
}
.pairLabelTargetList_lbl > p > em {
    font-style: normal!important;
}
.pairLabelTargetList_ch{
	display: flex;
	gap: 7px;
	align-items: center;
	padding-block: 0.2em;
    padding-inline: 0.5em;
	min-height: 40px;
	box-sizing: border-box;
	position: relative;
}
.pairLabelTargetList_ch > input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 8px;
    padding-inline-start: 18px;
    padding-inline-end: 8px;
    border-radius: 10px;
    color: var(--contentFG);
}

.pairLabelTargetList_open .pairLabelTargetList_ch:not(.pairLabelTargetList_selected):hover {
    background-color: var(--inputBG);
    border-radius: 10px;
}
.pairLabelTargetList_open .pairLabelTargetList_selected input {
    cursor: inherit!important;
    text-decoration: none;
}

.pairLabelTargetList_open .pairLabelTargetList_selected::before {
    display: inline-block;
    font-family: "fontello";
    content: "\E853";
}

.pairLabelTargetList_ch:has(input:disabled) {
    text-decoration: line-through;
}
.pairLabelTargetList_ch.pairLabelTargetList_selected:has(input:disabled) {
    text-decoration: none;
}

.pairLabelListItem .targets > a {
	font-family: "fontello";
	text-decoration: none;
	display: flex;
	position: absolute;
}
.pairLabelTargetList_dropdown_closed,
.pairLabelTargetList_dropdown_open {
    top:0;
    bottom:0;
    align-items: center;
}
html[dir='ltr'] .pairLabelTargetList_dropdown_closed,
html[dir='ltr'] .pairLabelTargetList_dropdown_open {
    left:0;
	right: 38px;
	justify-content: flex-end;
}
html[dir='rtl'] .pairLabelTargetList_dropdown_closed,
html[dir='rtl'] .pairLabelTargetList_dropdown_open {
	left: 38px;
	right: 0;
	justify-content: flex-start;
}

html[dir='ltr'] .pairLabelTargetList_deselect {
	right: 3px;
}
html[dir='rtl'] .pairLabelTargetList_deselect {
	left: 3px;
}
.pairLabelTargetList_dropdown_closed::before {
	content:"\E819";
}
.pairLabelTargetList_dropdown_open::before {
	content:"\E81C";
}
.pairLabelTargetList_deselect::before {
	content:"\E857";
}

.olTableSol .pairLabelListItem {
    gap: 1em;
}
.olTableSol .pairLabelListItem .targets {
    display: block;
}
.olTableSol .pairLabelListItem .targets > a {
    position: relative;
}
.olTableSol .pairLabelTargetList_dropdown_closed::before {
    content: none;
}
.olTableSol .pairLabelTargetList.pairLabelTargetList_closed li {
    border-radius: initial;
    background-color: transparent;
    border: 2px solid var(--accentLightBG);
    border-radius: 0.5em;
}

input, select {
	cursor: pointer;
	color: var(--contentFG);
}
input:focus-visible{
	outline: 1px solid var(--inputFocus);
}
input:disabled {
    appearance: none;
    background-color: var(--inputBG);
    border: 2px solid var(--inputBorder);
    padding-block: 0.3em;
    padding-inline: 0.4em;
    border-radius: 0.4em;
}

/*Réponse juste*/
.ddLabel_Right,
.assmntResult_Right,
.sortLabel_Right,
.fixedLabel_Right {
	pointer-events: none;
	position: relative!important;
	padding-block: 0.3em;
    padding-inline: 0.5em;
	border: 2px solid var(--quizAnswerFG);
	border-radius: 0.5em;
	color: var(--quizAnswerFG);
	gap: 0.3em;
}
.ddLabel_Right::before,
.assmntResult_Right::before,
.sortLabel_Right::before,
.fixedLabel_Right::before {
    content: "\E838";
    font-size: 120%;
    border: none;
    position: relative;
}

.ddLabel_Right span.myTT_a,
.assmntResult_Right span.myTT_a {
	cursor: default;
}

/*Réponse fausse */
.ddLabel_Wrong,
.assmntResult_Wrong,
.sortLabel_Wrong,
.fixedLabel_Wrong {
	pointer-events: none;
	position: relative!important;
	padding-block: 0.3em;
    padding-inline: 0.5em;
	border: 1px solid var(--quizWorstFG);
	border-radius: 0.5em;
	color: var(--quizWorstFG);
	gap: 0.3em;
}
.ddLabel_Wrong::before,
.assmntResult_Wrong::before,
.sortLabel_Wrong::before,
.fixedLabel_Wrong::before {
    content: "\E80B";
    font-size: 90%;
    border: none;
    position: relative;
}

.ddLabel_Wrong:hover,
.assmntResult_Wrong:hover,
.sortLabel_Wrong:hover,
.fixedLabel_Wrong:hover {
    filter: brightness(1);
}

.ddLabel_Wrong span.myTT_a,
.assmntResult_Wrong span.myTT_a {
	cursor: default;
}

.subQuiz {
	padding-block-start: 0;
	padding-block-end: 20px;
    padding-inline: 0;
}

.subQuiz_ti {
	display: flex;
	gap: 5px;
	font-size: 1.1em;
	color: var(--contentLightFG);
	margin-block:15px 5px;
	margin-inline:0;
	font-weight: 300;
}

/* --- TAT ------------------------------------------------------- */
.cloze p {
	line-height: 1.6em;
}

.gapAnswer {
	border-radius: 6px;
	color: var(--contentFG);
	background-color: var(--accentLightBG);
    font-size: 1em;
    padding-block: 5px;
    padding-inline: 8px;
    display: inline-block;
    min-width: 30px;
    margin-inline: 3px;
}

.assmntResult_0 input, .assmntResult_0 select {
	color: var(--quizWorstFG);
	text-decoration: line-through;
	cursor: auto;
	border: 1px solid var(--quizWorstFG);
	background-color: var(--quizWorstBG);
	border-radius: 6px;
	font-size: 1em;
	padding-block: 3px;
    padding-inline: 8px;
}

.assmntResult_1 input, .assmntResult_1 select {
	border: 2px solid var(--quizAnswerFG);
	color: var(--quizAnswerFG);
	background-color: var(--quizAnswerBG);
	opacity: 1;
	cursor: initial;
    border-radius: 6px;
    font-size: 1em;
    padding-block: 4px;
    padding-inline: 4px;
    margin-block:1px;
    margin-inline:1px;
}

/* --- EVALUATION ------------------------------------------------------- */
.assmntUa .gotoEval {
	margin-block:10px;
	margin-inline:0;
}

.assmntUa .gotoEval .btnEval {
	background-color:var(--accentDarkBG);
	color: var(--accentDarkFG);
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	font-size: 1em;
	padding-block: 30px;
    padding-inline: 30px;
	text-decoration: none;
	border-radius: 10em;
	position: relative;
	overflow: hidden;
	border-block-end: 5px solid color-mix(in srgb, var(--accentDarkBG) 50%, var(--accentLightBG));
}
.assmntUa .gotoEval .btnEval::before {
	font-family: "fontello";
	content: " \E80C";
	font-size: 130%;
}
.assmntUa .gotoEval .btnEval:hover {
    border-block-end: 0;
    bottom: -5px;
}

.assmntUa #content .obj {
	background-color: var(--pBkTextLight);
	border: 0;
	margin-block-end: 10px;
}
.assmntUa #content .obj .cBk_ti{
	text-align: start;
}

.resultPage .result .hBk_ti,
.resultPage .result .hBk_co,
.validPage .result .hBk_ti,
.validPage .result .hBk_co,
.endPage .result .hBk_ti,
.endPage .result .hBk_co {
    text-align: center;
}
.resultE {
    display: flex;
    gap: 0.5em;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Eval buttons */
.btnStartE,
.btnRestartE,
.btnScoreE,
.btnValidateE,
.btnCloseE,
.btnGotoSolE,
.btnReset,
.btnSynthE {
	text-decoration: none;
	background-color: var(--linkColor);
	color: var(--accentDarkFG);
	padding-block: 5px;
	padding-inline: 8px;
	border-radius: 0.5rem;
	display: flex;
	gap: 10px;
	align-items: center;
	width: fit-content;
	/*margin-block:10px 0;
	margin-inline:0 10px;*/
}

.btnStartE:hover,
.btnValidateE:hover,
.btnCloseE:hover,
.btnRestartE:hover,
.btnScoreE:hover,
.btnGotoSolE:hover {
	opacity: 0.7;
}

.btnStartE::before,
.btnRestartE::before,
.btnScoreE::before,
.btnValidateE::before,
.btnCloseE::before,
.btnGotoSolE::before {
	font-family: "fontello";
}

.btnStartE::before {content: "\E80C"}
.btnValidateE::before {content: "\E81E"}
.btnCloseE::before {content: "\E80B"; font-size: 90%}
.btnRestartE::before {content: "\E832"}
.btnScoreE::before {content: "\E820"}
.btnGotoSolE::before {content: "\E821"}

/****************** START SOLUTIONS ******************/
.solBody ul.choiceList {
    gap: 5px;
    counter-reset: none;
}
 .response_ti {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-inline-start: 8px;
    margin-block: 0 3px;
}
 .response_ti > span {
    max-width: 55px;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
}
 .response_ti > span:last-child {
    display: none;
}
.trainUcMcqMurMap .response_ti > span:nth-child(2) {
    max-width: initial;
}
 .assmntSolCheck.choiceList_ch,
.assmntSolUnche.choiceList_ch,
.assmntSolRight.choiceList_ch,
.assmntSolWrong.choiceList_ch {
    background-color: var(--inputBG)!important;
    border: 2px solid var(--inputBorder);
    padding-inline: 7px;
    gap: 5px;
}
 .assmntSolCheck .choiceList_in,
.assmntSolUnche .choiceList_in,
.assmntSolRight .choiceList_in,
.assmntSolWrong .choiceList_in {
    list-style: none;
    counter-increment: none;
}
 .assmntSolCheck .choiceList_in,
.assmntSolUnche .choiceList_in,
.assmntSolRight .choiceList_in,
.assmntSolWrong .choiceList_in,
 .choiceList_sol {
    max-width: 55px;
    min-width: 55px;
    display: flex;
    justify-content: center;
}
 .assmntSolCheck .choiceList_in > input,
.assmntSolUnche .choiceList_in > input,
.assmntSolRight .choiceList_in > input,
.assmntSolWrong .choiceList_in > input,
 .assmntSolCheck .choiceList_la,
.assmntSolUnche .choiceList_la,
.assmntSolRight .choiceList_la,
.assmntSolWrong .choiceList_la {
    pointer-events: none;
    cursor: default;
}
/*.solBody .choiceList_in > input[type="radio"],
.solBody .choiceList_in > input[type="checkbox"]*/
.assmntSolCheck .choiceList_in > input,
.assmntSolUnche .choiceList_in > input,
.assmntSolRight .choiceList_in > input,
.assmntSolWrong .choiceList_in > input {
    padding: 0;
    position: relative;
    border-radius: 0;
    border: 0;
}
 .assmntSolRight .choiceList_sol > input::before,
 .assmntSolCheck .choiceList_sol > input::before {
    border-color: var(--contentFG);
}
/*.solBody .choiceList_sol > input[type="radio"],
.solBody .choiceList_sol > input[type="checkbox"]*/
.choiceList_sol > input {
    display: inline-block;
    appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
}
 .choiceList_sol > input::before {
    content: "";
    font-size: 1.1em;
    border: 2px solid var(--inputBorder);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .choiceList_sol > input[type="radio"]::before {
    border-radius: 5em;
}
 .choiceList_sol > input[type="checkbox"]::before {
    border-radius: 5px;
}
/*.solBody .choiceList_in > input::before*/
.assmntSolCheck .choiceList_in > input::before,
.assmntSolUnche .choiceList_in > input::before,
.assmntSolRight .choiceList_in > input::before,
.assmntSolWrong .choiceList_in > input::before {
    background-color: transparent!important;
}

/*.solBody .choiceList_in > input:checked::before,*/
.assmntSolCheck .choiceList_in > input:checked::before,
.assmntSolUnche .choiceList_in > input:checked::before,
.assmntSolRight .choiceList_in > input:checked::before,
.assmntSolWrong .choiceList_in > input:checked::before,
 .assmntSolRight .choiceList_sol input::before,
 .assmntSolCheck .choiceList_sol input::before {
    font-family: "fontello";
    content: "\E838";
}
/*.solBody .choiceList_in > input:not(:checked)::before,*/
.assmntSolCheck .choiceList_in > input:not(:checked)::before,
.assmntSolUnche .choiceList_in > input:not(:checked)::before,
.assmntSolRight .choiceList_in > input:not(:checked)::before,
.assmntSolWrong .choiceList_in > input:not(:checked)::before,
 .assmntSolWrong .choiceList_sol input::before,
 .assmntSolUnche .choiceList_sol input::before {
    content: "";
}
 .choiceList_ch.assmntSolRight::after,
 .choiceList_ch.assmntSolCheck::after {
    content: none;
}
 .choiceList_ch.assmntSolRight:has(input:checked) .choiceList_la,
 .choiceList_ch.assmntSolCheck:has(input:checked) .choiceList_la {
    color: var(--contentFG);
    font-weight: 900;
}

 .score {
    font-weight: 500;
    font-style: italic;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
 .score_ti {
    display: inline-block;
    font-size: 1rem;
    margin: 0;
}
 .score_ti::after {
    content: " :";
}
.score .answWorst {
    color: var(--quizWorstFG);
}
.score .answBest,
.score .answGood {
    color: var(--quizAnswerFG);
}
.score .answBad {
	color: var(--quizBadFG);
}

.solBody .question .rBk {
	background: none;
}

.solBody .question,
.score,
.sol,
.solBody .explain,
.exoSol .question,
.exoSol .explain {
	position: relative;
	margin-inline:0;
}
.solBody .question,
.solBody .explain,
.exoSol .question,
.exoSol .explain {
    margin-block: 15px;
}

.exoSol .question {
    background-color: var(--accentLightBG);
    padding-inline: 0.7em;
    padding-block: 0 0.5em;
}

.sol {
    background-color: var(--quizAnswerBG);
    padding-inline: 0.7em;
    padding-block: 0.5em;
}

.solBody .question_ti,
.solBody .score_ti,
.solBody .sol_ti,
.exoSol .question_ti,
.exoSol .score_ti,
.exoSol .sol_ti {
	font-weight: 500;
	margin-block: 0 0.4em;
    font-size: 85%;
    text-align: right;
    text-transform: uppercase;
}

.score {
	font-weight: 900;
	margin-block-end:10px;
}
 .explain {
    border: 3px dashed var(--pBkComplement);
    border-radius: 0.5em;
    padding: 1em;
}
.explain_ti {
    font-size: 1.2rem;
    display: flex;
    gap: 7px;
    margin-block: 0 0.5em;
}

.solBody .question_ti,
.solBody .score_ti,
.solBody .sol_ti {
	display: none;
}

.solBody .mtTdSol {
    width: auto;
    padding-inline: 0.5em;
}
.solBody .mtTdSol:last-child {
    background-color: var(--quizAnswerBG);
    padding-block: 0.5em;
    border-radius: 0.5em;
}
.solBody .mtTdHeading {
    font-style: italic;
    font-size: 0.9rem;
    margin-block-end: 5px;
}
.solBody .mtTdHeading:last-child {
    color: var(--quizAnswerFG);
}
.solBody .mtTdSol:last-child .ddRepArea {
    border: 1px solid var(--inputBorder);
    background-color: var(--contentBG);
}
.solBody .ddDropContIfEmpty span {
    display: none;
}
.solBody .mtTable tr,
.solBody .pairTable tr {
    grid-template-columns: 1fr 1fr;
}

.quizResult .WFeedbackEntry {
    font-style: italic;
}
/****************** STOP SOLUTIONS ******************/

.eval .fileProtocol .btnCloseE,
.eval .fileProtocol .score,
.eval .fileProtocol .result .response_ti span:first-child,
.eval .fileProtocol .result .olTableSol>tbody>tr:first-child,
.eval .fileProtocol .result .choiceList_in{
	display: none;
}
.eval .fileProtocol .closeEmessage{
	display: block !important;
}
div.infoScore {
	font-weight: 500;
	font-size: 1.2em;
	margin-block-end: 0.5em;
}

/* === STOP - QUIZ ======================================================== */

/* === START - TOOLS ======================================================== */
/*Question de synthèse */
.tools .synth h3.synth_ti{
	display:none;
}
.tools .synth .synth_ti{
	font-family:var(--textStyle);
	margin-block: 0;
	margin-inline: 0;
	font-weight: 500;
	font-size: 1.2em;
}
.tools .synth h5.synth_ti::before, .tools .synth h6.synth_ti::before{
	font-family:"fontello";
	content:"\E818";
	margin-inline-end:5px;
}
.tools .synth .synth_co .quest{
	border-inline-start: 1px solid var(--accentDarkBG);
	padding-inline-start: 10px;
}

/*REF */
.tools .refOutline {
	background-color: var(--contentBG);
	padding-block: 15px;
	padding-inline: 15px;
	text-align: center;
	position: sticky;
	top: -37px;
	z-index:10;
}

.tools .refOutlineEntry a {
	background-color: var(--linkColor);
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding-block: 5px;
    padding-inline: 7px;
	margin-block:10px;
	margin-inline:10px;
	border-radius: 5px;
}

.tools .refCateg {
	margin-block:25px 5px;
	margin-inline:0;
	font-size: 2em;
	font-weight:600;
	font-family:var(--titleStyle);
}

.tools dfn,
.tools dt {
	font-size: 1.1em;
	color: var(--contentFG);
	margin-block:15px 5px;
	margin-inline:0;
	font-style: normal;
	font-weight: 500;
}

.tools dd {
	margin-inline-start: 15px;
}

.tools .mDiv,
.tools .mField {
	border-inline-start: 1px solid var(--accentDarkBG);
	padding-inline-start: 10px;
}

/*Credits*/
#content .credits_ti {
	margin-block:15px 5px;
	margin-inline:0;
}

#content .credits_co {
	margin-inline-start: 10px;
}

#content .credits {
	margin-block:10px;
	margin-inline:0;
}

#content .credits .legalInfo {
	display: block;
	margin-block-end: 10px;
}

.resCredits {
	border-inline-start: 1px solid var(--accentDarkBG);
	padding-inline-start: 10px;
}

.resCredits .legalInfo {
	margin-inline-start: 0;
	border-inline-start: none;
	padding-inline-start: 0;
	margin-block-end: 0;
}

.resCreditsLnk {
	text-decoration: none;
}

/*Index des mots clés*/
.index .idxEntryTi {
	font-family: var(--titleStyle);
	font-size: 1.1em;
	margin-block-start: 15px;
	margin-block-end: 3px;
}

.idxEntryCaller a {
	text-decoration: none;
}
.idxEntryCaller span.stackSep:first-child{
	display:none;
}
.idxEntryCaller span.stackSep {
	color: transparent;
	display: inline-block;
	min-width: 15px;
	margin-block:0;
	margin-inline:15px;
	position:relative;
}
.idxEntryCaller span.stackSep::before{
	font-family:"fontello";
	content:"\E810";
	font-size:80%;
	color: var(--contentLightFG);
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	margin-block:auto;
	margin-inline:auto;
	text-align: center;
}

/* === STOP - TOOLS ======================================================== */

/* === START - scImageMgr ===================================================== */
.scImgZmOver,
.scImgSeqOver {
	background: var(--contentBG);
}

.scImgZmMag,
.scImgSeqMag {
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
	cursor: crosshair;
}

.imgZoom {
	display: inline-block;
}

.imgLoading .scImgGalCvs::before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../img/content/loader.svg");
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

.imgLoading .scImgGalFra {
	display: none;
}

.galFra {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: start;
}

.galFra img {
	padding-block: 5px;
	padding-inline: 5px;
}

.seqFra {
	display: flex;
	justify-content: center;
}

.scImgSep {
	display: none;
}

a.galPvLnk:hover {
	opacity: 0.7;
}

.scImgGalCvs {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.scImgGalImgFra {
	background-color: var(--contentBG);
	border-radius: 5px;
	padding-block: 5px;
	padding-inline: 5px;
	padding-block-end: 30px;
	overflow: hidden;
}

.scImgGalCo {
	list-style: none;
	padding-block: 0;
	padding-inline: 0;
	margin-block: 0;
	margin-inline: 0;
	height: 0;
}

.scImgGalTbr {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.scImgGalTbr .scImgGalCount {
	display: inline;
	bottom: 5px;
	right: 35px;
	font-style: italic;
    color: var(--contentLightFG);
    cursor: default;
    font-size: 85%;
	cursor: default;
}

div.scImgGalOver,
div.scImgZmOver,
div.scImgSeqOver {
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

div.scImgGalTi {
	font-style: italic;
	color: var(--contentLightFG);
	cursor: default;
	font-size: 85%;
	position: absolute;
	bottom: 5px;
	left: 5px;
}

div.scImgGalTbr span,
a.scImgGalBtnCls span {
	display: none;
	position: absolute;
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls,
div.scImgGalTbr a,
a.scImgSeqBtnPrv,
a.scImgSeqBtnNxt {
	font-family: 'fontello' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--accentDarkFG);
	width: 30px;
	text-align: center;
	text-decoration: none;
}

a.scImgGalBtnCls:before,
a.scImgZmBtnCls:before,
a.scImgSeqBtnCls:before {
	content: "\E80B";
}

a.scImgGalBtnCls,
a.scImgZmBtnCls,
a.scImgSeqBtnCls {
	display: block;
	top: 10px;
	right: 10px;
	font-size: 1.5em;
}

.isMobile_true a.scImgGalBtnCls,
.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
	top: 10px;
}

a.scImgGalBtnCls,
.isMobile_true a.scImgZmBtnCls,
.isMobile_true a.scImgSeqBtnCls {
	position: absolute;
}

div.scImgGalTbr a {
	display: block;
	position: absolute;
}

div.scImgGalTbr a:hover {
	text-decoration: none;
}

a.scImgGalBtnPrv,
a.scImgGalBtnNxt {
	top: 1.5em;
	font-size: 4em;
	margin-block-start: -1.25em;
	position: fixed !important;
	width: 1em !important;
	height: 100%;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.isMobile_true a.scImgGalBtnPrv,
.isMobile_true a.scImgGalBtnNxt {
	position: absolute !important;
}

a.scImgGalBtnPrv:before,
a.scImgSeqBtnPrv:before {
	content: "\E80F";
	font-size: 2rem;
}

a.scImgGalBtnPrv {
	left: 5px;
}

a.scImgGalBtnNxt:before,
a.scImgSeqBtnNxt:before {
	content: "\E810";
	font-size: 2rem;
}

a.scImgGalBtnNxt {
	right: 5px;
}

a.scImgGalBtnPse:before {
	content: "\E83B";
}

a.scImgGalBtnPly,
a.scImgGalBtnPse,
a.scImgSeqBtnPlay,
a.scImgSeqBtnPause {
	font-size: 1em;
	color: var(--contentLightFG) !important;
	bottom: 4px;
	right: 0;
}

a.scImgGalBtnPly:before {
	content: "\E83C";
}

.noScroll {
	overflow: hidden;
}

div.scImgZmCvs,
div.scImgSeqCvs {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

.imgLoading .scImgZmCvs::before,
.imgLoading .scImgSeqCvs::before {
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../img/content/loader.svg");
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 2001;
	width: 100%;
	height: 100%;
}

div.scImgZmFra,
div.scImgSeqFra {
	background-color: var(--contentBG);
	border-radius: 5px;
	padding-block: 5px;
	padding-inline: 5px;
}

div.scImgZmTlb,
div.scImgSeqTlb {
	margin-block-start: 5px;
	text-align: end;
}

a.scImgZmBtnCls,
a.scImgSeqBtnCls {
	position: fixed;
}

a.scImgZmBtnCls span,
a.scImgSeqBtnCls span,
a.scImgGalBtnNoPrv,
a.scImgSeqBtnPlay span,
a.scImgSeqBtnPause span,
a.scImgSeqBtnPrv span,
a.scImgSeqBtnNxt span {
	display: none;
}

a.scImgSeqBtnPlay,
a.scImgSeqBtnPause {
	text-decoration: none;
}

a.scImgSeqBtnPlay:before {
	content: "\23F5\FE0E";
	display: block;
	margin-block-start: -4px;
}

a.scImgSeqBtnPause:before {
	content: "\23F8\FE0E";
	display: block;
	margin-block-start: -4px;
}

.scImgZmCo,
.scImgSeqCo {
	text-align: center;
}

.scImgZmCo div,
.scImgSeqCo div {
	z-index: 2002;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 0;
}

.scImgZmCo iframe,
.scImgSeqCo iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 0;
}

.scImgZmCo a,
.scImgSeqCo a {
	text-decoration: none;
}

.scImgZmCo a img,
.scImgSeqCo a img {
	border: 0;
}

.scImgZmCo img,
.scImgSeqCo img {
	background-color: var(--contentBG);
}

.scImgSeqToolsOver {
	background: #EEE;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
}

.scImgSeqToolsOver a {
	position: static;
	color: #666 !important;
	font-size: 1.7em;
}

.seqFra .galPv {
	margin-block-start: 0.3em;
	visibility: hidden;
}

/* === STOP - scImageMgr ====================================================== */

/* === START - RICHSTREAM ============================================= */
.teContainer {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-block-end: 5em;
}

.teContainer:not(.teReady) {
	opacity: 0.5;
}

.teContainer:not(.teReady)>.hBk_co {
	opacity: 0;
}

/* Alternative à l'icône de l'activé en float : absolu et flex avec pseudo after de la même taille que l'icône */
/*.module .teContainer>h2.hBk_ti:before {
	position: absolute;
	right: 1em;
}

.teContainer>h2.hBk_ti {
	display: flex;
}

.teContainer>.hBk_ti::after {
	content: '';
	display: block;
	margin-inline-end: 10px;
	width: 120px;
}*/

.teContainer>.hBk_co {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}

.teMainArea {
	display: flex;
	flex: 1;
	min-height: 0;
	overflow: hidden;
}

.teSegmentHead_ti {
	padding-block-end: 4px;
	font-size: 1.3em;
	margin-block-start: 0;
}

/* Media */
.teMediaArea {
	min-width: 0;
	min-height: 0;
}

.teMediaArea video {
	background: transparent;
}

.teContainer.teVideoType .teMediaArea {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

/* Force un aspect 16:9 sur les iframes */
.teMediaArea>mediaelementwrapper {
	position: relative;
	overflow: hidden;
	flex: 0 1 auto;
	display: block;
}

.teMediaArea>mediaelementwrapper::before {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-block-end: 56.25%;
}

.teMediaArea>mediaelementwrapper>* {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	margin-block:auto;
	margin-inline:auto;
}

.teContainer.teVideoType .teMediaArea::after {
	font-family: "fontello";
	display: flex;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin-block:auto;
	margin-inline:auto;
	width: 75px;
	height: 75px;
	pointer-events: none;
	justify-content: center;
	align-items: center;
	color: white;
}

.teContainer.teVideoType.tePaused:not(.tePlayed) .teMediaArea::after {
    content:"\E83C";
}

.teContainer.teVideoType.teVideoPlay .teMediaArea::after {
    content:"\E83C";
	animation: bezelFadeout .5s linear 1 normal forwards;
}

.teContainer.teVideoType.teVideoPause .teMediaArea::after {
    content:"\E83B";
	animation: bezelFadeout .5s linear 1 normal forwards;
}

@keyframes bezelFadeout {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: scale(2)
	}
}

.teMediaArea>.teSubtitles {
	text-align: center;
	font-size: 1.2em;
	padding-block:0;
	padding-inline: 1em;
	box-sizing: border-box;
	margin-block-start: -2.2em;
	z-index: 1;
}

.teMediaArea>.teSubtitles>div {
	display: inline-block;
	background: rgba(0, 0, 0, 0.7);
	padding-block: 0.5em;
	padding-inline: 0.5em;
	border-radius: 0.5em;
	color: #fff;
	text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000;
	margin-block: 0;
	margin-inline: auto;
	white-space: pre-line;
}
iframe {
	max-width: -webkit-fill-available;
	border: none;
}
iframe.eWebFrame {
    background-color: var(--contentBG);
    color: var(--contentFG);
}

/* Content */
.teContentArea {
	display: flex;
	flex: 0 0 0;
	transition: flex 0.5s;
	position: relative;
	min-width: 0;
	align-items: center;
	justify-content: center;
	overflow: auto;
}

.teContainer.teActiveAside .teContentArea {
	flex-basis: 50px;
}

.teContainer.teActiveSegment .teContentArea,
.teContainer.teActivePause .teContentArea {
	flex-basis: 60%;
}

.teContainer.teActiveSegment.teActiveAside .teContentArea,
.teContainer.teActivePause.teActiveAside .teContentArea {
	flex-basis: calc(60% + 50px);
}

.teContainer.teAudioType .teContentArea {
	flex-grow: 1;
}

.teSegment,
.tePause {
	flex: 1;
	margin-block-end:1em;
	margin-inline:1em;
	transition: opacity 0.3s ease-in;
}

.teSegmentAside {
	transition: opacity 0.3s ease-in;
}

.tePause {
	align-self: stretch;
	overflow: auto;
}

.teQuizListStep {
	padding-inline:10px;
}

.teSegment[hidden],
.tePause[hidden],
.teSegmentAside[hidden],
.teContainer.teActivePause .teSegment,
.teContainer.teActivePause .teSegmentAside {
	display: block;
	flex: 0;
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
	margin-block: 0;
	margin-inline: 0;
	visibility: hidden;
}

/* Compléments */
.teSegmentCompls {
	list-style: none;
	padding-block: 1em;
	padding-inline: 0;
	margin-block: 0;
	margin-inline: 0;
}

.teActive a.teSegmentCompl {
	display: block;
	position: relative;
	margin-block:1em;
	margin-inline:0;
	text-align: end;
	cursor: pointer;
}
.teActive a.teSegmentCompl::before{
	font-family: "fontello";
	content: "\E829";
	display: inline-block;
	font-size: 1.7em;
	color: var(--linkColor);
}
.teActive a.teSegmentCompl:hover::before{
	opacity: 0.9;
}

.teActive a.teSegmentCompl > span {
    display: none;
}

.teActive a.teSegmentCompl:hover > span {
    display: block;
    position: absolute;
    right: 5px;
    bottom: -30px;
    background: var(--contentBG);
    border-radius: 5px;
    padding-inline: 5px;
    padding-block: 2px;
}

/* Controleur */
.teController {
	display: flex;
	flex: 0 0 3em;
	margin-block-start: 0.5em;
	position: relative;
	justify-content: space-between;
	justify-content: space-evenly;
}

.teController>* {
	margin-block:0;
	margin-inline:0.5em;
}

.teControllerNavArea {
	display: flex;
	flex-direction: column;
	flex: 3;
}

.teTimeline {
	display: flex;
	list-style: none;
	padding-block: 0;
	padding-inline: 0;
	margin-block: 0;
	margin-inline: 0;
	flex: 1;
	position: relative;
	border: solid 1px var(--borderColor);
	-webkit-user-select: none;
	-moz-user-select: none;
}

.teTimeline li {
	position: relative;
	display: flex;
}

.teTimeline li > div {
	display: flex;
}

.teTimeline a {
	display: flex;
	flex: 1 1 100%;
	border-inline-start: solid 1px var(--borderColor);
	color: inherit;
	text-decoration: inherit;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.teTimeline a:hover {
	cursor: pointer;
}

.teTimeline a span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.teTimeline li.teActive > a {
	background-color: var(--segmentActive);
}
.teTimeline li.teDone > a{
	background-color: var(--segmentDone);
}

.teTimeline li > a.tlQuizList {
	display: none;
	background-color: var(--segmentUndone);
	flex: 1 2 1em;
	border-inline-start-style: dashed;
}

.teTimeline li:hover > a.tlQuizList,
.teTimeline li.teActive > a.tlQuizList {
	display: block;
}

.teTimeline a:hover {
	outline: none;
	background-color: var(--borderColor);
}

.teTimeline a:active {
	outline: none;
	background-color: grey;
}

.teTimeline li:first-child a:first-child {
	border-inline-start: none;
}

.teTimeline a>span {
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.teTimeline li>ul a {
	border-block-start: none;
}

.tlQuizList {
	display: none;
	background-color: silver;
	flex: 1 2 1em;
	border-inline-start-style: dashed;
}

.teTimeline li:hover>.tlQuizList,
.teTimeline .teActive>.tlQuizList {
	display: block;
}

.teTimes {
	display: flex;
	flex-direction: column;
}

.teTimes>* {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.teQuizListActions {
	text-align: center;
}

.tePauseNext,
.tePauseResume {
	display: inline-block;
	padding-inline: 1em;
	padding-block:0.3em;
	color: var(--accentDarkBG);
	text-decoration: none;
}
.tePauseNext::after,
.tePauseResume::after {
    font-family:"fontello";
    content:"\E810";
    margin-inline-start:0.5em;
}

.teQuizListStart .tePauseNext::after {
    content:"\E83C";
}

/* Panel */
.teController > .panel,
.teController > .tePanel {
	position: absolute;
	bottom: calc(100% + 10px);
	z-index: 1;
	padding-block-start: 40px;
	padding-block-end: 10px;
	padding-inline-start: 15px;
	padding-inline-end: 30px;
	background-color: var(--contentBG);
	border: 1px solid var(--borderColor);
	border-radius: 10px;
	box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.5);
}
.teController > .tePanel {
    right: 0;
}

.teController > .panel::before,
.teController > .tePanel::before {
	content: "";
	height: 30px;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--accentDarkBG);
	border-radius: 10px 10px 0 0;
}

.teController > .panel > .panelLabel {
	width: 2.4em;
	background-size: auto 1.6em;
}

.teController > .panel > .panelLabel[hidden] {
	display: none !important;
}

.teController > .panel > .panelLabel:hover {
	opacity: 0.7;
}

.teController > .panel > .panelClose,
.teController > .tePanel > .teVisuallyHidden[title="Fermer la fenêtre"] {
	position: absolute;
	right: 2px;
	top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 0;
	padding-inline: 0;
	margin-block: 0;
	margin-inline: 0;
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	order: 2;
	background-color: var(--btnBG);
	border-radius: 5em;
	text-decoration: none;
}

.teController > .tePanel > .teVisuallyHidden[title="Sortir de la fenêtre"],
.teController > .tePanel > .teVisuallyHidden[title="Retour en début de fenêtre"] {
    display: none;
}

.teController > .panel > .panelClose::before,
.teController > .tePanel > .teVisuallyHidden[title="Fermer la fenêtre"]::before {
	font-family: "fontello";
	content: "\E80B";
	font-size: 80%;
	color: var(--accentDarkFG);
}

.teController > .panel > .panelClose>span,
.teController > .tePanel > .teVisuallyHidden[title="Fermer la fenêtre"]>span {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}

.teController > .panelInput {
	display: none;
}

.teController > .panelInput:not(:checked) + .panelLabel + .panel {
	width: 0;
	height: 0;
	overflow: hidden;
	margin-block: 0;
	margin-inline: 0;
	padding-block: 0;
	padding-inline: 0;
	visibility: hidden;
}

/* Boutons */
.teController button,
.teController > label {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--contentLightFG);
	position: relative;
	cursor: pointer;
}

.teController button {
	background: none;
	border: none;
	min-height: 0;
	cursor: pointer;
}

.teController button:disabled {
	opacity: 0.5;
	cursor: initial;
}

.teController>input:checked+label::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin-block:auto;
	margin-inline:auto;
	bottom: 2px;
	height: 6px;
	width: 6px;
	background-color: var(--contentLightFG);
	border-radius: 5em;
}

.teController>input[type=checkbox] {
	display: none;
}

.teController button>span,
.teController>label>span {
	width: 0;
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.teController .teSettingsPanel button {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 0.9em;
    color: var(--linkColor);
}

.teController .teSettingsPanel button[aria-pressed="false"]:hover {
    opacity: 0.7;
}

.teController .teSettingsPanel button[aria-pressed="true"] {
    pointer-events: none;
}

.teController .teSettingsPanel .tePanel>button.teVisuallyHidden {
    display: none;
}

.teController .teSettingsPanel .tePanel>button.teVisuallyHidden[title="Fermer la fenêtre"] {
    display: block;
    order: 2;
    text-align: left;
    padding-inline-start: 1em;
}
.teController .teSettingsPanel .tePanel>button.teVisuallyHidden[title="Fermer la fenêtre"]:hover {
    opacity: 0.7;
}

.teController .teSettingsPanel .tePlaybackRatesList {
    list-style: none;
    padding-inline: 0.5em 0;
}

.teController .teSettingsPanel .teSettingsList span {
    width: auto;
    height: auto;
    opacity: 1;
}

.tePlayPause::before,
.tePreviousTime::before,
.teNextTime::before,
.teMute::before,
.teAudioDesc_label::before,
.teAltMedia_label::before,
.teSubtitlesPanel_label::before,
.teTocPanel_label::before,
.teSettingsBtn::before,
.teTranscriptLink::before,
.teFullscreen::before,
.tePlaybackRatesBtn::before {
	content: "";
	display: block;
	font-family: "fontello";
	color: var(--accentDarkBG);
	font-size: 1.5em;
}
.tePlayPause:hover::before,
.tePreviousTime:hover::before,
.teNextTime:hover::before,
.teMute:hover::before,
.teAudioDesc_label:hover::before,
.teAltMedia_label:hover::before,
.teSubtitlesPanel_label:hover::before,
.teTocPanel_label:hover::before,
.teSettingsBtn:hover::before,
.teTranscriptLink:hover::before,
.teFullscreen:hover::before {
	opacity: 0.7;
}

.tePlayPause::before {
	content: "\E83C";
}

.tePlayPause[aria-pressed=true]::before {
	content: "\E83B";
}

.teContainer.teSeeking .tePlayPause::before {
	content: "\E840";
	animation: spin 2s linear infinite;
}

html[dir='ltr'] .tePreviousTime::before {
	content: "\E83D";
}
html[dir='rtl'] .tePreviousTime::before {
	content: "\E83A";
}

html[dir='ltr'] .teNextTime::before {
	content: "\E83A";
}
html[dir='rtl'] .teNextTime::before {
	content: "\E83D";
}

.teMute::before {
	content: "\E83F";
	font-size: 2em;
}

.teMute[aria-pressed=true]::before {
	content: "\E83E";
}

.teAudioDesc_label::before {
    content: "\E85A";
}

.teAltMedia_label::before {
    content: "\E83E";
}

.teSubtitlesPanel_label::before {
    content: "\E83E";
}

.teSettingsBtn::before {
    content: "\E859";
}

.teFullscreen::before {
    content: "\E85B";
}

.teTranscriptLink {
	display: flex;
	width: 2em;
	justify-content: center;
	align-items: center;
	color: var(--contentLightFG);
}

.teTranscriptLink>span {
	display: none;
}

.teVolumeArea {
	position: relative;
	display: flex;
}

ul.teSettingsList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tePlaybackRatesBtn::before {
    content: "\E85C";
}

input[type=range].teVolume {
	width: 6em;
	align-self: center;
	transform: translateX(7em) rotate(-90deg);
	transform-origin: left;
	margin-inline-start: -7em !important;
	position: absolute;
	left: 50%;
	top: -5px;
	visibility: collapse;
	opacity: 0;
	transition: visibility 0s 0.25s, opacity 0.25s 0.5s;
}

input[type=range].teSeek {
	margin-block-end: 5px;
}

input[type="range"] {
	color: var(--segmentActive);
	--thumb-height: 22px;
	--track-height: 7px;
	--track-color: var(--accentLightBG);
	--brightness-hover: 180%;
	--brightness-down: 80%;
	--clip-edges: 5px;
}

/* === range commons === */
input[type="range"] {
	position: relative;
	background: transparent;
	width: auto;
	overflow: hidden;
}

input[type="range"]:active {
	cursor: grabbing;
}

input[type="range"]:disabled {
	filter: grayscale(1);
	opacity: 0.3;
	cursor: not-allowed;
}

/* === WebKit specific styles === */
input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	transition: all ease 100ms;
	height: var(--thumb-height);
	border-radius: 5em;
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
	position: relative;
}

input[type="range"]::-webkit-slider-thumb {
	--thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
	--clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
	--clip-bottom: calc(var(--thumb-height) - var(--clip-top));
	--clip-further: calc(100% + 1px);
	--box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
		100vmax currentColor;

	width: var(--thumb-width, var(--thumb-height));
	background: linear-gradient(currentColor 0 0) scroll no-repeat left center /
		50% calc(var(--track-height) + 1px);
	background-color: currentColor;
	box-shadow: var(--box-fill);
	border-radius: var(--thumb-width, var(--thumb-height));

	filter: brightness(100%);
	clip-path: polygon(
		100% -1px,
		var(--clip-edges) -1px,
		0 var(--clip-top),
		-100vmax var(--clip-top),
		-100vmax var(--clip-bottom),
		0 var(--clip-bottom),
		var(--clip-edges) 100%,
		var(--clip-further) var(--clip-further)
	);
}

input[type="range"]:hover::-webkit-slider-thumb {
	filter: brightness(var(--brightness-hover));
	cursor: grab;
}

input[type="range"]:active::-webkit-slider-thumb {
	filter: brightness(var(--brightness-down));
	cursor: grabbing;
}

input[type="range"]::-webkit-slider-runnable-track {
	background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
		100% calc(var(--track-height) + 1px);
}

input[type="range"]:disabled::-webkit-slider-thumb {
	cursor: not-allowed;
}

/* === Firefox specific styles === */
input[type="range"],
input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb {
	appearance: none;
	transition: all ease 100ms;
	height: var(--thumb-height);
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
	background: transparent;
}

input[type="range"]::-moz-range-thumb {
	background: currentColor;
	border: 0;
	width: var(--thumb-width, var(--thumb-height));
	border-radius: var(--thumb-width, var(--thumb-height));
	cursor: grab;
}

input[type="range"]:active::-moz-range-thumb {
	cursor: grabbing;
}

input[type="range"]::-moz-range-track {
	width: 100%;
	background: var(--track-color);
}

input[type="range"]::-moz-range-progress {
	appearance: none;
	background: currentColor;
	transition-delay: 30ms;
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-progress {
	height: calc(var(--track-height) + 1px);
	border-radius: var(--track-height);
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
	filter: brightness(100%);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:hover::-moz-range-progress {
	filter: brightness(var(--brightness-hover));
}

input[type="range"]:active::-moz-range-thumb,
input[type="range"]:active::-moz-range-progress {
	filter: brightness(var(--brightness-down));
}

input[type="range"]:disabled::-moz-range-thumb {
	cursor: not-allowed;
}


.teController input[type=range]:hover,
.teController input[type=range]:focus,
.teMute:hover+input[type=range].teVolume,
.teMute.focus+input[type=range].teVolume {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s 0s, opacity 1s 0s;
}

.teSubtitlesList {
	list-style: none;
	padding-inline-start: 0;
	margin-block: 0;
	margin-inline: 0;
}

.teSubtitle_input {
	display: none;
}

.teSubtitle_input:checked+label {
	text-decoration: underline;
}

.teSubtitlesPanel {
	right: 0;
	padding-inline-end: 20px;
}

/* Toc */
.teTocPanel {
	left: 0;
	right: 0;
	width: 80%;
	margin-block: 0;
	margin-inline: auto;
}

.teTocPanel_label::before {
	content: "\E831";
	font-size: 1.2em;
}

.teToc {
	padding-inline-start: 0;
	list-style: none;
}

.teTocSegment,
.teTocSegment.teActive,
.teTocSegment.teDone{
	border-inline-start:5px solid var(--segmentUndone);
	padding-inline-start: 10px;
}
.teTocSegment.teActive{
	border-color:var(--segmentActive);
}
.teTocSegment.teDone{
	border-color:var(--segmentDone);
}

.teToc li {
	margin-block:0.3em;
	margin-inline:0;
	list-style-type: none;
}
li.teTocQuizLizt a {
    display: flex;
    gap: 5px;
}
li.teTocQuizLizt a::before {
	font-family: "fontello";
	content: "\E821";
	font-weight: normal;
}
li.teDone a {
    color: var(--contentLightFG);
}
.teActive a {
    font-weight: 900;
    color: var(--contentFG);
    cursor: default;
}
.teActive a:hover {
    opacity: 1;
}

.teToc a {
	text-decoration: none;
}

/* === STOP - RICHSTREAM ============================================= */

/* === START - RESPONSIVE DESIGN ============================================ */
@media (min-width: 1601px){
	.schResFrame{
		max-width: var(--maxWidth);
		margin-block: 0;
		margin-inline: auto;
		border-radius: 0 0 10px 10px;
	}
}
@media (max-width: 1600px){
	.schResFrame{
		max-width: initial;
	}
}
@media (max-width: 1200px){
    .default .scroller,
    .sco .scroller {
        padding-inline:1em;
    }
}
@media (max-width: 1000px) {
	.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable .ddDropCont {
		flex: 1 1 auto;
	}
	.home section.article h1{
		font-size: 2.2em;
	}
	.home.scorm #navigation,
    .home.scorm #content {
        padding-inline-start: 5vw;
    }
}
@media (max-width: 850px) {
	html {
		font-size: 0.9em;
		width: initial;
		overflow: initial;
		position: initial;
	}

	body {
		margin-block: 0;
		margin-inline: 0;
	}

	ul, ol {
	    padding-inline-start:25px;
	}

	.home #navigation ul{
		width: 20rem;
	}

	.home.scorm #navigation,
    .home.scorm #content {
        padding-inline: 1em;
        align-self: center;
    }

	.home #content .logo {
		box-shadow: none;
	}

	.home section.article .hBk_co .logo {
	    transform: initial;
	    top: 10%;
	    bottom: auto;
	    width: auto;
	}
	.home section.article .hBk_co .logo::before,
	.home section.article .hBk_co .logo::after {
	    content: none;
	}

	.default #header,
	.sco #header {
		flex: 0 0 50px;
		justify-content: space-between;
		padding-inline: 10px;
	}
	.default #header h1,
    .sco #header h1 {
		text-align: start;
	}
	.default .zen_true #header h1,
    .sco .zen_true #header h1 {
        padding-inline-start: 50px;
    }

    .default #navigation nav.pageTurner {
        border-block-start: 1px solid var(--borderColor);
        background-color: var(--contentBG);
        padding-block: 0.5em;
        padding-inline: 0.5em;
        grid-area: pageTurner;
        position: relative;
        bottom: auto;
        right: auto;
    }
    .resultPage #navigation nav.pageTurner {
        display: none;
    }
    .default #navigation ul {
        flex-direction: row;
    }
	.default #navigation li {
	    width: -webkit-fill-available;
	}
	.default #navigation a.btnNav {
        width: -webkit-fill-available;
        display: flex;
        justify-content: center;
        align-items: center;
        gap:10px;
        min-height: 30px;
	}
	.default #navigation a.btnNav::before,
	.default #navigation a.btnNav::after {
	    margin-inline:0!important;
	}
	.default #navigation a.btnNav.prev,
    .default #navigation a.btnNav.next {
        box-shadow: none;
        outline: 0;
        font-size: 120%;
    }
	.default #navigation a.btnNav.prev span,
	.default #navigation a.btnNav.next span {
	    display: initial;
	}
	.default #navigation a.btnZen{
		display: none;
	}

	.default #tools .anc_yes::before{
		content: none;
	}
	.default #tools .lbl{
		line-height: 50px;
	}

	.default #menu{
		order:3;
		height: -webkit-fill-available;
		padding-block:0;
	}
	.default #accessibility, .sco #accessibility{
		position: initial;
	}
	#accessibility li{
		display: none;
	}
	#accessibility .waiMenu{
		display: none;
	}
	#accessibility .waiMenu a {
		opacity: 1;
		height: 35px;
		width: 35px;
		color: var(--headerFG);
	}
	#accessibility .waiMenu a::before{
		font-family: "fontello";
		content:"\E831";
		font-size: 2.2em;
		display: inline-block;
	}
	#accessibility .waiMenu a span{
		display: none;
	}

	.default #document {
		order: 1;
		flex: 2 1 auto;
	}

	.default #menu .mnuSrlUpBtn,
	.default #menu .mnuSrlDwnBtn {
		width: 310px;
		height: 20px;
		padding-inline-start: 310px;
	}

	.default #toolbox{
		display:none;
		position: fixed;
		left: 0;
		top: 50px;
		right: 0;
		background-color: var(--toolboxBG);
		padding-block:0;
		flex-direction: column;
	}
	.default.menuOpen #toolbox{
		display:flex;
        z-index: 99;
	}

	.default #tools{
		height: 50px;
		width: 50px;
		right: auto;
		left: auto;
		top: auto;
		position: relative;
		order:1;
		background-color:var(--headerBG);
	}
	.default #tools .anc_yes::before{
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: var(--headerFG);
		height: 3px;
	}

	.default .schCmds{
		order:2;
	}

	.txtRes {
		grid-template-columns: auto;
	}
    .cBk_ti i.type, .pBk_ti i.type {
        font-size:1em;
    }
	.pBk_ti i.type span {
		display: none;
	}
	.cBk_ti i.type::before,
	.pBk_ti i.type::before{
		margin-block: 0;
		margin-inline: 0;
	}

	.module .installApp {
		left: auto;
		right: 4.5rem;
		top: 0.5rem;
	}

	.module .notificationPermission {
		left: auto;
		right: 4.5rem;
		top: 0.5rem;
	}

	.module.pwabutton_visible_true .notificationPermission {
		right: 7.5rem;
		left: auto;
	}

	.teMainArea {
		flex-direction: column;
	}
	.teSegmentCompls {
		display: flex;
		align-items: center;
	}

	.resInFlow.svg svg{
		max-width:100%;
	}

	.sortableLabelList {
		flex-direction: column;
		gap: 0.5em;
	}

	.sortableLabelItem{
		max-width: 100%;
		padding-inline: 0.5em;
	}

	.sortableLabelItem .sorter {
	    gap: 0.3em;
	}

	.sortableLabelItem .sorter a {
		position: static;
		transform: rotate(90deg);
		border-radius: 0%;
		font-size: 110%;
		width:2em;
		line-height: 2em;
    }

	.pairLabelList,
	.matchLabelList {
    	grid-template-columns: repeat(1, 1fr);
    	gap: 1em;
    }

	.pairTable .ddDropCatch{
		flex-direction: row-reverse;
	}
	.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable .ddDropCont {
		flex: 0 0 50%;
	}
	.home #root:before{
		transform: initial;
		background: var(--contentBG);
		background: -moz-linear-gradient(142deg, var(--homeBG) 29%, var(--contentBG) 64%);
		background: -webkit-linear-gradient(142deg, var(--homeBG) 29%, var(--contentBG) 64%);
		background: linear-gradient(142deg, var(--homeBG) 29%, var(--contentBG) 64%);
	}
	.home section.article{
		margin-block: 0;
		margin-inline: 0;
	}
	.home #content{
		flex: 2 2 auto;
	}
	.home #content, .home #navigation{
		width: auto;
		padding-block: 0.5em;
        padding-inline: 1.5em;
	}
	.home #content::before, .home #navigation::before, .home section.article .hBk_co .logo::before, .home section.article .hBk_co .logo::after{
		display: none;
	}
	.home #navigation ul{
		width: 100%;
		display: flex;
	}
	.home section.article .hBk_co,
	.home #navigation ul {
		justify-content: center;
	}
	.home section.article{
        width: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
	}
	.home section.article .hBk_co div:first-child{
		margin-inline-start: .5rem;
	}
	.home section.article .hBk_co .logo img{
		max-width: 50vw;
	}
}
@media (max-width: 700px) {
	.pairTable .ddDropContIfEmpty, .pairTable .ddBasketCont, .pairTable .ddDropCont {
		flex: 1 1 auto;
	}
}

@media (max-width: 600px) {
	.subWindow_win {
		top: 1em;
		bottom: 1em;
		left: 1em;
		right: 1em;
	}
	.pairLabelListItem{
		flex-direction: column;
		align-items: stretch;
		margin-block:1em;
		margin-inline:0.5em;
	}
	.pairLabelListItem .label{
		min-width: initial;
		margin-block:0 3px;
		margin-inline:0;
	}
	.pairLabelListItem .targets{
		min-width: initial;
	}
}

/* === STOP - RESPONSIVE DESIGN ============================================= */

/* === START - THEME PREFERENCES ============================================= */
a.themeBtn{
	height: 45px;
	padding-block: 0;
    padding-inline: 10px 20px;
	margin-block: 0;
	margin-inline: 0;
	display: flex;
	align-items: center;
	color: var(--linkColor);
	opacity: 1;
	text-decoration:none;
	justify-content: flex-end;
	background-color: transparent;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 31px;
}
a.themeBtn span{
	display:none;
}
.subWin a.themeBtn {
	display: none;
}
a.themeBtn:hover {
	opacity: 0.7;
}
a.themeBtn:before {
	font-family: "fontello";
	font-size: 1.2em;
}
a.themeBtn:after {
	display: none;
}

/* === STOP - THEME PREFERENCES ============================================= */

figure > div > img,
figure > div > a > img {
    background-color: #fff;
    border: 10px solid #fff;
}
html[data-theme='dark'] figure > div > img,
html[data-theme='dark'] figure > div > a > img {
    filter: brightness(0.7);
}

@media (prefers-color-scheme: dark) {
	a.themeBtn:before {
		content: "\E833";
	}
	html[data-theme='dark'] a.themeBtn:before{
		content: "\E833";
	}
	html[data-theme='light'] a.themeBtn:before {
		content: "\E834";
	}
}
@media (prefers-color-scheme: light) {
	a.themeBtn:before {
		content: "\E834";
	}
	html[data-theme='light'] a.themeBtn:before {
		content: "\E834";
	}
	html[data-theme='dark'] a.themeBtn:before {
		content: "\E833";
	}

}
/* === STOP - THEME PREFERENCES ============================================= */

/* === Topaze-specific styles ============================================= */
#tplFra {
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	overflow: auto;
	position: absolute;
	padding: 1em;
}

h1.subFra_ti {
	font-size: 1.6em;
	margin-block: 0 0.3em;
}

.btnQuizMde {
	display: inline-block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btnQuizMde::before {
    display: inline-block;
    font-family: "fontello";
    content: "\E860";
    font-weight: normal;
}

.btnQuizMde span {
	display: none;
}

.btnQuizMde.quizSteped::before {
	content: "\E85F";
}

.logos .logo {
	background-color: var(--accentDarkBG);
	border-radius: 5px;
	box-shadow: 0 1px 4px rgba(115, 115, 155, 0.5);
	display: inline-block;
	margin: 1em;
	padding: 2px 2px 0;
}

#main {
	z-index: auto;
  margin:0;
}

a.disabled_entry {
	color: silver;
	cursor: default;
}

a.disabled_entry:hover {
	opacity: 1;
}

.chart {
	display: initial !important;
}

.indexRequired_yes {
    border: 1px solid var(--inputBorder);
    background-color: var(--inputBG);
    border-radius: 6px;
    font-size: 1em;
    padding-block: 4px;
    padding-inline: 4px;
    margin-block: 1px;
    margin-inline: 1px;
}
.inputSize {
	padding: 2px;
}

.userVar,
.userIndex,
.inputSize {
	font-size: inherit;
	font-family: Sans-serif;
	white-space: pre;
}

.loading_true #arc>div {
	visibility: hidden;
}

.mediaWeb video {
	width: 100%;
	height: auto;
	max-width: 640px;
}

/* === START - SEARCH ======================================================= */
#schBox {
    width: 200px;
	margin-block-start: 14px;
}

div.schResFrame .schPgeBkAct_off > a.schPgeBtn {
	color: var(--schFG);
	pointer-events: none;
}

div.schResFrame a.schPgeBtn {
    color: var(--linkColor);
}

.schCmds {
	position: relative;
}

.schLabel {
	position: absolute;
	left: -9999px;
}

.schPropose {
	position: absolute;
	top: 37px;
	left: 0px;
	right: 13px;
	padding-block: 5px;
    padding-inline: 2px;
	border: 0;
	border-radius: 5px;
	background-color: var(--schBG);
	z-index: 100;
	font-size: 0.8em;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.schBtnPropose {
	display: block;
	text-decoration: none;
	color: var(--schFG);
	background-color: var(--schBG);
	padding-block: 5px;
	padding-inline: 5px;
}

.schBtnPropose:hover,
.schBtnPropose:active,
.schBtnPropose:focus{
	outline: none;
	text-decoration: none;
	background-color: var(--inputBG);
}

.schProposeExceeded {
	display: block;
	color: var(--contentLightFG);
	font-style: italic;
	padding-block: 2px;
    padding-inline: 3px;
}

.schProp_no {
	display: none;
}

.schDisplay_off .schResFrame {
	display: none;
}

form.schForm {
	display: flex;
	align-content: center;
	position: relative;
}

input.schInput {
	border: 0;
	border-radius: 5px;
	height: 16px;
	padding-block: 10px;
    padding-inline-start: 10px;
    padding-inline-end: 30px;
	flex: 1 1 auto;
	background-color: var(--schBG);
	color: var(--schFG);
	font-size: 0.8em;
}
input.schInput:focus{
	outline: 1px solid var(--inputFocus);
}

input.schBtnLaunch {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: transparent;
	position: absolute;
	top: 0;
	bottom: 0;
	margin-block:auto;
	margin-inline:auto;
	border: none;
	cursor: pointer;
	background-color: var(--schFG);
	padding-block: 0;
	padding-inline: 0;
	width: 20px;
	height: 100%;
	-webkit-mask-image:url("../img/search/find.svg");
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
}
html[dir='ltr'] input.schBtnLaunch {
    right: 20px;
}
html[dir='rtl'] input.schBtnLaunch {
    left: 20px;
}
input.schBtnLaunch::hover{
	background-color: var(--accentDarkBG);
}

.schCmds_act input.schInput {
	border: 1px solid var(--accentDarkBG);
}

.schResults .schPgeBk .schPgeBtn span.schPgeRank,
.schResults .mnu_sch_yes .mnu_lnk span.schPgeRank {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: -moz-available;
    width: -webkit-fill-available;
    background-color: var(--accentDarkBG);
	-webkit-mask-image: url("../img/search/schPgeRank.svg");
	-webkit-mask-repeat: no-repeat;
}
html[dir='ltr'] .schResults .schPgeBk .schPgeBtn span.schPgeRank,
html[dir='ltr'] .schResults .mnu_sch_yes .mnu_lnk span.schPgeRank {
    -webkit-mask-position: right center;
}
html[dir='rtl'] .schResults .schPgeBk .schPgeBtn span.schPgeRank,
html[dir='rtl'] .schResults .mnu_sch_yes .mnu_lnk span.schPgeRank {
    -webkit-mask-position: left center;
}

.schResults .schNoRes {
	text-align: center;
	font-size: 1.5em;
	margin-block-start: 18px;
}

.schResults .mnu_sch,
.schResults .schPgeBtn>span:not(.schPgeRank) {
	display: block;
	background-color: var(--schBG);
    width: -webkit-fill-available;
    z-index: 10;
}

.schResults .schPgeRank_1 .mnu_sch,
.schResults .schPgeRank_1 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 9px;
}

.schResults .schPgeRank_2 .mnu_sch,
.schResults .schPgeRank_2 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 23px;
}

.schResults .schPgeRank_3 .mnu_sch,
.schResults .schPgeRank_3 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 37px;
}

.schResults .schPgeRank_4 .mnu_sch,
.schResults .schPgeRank_4 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 51px;
}

.schResults .schPgeRank_5 .mnu_sch,
.schResults .schPgeRank_5 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 64px;
}

.schResults .schPgeRank_6 .mnu_sch,
.schResults .schPgeRank_6 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 79px;
}

.schResults .schPgeRank_7 .mnu_sch,
.schResults .schPgeRank_7 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 92px;
}

.schResults .schPgeRank_8 .mnu_sch,
.schResults .schPgeRank_8 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 106px;
}

.schResults .schPgeRank_9 .mnu_sch,
.schResults .schPgeRank_9 .schPgeBtn>span:not(.schPgeRank) {
	margin-inline-end: 120px;
}

.schResFrame {
	position: fixed;
	left: 50%;
	transform: translate(-50%);
	width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
	max-width: var(--maxWidth);
	color: var(--schFG);
	background-color: var(--schLightBG);
	height: 58px;
	transition: all 0.3s ease-in;
	z-index: 91;
	border-radius
}

.schDisplay_on .schResFrame {
	top: 65px;
}

.schDisplayList_on .schResFrame {
	height: 320px;
}

.schResFrame a {
	color: var(--schFG);
}

.schResList {
	position: absolute;
	bottom: 10px;
	left: 10px;
	top: 10px;
	right: 10px;
	display: none;
}

.schDisplayList_on .schResList {
	display: block;
}

.schResListSrl {
	position: absolute;
	top: 42px;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: auto;
	background-color: var(--schBG);
	padding-block: 5px;
	padding-inline: 5px;
}

.schResults a {
	margin-block:0;
	margin-inline:5px;
}
a.schParentBtn {
    text-decoration: none;
}

.schBtnTgle {
	display: block;
	position: absolute;
	top: 14px;
	left: 6px;
	z-index: 1;
	text-decoration: none;
}

.schDisplayList_on .schBtnTgle::before {
	font-family:"fontello";
	content: "\E836";
}
.schDisplayList_off .schBtnTgle::before {
	font-family:"fontello";
	content: "\E835";
}

.schBtnTgle span {
	display: none;
}

.schBtnReset {
	display: block;
	position: absolute;
	top: 14px;
	right: 6px;
	text-decoration: none;
}
.schBtnReset::before {
	font-family:"fontello";
	content: "\E857";
}

.schBtnReset span {
	display: none;
}

.schHitBox,
.schResBox,
.schPageBox {
	text-align: center;
	margin-block:4px 0;
	margin-inline:45px;
}

.schHitBox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.schPageBox {
	position: absolute;
	top: 22px;
	left: 45px;
	right: 0;
	margin-inline-start: 0;
	z-index: 0;
}

.schResList > .schLbl {
    text-align: center;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
}

.schDisplay_none .schResBox {
	text-align: center;
	margin-block:20px 6px;
	margin-inline:200px;
}

.schDisplay_none .schHitBox {
	display: none;
}

.schBtnNxt,
.schBtnPrv,
.schBtnPrvHit,
.schBtnNxtHit {
	position: absolute;
	display: block;
	z-index: 1;
}

.schBtnAct_no,
.schBtnHitAct_no {
	display: none;
}

.schBtnNxt span,
.schBtnPrv span,
.schBtnPrvHit span,
.schBtnNxtHit span {
	display: none;
}

.schDisplay_none .schBtnNxt,
.schDisplay_none .schBtnPrv,
.schDisplay_none .schBtnPrvHit,
.schDisplay_none .schBtnNxtHit {
	display: none;
}

.schDisplay_one .schBtnNxt,
.schDisplay_one .schBtnPrv {
	display: none;
}

.schBtnNxt::before {
	display: inline-block;
	font-family:"fontello";
	content: "\E810";
}

.schBtnPrv::before {
	display: inline-block;
	font-family:"fontello";
	content: "\E80F";
}

.schBtnNxtHit::before {
	display: inline-block;
	font-family:"fontello";
	content: "\E810";
}

.schBtnPrvHit::before {
	display: inline-block;
	font-family:"fontello";
	content: "\E80F";
}

.schBtnPrvHit {
	top: 10px;
	left: 0;
}

.schBtnNxtHit {
	top: 10px;
	right: 5px;
}

.schBtnPrv {
	right: 57px;
	bottom: 0;
}

.schBtnNxt {
	right: 5px;
	bottom: 0;
}

.schPgeBk .mnu_lnk span {
	display: block;
    position: relative;
    z-index: 5;
}

.schResults span.schPgeRank span {
	position: absolute;
	left: -10000px;
}

.schResults a.schPgeBtn,
.schResults a.mnu_lnk {
	display: flex;
	text-decoration: none;
}
.schResults .mnu_sel_yes .schPgeBtn,
.mnu_sel_yes a.schParentBtn {
    font-weight: 900;
}
.schResults .mnu_sel_yes .schPgeBtn:hover,
.mnu_sel_yes a.schParentBtn:hover {
    cursor: default;
    text-decoration: none;
    opacity: 1;
}

.schResults li.mnu_b .schPgeBtn,
.schResults .mnu_sel_yes .mnu_lnk {
	cursor: default;
	padding-inline-start: 20px;
}

.schResults .mnu_sch_no a.mnu_lnk {
	color: var(--schFG);
	background-color: var(--schBG);
	text-decoration: none;
	padding-block: 0;
    padding-inline: 5px;
	border-radius: 5px;
	position: relative;
}

.schResults .mnu_sch_no a.mnu_lnk:hover {
	cursor: default;

}

.schResults a.mnu_tgle_o,
.schResults a.mnu_tgle_c {
	position: absolute;
	width: 11px;
	height: 11px;
	display: inline-block;
	font-size: 75%;
	margin-block-start: -21px;
	margin-inline-start: -17px;
	font-family: "fontello";
	text-decoration:none;
}
.schResults a.mnu_tgle_c::before{
    content: "\E810";
}
.schResults a.mnu_tgle_o::before{
    content: "\E819";
}

.schResults a.mnu_tgle_o span,
.schResults a.mnu_tgle_c span {
	display: none;
}

.schResListSrl ul.mnu_root {
	padding-block: 0;
    padding-inline-start: 20px;
    padding-inline-end: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.schResListSrl li.mnu_b {
	list-style-type: none;
	margin-block: 0;
	margin-inline: 0;
}

.schResListSrl ul {
	margin-block: 0;
	margin-inline: 0;
	list-style: none;
	padding-inline-start: 20px;
}

.schResListSrl ul.schParentList {
	list-style-type: none;
}

.schResListSrl ul.schParentList_c {
	display: none;
}

.schResListSrl ul.schParentList_o {
	display: flex;
    flex-direction: column;
    gap: 3px;
    margin-block-end: 0.3em;
}

li.schPgeBk {
	position: relative;
}

a.schParent_tgle_c,
a.schParent_tgle_o {
	position: absolute;
	margin-block:auto;
	margin-inline:auto;
	top: 0;
	bottom: 0;
	width: 1em;
	height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index:5;
}
a.schParent_tgle_c::before,
a.schParent_tgle_o::before {
    font-family: "fontello";
	display: inline-block;
	font-size: 1em;
}
a.schParent_tgle_c::before {content:"\E80E";}
a.schParent_tgle_o::before {content:"\E825";}

a.schParent_tgle_c span,
a.schParent_tgle_o span {
	display: none;
}

.schParent_tgle_c:hover,
.schParent_tgle_o:hover {
	text-decoration: none;
	color: var(--contentLightFG);
}

.schResults .schPgeBk.mnu_sel_no .schPgeBtn:hover,
.schResults li.mnu_sch_yes div.mnu_sel_no .mnu_lnk:hover,
.mnu_sel_no a.schParentBtn:hover {
	opacity: 0.9;
	cursor: pointer;
	text-decoration: underline;
}

.schResults .mnu_sel_yes .mnu_lnk:hover {
	text-decoration: none;
}

.schResCnt,
.schHitCnt {
	display: inline-block;
	min-width: 40px;
	text-align: center;
	margin-inline: 10px;
}

.schDisplay_none .schResCnt,
.schDisplay_one .schResCnt {
	display: none;
}

.schHit {
	background-color: var(--schLightBG);
	color: var(--schFG);
	border-radius: 3px;
}

.schHit_current {
	background-color: var(--schCurrentBG);
	color: var(--schFG);
	border-radius: 3px;
}

.schTerm {
	font-weight: bold;
}

.schTerm em {
	font-weight: normal;
}

.schDisplay_on #menu ul.mnu_root .mnu_sch_no>a:hover {
	text-decoration: none;
}

.schDisplay_on #menu ul.mnu_root .mnu_sch_no>a.mnu_lnk {
	color: #BBB;
	cursor: default;
}

.tplSchBox {
	position: relative;
	z-index: 2;
}

/* === STOP - SEARCH ======================================================== */

/*=== DEFAULT LAYOUT - TOOLS MENU ============================================*/
.default #tools {
	position: absolute;
	top:0;
	inset-inline-start:0;
	width:60px;
	z-index:2;
	bottom:20px;
}
.default #tools ul.toolcase {
    margin-block-start: 82px;
}

.default #tools li.search{
	position:absolute;
	top:0;
	inset-inline-start:60px;
	display: flex;
    align-items: center;
}

.default #tools .btnTool > span {
    position: absolute;
    left: -9999px;
}

.default #tools .btnTool::before {
    font-family: "fontello";
    display: inline-block;
    font-size: 20px;
}

.default #tools .btnOut::before {content: "\E843";}
.default #tools .btnMap::before {content: "\E85E";}
.default #tools .btnBib::before {content: "\E848";}
.default #tools .btnGlos::before {content: "\E84B";}
.default #tools .btnAcr::before {content: "\E847";}
.default #tools .btnCredits::before {content: "\E854";}
.default #tools .btnDocs::before {content: "\E812";}
.default #tools .btnSynthesis::before {content: "\E81F";}
.default #tools .btnRef::before {content: "\E84B";}
.default #tools .btnNome::before {content: "\E826";}
.default #tools .btnBack::before {content: "\E817";}
.btnNav.btnNext::after {
    font-family: "fontello";
    display: inline-block;
    content: "\E818";
}

/*	=== START - VISUAL MAP ================================================ */
.visualMap {
	transform-style: preserve-3d;
	z-index: 2;
}

.subFra_co .visualMap_img {
	left: 50% !important;
	transform: translateX(-50%);
}

.zoomMap_over {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.6;
	background: #000000;
}

.zoomMapBtn {
	position: absolute;
	inset-block-start: -32px;
	inset-inline-end: 0;
}
.zoomMapBtn::before {
	font-family: "fontello";
	display: inline-block;
	content: "\E85B";
	font-size: 1em;
}

.zoomMapBtn span {
	display: none;
}

.zoomMapBtn.zoom_true::before {
	content: "\E80B";
}

a.zoomMapBtn:hover {
	opacity: 0.7;
}
/*	=== STOP - VISUAL MAP ================================================ */

/*	=== START - MENU MOBILE ================================================ */
#tools a.btnZen {
	height: 30px;
	position: absolute;
	width: 30px;
	opacity: 1;
	top: 17px;
	inset-inline-start: 15px;
	text-decoration: none;
}

#tools a.btnZen:hover {
    opacity: 0.8;
}

#tools a.btnZen::before {
    font-family: "fontello";
    display: inline-block;
    font-size: 28px;
}

.zen_false #tools a.btnZen::before{content: "\E816";}
.zen_true #tools a.btnZen::before{content: "\E815";}

#tools a.btnZen span {
	display: none;
}

#root.zen_true #tools ul {
	display: none;
}

.default .zen_false #content {
	margin-inline-start: 60px;
}

/*	=== STOP - MENU MOBILE ================================================ */

/* === START - PLAN ================================================ */
.outlineFra {
	padding: 1em;
}

.outlineFra .subFra_co {
	display: -webkit-flex;
	display: flex;
	flex-flow: row nowrap;
	-webkit-flex-flow: row;
}

div#mnuFra {
	font-size: 18px;
	-webkit-flex: 2 1 auto;
	flex: 1 1 auto;
}

div.progFra {
	margin: 20px;
	display: flex;
    justify-content: flex-end;
	flex: 1 1 auto;
}
div.progFra span.progInd{
	width:160px;
	height:160px;
	background: transparent url(../img/prog/0.svg) no-repeat right 0 / 160px auto;
	display: inline-block;
}
}
div.progFra.prog-10 span.progInd{
	background-image: url(../img/prog/10.svg);
}
div.progFra.prog-20 span.progInd{
	background-image: url(../img/prog/20.svg);
}
div.progFra.prog-30 span.progInd{
	background-image: url(../img/prog/30.svg);
}
div.progFra.prog-40 span.progInd{
	background-image: url(../img/prog/40.svg);
}
div.progFra.prog-50 span.progInd{
	background-image: url(../img/prog/50.svg);
}
div.progFra.prog-60 span.progInd{
	background-image: url(../img/prog/60.svg);
}
div.progFra.prog-70 span.progInd{
	background-image: url(../img/prog/70.svg);
}
div.progFra.prog-80 span.progInd{
	background-image: url(../img/prog/80.svg);
}
div.progFra.prog-90 span.progInd{
	background-image: url(../img/prog/90.svg);
}
div.progFra.prog-100 span.progInd{
	background-image: url(../img/prog/100.svg);
}

div#mnuFra ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	padding: 0;
}

div#mnuFra ul ul {
	padding-inline-start: 1em;
}

div#mnuFra a {
	color: var(--linkColor);
	text-decoration: none;
}

div#mnuFra a.disabled_entry {
	opacity: 0.4;
	cursor: default;
}

map area.disabled_entry {
	cursor: default;
}

div#mnuFra a.disabled_entry:hover {
	text-decoration: none;
}

/* === STOP - PLAN ================================================ */

/*=== START - STEPTOOLS ===============================================*/
.navNode.default .stepTools {
	display: none;
}
.default .stepTools{
	flex: 0 0 var(--menuWidth);
	background-color: var(--accentLightBG);
	position: relative;
	display: flex;
	flex-direction: column;
	padding-block: 0.5em;
}

.default .stepTools #arc {
	flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	order: 3;
	padding-inline: 1em;
	text-align: end;
}

.default .stepTools #arc .arcBk_ti {
	text-align: end;
	font-size: 1.3em;
	margin-block: 0.5em;
}

.default .stepTools #arc .arcList {
	list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.default .stepTools .required_index {
	flex: 0 0 auto;
	order: 2;
}

.default .stepTools .required_index > p {
	color: var(--pBkComplement);
	text-align: center;
}

.default .stepTools .countDownBk {
	order: 3;
	text-align: center;
	width: 300px;
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
}

.default .stepTools .countDownImg {
	order: 4;
	text-align: center;
	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	margin: 0.5em 0;
}

.coach {
	flex: 0 0 auto;
	margin: 1em;
	text-align: center;
	order: 1;
}

/* STEPTOOLS - NAVIGATION BUTTONS	*/
.default .stepTools #arc,
.default .stepTools #arc #gotoLastLocation {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.default .stepTools #arc a {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-style: normal;
    width: fit-content;
	color: var(--accentDarkFG);
	padding-block: 0.5em;
    padding-inline: 0.9em;
	background-color: var(--linkColor);
	border-radius: 0.5em;
	text-decoration: none;
	font-size: 1em;
	transition: all .1s ease-out;
}
.home.fileProtocol .stepTools #arc a.btnStart{
	display: none;
}

.default .stepTools #arc a::after {
	font-family: "fontello";
	display: inline-block;
}

.default .stepTools #arc a.btnStart::after {content: "\E83C";}
.default .stepTools #arc a.btnLast::after {content: "\E83A";}
.default .stepTools #arc a.btnReset::after {content: "\E832";}
.default .stepTools #arc a.btnPlan::after {content: "\E843";}
.default .stepTools #arc a.btnValid::after {content: "\E853";}
.default .stepTools #arc a.btnImage::after {content: "\E812";}

.default .stepTools #arc a:hover {
	opacity: 0.7;
}

.default .stepTools #arc a span .imgTransWTitle {
	display: block;
	padding: 10px;
}

.default .stepTools .stepToolsBtn {
	display: none;
	background: url(../img/search/schBtn.svg) no-repeat;
	background-size: 100%;
	background-position: 0 -27px;
	width: 26px;
	height: 27px;
	position: absolute;
	top: 15px;
	inset-inline-start: 15px;
	z-index: 1;
}

.default .stepTools .stepToolsBtn.closedBarBtn {
	background-position: 0 0;
}

.default .stepTools .stepToolsBtn span {
	display: none;
}

/*=== STOP - STEPTOOLS ===============================================*/


/* === START - COUNTDOWN ================================================ */
.countDownBk {
	font-family: "Digit", monospace;
	color: #ffffff;
	-webkit-transition: opacity 0.5s ease-in-out;
	/* transition pour Chrome et Safari */
	-moz-transition: opacity 0.5s ease-in-out;
	/* transition pour Firefox */
	-o-transition: opacity 0.5s ease-in-out;
	/* transition pour Opéra */
	transition: opacity 0.5s ease-in-out;
}

.countDownBk.top {
	position: absolute;
	top: 0;
	inset-inline-start: 270px;
	line-height: 55px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.progressBar.countDownBk.top {
	line-height: 35px;
}

.zen_true .countDownBk.top {
	inset-inline-start: 70px;
}

.discreet,
.progressive {
	font-size: 16px;
	text-shadow: 0 0 1px;
}

.loud {
	font-size: 38px;
	text-shadow: 0 0 2px;
}

.display_no {
	opacity: 0;
}

.display_yes {
	opacity: 1;
}

.progressBar .countDownDiv {
	font-size: 15px;
	color: #fff
}

.progressBar .progress {
	display: block;
	padding: 1px;
	border: 0 none;
	background-color: #f7f7f7;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
	height: 12px;
	color: #aaa;
	width: 200px;
	margin: 0.5em auto 0;
}

.progressBar.top .progress,
.progressBar.top {
	width: 350px;
}

.progressBar .progress::after {
	content: "";
	display: block;
	height: 12px;
	width: var(--width, 0);
	background: #fff;
	background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, .4) 33%, rgba(0, 0, 0, .4) 66%, transparent 66%);
	border-radius: 2px;
	background-size: 35px 20px, 100% 100%, 100% 100%;
	animation: animate-stripes 5s linear infinite;
	border-inline-end: 1px solid;
}

@keyframes animate-stripes {
	100% {
		background-position: -100px 0px;
	}
}


/* === STOP - COUNTDOWN ================================================ */

/* === START - MENU OPALE ============================================== */
.uePage nav#menu {
	background-color: var(--accentLightBG);
	display: flex;
	position: relative;
	flex: 0 0 auto;
	order: 1;
}

.uePage #content {
	order: 2;
}

.uePage .zen_false #content,
.uePage #content {
	margin-inline-start: 20px;
}

.uePage .zen_false nav#menu,
.uePage.spiderMode .zen_false #content {
	margin-inline-start: 60px;
}

.uePage .stepTools {
	order: 3;
}

.uePage #tplMnu {
	display: flex;
	flex: 2 1 auto;
	justify-content: center;
	border-inline-end: 1px solid var(--accentDarkBG);
}

.tplMnuOn {
	width: var(--menuWidth);
}

.uePage #tplMnuCo {
	padding: 1em;
}

.uePage #tplMnu .ueMnuSrlUpBtn,
.uePage #tplMnu .ueMnuSrlDwnBtn {
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
	width: calc(var(--menuWidth, 300px) - 20px);
	height: calc(var(--menuWidth, 300px) / 15);
	padding-inline-start: calc(var(--menuWidth, 300px) - 20px);
	overflow: hidden;
	background: url(../img/tpl/menu-scroller.svg) no-repeat top;
	background-size: 100%;
}

.uePage #tplMnu .ueMnuSrlDwnBtn {
	transform: rotate(180deg);
}

.uePage #tplMnu ul ul {
	padding: 0 10px;
}

.uePage #tplMnu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.uePage #tplMnu #tplMnuScroll>ul>li {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.uePage #tplMnu #tplMnuScroll li {
	background-image: linear-gradient(to right, var(--accentDarkBG) var(--borderGradient), rgba(0, 0, 0, 0) 100%);
	background-size: 100% 1px;
	background-position: bottom;
	background-repeat: no-repeat;
}

.uePage #tplMnu #tplMnuScroll a {
	color: black;
	text-decoration: none;
	display: block;
	margin-bottom: 3px;
}

.uePage #tplMnu #tplMnuScroll span {
	display: inline-block;
	margin-bottom: 3px;
}

.uePage #tplMnu #tplMnuScroll .mnu_sel_yes {
	background-color: var(--accentDarkBG);
	color: white;
	border-radius: 5px;
	padding: 2px 5px;
}

.btnMnuTglOn,
.btnMnuTglOff {
	background: transparent url("../img/tpl/mnuTgle.svg") no-repeat scroll 0 0 / 35px auto;
	display: block;
	height: 35px;
	inset-inline-end: -20px;
	position: absolute;
	top: 40%;
	width: 20px;
}

.btnMnuTglOn {
	background-position: 0 -41px;
}

.btnMnuTglOn span,
.btnMnuTglOff span {
	display: none;
}

/* === END - MENU OPALE =============================================== */

/* === START - MEDIANODE ==================================================== */
.default.mediaNode #main {
	display: block;
	position: relative;
}

.default.mediaNode .zen_false #main {
	margin-inline-start: 60px;
}

.default.mediaNode #content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.default.mediaNode .zen_false #content {
	margin-inline-start: 0;
}

.default.mediaNode .scroller {
	padding: 0;
}

.default.mediaNode .nodeBk_ti {
	visibility: hidden;
}

.default.mediaNode .background {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: black;
}

.default.mediaNode .background .tePlayer {
	width: auto;
	position: static;
}

.default.mediaNode .background .tepMainArea {
	width: auto;
	position: static;
}

.default.mediaNode .tePlayer.teVideoType video,
.default.mediaNode .tePlayer.teVideoType mediaelementwrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
}

.default.mediaNode .stepTools {
	position: absolute;
	bottom: 2em;
	left: 1em;
	right: 1em;
	display: none;
	background-color: transparent;
}

.default.mediaNode_showArc .stepTools {
	display: inherit;
}

.default.mediaNode .stepTools #arc {
	text-align: inherit;
	padding: 0;
	font-size: 105%;
}

.default.mediaNode div.focusImage.right {
	text-align: end;
}

.default.mediaNode div.focusImage.left {
	text-align: start;
}

.default.mediaNode div.focusImage.center {
	text-align: center;
}

.default.mediaNode .arcBk_ti {
	display: none;
}

.default.mediaNode .arcBk_co {
	display: flex;
	flex-direction: column;
}

.default.mediaNode .mcqArc .arcBk_co {
	align-items: center;
}

.default.mediaNode .arcBk_co p {
	margin: 1.2em;
}

.default.mediaNode .arcIntro,
.mcqArc {
	background-color: rgba(255, 255, 255, 0.8);
	margin: 0 1.2em;
}

.default.mediaNode .arcList {
	display: flex;
	padding: 0;
	min-width: 0;
}

.default.mediaNode .arcList>li {
	flex: 1 1 auto;
	background-color: rgba(255, 255, 255, 0.8);
	margin: 1.2em 1.2em 0 1.2em;
	padding: 1.2em;
	text-align: center;
}

.default.mediaNode .unaryArc .arcBk_co>div {
	background-color: rgba(255, 255, 255, 0.8);
	margin: 1.2em 1.2em 0 1.2em;
	padding: 1.2em;
	text-align: center;
}

/* === STOP - MEDIANODE ===================================================== */

/* === START - CREDITS ================================================ */
.resCredits .cc-button {
	vertical-align: top;
}

.crResTt {
	position: absolute;
	height: 250px;
	overflow: hidden;
}

.idxFra {
    border-inline-start: 1px solid var(--accentDarkBG);
    padding-inline-start: 10px;
}

.idxEntryTi {
    font-size: 1.2em;
    color: var(--contentFG);
    margin-block: 15px 7px;
    margin-inline: 0;
    font-style: normal;
    font-weight: 500;
}

.idxEntryCallers {
	display: flex;
	font-style: italic;
	margin-top: 0.2rem;
	font-weight: 600;
}

.idxEntryCaller {
	margin-inline-start: 0.3rem;
	font-weight: 300;
}

.idxEntryCaller a:not(:last-child):after {
	content: ", ";
}

/* === STOP - CREDITS ================================================ */

/* === START - TIME ALERT ============================================ */
.sessionTimeAlert_hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.7;
	z-index: 9999;
}

.sessionTimeAlert_co {
	background: var(--accentLightBG) url("../img/tpl/inactivite.svg") no-repeat scroll center center / 180px auto;
	border: 2px solid var(--accentDarkBG);
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0 0 15px #222;
	color: var(--contentEmp);
	display: table;
	font-size: 1.8em;
	height: 200px;
	left: 50%;
	margin-left: -175px;
	margin-top: -100px;
	padding: 10px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 350px;
	z-index: 10000;
}

.sessionTimeAlert_co div {
	margin-top: 52px;
}

/* === STOP - TIME ALERT ============================================= */


/* === START - RESPONSIVE DESIGN ===================================== */
.mediaWeb .resInFlow_co {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.mediaWeb iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* tablets - portrait */
@media (max-width: 900px) {
	.coach img {
		max-height: 60px;
		width: auto;
	}

	body {
		font-size: 0.8em;
	}

	.subWindow_win {
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
	}

	.pBk .type span,
	.stepToolsHide_true .arcBk_co {
		display: none;
	}

	.loud {
		font-size: 16px;
	}

	.countDownBk.top {
		inset-inline-start: 230px;
	}

	#tools a.btnZen {
		display: inline;
		width: 25px;
		height: 25px;
		top: 13px;
		inset-inline-start: 11px;
	}
	#tools a.btnZen::before {
	    font-size: 25px;
	}

	.default #tools {
	    width: 50px;
	}

    .default #tools ul {
        padding-inline-start: 0;
        width: 50px;
    }

    .default #tools ul.toolcase {
        margin-block-start: 68px;
    }
	.default #tools .btnTool {
        width: 35px;
        height: 35px;
	}
	.default #tools .btnTool::before {
	    font-size: 18px;
	}

	.outlineFra .subFra_co {
		flex-flow: column nowrap;
		text-align: center;
	}

	div.progFra {
	    justify-content: center;
	}

	.default.topaze .stepTools .stepToolsBtn,
	.default.uePage .stepTools .stepToolsBtn {
		display: initial;
	}

	.default #main {
	    flex-flow: column;
	}

	.default #main .stepTools {
		flex: 0 0 auto;
	}

	.default .zen_false main .stepTools,
	.default .zen_false #main #menu,
	.uePage .zen_false #content {
		margin-inline-start: 50px;
	}

    .default #tools li.search {
        height: 50px;
    }

    #schBox {
        width: auto;
        margin: 0;
    }

	input.schInput {
		width: 100px;
		font-size: 1em;
        height: auto;
        padding-block: 7px;
	}

    input.schBtnLaunch {
        width: 15px;
    }
	html[dir='ltr'] input.schBtnLaunch {
	    right: 5px;
	}
	html[dir='rtl'] input.schBtnLaunch {
        left: 5px;
    }

	.default .zen_false #header h1,
	.sco .zen_false #header h1 {
		padding-inline-start: 200px;
		font-size: 1.2em;
	}

	#tplMnu {
		border-inline-end: none;
	}

	.uePage #content,
	.uePage nav#menu,
	.uePage .stepTools {
		order: 0;
	}

	.uePage #content {
		margin-inline-start: 0;
	}

	.schResFrame {
        left: 0;
        right: 0;
        transform: none;
        bottom: -100px;
	}

	.schDisplay_on .schResFrame {
	    top: auto;
	    bottom: 31px;
	}

	.schPropose {
	    top: 29px;
	}

	.schDisplayList_on .schBtnTgle::before {
	    content: "\E835";
	}
    .schDisplayList_off .schBtnTgle::before {
        content: "\E836";
    }

	.btnMnuTglOn,
	.btnMnuTglOff {
		background-position: 0 -87px;
		height: 20px;
		inset-inline-end: 40%;
		top: -20px;
		width: 35px;
	}

	.btnMnuTglOn {
		background-position: 0 -117px;
	}

	.uePage #tplMnu {
		border-inline-end: none;
		border-top: 1px solid var(--accentDarkBG);
	}
}

@media (max-width:600px) {
	.default .stepTools #arc,
	.default .stepTools #arc #gotoLastLocation {
	    align-items: center;
	}

	.default.mediaNode .arcList {
		flex-direction: column;
	}
}

@media (max-width: 500px) {
	.default .isCountDown_true #header {
		flex: 0 0 110px;
	}

	.default .isCountDown_true #header,
	.sco .isCountDown_true #header {
		background-size: 100% 120px;
	}

	.default .isCountDown_true #header h1,
	.sco .isCountDown_true #header h1 {
		padding-top: 50px;
	}

	.default .isCountDown_true #tools ul.toolcase {
		margin-top: 120px;
	}
}