 /* style for scroll bar in left category */
 .scrollbar-ripe-malinka::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-ripe-malinka::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.scrollbar-ripe-malinka::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-image: -webkit-linear-gradient(330deg, #f093fb 0%, #0d6efd 100%);
    background-image: linear-gradient(120deg, #9eeaf9 0%, #0b5ed7 100%);
}

.example-1 {
    position: relative;
    overflow-y: scroll;
    height: 694px;
}

/* style for scroll bar in left category END */