body {
  /* THIS is not a good way to handle this, and a proper refactoring needs to be performed
    This allows bigger images of media on listings for large screens
    It would be great to adapt to other sizes, but this requires a good refaftoring
     */

  @media screen and (min-width: 2200px) {
      --default-item-width: 342px !important;
      --default-max-item-width: 342px !important;
      --default-item-margin-right-width: 17px !important;
      --default-item-margin-bottom-width: 27px !important;
  }
}

.page-sidebar .page-sidebar-bottom {
    display: none !important;
}


/* SCROLL BARS */
 
/* width */
::-webkit-scrollbar {
  width: 16px;
}
 
/* Track */
::-webkit-scrollbar-track {
  background: #1bce72;
   /*  border-radius: 10px; */
 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #00a651;
 
   
    /* border-radius: 10px; */
 
 /*   border-bottom-right-radius: 80px 80px; */
     border: solid 1px rgba(0, 166, 81, 0.65);
}
 
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #00803e;
}
