/* Target the specific div with its class */
::-webkit-scrollbar {
  width: 4px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(234, 231, 231); /* Color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a9c2f9; /* Color of the thumb */
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color of the thumb on hover */
}





.c-pointer {
    cursor: pointer;
}

@media screen and (min-width: 992px) {
  .max-height-520{
    max-height: auto;
    overflow: auto;
  }  
}



.scroll-87-vh{
  max-height: 87vh;
  overflow: auto;
}