.sideBar {
    width: 20%;
    padding: 25px 15px;
    box-shadow: 0 0 10px #ccc;
    background-color: var(--whiteColor);
    min-height: 100vh;
    position: relative;    
}

.sideBar .toggle {
    height: 25px;
    width: 25px;
    border: 1px solid #ccc;
    position: absolute;
    top: 9px;
    right: -11px;
    border-radius: 50%;
    background-color: var(--whiteColor);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    align-items: center;
    transition: 0.5s all;
}

.sideBar .toggle:after {
    content: "";
    border: 2px solid #ccc;
    height: 8px;
    width: 8px;
    border-bottom: 0;
    border-right: 0;
    padding: 0;
    transform: rotate(-45deg);
    position: absolute;
    left: 9px;
}

.sideBar .home {
    color: #5E5873;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 18px;
}

.sideBar .home img {
    margin-right: 7px;
}

.sideBar .budget {
    background-color: var(--primaryColor);
    height: 20px;
    width: 20px;
    color: var(--whiteColor);
    border-radius: 50%;
}

.sideBar ul li {
    margin-bottom: 1px;
}

.sideBar ul li a {
    color: #5E5873;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    width: 100%;
    padding: 0px 18px;
    border-radius: 5px;
    align-items: center;
    transition: 0.5s all;
    min-height: 48px;
}

.sideBar ul li a:hover,
.sideBar ul li.active a {
    background-color: #F8F8F8;
    color: #F7C953;
}

.sideBar ul li a img {
    margin-right: 7px;
}

.sideBar h6 {
    color: #B9B9C3;
    font-size: 12px;
    line-height: 18px;
}

@media screen and (max-width:1199px) {
    .sideBar {
        width: 240px;
    }
}

@media screen and (max-width:767px) {
    .sideBar {
        width: 80px;
        padding: 43px 10px 15px;
    }

    .sideBar .home {
        padding: 0;
        font-size: 0;
        justify-content: center;
    }

    .sideBar .home img,
    .sideBar ul li a img {
        margin-right: 0px;
    }

    .sideBar ul li a {
        font-size: 0;
        padding: 0px 12px;
        justify-content: center;
    }

    .sideBar h6 {
        text-align: center;
    }

    .activeSidebar {
        position: relative;
    }

    .activeSidebar .sideBar {
        position: absolute;
        width: 230px;
        z-index: 9;
    }

    .activeSidebar .sideBar .home,
    .activeSidebar .sideBar ul li a {
        font-size: 15px;
        padding: 0px 18px;
        justify-content: flex-start;
    }

    .activeSidebar .sideBar .home img,
    .activeSidebar .sideBar ul li a img {
        margin-right: 7px;
    }

    .activeSidebar .sideBar h6 {
        text-align: left;
    }

    .activeSidebar .sideBar .toggle {
        transform: rotate(-180deg);
    }

}

@media screen and (max-width:639px) {
    .sideBar {
        width: 65px;
    }
}