/*================--------------------- CSS RESET START ---------------------================*/
body {
	font-family: "Open Sans", Tahoma, helvetica, arial, sans-serif;
	font-size: 14px;
	color: #333;
	margin: 20px 0;
}

.container.modified {
	width: 1000px;
	padding: 0;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
	padding: 0;
	margin: 0;
}

input[type="text"] {
	border: 1px solid #CCC;
	padding: 5px 10px;
}

input:focus {
	outline: none;
	border: 1px solid #E73922;
	box-shadow: none;
}

.tooltip-inner {
	white-space: nowrap;
	max-width: none;
}

.checkbox label:after {
	color: #588A0F;
}

.item {
	font-family: "Open Sans", Tahoma, helvetica, arial, sans-serif;
}

/*================--------------------- CSS RESET END ---------------------================*/

#sidebar {
	width: 300px;
	background: #FFF;
	padding-left: 0;
	padding-right: 0;
}

#recipe-page-wrapper .row {
	margin-right: 0;
	margin-left: 0;
}

#recipe-wrapper {
	width: 700px;
	padding-left: 0;
}

#recipe-header {
	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-ms-flex-pack: justify;
	justify-content: space-between;

	-ms-flex-align: start;
	align-items: flex-start;

	border-bottom: 1px dashed #CCC;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

#recipe-title {
	max-width: 80%;
}

#recipe-title h1 {
	font-size: 2em;
	margin-bottom: 20px;
}

#recipe-select-menus .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: auto;
}

#recipe-select-menus .bootstrap-select.btn-group .dropdown-menu {
	border-radius: 0;
}

.bootstrap-select .btn {
	font-size: 12px;
	border-radius: 0;
}

.recipe-rating {
	text-align: right;
}

.recipe-rating span {
	font-size: 12px;
	font-weight: normal;
	display: block;
	opacity: 0.6;
}

.recipe-rating span:first-of-type {
	margin-bottom: 5px;
}

.recipe-rating i.fa,
.recipe-rating i.far,
.recipe-rating i.fas {
	font-size: 20px;
	color: #588A0F;
	margin-right: 5px;
}

#rating-stars {
	cursor: pointer;
}

.recipe-rating i.fa:last-of-type {
	margin-right: 0;
}

#recipe-description {
	margin-bottom: 20px;
}

#recipe-description #anecdote {
	font-style: italic;
	margin-top: 10px;
}

#recipe-details {
	border: 1px solid #CCC;
}

#recipe-details-main-wrapper {
	padding: 10px 10px 0 10px;
}

#recipe-image {
	position: relative;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

#zoom-recipe-image {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.5);
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;

	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
}

#recipe-image:hover #zoom-recipe-image {
	opacity: 1;
	cursor: pointer;
}

#zoom-recipe-image i.fa {
	font-size: 20px;
}

#recipe-image .modal-content {
	border-radius: 0;
}

#fullImageModel img {
	max-width: 100%;
}

#recipe-details-info {
	padding-right: 0;
}

#recipe-details-params {
	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-ms-flex-pack: start;
	justify-content: flex-start;
}

#recipe-details-params span {
	width: 50%;
	margin-bottom: 1%;
}

#recipe-details-params span.cooking-dish {
	width: 100%;
	margin-bottom: 0;
}

#recipe-details-params i.fa {
	margin-right: 5px;
}

#servings-dropdown {
	margin-bottom: 15px;
}

#servings-dropdown .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
	width: auto;
}

#servings-dropdown .bootstrap-select .btn {
	font-size: inherit;
}

#recipe-print {
	color: #588A0F;
	font-size: 18px;
}

.modal-backdrop {
	position: relative;
}

#printModal .modal-content,
#addtomealplanModal .modal-content {
	border-radius: 0;
}

#printModal .modal-title small,
#addtomealplanModal .modal-title small {
	display: block;
	opacity: 0.5;
	margin-top: 5px;
}

#printModal .modal-body ul,
#addtomealplanModal .modal-body ul {
	list-style-type: none;
}

