/*
Theme Name: Mindspike
Theme URI: http://underscores.me/
Author: Christopher Cook
Author URI: http://mindspikedesign.com
Description: Mindspike Starter Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindspike
Tags: grid-layout, featured-images

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Mindspike is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/


/* ==============================
== General
============================== */
html {
	font-size: 100%;
}

body {
	width: 100%;
	margin: 0 0 !important;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
}

#main-content {
	flex: 1 0 auto;
}

a {
	text-decoration: none;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

a:focus, button:focus, input:focus, textarea:focus {
	outline: none !important;
}

.page-wrapper {
	padding: 40px 0;
}

.page-wrapper a {
	color: #3c2a57;
}

.page-featured {
	width: 100%;
	padding: 60px 0 0 0;
	background: url('https://yomamagoodness.com/wp-content/uploads/2018/10/blue-sprinkle-bg-small-2.jpg');
	background-repeat: repeat;
	background-position: center;
}

.page-menu {
	width: 100%;
	padding: 60px 0 0 0;
	background:url('https://yomamagoodness.com/wp-content/themes/mindspike/images/pink-bg.jpg');
	background-repeat: repeat;
	background-position: center;
}


/* ==============================
== WordPress Core
============================== */

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 0 20px 0 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%; /* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.gallery-caption {

}

.sticky {

}

.bypostauthor {

}

.pp_overlay {
	z-index: 9999;
}

.pp_description {
	display: none !important;
}


/* ==============================
== Header
============================== */
.main-header{
	width: 100% !important;
	background: #fff;
}

.header-inner {
	width: 100%;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0;
}

.logo {
	width: 100%;
	max-width: 225px;
	height: 80px;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	position: relative;
}

.logo img {
	max-width: 225px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}

/* hide mobile version by default */
.logo .mobile {
	display: none;
}
/* when screen is less than 600px wide
   show mobile version and hide desktop */
@media (max-width: 992px) {
	.logo .mobile {
		display: block;
	}
	.logo .desktop {
		display: none;
	}

	.logo {
		width: 100%;
		max-width: 128px;
		height: 88px;
		margin: 5px 0;
		display: -webkit-flex;
		display: flex;
		align-items: flex-start;
		position: relative;
	}

	.logo img {
		max-width: 128px;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 999;
	}
}

.nav-menu {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	text-align: right;
	flex-direction: column;
	font-family: felt-tip-roman, sans-serif;
	color: #3c2a57 !important;
	z-index: 999;
}

.nav-menu nav {
	font-weight: 600;
	font-family: felt-tip-roman, sans-serif;
}

.top-nav {
	padding: 0 10px;
	margin: 5px 0;
}

.top-nav a {
	margin: 0 5px;
	color: #3c2a57;
	font-weight: 600;
}

.top-nav a:hover {
	opacity: 0.7;
}

.top-nav a.top-social {
	color:#f15d5e;
	font-size: 1.2em;
}


.mobile-social a {
	color: #f15d5e !important;
	font-size: 1.4em !important;
	margin-right: 10px !important;
}

#responsive-menu-pro-title {
	padding: 15px 15px !important;
}

#responsive-menu-pro-title-image {
	margin-bottom: 0 !important;
}


/* ==============================
== Typography
============================== */

h1, h2, h3, h4, h5 {
	line-height: 1.2em;
	font-family: "Amatic SC", sans-serif;
	margin: .6em 0;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.6em;
}

h3 {
	font-size: 2.2em;
}

h4 {
	font-size: 1.6em;
}

h5 {
	font-size: 1em;
}

p {
	margin: .6em 0;
}

.special {
	font-family: felt-tip-roman, sans-serif !important;
}

.medium {
	font-size: 1.4rem;
}

.large {
	font-size: 2rem;
}

.white {
	color: #fff !important;
}
.pink {
	color: #f15d5e !important;
}

.blue {
	color: #B1DED3 !important;
}

.green {
	color: #d4db90 !important;
}

.purple {
	color: #3c2a57 !important;
}

.center {
	text-align: center !important;
}


.flexwrap-box h2 {
	width: 100%;
	display: flex;
	align-items: center;
	margin: 20px 0 !important;
}



/* ==============================
== Buttons
============================== */

.btn-pink {
	background: #f15d5e;
	color: #fff !important;
	border: none;
	border-radius: 4px;
	padding: 7px 20px !important;
	font-size: 1em !important;
	font-family: felt-tip-roman, sans-serif;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn-pink:hover {
	opacity: 0.7;
}

.btn-pink-large {
	background: #f15d5e;
	color: #fff !important;
	border: none;
	border-radius: 4px;
	padding: 12px 25px !important;
	font-size: 1.4em !important;
	font-family: felt-tip-roman, sans-serif;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn-pink-large:hover {
	opacity: 0.7;
}

.btn-white-large {
	background: #fff;
	color: #f15d5e !important;
	border: none;
	border-radius: 4px;
	padding: 12px 25px !important;
	font-size: 1.4em !important;
	font-family: felt-tip-roman, sans-serif;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.btn-white-large:hover {
	opacity: 0.7;
}




/* ==============================
== Homepage
============================== */

#homepage-flavors ul {
	list-style: none !important;
	margin: 0 0 !important;
	padding: 0 0 !important;
}
#homepage-flavors ul li {
	text-align: center;
	margin-bottom: 5px;
}

#flavorBox {
	border-radius: 20px !important;
}

.homepage-two-left {
	min-height: 300px !important;
	position: relative;
}

