/*
Theme Name: SIBO Guru
Version: 1.0
Date: 10 March 2015
Author: Sterr Bros
Author URI: http://www.sterr-bros.com/
Description: Customized theme for www.siboguru.com
*/

/* THEME VARIABLES */
:root {
	
	/* NEW 2025 */
	--color-gold: #DDA536;
	--color-gold-dark: #B57D0F;
	--color-gold-light: #FFF4DE;
	--color-gray: #696969;
	--color-gray-dark: #444444;
	--color-gray-light: #9A9A9A;	
	--color-red: #DD3636;
	--color-red-dark: #BF1818;
	--color-red-light: #FF4F4F;
	--color-white: #FFFFFF;
	
	--color-slate: #273842;
	--color-slate-dark: #1e2b33;
	--color-slate-light: #566e7b;
	--color-pink: #d19066;
	--color-pink-light: #f5e9df;
	--color-umber: #a3562c;
	--color-seafoam: #a8b9b4;
	--color-seafoam-dark: #748061;
	--color-seafoam-light: #e4ecea;
	--color-lightgray: #F5F5F5;
	--color-lightgray-dark: #DEDEDE;
	
}

/* GENERAL */
body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	background: var(--color-white);
	color: var(--color-slate);
}

.cursive {
	font-family: 'Great Vibes', cursive;
}

.orange {
	color: #DE6E00;
}

.green {
	color: #708437;
}

a:link { color: #DE6E00; outline: none; }
a:visited { color: #DE6E00; }
a:hover { color: #708437; }
a:active { color: #708437; }

img {max-width: 100%; height: auto;}

/* HEADER */

#header {
	position: relative; 
	width: 100%;
	background: #f5f5f5;
}

#header #menubar {
	position: relative;
	width: 100%;
	height: 49px;
	border-bottom: 1px solid var(--color-lightgray);
	z-index: 500;
	box-shadow: 0px 0px 15px var(--color-gray-dark);
}

#header #menubar .inner {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#header #menubar #logo {
	float: left;
	padding: 3px 0 0 5px;
}

#header #menubar #menu {
	float: right;
	padding: 0 5px 0 0;
	height: 49px;
}

#header #menubar #menu ul {
	padding: 0;
	margin: 0;
}

#header #menubar #menu li {
	list-style: none;
	display: inline-block;
	float: left;
	margin-left: 35px;
	position: relative;
	height: 49px;
	line-height: 49px;
}

#header #menubar #menu li a {
	font-size: 13px;
	color: var(--color-slate);
	text-transform: uppercase;
	text-decoration: none;
}

#header #menubar #menu li a:hover {
	color: var(--color-pink);
}

#header #menubar #menu ul ul {
	position: absolute;
	top: 49px;
	left: -2em;
	background: var(--color-lightgray);
	border: 1px solid white;
	border-top-width: 0px;
	box-shadow: 0px 3px 8px var(--color-gray);
	width: 18em;
	display: block;
	height: 0;
	opacity: 0;
	overflow: hidden;
}
#header #menubar #menu ul ul.open {
	height: auto;
	opacity: 1;
	transition: all .5s ease;
}

#header #menubar #menu ul ul li {
	margin: 0;
	padding: .5em 2em;
	float: none;
	height: auto;
	line-height: 1.3em;
}

#header #menubar #menu ul ul li a {
	font-size: 12px;
	line-height: 14px;
	color: var(--color-gray);
	text-transform: uppercase;
	text-decoration: none;
}

#header #banner {
	width: 100%;
	position: relative;
	background: url(images/banner-bg.jpg) center top repeat;
	background-color: #f0f0ee;
	background-size: cover
	text-align: center;
}

#header #banner a {
	line-height: 0;
}

#header #banner img {
	max-width: 100%;
	height: auto;
	margin: 0;
	display: block;
}

/* CONTENT */

#content {
	position: relative;
	width: 100%;
	background: url(images/content-bg.png) left top repeat #FFF;
	padding-top: 3em;
}

#content .inner {
	position: relative;
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 1em 2em 1em;
	box-sizing: border-box;
}

#content #page {
	float: left;
	width: 55%;
}

#content #page > .text {
	position: relative;
}

#content #page .post {
	width: 100%;
	background: FDFDFD;
	padding: 0em 0 2em 0;
	border-bottom: 1px solid #DDD;
	margin-bottom: 0em;
}

#content #page .post .title {
	font-size: 23px;
	line-height: 1.2em;
	background: #444;
	padding: .6em;
}

#content #page .post .title a {
	text-decoration: none;
	color: #FFF;
}

#content #page .post .title a:hover {
	text-decoration: none;
	color: #DDD;
}

#content #page .post .image {
	width: 100%;
	position: relative;
}

#content #page .post .image img {
	width: 100%;
	height: auto;
	border: none;
	box-shadow: none;
}

#content #page .post .image .play-icon {
	width: 20%;
	height: 0;
	padding-bottom: 100%;
	background: url(images/play-icon.png) 0 0 no-repeat;
	background-size: contain;
	position: absolute;
	top: 35%;
	left: 40%;
}

#content #page .post .date {
	float: left;
	font-size: 16px;
	margin: 1em 0;
}

#content #page .post .date a {
	text-decoration: none;
}

#content #page .post .share {
	display: none;
	float: right;
	font-size: 16px;
	margin: 1em 0;
}

#content #page .post .text {
	clear: both;
	margin-top: 1em;
}

#content #page .text p, #content #page .text ul, #content #page .text ol, #content #page .text table {
	font-family: Helvetica, Calibri, Arial, sans-serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.3em;
	margin-top: 0;
}

#content #page .post .text p, #content #page .post .text ul, #content #page .post .text ol, #content #page .post .text table {
	font-size: 16px;
}

#content #page .post .text a.more-link {
	text-decoration: none;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 14px;
}

#content #page #opt-in-single {
	position: relative;
	width: 94%;
	padding: 3% 3% 1% 3%;
	background: #DE6E00;
	overflow: visible;
}
#content #page #opt-in-single .inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
#content #page #opt-in-single #opt-in-text{
	width: 100%;
}
#content #page #opt-in-single #opt-in-text p {
	color: white;
	font-variant: small-caps;
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0;
}
#content #page #opt-in-single #opt-in-form {
	position: relative;
	width: 530px;
	transform-origin: center left;
	overflow: visible;
}

