.sideNav {
    width: 56px;
    height: 100%;
    position: fixed;
    left: 0;
    background-color: #2c80b8;
    transition: all 150ms linear;
    vertical-align: top;
    display: inline-block;
    z-index: 10;
}
.sideNav--open {
    height: 100%;
    left: 0;
    background-color: #2c80b8;
    transition: all 150ms linear;
    vertical-align: top;
    display: inline-block;
    width: 24%;
    position: fixed;
    z-index: 10;
}
.sideNavHeader {
    width: 100%;
    height: 56px;
    background-color: white;
}
.sideNavHeader__companyLogo {
    object-fit: contain;
    object-position: center;
    height: 100%;
    width: 100%;
}
.sideNavTitle {
    position: absolute;
    margin-left: 58px;
    margin-top: -60px;
    background: white;
    border: 1px solid black;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 20px;
}
.verticalNavWrapper {
    width: 100%;
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #2c80b8;
    margin-top: 56px;
}
.verticalNavWrapper--open {
    width: 100%;
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #2c80b8;
    margin-top: 0;
}
a.verticalNavWrapper__item {
	 color: white!important;
	text-decoration: none!important;
}
.verticalNavWrapper__item {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    background-color: #2c80b8;
    height: 56px;
    line-height: 56px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}
.verticalNavWrapper__item:hover,
.verticalNavWrapper__item:hover {
    background-color: #3A94CF;
    color: white;
}
.verticalNavWrapper__icon {
    width: 56px;
    height: 56px;
    color: white;
    line-height: 56px;
    background-color: transparent;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .sideNav, .sideNav--open {
        width: 80%;
        position: fixed;
        display: block;
        height: 100%;
        top: 0;
        background-color: white;
        left: -80%;
        padding-top: 0;
        z-index: 10;
    }
    .sideNav--open {
        left: 0;
    }
    .sideNavHeader {
        width: 100%;
        height: 40%;
        top: 0;
        position: relative;
        background-color: white;
        border-bottom: 3px solid #2c80b8;
    }
    .sideNavHeader__companyLogo {
        object-fit: contain;
        object-position: center;
        height: 100%;
        width: 100%;
    }
    .sideNavHeader__profilePic {
        position: absolute;
        top: 5px;
        left: 5px;
        width: 8rem;
        height: 8rem;
        border-radius: 6rem;
        border: .3rem solid #2c80b8;
        object-fit: cover;
        object-position: top;
    }
    .verticalNavWrapper, .verticalNavWrapper--open {
        height: 60%;
        width: 100%;
        overflow-y: auto;
        display: block;
    }
    .verticalNavWrapper__item {
        background-color: white;
        width: 33.33%;
        border: 0;
        margin: 0;
        border-radius: 0;
        color: #5cb85c;
        font-weight: bold;
        font-size: 1rem;
        display: inline-block;
        padding: 0;
        position: relative;
        text-align: center;
        vertical-align: bottom;
    }
    .verticalNavWrapper__item:hover {
        background-color: white;
    }
    .verticalNavWrapper__item:nth-child(3n + 1),
    .verticalNavWrapper__item:nth-child(3n + 2) {
        border-right: 1px solid #b8babc;
    }
    .verticalNavWrapper__iconWrapper {
         height: calc(100% - 2.5rem);
         display: table;
         width: 100%;
     }
    .verticalNavWrapper__icon {
         width: 100%;
         background-color: white;
         color: #5cb85c;
         font-size: 7rem;
         display: table-cell;
         height: calc(100% - 2.5rem);
         vertical-align: middle;
    }
    .verticalNavWrapper__text {
         width: 100%;
         display: block;
         bottom: 0;
         margin: 0;
         color: white;
         font-weight: 800;
         background-color: #2c80b8;
         height: 2.5rem;
         font-size: 1.1rem;
         line-height: 2.5rem;
     }
}

