/* ----------

Tesco Real Food
- Components CSS

--------- */

/* --------- Buttons */

/* -- Button Class */

.btn {
	display: inline-block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	cursor: pointer;
	border-radius: 3px;
	background: #00569E;
	color: white;
	padding: 9px 15px;
	margin-bottom: 20px;
	*display: inline;
	zoom: 1;
	font-family: 'Tesco', Arial, sans-serif;
	}
	
/* -- Button States */

.btn:hover,
.btn.hover,
.btn.selected {
	color: #FFF;
	background: #00447D;
	}

.btn:active,
.btn.active {}

.btn[disabled*="disabled"],
.btn.disabled {}

/* -- Button Animation */

.btn,
.btn:hover,
.btn.hover,
.btn.selected {
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	}	
	
/* -- Button Styles */

.btn-link { /* Emulate Standard Link Styling */
	color: #00569E;
	background: #FFFFFF;
	}
	
.btn-link:hover
.btn-link.hover,
.btn-link.selected {}
	
.btn-info {
	color: #7C6991;
	background: #EBE9EF;
	}
	
.btn-info:hover,
.btn-info.hover,
.btn-info.selected {
	color: #FFF;
	background: #7C6991;
	}
	
.btn-reveal {
	color: #FFF;
	background: #9E90AD;
	}
	
.btn-reveal:hover,
.btn-reveal.hover,
.btn-reveal.selected {
	color: white;
	background: #7C6991;
	}
	
.btn-meal-plan {
	background: #DEF5F4;
	color: #23BDB3;
	}
	
.btn-meal-plan:hover,
.btn-meal-plan.hover,
.btn-meal-plan.selected {
	color: #FFF;
	background: #23BDB3;
	}
	
.btn-meal-plan.btn-confirm {
    color: #FFF;
    background: #23BDB3;
    }

.btn-confirm {
    color: #FFF;
	background: #7C6991;
    }

.btn-social {
    width: 34px;
    height: 34px;
    color: #FFF;
    background: #7C6991;
    border-radius: 100%;
    padding: 0;
    font-size: 20px;
    }

.btn-social i {
    padding: 0;
    line-height: 34px;
    }

.btn-social + .btn-social {
    margin-left: 12px;
    }
	
/* -- Button Sub-classes */
	
.btn-sml { /* Small */
	font-family: Arial, sans-serif;
	font-size: 12px;
	padding: 7px 10px;
	}

.btn-lrg { /* Large */
	font-size: 22px;
	padding: 12px 24px;
	margin-bottom: 30px;
	}

.btn-full { /* Full Width */
	display: block;
	}
	
.btn-control {
	border-radius: 0;
	display: block;
	}
	
/* -- Button Extras */

.btn-group {
	position: relative;
	display: inline-block;
	}
	
.btn-group .btn {
	border-radius: 0;
	}

.btn-group .btn:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	border-right: 1px dashed #FFF;
	}
	
.btn-group .btn:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	}	
	
/* ---------- // --------- */

/* ---------- Dropdown Menu */

/* -- Dropdown Class */

.dropdown-menu {
	display: inline-block;
	margin-bottom: 0;
	*zoom: 1;
	*display: inline;
	}
	
.dropdown-menu .dropdown-menu-selected {}

.dropdown-menu .dropdown-menu-toggle {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	}

/* -- Dropdown States */
	
.dropdown-menu .btn {
	margin-bottom: 20px;
	}	
	
.dropdown-menu.active .btn {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	}
	
/* ---------- // --------- */
	
/* ---------- Dropdown List */

/* -- Dropdown Class */
	
.dropdown-list {
	display: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-left: 1px solid #CCCBC8;
	border-right: 1px solid #CCCBC8;
	border-bottom: 1px solid #CCCBC8;
	background: #FFF;
	padding-bottom: 0;
	margin-left: -1px;
	margin-right: -1px;
	font-size: 15px;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 10;
	margin-top: -20px;
	left: 0;
	}
				
