/* FOOD LIST */
#header-fixed {
    position: fixed;
    top: 0px; 
	display:none;
    background-color:white;
	vertical-align: middle;
	font-size: 15px;
	width: inherit;
	z-index: 1000;
}

#header-fixed th:first-child {
	width: 250px; 
	text-align: left;
	padding-left: 10px;
}

#header-fixed th {
	width: 80px;
	text-align: center;
	padding: 6px 0;
}
#food-list th:first-child, #food-list td:first-child {
	width: 250px; 
	text-align: left;
	padding-left: 10px;
}

#food-list th, #food-list td {
	width: 80px;
	padding: 6px 0;
	text-align: center;
}

#food-list .food {
	cursor: pointer;
	transition: background .3s;
}

#food-list .food:hover {
	background: #F5F9FD !important;
}

#food-list .food.active, #food-list .food.active:hover {
	background: #FFF !important;
}

#food-list .food.even {
	background: #FAFAFA;
}

#food-list .food .tried {
	width: 80px; 
	text-align: center;
	-webkit-box-shadow: 0px 0px 1px #DDD inset;
	-moz-box-shadow: 0px 0px 1px #DDD inset;
	box-shadow: 0px 0px 1px #DDD inset;
}

#food-list .food .name, #food-list .food .tried {
	transition: background 1s, box-shadow 1s;
}

#food-list .food.active .name {
	background: #EAF1F7;
	font-weight: bold;
	color: black;
	font-size: 16px;
	line-height: 24px;
	-webkit-box-shadow: 0px 0px 1px blue inset;
	-moz-box-shadow: 0px 0px 1px blue inset;
	box-shadow: 0px 0px 1px blue inset;
}

#food-list .food.active .tried.yes {
	background: rgba(0,255,0,0.05);
	font-weight: bold;
	color: green;
	font-size: 16px;
	line-height: 24px;
	-webkit-box-shadow: 0px 0px 1px green inset;
	-moz-box-shadow: 0px 0px 1px green inset;
	box-shadow: 0px 0px 1px green inset;
}

#food-list .food.active .tried.no {
	background: rgba(255,0,0,0.05);
	font-weight: bold;
	-webkit-box-shadow: 0px 0px 1px red inset;
	-moz-box-shadow: 0px 0px 1px red inset;
	box-shadow: 0px 0px 1px red inset;
}

#food-list .food .tried.no span {
	display: none;
}

#food-list .food.active .tried.no span {
	display: block;
	color: red;
}

#food-list .food-info td {
	cursor: auto;
	z-index: 900;
}

#food-list .food-info td {
	padding-top: 0;
	padding-bottom: 2em;
}

#food-list .food-info .loading {
	background: url(../img/loading.gif) center 1em no-repeat #EEE;
	height: 128px;
	display: none;
	position: relative;
	margin: 0 1em;
	border: 1px solid #DDD;
	border-bottom-width: 0;
	border-top-width: 0;
	padding-top: 1em;
}

#food-list .food-info .content {
	margin: 0 1em;
	-webkit-border-radius: 0px 0px 20px 20px;
	-moz-border-radius: 0px 0px 20px 20px;
	border-radius: 0px 0px 20px 20px;
	border: 1px solid #DDD;
	background: #EEE;
	padding: 1em;
	border-top-width: 0;
	position: relative;
}

#food-list .food-info .edit {
	position: absolute;
	display: block;
	top: 20px;
	left: 20px;
	cursor: pointer;
	-webkit-border-radius: 6px 2px 2px 2px;
	-moz-border-radius: 6px 2px 2px 2px;
	border: 1px solid #666;
	background: #FFF;
	padding: 0 6px;
	font-size: 14px;
	text-align: center;
}

#food-list .food-info .edit a:hover {
	text-decoration: none;
}

#food-list .food-info .edit:hover {
	background: #DBEAF9;
}

#food-list .food-info .image {
	float: left;
	width: 40%;
	margin-right: 2em;
}

#food-list .food-info .image img {
	max-width: 100%;
	border: 2px solid white;
	-webkit-box-shadow: 1px 1px 2px #333;
	-moz-box-shadow: 1px 1px 2px #333;
	box-shadow: 1px 1px 2px #333;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

#food-list .food-info .title {
	text-align: center;
	font-size: 30px;
	margin: 0;
}

#food-list .food-info .by {
	text-align: center;
	font-size: 14px;
	margin: 0 0 1.5em 0;
	font-style: italic;
	color: #999;
}

#food-list .food-info .by span {
	font-style: normal;
	color: #444;
}

#food-list .food-info .text {
	text-align: left;
	font-size: 16px;
}

#food-list .food-info .mark {
	position: relative;
	margin: 1em auto 0 auto;
	cursor: pointer;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #666;
	background: #FFF;
	display: block;
	padding: 0 6px;
	width: 120px;
	text-align: center;
	left: 13px;
}

#food-list .food-info .mark a:hover {
	text-decoration: none;
}

#food-list .food-info .mark:hover {
	background: #DBEAF9;
}

#food-list .food-info .clear {
	clear: both;
	height: 0;
}

/* RECENTLY ADDED FOODS and RECENTLY TRIED FOODS */

#recent .food {
	cursor: pointer;
	transition: background .3s;
}

#recent .food:hover {
	background: #F5F9FD !important;
}

.tooltip {
	display: none;
	position: absolute;
	border: 1px solid #333;
	background-color: #161616;
	border-radius: 5px;
	padding: 10px;
	color: #fff;
	font-size: 12px Arial;
}