/* Algemeen */
@media (min-width: 992px) {
    .cro .hidden-desktop {
        display: none !important;
    }
}
/* Sort filter */
@media (max-width: 992px) {
  .cro .filters-wrapper {
    flex-wrap: unset !important; 
  }
  .cro .toolbox-filter {
    display: block !important; 
  }
  .cro .category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .cro .category-toolbar .offcanvas {
    margin-bottom: 0; 
  }
}
/* Pagination */
.cro .pagination li i {
  display: inline-flex;
  height: 34px;
  width: 34px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
	background: #7C153D;
  color: #FFF;
  font-weight: 700;
  transition: background-color .4s ease;
}
.cro .pagination li i:hover {
	background-color: #8f3a5b; 
}