#content #page .text img {
	border: 2px solid #FFF;
	box-shadow: 2px 2px 3px #BBB;
}

#content #page .nav-prev {
	float: left;
	width: 45%;
	text-align: left;
}

#content #page .nav-next {
	float: right;
	width: 45%;
	text-align: right;
}

#content #page .wp-pagenavi {
	margin: 20px 0 12px 0;
}

#content #page .wp-pagenavi .pages {
	border: none;
}

#content #page .wp-pagenavi .page, #content #page .wp-pagenavi .nextpostslink, #content #page .wp-pagenavi .previouspostslink {
	border: none;
}

#content #page .wp-pagenavi .current {
	border: none;
	background: #DE6E00;
	color: #FFF;
}

#content #page .wp-pagenavi .page:hover {
	background: #DDD;
	color: #DE6E00;
}

#content #page .wp-pagenavi .nextpostslink:hover, #content #page .wp-pagenavi .previouspostslink:hover {
	color: #DE6E00;
}

#fb_login_button { 
    width: 80px; 
}
#fb_login_button span, 
#fb_login_button iframe {.
    width: 80px !important;
    height: 25px !important;
}

#content #page .post .text .tweetbox {
	width: 100%;
	margin: 1em 0;
	border-top: 3px solid #708437;
	border-bottom: 3px solid #708437;
	text-align: center;
	padding: 1em 0;
	position: relative;
}

#content #page .post .text .tweetbox .icon {
	background: url(images/twitter-icon-large.png) 0 0 no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 50px;
	height: 50px;
}

#content #page .post .text .tweetbox p {
	color: #708437;
	font-size: 20px;
	margin: 0 0 1em 0;
	padding: 0 50px;
	text-align: center;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

#content #page .post .text .tweetbox em {font-style: normal;}

#content #page .post .text .tweetbox a {
	background-color: #EEEEEE;
	background-image: linear-gradient(#FFFFFF, #DEDEDE);
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	color: #333333;
	cursor: pointer;
	font-weight: bold;
	height: 18px;
	max-width: 98%;
	overflow: hidden;
	position: relative;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

#content #page .post .text .tweetbox a span {
	padding: 0 3px 0 19px;
	white-space: nowrap;
	display: inline-block;
	font-size: 11px; 
	font-weight: 700;
	font-family: 'Helvetica Neue', Arial, sans-serif;
}

#content #page .post .text .tweetbox a i {
	background: url(images/twitter-icon-green.png) 0px 0px no-repeat;
	display: block;
	height: 13px;
	left: 2px;
	margin-top: -5px;
	position: absolute;
	top: 50%;
	width: 16px;
}

#content #page .post .text .video-wrapper {
	float: none;
	clear: both;
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px;
	height: 0;
}

#content #page .post .text .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-wrapper iframe {
	width: 100%;
}

#content #page .post .text .partner {
	margin: 1em 10% 2em 10%;
	width: 80%;
}

#content #page .post .text .partner img {
	float: none; 
	width: 100%;
	margin: 0 0 1em 0;
}

#content #page .post .text .partner .links {
	float: left; 
	width: 30%;
	font-size: .9em;
}

#content #page .post .text .partner .info {
	float: right; 
	width: 60%;
	font-size: .9em;
}

/* PRAISE style comments */
#content #page .post .text #praise-login {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #AAA; 
}

#content #page .post .text #praise-login a {
	text-decoration: none;
}

#content #page .post .text #praise-login p {
	padding: 5% 5% 0 5%;
}

#content #page .post .text #praise-login p.cursive {
	font-family: 'Great Vibes', cursive;
	font-size: 2.5em;
	padding: 0;
	font-weight: bold;
	margin: 0;
}

#content #page .post .text #praise-login .join {
	margin: 0 auto;
	background: #FFF;
	border-radius: 10px;
	box-shadow: 2px 2px 3px #708437;
	width: 27%;
	color: #708437;
	font-size: .9em;
	text-align: center;
	text-decoration: none;
}

#content #page .post .text #praise-login .join:hover {
	color: #FFF;
	background: #708437;
	box-shadow: 2px 2px 3px #AAA;
}

#content #page .post #comments .praise {
	margin: 0 0 2em 0;
}

#content #page .post #comments .praise p {
	font-size: 18px;
}

#content #page .post #comments .praise table.ratings {
	background: transparent;
	float: none;
	display: block;
	margin: 0 0 1em 0;
}
#content #page .post #comments .praise.highlight table.ratings {
	display: table;
	margin: 0 auto 1em auto;
}

#content #page .post #comments .praise.highlight {
	border-top: 2px solid #DE6E00;
	border-bottom: 2px solid #DE6E00;
	padding: 1em 0;
	text-align: center;
}

#content #page .post #comments .praise.highlight.odd p {
	color: #DE6E00;
	font-weight: bold;
}

#content #page .post #comments .praise.highlight.even {
	border-color: #708437;
}

#content #page .post #comments .praise.highlight.even p {
	color: #708437;
	font-weight: bold;
}

#content #page .post #comments .praise.hasimage p {
	float: left;
	width: 80%;
}
#content #page .post #comments .praise.hasimage p.comment-image {
	float: right;
	width: 120px;
	height: 120px;
	display: block;
	border-radius: 60px;
	overflow: hidden;
	margin: 0;
}

#content #page .post #comments .comment-image img {
	border: 0;
	box-shadow: none;
}

#content #page .post #comments .praise table.ratings .rating_label {
	display: none;
}

#content #page .post #comments .praise table.ratings .rating_label {
	display: none;
}

#content #page .post #comments .praise table.ratings .rating_value {
	padding: 0 !important;
}

#content #page .post #comments .praise table.ratings .rating_value img {
	border: none;
	box-shadow: none;

}

#content #page .post #comments .praise .review {
	text-transform: uppercase;
	font-size: 16px;
	line-height: .4em;
}

#content #page .post #commentform #comment-ratings {
	float: left;
}

#content #page .post #commentform #comment-ratings .info {
	float: left;
	font-size: 12px;
	line-height: 26px;
}

#content #page .post #commentform #comment-ratings table.ratings {
	float: left;
	margin: 0 1em 0 0;
	background: transparent;
}

