/*
 *  Theme Name: The Woks of Life
 *  Theme URI: https://www.oncecoupled.com
 *
 *  Description: Custom Genesis child theme. Made with love!
 *  Tags: custom-made, genesis, child-theme
 *
 *  Author: Once Coupled
 *  Author URI: https://www.oncecoupled.com
 *
 *  Version: 1.0.0
 *  Template: genesis
 *  Template Version: 3.0.2
 *
 *  Text Domain: once-coupled-the-woks-of-life
 *  License: All rights reserved.
 *
 *  Notes: elements in this file are client-specific and will
 *  typically be re-written from scratch in each theme. #5
 */

/* ================================
[ Unique ]
================================ */

/* ---------- [ Table of Contents ] ---------- */

/**
 * Notes
 * - TOC (you are here)
 *
 * Stylized Defaults
 * - Custom Classes
 * - Entry Meta
 * - In-Post Headers
 * - In-Post Lists
 * - Sticky Nav
 *
 * ACF
 * - Bio
 * - CTA & Subscribe
 * - Featured Images (Logos)
 * - Featured Categories
 * - Featured Posts
 * - Manual Features
 * - Social Icons
 *
 * Add-ons
 * - Archive Nav
 * - Modal
 * - Quick Links
 *
 * Plugins
 * - AdThrive
 * - Akismet
 * - Jetpack
 * - Mediavine
 * - Recipes (Tasty, WPRM)
 * - Related Posts for WordPress
 * - Grow (Social Icons previously Social Pug)
 *
 * Widgets
 *
 * Page Templates
 * - About
 * - Blog
 * - Contact
 * - Home
 * - Recipes
 * - Shop
 * - Start Here
 */

/* ================================
[ Stylized Defaults ]
================================ */

/* ---------- [ Custom Classes ] ---------- */

.single .content-sidebar-wrap {
	margin-top: 20px;
}

@media screen and (min-width: 1024px) {
	.single .content-sidebar-wrap {
		margin-top: 27px;
	}
}

/* [ Header: Background Icons ] */

/* Hiden for now for testing, but if decided to keep hidden, we need to remove from PHP. */
.before-header .before-header-right .social .wrap {
	display: none;
}

/* Desktop Only , total 8 Icons , 4 in each row */
@media screen and (min-width: 1024px) {
	.before-header .before-header-right .social,
	.before-header .before-header-left {
		position: relative;
		transform-style: preserve-3d;
	}

	.before-header-right .social::before {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-6.png)
			no-repeat center;
		background-size: cover;
		height: 60px;
		width: 125px;
		display: block;
		position: absolute;
		left: -70px;
		top: -30px;
		transform: rotate(-15deg);
	}

	.before-header-right .social::after {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-2.png)
			no-repeat center;
		background-size: cover;
		height: 60px;
		width: 60px;
		display: block;
		position: absolute;
		right: 50px;
		top: -25px;
		transform: translateZ(
			-1px
		); /* needed icon to go behind the Social icons and simple z-index does not work here */
	}

	.before-header-left::before {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-3.png)
			no-repeat center;
		background-size: cover;
		height: 69px;
		width: 80px;
		display: block;
		position: absolute;
		top: -12px;
		transform: rotate(-5deg);
		right: 200px;
	}

	.nav-primary .menu::after {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-4.png)
			no-repeat center;
		background-size: cover;
		height: 55px;
		width: 130px;
		display: block;
		position: absolute;
		top: -40px;
		right: -120px;
		transform: rotate(-15deg);
	}

	/* Second Row For Last 4 Icons  */

	.nav-primary > .wrap,
	.site-header > .wrap {
		position: relative;
	}

	.nav-primary > .wrap::before {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-5.png)
			no-repeat center;
		background-size: cover;
		height: 67px;
		width: 80px;
		display: block;
		position: absolute;
		top: 50px;
		left: -100px;
		z-index: 9;
	}

	/* last icon 8th */
	.nav-primary > .wrap::after {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-8.png)
			no-repeat center;
		background-size: cover;
		height: 63px;
		width: 125px;
		display: block;
		position: absolute;
		bottom: -40px;
		right: -20px;
	}

	/* Cannot use on nav-primary otherwise icon will show above submenu or will not show if less z-index */

	.nav-primary > .wrap > .menu > .menu-item:first-of-type::before {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-1.png)
			no-repeat center;
		background-size: cover;
		width: 130px;
		height: 64px;
		display: block;
		position: absolute;
		top: 44px;
		left: 120px;
		overflow: hidden;
	}

	.nav-primary > .wrap > .menu > .menu-item.split::after {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-7.png)
			no-repeat center;
		background-size: cover;
		height: 57px;
		width: 60px;
		display: block;
		position: absolute;
		bottom: -52px;
		right: -25px;
	}
}

/* Retina images for header icons (above) */
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min-device-pixel-ratio: 1.5) {
	.before-header-right .social::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-6@2x.png);
	}

	.before-header-right .social::after {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-2@2x.png);
	}

	.before-header-left::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-3@2x.png);
	}

	.nav-primary .menu::after {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-4@2x.png);
	}

	.nav-primary > .wrap::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-5@2x.png);
	}

	.nav-primary > .wrap::after {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-8@2x.png);
	}

	.nav-primary > .wrap > .menu > .menu-item:first-of-type::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-1@2x.png);
	}

	.nav-primary > .wrap > .menu > .menu-item.split::after {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-header-7@2x.png);
	}
}

/* [ Header: Mobile Button ] */

#header-mobile-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 58px;
	margin-left: 10px;
	text-align: center;
	max-width: 90px;
}

@media screen and (min-width: 375px) {
	#header-mobile-button {
		max-width: none;
	}
}

#header-mobile-button > a {
	font-family: "Proxima Nova", sans-serif;
	display: inline-flex;
	line-height: 1.2;
	color: #222;
	border: 2px solid #f75b2b;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.1em;
	padding: 4px 8px;
	text-transform: uppercase;
	font-style: normal;
	align-items: center;
	justify-content: center;
	align-self: center;
}

@media screen and (min-width: 1024px) {
	#header-mobile-button {
		display: none;
	}
}

/* [ Header: Bottom Header ] */

.bottom-header .cta-desktop-header {
	display: none;
}

@media screen and (min-width: 1024px) {
	.bottom-header .cta-desktop-header {
		display: block;
		clear: both;
		background: #efebe3;
		margin-top: 110px;
		padding: 0;
		text-align: center;
		overflow: hidden;
		position: relative;
	}

	.bottom-header .cta-description {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.bottom-header .cta-title {
		font-family: "Proxima Nova", sans-serif;
		font-style: normal;
		text-transform: uppercase;
		color: #222;
		letter-spacing: 0.1em;
		font-size: 16px;
		line-height: 2;
		padding: 13px;
		margin-top: 0;
		margin-bottom: 0;
	}

	.bottom-header .cta-button {
		font-size: 12px;
		letter-spacing: 0.1em;
		cursor: pointer;
		opacity: 1;
	}

	.bottom-header a:hover {
		opacity: 1;
	}

	.bottom-header .cta-button:hover {
		opacity: 1;
		background: #1167ac;
		border-color: #1167ac;
	}
}

/* [ Footer: Back to Top ] */

.footer-bottom .back-to-top {
	position: absolute;
	top: 0px;
	left: 0px;
	line-height: 1;
	min-height: 44px;
	width: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: #1c75bc;
	font-size: 20px;
	font-weight: 900;
	padding: 0;
	margin-left: 0px;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
	.footer-bottom .back-to-top {
		background-color: transparent;
		width: auto;
		height: 100%;
		min-height: initial;
		color: #222;
		font-size: 12px;
		margin-left: 8px;
		letter-spacing: normal;
		display: inline-block;
		margin-left: 78px;
		position: relative;
	}

	.footer-bottom .back-to-top:hover {
		transform: scale(1.05);
	}
}

.footer-bottom .back-to-top:before {
	transform: rotate(-90deg);
	content: "\e908";
	font-family: "Icons";
	font-style: normal;
	font-weight: normal;
	speak: none;
	text-decoration: inherit;
	line-height: 1em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 17px;
	color: #fff;
	margin-right: 16px;
}

@media screen and (min-width: 1024px) {
	.footer-bottom .back-to-top::before {
		position: absolute;
		left: -46px;
		top: -12px;
		margin-top: 0;
		padding-top: 0;
		width: 38px;
		height: 38px;
		background-color: #1c75bc;
		margin-right: 0px;
	}
}

/* [ Logo Mark ] */

.logo-mark {
	position: relative;
	display: block;
	width: 112px;
	height: 112px;
	margin: 0 auto;
}

.logo-mark::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/logo-mark.svg)
		no-repeat center;
	background-size: contain;
	position: relative;
	z-index: 9;
}

/* ---------- [ Entry Meta ] ---------- */

.single .content .entry {
	position: relative;
}

.single .content .entry-header {
	position: relative;
}

.single .breadcrumb {
	margin: 14px auto;
	font-feature-settings: "kern" 0;
}

.single .breadcrumb a,
.single .breadcrumb .breadcrumb_last {
	font-size: 18px;
}

.single .breadcrumb .breadcrumb-separator {
	font-size: 12px;
}

@media screen and (min-width: 1024px) {
	.single .breadcrumb {
		margin-right: 80px;
		margin-bottom: 10px;
		margin-top: 0;
	}
}

/* [ Post Details ] */

/* [ Ordered Lists ] */

.single-entry-content ol {
	list-style-type: none;
	font-size: 20px;
	margin-left: 1.8em;
}

.single-entry-content ol > li {
	margin-bottom: 8px;
}

.single-entry-content ol > li {
	counter-increment: list-counter;
}

.single-entry-content ol > li:first-of-type {
	counter-reset: list-counter;
}

.single-entry-content ol > li::before {
	content: counter(list-counter);
	float: left;
	width: 1.7em;
	height: 1.7em;
	line-height: 23px;
	text-align: center;
	font-weight: 800;
	color: #222;
	margin-top: 0.36em;
	margin-left: -2.4em;
	font-size: 16px;
	border: 1px solid #222;
	border-radius: 50%;
	font-family: "Proxima Nova", sans-serif;
}
/* [ Unordered ] */

/* ---------- [ In-Post Styles ] ---------- */

/* ---------- [ Sticky Nav ] ---------- */

.site-title {
	padding: 0 4px;
}

@media screen and (min-width: 1024px) {
	.site-title {
		padding: 0;
	}

	.sticky-nav .nav-primary,
	.sticky-nav .site-title a .admin-bar .sticky-nav .nav-primary,
	.admin-bar .sticky-nav .site-title a {
		position: static;
	}
}

/* ---------- [ Secondary Nav ] ---------- */

/* ================================
[ ACF ]
================================ */

/* ---------- [ Bio ] ---------- */

/* [ Bio: Sidebar ] */

.sidebar .bio_widget {
	border-bottom: 4px double #777;
	padding-bottom: 20px;
}

.sidebar .bio_widget .image {
	margin-bottom: -10px;
}

@media screen and (min-width: 1024px) {
	.sidebar .bio_widget .image {
		height: 240px;
	}

	.sidebar .bio_widget .image img {
		display: block;
		height: 240px;
		width: 100%;
		object-fit: cover;
	}
}

