html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--root-font-size);
}

ul, li, ol, summary, detail {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/***************** CONCRETE ELEMENTS *************/


#sidebar {
    max-width: 200px;
    min-width: 100px;
}






/***************** CLASSES   ******************/

/**
    Flexbox
 */

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}


/**
    Collections
 */

.collection {
    border-right: 1px solid var(--light-bg-darken-2);
}

.collection-item {
    padding: var(--p1);
}

.collection-item > i,
.collection-item > div > i {
    padding-right: var(--p1);
}

.collection-item {
    border-bottom: 1px solid var(--light-bg-darken-2);
}

.collection-item:hover {
    background-color: var(--accent);
    cursor: pointer;
}


/**
    Collapsbile Element
 */

.collapsible {
    justify-content: space-between;
}