@media (min-width: 767px){
  .filter-container .sticky-content-container.sticky-content-scrollable {
    min-height: 100vh;
    top: 0;
    overflow: hidden;

    height: 100vh;
    &:hover{
      overflow-y: auto;
    }

    /* For Vertical scrollbars */
      &::-webkit-scrollbar {
      width: 3px;
    }
    &::-webkit-scrollbar-thumb {
      border-radius: 3px;
      background-color: #888;
    }
  }
}
