.item-info-container {
    height: 200px !important;
}

.item-description{
    max-height:100px !important; 
    overflow:auto !important;
}
/* For WebKit-based browsers (Chrome, Safari) */
.item-description::-webkit-scrollbar {
    width: 6px;
  }
  
  .item-description::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners */
  }

  .item-description {
    scrollbar-width: thin; /* You can also use auto for a default scrollbar */
  }
  
  /* Thumb */
  .item-description {
    scrollbar-color: #888 transparent; /* Color of the thumb and track */
  }