/* The side navigation menu */
.sidenav {
    height: 100vh;
    max-width: 100%;
    margin-left: 40vw;
    right: 0;
    width: 60vw;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: #ecf0f5;
    overflow-x: hidden;
    box-shadow: 20px 5px 30px rgba(0,0,0,1);
}

.sidenav-content {
    padding: 1rem 2rem;
}

.sidenav::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
    border-radius: 20px;
}

.sidenav::-webkit-scrollbar-thumb {
    background-color: #141414a6;
    border-radius: 20px;
}

.sidenav::-webkit-scrollbar-track {
    background-color: #FFF;
    border-radius: 20px;
}

h4 {
    color: #FFF;
}

.outline {
    background-color: transparent !important;
    color: inherit;
    transition: all .25s;
}

.btn-primary.outline {
    color: #222d32;
    border-radius: 20px;
}

.off-canvas-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5% 2rem 2rem;
}
