/* Mods to restrict height of a listly embed to scroll

This mod is optimized for gallery layout
The header does not change, but the body height is set to show two rows of gallery cards

Use the following link code in the header of the page OR just above the listly embed code

<link href="http://cdn.list.ly/mods/listly-gallery-two-rows-scroll.css" media="screen" rel="stylesheet" type="text/css">

*/

/*nofilter*/
.listly-list-widget .ly-filterwidget{
  display:none !important;
}

/* no sort */
.listly-list-widget .ly-list-tools {
  display:none !important;
}

/* reduced padding for the list body*/
.listly-list-widget.gallery_layout .list-body {
	padding:5px !important;
}

/* make the list items scroll */
.listly-list-widget .ly-body {
  max-height: 550px !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
}