.dropdown-list-item {
	padding: 5px 8px;
	cursor: pointer;
	}

.dropdown-list-item:hover { 
	background: #F1F1F1;
	}
	
/* -- Dropdown States */
	
.dropdown-list.active {
	display: block;
	}

/* ---------- // ---------- */

/* ---------- Tabs */

/* -- Tabs Class */
	
.tabs-list {
	position: absolute;
	bottom: 20px;
	}

.tabs-list-tab {
	cursor: pointer;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	font-weight: bold;
	padding: 15px 20px;
	color: #7C6991;
	}
	
/* -- Tab States */

.tabs-list-tab.hover,
.tabs-list-tab:hover {
	background: #E4DBD1;
	}

.tabs-list-tab.active {
	background: #DED9E3;
	}
	
/* -- Tab Animation */

.tabs-list-tab,
.tabs-list-tab:hover,
.tabs-list-tab.active {	
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	}

/* -- Tab Sub-classes */

/* ---------- Flyouts */

/* -- Flyout Class */

.flyout {
    opacity: 0;
	overflow: hidden;
	position: absolute;
    text-align: left;
    z-index: 1000;
	}

.flyout.active {
    opacity: 1;
    }

.flyout-content {
	width: 284px;
	display: none;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #7C6991;
	padding: 17px 20px;
	background: #EBE9EF;
	border-radius: 3px;
	overflow: hidden;
}

.flyout-content.share-icons {
	width: 132px;
}

.flyout-content.share-icons .btn-social {
	width: 32px;
	height: 32px;
	margin-left: -2px;
}

.flyout-content.share-icons .btn-social i  {
	line-height: 30px;
}

.flyout-content.share-icons .pw-widget {
	display: inline;
}

.pw-widget.__pw-padding-true.__pw-layout-horizontal .pw-button, .pw-widget.__pw-padding-true.__pw-layout-horizontal .pw-native {
	padding: 0 !important;
	margin-right: 12px;
}
	
.flyout-content:before {
    display: none;
	content: '';
	width: 0; 
	height: 0; 
	position: absolute;
	}

.flyout .flyout-content,
.flyout .flyout-content:before {
    display: block;
    }

/* -- Flyout Animation */

.flyout,
.flyout.active {
	transition: opacity .3s;
	-moz-transition: opacity .3s;
	-webkit-transition: opacity .3s;
	}
	
/* -- Flyout Sub-classes */

.flyout-btm {}
	
.flyout-btm .flyout-content {
	margin-top: 10px;
	}
	
.flyout-btm .flyout-content:before {
	border-left: 9px solid transparent;
	border-bottom: 10px solid #EBE9EF; 
	border-right: 9px solid transparent; 
	top: 0px;
	left: 22px;
	}

.flyout-right {}

.flyout-right .flyout-content {
	margin-left: 10px;
	}

.flyout-right .flyout-content:before {
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent; 
	border-right: 10px solid #EBE9EF; 
	left: 0px;
	top: 22px;
	}	

.flyout-btm.flyout-rtl .flyout-content:before {
    left: auto;
    right: 22px;
    }

.flyout-meal-plan.flyout-content {
	background: #DEF5F4;
    color: #23BDB3;
	}
	
.flyout-btm .flyout-meal-plan.flyout-content:before {
	border-bottom-color: #DEF5F4;
	}
	
.flyout-right .flyout-meal-plan.flyout-content:before {
	border-right-color: #DEF5F4;
	}

/* -- Flyout Content */

.flyout-divider {
    border: 0;
    margin: 0 -20px 20px -20px;
    border-bottom: 1px dashed;
    clear: both;
    }

.flyout-heading {
    font-size: 20px;
    padding-bottom: 15px;
    }

.flyout-label {
    line-height: 1.3;
    float: left;
    width: 50%;
    padding-bottom: 5px;
    }

