.navBar {
    background: var(--white);
    width: 75px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    left: 0;
    top: 0;
}

.navBar .nav__line {
    height: 100%;
    width: 2px;
    background: linear-gradient(246.26deg, #0AD4B5 -17.89%, rgba(255, 255, 255, 0) 100%);
}

.navBar .nav__ul {
    padding: 20px 0px 0px 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navBar .nav__a {
    width: 100%;
    margin: 10px 0px;
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: solid 4px transparent;
    border-right: solid 4px transparent;
    transition: 0.2s;
}

.navBar .nav__a:hover .nav__icon {
    color: var(--green);
}

.navBar .nav__li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navBar .nav__icon {
    color: var(--black);
    font-size: 30px;
}

.navBar .nav__a.active {
    border-left: solid 4px var(--green);
}

.navBar .nav__icon.active {
    color: var(--green);
}

.nav__p {
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: 0px 0px 20px 0px;
}


.nav__a.awaiting::after {
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 100%;
    background: var(--orange);
    position: absolute;
    transform: translate(22px, -22px);
}
.nav__a.active.awaiting::after {
    background: var(--green);
}

@media only screen and (max-width: 500px) {
    .navBar {
        display: none;
    }
}