.fixed-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 2;
    transform: translate(0, -50%);
}

.fixed-sidebar ul li {
    margin-bottom: 10px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 0;
    transition: all 0.3s;
    transform: translateX(145px);
    width: 180px;
}

.fixed-sidebar ul li:hover {
    transform: none;
}

.fixed-sidebar:has(li:hover) {
  z-index: 4;
}

.fixed-sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 8px;
}

.fixed-sidebar ul li span {
    color: #183b56;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s;
    margin-left: 8px;
    line-height: normal;
}

.icon-fix-sidebar {
    min-width: 22px;
    width: 22px;
    height: 22px;
    text-align: center;
    z-index: 1;
    color: #183b56;
    transition: transform ease-out .1s,background .2s;
}


@media (max-width: 991px) {
    .fixed-sidebar{
        display: none !important;
    }
}