.white-wave {
	width: 100%;
	height: 30px;
	background: url('https://yomamagoodness.com/wp-content/themes/mindspike/images/white-wave.png');
	background-repeat: repeat-x;
	background-position: center;
}

.white-vert {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
	background: url('https://yomamagoodness.com/wp-content/themes/mindspike/images/white-wave-vert.png');
	background-repeat: repeat-y;
}




/* ==============================
== Menu
============================== */

table#menu {
	width: 100%;
	padding: 5px 5px;
	margin-bottom: 30px;
	color: #3c2a57 !important;
}

table#menu tr th {
	padding: 5px 5px;
	text-align: left;
	font-family: 'Amatic SC', cursive;
	color: #fff;
	font-size: 2em;
	line-height: 1em;
}

table#menu tr td {
	padding: 5px 5px;
	background: rgba(255,255,255,0.5)
}

.flex-menu {
	display: flex;
	flex-wrap: wrap;
}

.menu-box {
	width: 48%;
	margin: 1% 1%;
	padding: 1% 1%;
	background: #B1DED3;
	border-radius: 20px 20px 20px 20px;

}



/* ==============================
== Blog
============================== */
.blog-post {
	width: 100%;
	padding: 15px;
	margin-bottom: 30px !important;
	background: rgba(255,255,255,1);
	border: 1px #eee solid;
}

.post-meta {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px #eee solid;
}

.entry {
	margin-bottom: 26px;
}



/* ==============================
== Sidebar
============================== */
#sidebar-main {
	background: #fff;
	border: 1px #eee solid;
	padding: 15px;
}

#sidebar-main h2 {
	margin-top: 0 !important;
	font-size: 1.4em;
	text-transform: uppercase;
}

#sidebar-main ul {
	margin: 0 0 !important;
	padding: 0 0 !important;
	list-style: none !important;
}

#sidebar-main ul li {
	padding: 3px 0 7px 0 !important;
	border-bottom: 1px #f2f2f2 solid;
	line-height: 1.2em !important;
}

#sidebar-main ul li:lastchild {
	border: none;
}

#sidebar-main h4 {
	font-size: 1.2em;
	color: #1c3458;
}

#sidebar-main h5 {
	font-size: 1em;
	color: #1c3458;
}





/* ==============================
== Contact Form
============================== */

input[type=submit] {
	-webkit-appearance: none !important;
}

.gform_body input, .gform_body textarea {
	padding: 10px 10px !important;
	border: 1px #ccc solid !important;
	border-radius: 4px;
	-webkit-appearance: none;
}

.gform_wrapper .gform_footer input[type=submit] {
	background: #f15d5e;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 7px 20px !important;
	font-size: 1em !important;
	font-family: felt-tip-roman, sans-serif;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.gform_wrapper .gform_footer input[type=submit]:hover {
	cursor: pointer;
	opacity: 0.7;
}



/* ==============================
== Footer
============================== */
.footer {
	background-color: #3f2a57;
	padding: 15px 15px 0 15px;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.footer ul {
	list-style: none;
	margin: 0 0;
	padding: 0 0;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	opacity: 0.7;
}

.copyright {
	background: #3f2a57;
	color: #fff;
	text-align: center;
	padding: 15px;
	font-size: .9em !important;
}

.flex-copyright {
	display: flex;
	justify-content: space-between;
}

.copyright a {
	color: #fff !important;
}

.copyright a:hover {
	opacity: 0.7;
}


input.mc-email {
	-webkit-appearance: none;
	width: 90% !important;
	padding: 10px 10px !important;
	font-size: .9em;
	border: none !important;
	border-radius: 4px !important;
}

input.mc-submit {
	-webkit-appearance: none;
	background: #f15d5e !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	padding: 7px 20px !important;
	font-size: 1em !important;
	font-family: felt-tip-roman, sans-serif;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

input.mc-submit:hover {
	cursor: pointer;
	opacity: 0.7;
}

.footer-social a {
	color: #f15d5e;
	font-size: 1.4em;
	margin: 10px 15px 10px 0;
	display: inline-block;
}


.footer-wave {
	width: 100%;
	height: 20px;
	background: url('https://yomamagoodness.com/wp-content/themes/mindspike/images/white-wave-small.png');
	background-repeat: repeat-x;
	background-position: top center;
}



/* ==============================
== Media Queries
============================== */

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {



}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {



}



/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

	.page-featured {
		padding: 0 0 0 0;
	}

	.page-menu {
		padding: 0 0 0 0;
	}
}


/* Medium Devices, Desktops */
@media only screen and (max-width : 900px) {

	.top-nav {
		display: none;
	}

}



/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

	.header-inner {
		justify-content: space-between;
	}

	.nav-menu {
		align-items: flex-end;
	}

	.header-logo {
		margin-left: 0;
	}

	.white-vert {
		display: none;
	}

	.flex-copyright {
		flex-direction: column;
	}

}



/* Small Devices, Tablets */
@media only screen and (max-width : 765px) {

	.menu-box {
		width: 98%;
	}

}



/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

	.footer-content {
		padding: 15px 0 30px 0;
	}

}


/*
     FILE ARCHIVED ON 15:13:16 Jun 27, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 14:14:34 Sep 03, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.584
  exclusion.robots: 0.028
  exclusion.robots.policy: 0.018
  esindex: 0.009
  cdx.remote: 9.812
  LoadShardBlock: 273.889 (3)
  PetaboxLoader3.datanode: 199.74 (5)
  PetaboxLoader3.resolve: 290.75 (2)
  load_resource: 276.901
  loaddict: 120.862
*/