#printModal .modal-body ul li:not(:last-of-type),
#addtomealplanModal .modal-body ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

#printModal .modal-body ul li .checkbox,
#addtomealplanModal .modal-body ul li .checkbox {
	margin-bottom: 0;
	margin-top: 0;
}

#printModal .modal-body ul li ul,
#addtomealplanModal .modal-body ul li ul {
	margin-left: 20px;
	margin-top: 10px;
}

#addToMealPlan .modal-footer {
	text-align: center;
}

#printModal .modal-footer .btn,
#addtomealplanModal .modal-footer .btn {
	border-radius: 3px;
	padding: 7px 11px;
	border: none;
	margin: 5px;
}

#printModal .modal-footer .btn,
#addtomealplanModal .modal-footer .btn-dismiss {
	border: 1px solid #ccc;
}

#printModal .modal-footer .btn.btn-primary,
#addtomealplanModal .modal-footer .btn.btn-primary {
	background-color: #588A0F;
}

#printModal .modal-footer .btn.btn-primary:hover,
#addtomealplanModal .modal-footer .btn.btn-primary:hover {
	background-color: #A0C963;
}

#printModal .modal-footer .btn i.fa,
#addtomealplanModal .modal-footer .btn i.fa {
	margin-right: 10px;
}

#addToMealPlan .modal-footer .btn.btn-primary,
#addtomealplanModal .modal-footer .btn.btn-primary {
	background-color: #588A0F;
}

#addToMealPlan .modal-footer .btn.btn-primary:hover,
#addtomealplanModal .modal-footer .btn.btn-primary:hover {
	background-color: #A0C963;
}

#recipe-prices {
	display: inline-block;
	cursor: pointer;
}

#recipe-prices label {
	font-weight: normal;
	margin-bottom: 0;
	cursor: pointer;
}

#recipe-prices label i.fa {
	margin-right: 5px;
}

#recipe-prices i.fa-link {
	color: #588A0F;
	margin-left: 5px;
}

#recipe-details-info>.row:first-of-type {
	margin-bottom: 15px;
}

#recipe-details-info p {
	line-height: 1.7;
}

#cals-per-serving {
	display: inline-block;
	cursor: pointer;
}

#cals-per-serving i {
	padding-right: 5px;
}

#cals-per-serving i.fa {
	margin-right: 5px;
}

#recipe-cals-badges ul#recipe-badges {
	list-style-type: none;
	margin: 10px 0 20px 0;
}

#recipe-cals-badges ul#recipe-badges li {
	display: inline-block;
}

#actions-buttons {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
	font-size: 13px;
	margin: 15px 10px 10px 10px;
}

#actions-buttons i.far {
	margin-right: 5px;
	color: #FFF;
	font-weight: bold;
}

#actions-buttons a {
	color: #FFF;
}

#actions-buttons .item {
	background: #588A0F;
	padding: 7px;
	text-align: center;
	cursor: pointer;
	border-radius: 3px;
	margin: 1px;
}

#actions-buttons .item:hover {
	background: #A0C963;
}

#actions-buttons .item a:hover,
#actions-buttons .item a:focus {
	text-decoration: none;
}

#actions-buttons .itemRemove {
	background: #a94442;
	padding: 7px;
	text-align: center;
	cursor: pointer;
	border-radius: 3px;
}

@media screen and (max-width: 500px) {
	#actions-buttons .itemRemove {
		width: 100%;
		margin-bottom: 10px;
	}
}

#actions-buttons .itemRemove:hover {
	background: #c97b80;
}

#actions-buttons .itemRemove a:hover,
#actions-buttons .itemRemove a:focus {
	text-decoration: none;
}

#recipe-share-buttons {
	margin: 15px 10px !important;
}

#after-recipe-ad {
	height: 180px;
	margin: 15px 0 15px;
}

#info-tabs {
	margin-top: 15px;
}

#info-tabs .tab-content {
	border: 1px solid #CCC;
	padding: 15px 15px 20px;
}

#info-tabs .nav-tabs {
	border-bottom: none;
	margin-left: 10px;
}

