#sideNav {
    width: 260px;
    float: left;
    /* padding-right: 15px; */
    padding: 10px 15px 0 0;
    z-index: 1;
}

#sideNav a {
    /* position: relative; */
    width: 100%;
    height: 100%;
    text-decoration: none;
    text-align: center;
}

#sideNavList {
    padding-inline-start: 0;
}

#sideNavList * {
    display: flex;
    position: relative;
    text-decoration: none;
    font-size: 2.75rem;
    font-weight: bold;
    color: #5c5d5f;
}

.iconStyle {
    width: 95px;
    height: 100%;
    padding: 5px 10px;
}

.iconStyle svg {
    margin: 0 auto;
}

/* Hides links for non-current page */
#sideNavList a.unselectedPage {
    left: -158px;
    transition: 0.3s;

}

/* Adds hover effect only to non-selected links and removes the hidden effect for the current page link */
#sideNavList a.unselectedPage:hover,
#sideNavList a.selectedPage {
    left: 0;

}

#sideNavList li {
    justify-content: right;
    margin-bottom: 10px;
    width: 100%;
    height: 100%;
    padding: 10px 0 10px 10px;
    list-style-type: none;
}

#mobileSubList a {
    margin-left: -10px;
}

.iconStyle svg {
    height: 50px;
    width: auto;
}

.subTextWrapper {
    width: 165px;
    height: 60px;
    justify-content: center;
    align-items: center;
}

@media screen and (width < 1000px) {
    #sideNav {
        display: none;
    }
}