/* BLOG style comments */
#page.single .comment {
	position: relative;
	width: 100%;
	margin: 0 0 1em 0;
}
#page.single .comment .cimage {
	float: left;
	width: 10%;
	height: 0;
	padding-bottom: 12%;
}
#page.single .comment .cimage img {
	width: 100%;
	height: auto;
}
#page.single .comment .summary {
	float: right;
	width: 85%;
}
#page.single .comment .summary p {
	margin: 0 0 .5em 0;
	color: #444;
}
#page.single .comment.odd .summary p {
}
#page.single .comment .review {
	float: right;
	width: 85%;
	font-style: italic;
	color: #88A068;
	margin: 0;
}
#page.single .comment .review .reviewer {
	color: #DE6E00;
}
#page.single .comment.odd .review {
}
#page.single #comment-image-wrapper {
	display: none;
}

/* OPT-IN */
#optin {
	height: 170px;
	background: var(--color-seafoam);
	box-shadow: none;
	overflow: visible;
	width: 100%;
	margin: 0;
}
#optin.coronavirus-page {
	background: #555;
}
#optin.blank {
	height: 40px;
}
#optin .optin-inner {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	position: relative;
}
#optin .optin-inner {
	padding-top: 50px;
}
#optin.fodmap-webinar-page .optin-inner {
	padding-top: 25px;
}
#optin #opt-in-text{
	float: left;
	width: calc(100% - 450px);
}
#optin.fodmap-webinar-page #opt-in-text {
	margin-top: 3px;
}
#optin #opt-in-text img {
	position: absolute;
	left: -30px;
	top: -40px;
	border: none !important;
	box-shadow: none !important;
}
#optin #opt-in-text img {
	top: 10px;
}
#optin #opt-in-text p {
	color: var(--color-slate);
	font-size: 14px !important;
	letter-spacing: 1px;
	margin: 9px 0 0 0 !important;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
	padding: 0 .5em 0 100px;
	line-height: 1.3em;
}
#optin #opt-in-text p {
	font-size: 18px !important;
	margin: 0 !important;
}
#optin.fodmap-webinar-page #opt-in-text p span {
	letter-spacing: 0;
}

#optin #opt-in-biocanic {
	width: 440px;
	position: absolute;
	right: 0;
	top: 22px;
}

.fodmap-webinar-practitioners-optin {
	text-align: center;
	display: block;
	padding: .5% 0;
}
.fodmap-webinar-practitioners-optin form {
	display: inline-block;
	text-align: center;
	background: #5b6b2c;
}
.fodmap-webinar-practitioners-optin input {
	padding: .5em;
	font-size: 18px;
	margin: 2%;
	width: 45%;
	box-sizing: border-box;
}
.fodmap-webinar-practitioners-optin input[type="image"] {
	width: 100px;
	height: 100px;
	background: #f9971a;
	padding: 0;
	border-radius: 50px;
	box-shadow: 2px 2px 1px #333;
	z-index: 1000;
}
.fodmap-webinar-practitioners-optin input[type="image"]:hover {
	background: #de6e00;
}
.fodmap-webinar-practitioners-optin .g-recaptcha {
	margin: 2%;
}
.fodmap-webinar-practitioners-optin .g-recaptcha > div {
	display: inline-block;
}


/* HOME PAGE */
body.page-template-page-landing #content,
body.page-template-page-new-design #content {
	padding-top: 0;
}
body.page-template-page-landing #content .inner,
body.page-template-page-new-design #content .inner {
	max-width: 100%;
	padding: 0 0 3em 0;
}
body.page-template-page-landing #content .home-section,
body.page-template-page-new-design #content .home-section {
	margin: 0 auto;
	max-width: 1040px;
	box-sizing: border-box;
}
body.page-template-page-landing #content .home-section.fullwidth,
body.page-template-page-new-design #content .home-section.fullwidth {
	max-width: 100%;
}
.home-cta-boxes {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	padding: 3em 0;
	flex-wrap: wrap;
}
.home-cta-boxes h2 {
	flex-basis: 100%;
	text-align: center;
	font-size: 28px;
	line-height: 1.3em;
	margin: 0 0 1.5em 0;
	color: var(--color-seafoam-dark);
	font-weight: normal;
}
.home-cta-boxes h2 em {
	color: var(--color-umber);
	font-style: normal;
	font-weight: bold;
	font-size: 42px;
}
.home-cta-boxes > a {
	display: flex;
	flex-basis: 30%;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 2em 1em;
	box-sizing: border-box;
	background: var(--color-pink);
	color: #fff;
	text-decoration: none;
	transition: .3s all;
	border: 2px solid #fff;
	box-shadow: 1px 1px 6px #333;
	border-radius: 40px;
	font-size: 20px;
	text-shadow: 1px 1px #333;
	opacity: 1;
}
.home-cta-boxes > a.contact {
	background: var(--color-pink);
}
.home-cta-boxes > a:hover {
	background: var(--color-umber);
}

.home-cta-boxes > a span {
	display: block;
	margin-top: .7em;
}
.home-quote {
	background: var(--color-seafoam-light);
	padding: 2em 4em 1em 4em;
}
.home-quote .quote {
	font-size: 18px !important;
	font-style: italic;
	line-height: 1.5em !important;
	text-align: center;
	font-weight: bold !important;
	color: var(--color-slate-light);
}
.home-approach {
	padding: .5em 4.5em;
}
.home-approach h2 {
	text-align: center;
	margin: 1.5em auto;
}
.home-approach p {
	font-size: 18px !important;
	background-image: url(images/check-mark.png);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 0 0 0 60px;
	margin-bottom: 1.5em;
}
.home-approach p:last-of-type {
	background: none;
}	
.home-angela {
	display: flex;
}
.home-angela > div {
	flex-basis: 50%;
	box-sizing: border-box;
}
.home-angela .image {
	background: url(images/meet-angela.jpg) center top #777;
	background-size: cover;
}
.home-angela .description {
	background: #efefef;
	padding: 1em 2em;
}
.home-optin {
	padding: 0;
}
.home-consult {
	background: var(--color-seafoam-light);
	padding: 2em 0 3em 0;
	text-align:	center;
	color: var(--color-slate);
	margin: 3em 0 !important;
}
.home-consult a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: .5em 3em;
	font-size: 20px;
	border-radius: 30px;
	background: var(--color-pink);
	border: 2px solid #fff;
	cursor: pointer;
	transition: .3s all;
	box-shadow: 2px 2px 5px #333;
}
.home-consult a:hover {
	background: var(--color-umber);
	color: #fff;
}
.home-praise {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 1em 0;
}
.home-praise h2 {
	flex-basis: 100%;
	margin: 0 0 2em 0;
	text-align: center;
}
.home-praise #praise {
	display: flex;
	flex-basis: 30%;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	margin-bottom: 2em;
	background: var(--color-lightgray);
	padding: 1em;
	box-shadow: 2px 2px 3px var(--color-gray-light);
	box-sizing: border-box;
}
.home-praise #praise .praise .bx-wrapper .bx-viewport {
	border: none;
	box-shadow: none;
	left: 0;
	border-radius: 0;
}
.home-praise #praise .praise .rating_value {
	margin: 10px 0;
}
.home-praise #praise .praise .rating_value img {
	display: inline;
	border: none !important;
	box-shadow: none !important;
}
.home-praise #praise p {
	font-family: 'Montserrat',Helvetica,Arial,sans-serif !important;
	font-size: 14px !important;
}
.home-praise #praise .author a {
	text-transform: uppercase;
	color: var(--color-seafoam-dark);
}
.home-praise #praise .author a:hover {
	color: var(--color-seafoam-dark);
}

