
/* utils */

@media screen {
    .print-only {
        display: none;
    }
}

@media print {
    .screen-only {
        display: none;
    }
}

.block {
    display: block;
}

.none {
    display: none;
}

.break-all {
    word-break: break-all;
}

.li-block > li {
    display: block;
}

.li-inline > li {
    vertical-align: top;
    display: inline-block;
}

.inline-block {
    display : inline-block;
}

/* global */

* {
    box-sizing: border-box;
}

html {
    background-color: #f8f8f8;
    font-variant-numeric: oldstyle-nums;
}

em{
    font-style: italic;
}

a {
    color: black;
    text-decoration: inherit;
/*    text-color: inherit;
    text-decoration: inherit;*/
}
/*v1 validée*/
/*.kw{color: blue;}
.art{color: orangered;}
.dos{color: green;}
.use{color: orange;}
.conv{color: gold;}*/

a:visited{
    /*color: navy;*/
}
a:hover{
    text-decoration: underline;
}

/*a {
    color: var(--colorDark);
    text-color: inherit;
    text-decoration: inherit;
}

a:hover {
    text-decoration: underline;

}*/
    /*text-shadow: 0px 0px 3px pink;*/
    /*background-color: rgba(255,255,0,1);*/

/*body[data-device-width=small]{
    background-color: orange;
}
body[data-device-width=large][data-aside-state="open"]{
    background-color: orange;
}
body[data-device-width=large][data-aside-state="close"]{
    background-color: orange;
}*/

body{
    min-height: calc(100vh - var(--headerHeight));
}
