/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
*, *::before, *::after {
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


.nav {
    z-index: 100;
    position: relative;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    padding: 0.41em;
    /* background: linear-gradient(135deg, #1B1A1D 0%, #2B2B2D 70%, #353536 100%); */
    transition: background 0.3s ease;
}

.nav__lien {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0.80em;
    box-sizing: border-box;
    margin-bottom: 15px;
    text-decoration: none;
}

.nav__categorie {
    width: 100%;
    box-sizing: border-box;
    color: white;
    margin-bottom: 15px;

    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.categorie__titre {
    font-size: 12px;
    padding: 14px;
    padding-bottom: 7px;
    color: rgb(163, 163, 163);
}

.categorie__liste {
    list-style: none;
}

.lien__titre, .lien__svg, .el__lien {
    color: white;
    fill: white;
    text-decoration: none;
}
.lien__titre {
    margin-top: 2px;
    font-size: 28px;
    margin-left: 0.47em;

    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.liste__el {
    width: 100%;
    margin-bottom: 0.41em;
}

.el__lien {
    border-radius: 3px;
    place-self: baseline;
    justify-self: center;
    align-self: center;
    display: block;
    width: 100%;
    padding: 0.51em 0.80em;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.el__lien:hover {
    background-color: #618930;
}

.el__lien::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #88c131, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.el__lien:hover::after {
    transform: scaleX(1);
}

.el__lien.active {
    background-color: #618930;
    color: white;
}

.el__lien.active::after {
    transform: scaleX(1);
}

.bw {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


::-webkit-scrollbar {
    width: 10px;
}
  

::-webkit-scrollbar-track {
    background: #141316;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #618930, #88c131);
    border-radius: 3px;
    width: 10px;
    transition: background 0.3s ease;
}


::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #88c131, #618930);
}

.footer {
    color: #618930;
    font-size: 12px;
    gap: 1em;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    text-align: center;
    z-index: 100;
}

.footer__lien {
    color: #618930;
    text-decoration: underline;
}

.footer__lien:hover {
    color: #88c131;
}