/* HOME PAGE POPUP */
#home-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,.7);
	text-align: center;
	z-index: 999;
	display: none;
}
#home-popup .inner {
	max-width: 600px;
	background: #5b6b2c;
	margin: 10% auto 0 auto;
	box-shadow: 2px 2px 5px #333;
	border-radius: 0 0 30px 30px;
	border: 3px solid #fff;
	overflow: hidden;
	position: relative;
}
#home-popup .inner .close {
	display: block;
	position: absolute;
	top: -3px;
	right: -3px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	color: red;
	background: #fff;
	z-index: 999;
	border-radius: 0 0 0 15px;
	cursor: pointer;
}
#home-popup .inner .close:hover {
	background: red;
	color: #fff;
}
#home-popup .inner .title {
	background: #efefef;
	padding: 10px 35px;
	color: #5b6b2c;
	text-shadow: 1px 1px 1px #9bc730;
}
#home-popup .inner .info {
	padding: 10px 35px;
	color: #fff;
	font-size: 16px;
	text-align: left;
}
#home-popup .inner .info input {
	float: left;
	margin: 0px 2% 0 0;
	padding: 1em 1% 1em 3%;
	width: 44%;
	background: #fff;
	box-shadow: inset 2px 2px 3px #bbb;
	border: none;
}
#home-popup .inner input[type="submit"] {
	box-sizing: border-box;
	padding: .9em 1.6em;
	border: 3px solid #fff;
	margin: 0 -3px -3px -3px;
	background: #f9971a;
	color: #fff !important;
	font-size: 25px;
	text-decoration: none;
	font-variant: small-caps;
	border-radius: 30px 30px 0 0;
	display: block;
	width: calc(100% + 6px);
	cursor: pointer;
	transition: .3s all;
}
#home-popup .inner input[type="submit"]:hover {
	background: #de6e00;
}

/* SIDEBAR */
#content #sidebar {
	float: right;
	width: 35%;
}

#content #sidebar #praise {
	background: #EEE;
	padding: 1em;
	margin-bottom: 2em;
	box-shadow: 2px 2px 3px #BBBBBB;
}
#content #sidebar #praise .praise .bx-wrapper {
	margin: 0;
}
#content #sidebar #praise .praise .bx-wrapper .bx-viewport {
	border: none;
	box-shadow: none;
	left: 0;
	border-radius: 0;
}
#content #sidebar #praise .praise .bx-window {
	padding-bottom: 10px;
}
#content #sidebar #praise .title {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	color: #DE6E00;
	margin: 5px 0 15px 0;
}
#content #sidebar #praise .quote {
}
#content #sidebar #praise .author {
	text-align: center;
}
#content #sidebar #praise .author a {
	text-transform: uppercase;
	color: #708437;
}

#content #sidebar .genbook-praise {
	background: #fffaf1;
	border: 1px solid #feae0a;
	padding: 1em;
	margin-bottom: 1em;	
}
#content #sidebar .genbook-praise .bx-wrapper {
	margin: 0;
}
#content #sidebar .genbook-praise .bx-wrapper .bx-viewport {
	border: none;
	box-shadow: none;
	left: 0;
	border-radius: 0;
}
#content #sidebar .genbook-praise .author {
	text-align: center;
}
#content #sidebar .genbook-praise .author a {
	text-transform: uppercase;
	color: #708437;
}

#content #sidebar .praise .rating_value {
	padding: 0 !important;
}
#content #sidebar .praise .rating_value img {
	display: inline;
}

#content #sidebar #login {
	margin-bottom: 2em;
}

#content #sidebar #login p {
	padding: 0 5%;
}

#content #sidebar #login .cursive {
	font-size: 2.5em;
	padding: 0;
	font-weight: bold;
	margin: 0;
}

#content #sidebar #login .login {
	float: left;
	background: #FFF;
	border-radius: 10px;
	box-shadow: 2px 2px 3px #DE6E00;
	width: 47%;
	color: #DE6E00;
	font-size: .9em;
	text-align: center;
}

#content #sidebar #login .login:hover {
	color: #FFF;
	background: #DE6E00;
	box-shadow: 2px 2px 3px #AAA;
}

#content #sidebar #login .join {
	float: right;
	background: #FFF;
	border-radius: 10px;
	box-shadow: 2px 2px 3px #708437;
	width: 47%;
	color: #708437;
	font-size: .9em;
	text-align: center;
}

#content #sidebar #login .join:hover {
	color: #FFF;
	background: #708437;
	box-shadow: 2px 2px 3px #AAA;
}

#content #sidebar #video {
	margin-bottom: 2em;
}

#content #sidebar #video .video-wrapper {
	box-shadow: 2px 2px 3px #BBBBBB;
}

#content #sidebar #golo img {
	margin-bottom: 2em;
	box-shadow: 2px 2px 3px #BBBBBB;
	max-width: 100%;
}

#content #sidebar #sales img {
	margin-bottom: 2em;
	box-shadow: 2px 2px 3px #BBBBBB;
	max-width: 100%;
}

#content #sidebar #workwith {
	display: block;
	width: 100%;
	height: 200px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1em 1em 100px 1em;
	box-shadow: 2px 2px 3px #BBBBBB;
	background: url(images/work-link.png) 0 0 no-repeat #478544;
	border: 2px solid #FFF;
	text-decoration: none;
	margin-bottom: 2em;
	overflow: hidden;
}

#content #sidebar #workwith:hover {
	background-color: #9CC06D;
}

