.cmd, .cmd span:not(.fas):not(.far):not(.fa), .terminal, .terminal-output> :not(.raw), .terminal-output> :not(.raw) a, .terminal-output> :not(.raw) span:not(.fas):not(.far):not(.fa) {
    font-size: calc(var(--size, 1) * 16px) !important;
    scrollbar-color: var(--color, #01A6FF) var(--background, #000) !important;
    scrollbar-width: thin !important;
    /*overflow-y: visible !important;*/
    scrollbar-gutter: auto !important;
}
/* Préserver les lignes longues de l'art ASCII - une ligne = une ligne visuelle */
.terminal-output,
.terminal-output-wrapper {
    white-space: pre !important;
}

.terminal-output div,
.terminal-output-wrapper div,
.terminal-output span,
.terminal-line {
    white-space: pre !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    overflow-x: visible !important;
    max-width: none !important;
    width: auto !important;
    display: block !important;
    text-align: left !important;
}

@media (max-width: 799px) {
    .cmd, .cmd span:not(.fas):not(.far):not(.fa), .terminal, .terminal-output> :not(.raw), .terminal-output> :not(.raw) a, .terminal-output> :not(.raw) span:not(.fas):not(.far):not(.fa) {
        font-size: calc(var(--size, 1) * 15px) !important;
    }
}

.vAligner:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0px;
    background: yellow
}

.fItem {
    display: inline-block;
    vertical-align: middle
}

.fillParent {
    width: 100%;
    height: 100%
}

.hidden {
    display: none !important
}

.invisible {
    opacity: 0 !important
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

html {
    height: 100%
}

body {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100%;
    font-size: 10px;
}
body.cmd {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    width: 100vw !important;
}

img {
    margin-left: 10px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time {
    display: block
}

iframe {
    border: none
}

ul {
    list-style-type: none
}

::-moz-selection::selection {
    color: #ffffff;
    background: #01A6FF
}

.fLink {
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    margin-left: .66em;
    margin-right: .66em;
    border: none;
    color: #ffffff;
    font-size: 18px;
    text-transform: lowercase;
    text-decoration: none
}

.fLink:after {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #01A6FF;
    content: "";
    -webkit-transition: border .2s linear 0s, bottom .2s linear 0s;
    -moz-transition: border .2s linear 0s, bottom .2s linear 0s;
    -o-transition: border .2s linear 0s, bottom .2s linear 0s;
    transition: border .2s linear 0s, bottom .2s linear 0s
}

.fLink:hover:after {
    bottom: 19px;
}