.sidebar .bio_widget .widget-title {
	font-size: 28px;
	color: #1c75bc;
	text-transform: uppercase;
	background-color: #fff;
	display: inline-block;
	margin-top: -40px;
	margin-bottom: 0;
	padding: 10px 12px;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.sidebar .bio_widget .text {
	font-family: "Crimson Text", serif;
	font-size: 16px;
	line-height: 1.25;
	padding: 0 10px;
}

.sidebar .bio_widget .text p {
	margin-top: 0;
}

.sidebar .bio_widget .more-link-container {
	text-align: center;
}

.sidebar .bio_widget .more-link-container .more-link {
	font-family: "Crimson Text", serif;
	font-size: 16px;
	font-style: italic;
	font-feature-settings: "kern" 0;
	text-transform: lowercase;
	letter-spacing: 0;
}

.sidebar .bio_widget .more-link-container .more-link .icon-font {
	color: #f75b2b;
}

/* [ Bio: Footer ] */

/* ---------- [ CTA & Subscribe ] ---------- */

.cta {
	display: block;
}

/* [ CTA: Header (Mobile) ] */

.cta-mobile-header {
	text-align: center;
	/* width: 100%; */
	/* background-color: #8ea8af; */
}

.admin-bar .cta-mobile-header {
}

.admin-bar .site-header {
	top: 46px;
}

@media screen and (min-width: 781px) {
	.admin-bar .site-header {
		top: 32px;
	}
}

@media screen and (min-width: 1024px) {
	.admin-bar .site-header {
		top: auto;
	}
}

@media screen and (min-width: 1024px) {
	.mobile-menu-cta,
	.cta-mobile-header {
		display: none; /* @todo fix visible-on-mobile inheritence */
	}
}

.cta-mobile-header .cta-title {
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	margin: 13px 0px 15px;
	position: relative;
	top: 1px;
}

.cta-mobile-header .cta-button {
	margin: 0;
	vertical-align: middle;
	display: block;
	text-transform: lowercase;
	font-style: italic;
	font-family: "Crimson Text", serif;
	font-size: 18px;
	letter-spacing: normal;
}

.cta-mobile-header .cta-button .emphasis {
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* [ CTA: Header (Internal) ] */

/* [ CTA: Sidebar ] */
.sidebar .cta_widget {
	display: block;
	margin-bottom: 35px;
}

.sidebar .cta_widget a {
	color: #222;
}

.sidebar .cta_widget .cta-image {
	display: flex;
	padding: 5%;
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/bg-ipad.png)
		no-repeat top center;
	background-size: contain;
	align-items: center;
	justify-content: center;
	max-width: 238px;
	margin: 0 auto;
}

.sidebar .cta_widget .cta-pretitle {
	position: relative;
	width: 155px;
	margin-top: -130px;
	display: block;
	margin-bottom: 25px;
	overflow: hidden;
	position: relative;
	font-size: 24px;
	font-weight: 800;
	text-transform: uppercase;
	font-family: "Proxima Nova", sans-serif;
	letter-spacing: 0.1em;
	color: #222;
	word-spacing: 132px;
	text-align: left;
	padding: 10px;
	margin-left: 45px;
	z-index: 2;
}

/* start custom "no-ipad" class */
.sidebar .cta_widget .no-ipad .cta-image {
	background: none;
	padding: 0;
	max-width: none;
}

.sidebar .cta_widget .no-ipad .cta-pretitle {
	margin-left: 20px;
}
/* end */

.sidebar .cta_widget .cta-title {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 6px;
	font-size: 16px;
	line-height: 1;
}

@media screen and (min-width: 768px) {
	.sidebar .cta_widget .cta-title {
		font-size: 16px;
	}
}

.sidebar .cta_widget .cta-text h4 {
	font-family: "Crimson Text", serif;
	font-size: 35px;
	font-style: italic;
	text-transform: lowercase;
	letter-spacing: 0;
	font-weight: 700;
	margin: 0 0 5px;
	display: block;
	line-height: 1;
}

.sidebar .cta_widget .cta-text p {
	font-size: 20px;
	line-height: 1.23;
	margin-bottom: 12px;
	margin-top: 0;
	padding: 0 10px;
}

@media screen and (min-width: 768px) {
	.sidebar .cta_widget .cta-text p {
		font-size: 18px;
	}
}

.sidebar .cta_widget .cta-button {
	background: #1c75bc;
	padding: 15px 20px;
	letter-spacing: 0.075em;
	font-size: 16px;
}

@media screen and (min-width: 375px) {
	.sidebar .cta_widget {
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
		color: #222;
	}

	.sidebar .cta_widget .cta-pretitle {
		margin-left: 87px;
	}
}

@media screen and (min-width: 768px) {
	.sidebar .cta_widget .cta-pretitle {
		margin-left: 77px;
	}
}

.sidebar .cta_widget .cta-pretitle .emphasis {
	background: #222;
	color: #fff;
	border-radius: 50%;
	padding: 5px;
	font-family: "Crimson Text", serif;
	font-size: 22px;
	line-height: 1;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
	font-weight: 500;
	font-style: italic;
	font-feature-settings: "kern" 0;
	margin-bottom: -4px;
	margin-left: -5px;
}

.sidebar .cta_widget .cta-pretitle::before {
	content: "";
	width: 69px;
	height: 29px;
	background: #fff;
	top: 42px;
	left: 0;
	display: block;
	position: absolute;
	z-index: -1;
}

.sidebar .cta_widget .cta-pretitle::after {
	content: "";
	width: 135px;
	height: 29px;
	background: #fff;
	top: 75px;
	left: 0;
	display: block;
	position: absolute;
	z-index: -1;
}

/* Sidebar Quick Links */
.sidebar .widget_media_gallery .gallery-item {
	background-color: #f9f5ed;
	position: relative;
}

.sidebar .widget_media_gallery .gallery-item img {
	opacity: 0.2;
}

.sidebar .widget_media_gallery .gallery-caption {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 100%;
	display: block;
	transform: translate(-50%, -50%);
	font-size: 26px;
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Proxima Nova", sans-serif;
	font-style: normal;
	pointer-events: none;
}

.sidebar .widget_media_gallery .gallery-caption .emphasis {
	font-size: 26px;
	line-height: 1;
	font-family: "Crimson Text", serif;
	font-weight: normal;
	font-style: italic;
	font-feature-settings: "kern" 0;
	letter-spacing: 0;
	text-transform: lowercase;
	display: block;
}

/* [ Subscribe Widget: Sidebar ] */
.sidebar .subscribe_widget .pre-title {
	font-family: "Crimson Text", serif;
	font-feature-settings: "kern" 0;
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0;
	margin: 5px;
	text-transform: lowercase;
}

.sidebar .subscribe_widget .title {
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	font-size: 28px;
}

.sidebar .subscribe_widget .details {
	font-size: 18px;
}

@media screen and (min-width: 1024px) {
	.sidebar .subscribe_widget.pre-title {
		font-size: 32px;
		margin: 0;
	}

	.sidebar .subscribe_widget .title {
		font-size: 36px;
		font-weight: 800;
		margin-bottom: 0;
	}

	.sidebar .subscribe_widget .details {
		font-size: 20px;
	}
}

/* sidebar subscribe widget form */
.sidebar .subscribe_widget input {
	border: 2px solid #222;
	display: block;
	max-width: 100%;
	width: 100%;
	height: 52px;
	text-align: center;
}

.sidebar .subscribe_widget input[type="submit"] {
	background: #1c75bc;
	border: 2px solid #1c75bc;
}

@media screen and (min-width: 1024px) {
	.sidebar .subscribe_widget input {
		color: #000;
		font-size: 16px;
		margin: 0;
		text-align: left;
	}

	.sidebar .subscribe_widget input[type="submit"] {
		padding: 5px;
		color: #fff;
		border: none;
		text-align: center;
	}

	.sidebar .subscribe_widget input[type="submit"]:hover {
		transform: scale(0.95);
	}

	.sidebar .subscribe_widget ::-webkit-input-placeholder,
	.sidebar .subscribe_widget :-ms-input-placeholder,
	.sidebar .subscribe_widget :-moz-placeholder,
	.sidebar .subscribe_widget ::-moz-placeholder {
		color: #000;
	}
}

/* [ Social Icons ] */

.social a {
	color: #222;
	height: 53px;
	border: 2px solid #222;
	border-radius: 50%;
	width: 53px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.social .icon-font {
	margin: 0;
	padding: 0;
	line-height: 1;
}

.social .icon-font::before {
	margin: 0;
}

.social .icon-pinterest::before,
.social .icon-instagram::before {
	right: -0.5px;
}

.social .icon-youtube::before {
	left: -1px;
	top: 1px;
}

@media screen and (min-width: 414px) {
	.social a {
		margin-right: 10px;
	}
}

@media screen and (min-width: 1024px) {
	.social {
		width: auto;
		margin: 0;
		transform-style: preserve-3d;
		max-width: 288px;
	}

	.social a {
		margin-right: 5px;
		width: 39px;
		height: 39px;
		background: #f9f5ed;
	}

	.social a:hover {
		background: #1c75bc;
		border-color: #1c75bc;
		color: #fff;
	}

	social .icon-font {
		font-size: 16px;
	}
}

/* [ Social Icons: Primary Nav ] */

.nav-primary .social a {
	height: 35px;
	width: 35px;
	font-size: 19px;
}

/* Social icons placement fixing unique to each location */

@media screen and (min-width: 1024px) {
	.before-header-right .icon-font.icon-instagram {
		margin-right: 1px;
	}
	.before-header-right .icon-font.icon-pinterest {
		margin-right: 2px;
	}

	.before-header-right .icon-font.icon-youtube {
		margin-top: 0;
		margin-right: 2px;
	}

	.footer-social .social .icon-font.icon-font.icon-instagram {
		margin-bottom: 2px;
	}

	.wprm-entry-footer .social .icon-font.icon-font.icon-pinterest {
		margin-right: 2px;
	}

	.wprm-entry-footer .social .icon-font.icon-youtube {
		margin-top: 1px;
		margin-right: 2px;
	}

	.footer-social .social a:hover {
		transform: scale(1.15);
	}
}

/* [ Feature: Footer ] */
.site-footer .manual-features.top-highlighted-features {
	padding: 0;
	margin: 0 !important;
	border: none;
}

/* [ Subscribe: Footer ] */

/* ---------- [ Featured Images - Logos ] ---------- */

.featured-images > .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
	.featured-images > .wrap {
		flex-direction: row;
		margin-bottom: 45px;
	}
}

.featured-images .section-title {
	color: #666;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
	font-family: "Barlow";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
}

.featured-images .logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	flex: 1;
}

.featured-images .logos .featured-image {
	width: calc(50% - 16px);
	text-align: center;
	margin-bottom: 15px;
}

@media screen and (min-width: 375px) {
	.featured-images .logos .featured-image {
		width: calc(33% - 24px);
		text-align: center;
		margin-bottom: 15px;
	}
}

@media screen and (min-width: 1024px) {
	.featured-images .logos {
		flex-wrap: nowrap;
	}

	.featured-images .logos .featured-image {
		width: calc(100% - 16px);
		text-align: center;
		margin-bottom: 15px;
	}
}

.featured-images .featured-image .size-placement-logo {
	width: auto;
	max-height: 45px;
	vertical-align: middle;
	opacity: 0.65;
}

@media screen and (min-width: 1024px) {
	.featured-images .section-title {
		font-size: 12px;
		/* max-width: 100px; */
		text-align: center;
		line-height: 1.3;
		margin: 0;
		margin-bottom: 0;
		margin-right: 15px;
	}

	.featured-images .logos {
		margin: 0;
	}

	.featured-images .logos .featured-image {
		width: auto;
		margin: 0 15px 10px;
		text-align: center;
	}

	.featured-images .featured-image .size-placement-logo {
		width: auto;
		max-height: 30px;
		vertical-align: middle;
		opacity: 0.65;
		min-height: 100%;
	}

	.featured-images .featured-image:first-of-type .size-placement-logo {
		width: 110px;
		/* max-height: 35px; */
	}

	.featured-images .featured-image:nth-of-type(2) .size-placement-logo {
		width: 110px;
		max-height: 100%;
	}

	.featured-images .featured-image:nth-of-type(4) .size-placement-logo {
		width: 101px;
		max-height: 100%;
	}

	.featured-images .featured-image:nth-of-type(6) .size-placement-logo {
		max-width: 140px;
		min-height: 100%;
	}

	.featured-images .featured-image:nth-of-type(8) .size-placement-logo {
		width: 165px;
		max-height: 100%;
	}
}

/* ---------- [ Featured Posts ] ---------- */

/* ---------- [ Footer Featured Posts ] ---------- */

/* [ Feature: Footer ] */

.manual-features.family-favorites {
	border-top: 4px double #777;
	padding-top: 18px;
	margin-bottom: 16px;
	text-align: center;
}

.manual-features.family-favorites .section-title {
	font-family: "Proxima Nova", sans-serif;
	line-height: 1;
	font-weight: 800;
	color: #1c75bc;
	margin: 0 auto 12px;
}

.family-favorites .articles-container .entry {
	width: calc(50% - 16px);
}

.family-favorites .articles-container .entry .entry-image-link > img {
	width: 100%;
}

.family-favorites .articles-container .entry .pre-title {
	font-style: italic;
	color: #222;
	margin: 10px 0 0;
	line-height: 1;
	position: relative;
	padding-top: 15px;
}