.flyout .btn {
    margin-bottom: 15px;
    }
	
/* ---------- // ---------- */

/* ---------- Breadcrumb */

/* -- Breadcrumb Class */

.breadcrumb {
    padding-top: 6px;
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #979290;
	overflow: hidden;
	}

.breadcrumb-crumb {
	float: left;
	padding-bottom: 15px;
	}
	
.breadcrumb-crumb a {
	color: #979290;
	}
	
.breadcrumb-crumb i {
	padding-left: 10px;
	padding-right: 10px;
	}
	
.breadcrumb-crumb-ingredient {
	color: #00569E;
	}
	
/* ---------- // ---------- */

/* ---------- Star Rating */

/* -- Star Rating Class */

.star-rating {
	font-weight: bold;
	font-size: 13px;
	color: #979290;
	margin-bottom: 20px;
	padding-right: 15px;
	line-height: 18px;
	}

.star-rating-visual,
.star-rating-visual .star-rating-rating  {
	float: left;
	height: 16px;
	background: url('../images/2014/icons/star-rating.png');
	background-repeat: no-repeat;
	}
	
.star-rating-visual {
	width: 86px;
	position: relative;
	background-position: bottom left;
	margin-right: 4px;
	}
	
.star-rating-visual .star-rating-rating {
	position: absolute;
	background-position: top left;
	}

.star-rating-visual .star-rating-0 {
	display: none;
	}
		
.star-rating-visual .star-rating-1 {
	width: 16px;
	}
	
.star-rating-visual .star-rating-2 {
	width: 34px;
	}
	
.star-rating-visual .star-rating-3 {
	width: 52px;
	}
	
.star-rating-visual .star-rating-4 {
	width: 70px;
	}
	
.star-rating-visual .star-rating-5 {
	width: 86px;
	}
	
.star-rating-count {
	position: relative;
	top: 1px;
	}
	
/* -- Star Rating Sub-classes */	
	
.star-rating-large {
	padding-right: 30px;
	font-weight: normal;
	font-family: Arial, sans-serif;
	color: #53504E;
	}

.star-rating-large .star-rating-visual,
.star-rating-large .star-rating-visual .star-rating-rating {
	height: 25px;
	background-image: url('../images/2014/icons/star-rating-large.png');
	}
	
.star-rating-large .star-rating-visual {
	width: 134px;
	margin-right: 10px;
	}
	
.star-rating-large .star-rating-count {
	top: 8px;
	}

.star-rating-large .star-rating-visual .star-rating-0 {
	display: none;
	}
	
.star-rating-large .star-rating-visual .star-rating-1 {
	width: 25px;
	}
	
.star-rating-large .star-rating-visual .star-rating-2 {
	width: 54px;
	}
	
.star-rating-large .star-rating-visual .star-rating-3 {
	width: 80px;
	}
	
.star-rating-large .star-rating-visual .star-rating-4 {
	width: 108px;
	}
	
.star-rating-large .star-rating-visual .star-rating-5 {
	width: 134px;
	}
	
/* ---------- // ---------- */
	
/* ---------- Comment Count */

/* -- Comment Count Class */

.comment-count {
	float: left;
	font-size: 13px;
	color: #53504E;
	margin-bottom: 20px;
    color: #979290;
    font-weight: bold;
    line-height: 18px;
	}

.comment-count i {
    color: #CCCBC8;
    }

.comment-count a {
	position: relative;
	top: 1px;
	}

/* -- Comment Count Sub-classes */

.comment-count-large {
    color: #53504E;
    font-weight: normal;
    line-height: 30px;
    }

.comment-count-large i {
    font-size: 20px;
    }
	
/* -- Comment Count States */

.comment-count.active {
    display: block;
    }

/* ---------- // ---------- */

/* ---------- Author */

/* -- Author Class */

.author {
	overflow: hidden;
	padding-bottom: 20px;
	}