#info-tabs .nav-tabs>li.active>a:hover,
#info-tabs .nav-tabs>li.active>a:focus {
	border-bottom: 1px solid #FFF;
}

#info-tabs .nav>li>a:hover {
	background-color: #F4F9EC;
}

#info-tabs .nav>li>a:focus {
	background-color: #F2FBE9;
}

#info-tabs .nav-tabs>li.active a {
	background: #FFF;
	border-color: #CCC;
	border-bottom-color: #FFF;
}

#info-tabs .nav-tabs>li>a {
	color: #000;
	background: #A0C963;
	margin-left: 2px;
	margin-right: 2px;
	border: 1px solid #CCC;
	border-radius: 0;
	font-size: 18px;
}

[role="tabpanel"] .single-block:not(:last-of-type) {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #CCC;
}

[role="tabpanel"] h2 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 20px;
}

#recipe[role="tabpanel"] table {
	width: 100%;
}

#recipe[role="tabpanel"] table tr td {
	padding: 10px;
}

#recipe[role="tabpanel"] table tr td.special {
	text-align: center;
	min-width: 50px;
}

#recipe[role="tabpanel"] table tr td.special i.fa {
	color: #588a0f;
	font-weight: bold;
	padding-left: 0;
	padding-right: 0;
}

#recipe[role="tabpanel"] table tr td a.sub-recipe-link {
	color: #588A0F;
}

#recipe[role="tabpanel"] table tr td a.sub-recipe-link:before {
	font-family: "Font Awesome 5 Free", serif;
	content: "\f0c1";
	float: left;
	margin-top: 2px;
	margin-right: 5px;
	font-weight: 700;
}

#recipe[role="tabpanel"] .table-bordered {
	border: none;
}

#recipe[role="tabpanel"] .table-bordered>thead>tr>th,
#recipe[role="tabpanel"] .table-bordered>tbody>tr>th,
#recipe[role="tabpanel"] .table-bordered>tfoot>tr>th,
#recipe[role="tabpanel"] .table-bordered>thead>tr>td,
#recipe[role="tabpanel"] .table-bordered>tbody>tr>td,
#recipe[role="tabpanel"] .table-bordered>tfoot>tr>td {
	border-bottom: 1px dashed #CCC;
	border-top: none;
	border-left: none;
	border-right: none;
}

#recipe[role="tabpanel"] .table-bordered>tbody>tr:last-of-type>td {
	border-bottom: none;
	padding-bottom: 0;
}

#recipe[role="tabpanel"] ul {
	padding-left: 30px;
	list-style-type: decimal;
}

#recipe[role="tabpanel"] ul li:not(:last-of-type) {
	margin-bottom: 15px;
}

#recipe[role="tabpanel"] ul li a {
	color: #588A0F;
}

#methods-ad {
	float: right;
	width: 300px;
	height: 250px;
	background-color: #FFF;
	margin-left: 10px;
}

#recipe[role="tabpanel"] #recommended-side-dished ul {
	list-style-type: none;
	padding-left: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#recipe[role="tabpanel"] #recommended-side-dished ul li {
	text-align: center;
	margin-bottom: 0;
}

#recipe[role="tabpanel"] #recommended-side-dished ul li:nth-of-type(4) {
	margin-bottom: 0;
}

#recipe[role="tabpanel"] #recommended-side-dished ul li img {
	width: 212px;
	height: 150px;
	margin-bottom: 10px;
}

#my-notes[role="tabpanel"] p {
	margin-bottom: 20px;
}

#my-notes[role="tabpanel"] ul {
	padding-left: 30px;
	margin-bottom: 20px;
}

[role="tabpanel"] textarea {
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	padding: 10px;
	margin-bottom: 5px;
	background: #FFF;
	border-color: #CCC;
}

#my-notes[role="tabpanel"] label {
	font-weight: normal;
}

[role="tabpanel"] .action-button {
	background: #588A0F;
	color: #FFF;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	border: none;
	padding: 5px 10px;
}