@media screen and (min-width: 768px) {
	.family-favorites .articles-container .entry .pre-title {
		font-size: 20px;
	}
}

.family-favorites .articles-container .entry .pre-title > span {
	top: -53px;
	width: 65px;
	height: 64px;
	display: flex;
	position: absolute;
	background-size: contain;
	left: calc(50% - 32px);
	border-radius: 50%;
	border: 5px solid #fff;
}

.family-favorites .pre-title > span.bill-icon {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/bill.jpg);
}

.family-favorites .pre-title > span.judy-icon {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/judy.jpg);
}

.family-favorites .pre-title > span.kaitlin-icon {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/kaitlin.jpg);
}

.family-favorites .pre-title > span.sarah-icon {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/sarah.jpg);
}

.family-favorites .articles-container .entry .entry-title {
	margin: 2px 0 18px;
}

@media screen and (min-width: 768px) {
	.family-favorites .articles-container .entry .entry-title {
		margin-bottom: 0;
	}
}

.family-favorites .articles-container .entry .entry-title-link {
	color: #222;
	font-size: 20px;
	line-height: 1;
	display: inherit;
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.manual-features.family-favorites {
		padding-bottom: 30px;
		margin-bottom: 0;
	}

	.manual-features.family-favorites .section-title {
		max-width: 100%;
		margin-top: 15px;
		font-size: 36px;
	}

	.family-favorites .articles-container .entry {
		width: calc(100% - 16px);
		flex: 1;
	}

	.family-favorites .articles-container .entry .entry-title-link {
		letter-spacing: 0.075em;
		line-height: 1.15;
	}
}

@media screen and (min-width: 1024px) {
	.family-favorites .articles-container .entry .entry-title-link:hover {
		text-decoration: underline;
	}
}

/* [ Text Widget: Sidebar ] */

/* ---------- [ Archive Nav ] ---------- */
.archive-nav {
	padding: 20px 0 8px;
}

@media screen and (min-width: 1024px) {
	.archive-nav {
		padding: 28px 0 22px;
	}
}

.category .archive-nav,
.author .archive-nav,
.post-type-archive-video_embed .archive-nav {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.archive-nav > .wrap {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	border-bottom: 4px double #777;
	padding-bottom: 20px;
}

.category .archive-nav > .wrap,
.author .archive-nav > .wrap {
	display: block;
	border-bottom: none;
	padding-bottom: 0;
}

@media screen and (min-width: 1024px) {
	.archive-nav > .wrap {
		flex-direction: row;
		position: relative;
	}
}

.archive-nav .breadcrumb {
	width: 100%;
	margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
	.archive-nav .breadcrumb {
		margin-bottom: 10px;
	}

	.category .archive-nav .breadcrumb,
	.author .archive-nav .breadcrumb {
		top: 6px;
	}
}

.archive-nav p {
	text-align: left;
}

.archive-nav .posts-page-description,
.archive-nav .archive-description,
.archive-nav .entry-title {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.archive-nav .entry-title {
		flex-grow: 1;
		margin-top: 0;
	}
}

.archive-nav .entry-title {
	font-size: 25px;
}

@media screen and (min-width: 1024px) {
	.archive-nav .entry-title {
		font-size: 28px;
	}
}

.archive-nav .archive-description a {
	text-decoration: underline;
}

@media screen and (min-width: 1024px) {
	.archive-nav .archive-description a:hover {
		text-decoration: none;
	}
}

.archive-nav .page-description {
	flex-basis: 100%;
	width: 100%;
	font-size: 16px;
}

@media screen and (min-width: 768px) {
	.archive-nav .page-description {
		order: 3;
		font-size: 20px;
	}
}

.archive-nav .page-description a {
	text-decoration: underline;
}

@media screen and (min-width: 1024px) {
	.archive-nav .page-description a:hover {
		text-decoration: none;
	}

	.archive-nav .subcategory-list {
		order: 4;
	}
}

.archive-nav .subcategory-list .subcategory-link {
	padding: 12px 15px;
	border: 2px solid #222222;
}

@media screen and (min-width: 1024px) {
	.archive-nav .subcategory-list .subcategory-link {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.archive-nav .page-description p {
	margin-top: 0;
}

.archive-nav .page-description p:last-of-type {
	margin-bottom: 0;
}

.subcategory-list {
	margin-top: 15px;
}

.subcategory-list .subcategory-link {
	border: 2px solid #222;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #222;
	padding: 9px 10px;
	display: inline-block;
	font-family: "Barlow";
	font-weight: 500;
	margin: 5px 5px 5px 0;
}

@media screen and (min-width: 768px) {
	.subcategory-list {
		order: 3;
	}
}

@media screen and (min-width: 1024px) {
	.subcategory-list .subcategory-link:hover {
		background: #222;
		color: #fff;
		transform: scale(0.95);
		transition: 400ms;
	}
}

/* ---------- [ Modal ] ---------- */

.modal.micromodal-slide.is-open {
	z-index: 999999999999;
	position: fixed;
}

.modal .modal__container {
	background: #f9f5ed;
	padding: 210px 30px 30px;
	position: relative;
	max-width: 370px;
	min-height: 480px;
}

.modal .modal__container::before {
	content: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/ebook-vertical.svg);
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/ebook.jpg)
		bottom center no-repeat;
	background-size: 75%;
	position: absolute;
	width: 162px;
	height: 180px;
	top: 14px;
	left: calc(50% - 81px);
	padding-left: 20px;
	padding-bottom: 40px;
	overflow: hidden;
}

.modal .modal__container::after {
	content: "";
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/ipad-blank@2x.png)
		top center no-repeat;
	background-size: contain;
	position: absolute;
	width: 162px;
	height: 190px;
	top: 20px;
	left: calc(50% - 81px);
}

@media screen and (min-width: 768px) {
	.modal .modal__container {
		padding: 43px 30px 30px 200px;
		position: relative;
		max-width: 725px;
		min-height: 370px;
		min-width: 680px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-left: 315px;
	}

	.modal .modal__container::before {
		content: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/ebook-vertical.svg);
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/ebook.jpg)
			bottom center no-repeat;
		background-size: contain;
		position: absolute;
		width: 225px;
		height: 290px;
		top: 40px;
		left: 50px;
		padding-left: 40px;
		padding-bottom: 40px;
		overflow: hidden;
	}

	.modal .modal__container::after {
		content: "";
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/ipad-blank@2x.png)
			top center no-repeat;
		background-size: contain;
		position: absolute;
		width: 225px;
		height: 300px;
		top: 40px;
		left: 50px;
	}
}

.modal .modal__close {
	color: #222;
}

.modal .modal__header {
	margin: 0;
	margin-top: 5px;
}

.modal .modal__title {
	font-family: "Crimson Text", serif;
	font-size: 20px;
	line-height: 1.4;
	color: #222;
	text-transform: lowercase;
	font-style: italic;
	font-feature-settings: "kern" 0;
	text-align: center;
	margin: auto;
	font-weight: 400;
	letter-spacing: 0;
}

.modal h4 {
	color: #1c75bc;
	font-size: 32px;
	max-width: 300px;
	margin: 2px auto 7px;
}

.modal form p {
	margin: 0;
}

.modal .modal__content input:not([type="submit"]) {
	height: 50px;
	margin-bottom: 10px;
	border: 2px solid #222;
	background-color: transparent;
	color: #343434;
}

.modal .modal__content .mc_fieldset {
	padding: 0;
	border: none;
	color: #343434;
	text-align: left;
	margin: 15px 0 0;
}

.modal .modal__content .checkbox span {
	font-family: "Raleway", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #000;
	font-style: italic;
}

.modal .modal__content .checkbox input {
	height: auto;
}

.modal__content ::-moz-placeholder,
.modal__content :-ms-input-placeholder,
.modal__content :-moz-placeholder {
	text-transform: lowercase !important;
	color: #343434 !important;
	font-family: inherit;
	font-style: italic;
	font-weight: 400 !important;
}

.modal__content ::-webkit-input-placeholder {
	text-transform: lowercase !important;
	color: #343434 !important;
	font-family: inherit;
	font-style: italic;
	font-weight: 400 !important;
	font-size: 22px;
	letter-spacing: 0;
}

.modal .modal__content input[type="submit"] {
	height: 50px;
	color: #fff;
	font-weight: 500;
	font-size: 19px;
	letter-spacing: 0.1em;
	background: #f75b2b;
}

@media screen and (min-width: 768px) {
	.modal .modal__header,
	.modal .modal__content {
		max-width: 310px;
		margin-right: 20px;
	}

	.modal .modal__header {
		margin-top: 0;
	}
}

/* Custom checkbox styling */
.checkbox-container {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
	font-size: 12px;
	font-style: italic;
	font-weight: 500;
}

.checkbox-container input {
	display: inline-block;
	position: absolute;
	z-index: 2;
	top: -2px;
	left: 0;
	opacity: 0;
	cursor: pointer;
	height: 20px;
	width: 20px;
}

.checkbox-container .checkmark {
	position: absolute;
	top: -2px;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: transparent;
	border: 2px solid #343434;
	border-radius: 0;
	pointer-events: none;
}

.checkbox-container:hover input ~ .checkmark {
	background-color: #343434;
}

.checkbox-container input:checked ~ .checkmark {
	background-color: #343434;
}

.checkbox-container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}

.checkbox-container .checkmark:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ---------- [ Quick Links ] ---------- */

.quick-links {
}

.quick-links .quick-link {
	font-size: 30px;
	font-style: italic;
	line-height: 1.14;
	color: #222;
	text-transform: lowercase;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 18px;
	position: relative;
}

.quick-links .quick-link.kitchen-wisdom {
	letter-spacing: 0.05em;
}

.quick-links .quick-link > span {
	font-family: "Proxima Nova";
	font-size: 26px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1;
}

.quick_links_widget .quick-link::before {
	content: "";
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	position: relative;
	top: 0;
	bottom: 0;
}

.quick-link::after {
	content: "";
	background: #f9f5ed;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background-position: top center;
	z-index: -1;
}

.quick-link.cooking-tools::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-tools.svg);
	background-size: cover;
}

.quick-link.wok-guide::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-wok.svg);
	background-size: cover;
}

.quick-link.ingredients-101::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-ingredients.svg);
	background-size: cover;
}

.quick-link.kitchen-wisdom::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-wisdom.svg);
	background-size: cover;
}

@media screen and (min-width: 1024px) {
	.quick-links .quick-link .quick-link-name {
		border-bottom: 8px solid transparent;
	}

	.quick-links .quick-link {
		font-size: 26px;
	}

	.quick-links .quick-link:hover {
		transform: scale(0.95);
	}

	.quick_links_widget .quick-link:hover .quick-link-name {
		border-bottom: 8px solid #1c75bc;
	}

	.quick-links .quick-link:hover::after {
		background: #f5f1e9;
		opacity: 0.65;
	}
	.quick-links .quick-link:hover::before {
		opacity: 1;
	}
}

.widget .quick-links .quick-link {
	margin-bottom: 18px;
	position: relative;
}

.widget .quick-links .quick-link-name {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	font-size: 30px;
	font-style: italic;
	line-height: 1.14;
	color: #222;
	text-transform: lowercase;
	font-family: "Crimson Text", serif;
	font-weight: normal;
	font-feature-settings: "kern" 0;
	letter-spacing: 0px;
}

.widget .quick-links .quick-link-name.kitchen-wisdom {
	letter-spacing: 0.05em;
}

.widget .quick-links .quick-link .emphasis {
	display: block;
	font-family: "Proxima Nova";
	font-size: 26px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1;
}

.widget .quick-link-icon::before {
	content: "";
	background-size: cover;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background-position: top center;
	z-index: -4;
	left: 0px;
}

.widget .quick-link::after {
	content: "";
	background: #f9f5ed;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	opacity: 0.8;
	background-position: top center;
	z-index: -1;
}

.widget .quick-link-icon.cooking-tools::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-tools.png);
	background-size: cover;
	display: block;
}

.widget .quick-link-icon.wok-guide::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-wok.png);
	background-size: cover;
}

.widget .quick-link-icon.ingredients-101::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-ingredients.png);
	background-size: cover;
}

.widget .quick-link-icon.kitchen-wisdom::before {
	background: #f9f5ed
		url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-wisdom.png);
	background-size: cover;
}