#content #sidebar #workwith p {
	text-align: left;
	color: #3B2C3B;
	text-decoration: none;
	text-indent: -999px;
}

#content #sidebar #widgets .widget {
	margin-bottom: 2em;
	position: relative;
}
#content #sidebar #widgets .widget::after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}

#content #sidebar #widgets h2 {
	font-size: 16px;
	font-weight: normal;
}

#content #sidebar #widgets #searchform #s {
	float: left;
	width: calc(75% - 2px);
	height: 35px;
	border: 1px solid #666;
	line-height: 35px;
	padding: 0 10px;
	box-sizing: border-box;
}
#content #sidebar #widgets #searchform #search_submit {
	float: left;
	width: calc(25% - 2px);
	height: 35px;
	border: 1px solid #666;
	border-left: none;
	cursor: pointer;
	background: #f0f0f0;
	box-sizing: border-box;
	transition: .3s all;
}
#content #sidebar #widgets #searchform #search_submit:hover {
	background: #ddd;
}

#content #sidebar #widgets ul {
	padding-left: 1em;
}
#content #sidebar #widgets ul li {
	padding-bottom: 1em;
}

#content #sidebar #widgets .tptn_posts_widget ul {
	list-style: none;
	padding: 0;
}

#content #sidebar #widgets .tptn_posts_widget ul li {
	padding-bottom: .5em;
	color: #777;
}

#content #sidebar #widgets .tptn_posts_widget ul li img.tptn_thumb, #content #sidebar #widgets .tptn_posts_widget ul li img.tptn_thumb:after {
	border-radius: 0px;
	box-shadow: 1px 1px 2px #c4c4c4;
}

#content #sidebar #widgets .tptn_posts_widget ul li .tptn_title {
	font-weight: normal;
}

#content #sidebar #widgets .tptn_posts_widget ul li a  {
	font-weight: normal;
	color: #708437;
	text-decoration: none;
}

#content #sidebar #widgets .tptn_posts_widget ul li a:hover {
	font-weight: normal;
	color: #DE6E00;
}

/* WORK WITH ME banner shortcode */
#workwithmebanner {
	display: block;
	width: 100%;
	height: 200px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1em 1em 100px 1em;
	box-shadow: 2px 2px 3px #BBBBBB;
	background: url(images/work-link.png) center center no-repeat #478544;
	border: 2px solid #FFF;
	text-decoration: none;
	margin-bottom: 2em;
	overflow: hidden;
}
#workwithmebanner p {
	text-align: left;
	color: #3B2C3B;
	text-decoration: none;
	text-indent: -999px;
}

/* FREEBIES shortcode */
.freebies-grid {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.freebies-grid .freebie {
	box-sizing: border-box;
	flex-basis: 48%;
	margin: 2% 0;
	background: #fff;
	box-shadow: 0 0 5px #ccc;
	padding: 10px;	
	text-align; center;
}
.freebies-grid .freebie h3 {
	text-align: center;
}

.button.freebies-consult {
	width: 200px;
	text-align: center;
	padding: 1em;
	border-radius: 1em;
	border: 2px solid #fff;
	box-shadow: 0 0 5px #222;
	font-size: 20px !important;
	margin: 2em auto;
}

/* FOOTER */
#footer {
	position: relative;
	width: 100%;
	font-size: 13px;
	background: var(--color-lightgray-dark);
}

#footer .inner {
	position: relative;
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 1em;
}

#footer .left {
	float: left; 
	width: 60%;
	text-align: left;
}

#footer .right {
	float: right; 
	width: 38%;
	text-align: right;
}

#footer .social {
	float: right;
	padding: .6em .6em 0 35px;
}
#footer .social a {
	display: block;
	width: 30px;
	height: 30px;
	float: left;
	margin-right: 6px;
	outline: none; 
	text-decoration: none; 
	opacity: 0.5;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
}
#footer .social a:hover {opacity: 1;}
#footer .social a.facebook {background-image: url(images/soc-facebook-color.png);}
#footer .social a.twitter {background-image: url(images/soc-twitter-color.png);}
#footer .social a.pinterest {background-image: url(images/soc-pinterest-color.png);}
#footer .social a.linkedin {background-image: url(images/soc-linkedin-color.png);}
#footer .social a.reviews {background-image: url(images/soc-reviews-color.png); margin: 0;}

#footer p, #footer a {
	color: var(--color-gray);
	text-decoration: none;
}

#footer a:hover {
	color: var(--color-slate);
}

/* POPUP NOTICE */
#notice-wrap {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.7);
	z-index: 1990;
	text-align: center;
}
#notice {
	border: 5px solid #fff; 
	border-radius: 10px; 
	box-shadow: 0px 1px 6px #555; 
	background: #E0E6CA;
	z-index: 1999;
	display: inline-block;
	position: relative;
	margin: 5% auto 0 auto;
	width: 750px;
	max-width: 80%;
	padding: 0% 2% 0% 1%;
}
#notice::after {
	content: '';
	display: block;
	clear: both;
}
#notice-close {
	position: absolute;
	top: 2%;
	right: 2%;
	font-weight: bold;
	color: red;
	font-family: Papyrus, Georgia, san-serif;
	cursor: pointer;
	text-shadow: 1px 1px 1px #666;
}
#notice-close:hover {
	text-shadow: -1px -1px 1px #eee;
}
#notice img {
	float: left;
	margin-right: 2%;
	width: 29%;
}
#notice .info {
	float: left;
	width: 69%;
	margin: 0;
}
#notice h2 {
	font-size: 24px;
	margin: .5em 0 .5em 0;
}
#notice a {
	font-size: 16px;
	background: #708437;
	color: #fff;
	padding: .5em 4em;
	border-radius: 20px;
	border: 2px solid #fff;
	box-shadow: 2px 2px 2px #666;
	text-decoration: none;
	display: inline-block;
	margin: 0 0 .5em 0;
	z-index: 1000;
}
#notice a:hover {
	background: #7a9921;
}
#notice a.schedule {
	background: #DE6E00;
}
#notice a.schedule:hover {
	background: #ed831b;
}
#notice .quote {
	font-size: 15px;
	font-style: italic;
	color: #6c8a18;
}

