/* -------------------- Grid -------------------- */
.grid_item_container {
	padding: 10px;
	margin: 5px;
	border-bottom: 5px solid rgb(43,43,43);
	position: relative;
	background: rgba(0,0,0,0.05);
}
.grid_item_container:hover {
	border-bottom: 5px solid rgb(25,168,199);
	background: rgba(0,0,0,0.1);
}
.grid img {
    width: 35%;
	border: 1px solid rgba(43,43,43,0.2);
	margin-right: 10px;
	display: inline-block;
}
.grid_item_title {	
    width: 58%;
	font-size: 12pt;
	font-weight: 400;
	display: inline-block;
	vertical-align: top;
}
.item_options {
	font-size: 12pt;
	position: absolute;
	bottom: 19px; 
	right: 10px;
}
.grid a {
	text-decoration: none;
	color: rgb(255,255,255);
}
.grid .support {	
	background: rgb(43,43,43);
}
.grid .buy {
	background: rgb(87,161,46);
}
.grid .support:hover {
	background: rgb(25,168,199);
}
.grid .buy:hover {
	background: rgb(123,212,73);
}
.item_options ul {
	display: inline;
	margin: 0;
	list-style: none;  
	color: rgb(255,255,255);
}
.item_options ul li {
	display: inline-block;
	position: relative;  
	padding: 10px;
	background: #fff;
	cursor: pointer;
}
.item_options ul li:hover {
	background: #555;
	color: #fff;
}
.item_options ul li ul {
	font-size: 11pt;
	padding: 0;
	position: absolute;
	top: 38px;
	left: 0;
	width: 150px;
	display: none;
	opacity: 0;
	visibility: hidden;	
	z-index: 1000;
}
.item_options ul li ul li { 
	background: #555; 
	display: block; 
	color: #fff;
}
.item_options ul li ul li:hover {background: #666;}
.item_options ul li:hover ul {
	display: block;
	opacity: 1;
	visibility: visible;
}
@media screen and (min-width: 690px) {
	.grid {
		float: left;
		width: 50%;
	}
}
@media screen and (min-width: 1000px) {
	.grid {width: 33.3%;}
}