[role="tabpanel"] .delete-button {
	border-radius: 3px;
	margin-right: 5px;
	letter-spacing: 1px;
	padding: 5px 10px;
	text-transform: uppercase;
}

[role="tabpanel"] .action-button:hover {
	background-image: linear-gradient(#A0C963, #588a0f);
	color: #FFF;
	text-decoration: none;
}

[role="tabpanel"] .action-button i.fa {
	margin-right: 10px;
}

#my-notes[role="tabpanel"] .checkbox {
	margin-bottom: 0;
}

#review-details span {
	margin-right: 5px;
}

#review-details .radio {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 0;
}

#review-details .radio:not(:last-of-type) {
	margin-right: 10px;
}

#review-details .radio label {
	padding-left: 0;
}

#review-details .radio label::after {
	background-color: #69A311;
}

#your-review-rating {
	display: inline-block;
}

#your-review-rating i.fa {
	font-size: 16px;
	margin-right: -4px;
}

#your-review-rating i.fa-star {
	color: #333;
}

#review-tips {
	margin-top: 20px;
}

#show-review-tips,
#show-notes-tips {
	display: block;
	margin-bottom: 20px;
	color: #588A0F;
	cursor: pointer;
}

#review-tips-content,
#notes-tips-content {
	display: none;
	padding-left: 10px;
}

#review-tips-content p:last-of-type {
	margin-bottom: 20px;
}

#review-tips a {
	color: #588A0F;
}

#review-tips p:first-of-type {
	margin-bottom: 10px;
}

#reviews[role="tabpanel"] .recipe-rating {
	text-align: left;
	padding-bottom: 20px;

	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-ms-flex-pack: start;
	justify-content: flex-start;

	border-bottom: 1px dashed #CCC;
}

#reviews[role="tabpanel"] .recipe-rating span {
	margin-left: 20px;
	margin-bottom: 0;
}

#reviews-summary {
	display: block;
	margin-bottom: 10px;
}

#reviews-params {
	text-align: center;
	padding-top: 20px;
	margin-top: 20px;
}

#sort-by {
	text-align: center;
	margin: 15px 0 0 0;
}

#reviews-params a,
#sort-by a {
	color: #588A0F;
}

#reviews-params ul.pagination {
	display: inline-block;
	margin: 0;
}

#reviews-list {
	margin-top: 20px;
}

.review-single:not(:last-of-type) {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #CCC;
}

.review-single h5 {
	font-weight: bold;
}

.review-single h5 .reviewer.vcard {
	float: left;
}

.single-review-rating {
	margin-left: 5px;
}

.single-review-rating i.fa,
.single-review-rating i.far {
	margin-right: -6px;
}

#single-review-date {
	font-size: 12px;
}

.single-review-body {
	margin: 20px 0;
	line-height: 1.5;
}

.single-review-body .single-review-img {
	display: block;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	width: 50px;
	height: 50px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.single-review-voting span {
	padding: 3px 5px 3px 10px;
	border: 1px solid #CCC;
	cursor: pointer;
}

.single-review-voting span i.fa {
	margin-right: 10px;
}

#single-review-date,
#recipe-again,
.single-review-voting {
	opacity: 0.7;
}

.rating-number {
	border: none !important;
	border-left: 1px solid #CCC !important;
	margin-left: 10px;
}

#nutrition-info[role="tabpanel"] .single-column:nth-of-type(odd) {
	padding-left: 0;
	border-right: 1px dashed #CCC;
}

#nutrition-info[role="tabpanel"] .single-column:nth-of-type(even) {
	padding-right: 0;
}

#nutrition-table-wrapper {
	border: 2px solid #333;
	background: #FFF;
	padding: 0.25em;
	text-align: left;
	margin: 0 auto;
}

#nutrition-table-wrapper {
	letter-spacing: 0;
}

#nutrition-table-wrapper .legend {
	font-size: 0.95em;
	margin: 0 0 10px 0;
}

#nutrition-table-wrapper table.nutrients {
	border: 0;
	border-top: 3px solid #333;
	width: 100%;
	border-collapse: collapse;
}