/* Retina images */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min-device-pixel-ratio: 1.5) {
	.widget .quick-link-icon.cooking-tools::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-tools@2x.png);
	}

	.widget .quick-link-icon.wok-guide::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-wok@2x.png);
	}

	.widget .quick-link-icon.ingredients-101::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-ingredients@2x.png);
	}

	.widget .quick-link-icon.kitchen-wisdom::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-bg-wisdom@2x.png);
	}
}

@media screen and (min-width: 1024px) {
	.quick-links .quick-link {
		font-size: 26px;
	}

	.quick-links .quick-link:hover {
		transform: scale(0.95);
	}

	.quick-links .quick-link:hover::after {
		background: #f5f1e9;
		opacity: 0.65;
	}
	.quick-links .quick-link:hover::before {
		opacity: 1;
	}
}

.quick-links .button {
	display: block;
	line-height: 1;
	color: #fff;
	background: #f75b2b;
	font-size: 22px;
	letter-spacing: 0.1em;
	padding: 19px 10px;
	text-transform: uppercase;
	font-style: normal;
	align-items: center;
	justify-content: center;
	align-self: center;
	margin-bottom: 30px;
	font-weight: 800;
}

.quick-links .button .icon-font {
	font-size: 120%;
	margin: 0;
}

/* ================================
[ Plugins ]
================================ */

/* ---------- [ AdThrive ] ---------- */

.adthrive-archive {
	width: calc(100% - 16px);
}

.adthrive-wrapper-bar,
.adthrive-player-title {
	font-family: "Barlow" !important;
}

/* [ Video Embed ] */

.single-video_embed .video-embed {
	width: 100%;
	margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
	.single-video_embed .video-embed {
		margin-bottom: 28px;
	}
}

.single-video_embed .post-info .post-nav {
	max-width: 192px;
}

.single-video_embed .post-info .post-nav .wprm-recipe-jump {
	padding: 8px 12px;
	color: #333;
}

/* ---------- [ Akismet ] ---------- */

.akismet_comment_form_privacy_notice {
	font-weight: 500;
	font-size: 0.7em;
	font-style: italic;
	margin: 28px 0;
	text-align: left;
	line-height: 1;
}

.comment-respond + .akismet_comment_form_privacy_notice {
	margin: 8px 0 0;
}

.akismet_comment_form_privacy_notice a {
	text-decoration: underline;
}

.akismet_comment_form_privacy_notice a:hover {
	text-decoration: none;
	opacity: 1;
}

@media screen and (min-width: 768px) {
	.comment-respond + .akismet_comment_form_privacy_notice {
		margin-left: 130px;
		transform: translateY(-38px);
	}

	.logged-in .comment-respond + .akismet_comment_form_privacy_notice {
		transform: translateY(-24px);
	}
}

@media screen and (min-width: 1024px) {
	.akismet_comment_form_privacy_notice a:hover {
		cursor: pointer;
		text-decoration: none;
		opacity: 1;
	}
}

/* ---------- [ Jetpack ] ---------- */

#wpstats {
	display: none;
}

.sharedaddy {
	margin-top: 20px;
}

p.comment-subscription-form {
	text-align: left;
	font-weight: 400;
	font-size: 0.92em;
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

/* ---------- [ Mediavine ] ---------- */

h2.mv_auto_insert_headline {
	margin-bottom: 8px;
}

/* ---------- [ Recipes (Tasty, WPRM) ] ---------- */

.wprm-recipe .social-block {
	font-size: 20px;
	font-style: italic;
	line-height: 1.4;
}

.wprm-recipe .social-block .emphasis {
	font-weight: 700;
}

.wprm-recipe-servings-container
	.wprm-recipe-servings-link
	.wprm-recipe-servings {
	font-weight: 800 !important;
}

.wprm-recipe-instructions-container
	.wprm-recipe-instruction-group
	.wprm-recipe-instruction-group-name,
.wprm-recipe-ingredients-container .wprm-recipe-ingredient-group-name {
	font-family: "Barlow", sans-serif;
	font-weight: 500 !important;
	letter-spacing: 0.1em;
	font-size: 16px;
	text-transform: uppercase;
}

.wprm-recipe-ingredients-container .wprm-recipe-ingredient-group-name {
	margin: 12px 0 8px !important;
}

/* [ Comment Ratings ] */

/* ---------- [ Related Posts for WordPress ] ---------- */

.rp4wp-related-posts {
	margin: 0;
	margin-top: 20px;
}

@media screen and (min-width: 768px) {
	.singular .content .rp4wp-related-posts h3 {
		font-size: 20px;
	}
}

.rp4wp-related-posts ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 !important;
	list-style-type: none;
}

.rp4wp-related-posts li {
	flex: 0 1 48%;
	margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
	.rp4wp-related-posts li {
		flex-basis: 24%;
	}
}

.rp4wp-related-posts li::before {
	content: none !important;
}

.rp4wp-related-post-image .wp-post-image {
	display: block;
}

.singular .content .rp4wp-related-post-content a {
	display: block;
	font-size: 18px;
	text-align: center;
	position: relative;
	padding: 7px 0 0;
	line-height: 1.12;
	color: #343434;
}

@media screen and (min-width: 1024px) {
	.singular .content .rp4wp-related-post-content a {
		font-size: 18px;
	}

	.singular .content .rp4wp-related-post-content a:hover {
		color: #777;
		text-decoration: underline;
		opacity: 1;
	}
}

/* ---------- [ Grow (Social Icons) ] ---------- */

/* [ Content Top ] */

#dpsp-content-top {
	margin-bottom: 0;
}

#dpsp-content-top ul.dpsp-networks-btns-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0;
}

@media screen and (min-width: 1140px) {
	#dpsp-content-top {
		position: fixed !important;
		top: 300px;
		left: -45px;
		z-index: 9999;
	}

	.admin-bar #dpsp-content-top {
		top: 332px;
	}

	#dpsp-content-top ul.dpsp-networks-btns-wrapper {
		flex-direction: column;
	}
}

#dpsp-content-top .dpsp-network-label-wrapper {
	display: none !important;
}

#dpsp-content-top .dpsp-networks-btns-wrapper li {
	background: #f9f5ed;
	flex: 1;
	margin-bottom: 0;
}

#dpsp-content-top .dpsp-networks-btns-wrapper li:last-of-type {
	margin-right: 0;
}

@media screen and (min-width: 1140px) {
	#dpsp-content-top .dpsp-networks-btns-wrapper li {
		background: #fff;
		border: 1px solid #222 !important;
		border-radius: 4px;
		width: 103px;
		margin-bottom: 12px;
	}

	#dpsp-content-top .dpsp-networks-btns-wrapper li:hover {
		background: #222;
		border-color: #222 !important;
	}

	#dpsp-content-top
		.dpsp-networks-btns-wrapper
		li:hover
		.dpsp-pinterest
		.dpsp-network-icon
		svg {
		fill: #fff !important;
	}
}

#dpsp-content-top .dpsp-networks-btns-wrapper .dpsp-network-btn {
	border: 0;
	box-shadow: none;
	height: 40px;
	max-height: 40px;
	line-height: 40px;
	max-width: 100%;
	padding: 0;
	width: 100%;
}

#dpsp-content-top
	.dpsp-networks-btns-wrapper
	.dpsp-network-btn
	.dpsp-network-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	max-height: 40px;
	color: #222;
	fill: #222 !important;
	background: transparent !important;
	border: 0 !important;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

#dpsp-content-top
	.dpsp-networks-btns-wrapper
	.dpsp-network-btn
	.dpsp-network-icon-before {
	display: flex;
	margin: 0;
	top: unset;
	left: unset;
	right: unset;
	width: 100%;
	height: auto;
}

#dpsp-content-top
	.dpsp-networks-btns-wrapper
	.dpsp-network-btn
	.dpsp-network-icon
	svg {
	color: #222;
	fill: #222 !important;
	background: transparent !important;
	border: 0 !important;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	top: 0;
	max-height: 24px;
}

#dpsp-content-top
	.dpsp-networks-btns-wrapper
	.dpsp-network-btn.dpsp-yummly
	.dpsp-network-icon
	svg {
	max-height: 20px;
}

@media screen and (min-width: 1140px) {
	#dpsp-content-top
		.dpsp-networks-btns-wrapper
		.dpsp-network-btn
		.dpsp-network-icon {
		width: 45px;
		margin-left: auto !important;
	}

	#dpsp-content-top .dpsp-networks-btns-wrapper a.dpsp-network-btn:hover {
		color: #fff !important;
		cursor: pointer;
	}

	#dpsp-content-top .dpsp-networks-btns-wrapper a.dpsp-network-btn:hover {
		color: #fff !important;
		background: #f75b2b;
		cursor: pointer;
	}

	#dpsp-content-top
		.dpsp-networks-btns-wrapper
		a.dpsp-network-btn:hover
		.dpsp-network-icon
		svg {
		fill: #fff !important;
		cursor: pointer;
	}
}

/* [ Content Bottom ] */

#dpsp-content-bottom {
	margin-top: 0;
}

#dpsp-content-bottom .dpsp-shortcode-wrapper {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 22px;
}

.dpsp-networks-btns-wrapper:after {
	display: none;
}

#dpsp-content-bottom .dpsp-networks-btns-wrapper {
	display: flex;
	flex-wrap: wrap;
}

@supports (display: grid) {
	#dpsp-content-bottom .dpsp-networks-btns-wrapper {
		display: grid;
		grid-gap: 12px 2%;
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (min-width: 768px) {
	#dpsp-content-bottom .dpsp-networks-btns-wrapper {
		display: block;
	}
}

#dpsp-content-bottom .dpsp-networks-btns-wrapper li {
	border: 2px solid #f75b2b !important;
	margin: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
}

@supports (display: grid) {
	#dpsp-content-bottom .dpsp-networks-btns-wrapper li {
		margin: 0;
	}
}

@media screen and (min-width: 768px) {
	#dpsp-content-bottom .dpsp-networks-btns-wrapper li {
		border: none !important;
		min-height: initial;
		margin-right: 8px;
	}
}

#dpsp-content-bottom .dpsp-networks-btns-wrapper .dpsp-network-btn {
	color: #222;
	text-transform: uppercase !important;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.1em;
	width: auto;
}

@media screen and (min-width: 1024px) {
	#dpsp-content-bottom .dpsp-networks-btns-wrapper .dpsp-network-btn:hover {
		transform: scale(0.95);
		text-decoration: underline !important;
	}
}

#dpsp-content-bottom
	.dpsp-networks-btns-wrapper
	.dpsp-network-btn
	.dpsp-network-icon
	svg {
	fill: #000 !important;
	background: transparent !important;
	border: 0 !important;
	width: 100%;
	top: 1px;
	max-height: 18px;
}

@media screen and (min-width: 768px) {
	#dpsp-content-bottom
		.dpsp-networks-btns-wrapper
		.dpsp-network-btn
		.dpsp-network-icon
		svg {
		fill: #fff !important;
	}
}

#dpsp-content-bottom
	.dpsp-networks-btns-wrapper
	.dpsp-network-btn
	.dpsp-network-icon {
	background: transparent !important;
	border: none !important;
}

@media screen and (min-width: 768px) {
	#dpsp-content-bottom
		.dpsp-networks-btns-wrapper
		.dpsp-network-btn
		.dpsp-network-icon {
		background: #1c75bc !important;
	}
}

@media screen and (min-width: 1024px) {
	#dpsp-content-bottom
		.dpsp-networks-btns-wrapper
		.dpsp-network-btn:hover
		.dpsp-network-icon {
		background: #1167ac !important;
		border: 0 !important;
		transform: scale(0.85);
	}
}

/* ================================
[ Widgets ]
================================ */

/* ================================
[ Page Templates ]
================================ */

/* ---------- [ Page: Blog ] ---------- */
.blog .entry,
.home-latest {
	display: block;
}

.blog .archive-title::after {
	content: "by date";
	font-family: "Crimson Text", serif;
	font-style: italic;
	font-size: 22px;
	font-weight: 400;
	text-transform: lowercase;
	margin-left: 4px;
	letter-spacing: normal;
}