.author-visual {
	width: 64px;
	height: 64px;
	border-radius: 100%;
	float: left;
	}
	
.author-authored {
	padding-top: 5px;
	line-height: 1.2;
	font-size: 16px;
	margin-left: 80px;
	}
	
.author-authored-when {
	color: #CCCBC8;
	}
	
/* -- Author Sub-classes */

.author-method {
	padding-right: 20px;
	border-color: #D9D3CC;
	border-style: solid;
	border-right-width: 1px;
	border-bottom-width: 1px;
	}
	
/* ---------- // ---------- */

/* ---------- Recipe List Item */

/* -- Recipe List Item Class */

/* --------- CHANGE ---------- */

.search-results .recipe-list-item .recipe-list-item-visual img {
	height: 149px !important;
	}

.search-results-oh-dear .recipe-list-item .recipe-list-item-visual img {
	height: auto !important;
	}
	
.search-results .recipe-list-item.recipe-list-item-popup .recipe-list-item-visual img {
	height: 204px !important;
	}
	
/* --------- // CHANGE ---------- */

.recipe-list-item {
	padding-bottom: 20px;
	position: relative;
	}

.recipe-list-item-visual {
	margin-bottom: 10px;
	position: relative;
	display: block;
    width: 100%;
	}

.recipe-list-item-visual img {
    width: 100%;
    height: auto;
    }
	
.recipe-list-item-title {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.3;
	}

.recipe-list-item-description {
	font-size: 13px;
	font-family: Arial, sans-serif;
	line-height: 1.3;
	padding-bottom: 20px;
	}
	
/* -- Recipe List Item States */

.recipe-list-item.active {
	z-index: 10;
	}
	
/* -- Recipe List Item Sub-classes */

.recipe-list-item-detailed {
	overflow: hidden;
    border-bottom: 1px solid #DDD;
    padding-bottom: 10px;
    margin-bottom: 20px;
	}

.recipe-list-item-detailed .recipe-list-item-visual {
	max-width: 227px;
	width: 50%;
	float: left;
	margin-right: 20px;
	}

.recipe-list-item-popup {
	position: absolute;
	padding: 15px 15px 0 15px;
	background: white;
	border-radius: 3px;
	z-index: 100;
	box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
	margin-left: -134px;
	left: 50%;
	top: -40px;
	width: 268px;
	box-sizing: border-box;	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	}
	
.recipe-list-item-popup .recipe-list-item-visual {
	width: 100%;
	}
	
.recipe-list-item-popup .recipe-list-item-title {
	font-size: 19px;
	line-height: 1.3;
	}	
	
.recipe-list-item-popup .recipe-list-item-description {
	font-size: 15px;
	}	
	
.recipe-list-item-popup .flyout {
	position: relative;
	float: left;
	width: 340px;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -10px;
	}
	
.recipe-list-item-popup .flyout-content {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	}

.recipe-list-item-popup.share {
    padding-bottom: 75px;
    }
	
.recipe-list-item-controls .btn {
	margin-bottom: 15px;
	margin-left: 12px;
	}
	
.recipe-list-item-controls .btn:first-child {
	margin-left: 0;
	}
	
.recipe-list-item .comment-count {
    display: none;
}

/* TODO: Make Sure This Is Only On Search Results */

.recipe-list-item.customer-recipe {}
	
.recipe-list-item.customer-recipe img {
	height: 149px;
	}
	
.recipe-list-item.customer-recipe .recipe-list-item-popup {}
	
.recipe-list-item.customer-recipe .recipe-list-item-popup img {
	height: 206px;
	}
	
.recipe-list-item.customer-recipe .recipe-list-item-visual:before {
	content: 'Customer recipe';
	width: 60%;
	position: absolute;
	bottom: 0;
	z-index: 1;
	height: 14px;
	font-size: 14px;
	padding: 8px 12px;
	color: white;
	font-weight: bold;
	background: url('/images/2014/recipe-list-item/overlay-customer-recipe.png') no-repeat -130px bottom;
	}
	