#nutrition-table-wrapper table.nutrients thead td {
	font-weight: bold;
	border-bottom: 2px solid #333;
}

#nutrition-table-wrapper table.nutrients p.amount {
	float: left;
}

#nutrition-table-wrapper table.nutrients p.daily_value {
	float: right;
}

#nutrition-table-wrapper table.nutrients tfoot td {
	font-size: 0.8em;
}

#nutrition-table-wrapper table.nutrients p {
	margin: 0;
}

#nutrition-table-wrapper table.nutrients tbody td {
	border-bottom: 1px solid #333;
}

#nutrition-table-wrapper table.nutrients tbody td.protein {
	border-bottom-width: 3px;
}

#nutrition-table-wrapper table.nutrients td {
	padding: 5px;
}

#nutrition-table-wrapper table.nutrients tbody tr:last-of-type td {
	border-bottom: none;
}

table.nutrients tr td {
	vertical-align: top;
}

#nutrition-table-wrapper table.nutrients p.nutrient {
	float: left;
	font-weight: bold;
}

#nutrition-table-wrapper table.nutrients tbody p.amount {
	margin-left: 0.5em;
}

#nutrition-table-wrapper table.nutrients p.amount {
	float: left;
}

#nutrition-table-wrapper table.nutrients td.omega_6 p.nutrient,
#nutrition-table-wrapper table.nutrients td.omega_3 p.nutrient,
#nutrition-table-wrapper table.nutrients td.fibre p.nutrient,
#nutrition-table-wrapper table.nutrients td.sugars p.nutrient,
#nutrition-table-wrapper table.nutrients td.net-carbs p.nutrient {
	padding-left: 1em;
	font-weight: normal;
}

#nutrition-table-wrapper table.nutrients td.saturated_and_trans_fat p {
	float: left;
}

#nutrition-table-wrapper table.nutrients td.saturated_and_trans_fat p.daily_value {
	margin-top: 0.5em;
	float: right;
}

.more-info-button {
	text-align: center;
	margin-top: 20px;
}

#diabetes-exchanges-wrapper {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px dashed #CCC;
}

#diabetes-table {
	width: 100%;
	border-spacing: 0.2em;
	border-collapse: separate;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category {
	color: #FFF;
	width: 8.5em;
	padding: 3px 5px;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-number {
	text-align: center;
	width: 72px;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-fruits {
	background-color: #f57615;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-vegetables {
	background-color: #1faf46;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-milk {
	background-color: #4c83cc;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-dairy {
	background-color: #4c83cc;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-other-carbs {
	background-color: #db097a;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-other {
	background-color: #f7b3d6;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-other_carbs {
	background-color: #f7b3d6;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-meats {
	background-color: #9c1116;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-fats {
	background-color: #193c7f;
}

.yui3-soscuisine-diabetic-exchange-groups-body-category-starches {
	background-color: #d4910a;
}

#yui3-soscuisine-diabetic-exchange-groups-switch-string {
	width: 4.5em;
	text-align: center;
}

.more-meal-plans {
	margin-top: 10px;
	text-align: center;
}

.more-meal-plans a {
	color: #588A0F;
	font-size: 12px;
}

#food-guide {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px dashed #CCC;
}

.foodGroups table td,
.FoodGroups table th {
	padding: 0.25em;
	margin: 0;
	white-space: nowrap;
	vertical-align: middle;
}

.foodGroups table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 10px;
}

tr.foodGroup:not(:last-of-type) {
	border-bottom: 1px solid #EEE;
}

.foodGroup .icon {
	text-align: left;
}

.foodGroup .icon img {
	margin-right: 5px;
}

.foodGroup .name {
	font-weight: bold;
}

.foodGroup .servingSize {
	text-align: right;
}

.foodGroup .servingSize {
	text-align: right;
}

.recipe_nutritional_claims dt {
	font-weight: bold;
}

.recipe_nutritional_claims dd {
	margin-left: 1.5em;
	margin-bottom: 0.5em;
}

