body, html {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: sans-serif;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    vertical-align: baseline;
    box-sizing: border-box;
    -moz-box-sizing:border-box;
    font-size:15px;
    color : black;
    height:100%;
    width:100%;
}

*, ::after, ::before
{
    box-sizing: border-box;
}
body:before, html:before, body:after, html:after {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

body.flex
{
    flex-direction: column;
    align-items: stretch;

}

body.flex > nav
{
    flex-grow:0;
}

body.flex > div.container
{
    flex-grow:1;
}

body.flex > div.container.flex
{
    flex-direction: row;
    flex-wrap: nowrap;
}

body.flex > div.container > div#content
{
    flex-grow:1;
}

.flex
{
    display:flex;
}

body > .verticalNav
{
    width:100%;
    height:16px;
}





.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 0px;
    z-index: 1;
}

.dropdown-content > p > a
{
    display:inline-block;
    padding : 8px;
    width:100%;
}

.dropdown-content > p > a:hover
{
    background-color: #e9e9e9;
}

.dropdown-content.right-side {
    right:0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.btn {
    display: inline-block;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    line-height: var(--btn-line-height);
    color: var(--btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--btn-border-width) solid var(--btn-border-color);
    border-radius: var(--btn-border-radius);
    background-color: var(--btn-bg);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-shadow: 1px 1px 5px var(--shadow-color);
}

.alert{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;

    --text-color: #721c24;
    --text-background-color: #f8d7da;
    --text-border-color: #f5c6cb;

    color: var(--text-color);
    background-color: var(--text-background-color);
    border-color: var(--text-border);
}


div.fullwidth
{
    width:100%;
}

div.withAside
{
    display:flex;
}

div.withAside > div
{
    flex-grow:1;
}

div.withAside > aside
{
    flex-grow:0;
    top: 0;
    height: 100%;
    position: sticky;
    display:flex;
    flex-direction: column;
    margin-left:5px;
}

div.withAside > aside > *
{
    margin-bottom:5px;
}

div.withAside > aside i
{
    font-size: 2rem;
}
