pre.xdebug-var-dump {font-size: 11px;}
*
{
margin: 0px;
padding: 0px;
outline: none;
}
html
{
overflow-x: hidden;
overflow-y: auto;
}
a, a:hover, a:focus, a:active {text-decoration: none; cursor: pointer;}
a img, a:hover img, a:focus img, a:active img {border: none;}
a:active {background: transparent;}
ul, li {margin: 0; padding: 0;}
q {quotes: "«" "»";}
mark {background: transparent; color: inherit;}
table {border-spacing: 0;}
button, input, textarea, select {background: transparent; border: solid; color: inherit; font: inherit;}
button:hover, *[type=submit] {cursor: pointer;}
button::-moz-focus-inner {border: 0;}
details summary {font: inherit; text-transform: inherit;}
hr
{
height: 1px;
border: none;
}

/* Acronyme */
abbr {cursor: help}
[data-cote=h]:before, [data-cote=g]:before, [data-cote=d]:after
{
content: attr(data-icone);
vertical-align: -0.1em;
font-family: Icones;
font-size: 1em;
font-weight: 400;
text-transform: none;
}
[data-cote=h]:before
{
display: block;
vertical-align: baseline;
margin-bottom: 0.15em;
font-size: 3em;
}
[data-cote=g]:before {margin-right: 0.5em;}
[data-cote=d]:after {margin-left: 0.5em;}

/* Icone */
i
{
display: inline-block;
position: relative;
font-family: Icones;
font-style: normal;
font-weight: normal;
text-transform: lowercase;
}

/* Grab */
.grab
{
cursor: -webkit-grab;
cursor: -ms-grab;
cursor: grab;
}
.grab:active
{
cursor: -webkit-grabbing;
cursor: -ms-grabbing;
cursor: grabbing;
}

/* Flèche de défilement */
#defile
{
--hauteur: 15vh;
z-index: 2;
position: absolute;
overflow: hidden;
width: 100%;
height: var(--hauteur);
left: 0;
bottom: 0;
background: linear-gradient(to top, var(--ombre), transparent);
border: none;
}
#defile span
{
display: block;
width: calc(var(--hauteur) / 6);
height: calc(var(--hauteur) / 6);
margin: auto;
margin-top: calc((var(--hauteur) / 6) * -1);
border-right: calc(var(--hauteur) / 10) solid var(--couleur);
border-bottom: calc(var(--hauteur) / 10) solid var(--couleur);
transform: rotate(45deg);
animation: defile 0.5s infinite alternate;
}
#defile.off
{
opacity: 0;
height: 0vh;
transition: opacity 0.5s, height 1s;
}
@keyframes defile {
	from {transform: translateY(0vh) rotate(45deg);}
	to {transform: translateY(calc(var(--hauteur) / 7.5)) rotate(45deg);}
}