.sidebar {
    position: fixed;
    top: 0;
    left: -85%; /* Initially hidden */
    width: 85%;
    height: 100%;
    background-color: #3232ac;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid white;
    z-index: 10000000;
}
.sidebar.active {
    left: 0; /* Slide in */
}
.sidebar ul {
    padding: 0;
    list-style: none;
}
.sidebar ul li {
    padding: 15px;
    text-align: start;
}
.sidebar ul li a {
    color: white;
    text-decoration: none;
}

.logo {
    width: 75pt;
}

.avatar {
    width: 30pt;
    height: 30pt;
    border: 1px solid white;
    border-radius: 100pt;
    overflow: hidden;
}
.avatar .img {
    width: 100%;    /* Make the image fill the width of the container */
    height: 100%;   /* Make the image fill the height of the container */
    object-fit: contain;
}

.bottom-navigation-wrap {
    position: fixed;
    display: block;
    bottom: 0;
    background: #ffffff;
    width: 100%;
    min-width: 320px;
    z-index: 7;
    border-top: 1px solid #e2e8f0;
    left: 0;
}

.bottom-navigation-wrap .bottom-navigation-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
    list-style: none;
    padding: 13px 0;
}

.bottom-navigation-wrap .bottom-navigation-items li a svg {
    width: 24px;
    height: 24px;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}

.bottom-navigation-wrap .bottom-navigation-items li a{
    text-align: center !important;
}

.bottom-navigation-wrap .bottom-navigation-items li a .svg-stroke-color path {
    stroke: #191919;
    horiz-align: right;
}

svg>path {
    transition: .15s ease-in-out;
}

.text-md{
    font-size: 12pt;
    font-weight: bold;
}