#diabetes-table caption {
	color: #666;
	padding-top: 0;
}

.block-subtitle:not(caption) {
	display: block;
	color: #666;
	margin-bottom: 10px;
}

#cost-info h2 small {
	margin-left: 0;
}

ul#list-of-prices-per-supermarket {
	list-style-type: none;
	margin-bottom: 20px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

ul#list-of-prices-per-supermarket li {
	display: block;
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}

ul#list-of-prices-per-supermarket li:not(:last-of-type) {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dashed #CCC;
}

ul#list-of-prices-per-supermarket li.without-saving span.without-saving-placeholder {
	background-color: #EEE;
	width: 150px;
	padding: 10px;
	text-align: center;
	font-size: 15px;
	font-weight: normal !important;
	border: 1px solid #CCC;
	margin-right: 20px !important;
}

ul#list-of-prices-per-supermarket li img,
ul#list-of-prices-per-supermarket li span {
	display: block;
}

ul#list-of-prices-per-supermarket li.best-price span:nth-of-type(2) i.fa {
	display: block;
	font-size: 20px;
	color: #588A0F;
	margin-left: 10px;
	float: right;
}

ul#list-of-prices-per-supermarket li span:first-of-type {
	margin-right: 10px;
	font-weight: bold;
}

ul#list-of-prices-per-supermarket li img {
	width: 150px;
	margin-right: 20px;
}

#cost-notice {
	font-style: italic;
}

#promotional-text {
	text-align: center;
	padding-top: 20px;
}

#promotional-text h3 {
	font-size: 18px;
	margin-bottom: 20px;
}

#promotional-text h4 {
	font-size: 18px;
	margin-bottom: 30px;
}

#promotional-text span {
	display: block;
	margin-top: 15px;
	font-size: 12px;
	opacity: 0.8;
}

#promotional-text .action-button {
	font-size: 18px;
	padding: 10px 15px;
	text-transform: none;
}

#promotional-text .action-button i.fa {
	margin-right: 10px;
}

#after-recipe-buttons {
	margin: 30px 0 0 0;
	padding-top: 30px;
	border-top: 1px dashed #CCC;
}

#after-recipe-buttons .after-recipe-single-button a {
	background: #588A0F;
	padding: 7px 20px;
	text-align: center;
	border-radius: 3px;
	color: #FFF;
}

#after-recipe-buttons .after-recipe-single-button a:hover {
	background-color: #A0C963;
	text-decoration: none;
}

#after-recipe-buttons .after-recipe-single-button a i.fa {
	margin-right: 10px;
}

#recipe-latest-comments {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dashed #CCC;
}

#recipe-latest-comments h2 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

#recipe-latest-comments #view-all-reviews {
	color: #69A311;
	font-size: 12px;
	margin-left: 0;
}

#recipe-latest-comments .review-single {
	padding-left: 20px;
	padding-bottom: 0;
	border-left: 5px solid #EEE;
	border-bottom: none;
}

#recipe-latest-comments .review-single:first-of-type {
	margin-top: 20px;
}

#recipe-latest-comments .review-single:not(:last-of-type) {
	margin-bottom: 30px;
}

#latest-reviews-add a,
#recipe-share-buttons a.add-private-note {
	background: #588A0F;
	padding: 7px 20px;
	text-align: center;
	border-radius: 3px;
	color: #FFF;
}

#latest-reviews-add a:hover,
#recipe-share-buttons a.add-private-note:hover {
	background-color: #A0C963;
	text-decoration: none;
}

#latest-reviews-add a i.fa,
#recipe-share-buttons a.add-private-note i.fa {
	margin-right: 10px;
}

.add-private-note {
	font-style: normal;
	font-size: 13px;
}

#recipe-tags {
	margin: 30px 0;
	line-height: 1.7;
}

#recipe-tags h2 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

#recipe-tags a {
	color: #69A311;
}

#recipe-tags i.fa {
	margin-right: 5px;
}

.recipe-you-may-like {
	margin-bottom: 30px;
}

