body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
		 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
		 sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    max-width: 100%;
}

.fill-width {
    max-width: 100%;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
		 monospace;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

#page-content-wrapper {
    min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
	margin-left: 0;
    }

    #page-content-wrapper {
	min-width: 0;
	width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
	margin-left: -15rem;
    }
}

.inset-shadow {
    box-shadow: 0px 0px 30px -15px #fff inset;
}

hr.white {
    border-top: 1px solid #ddd;
}

.dark-mode {
    color: #ddd;
    background-color: #222;
}


::-moz-selection { /* Code for Firefox */
    background: #16ab9e;
}

::selection {
    background: #16ab9e;
} 