@media screen and (min-width: 1024px) {
	.blog .entry {
		display: flex;
		align-items: center;
	}

	.post-listing .content .entry .entry-header {
		flex: 1;
	}

	.post-listing .content .entry {
		position: relative;
	}

	.blog.post-listing .content .entry:after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 30px;
		width: calc(100% - 350px);
		height: 1px;
		background-color: #e2e2e2;
	}

	.post-listing .content .entry:last-of-type:after {
		display: none;
	}

	.blog .entry-content,
	.home-latest .entry-content {
		padding: 15px 30px;
		/* position: relative; */
		flex: 1;
		/* display: flex;
    flex-direction: column;
    justify-content: center; */
	}

	/* .blog .entry-content::after,
  .home-latest .entry-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background-color:#e2e2e2;
  } */

	.blog .entry-image,
	.home-latest .entry-image {
		min-width: 250px;
	}
}

.blog .entry .entry-meta:first-of-type {
	display: none;
}

.blog .entry .entry-title,
.home-latest .entry .entry-title {
	margin: 12px 0 8px;
	font-size: 26px;
	line-height: 1;
}

.blog .entry .entry-title-link,
.home-latest .entry .entry-title-link {
	font-weight: 800;
	text-transform: uppercase;
	font-family: "Proxima Nova", sans-serif;
	padding: 0;
	font-size: 26px;
	color: #222222;
	text-decoration: none;
	line-height: 1.05;
	text-align: left;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
	.blog .entry .entry-title,
	.blog .entry .entry-title-link,
	.home-latest .entry .entry-title,
	.home-latest .entry .entry-title-link {
		font-size: 24px;
	}
}

@media screen and (min-width: 1024px) {
	.blog .entry .entry-title-link:hover,
	.home-latest .entry .entry-title-link:hover {
		text-decoration: underline;
		transform: scale(1);
		opacity: 1;
	}
}

.blog .entry .entry-meta,
.home-latest .entry-meta {
	margin: 0 0 5px;
	font-size: 16px;
	color: #222222;
}

.blog .entry .entry-meta .post-date-label,
.home-latest .entry-meta .post-date-label {
	text-transform: lowercase;
	font-style: italic;
	margin-right: 3px;
}

.blog .entry .entry-meta .entry-time,
.home-latest .entry-meta .entry-time {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
}

.blog .entry .entry-meta .post-comments,
.home-latest .entry-meta .post-comments {
	margin-left: 5px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 12px;
	margin-left: 7px;
}

.blog .entry .entry-meta .post-comments .icon-font::before,
.home-latest .entry-meta .post-comments .icon-font::before {
	margin-right: 0;
}

.blog .entry .entry-meta .entry-comments-link a,
.home-latest .entry-meta .entry-comments-link a {
	color: #222;
}

/* .blog .entry p,
.home-latest .entry p {
  margin: 10px 0 10px;
} */

.blog .entry .entry-meta + p,
.home-latest .entry .entry-meta + p {
	font-size: 18px;
	color: #222222;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog .entry .entry-meta + p br,
.home-latest .entry .entry-meta + p br {
	display: none;
}

.more-link-container {
	text-align: left;
}

@media screen and (min-width: 1024px) {
	.more-link-container {
		margin-top: 0;
	}
}

.more-link-container .more-link {
	font-size: 16px;
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	text-decoration: none;
	border: 2px solid #222;
	padding: 13px;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
	.more-link-container .more-link {
		padding: 0;
		border: none;
		font-size: 16px;
	}

	.more-link-container .more-link:hover {
		/* text-decoration: underline; */
		opacity: 1;
		transform: scale(1);

		box-shadow: inset 0 0px 0px white, inset 0 -2px 0 #222;
	}
}

.more-link-container .more-link .icon-font {
	position: relative;
	top: -1px;
	color: #f75b2b;
}

/* ---------- [ Page: Recipes ] ---------- */

.page-template-page_recipes .archive-nav,
.page-template-page_recipes .archive-nav .wrap {
	border-bottom: none;
	padding-bottom: 0;
}

.archive-nav .wrap {
	position: relative;
}

#genesis-nav-recipes {
	padding: 12px 0 20px;
}

@media screen and (min-width: 1024px) {
	#genesis-nav-recipes {
		padding: 20px 0 30px;
	}
}

.nav-recipes #menu-recipe-index {
	display: flex;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	flex-direction: column;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index {
		flex-direction: row;
		margin: 0;
	}
}

.nav-recipes #menu-recipe-index a {
	color: #222;
	padding: 16px;
	letter-spacing: 0.1em;
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Barlow", sans-serif;
}

.nav-recipes #menu-recipe-index a.sf-with-ul {
	height: 100%;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .sfHover > a {
		color: #222;
	}
}

.nav-recipes #menu-recipe-index > .menu-item {
	border: 2px solid #222;
	flex: 1;
	margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index > .menu-item {
		margin-right: 16px;
		margin-bottom: 0;
	}
}

.nav-recipes #menu-recipe-index > .menu-item-has-children .sub-menu-toggle {
	position: absolute;
	background: none;
	padding: 16px;
	width: 100%;
	top: 0;
	left: 0;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-recipes
	#menu-recipe-index
	> .menu-item-has-children
	.sub-menu-toggle:focus {
	outline: none;
}

.nav-recipes
	#menu-recipe-index
	> .menu-item-has-children
	.sub-menu-toggle
	.icon-font {
	font-size: 16px;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index > .menu-item-has-children .sub-menu-toggle {
		display: none;
	}

	.nav-recipes #menu-recipe-index > .menu-item-has-children > a::after {
		content: "\e907";
		font-family: "Icons";
		color: #f75b2b;
		transform: rotate(90deg);
	}
}

.nav-recipes #menu-recipe-index .sub-menu {
	margin: 0;
	text-align: left;
	display: none;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .sub-menu {
		border: 2px solid #222;
		border-top: none;
		top: auto;
		left: -2px;
		width: calc(100% + 4px);
	}
}

.nav-recipes #menu-recipe-index .sub-menu a {
	text-transform: initial;
	font-weight: 800;
	font-family: "Proxima Nova", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	padding: 12px 16px 10px;
	background-color: #f9f5ed;
	border-bottom: 1px solid #e5e0d8;
	letter-spacing: 0.1em;
}

.nav-recipes #menu-recipe-index .sub-menu li:last-child a {
	border-bottom: none;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .sub-menu a {
		padding: 10px 14px 8px !important;
		border: none;
	}

	.nav-recipes #menu-recipe-index .sub-menu a:hover {
		color: #fff;
		background-color: #1c75bc;
	}
}

.nav-recipes #menu-recipe-index .orange-button {
	display: none;
	margin-bottom: 0;
	border: none;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .orange-button {
		text-align: left;
		margin-right: 0;
	}
}

.nav-recipes #menu-recipe-index .orange-button a {
	border: 2px solid #f75b2b;
	justify-content: center;
}

@media screen and (min-width: 1024px) {
	/* .nav-recipes #menu-recipe-index .orange-button a {
    justify-content: space-between;
  } */

	.nav-recipes #menu-recipe-index .orange-button a:hover {
		background-color: #222;
		color: #fff;
		transform: scale(0.95);
		border-color: #222;
	}
}

.page-template-page_recipes .nav-recipes > .wrap,
.archive .nav-recipes > .wrap {
	max-width: 100%;
}

@media screen and (min-width: 1024px) {
	.page-template-page_recipes .nav-recipes > .wrap,
	.archive .nav-recipes > .wrap {
		max-width: 1020px;
	}
}

@media screen and (min-width: 1200px) {
	.page-template-page_recipes .nav-recipes > .wrap,
	.archive .nav-recipes > .wrap {
		max-width: 1100px;
	}
}

.page-template-page_recipes #menu-recipe-index .menu-item-has-children::before,
.archive #menu-recipe-index .menu-item-has-children::before {
	content: "";
	height: 2px;
	background-color: #222;
	display: block;
	width: calc(100% - 32px);
	margin-left: 16px;
}

@media screen and (min-width: 1024px) {
	.page-template-page_recipes
		#menu-recipe-index
		.menu-item-has-children::before,
	.archive #menu-recipe-index .menu-item-has-children::before {
		content: none;
	}
}

.page-template-page_recipes #menu-recipe-index > .menu-item,
.archive #menu-recipe-index > .menu-item {
	margin-bottom: 0;
	border: none;
}

@media screen and (min-width: 1024px) {
	.page-template-page_recipes #menu-recipe-index > .menu-item,
	.archive #menu-recipe-index > .menu-item {
		border: 2px solid #222;
	}
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .quick-and-easy {
		border: none;
	}
}

.nav-recipes #menu-recipe-index .quick-and-easy a {
	background-color: #1c75bc;
	color: #fff;
	padding: 16px;
	border: none;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.nav-recipes #menu-recipe-index .quick-and-easy a {
		padding-left: 12px;
		padding-left: 15px;
	}
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .quick-and-easy a {
		border: 2px solid #f75b2b;
		color: #222;
		background-color: transparent;
		padding-right: 16px;
	}
}

.nav-recipes #menu-recipe-index .quick-and-easy a > span {
	width: 100%;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 1024px) {
	.nav-recipes #menu-recipe-index .quick-and-easy a > span {
		justify-content: center;
	}
}

.nav-recipes #menu-recipe-index .quick-and-easy .icon-font::before {
	margin: 0;
	font-size: 120%;
}

.page-template-page_recipes .nav-recipes #menu-recipe-index .quick-and-easy,
.archive .nav-recipes #menu-recipe-index .quick-and-easy,
.home .nav-recipes #menu-recipe-index .browse-all {
	display: block;
}

/* Recipe Index Manual Categories */
.recipe-manual-categories .section-title {
	font-size: 27px;
	font-weight: bold;
	font-style: italic;
	text-transform: lowercase;
	margin-bottom: 15px;
	font-family: "Crimson Text", serif;
	font-feature-settings: "kern" 0;
	letter-spacing: 0;
	text-align: center;
}

@media screen and (min-width: 1024px) {
	.recipe-manual-categories .section-title {
		font-size: 33px;
		text-align: left;
	}
}

.recipe-manual-categories .section-title .emphasis {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	color: #222;
	font-size: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
	.recipe-manual-categories .section-title .emphasis {
		font-size: 18px;
	}
}

.recipe-manual-categories .entry {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.recipe-manual-categories .entry .entry-content {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: flex-start;
	background-color: #f9f5ed;
	flex: 1;
}

.recipe-manual-categories .entry .entry-content .entry-title {
	flex-grow: 1;
	height: 100%;
	margin: 0;
	display: block;
	width: 100%;
}

.recipe-manual-categories .entry .entry-content .entry-title-link {
	font-size: 15px;
	letter-spacing: 0.075em;
	font-weight: 800;
	text-transform: uppercase;
	padding: 16px 12px;
	width: 100%;
	color: #222222;
	text-decoration: none;
	text-align: center;
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 414px) {
	.recipe-manual-categories .entry .entry-content .entry-title-link {
		font-size: 18px;
	}
}

@media screen and (min-width: 1024px) {
	.recipe-manual-categories .entry .entry-content .entry-title-link {
		font-size: 16px;
	}

	.recipe-manual-categories .entry:hover .entry-content .entry-title-link,
	.recipe-manual-categories .entry .entry-content .entry-title-link:hover {
		background-color: #1c75bc;
		color: #fff;
		transform: scale(1);
		opacity: 1;
	}
}

/* Recipe Index CTA */
.recipe-index-cta {
	margin: 20px 0;
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/banner-2.jpg);
	background-repeat: repeat-x;
	background-color: #cdc9c9;
	max-height: 100%;
	overflow: hidden;
	background-size: contain;
	background-position: top;
}

/* @media screen and (min-width: 768px) {
  .recipe-index-cta {
    max-height: 415px;
    background-size: 20.85%;
    background-position: top -62px center;
    margin: 30px 0 45px;
  }
} */

@media screen and (min-width: 768px) {
	.recipe-index-cta {
		background-size: 415px auto;
		background-position: top -75px center;
	}
}

/* @media screen and (min-width: 1440px) {
  .recipe-index-cta {
    background-size: 27%;
  }
}

@media screen and (min-width: 1500px) {
  .recipe-index-cta {
    background-position: top -62px center;
    background-size: 21%;
  }
} */

.home .recipe-index-cta.home-bottom-cta {
	margin: 0;
	padding: 0;
	border: none;
}

.recipe-index-cta .entry {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.recipe-index-cta .entry {
		flex-direction: row;
	}
}

.recipe-index-cta .entry .entry-image-link {
	display: flex;
	max-height: 390px;
	align-items: inherit;
}