.recipe-you-may-like#recipe-may-like {
	padding: 30px 0;
	margin: 30px 0;
	border-bottom: 1px dashed #CCC;
	border-top: 1px dashed #CCC;
}

.recipe-you-may-like h2 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

.recipe-you-may-like ul {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	list-style-type: none;
	margin-top: 20px;
}

.recipe-you-may-like ul li {
	width: 31%;
	text-align: center;
	margin-bottom: 10px;
}

.recipe-you-may-like ul li img {
	width: 100%;
	height: 150px;
}

.recipe-you-may-like ul li:nth-of-type(4),
.recipe-you-may-like ul li:nth-of-type(5),
.recipe-you-may-like ul li:nth-of-type(6) {
	margin-bottom: 0;
}

.recipe-you-may-like ul li:first-of-type {
	margin-left: 0;
}

.recipe-you-may-like ul li:last-of-type {
	margin-right: 0;
}

.recipe-you-may-like ul li a {
	color: #69A311;
}

.recipe-you-may-like ul li img {
	margin-bottom: 5px;
}

.hidden {
	display: none;
}

.recipe-validation-message {
	float: right;
	color: #69A311;
	font-weight: bold;
}

.recipe-error-message {
	float: right;
	color: #E73922;
	font-weight: bold;
}

.usefulReview {
	color: #69A311;
}

a.reviewsTotalShortcut,
a.reviewsWithRatingOnly,
a.reviewsTotalShortcut:hover,
a.reviewsWithRatingOnly:hover,
a.reviewsMakeAgainPercentage,
a.reviewsTotalShortcut:hover,
a.reviewsMakeAgainPercentage:hover {
	color: #333;
	text-decoration: none;
	cursor: hand;
}

@media screen and (min-width: 768px) {
	#addtomealplanModal .modal-dialog {
		width: 650px;
	}
}

@media (max-width: 768px) {
	.addToMealPlanRow .col-xs-12 {
		margin-bottom: 10px;
	}

	.addToMealPlanRow .fa {
		display: block;
		margin: 0 10px;
	}
}


#modalIngredient>.modal-dialog>.modal-content>.modal-body {
	overflow: auto;
}

#recipe-prices a.modalBox {
	color: #e73922;
	font-weight: bold;
}

#main {
	margin-top: 15px;
}

#fullImageModel .modal-body {
	text-align: center;
}

.addToMealPlanRow {
	padding-top: 5px;
}

.alert-danger a:link {
	color: #a94442 !important;
	font-weight: bold;
}

.alert-danger a:hover {
	color: #a94442 !important;
	font-weight: bold;
}

.alert-danger a:visited {
	color: #a94442 !important;
	font-weight: bold;
}

.nav>li>a {
	padding: 10px 12px !important;
	font-size: 14px !important;
}

#recipe[role=tabpanel] #recommended-side-dished ul {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

#recipe[role=tabpanel] #recommended-side-dished ul li {
	margin-right: 5px;
	margin-bottom: 10px;
}

#reviews-params .pagination li.active {
	background: #588A0F;
	color: #FFF;
}

#review-params .pagination li:hover a {
	background: #A0C963;
}

.single-review-voting {
	clear: both;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background-color: #588a0f;
	border-color: #337ab7;
	color: #fff !important;
	cursor: default;
	z-index: 3;
}

#recipe-header {
	align-items: center;
	-ms-grid-row-align: center;
}

#recipe-title h1 {
	margin-bottom: 0;
}

[role="tabpanel"] .action-button:hover {
	background-color: #A0C963 !important;
	box-shadow: none;
}

[role="tabpanel"] .action-button {
	border-radius: 3px !important;
}

span.hasTooltip {
	border-bottom: 1px none black;
	cursor: default;
}

.removeMenu,
.addMenu {
	color: #588a0f;
	font-size: 20px;
	padding-top: 5px;
}

#SAFDesc {
	display: block;
	position: relative;
	top: -250px;
	visibility: hidden;
}

div.hfaq__question {
	color: #588A0F;
}