@charset "UTF-8";

html {

    font-size: 16px;

}

/* CLASS */

._hidden, ._hidden * {
    display: none !important;
}

._bold {
    font-weight: bold;;
}

._break {
    clear:both;
    float:none;
}

._centered {
    position:relative;
    display:block;
    margin-left: auto;
    margin-right: auto;
}

._desaturate {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url(desaturate.svg#greyscale);
    filter: gray;
    -webkit-filter: grayscale(1);
}


/* ID */

#_development-mark {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
}

/* DEBUG-RESULTS */

._debug-results {
    background-color: #ccc;
    padding:5px;
}
._debug-results b {
    font-weight: bold;
}
._debug-results u {
    text-decoration: underline;
}

/* WIREFRAME-BORDERS */

:root {
    --body-wrapper-border: 1px dotted silver;
}