.recipe-index-cta .entry .entry-image-link > img {
	max-width: 430px;
	margin-top: 0;
}

.recipe-index-cta .entry-content {
	padding: 0;
	max-width: 470px;
	margin-top: -60px;
	margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
	.recipe-index-cta .entry .entry-image-link > img {
		max-width: 500px;
		margin-top: 47px;
		margin-left: -40px;
	}

	.recipe-index-cta .entry-content {
		text-align: left;
		margin-top: -40px;
		margin-bottom: 0;
		margin-left: -60px;
		padding: 0 16px;
		z-index: 1;
	}
}

.recipe-index-cta .pre-title {
	font-size: 24px;
	font-style: italic;
	text-transform: lowercase;
	text-align: center;
	margin-bottom: 9px;
	margin-top: 0;
}

@media screen and (min-width: 768px) {
	.recipe-index-cta .pre-title {
		text-align: left;
		margin-bottom: 0;
	}
}

.recipe-index-cta .entry-title {
	text-align: center;
	font-size: 28px;
	margin: 0 0 8px;
}

.recipe-index-cta .entry-title-link {
	color: #222222;
	font-size: 32px;
	text-align: center;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Proxima Nova", sans-serif;
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.recipe-index-cta .entry-title {
		text-align: left;
		max-width: 350px;
		margin: 0;
		margin-top: 3px;
		margin-bottom: 3px;
	}

	.page-template-page_recipes .recipe-index-cta .entry-title {
		max-width: 380px;
	}

	.recipe-index-cta .entry-title-link {
		text-align: left;
		font-size: 25px;
	}
}

@media screen and (min-width: 1024px) {
	.recipe-index-cta .entry-title-link {
		font-size: 32px;
	}
}

.recipe-index-cta .entry-excerpt {
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

@media screen and (min-width: 768px) {
	.recipe-index-cta .entry-excerpt {
		text-align: left;
		font-size: 18px;
	}
}

.recipe-index-cta .more-link-container {
	margin-top: 15px;
	text-align: center;
}

.recipe-index-cta .more-link-container .more-link {
	border: 3px solid #f75b2b;
	height: 45px;
	line-height: 39px;
	text-align: center;
	padding: 0 15px;
	color: #222222;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	pointer-events: initial;
	font-size: 18px;
}

@media screen and (min-width: 768px) {
	.recipe-index-cta .more-link-container {
		text-align: left;
		margin-top: 10px;
	}
}

@media screen and (min-width: 1024px) {
	.recipe-index-cta .more-link-container .more-link {
		font-size: 16px;
	}

	.recipe-index-cta .more-link-container .more-link:hover {
		border: 3px solid #222222;
		background-color: #222222;
		color: #fff;
		transform: scale(1.05);
	}
}

/* Recipe Index Posts */
.page-template-page_recipes .page-recipes-title {
	width: 100%;
	flex-basis: 100%;
}

.page-template-page_recipes .page-recipes-title .entry-title {
	font-size: 32px;
	color: #1c75bc;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 10px 8px 12px;
	font-family: "Proxima Nova", sans-serif;
}

@media screen and (min-width: 1024px) {
	.page-template-page_recipes .page-recipes-title .entry-title {
		font-size: 36px;
	}
}

/* ---------- [ Page: Home ] ---------- */

.home .content-sidebar-wrap {
	margin-top: 15px;
}

@media screen and (min-width: 1024px) {
	.home .content-sidebar-wrap {
		margin-top: 35px;
	}
}

/* Home Top Highlighted */
.home .manual-features.home-top-highlighted-features {
	padding: 15px 0 0;
	border-bottom: none;
	margin: 0;
}

@media screen and (min-width: 1024px) {
	.home .manual-features.home-top-highlighted-features {
		padding: 25px 0 10px;
		margin: 0;
	}
}

.home .home-top-highlighted-features .entry-title {
	font-size: 22px;
	margin: 0;
	text-align: center;
}

.home .home-top-highlighted-features .entry {
	margin-bottom: 15px;
}

.home .home-top-highlighted-features .entry-title-link {
	padding: 8px 15px;
	color: #222222;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Proxima Nova", sans-serif;
	text-decoration: none;
	display: block;
	width: 100%;
}

@media screen and (min-width: 1024px) {
	.home .home-top-highlighted-features .entry-title-link:hover {
		text-decoration: underline;
		transform: scale(1);
	}
}

/* Home Side by Side */

@media screen and (min-width: 1024px) {
	.home-side-by-side-features > .wrap {
		display: flex;
	}
}

.home-side-by-side-features .large-feature,
.home-side-by-side-features .small-feature {
	margin-bottom: 20px;
}

.home-side-by-side-features .large-feature {
	position: relative;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .large-feature,
	.home-side-by-side-features .small-feature {
		margin-bottom: 30px;
	}

	.home-side-by-side-features .large-feature {
		margin-right: 12px;
	}

	.home-side-by-side-features .small-feature {
		margin-left: 12px;
	}
}

.home-side-by-side-features .home-bio {
	background-color: #f9f5ed;
}

.home-side-by-side-features .home-bio .image img {
	width: 100%;
	max-height: 250px;
	object-fit: cover;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .home-bio .image img {
		width: 380px;
		float: left;
	}
}

.home-side-by-side-features .home-bio .widget-title {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Proxima Nova", sans-serif;
	font-size: 34px;
	color: #1c75bc;
	text-align: center;
	margin: 15px 0 5px;
	padding: 0 15px;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .home-bio .widget-title {
		margin: 24px 0 5px;
		padding: 0 32px 0 412px;
	}
}

.home-side-by-side-features .home-bio .text {
	font-size: 20px;
	line-height: 1.25;
	text-align: center;
	padding: 0 15px;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .home-bio .text {
		font-size: 16px;
		padding: 0 32px 0 412px;
	}
}

.home-side-by-side-features .large-feature .more-link-container {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 0;
}

.home-side-by-side-features .large-feature .more-link-container .more-link {
	text-align: center;
	font-size: 20px;
	font-style: italic;
	text-transform: lowercase;
	border: none;
	font-family: "Crimson Text", serif;
	font-feature-settings: "kern" 0;
	letter-spacing: 0;
	padding: 0;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .large-feature .more-link-container .more-link {
		font-size: 16px;
	}
}

.home-side-by-side-features
	.large-feature
	.more-link-container
	.more-link
	.icon-font {
	font-size: 65%;
	margin-left: 0;
}

.home-side-by-side-features .large-feature .social {
	display: none;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .large-feature .social {
		display: flex;
		padding-left: 380px;
		justify-content: center;
		width: 100%;
		max-width: none;
		position: absolute;
		bottom: 20px;
	}
}

.home-side-by-side-features .large-feature .social .social-icon {
	border: none;
	background: none;
	font-size: 20px;
	padding: 0px;
	border: 2px solid #222;
	border-radius: 50%;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .large-feature .social .social-icon:hover {
		background-color: #1c75bc;
		border-color: #1c75bc;
		color: #fff;
		transform: scale(1.05);
	}
}

.home-side-by-side-features .home-small-features.manual-features {
	border: none;
}

.home-side-by-side-features .home-small-features .wrap,
.home-side-by-side-features .home-small-features .flexbox {
	height: 100%;
}

.home-side-by-side-features .home-small-features .entry {
	background-color: #f9f5ed;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .home-small-features .entry {
		width: 327px;
	}
}

.home-side-by-side-features .home-small-features .entry-image {
	width: 100%;
	display: block;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .home-small-features .entry-image {
		height: 151px;
		object-fit: cover;
	}
}

/* Archive Category Recipe Nav */

.archive #genesis-nav-recipes {
	padding: 0;
}

.archive .archive-menu {
	margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
	.archive .archive-menu {
		margin-bottom: 32px;
	}
}

.archive .archive-menu__section-title {
	padding: 16px 20px 16px 14px;
	border: 1px solid #e2e2e2;
	font-family: "Barlow", sans-serif;
	font-size: 16px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1;
}

@media screen and (min-width: 1024px) {
	.archive .archive-menu__section-title {
		padding: 0;
		border: none;
		font-size: 14px;
		text-align: center;
		margin-right: 16px;
	}

	.archive .archive-menu__section-title .word-recipes {
		font-family: "Crimson Text", serif;
		display: block;
		font-size: 26px;
		font-weight: 700;
		font-style: italic;
		letter-spacing: normal;
		text-transform: lowercase;
	}
}

.archive .archive-menu__section-title::after {
	content: "\e907";
	font-family: "Icons";
	color: #f75b2b;
	float: right;
	transform: rotate(90deg);
}

.archive .archive-menu__section-title.activated::after {
	transform: rotate(-90deg);
}

@media screen and (min-width: 1024px) {
	.archive .archive-menu__section-title::after {
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	.archive .archive-menu > .wrap {
		display: flex;
		align-items: center;
	}

	.archive .archive-menu-container {
		flex: 1;
	}
}

@media screen and (min-width: 1024px) {
	.archive .breadcrumb {
		width: auto;
		float: right;
	}
}

.archive #menu-recipe-index .menu-item-has-children::before {
	display: none;
}

@media screen and (max-width: 1023px) {
	.archive .nav-recipes #menu-recipe-index a {
		background-color: #f9f5ed;
		font-family: "Proxima Nova", sans-serif;
		font-weight: 800;
		letter-spacing: 0.1em;
		border-bottom: 1px solid #ede3db;
	}

	.archive .nav-recipes #menu-recipe-index .sub-menu a {
		font-family: "Crimson Text", serif;
		font-style: italic;
		font-size: 18px;
		font-weight: 500;
		text-transform: capitalize;
		letter-spacing: normal;
		background-color: #1c75bc;
		color: #fff;
		border-bottom-color: #343434;
	}
}

@media screen and (min-width: 1024px) {
	.archive #menu-recipe-index > .menu-item {
		border-color: #e2e2e2;
	}

	.archive .nav-recipes #menu-recipe-index .sub-menu {
		border-color: #e2e2e2;
	}
}

.archive .nav-recipes #menu-recipe-index .quick-and-easy a {
	background-color: #f0eadb;
	color: #222222;
}

.archive .nav-recipes #menu-recipe-index .quick-and-easy .icon-font {
	color: #f75b2b;
	margin-left: 8px;
}

@media screen and (min-width: 1024px) {
	.archive .nav-recipes #menu-recipe-index .quick-and-easy a {
		background-color: transparent;
		border-color: #e2e2e2;
	}

	.archive .nav-recipes #menu-recipe-index .quick-and-easy a:hover {
		background-color: #222;
		color: #fff;
		border-color: #222;
	}

	.archive
		.nav-recipes
		#menu-recipe-index
		.quick-and-easy
		a:hover
		.icon-font {
		color: #fff;
	}
}

/* Archive Category Manual Categories */

.category-manual-features {
	margin-top: 20px;
	margin-bottom: -16px;
}

.archive .manual-features.category-manual-features > .wrap {
	padding-bottom: 0;
}

.archive-loop-title {
	width: 100%;
	flex-basis: 100%;
}

.archive-loop-title h2 {
	font-size: 20px;
	color: #1c75bc;
}

@media screen and (min-width: 1024px) {
	.archive-loop-title h2 {
		font-size: 28px;
	}
}

.archive .category-manual-features .entry {
	background: #f9f5ed;
	text-align: center;
	margin-bottom: 16px;
}

@media (min-width: 1024px) {
	.archive .category-manual-features .entry {
		margin-bottom: 16px;
	}
}

.archive .category-manual-features .entry .pre-title {
	font-size: 18px;
	text-transform: lowercase;
	letter-spacing: unset;
	font-style: italic;
	color: #222;
	margin-bottom: 0;
	margin-top: 8px;
}

.archive .category-manual-features .entry-title {
	font-size: 20px;
	font-family: "Crimson Text", serif;
	font-weight: 400;
	text-transform: unset;
	letter-spacing: unset;
	line-height: 1.13;
	text-align: center;
	margin-top: 2px;
	padding: 0 10px;
}

@media (min-width: 1024px) {
	.archive .category-manual-features .entry-title {
		margin-bottom: 0;
	}
}

.archive .category-manual-features .entry-title-link {
	font-size: 20px;
	font-family: "Crimson Text", serif;
	font-weight: 400;
	text-transform: unset;
	letter-spacing: unset;
	line-height: 1.13;
	text-align: center;
	color: #222;
	text-decoration: none;
}