.recipe-list-item.new-recipe {}	

.recipe-list-item.new-recipe .recipe-list-item-popup {}

.recipe-list-item.new-recipe .recipe-list-item-visual:before {
	content: 'New Recipe';
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1;
	height: 14px;
	font-size: 14px;
	padding: 8px 12px;
	color: white;
	font-weight: bold;
	background: url('/images/2014/recipe-list-item/overlay-new-recipe.png') no-repeat -130px bottom;
	}

.recipe-list-item.new-topten {}	

.recipe-list-item.new-topten .recipe-list-item-popup {}

.recipe-list-item.new-topten .recipe-list-item-visual:before {
	content: 'New Top 10';
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1;
	height: 14px;
	font-size: 14px;
	padding: 8px 12px;
	color: white;
	font-weight: bold;
	background: url('/images/2014/recipe-list-item/overlay-new-recipe.png') no-repeat -130px bottom;
	}

.recipe-list-item.new-stepbystep {}	

.recipe-list-item.new-stepbystep .recipe-list-item-popup {}

.recipe-list-item.new-stepbystep .recipe-list-item-visual:before {
	content: 'New Step-by-step';
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1;
	height: 14px;
	font-size: 14px;
	padding: 8px 12px;
	color: white;
	font-weight: bold;
	background: url('/images/2014/recipe-list-item/overlay-new-recipe.png') no-repeat -130px bottom;
	}

.recipe-list-item.new-helpfullist {}	

.recipe-list-item.new-helpfullist .recipe-list-item-popup {}

.recipe-list-item.new-helpfullist .recipe-list-item-visual:before {
	content: 'New Helpful list';
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1;
	height: 14px;
	font-size: 14px;
	padding: 8px 12px;
	color: white;
	font-weight: bold;
	background: url('/images/2014/recipe-list-item/overlay-new-recipe.png') no-repeat -130px bottom;
	}
	
.recipe-list-item.recipevideos,
.recipe-list-item.video {}	

.recipe-list-item.recipevideos .recipe-list-item-popup,
.recipe-list-item.video .recipe-list-item-popup {}

.recipe-list-item.recipevideos .recipe-list-item-visual:before,
.recipe-list-item.video .recipe-list-item-visual:before {
	/* -- Uses TRF Icon */
	content: '\f204';
	display: inline-block;
	font-family: 'TRFIcon';
    width: auto;
	line-height: 1;
	/* -- // */
	padding: 12px;
	position: absolute;
	bottom: 0;
	z-index: 1;
	color: white;
	font-weight: bold;
	background: #ffd900;
	background: rgba(255, 217, 0, 0.8);
	}
	
/* ---------- // ---------- */
	
/* ---------- Recipe Meta */

/* -- Recipe Meta Class */

.recipe-meta {
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #53504E;
	overflow: hidden;
	}
	
.recipe-meta-tag {
	padding-right: 20px;
	padding-bottom: 15px;
	}

/* -- Recipe Meta Sub-classes */
	
.recipe-meta-sml {
	padding-top: 10px;
	font-weight: bold;
	color: #979290;
	font-size: 11px;
	margin-bottom: 20px;
	border-bottom: 1px solid #979290;
	border-top: 1px solid #979290;
	}
	
.recipe-meta-sml .recipe-meta-tag {
	padding-right: 10px;
	padding-bottom: 10px;
	}
	
/* ---------- // ---------- */

/* ---------- Recipe Ingredient Call To Action */

/* -- Recipe Ingredient Call To Action Class */

.recipe-ingredient-cta {
	text-align: center;
	}
	
.recipe-ingredient-cta a {
	font-size: 18px;
	padding-bottom: 20px;
	display: inline-block;
	}