/* GUTRX BONE BROTHS */
.page-id-9505 .page-title {
	display: none;
}
.gutrxbbbox h2 {
	font-style: italic;
	font-weight: bold;
	text-align: center;
	margin: 1.5em 0 .5em 0;
}
.gutrxbbbox.box1 h2 {
	color: #899c40;
}
.gutrxbbbox.box2 h2 {
	color: #444;
}
.gutrxbbbox.box3 h2 {
	color: #e07a2f;
}
.gutrxbbbox div {
	background: #899c40;
	padding: 2em 2em 1em 2em;
	margin: 0 0 2em 0;
	border-radius: 40px;
	font-size: 16px;
	border: 2px solid #777;
}
.gutrxbbbox div::after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}
.gutrxbbbox.box1 div {
	background: #899c40;
	font-size: 16px;
	border: 2px solid #777;
	color: #fff;
}
.gutrxbbbox.box2 div {
	background: #ddd;
	border: 2px solid #f0bb95;
}
.gutrxbbbox.box3 div {
	background: #f6fce0;
	border: 2px solid #899c40;
}
.gutrxbbbox div li {
	margin-bottom: .5em;
}
.gutrxbbbox div img {
	margin-bottom: 0;
}
.gutrx-broth-feature-logos {
	text-align: center;
	margin: 2em auto 4em auto;
	position: relative;
}
.gutrx-broth-feature-logos img {
	border: none !important;
	box-shadow: none !important;
	width: 12%;
	margin: 0 1%;
	max-width: 110px;
}
.gutrx-broth-button {
	padding: .7em 1.6em;
	border: 3px solid #fff;
	box-shadow: 2px 2px 5px #333;
	background: #DE6E00;
	color: #fff !important;
	font-size: 35px;
	text-decoration: none;
	font-variant: small-caps;
	display: inline-block;
	border-radius: 20px;
	margin: .5em auto;
}
.gutrx-broth-button:hover {
	background: #f89839;
}
.gutrx-broth-praise {
	margin-bottom: 4em;
}
.gutrx-broth-praise h2 {
	font-style: italic;
	font-weight: bold;
	text-align: center;
	margin: 1.5em 0 .5em 0;
	color: #444;
}
.gutrx-broth-praise .bx-wrapper .bx-viewport {
	background: #fff;
	padding: 2em 2em 1em 2em;
	text-align: center;
	color: #444;
	border-radius: 40px;
	box-shadow: none;
	border: 2px solid #999;
}
.gutrx-broth-praise .bx-wrapper .bx-viewport .quote {
}
.gutrx-broth-praise .bx-wrapper .bx-viewport .author {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
	text-transform: uppercase;
	color: #708437;
}

/* SIMPLY SIBO */
.page-id-9507 .page-title {
	display: none;
}
#gutrx-how {
	position: relative;
	padding-bottom: 30px;
}
#gutrx-how::after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}
#gutrx-how .title {
	display: block;
	width: 25%;
	float: left;
	vertical-align: top;
	padding: 0 35px;
	box-sizing: border-box;
	background: none;
}
#gutrx-how .title img {
	margin: 0;
	border: none !important;
	box-shadow: none !important;
	width: 100%;
}
#gutrx-how .info {
	display: block;
	width: 75%;
	float: left;
	background: #ADC743;
	color: #fff;
	padding: 35px;
	vertical-align: top;
	box-sizing: border-box;
}
#gutrx-how .info p:first-child {
	font-size: 20px !important;
	margin: 0 0 1em 0;
}
#gutrx-how .info p {
	font-size: 16px !important;
	line-height: 34px !important;
	color: #fff;
	text-align: left;
	margin: 0;
}

#gutrx-goloinfo {
	padding: 30px 0;
}
#gutrx-goloinfo > table th.title {
	padding: 20px 35px;
	background: #aca298;
	vertical-align: middle;
	color: #fff;
	font-family: "Droid Serif",serif;
	font-size: 22px;
	font-weight: normal;
	width: 32%;
}
#gutrx-goloinfo > table th.spacer, #gutrx-goloinfo > table td.spacer {
	width: 2%;
	padding: 0;
}
#gutrx-goloinfo > table td.info {
	padding: 36px 1em 1em 1em;
	vertical-align: top;
	background: #F0F0F0;
	width: 32%;
	color: #555;
}
#gutrx-goloinfo > table td.info > ul, #gutrx-goloinfo > table td.info > ol {
	padding-left: 1em;
	margin: 0;
}
#gutrx-goloinfo > table td.info p, #gutrx-goloinfo > table td.info li {
	line-height: 1.6em;
	margin-bottom: 1em;
}
#gutrx-goloinfo i.icon {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin: .5em 1em;
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	background-size: 100%;
	background-image: url(//simplysibodiet.com/wp-content/themes/golo/img/icon-sprite.png);
}
#gutrx-goloinfo .icon.golo {
	background-position: 0 29.121726%;
	background-size: 178.75%;
}
#gutrx-goloinfo .icon.search {
	background-position: 0 66.101695%;
	background-size: 178.75%;
}
#gutrx-goloinfo .icon.adjust {
	background-position: 0 4.468413%;
	background-size: 178.75%;
}
#gutrx-goloinfo .icon.plan {
	background-position: 0 53.775039%;
	background-size: 178.75%;
}
#gutrx-goloinfo .icon.list {
	background-position: 0 41.448382%;
	background-size: 178.75%;
}
#gutrx-goloinfo .icon.community {
	background-position: 0 16.795069%;
	background-size: 178.75%;
}
#gutrx-goloinfo > table td.manager {
	padding-top: 30px;
}
#gutrx-goloinfo > table td.slider {
	text-align: center;
	vertical-align: bottom;
	padding-top: 0;
}
#gutrx-goloinfo > table td .metaslider {
	margin: 0 auto;
}
#gutrx-goloinfo > table td .metaslider .slides img {
	border: 3px solid #ACA298 !important;
	box-shadow: none !important;
}

#gutrx-bonus {
	position: relative;
	padding: 30px 0;
}
#gutrx-bonus .title {
	display: table-cell;
	vertical-align: middle;
	width: 20%;
	padding: 35px;
	box-sizing: border-box;
	background: #aca298;
}
#gutrx-bonus .title h2 {
	margin: 0;
	color: #fff;
	text-align:	center;
	font-weight: normal;
}
#gutrx-bonus .info {
	display: table-cell;
	vertical-align: middle;
	width: 80%;
	background: #ADC743;
	color: #fff;
	padding: 10px 35px;
	box-sizing: border-box;
}
#gutrx-bonus .info p {
	font-size: 16px !important;
	line-height: 1.6em !important;
	color: #fff;
	text-align: left;
	margin: 0 0 1em 0;
}
#gutrx-bonus .info ul li {
	margin-bottom: .5em;
}

