
.result-block {
	/*
	display: grid;
	grid-template-columns: 50% 50%;
	*/
	padding-top: 1rem;
}
.result-block-title {
	background-color: #DDF;
}
.item {
	/*
	display: grid;
	grid-template-columns: 120px auto;
	margin-bottom: 1rem;
	*/
	box-shadow: 0 2px 2px #CCC;
}
.item.hidden {
	/*display: none;*/
}
.item:nth-child(even) {
	/*background-color: #EEE;*/
}
.item-title {
	font-weight: bold;
}
.item-overview {
	padding-right: 1rem;
}
.poster {
	margin-right: 1rem;
}
.poster.sml {
	width: 92px;
	min-height: 100px;
	height: 138px;
	background-image: url('/images/poster_missing2_sml.png');
	background-repeat: no-repeat;
	background-size: auto;
}
.poster a {
	display: inline-block;
	height: 100%;
	overflow: hidden;
}
.poster img {
	position: relative;
	box-shadow: 0px 0 0 transparent;
	z-index: 1;
}
.poster img::after {
   position: absolute;
	border: solid 4px red;
   z-index: -1;
   width: 100%;
   height: 100%;
	top: 0;
	left: 0;
   opacity: 0;
   box-shadow: 3px 5px 15px rgba(0,0,0,0.8);
   transition: opacity 0.3s ease-in-out;
	/*
	box-shadow: 3px 4px 6px #888888;
	box-shadow: 0px 1px 1px #888888;
	transform: rotate(3deg) scale(1.05);
	*/

	content: '';
}
/*
.poster.hovered img {
	transform: rotate(3deg) ;
}
*/
.poster.hovered img::after {
	opacity: 1;
}

.item {
	position: relative;
	box-shadow: 0 0 0 transparent;
	padding: 0.4rem;
	z-index: 1;
}
.item::after {
	position: absolute;
	padding: 0.4rem;
	content: '';
	box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.3);
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
   transition: opacity 300ms ease-in-out;
	width: 100%;
	height: 100%;
}

.item:hover::after {
	opacity: 1;
}


.paginator {
	border-bottom: solid 1px #EEE;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	text-align: center;
}
#garbage {
  text-align: left;
}

.known-for {
	font-style: italic;
}
.known-for:nth-child(odd) {

}
.known-for:not(:last-child):after {
	content: ' -- '
}

/* class for 'View More' button on search (results) page. js and css */
.reveal {
	cursor: pointer;
	font-size: 1.1em;
}

.raw-results {
	display: none;
}