.recipe-ingredient-cta .recipe-ingredient-cta-visual {
	padding-bottom: 0;
    margin-left: 5%;
    margin-right: 5%;
	}

/* ---------- // ---------- */

/* ---------- Get Recipe Detail */

/* -- Get Recipe Detail Class */

.get-recipe-detail {
	padding-top: 20px;
	padding-bottom: 40px;
	cursor: pointer;
	}
	
.get-recipe-detail div {
	padding-left: 10px;
	font-weight: bold;
	line-height: 1.3;
	display: table-cell;
	vertical-align: middle;
	}
	
.get-recipe-detail div:first-child {
	width: 64px;
	height: 64px;
	border-radius: 100%;
	padding: 0;
	opacity: 1;
	text-align: center;
	}
	
.get-recipe-detail div:first-child i {
	color: #FFF;
	}
	
/* -- Get Recipe Detail Animation */

.get-recipe-detail div:first-child,
.get-recipe-detail div:first-child:hover {
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	}
	
/* -- Get Recipe Detail States */
	
.get-recipe-detail div:first-child:hover,
.get-recipe-detail div:first-child.hover {
	opacity: 0.8;
	}
	
/* -- Get Recipe Detail Sub-classes */

.get-recipe-detail-by-text div:first-child {
	background: #E74C39;
	}
	
.get-recipe-detail-by-email div:first-child {
	background: #A9AD00;
	}
	
.get-recipe-detail-by-print div:first-child {
	background: #F7B234;
	}
	
/* ---------- // ---------- */

/* ---------- Ways To Shop */

.ways-to-shop {
	background: #F6F6F6;
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
	}

.ways-to-shop h2,
.ways-to-shop h5 {
    padding-bottom: 10px;
    }

.ways-to-shop-way-heading {
    padding-bottom: 10px;
    font-size: 16px;
    }
	
.ways-to-shop-way > div > div:first-child i {
    color: #CCCBC8;
    }
	
.ways-to-shop-way {
	font-size: 14px;
	line-height: 1.3;
	padding-bottom: 20px;
	}
	
.ways-to-shop-way div {
	box-sizing: border-box;
	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	}
	
.ways-to-shop-way > div div:first-child {
	width: 100px;
    padding-right: 10px;
	}

.ways-to-shop-way hr {
	height: 1px;
	border: 0;
	background: #94B6D3;
	}	
	
.ways-to-shop-way.ways-to-shop-way-divider {
	font-size: 18px;
	color: #7F7F7E;
	overflow: hidden;
    padding-bottom: 10px;
	}
	
.ways-to-shop-way.ways-to-shop-way-divider div {
	width: 100%;
	}
	
.ways-to-shop-way.ways-to-shop-way-divider hr {
	float: right;
	width: 135px;
	}
	
.ways-to-shop-way.ways-to-shop-way-divider hr:first-child {
	width: 95px;
	float: left;
	margin-right: 5px;
	}
	
.ways-to-shop.ways-to-shop-horizontal {
    overflow: hidden;
    }

.ways-to-shop.ways-to-shop-horizontal > div {
    width: 33.33%;
    float: left;
    }

.ways-to-shop.ways-to-shop-horizontal .btn {
    margin-bottom: 0;
    }

.ways-to-shop.ways-to-shop-horizontal .ways-to-shop-way > div > div {
    width: 66.66%;
    }

.ways-to-shop.ways-to-shop-horizontal .ways-to-shop-way > div > div:first-child {
    width: 33.33%;
    }
 
.ways-to-shop.ways-to-shop-horizontal .ways-to-shop-way > div > div div:first-child {
    width: auto;
    padding-right: 20px;
    }

/* ---------- // ---------- */

/* ---------- Recipe Involvement Controls Widget */

/* -- Recipe Involvement Controls Widget Class */

.recipe-involvement-controls {
	position: absolute;
	left: -55px;
	}