@media (min-width: 1024px) {
	.archive .category-manual-features .entry {
		background: transparent;
	}

	.archive .category-manual-features .entry-title-link:hover {
		text-decoration: underline;
	}
}

.home-side-by-side-features .manual-features.home-small-features {
	height: 100%;
	padding: 0;
	margin: 0;
}

.home-side-by-side-features .home-small-features .more-link {
	font-size: 22px;
	line-height: 28px;
	font-style: italic;
	text-transform: lowercase;
	text-align: center;
	text-decoration: none;
	border: none;
	padding: 15px;
	display: block;
	width: 100%;
	font-family: "Crimson Text", serif;
	font-feature-settings: "kern" 0;
	letter-spacing: 0;
	font-weight: 400;
}

.home-side-by-side-features .home-small-features .more-link .emphasis {
	display: block;
	text-transform: uppercase;
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.home-side-by-side-features .home-small-features .more-link .emphasis::after {
	content: "\e909";
	font-family: "Icons";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: auto;
	line-height: 1em;
	margin: 0.35em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	font-size: 80%;
	color: #f75b2b;
}

@media screen and (min-width: 1024px) {
	.home-side-by-side-features .home-small-features .more-link {
		font-size: 22px;
	}

	.home-side-by-side-features .home-small-features .more-link:hover {
		text-decoration: underline;
		box-shadow: none;
	}
}

/* Home Archive Menu */
.home .archive-menu {
	border-top: 4px double #777;
	border-bottom: 4px double #777;
	padding: 20px 0 10px;
}

@media screen and (min-width: 1024px) {
	.home .archive-menu {
		padding: 30px 0 25px;
	}

	.home .archive-menu > .wrap {
		display: flex;
		align-items: center;
	}
}

.home .archive-menu__section-title {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	color: #222;
	font-size: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 12px;
}

@media screen and (min-width: 1024px) {
	.home .archive-menu__section-title {
		width: 115px;
		padding-right: 15px;
		margin: 0;
		font-size: 16px;
	}
}

.home .archive-menu__section-title span {
	display: block;
	font-size: 33px;
	letter-spacing: 30px;
	font-family: "Crimson Text", serif;
	font-style: italic;
	font-feature-settings: "kern" 0;
	text-transform: lowercase;
	font-weight: bold;
	letter-spacing: -0.022em;
	margin-top: 5px;
}

@media screen and (min-width: 1024px) {
	.home .archive-menu__section-title span {
		font-size: 28px;
		line-height: 24px;
	}
}

@media screen and (min-width: 1024px) {
	.home .archive-menu-container {
		margin-top: 5px;
		flex-grow: 1;
	}

	.home .archive-menu-container #menu-recipe-index .menu-item {
		flex-grow: 2;
	}

	.home .archive-menu-container #menu-recipe-index .menu-item.orange-button {
		flex-grow: 1;
		min-width: 160px;
	}

	.home
		.archive-menu-container
		#menu-recipe-index
		.menu-item.orange-button
		a {
		text-align: center;
	}
}

/* Home Latest */

.home-latest .entry {
	position: relative;
}

@media screen and (min-width: 1024px) {
	.home-latest .entry {
		display: flex;
		align-items: center;
	}

	.home-latest .entry::after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 30px;
		width: calc(100% - 310px);
		height: 1px;
		background-color: #e2e2e2;
	}

	.home-latest .entry:last-of-type::after {
		display: none;
	}

	.home-latest .entry .entry-header {
		max-width: 250px;
	}

	.home-latest .entry .entry-content {
		padding: 15px 30px;
		flex-grow: 1;
	}

	.home-latest .entry .entry-content::after {
		display: none;
	}
}

.home-latest .entry .entry-title,
.home-latest .entry .entry-title-link {
	text-align: left;
}

@media screen and (min-width: 1024px) {
	.home-latest .entry .entry-title {
		margin-left: auto;
		padding: 0;
	}
}

.home-latest > .wrap > .more-link-container {
	text-align: center;
	border-top: 4px double #777;
	border-bottom: 4px double #777;
}

@media screen and (min-width: 1024px) {
	.home-latest > .wrap > .more-link-container {
		display: block;
		padding: 25px 0;
		margin: 10px 0 0;
		text-align: center;
	}
}

.home-latest > .wrap > .more-link-container .more-link {
	display: inline-block;
	border: none;
}

/* Home Manual Features */
.home .manual-features,
.home .posts-by-category {
	position: relative;
	padding: 30px 0;
	border-bottom: 4px double #777;
}

@media screen and (min-width: 1024px) {
	.home .manual-features,
	.home .posts-by-category {
		padding: 25px 0 15px 0;
	}
}

.home .manual-features .title-description-container,
.home .posts-by-category .title-description-container {
	margin-bottom: 12px;
}

.home .manual-features .section-title,
.home .posts-by-category .section-title,
.home .home-latest .latest-posts-title {
	font-size: 34px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Proxima Nova", sans-serif;
	color: #1c75bc;
	text-align: center;
	margin-bottom: 8px;
}

@media screen and (min-width: 1024px) {
	.home .manual-features .section-title,
	.home .posts-by-category .section-title,
	.home .home-latest .latest-posts-title {
		font-size: 36px;
		text-align: left;
		margin: 5px 0;
	}
}

.home .home-latest .latest-posts-title {
	margin-left: 8px;
}

.home .manual-features .feature-description,
.home .posts-by-category .feature-description {
	font-size: 20px;
	line-height: 28px;
	text-align: center;
}

.home .manual-features .feature-description a {
	text-decoration: underline;
}

@media screen and (min-width: 1024px) {
	.home .manual-features .feature-description,
	.home .posts-by-category .feature-description {
		font-size: 18px;
		line-height: 22px;
		text-align: left;
	}

	.home .manual-features .feature-description a:hover {
		text-decoration: none;
	}
}

.home .manual-features .wrap > .more-link-container,
.home .posts-by-category .wrap > .more-link-container {
	margin-top: 0;
}

.home .manual-features .wrap > .more-link-container .more-link,
.home .posts-by-category .wrap > .more-link-container .more-link {
	width: 100%;
	display: block;
	text-align: center;
}

@media screen and (min-width: 1024px) {
	.home .manual-features .wrap > .more-link-container,
	.home .posts-by-category .wrap > .more-link-container {
		position: absolute;
		top: 40px;
		right: 0;
	}

	.home .manual-features .wrap > .more-link-container .more-link,
	.home .posts-by-category .wrap > .more-link-container .more-link {
		display: inline-block;
		width: auto;
	}
}

/* Home Collections */

.manual-features.home-collections .entry-content {
	background-color: #f9f5ed;
	padding: 15px;
}

.manual-features.home-collections .pre-title {
	font-size: 20px;
	font-style: italic;
	line-height: 1;
	text-transform: lowercase;
	text-align: center;
	margin: 0 0 5px 0;
}

.manual-features.home-collections .entry-title {
	font-size: 20px;
	margin: 0;
}

.manual-features.home-collections .entry-title-link {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	font-family: "Proxima Nova", sans-serif;
	font-size: 24px;
	line-height: 1.25;
	text-align: center;
	padding: 0;
	text-decoration: none;
}

@media screen and (min-width: 1024px) {
	.manual-features.home-collections .entry-title-link {
		font-size: 20px;
	}

	.manual-features.home-collections .entry-title-link:hover {
		transform: scale(1);
		text-decoration: underline;
	}
}

/* Home Family Faves */
.manual-features.home-family-faves .entry-image-link img ~ img {
	border: 5px solid #fff;
	border-radius: 50%;
	height: 85px;
	width: 85px;
	display: block;
	margin: -50px auto 0;
	object-fit: cover;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.manual-features.home-family-faves .entry-image-link:hover img ~ img {
		opacity: 1;
	}
}

.manual-features.home-family-faves .pre-title {
	font-size: 20px;
	font-style: italic;
	line-height: 1;
	text-transform: lowercase;
	text-align: center;
	display: block;
	margin: 4px 0 0;
}

.manual-features.home-family-faves .entry-title {
	margin: 0;
}

.manual-features.home-family-faves .entry-title-link {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	line-height: 1.2;
	font-family: "Proxima Nova", sans-serif;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	padding: 2px 15px 0;
}

@media screen and (min-width: 1024px) {
	.manual-features.home-family-faves .entry-title-link {
		font-size: 20px;
		padding-bottom: 5px;
	}

	.manual-features.home-family-faves .entry-title-link:hover {
		text-decoration: underline;
		transform: scale(1);
	}
}

/* Home Posts By Category */

/* Home Bottom Higlighted Features */
.home .manual-features.bottom-highlighted-features {
	border-bottom: none;
}

.home .home-bottom-quick-links {
	padding: 30px 0 100px;
	text-align: center;
}

.home .home-bottom-quick-links .widget-title {
	font-size: 34px;
	font-weight: 800;
	font-family: "Proxima Nova";
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1;
	color: #1c75bc;
}

.home .home-bottom-quick-links .quick-link {
	height: auto;
	margin: 0 10px;
}

@media screen and (min-width: 1024px) {
	.home .home-bottom-quick-links .quick-link {
		max-width: 160px;
		margin: 20px;
	}
}

.home .home-bottom-quick-links .quick-link::after {
	display: none;
}

.home .home-bottom-quick-links .quick-link .quick-link-icon {
	font-size: 16px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #f9f5ed;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	overflow: hidden;
}

@media screen and (min-width: 1024px) {
	.home .home-bottom-quick-links .quick-link .quick-link-icon {
		width: 150px;
		height: 150px;
	}
}

.home .home-bottom-quick-links .quick-link .quick-link-icon:before {
	content: "";
	width: 100px;
	height: 100px;
	background-size: cover;
}

@media screen and (min-width: 1024px) {
	.home .home-bottom-quick-links .quick-link .quick-link-icon:before {
		width: 150px;
		height: 150px;
	}
}

.home .home-bottom-quick-links .quick-link .quick-link-name {
	font-size: 13px;
}

@media screen and (min-width: 1024px) {
	.home .home-bottom-quick-links .quick-link .quick-link-name {
		font-size: 16px;
	}
}

.home-bottom-quick-links .quick-link-icon.rice:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-grains.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.herbs:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-herbs.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.vegetables:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-vegetables.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.tofu:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-tofu.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.sauces:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-sauces.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.spices:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-spices.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.wrappers:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-noodles.png)
		no-repeat center;
}

.home-bottom-quick-links .quick-link-icon.preserved:before {
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-dried.png)
		no-repeat center;
}

/* Images for retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min-device-pixel-ratio: 1.5) {
	.home-bottom-quick-links .quick-link-icon.rice:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-grains@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.herbs:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-herbs@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.vegetables:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-vegetables@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.tofu:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-tofu@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.sauces:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-sauces@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.spices:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-spices@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.wrappers:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-noodles@2x.png);
	}

	.home-bottom-quick-links .quick-link-icon.preserved:before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-glossary-dried@2x.png);
	}
}

.home-bottom-quick-links .carousel-cell {
	width: 33%;
}

@media (min-width: 1024px) {
	.home-bottom-quick-links .carousel-cell {
		width: 20%;
	}
}

.home-bottom-quick-links .flickity-prev-next-button,
.home-bottom-quick-links .flickity-prev-next-button:hover {
	top: unset;
	bottom: -65px;
	background: #f75b2b;
	color: #fff;
	width: 51px;
	height: 51px;
}

@media (min-width: 1024px) {
	.home-bottom-quick-links .flickity-prev-next-button,
	.home-bottom-quick-links .flickity-prev-next-button:hover {
		bottom: unset;
		top: 95px;
		color: #f75b2b;
		background: transparent;
		width: 80px;
		height: 80px;
	}
}

.home-bottom-quick-links .flickity-prev-next-button.previous {
	left: calc(50% - 50px);
	transform: translateX(-50%);
}

.home-bottom-quick-links .flickity-prev-next-button.next {
	left: calc(50% + 50px);
	transform: translateX(-50%);
}

@media (min-width: 1024px) {
	.home-bottom-quick-links .flickity-prev-next-button.previous {
		left: -60px;
		transform: translateY(-50%);
	}

	.home-bottom-quick-links .flickity-prev-next-button.next {
		left: unset;
		right: -50px;
		transform: translateY(-50%);
	}
}

.home-bottom-quick-links .flickity-prev-next-button .flickity-button-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40%;
	height: 40%;
}

@media (min-width: 1024px) {
	.home-bottom-quick-links
		.flickity-prev-next-button:hover
		.flickity-button-icon {
		transform: translate(-50%, -50%) scale(0.9);
		transition: 400ms;
	}

	.home-bottom-quick-links .flickity-prev-next-button .flickity-button-icon {
		width: 60%;
		height: 60%;
	}
}

.home-bottom-quick-links .wrap {
	margin-right: 0;
}

@media (min-width: 1024px) {
	.home .home-bottom-quick-links {
		padding-bottom: 20px;
		padding-top: 50px;
	}

	.home-bottom-quick-links .wrap {
		margin-right: auto;
	}

	.home .home-bottom-quick-links .quick-link:hover {
		border-bottom: 0;
	}

	.home .home-bottom-quick-links .quick-link:hover .quick-link-icon {
		background: #f5f1e9;
	}
}

/* Contact Form */