.gutrx-guru-button-wrap {
	width: 100%;
	text-align: center;
	position: relative;
	height: 200px;
	background: none;
}
.gutrx-guru-button-wrap .metaslider {
	opacity: .8;
}
.gutrx-guru-button-wrap img {
	box-shadow: none !important;
	border: none !important;
}
.gutrx-guru-button {
	position: absolute;
	top: 60px;
	width: 470px;
	box-sizing: border-box;
	left: 50%;
	margin-left: -235px;
	padding: .9em 1.6em;
	border: 3px solid #fff;
	box-shadow: 2px 2px 5px #333;
	background: #DE6E00;
	color: #fff !important;
	font-size: 25px;
	text-decoration: none;
	font-variant: small-caps;
	display: inline-block;
	border-radius: 20px;
}
.gutrx-guru-button:hover {
	background: #f89839;
}

/* SIMPLY SIBO POPUP */
#gutrx-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,.7);
	text-align: center;
	z-index: 999;
	display: none;
}
#gutrx-popup .inner {
	max-width: 600px;
	background: #ADC743;
	margin: 10% auto 0 auto;
	box-shadow: 2px 2px 5px #333;
	border-radius: 0 0 30px 30px;
	border: 3px solid #fff;
	overflow: hidden;
	position: relative;
}
#gutrx-popup .inner .close {
	display: block;
	position: absolute;
	top: -3px;
	right: -3px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	color: red;
	background: #fff;
	z-index: 999;
	border-radius: 0 0 0 15px;
	cursor: pointer;
}
#gutrx-popup .inner .close:hover {
	background: red;
	color: #fff;
}
#gutrx-popup .inner .title {
	background: #aca298;
	padding: 10px 35px;
	color: #fff;
}
#gutrx-popup .inner .info {
	padding: 10px 35px;
	color: #fff;
	font-size: 16px;
	text-align: left;
}
#gutrx-popup .inner .popup-guru-button {
	box-sizing: border-box;
	padding: .9em 1.6em;
	border: 3px solid #fff;
	margin: 0 -3px -3px -3px;
	background: #DE6E00;
	color: #fff !important;
	font-size: 25px;
	text-decoration: none;
	font-variant: small-caps;
	border-radius: 30px 30px 0 0;
	display: block;
}
#gutrx-popup .inner .popup-guru-button:hover {
	background: #f89839;
}

/* GenBook Calendar iframe */
body.page-id-10382 .page-title {
	display: none;
}
#genbook-columns {
	display: block;
	position: relative;
}
#genbook-columns::after {
	content: '';
	display: block;
	clear: both;
}
.genbook-frame-wrap {
	position: relative;
	float: left;
	overflow: hidden;
	width: 650px
}
.genbook-frame {
	border: none;
	width: 100%;
	margin-top: -230px;
	height: 1300px;
}
.genbook-reviews-wrap {
	float: right;
	position: relative;
	width: 325px;
}
.genbook-reviews-wrap .review {
	background: #fffaf1;
	border: 1px solid #feae0a;
	padding: 1em;
	margin-bottom: 2em;	
}
.genbook-reviews-wrap .review img {
	border: none !important;
	box-shadow: none !important;
}
.genbook-reviews-wrap .review p {
	font-family: 'Montserrat',Helvetica,Arial,sans-serif !important;
	margin: 1em 0 !important;
	font-size: 14px !important;
}
.genbook-reviews-wrap .review .author {
	text-align: center;
}
.genbook-reviews-wrap .review .author a {
	text-transform: uppercase;
	color: #708437;
}

/* CORONAVIRUS OPTIN */
#coronavirus-optin {
	width: 650px;
	margin: 0 auto 4em auto;
	max-width: 100%;
	position: relative;
	border: 2px solid #fff;
	box-shadow: 2px 2px 3px #bbb;
}
#coronavirus-optin form {
	margin: 0 !important;
	width: 100% !important;
	text-align: center;
}
#coronavirus-optin form ._form-title {
	font-family: "Great Vibes", cursive;
	font-size: 36px;
	line-height: 1.2em;
	margin-bottom: 15px !important;
}
#coronavirus-optin form label {
	display: none !important;
}
#coronavirus-optin form ._x17042938 {
	width: 50% !important;
	float: left;
}
#coronavirus-optin form ._x29834285 {
	width: 49% !important;
	float: right;
	margin: 0% !important;
}
#coronavirus-optin form ._x86325949, #coronavirus-optin form ._x41869427 {
	clear: both;
	width: auto;
	display: inline-block;
	margin: 0 auto;
}
#coronavirus-optin form input {
	width: 100% !important;
}
#coronavirus-optin form ._button-wrapper {
}
#coronavirus-optin form ._button-wrapper ._submit:hover {
	background-color: #de6e00 !important;
}

/* MISCELLANEOUS */
a.button {	
	display: block;
	margin: 0 auto;
	background: #DD6D00;
	font-size: 16px !important;
	line-height: 1em;
	color: white;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: 0;
	padding: 7px;
}
a.button:hover {	
	background: #FF8400;
}

.page-title {
	color: #DE6E00;
	font-size: 2em;
	line-height: 1em;
	margin-top: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif !important;
}
.woocommerce .page-title {
	line-height: 1em;
	padding-right: 300px;
	font-size: 32px;
	font-weight: normal;
}

.faq-top {
	float: right;
	font-size: 10px;
}

.app-only {
	display: none !important;
}

.alignleft {
	float: left !important;
	margin: 0 1em 1em 0 !important;
}

.alignright {
	float: right !important;
	margin: 0 0 1em 1em !important;
}

.aligncenter {
	float: none !important;
	margin: 1em auto !important;
}

.clear {
	clear: both;
	width: 100%;
}

blockquote {
	background: #F9F5C0;
	border: 1px solid #FAAF4F;
	padding: 2em 2em 1em 2em;
	margin: 2em auto;
}
blockquote p {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
	font-style: italic;
	margin-bottom: 1em;
}
blockquote p span {
	display: block;
	font-style: normal;
}

#about-list {
	width: 100%;
	margin: 2em 0;
	vertical-align: top;
	padding-top: 1em;
}
#about-list td {
	width: 50%;
	vertical-align: top;
	font-size: 12px;
	padding: 5px;
}