.recipe-involvement-control {
    position: relative;
    }

.recipe-involvement-controls-control {
	box-sizing: border-box;
	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 10px 0;
	cursor: pointer;
	width: 65px;
	height: 65px;
	margin-bottom: 1px;
	font-size: 10px;
	font-family: Arial, sans-serf;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	}
	
.recipe-involvement-controls-control > i {
	display: block;
	padding: 0 0 5px 0;
	}
	
.recipe-involvement-controls-control .btn {
    text-transform: none;
    }

/* -- TODO: data-style */

.flyout .btn-confirm {
    float: right;
    margin-top: 2px;
    }

.flyout select,
.flyout input[type="text"] {
    width: 75%;
    }

.flyout select + .btn-confirm,
.flyout input[type="text"] + .btn-confirm {
    margin-top: 0;
    }

/* ---------- // ---------- */

/* ---------- Share Button Widget */

/* -- Share Button Widget Class */

.share-widget {
	z-index: 100;
    display: inline-block;
	}

.share-widget .btn {
    margin-bottom: 10px;
    }
	
.share-widget ~ div {
    margin-left: 10px !important;
    vertical-align: middle !important;
    line-height: 0 !important;
    }
	
/* ---------- // ---------- */
	
/* ---------- Social Icons */

.social-icons {
	padding: 10px 10px 0 10px;
	}
	
.social-icons i {
	padding: 0 5px;
	color: #7D6A92;
	}

/* ---------- // ---------- */

/* ---------- Rate Recipe */

/* -- Rate Recipe Class */

.rate-recipe {}

.rate-recipe-star {
    cursor: pointer;
    float: left;
    font-size: 33px;
    margin-bottom: 15px;
    color: #D5CFDC;
    margin-right: 5px; /* 5 Stars */
    }

.rate-recipe-star.selected,
.rate-recipe-star.hover {
    color: #FFB937;
    }

/* ---------- jQuery UI Widgets */

.range-filter {}

.range-filter-values {
	overflow: hidden;
	margin-bottom: 10px;
	}

.range-filter-values span {
	display: block;
	float: right;
	font-size: 13px;
	}
	
.range-filter-values span:first-child {
	float: left;
	}

.ui-slider {}

.ui-slider-horizontal {
	margin: 10px 10px 20px 10px;
	height: 4px;
	background: #e0e0e0;
	}

.ui-slider-horizontal .ui-slider-range {
	background: #CBCCC8;
	}

.ui-slider-horizontal .ui-slider-handle {
	width: 16px;
	height: 21px;
	background: #00569E;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	cursor: pointer;
	top: -10px;
	outline: none;
	}
	
.ui-slider-horizontal .ui-slider-handle:after {
	content: '';
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 4px solid #00569E;
	position: relative;
	top: 21px;
	display: block;
	outline: none;
	}

/* ---------- // ---------- */

/* ---------- Paging: TODO */

.search-results-paging {
	text-align: center;
	font-family: 'Arial', sans-serif;
	}

.search-results-paging-item {
	padding: 14px 17px;
	display: inline-block;
	background: #EBE9EF;
	font-size: 13px;
	line-height: 13px;
	font-weight: bold;
	color: #7C6991;
	cursor: pointer;
	margin: 0 5px 20px 5px;
	}
	
.search-results-paging-item.disabled {
	color: #CAC3D3;
	}

.search-results-paging-item.selected {
	color: #FFF;
	background: #7C6991;
	}

/* ---------- // ---------- */

/* ---------- GDA Metric */

.gda-metric {
    width: 38px;
    height: 42px;
    padding-top: 10px;
    font-size: 11px;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 20px;
    }

.gda-metric-name {
    font-size: 8px;
    padding-bottom: 2px;
    }

.gda-metric-amount {
    padding-bottom: 10px;
    }

.gda-metric.gda-metric-calories {
    background: url('/images/2014/gda-calories.png');
    }