/* [ Reset ] */

.oc-theme .nf-form-content {
	padding: 0;
	max-width: unset;
}

.oc-theme .nf-form-content .list-select-wrap .nf-field-element > div,
.oc-theme .nf-form-content input:not([type="button"]),
.oc-theme .nf-form-content textarea,
.oc-theme .nf-form-content .list-select-wrap .nf-field-element > div:focus,
.oc-theme .nf-form-content input:not([type="button"]):focus,
.oc-theme .nf-form-content textarea:focus {
	background: inherit;
	border: inherit;
	border-radius: inherit;
	box-shadow: inherit;
	color: inherit;
	text-align: inherit;
	margin-bottom: 12px;
}

.oc-theme .nf-form-content input[type="checkbox"] {
	display: block;
	margin-top: 1px;
}

.oc-theme .nf-form-content .listselect-wrap .nf-field-element div,
.oc-theme .nf-form-content input.ninja-forms-field,
.oc-theme .nf-form-content select.ninja-forms-field:not([multiple]) {
	height: inherit;
}

.oc-theme .nf-form-content .listselect-wrap .nf-field-element div,
.oc-theme .nf-form-content .ninja-forms-field {
	font-size: inherit;
}

.oc-theme .nf-form-content .nf-field-container,
.oc-theme .nf-form-content .nf-input-limit {
	margin: 0;
}

.oc-theme .nf-form-content .checkbox-wrap .nf-field-label label {
	font-size: 12px;
	font-weight: 400;
	text-align: left;
}

.oc-theme .label-right .nf-field-label {
	padding-left: 0;
}

/* Customization */

.nf-form-fields-required {
	display: none;
}

@media (min-width: 1024px) {
	.nf-form-content > nf-fields-wrap > nf-field:nth-of-type(1),
	.nf-form-content > nf-fields-wrap > nf-field:nth-of-type(2) {
		display: inline-block;
		width: 49%;
		vertical-align: top;
	}

	.nf-form-content > nf-fields-wrap > nf-field:nth-of-type(1) {
		margin-right: 2%;
	}
}

.oc-theme .nf-form-wrap .nf-form-content .nf-field-label {
	margin: 0;
	position: absolute;
	top: 10px;
	left: 20px;
	max-width: 100px !important;
}

.oc-theme .nf-form-wrap .nf-form-content .nf-field-label label {
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 16px;
	color: #222;
	line-height: 1;
}

.ninja-forms-req-symbol {
	position: absolute;
	right: -16px;
	top: 4px;
	font-weight: 800;
	font-family: Segoe UI;
	font-size: 20px;
}

.oc-theme .nf-form-content input:not([type="button"]),
.oc-theme .nf-form-content textarea,
.oc-theme .nf-form-content input:not([type="button"]):focus,
.oc-theme .nf-form-content textarea:focus {
	border: 2px solid #000;
	min-height: 48px;
	line-height: 1;
	color: #666;
	font-size: 18px !important;
	padding: 12px 16px 12px 125px !important;
}

@media (min-width: 1024px) {
	.nf-form-content
		> nf-fields-wrap
		> nf-field:nth-of-type(1)
		input:not([type="button"]),
	.nf-form-content
		> nf-fields-wrap
		> nf-field:nth-of-type(2)
		input:not([type="button"]),
	.nf-form-content
		> nf-fields-wrap
		> nf-field:nth-of-type(1)
		input:not([type="button"]):focus,
	.nf-form-content
		> nf-fields-wrap
		> nf-field:nth-of-type(2)
		input:not([type="button"]):focus {
		padding-left: 100px !important;
	}
}

.oc-theme .nf-form-content textarea,
.oc-theme .nf-form-content textarea:focus {
	padding: 48px 16px 12px 16px !important;
}

#rc-imageselect,
.g-recaptcha {
	transform: none;
	-webkit-transform: none;
	margin-bottom: 12px;
}

.oc-theme .nf-form-content input[type="button"] {
	font-weight: 500;
	font-size: 16px;
	padding: 15px 20px;
	background: #000;
}

@media (min-width: 1024px) {
	.oc-theme .nf-form-content input[type="button"]:hover {
		transform: scale(1.05);
		color: #fff;
		background: #000;
	}
}

/* [ Error Page - 404 ] */

@media screen and (min-width: 1024px) {
	.error404 .content-sidebar-wrap {
		margin: 27px auto;
	}

	.error404 .content-sidebar-wrap .entry-title {
		margin-top: 0;
		margin-bottom: 0;
	}

	.error404 .content-sidebar-wrap .content {
		width: 100%;
	}
}

.error404 .entry-content .search-form {
	width: 100%;
	border-radius: 0;
	background-color: #f9f5ed;
	border: 2px solid #222;
	padding: 0 12px;
	max-width: 300px;
}

.error404 .entry-content .search-form .search-submit-icon {
	top: 0;
	right: 5px;
}

/* [ Page Template: Image Header ] */

.page-template-page_image-header .image-header .archive-nav > .wrap {
	max-width: calc(100% - 20px);
	margin: 0 auto;
	padding-bottom: 0;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 1024px) {
	.page-template-page_image-header .image-header .archive-nav > .wrap {
		max-width: 1020px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media screen and (min-width: 1200px) {
	.page-template-page_image-header .image-header .archive-nav > .wrap {
		max-width: 1100px;
	}
}

.page-template-page_image-header .image-header .archive-nav .entry-title {
	display: inline-block;
	background-color: #fff;
	flex-grow: unset;
	width: auto;
	padding: 15px 25px;
	font-size: 32px;
	letter-spacing: 0.1em;
	text-align: center;
	max-width: 85%;
}

.page-template-page_image-header .image-header + .page-description {
	max-width: calc(100% - 20px);
	margin: 0 auto;
	padding-bottom: 20px;
	padding-top: 0;
	border-bottom: 4px double #000;
}

@media screen and (min-width: 1024px) {
	.page-template-page_image-header .image-header + .page-description {
		max-width: 1020px;
		margin-right: auto;
		margin-left: auto;
		padding-bottom: 30px;
		padding-top: 20px;
	}
}

@media screen and (min-width: 1200px) {
	.page-template-page_image-header .image-header + .page-description {
		max-width: 1100px;
	}
}

.page-template-page_image-header
	.image-header
	+ .page-description
	p:last-of-type {
	margin-bottom: 0;
}

/* [ Custom Block: Category ] */

.wp-block-group.category-section .wp-block-columns {
	margin: 0 -8px;
	align-items: stretch;
}

.wp-block-group.category-section .wp-block-column {
	margin: 0 8px 15px;
	height: 100%;
}

@media screen and (min-width: 1024px) {
	.wp-block-group.category-section .wp-block-column {
		margin: 0 8px 16px;
		height: 100%;
	}
}

.wp-block-group.category-section h2 {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 26px;
}

.wp-block-group.category-section .wp-block-image {
	margin: 0;
	display: flex;
	flex-direction: column;
}

.wp-block-group.category-section .wp-block-image img {
	width: 100%;
	object-fit: cover;
}

.wp-block-group.category-section .wp-block-image figcaption {
	background-color: #f9f5ed;
	margin: 0;
	font-size: 20px;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	text-align: center;
	flex-grow: 1;
	padding: 15px;
	color: #222;
}

/* [ Custom Block: Team Block ] */

.wp-block-group.team-block {
	margin: 15px 0;
}

@media screen and (min-width: 1024px) {
	.wp-block-group.team-block {
		margin: 30px 0;
	}
}

.wp-block-group.team-block .wp-block-columns {
	margin: 0 -8px;
}

.wp-block-group.team-block .wp-block-column {
	margin: 0 8px 15px;
	text-align: center;
}

.wp-block-group.team-block .wp-block-column .wp-block-column {
	background-color: #f9f5ed;
	padding-bottom: 16px;
}

.wp-block-group.team-block .wp-block-image img {
	width: 100%;
	object-fit: cover;
}

.wp-block-group.team-block .wp-block-image figcaption {
	font-size: 20px;
	font-style: italic;
	line-height: 1;
	text-transform: lowercase;
	text-align: center;
	display: block;
	margin: 12px 0 0;
}

.wp-block-group.team-block .wp-block-image {
	margin: 0;
}

.wp-block-group.team-block h4 {
	font-size: 20px;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	text-align: center;
	text-align: center;
}

.wp-block-group.team-block .wp-block-buttons {
	justify-content: center;
}

.wp-block-group.team-block .wp-block-button {
	margin: 0;
}

.wp-block-group.team-block .wp-block-button__link {
	border: 1px solid #222222;
	background-color: transparent;
	color: #222222;
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 0;
	text-decoration: none;
	font-size: 14px;
	padding: 6px 18px;
}

@media screen and (min-width: 1024px) {
	.wp-block-group.team-block .wp-block-button__link:hover {
		background-color: #222222;
		color: #fff;
		transform: scale(1.05);
	}
}

/* [ Custom Block: Black Heading ] */

.wp-block-group.black-heading .wp-block-group__inner-container {
	background-color: #222222;
	color: #fff;
	padding: 15px;
	margin: 15px 0;
}

.wp-block-group.black-heading .wp-block-group__inner-container h2,
.wp-block-group.black-heading .wp-block-group__inner-container a {
	color: #fff;
}

.wp-block-group.black-heading .wp-block-group__inner-container h2 {
	margin-top: 0;
	font-size: 20px;
	margin-bottom: 0;
}

.wp-block-group.black-heading .wp-block-group__inner-container p {
	margin-bottom: 0;
}

.wp-block-group.black-heading .wp-block-group__inner-container a {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 12px;
}

@media screen and (min-width: 1024px) {
	.wp-block-group.black-heading .wp-block-group__inner-container a:hover {
		text-decoration: underline;
	}
}

/* [ Custom Block: Fast Facts ] */

.wp-block-group.fast-facts {
	border: 2px solid #222222;
	padding: 25px 20px;
	margin: 15px 0;
}

.wp-block-group.fast-facts h2 {
	font-size: 20px;
	margin-top: 0;
	display: flex;
	align-items: center;
}

.wp-block-group.fast-facts h2::before {
	width: 24px;
	display: block;
	margin-right: 12px;
	margin-bottom: -4px;
	content: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/icon-check-circle.svg);
}

.wp-block-group.fast-facts .schema-faq-question {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 18px;
}

.wp-block-group.fast-facts .wp-block-button {
	margin: 0;
}

.wp-block-group.fast-facts .wp-block-button__link {
	border: 2px solid #f75b2b;
	background-color: transparent;
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 0;
	text-decoration: none;
	font-size: 16px;
	padding: 12px 24px;
	text-decoration: none;
	color: #222222;
}

@media screen and (min-width: 1024px) {
	.wp-block-group.fast-facts .wp-block-button__link:hover {
		background-color: #222222;
		border-color: #222222;
		color: #fff;
		transform: scale(0.95);
	}
}

/* [ Custom Block: Tip Block ] */

.wp-block-group.tip-block {
	background-color: #f9f5ed;
	padding: 20px;
	margin: 15px 0;
}

.wp-block-group.tip-block h3 {
	font-size: 20px;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 8px;
	display: flex;
	align-items: center;
}

.wp-block-group.tip-block h3::before {
	content: "\e918";
	font-family: "Icons";
	font-weight: normal;
	display: block;
	margin-right: 12px;
	color: #f75b2b;
}

.wp-block-group.tip-block p:last-of-type {
	margin-bottom: 0;
}
