.breadcrump {
    position: absolute;
    right: 5rem;
    top: 0.1em;
    cursor: pointer;
}

.sidenavLink {
    font-size: 0.7em;
    line-height: 0.7em;
    position: absolute;
    bottom: 20em;
    left: 1em;
}

.sidenav a {
    text-decoration: none;

    color: darkgrey;
}



.sidenav a:hover {
    color: grey;
    cursor: pointer;
}

.sidenav {
    height: 100vh;
    width: 10em;
    padding-top: 5em;
    position: fixed;
    z-index: 10;
    top: 5em;
    left: 0em;
    background-color: white;
    overflow-x: hidden;
    display: inherit;
}

.navoff {
    padding: 1em 0.5em 0.5em 2em;
    margin: 0px 0px 0px 5px;
    text-decoration: none;
    font-size: 1em;
    text-align: left;
    color: lightgrey;
    display: block;
    -webkit-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
    pointer-event: none;
}

.navon {
    border-left: 5px solid var(--dark-color);
    color: grey;
    cursor: pointer;
    pointer-event: default;
}



/*! Iphone portrait */
@media only screen and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .sidenav {
        width: 100%;
        display: none;
        text-align: center;
        z-index: 5;
        top: 3em;
    }

    .navoff {
        border-bottom: 1px solid silver;
    }

}