.gda-metric.gda-metric-sugar {
    background: url('/images/2014/gda-sugar.png');
    }

.gda-metric.gda-metric-fat {
    background: url('/images/2014/gda-fat.png');
    }

.gda-metric.gda-metric-saturates {
    background: url('/images/2014/gda-saturates.png');
    }

.gda-metric.gda-metric-salt {
    background: url('/images/2014/gda-salt.png');
    }

.recipe-tool-gda-alt {
	position: relative;
	}

.recipe-tool-gda-alt:before {
    content: '';
    border-right: 10px solid #EBE9EF;
    border-top: 90px solid transparent;
    position: absolute;
    left: -30px;
    top: -54px;
    border-bottom: 90px solid transparent;
}

.recipe-tool-gda-alt .gda-metric {
	font-family: 'Tesco', Arial, sans-serif;
	width: 37px;
	height: 46px;
	font-weight: bold;
	font-size: 12px;
	margin-left: -4px;
	-webkit-font-smoothing: auto;
	}

.recipe-tool-gda-alt li:first-child .gda-metric {
	margin-left: 1px;
	}

.recipe-tool-gda-alt li:last-child {
	margin-left: 10px;
	}

.recipe-tool-gda-alt .gda-metric-name {
	font-size: 9px;
	padding-bottom: 1px;
	}

.recipe-tool-gda-alt .gda-metric-name span {
	font-size: 9px;
	letter-spacing: -1px;
	line-height: 9px;
	}

.recipe-tool-gda-alt .gda-metric-amount {
	font-size: 13px;
	padding-bottom: 6px;
	}

.recipe-tool-gda-alt .gda-metric-percentage span {
	font-size: 10px;
	}

.recipe-tool-gda-alt .gda-metric-calories .gda-metric-amount {
	font-size: 8px;
	line-height: 8px;
	padding-bottom: 3px;
	}

/* ---------- New GDAs */

.gda-widget {
    margin-bottom: 20px;
    }
.gda-widget .gda-values-list {
    padding-bottom: 12px;
    }
.gda-widget .gda-values-list:after {
    content: '';
    display: table;
    clear: both;
    }
.gda-widget .gda-values-list li {
    color: #000;
    position: relative;
    line-height: 1;
    text-align: center;
    float: left;
    width: 48px;
    height: 68px;
    margin-right: 3px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('/images/2014/gda/gda-sprite.png');
    }
.gda-widget .gda-values-list li .heading {
    display: block;
    font-size: 10px;
    padding-top: 7px;
    }
.gda-widget .gda-values-list li .value {
    display: block;
    font-size: 17px;
    padding-top: 6px;
    font-weight: bold;
    }
.gda-widget .gda-values-list li .percentage {
    display: block;
    font-size: 15px;
    position: absolute;
    bottom: -1px;
    width: 50px;
    text-align: center;
    font-weight: bold;
    }
.gda-widget .gda-values-list li .kj {
    padding-top: 4px;
    }
.gda-widget .gda-values-list li .kj,
.gda-widget .gda-values-list li .kcal {
    display: block;
    font-weight: bold;
    font-size: 11px;
    }
.gda-widget .gda-values-list li.low {
    background-position: -144px 0;
    }
.gda-widget .gda-values-list li.medium {
    background-position: -48px 0;
    }
.gda-widget .gda-values-list li.high {
    background-position: -96px 0;
    }
.gda-widget .gda-reference {
    font-size: 13px;
    line-height: 1.2;
    color: #666;
    padding-bottom: 20px;
    }



/* ---------- // ---------- */

/* ---------- Advert */

/* -- Advert Class */

.advert {
	margin: 0 auto 20px auto;
	cursor: pointer;
	overflow: hidden;
	}
	
/* -- Advert Sub-classes */
	
.advert-mpu {
	width: 300px;
	}
	
.advert-skyscraper {
	width: 160px;
	}