a.genbook-consult {
	text-align: center;
	padding: 1em;
	font-size: 18px !important;
	border-radius: 20px;
	border: 4px double #fff;
}

.booksy-widget-container-default {
	width: 100% !important;
}
.booksy-widget-container-default .booksy-widget-button {
	display: block !important;
	margin: 0 auto !important;
	background: #DD6D00 !important;
	line-height: 1em;
	color: white;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: 0;
	text-align: center;
	font-size: 18px !important;
	border-radius: 20px !important;
	border: 4px double #fff;
	width: 100% !important;
	box-sizing: border-box;
}
.booksy-widget-container-default .booksy-widget-button::before {
	content: 'Schedule Your Introductory Consult Now';
	display: block;
	position: relative;
	width: 100%;
	text-align: center;
	padding: .75em 0;
}
.booksy-widget-overlay {
	z-index: 1000 !important;
}
.booksy-business-link {
	display: none !important;
	opacity: 0 !important;
}

.program {
	margin: 2em 0;
	border: 1px solid #5E9E43;
	background: #eee;
}
.program .program-title {
	background: #5B6B2C;
	color: white;
	font-variant: small-caps;
	letter-spacing: 1px;
	padding: 0;
	line-height: 1.2em;
	padding: .5em;
	margin: 0;
	text-align: center;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
}
.program .program-title a {
	display: block;
	float: right;
	margin: 0 0 0 1em;
	background: #DD6D00;
	font-size: 12px !important;
	line-height: 1em;
	color: white;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: 0;
	padding: 7px;
}
.program .program-title a:hover {
	background: #FF8400;
}
.program .inner {
	padding: 1em !important;
	width: auto !important; 
}
.program .inner p, .program .inner li {
	font-size: 16px !important;
}
.program .inner ul {
	padding-left: 1em;
}

.font-correct {
	font-family: 'Calligraffitti', cursive;
}

/* CONTACT FORM */
.wpcf7-form {
	clear: both;
	border: 1px solid #739340;
	background: #5B6B2C;
	padding: 1em 1em 0 1em;
	margin: 2em 0em 1em 0;
	position: relative;
}

.wpcf7-form h2 {
	margin-top: 0;
	font-weight: normal;
	color: white;
}
.wpcf7-form .note {
	font-style: italic;
	color: #fff;
}
.wpcf7-form .note a {
	color: #b8e035;
}
.wpcf7-form input {
	width: 100%;
	box-sizing: border-box;	
}
.wpcf7-form input[type="submit"] {
	cursor: pointer;
	border-radius: 10px;
	padding: .5em;
	background: #ddd;
	transition: .3s all;
}
.wpcf7-form input[type="submit"]:hover {
	background: #eee;
}
.wpcf7-form textarea {
	box-sizing: border-box;	
}

.wpcf7-form .half {
	display: inline-block;
	width: 48%;
	margin: 0 0 1em 0;
	position: relative;
}
.wpcf7-form .half.first {
	margin-right: 4%;
}

.wpcf7-form input, .wpcf7-form textarea {
	padding: 3px 5px;
	width: 100%;
	font-family: Calibri, Arial, Helvetica, sans-serif;
	font-size: 18px;
}
.full-notice {
	border-radius: 3px;
	border: 1px solid orange;
	padding: 1em;
	margin-right: 1em;
	background: #FFE;
}
.full-notice p:last-child {
	margin-bottom: 0;
}
div.wpcf7-response-output {
	background: #fff;
	padding: 1em;
}
span.wpcf7-not-valid-tip {
	color: orange;
}
div.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
}
div.wpcf7-response-output.wpcf7-mail-sent-ng {
	color: orange;
}
div.wpcf7-response-output.wpcf7-mail-sent-ok {
	color: green;
}

/* RESPONSIVE */
@media screen and (max-width: 1200px) {
	#header #menubar #menu {
		padding-right: 20px;
	}
}

@media screen and (max-width: 1070px) {
	#optin {
		height: auto;
	}
	#optin .optin-inner {
		display: flex;
		padding: 0 !important;
		max-width: 100%;
		justify-content: space-between;
		align-items: center;
	}
	#optin #opt-in-text {
		float: none;
		display: flex;
		align-items: center;
		box-sizing: border-box;
	}
	#optin #opt-in-text br {
		display: none;
	}
	#optin #opt-in-text img {
		top: 0;
		left: 0;
		position: relative;
		width: 120px;
	}
	#optin #opt-in-text p {
		padding: 0 0 0 10px;
	}
	#optin #opt-in-biocanic {
		right: 5px;
		top: 13px;
	}
}

@media screen and (max-width: 768px) {
	#header #menubar #menu li {
		margin-left: 20px;
	}
	#optin {
		padding: 10px 0;
	}
	#optin #opt-in-text {
		width: calc(100% - 360px);
	}
	#optin #opt-in-text img {
		width: 80px;
	}
	#optin #opt-in-text p {
		font-size: 12px !important
	}
	#optin #opt-in-biocanic {
		top: -12px;
		right: -40px;
		transform: scale(.8);
	}

}

@media screen and (max-width: 640px) {
	#header #menubar {
		height: auto;
		text-align: center;
	}	
	#header #menubar #logo {
		float: none;
		margin: 0 auto;
		padding: 3px;
	}
	#header #menubar #menu {
		float: none;
		padding: 0 0 5px 0;
		height: auto;
	}
	#header #menubar #menu li {
		float: none;
		margin: 0 4px;
		height: auto;
		line-height: 1.5em;
	}
	
	#optin {
		padding: 0;
	}
	#optin .optin-inner {
		flex-wrap: wrap;
		justify-content: center;
	}
	#optin #opt-in-text {
		width: 95%;
		margin: 10px 0 0 0 !important;
	}
	#optin #opt-in-text img {
		display: none;
	}
	#optin #opt-in-text p {
		font-size: 14px !important;
		text-align: center;
		padding: 0;
	}
	#optin #opt-in-biocanic {
		top: 0;
		right: 0;
		transform: scale(1);
		position: relative;
		margin: 10px 0;
	}
}

@media screen and (max-width: 450px) {
	#optin #opt-in-text {
		margin: 10px 0 120px 0 !important;
	}
	#optin #opt-in-biocanic {
		transform: scale(.8);
		margin: 0 0 0 -220px;
		left: 50%;
		top: 60px;
		position: absolute;
	}
}