/*
	Theme Name: Hi-Chew
	Description: Custom Genesis child theme created for Hi-Chew.
	Author: IdeaBox Creations
	Author URI: http://www.ideaboxcreations.com/
	Version: 1.0.1

	Tags: one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready

	Template: genesis
	Template Version: 2.0.1

	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
*/


/* Table of Contents

	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Featured Content
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Footer Widgets
	- Site Footer
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 767px

*/


/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing
--------------------------------------------- */

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}


/*
Defaults
---------------------------------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	font-size: 62.5%; /* 10px browser default */
}

body {
	background-color: #f5f5f5;
	color: #666;
	font-family: 'Muli', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.625;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #666;
	text-decoration: none;
	outline: 0 !important;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.4rem;
}

a:hover {
	color: #333;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote,
blockquote::before {
	color: #999;
}

blockquote {
	margin: 40px 40px 24px;
	margin: 4rem 4rem 2.4rem;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 3rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
	margin: 0 0 16px;
	margin: 0 0 1.6rem;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 30px;
	font-size: 3rem;
}

h3 {
	font-size: 24px;
	font-size: 2.4rem;
}

h4 {
	font-size: 20px;
	font-size: 2rem;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

h6 {
	font-size: 16px;
	font-size: 1.6rem;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	width: auto; /* IE8 */
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	box-shadow: none;
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px;
	padding: 1.6rem;
	width: 100%;
	-webkit-box-shadow: none;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	background-color: #d2008a;
	border: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	padding: 16px 24px;
	padding: 1.6rem 2.4rem;
	text-transform: uppercase;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover,
button:active,
input:active[type="button"],
input:active[type="reset"],
input:active[type="submit"],
.button:active,
.entry-content .button:active {
	background-color: #6433aa;
}

.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

input[type=checkbox],
input[type=radio] {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
	padding: 0.6rem 0;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1170px;
}

.site-inner {
	clear: both;
	margin-top: 90px;
	padding-top: 40px;
	padding-top: 4rem;
}

.featured-page .site-inner {
	max-width: 100%;
	margin-top: 0;
	padding-top: 0;
}
.featured-page .wrap {
	max-width: 1370px;
}

/* Column Widths and Positions
--------------------------------------------- */

/* Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 920px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* Content */

.content {
	float: right;
	width: 740px;
}

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 520px;
}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 360px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 2.4rem;
}

.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sticky {
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 2.4rem;
}

img.alignnone {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
	margin: 0 2.4rem 2.4rem 0;
}

img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
	margin: 0 0 2.4rem 2.4rem;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}

.gallery-caption {
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.archive-description,
.author-box {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.archive-description {
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.author-box {
	padding: 40px;
	padding: 4rem;
}

.author-box-title {
	color: #333;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.author-box a {
	border-bottom: 1px solid #ddd;
}

.author-box p {
	margin-bottom: 0;
}

.author-box .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

/* Titles
--------------------------------------------- */

.entry-title {
	font-size: 36px;
	font-size: 3.6rem;
	line-height: 1;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover {
	color: #666;
}

.widget-title {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
	text-transform: uppercase;
}

.sidebar .widget-title a {
	border: none;
}

.archive-title {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding: 0 0 24px;
	padding: 0 0 2.4rem;
}

.featured-content .entry-title {
	border: none;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.2;
}

.featured-content .entry-title a {
	border: none;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget {
	color: #999;
}

.enews-widget .widget-title {
	color: #fff;
}

.enews-widget input {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

.enews-widget input[type="submit"] {
	background-color: #f15123;
	color: #fff;
	margin: 0;
	width: 100%;
}

.enews-widget input:hover[type="submit"] {
	background-color: #fff;
	color: #333;
}

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1.6rem;
	padding: 16px;
	padding: 1.6rem;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1.6rem 0 0;
}

div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 14px;
	font-size: 1.4rem;
}

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	width: 100%;
	position: fixed;
	z-index: 9999;
}

.featured-page .site-header {
	background-color: transparent;
	-webkit-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
}

.site-header.fixed-header {
	background-color: #fff;
	height: 85px;
	-wekbit-box-shadow: 0 1px 8px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 8px rgba(0,0,0,0.1);
	box-shadow: 0 1px 8px rgba(0,0,0,0.1);
	-webkit-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
}

.site-header .wrap {
	padding: 10px 40px;
	padding: 1rem 4rem;
	max-width: 100%;
}

/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	font-weight: 700;
	width: 250px;
	position: absolute;
	-webkit-transition: 0.2s all linear;
	-moz-transition: 0.2s all linear;
	-o-transition: 0.2s all linear;
	transition: 0.2s all linear;
}

.site-header.fixed-header .title-area {
	width: 160px;
	-webkit-transition: 0.2s all linear;
	-moz-transition: 0.2s all linear;
	-o-transition: 0.2s all linear;
	transition: 0.2s all linear;
}

.site-header.fixed-header .title-area img {
	max-width: 160px;
	-webkit-transition: 0.2s all linear;
	-moz-transition: 0.2s all linear;
	-o-transition: 0.2s all linear;
	transition: 0.2s all linear;
}

.header-image .title-area {
	padding: 0;
}

.site-title {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1;
	margin: 0 0 8px;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

.site-title a {
	display: inline-block;
}

.site-title a,
.site-title a:hover {
	color: #333;
}

.site-description {
	color: #999;
	display: none;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0;
}

/* Full width header, no widgets */

.header-full-width .title-area,
.header-full-width .site-title {

}

.header-image .site-description,
.header-image .site-title a {
	display: inline-block;
	text-indent: -9999px;
}

/* Logo, hide text */

.header-image .site-header .wrap {
	background: url(images/logo.png) no-repeat left;
	padding: 0;
}

.header-image .site-title a {
	float: left;
	min-height: 164px;
	width: 100%;
}

/* Widget Area
--------------------------------------------- */

.widget-area {
	word-wrap: break-word;
}

.site-header .widget-area {
	text-align: center;
	width: 100%;
}

.header-image .site-header .widget-area {
	padding: 40px 0;
	padding: 4rem 0;
}

.site-header .search-form {
	float: right;
	margin-top: 24px;
	margin-top: 2.4rem;
}

.site-header .widget_nav_menu {
	float: none;
}

.site-header .simple-social-icons {
	float: right;
	padding: 35px 0;
	position: absolute;
	right: 30px;
	top: 10px;
}

.site-header.fixed-header .simple-social-icons {
	padding: 15px 0;
}

.site-header .simple-social-icons ul li {
	margin-bottom: 0 !important;
}

.site-header .simple-social-icons ul li a {
	border-radius: 100% !important;
}

.site-header .simple-social-icons ul li.social-facebook a {
	background-color: #365899 !important;
}

.site-header .simple-social-icons ul li.social-twitter a {
	background-color: #55ACEE !important;
}

.site-header .simple-social-icons ul li.social-instagram a {
	background-color: #8049b8 !important;
}

.site-header .simple-social-icons ul li.social-pinterest a {
	background-color: #c30000 !important;
}

.site-header .simple-social-icons ul li.social-youtube a {
	background-color: #CC181E !important;
}

/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	color: #999;
	font-family: Lato, sans-serif;
	line-height: 1.5;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu a {
	border: none;
	color: #999;
	border-bottom: 2px solid transparent;
	display: block;
	font-family: Montserrat, sans-serif;
	letter-spacing: 1px;
	padding: 38px 24px;
	padding: 3.8rem 2.4rem;
	position: relative;
}

.featured-page .genesis-nav-menu a {
	color: #fff;
}

.site-header.fixed-header .genesis-nav-menu a {
	color: #6433aa;
	padding: 18px 24px;
	padding: 1.8rem 2.4rem;
}

.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #333;
}

.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #999;
}

.genesis-nav-menu > .menu-item > a {
	text-transform: uppercase;
}

.genesis-nav-menu > .menu-item > a span {
	display: inline-block;
}

.genesis-nav-menu > .menu-item > a span:after {
	content: "";
	display: block;
	margin: auto;
	margin-top: 4px;
	height: 3px;
	width: 0px;
	background: transparent;
	-webkit-transition: width .3s ease, background-color .3s ease;
	-moz-transition: width .3s ease, background-color .3s ease;
	-o-transition: width .3s ease, background-color .3s ease;
	transition: width .3s ease, background-color .3s ease;
}

.genesis-nav-menu > .menu-item > a:hover span:after,
.genesis-nav-menu > .current-menu-item > a span:after {
	width: 100%;
	background: #fff;
}

.site-header.fixed-header .genesis-nav-menu > .menu-item > a:hover span:after,
.site-header.fixed-header .genesis-nav-menu > .current-menu-item > a span:after {
	background: #eb0094;
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: none;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px 20px;
	padding: 1.6rem 2rem;
	position: relative;
	width: 200px;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -54px 0 0 199px;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	list-style-type: none;
	padding: 28px 0;
	padding: 2.8rem 0;
	text-transform: uppercase;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
	margin-left: 4.8rem;
}

.genesis-nav-menu > .search {
	padding: 14px 0 0;
	padding: 1.4rem 0 0;
}

/* Site Header Navigation
--------------------------------------------- */

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -55px;
}

/* Primary Navigation
--------------------------------------------- */

.nav-primary {
	background-color: #333;
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
	color: #fff;
}

.nav-primary .sub-menu a:hover {
	color: #333;
}

/* Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background-color: #fff;
}


/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry {
	background-color: #fff;
	border-radius: 3px;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.featured-page .entry {
	background-color: transparent;
	padding: 0;
	margin-bottom: 0;
}

.entry-content a {
	color: #eb0094;
}

.entry-content a:hover {
	color: #333;
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.entry-content ol,
.entry-content ul {
	margin-left: 40px;
	margin-left: 4rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content .search-form {
	width: 50%;
}

.entry-meta {
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
}

.entry-meta a {
	border-bottom: 1px solid #ddd;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	margin: 0 -40px;
	margin: 0 -4rem;
	padding: 32px 40px 8px;
	padding: 3.2rem 4rem 0.8rem;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.6rem 0 0.2rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 40px 0;
	margin: 4rem 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #f15123;
}

.entry-pagination a {
	border-bottom: 1px solid #ddd;
}

/* Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.entry-comments {
	padding: 40px;
	padding: 4rem;
}

.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
	padding: 4rem 4rem 1.6rem;
}

.comment-respond a,
.entry-comments a {
	border-bottom: 1px solid #ddd;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

.comment-respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
}

.comment-list li {
	margin-top: 24px;
	margin-top: 2.4rem;
	padding: 32px;
	padding: 3.2rem;
}

.comment-list li li {
	margin-right: -32px;
	margin-right: -3.2rem;
}

li.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

.entry-pings .reply {
	display: none;
}

.bypostauthor {
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}

/*
Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	color: #999;
}

.sidebar a {
	border-bottom: 1px solid #ddd;
}

.sidebar p:last-child {
	margin-bottom: 0;
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	background-color: #fff;
	border-radius: 3px;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding: 40px;
	padding: 4rem;
}

.sidebar .enews-widget {
	background-color: #333;
}


/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	background-color: #00bef5;
	color: #999;
	clear: both;
	padding: 40px 0 16px;
	padding: 4rem 0 1.6rem;
}

.home .footer-widgets {
	position: relative;
}

.footer-widgets .wrap {
    max-width: 100%;
}

.footer-widgets-1 {
	width: 100%;
	text-align: center;
}

.footer-widgets-3 {
	width: 350px;
}

.footer-widgets-1 {
	margin-right: 40px;
	margin-right: 4rem;
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
}

.footer-widgets-3 {
	float: right;
}

.footer-widgets a {
	border-bottom: 1px solid #666;
	color: #999;
}

.footer-widgets a:hover {
	color: #ddd;
}

.footer-widgets .widget {
	margin-bottom: 10px;
	margin-bottom: 1rem;
}

.footer-widgets .widget-title {
	color: #fff;
}

.footer-widgets li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.footer-widgets .search-form input:focus {
	border: 1px solid #ddd;
}

.footer-widgets .simple-social-icons ul li a {
	background-color: #3394c8 !important;
}

.footer-widgets .simple-social-icons ul li a:hover {
	background-color: #297DAB !important;
}

.footer-widgets .widget_nav_menu ul > li {
	display: inline-block;
	margin-right: 20px;
}

.footer-widgets .widget_nav_menu ul > li:last-child {
	margin-right: 0;
}

.footer-widgets .widget_nav_menu a {
	border: 0;
	color: #fff;
}

.footer-widgets .widget_nav_menu a:hover {
	color: #297DAB;
}

.footer-widgets .widget_nav_menu .footer-nav-mini {
	margin-right: 32px;
}

.footer-widgets .widget_nav_menu .footer-nav-mini a {
	color: #297DAB;
}

.footer-widgets .widget_nav_menu .footer-nav-mini a:hover {
	color: #fff;
}

.footer-widgets .copyright {
	color: #506996;
	font-size: 12px;
}

.footer-widgets .copyright a {
	color: #506996;
	border: 0;
}

.footer-widgets .copyright a:hover {
	text-decoration: underline;
}

/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #fff;
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 40px 0;
	padding: 4rem 0;
	text-align: center;
}

.site-footer a {
	border-bottom: 1px solid #ddd;
}

.site-footer p {
	margin-bottom: 0;
}

/*
Featured
---------------------------------------------------------------------------------------------------- */

.fl-rich-text {
    letter-spacing: 0.5px;
}

.featured-button a {
	background: none !important;
	border: 0 !important;
	color: #fff !important;
	font-family: Montserrat, Muli, sans-serif;
	letter-spacing: 1px;
	padding: 10px 0 !important;
}

.fl-builder-content div.featured-button a.fl-button:visited * {
	color: #fff;
}

.featured-button a .fa-arrow-circle-right {
	-webkit-transition: 0.3s transform linear;
	-moz-transition: 0.3s transform linear;
	transition: 0.3s transform linear;
}

.featured-button a:hover .fa-arrow-circle-right {
	transform: rotate(360deg);
	-webkit-transition: 0.3s transform linear;
	-moz-transition: 0.3s transform linear;
}

/* Home page */

.home .entry-content > .fl-builder-content {
	margin-bottom: -210px;
	overflow: hidden;
}

.home-featured-1,
.home-featured-2,
.home-featured-3,
.home-featured-4,
.home-featured-5 {
	position: relative;
}

.home-featured-1 {
	z-index: 5;
}

.home-featured-2 {
	top: -140px;
	z-index: 4;
}

.home-featured-3 {
	top: -140px;
	z-index: 3;
}

.home-featured-4 {
	top: -210px;
	z-index: 2;
}

.home-featured-5 {
	top: -210px;
	z-index: 5;
}

.home-featured-1 .featured-bg-cover,
.home-featured-2 .featured-bg-cover,
.home-featured-3 .featured-bg-cover,
.home-featured-4 .featured-bg-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.home-featured-2 .featured-bg-cover {
	z-index: -2;
}

.home-featured-3 .featured-bg-cover {
	z-index: -3;
}

.home-featured-4 .featured-bg-cover {
	z-index: -4;
}

.home-featured-1 .featured-bg-cover .fl-col-content,
.home-featured-2 .featured-bg-cover .fl-col-content,
.home-featured-3 .featured-bg-cover .fl-col-content,
.home-featured-4 .featured-bg-cover .fl-col-content {
	width: 100%;
	height: 100%;
}

.home-featured-1 .featured-bg-cover .fl-col-content,
.home-featured-3 .featured-bg-cover .fl-col-content {
	transform-origin: 100%;
	transform: skewY(2deg);
}

.home-featured-2 .featured-bg-cover .fl-col-content {
	transform-origin: 100%;
	transform: skewY(-2deg);
}

.home-featured-4 .featured-bg-cover .fl-col-content {
	background-position: center 35%;
}

.home-featured-1 .home-featured-1-col-1 .fl-col-content {
	margin-left: 80px;
    margin-right: -70px;
}

.home-featured-1 .home-featured-1-col-2 .fl-col-content {
	margin-left: -70px;
}

.home-featured-2 .column-header .fl-heading-text {
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
	letter-spacing: 1px;
	padding: 8px 0;
}

.home-featured-3 .ff-stream-wrapper {
	margin-top: 70px;
}

/* Fan Club page */

.fan-club-1 {
	position: relative;
}
.fan-club-3,
.fan-club-6 {
	display: none;
}

.fan-club-1 .fan-club-1-col-1 {
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	text-align: center;
	top: 10%;
}

.fan-club-3 .column-header .fl-heading-text {
	border-top: 3px solid #eb0094;
	border-bottom: 3px solid #eb0094;
	letter-spacing: 1px;
	padding: 8px 0;
}

.fan-club-4 .column-header-large .fl-heading,
.fan-club-6 .column-header-large .fl-heading,
.fan-club-9 .column-header-main .fl-heading,
.fan-club-10 .column-header-large .fl-heading {
	line-height: 0.95;
}

div.fan-club-5 .featured-button a {
	font-family: inherit;
	font-weight: 300 !important;
	font-size: 25px;
}

div.fan-club-5 .featured-button a .fl-button-text {
	border: 5px solid #ce288b !important;
	color: #9f9f9f !important;
	padding: 15px 70px !important;
}

div.fan-club-5 .featured-button a .fa {
	color: #ce288b !important;
    font-size: 65px;
    margin-left: 30px;
}

div.fan-club-5 .mc4wp-fields-wrap {
	width: 60%;
    margin: 0 auto;
}
div.fan-club-5 input[type="email"] {
	border: 5px solid #d2008a;
	font-size: 20px;
    text-align: center;
	width: 80%;
	border-bottom: 4px solid #d2008a;
}
div.fan-club-5 input[type="submit"] {
  	float: right;
    font-size: 20px;
  	padding: 0;
  	text-align: center;
  	height: 66px;
  	width: 20%;
}
div.fan-club-5 input[type="submit"]:hover {
	border-color: #6433aa;
}
div.fan-club-5 input[type="email"]::-webkit-input-placeholder {
  	text-transform: uppercase;
	font-size: 20px;
}
div.fan-club-5 input[type="email"]:-moz-placeholder {
	text-transform: uppercase;
	font-size: 20px;
}
div.fan-club-5 input[type="email"]::-moz-placeholder {
	text-transform: uppercase;
	font-size: 20px;
}
div.fan-club-5 input[type="email"]:-ms-input-placeholder {
	text-transform: uppercase;
	font-size: 20px;
}
div.fan-club-5 .mc4wp-response p {
    font-size: 20px;
    border: 5px solid #6433aa;
    padding: 10px;
	text-align: center;
}
div.fan-club-5 .mc4wp-response .mc4wp-failed p {
	border-color: #CC181E;
}

div.fan-club-6 .featured-button a .fl-button-text,
div.fan-club-6 .featured-button a .fa {
	color: #ce288b !important;
}

div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
	min-height: 72vh;
}

div.fan-club-9 .column-header {
	position: relative;
}

div.fan-club-9 div.column-header .fl-heading {
	position: relative;
}

div.fan-club-9 div.column-header .fl-heading:after {
	background: #CE288B;
	content: '';
	display: block;
	margin-top: 25px;
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
}

.fan-club-9 .column-header .fl-heading .fl-heading-text {
	background: #fff;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.fan-club-10 .featured-button * {
	color: #6433aa !important;
}

/* Products page */

.product-featured-1 .fl-module-content-slider .bx-wrapper {
	margin-bottom: 50px;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a {
	width: 75px !important;
	height: 80px !important;
	margin: 0 20px;
	position: relative;
	z-index: 100;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a.active:after {
	content: "";
	display: block;
	width: 8px;
	height: 2px;
	background: #EB0094;
	position: absolute;
	bottom: -10px;
	text-align: center;
	margin: 0 auto;
	left: 35%;
	transform: translateX(100%);
}

.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="0"] {
	background: url(/wp-content/uploads/2017/02/icon-kiwi.png) no-repeat !important;
	width: 75px !important;
	margin-right: 0px;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="1"] {
	background: url(images/icon-strawberry.png) no-repeat !important;
	width: 106px !important;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="2"] {
	background: url(images/icon-mango.png) no-repeat !important;
	width: 72px !important;
	margin: auto 10px;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="3"] {
	background: url(images/icon-apple.png) no-repeat !important;
	width: 110px !important;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="4"] {
	background: url(images/icon-grape.png) no-repeat !important;
	width: 66px !important;
	margin: 0;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="5"] {
	background: url(images/icon-cherry.png) no-repeat !important;
	width:82px !important;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="6"] {
	background: url(images/icon-banana.png) no-repeat !important;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="7"] {
	background: url(images/icon-cherry.png) no-repeat !important;
	width:82px !important;
}
.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a[data-slide-index="8"] {
	background: url(images/icon-cherry.png) no-repeat !important;
	width:82px !important;
}

div.product-featured-2 div.featured-button a span,
div.product-featured-3 div.featured-button a span,
div.product-featured-4 div.featured-button a span,
div.product-featured-2 div.featured-button a .fa,
div.product-featured-3 div.featured-button a .fa,
div.product-featured-4 div.featured-button a .fa {
	color: #000 !important;
}

div.product-featured-2,
div.product-featured-4 {
	position: relative;
	overflow: hidden;
	z-index: 2;
}

div.product-featured-2 .product-featured-2-col-1,
div.product-featured-4 .product-featured-4-col-1 {
	position: relative;
	z-index: 3;
}

div.product-featured-2 .parallax-back-layer,
div.product-featured-2 .parallax-front-layer,
div.product-featured-4 .parallax-back-layer,
div.product-featured-4 .parallax-front-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	transform-style: preserve-3d;
}

div.product-featured-2 .parallax-back-layer,
div.product-featured-2 .parallax-front-layer {
	height: 1125px;
}

div.product-featured-4 .parallax-back-layer {
	height: 930px;
}

div.product-featured-4 .parallax-front-layer {
	height: 1192px;
	margin-top: 250px;
}

div.product-featured-2 .parallax-back-layer .fl-col-content,
div.product-featured-2 .parallax-front-layer .fl-col-content,
div.product-featured-4 .parallax-back-layer .fl-col-content,
div.product-featured-4 .parallax-front-layer .fl-col-content {
	width: 100%;
	height: 100%;
}

div.product-featured-3 .product-featured-3-col-1 .fl-photo-content {
	z-index: 2;
}
div.product-featured-3 .product-featured-3-col-2 {
	float: right;
}

.parallax-section {
	position: relative;
    z-index: 2;
}
.parallax-section .parallax-back-layer,
.parallax-section .parallax-front-layer {
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    transform-style: preserve-3d;
    z-index: -1;
}
.parallax-section .parallax-back-layer .fl-col-content,
.parallax-section .parallax-front-layer .fl-col-content {
	width: 100%;
	height: 100%;
}
.parallax-section .parallax-back-layer {
	height: 930px;
}
.parallax-section .parallax-front-layer {
	height: 1192px; 
    margin-top: 250px;
}

/* Story page */

.timeline-heading h2 {
	color: #fff;
	font-size: 60px;
	margin-bottom: 0;
}
.timeline-image {
	width: 50%;
}
.timeline-content p {
	margin-bottom: 0;
}

.timeline-mobile {
	display: none !important;
}

.story-featured-3-col-left,
.story-featured-3-col-right {
	display: table !important;
	padding: 10px 0;
	width: 100%;
}
.story-featured-3-col-left > .fl-col-content,
.story-featured-3-col-right > .fl-col-content {
	display: table-cell !important;
	vertical-align: middle;
}
.story-featured-3-col-left .fl-rich-text,
.story-featured-3-col-right .fl-rich-text {
	display: table;
	padding: 20px 0;
	width: 100%;
}
.story-featured-3-col-left .timeline-image,
.story-featured-3-col-right .timeline-image {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

.story-featured-3-col-left .timeline-heading,
.story-featured-3-col-right .timeline-heading {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.story-featured-3-col-left .timeline-heading h2,
.story-featured-3-col-right .timeline-heading h2 {
	text-align: center !important;
    padding: 10px;
}

.story-featured-3-col-left {
	border-right: 1px solid #898989;
}

.col-box-1 .timeline-heading h2 {
	background: #92d51e;
}
.col-box-1 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-1:nth-child(2) .timeline-content {
	border-top: 5px dotted #92d51e;
	border-bottom: 5px dotted #92d51e;
}
.col-box-1:nth-child(2) .timeline-content h2 {
	color: #92d51e;
}

.col-box-2 .timeline-heading h2 {
	background: #00a6d2;
}
.col-box-2 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-2:first-child .timeline-content {
	border-top: 5px dotted #00a6d2;
	border-bottom: 5px dotted #00a6d2;
}
.col-box-2:first-child .timeline-content h2 {
	color: #00a6d2;
}

.col-box-3 .timeline-heading h2 {
	background: #c3008d;
}
.col-box-3 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-3:nth-child(2) .timeline-content {
	border-top: 5px dotted #c3008d;
	border-bottom: 5px dotted #c3008d;
}
.col-box-3:nth-child(2) .timeline-content h2 {
	color: #c3008d;
}

.col-box-4 .timeline-heading h2 {
	background: #ffc600;
}
.col-box-4 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-4:first-child .timeline-content {
	border-top: 5px dotted #ffc600;
	border-bottom: 5px dotted #ffc600;
}
.col-box-4:first-child .timeline-content h2 {
	color: #ffc600;
}

.col-box-5 .timeline-heading h2 {
	background: #ff3000;
}
.col-box-5 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-5:nth-child(2) .timeline-content {
	border-top: 5px dotted #ff3000;
	border-bottom: 5px dotted #ff3000;
}
.col-box-5:nth-child(2) .timeline-content h2 {
	color: #ff3000;
}

.col-box-6 .timeline-heading h2 {
	background: #6433aa;
}
.col-box-6 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-6:first-child .timeline-content {
	border-top: 5px dotted #6433aa;
	border-bottom: 5px dotted #6433aa;
}
.col-box-6:first-child .timeline-content h2 {
	color: #6433aa;
}

.col-box-7 .timeline-heading h2 {
	background: #0b9600;
}
.col-box-7 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-7:nth-child(2) .timeline-content {
	border-top: 5px dotted #0b9600;
	border-bottom: 5px dotted #0b9600;
}
.col-box-7:nth-child(2) .timeline-content h2 {
	color: #0b9600;
}

.col-box-8 .timeline-heading h2 {
	background: #0c52a8;
}
.col-box-8 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-8:first-child .timeline-content {
	border-top: 5px dotted #0c52a8;
	border-bottom: 5px dotted #0c52a8;
}
.col-box-8:first-child .timeline-content h2 {
	color: #0c52a8;
}

.col-box-9 .timeline-heading h2 {
	background: #d78900;
}
.col-box-9 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-9:nth-child(2) .timeline-content {
	border-top: 5px dotted #d78900;
	border-bottom: 5px dotted #d78900;
}
.col-box-9:nth-child(2) .timeline-content h2 {
	color: #d78900;
}

.col-box-10 .timeline-heading h2 {
	background: #a15cef;
}
.col-box-10 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-10:first-child .timeline-content {
	border-top: 5px dotted #a15cef;
	border-bottom: 5px dotted #a15cef;
}
.col-box-10:first-child .timeline-content h2 {
	color: #a15cef
}

#last-story-piece {
	height: 427px !important;
}

.col-box-19 {
	height: 427px !important;
}

.col-box-19 .timeline-heading h2 {
	background: #c3008d;
}
.col-box-19 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-19:first-child .timeline-content {
	border-top: 5px dotted #c3008d;
	border-bottom: 5px dotted #c3008d;
}

.col-box-19:first-child .timeline-content h2 {
	color: #c3008d !important;
}

.col-box-11 .timeline-heading h2 {
	background: #b10000;
}
.col-box-11 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-11:nth-child(2) .timeline-content {
	border-top: 5px dotted #b10000;
	border-bottom: 5px dotted #b10000;
}
.col-box-11:nth-child(2) .timeline-content h2 {
	color: #b10000;
}

.col-box-12 .timeline-heading h2 {
	background: #00bca8;
}
.col-box-12 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-12:first-child .timeline-content {
	border-top: 5px dotted #00bca8;
	border-bottom: 5px dotted #00bca8;
}
.col-box-12:first-child .timeline-content h2 {
	color: #00bca8;
}

.col-box-13 .timeline-heading h2 {
	background: #8f8f8f;
}
.col-box-13 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-13:nth-child(2) .timeline-content {
	border-top: 5px dotted #8f8f8f;
	border-bottom: 5px dotted #8f8f8f;
}
.col-box-13:nth-child(2) .timeline-content h2 {
	color: #8f8f8f;
}

.col-box-14 .timeline-heading h2 {
	background: #ff6c00;
}
.col-box-14 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-14:first-child .timeline-content {
	border-top: 5px dotted #ff6c00;
	border-bottom: 5px dotted #ff6c00;
}
.col-box-14:first-child .timeline-content h2 {
	color: #ff6c00;
}

.col-box-15 .timeline-heading h2 {
	background: #000ecb;
}
.col-box-15 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-15:nth-child(2) .timeline-content {
	border-top: 5px dotted #000ecb;
	border-bottom: 5px dotted #000ecb;
}
.col-box-15:nth-child(2) .timeline-content h2 {
	color: #000ecb;
}

.col-box-16 .timeline-heading h2 {
	background: #00cc1d;
}
.col-box-16 .timeline-image img {
	border-radius: 50%;
	margin-left: -20px;
}
.col-box-16:first-child .timeline-content {
	border-top: 5px dotted #00cc1d;
	border-bottom: 5px dotted #00cc1d;
}
.col-box-16:first-child .timeline-content h2 {
	color: #00cc1d;
}

.col-box-17 .timeline-heading h2 {
	background: #00659a;
}
.col-box-17 .timeline-image img {
	border-radius: 50%;
	margin-right: -20px;
}
.col-box-17:nth-child(2) .timeline-content {
	border-top: 5px dotted #00659a;
	border-bottom: 5px dotted #00659a;
}
.col-box-17:nth-child(2) .timeline-content h2 {
	color: #00659a;
}

/* Contest page */

.contest-featured-1 .contest-featured-1-col-1 .fl-module-content,
.contest-featured-1 .contest-featured-1-col-3 .fl-module-content {
	margin-top: 30%;
}
.contest-featured-1 .contest-featured-1-col-3 .fl-col-content {
	position: relative;
}
.contest-featured-1 .contest-featured-1-col-3 .fl-col-content .fl-module-photo {
	position: absolute;
	bottom: 0;
	right: 0;
}
.contest-featured-2 .column-header-main.fl-module-heading .fl-heading {
	line-height: 0.95;
}
.contest-featured-4 .contest-featured-4-col-3 .featured-button a {
	border-bottom: 2px solid #fff !important;
	border-radius: 0 !important;
}
.contest-featured-4 .contest-featured-4-col-3 .featured-button a:hover {
	border-color: #000;
}
.contest-form .gform_wrapper {
	margin-top: 0;
}
.contest-form div.gform_wrapper .top_label .name-field .gfield_label,
.contest-form div.gform_wrapper .top_label .address-field .gfield_label,
.contest-form div.gform_wrapper .gender-field .gfield_label {
	display: none;
}
.contest-form .gform_wrapper label,
.contest-form .gform_wrapper .gfield_required {
	color: #fff;
}
.contest-form div.gform_wrapper input[type="email"],
.contest-form div.gform_wrapper input[type="text"],
.contest-form div.gform_wrapper textarea {
	padding: 10px;
	width: 100% !important;
}
.contest-form div.gform_wrapper .ginput_complex .ginput_full input[type=email],
.contest-form div.gform_wrapper .ginput_complex .ginput_full input[type=number],
.contest-form div.gform_wrapper .ginput_complex .ginput_full input[type=password],
.contest-form div.gform_wrapper .ginput_complex .ginput_full input[type=tel],
.contest-form div.gform_wrapper .ginput_complex .ginput_full input[type=text],
.contest-form div.gform_wrapper .ginput_complex .ginput_full input[type=url] {
	width: 100% !important;
}
.contest-form div.gform_wrapper .ginput_complex .ginput_left,
.contest-form div.gform_wrapper .ginput_complex .ginput_right {
	width: 50%;
}
.contest-form .gform_wrapper .ginput_complex.ginput_container.has_first_name.no_middle_name.has_last_name span.name_first {
	float: left;
	margin-right: 0;
}
.contest-form select {
	padding: 8px 12px;
	height: 40px;
}
.contest-form div.gform_wrapper .gfield_radio li {
	display: inline-block;
	margin-bottom: 0;
	margin-right: 10px;
}
.contest-form div.gform_wrapper .field_sublabel_above .ginput_complex label {
	margin-top: 0;
}
.contest-form div.gform_wrapper .top_label li.gfield.gf_right_half,
.contest-form div.gform_wrapper .top_label li.gfield.gf_left_half {
	margin-top: 16px;
}
.contest-form .gform_wrapper .address-field span.ginput_full {
	display: inline-block;
	padding-right: 16px;
	margin-bottom: 16px;
	width: 50%;
}
.contest-form .gform_wrapper .ginput_complex .ginput_right.address_state {
	margin-left: 0;
	padding-right: 16px;
}
.contest-form .gform_wrapper .gform_footer {
	margin-top: 20px;
	padding-top: 0;
	padding-bottom: 0;
}
.contest-form .gform_wrapper .gform_footer input[type="submit"] {
	background: #ce017e;
	padding: 10px 40px;
}
.contest-form .gform_wrapper .gform_footer input[type="submit"]:hover {
	background: #5C2F9C;
}

.contest-form .gform_wrapper div.validation_error,
.contest-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required,
.contest-form .gform_wrapper li.gfield.gfield_error,
.contest-form.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
.contest-form .gform_wrapper .validation_message,
.contest-form div.gform_wrapper li.gfield_error div.ginput_complex.ginput_container label,
.contest-form .gform_wrapper .gfield_error .gfield_label {
	background: transparent;
	border: none;
	color: #fff;
	font-weight: 400;
	margin: 0 !important;
	padding: 0;
}
.contest-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.contest-form .gform_wrapper .ginput_container+.gfield_description.validation_message,
.contest-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	font-weight: 400;
	margin-left: 0;
	margin-top: 0;
}
.news-item {
	width: 30%;
}
.news-featured-2 .fl-col-content {
	opacity: 0;
	transition: 0.3s opacity linear;
}
.news-featured-2.masonry-loaded .fl-col-content {
	opacity: 1;
	transition: 0.3s opacity linear;
}
.news-featured-2 .fl-col-content > .fl-module {
	width: 32%;
	position: relative;
	background-color: #fff;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	-webkit-box-shadow: 0 0px 7px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0px 7px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 0px 7px rgba(0,0,0,0.1);
	box-shadow: 0 0px 7px rgba(0,0,0,0.1);
}
.news-featured-2 .fl-col-content > .fl-module img {
	width: 100%;
}
.news-featured-2 .fl-col-content > .fl-module .pairing-heading {
	text-align: center;
}
.news-featured-2 .fl-col-content > .fl-module .pairing-heading a {
	border-bottom: 0;
	color: #eb0094;
}
.news-featured-2 .fl-col-content > .fl-module .pairing-heading a:hover {
	color: #6433aa;
}
.news-featured-2 .fl-col-content > .fl-module p {
	line-height: 1.4;
}

/* Contact page */
.contact-featured-1.fl-row-full-height .fl-row-content-wrap {
	min-height: 80vh;
}

.contact-form {
	margin: 0 auto;
	max-width: 70%;
}
.contact-form .gform_wrapper {
	max-width: 100%;
}
.contact-form div.gform_wrapper input,
.contact-form select,
.contact-form textarea {
	background: transparent;
	border: 1px solid #fff;
	color: #000;
}
.contact-form div.gform_wrapper input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: 3px solid #e46b9e;
}
.contact-form select {
	height: 50px;
}
.contact-form .gform_footer input[type="submit"] {
	background: #d2008a;
	border: none;
	color: #fff;
}
.contact-form .gform_footer input[type="submit"]:hover {
	background: #6433aa;
}
.contact-form .gform_footer input[type="submit"]:focus {
	outline: none;
}
.contact-form div.gform_wrapper .top_label .name-field .gfield_label {
	display: none;
}
.contact-form div.gform_wrapper textarea.large,
.contact-form div.gform_wrapper .top_label select.large,
.contact-form div.gform_wrapper .top_label input.large,
.contact-form div.ginput_complex.ginput_container.gf_name_has_2 span input {
	border-color: #fff;
	width: 100%;
}
.contact-form div.gform_wrapper .top_label .gfield_label,
.contact-form div.gform_wrapper .ginput_complex label {
	color: #000;
}
.contact-form div.gform_wrapper .ginput_complex label {
	margin-bottom: 15px;
	line-height: 1;
}
.contact-form div.ginput_complex.ginput_container.gf_name_has_2 span {
	margin-right: 0;
	width: 49.5%;
}

.contact-form div.gform_wrapper div.validation_error,
.contact-form div.gform_wrapper li.gfield.gfield_error,
.contact-form div.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background: transparent;
	border: none;
	color: #fff;
	margin: 16px 0 0 !important;
	padding: 0 !important;
}
.contact-form div.gform_wrapper .validation_message,
.contact-form div.gform_wrapper .gfield_description.validation_message,
.contact-form div.gform_wrapper .top_label .gfield_description.validation_message {
	color: #fff;
	margin: 0 !important;
	padding: 0 !important;
}
.contact-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.contact-form div.gform_wrapper li.gfield_html,
.contact-form div.gform_wrapper .top_label .gfield_error,
.contact-form div.gform_wrapper .top_label .gfield_error textarea.textarea,
.contact-form div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
	margin-left: 0;
	max-width: 100%;
	width: 100%;
}
.contact-form div.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-bottom: 0;
	margin-left: 0;
}
.contact-form div.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.contact-form div.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 0;
}

/*
Landing page
---------------------------------------------------------------------------------------------------- */
.landing-page .site-inner {
	margin-top: 90px;
}
.landing-page .site-inner,
.landing-page .site-inner .wrap {
	max-width: 850px;
}
.landing-page .entry {
	border-radius: 0;
	-webkit-box-shadow: 0 0px 7px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0px 7px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 0px 7px rgba(0,0,0,0.1);
	box-shadow: 0 0px 7px rgba(0,0,0,0.1);
}
.landing-page .entry > .entry-header {
	margin-bottom: 30px;
	text-align: center;
}
.landing-page-nutrition .entry > .entry-header {
	display: none;
}
.landing-page-faq .entry-content h4 {
	color: #eb0094;
}


/*
Responsive Menu
---------------------------------------------------------------------------------------------------- */
.responsive-menu {
	position: relative;
	display: none;
}

.responsive-menu .responsive-menu-icon {
	color: #fff;
	cursor: pointer;
	font-size: 35px;
	padding: 5px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100001;
	-webkit-tap-highlight-color: transparent;
}

.fixed-header .responsive-menu .responsive-menu-icon {
	color: #002D95;
}

.responsive-menu .responsive-menu-icon .fa-close {
	display: none;
}

.responsive-menu-open,
.responsive-menu-open body {
	overflow: hidden;
	width: 100%;
}

.responsive-menu-open .responsive-menu .responsive-menu-icon .fa-navicon {
	display: none;
	color: #fff;
}

.responsive-menu-open .responsive-menu .responsive-menu-icon .fa-close {
	display: inline;
	color: #fff;
}

/*
Media Queries
---------------------------------------------------------------------------------------------------- */

@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) {

	.header-image .site-header .wrap {
		background: url(images/logo%402x.html) no-repeat left;
		background-size: 320px 164px;
	}

}

@media only screen and (max-width: 1750px) {

	div.home-featured-1 .fl-row-content-wrap {
		padding-left: 0;
    	padding-right: 0;
	}

}

@media only screen and (max-width: 1570px) {

	div.home-featured-1 .home-featured-1-col-1 .fl-col-content {
		margin-left: 30px;
	}

}

@media only screen and (max-width: 1490px) {

	.site-header .widget-area {

	}
	div.home-featured-1 .home-featured-1-col-1 {
		width: 40% !important;
	}
	div.home-featured-1 .home-featured-1-col-1 .fl-col-content {
		margin-right: 0;
		padding-top: 70px;
	}
	div.home-featured-1 .home-featured-1-col-2 {
		width: 60% !important;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 100px;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 55px;
	}
	div.fan-club-3 .column-desc .fl-module-content {
		margin-left: 100px;
		margin-right: 100px;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-10 .fl-module-heading.column-header-large .fl-heading {
		font-size: 70px;
	}
	div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
		min-height: 58vh;
	}
	div.product-featured-3 .product-featured-3-col-1 .fl-module .fl-module-content {
		margin-left: 0;
		margin-right: 0;
	}
	div.product-featured-3 .product-featured-3-col-2 .fl-col-content {
		margin-top: 120px;
	}
	div.product-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 65px;
	}

}

@media only screen and (max-width: 1300px) {

	.genesis-nav-menu a {
		padding: 38px 18px;
    	padding: 3.8rem 1.8rem;
	}
	.site-header.fixed-header .genesis-nav-menu a {
		padding: 20px 18px;
    	padding: 2rem 1.8rem;
	}
	div.home-featured-1 .home-featured-1-col-1 .fl-col-content {
		padding-top: 30px;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 45px;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-10 .fl-module-heading.column-header-large .fl-heading {
		font-size: 60px;
	}
	div.fan-club-6 .fan-club-6-col-1,
	div.fan-club-6 .fan-club-6-col-2 {
		width: 50% !important;
	}
	div.fan-club-8 .fl-row-content-wrap {
		background-position: center top;
		min-height: 48.2vh;
	}
	div.fan-club-9 .fl-rich-text p {
		font-size: 20px !important;
	}
	div.product-featured-2 .product-featured-2-image .fl-photo-content,
	div.product-featured-4 .product-featured-4-col-2 .fl-photo-content {
		top: 35px;
	}
	div.product-featured-3 .product-featured-3-col-1 {
		width: 48% !important;
	}
	div.product-featured-3 .product-featured-3-col-2 {
		width: 52% !important;
	}
	div.product-featured-3 .product-featured-3-col-1 .fl-module .fl-module-content {
		margin-left: -60px;
	}
	div.product-featured-2 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-3 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-4 .fl-module-heading.column-header-main .fl-heading {
		font-size: 60px;
	}
	div.product-featured-4 .fl-row-content-wrap {
		padding-top: 50px;
		padding-bottom: 30px;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 50px;
	}
	div.product-featured-5 .product-featured-5-col-2 .fl-col-content {
		padding-top: 30px;
	}
	div.product-featured-2 .parallax-back-layer .fl-col-content,
	div.product-featured-2 .parallax-front-layer .fl-col-content,
	div.product-featured-4 .parallax-back-layer .fl-col-content,
	div.product-featured-4 .parallax-front-layer .fl-col-content {
		background-position: left center;
		background-size: contain;
	}

}

@media only screen and (max-width: 1200px) {

	.site-header .widget-area {

	}
	.title-area {
		width: 160px;
	}
	.genesis-nav-menu a,
	.site-header.fixed-header .genesis-nav-menu a {
		padding: 22px 18px;
    	padding: 2.2rem 1.2rem;
	}
	.site-header .simple-social-icons,
	.site-header.fixed-header .simple-social-icons {
		padding: 16px 0;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 85px;
	}
	div.home-featured-2 .column-header.fl-module-heading .fl-heading {
		font-size: 28px;
	}
	div.fan-club-2 div.fl-module-heading .fl-heading {
		font-size: 80px;
	}
	div.fan-club-3 .column-desc .fl-module-content {
		margin-left: 0;
		margin-right: 0;
	}
	div.fan-club-4 .fan-club-4-col-1 {
		width: 45% !important;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading {
		font-size: 62px;
	}
	div.fan-club-6 .fan-club-6-col-1 .fl-col-content {
		background-position: left bottom;
	}
	div.home-featured-2-col-1 .fl-rich-text p span,
	div.home-featured-2-col-2 .fl-rich-text p span,
	div.home-featured-2-col-3 .fl-rich-text p span,
	div.fan-club-3 div.fl-col-small .fl-rich-text p span,
	div.fan-club-6 .fl-rich-text p,
	div.fan-club-9 .fl-rich-text p span {
		font-size: 17px !important;
	}
	div.fan-club-5 .featured-button a .fl-button-text {
		padding: 15px 40px !important;
	}
	div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
		min-height: 45vh;
	}
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading {
		font-size: 60px;
	}
	div.product-featured-2 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-3 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-4 .fl-module-heading.column-header-main .fl-heading {
		font-size: 52px;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 45px;
	}
	div.contest-featured-1 .contest-featured-1-col-2 .fl-module-content {
		margin: 0;
		margin-top: 120px;
	}
	div.contest-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 70px;
	}
	div.contest-featured-2 .column-desc .fl-rich-text p,
	div.contest-featured-3 .column-desc .fl-rich-text p {
		font-size: 20px !important;
	}
	div.contest-featured-4 .contest-form-header.fl-module-heading .fl-heading {
		font-size: 40px;
	}
	div.contact-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 55px;
	}

}

@media only screen and (max-width: 1139px) {

	.site-inner,
	.wrap {
		max-width: 960px;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 740px;
	}

	.content {
		width: 620px;
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 400px;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading {
		font-size: 45px;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading {
		font-size: 25px;
	}
	div.home-featured-4 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-10 .fl-module-heading.column-header-large .fl-heading {
		font-size: 52px;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-headin {
		font-size: 90px;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 38px;
	}
	div.fan-club-10 .fan-club-10-col-2 .fl-col-content {
		padding-top: 25px;
	}
	div.product-featured-4 .product-featured-3-col-1 .fl-photo-content {
		top: 25px;
	}
	div.contest-featured-2 .column-desc .fl-module-content .fl-rich-text p,
	div.contest-featured-3 .column-desc .fl-module-content .fl-rich-text p {
		font-size: 18px !important;
	}
	div.contest-featured-2 .contest-featured-2-col-1 .fl-module-content .fl-rich-text p,
	div.contest-featured-2 .contest-featured-2-col-2 .fl-module-content .fl-rich-text p,
	div.contest-featured-2 .contest-featured-2-col-3 .fl-module-content .fl-rich-text p,
	div.contest-featured-2 .contest-featured-2-col-4 .fl-module-content .fl-rich-text p {
		font-size: 16px !important;
	}
	div.contest-featured-4 .contest-featured-4-col-3 .fl-module-heading.contest-form-header .fl-heading {
		font-size: 32px;
	}
	div.contact-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 50px;
	}
	.news-featured-2 .fl-col-content > .fl-module {
		width: 350px;
	}

}

@media only screen and (max-width: 1024px) {

	.responsive-menu {
		display: block;
	}
	.site-header .widget-area {
		background: rgba(41, 18, 39, 0.95);
		overflow-y: auto;
		opacity: 0;
		padding: 10%;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		visibility: hidden;
		z-index: 10000;
		-webkit-transition: 0.3s opacity ease-in-out, 0.3s visibility ease-in-out;
		-moz-transition: 0.3s opacity ease-in-out;
		-ms-transition: 0.3s opacity ease-in-out;
		-o-transition: 0.3s opacity ease-in-out;
		transition: 0.3s opacity ease-in-out, 0.3s visibility ease-in-out;
	}
	.responsive-menu-open .site-header .widget-area {
		top: 0;
		opacity: 1;
		visibility: visible;
		-webkit-transition: 0.3s opacity ease-in-out, 0.3s visibility ease-in-out;
		-moz-transition: 0.3s opacity ease-in-out;
		-ms-transition: 0.3s opacity ease-in-out;
		-o-transition: 0.3s opacity ease-in-out;
		transition: 0.3s opacity ease-in-out, 0.3s visibility ease-in-out;
	}
	.site-header .widget_nav_menu {
		display: block;
	}
	.genesis-nav-menu .menu-item {
		display: block;
		text-align: center;
	}
	.genesis-nav-menu > .menu-item > a {
		display: inline-block;
		color: #fff;
	}
	.site-header.fixed-header .genesis-nav-menu a {
		color: #fff;
	}
	.site-header .simple-social-icons {
		width: 100%;
		position: static;
	}
	.site-header .simple-social-icons ul {
		float: none;
		text-align: center;
	}
	.site-header .simple-social-icons ul li {
		float: none;
		display: inline-block;
	}
	div.home-featured-1 .home-featured-1-col-1 .fl-col-content {
		padding-top: 0;
	}
	div.home-featured-1 .home-featured-1-col-1 {
		width: 42% !important;
	}
	div.home-featured-1 .home-featured-1-col-2 {
		width: 55% !important;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 80px;
	}
	div.home-featured-2 .home-featured-2-desc .fl-rich-text p span {
		font-size: 18px !important;
	}
	div.home-featured-2-col-1 .fl-rich-text p span,
	div.home-featured-2-col-2 .fl-rich-text p span,
	div.home-featured-2-col-3 .fl-rich-text p span {
		font-size: 16px !important;
	}
	div.home-featured-4 .fl-col {
		width: 100% !important;
		max-width: 100%;
	}
	div.home-featured-2 .featured-bg-cover .fl-col-content,
	div.home-featured-4 .featured-bg-cover .fl-col-content {
		background-attachment: scroll !important;
		background-position: 80% 30%;
	}
	div.home-featured-2 .featured-bg-cover .fl-col-content {
		background-position: 55% 30%;
	}
	div.fan-club-2 div.fl-module-heading .fl-heading {
    	font-size: 68px;
    	margin-bottom: 10px !important;
	}
	div.fan-club-3 .fl-module-heading.column-header-main .fl-heading {
		font-size: 40px;
	}
	div.fan-club-3 .column-desc .fl-rich-text p span {
		font-size: 18px !important;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading {
		font-size: 55px;
	}
	div.fan-club-5 .mc4wp-fields-wrap {
		width: 85%;
	}
	div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
		min-height: 40vh;
	}
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading {
		font-size: 50px;
	}
	div.fan-club-9 div.column-header .fl-heading {
		font-size: 36px;
	}
	div.home-featured-2-col-1 .fl-rich-text p span,
	div.home-featured-2-col-2 .fl-rich-text p span,
	div.home-featured-2-col-3 .fl-rich-text p span,
	div.fan-club-3 div.fl-col-small .fl-rich-text p span,
	div.fan-club-6 .fl-rich-text p,
	div.fan-club-9 .fl-rich-text p {
		font-size: 15px !important;
	}
	div.product-featured-1 .fl-slide-text h2 span {
		font-size: 65px !important;
	}
	div.product-featured-1 .fl-content-slider .fl-slide-bg-photo {
		display: none;
	}
	div.product-featured-1 .fl-slide-mobile-photo {
		display: block;
	}
	div.product-featured-1 .fl-slide-foreground .fl-slide-content {
		margin: 0;
	}
	div.product-featured-1 .fl-slide-0 .fl-slide-foreground .fl-slide-text * {
		color: #700008 !important;
	}
	div.product-featured-1 .fl-slide-1 .fl-slide-foreground .fl-slide-text * {
		color: #ffe400 !important;
	}
	div.product-featured-1 .fl-slide-2 .fl-slide-foreground .fl-slide-text * {
		color: #007d15 !important;
	}
	div.product-featured-1 .fl-slide-3 .fl-slide-foreground .fl-slide-text * {
		color: #770085 !important;
	}
	div.product-featured-1 .fl-slide-4 .fl-slide-foreground .fl-slide-text * {
		color: #a20000 !important;
	}
	div.product-featured-1 .fl-slide-5 .fl-slide-foreground .fl-slide-text * {
		color: #f79100 !important;
	}

	div.product-featured-1 .bx-wrapper .bx-pager {
		position: relative;
		bottom: 0;
	}
	div.product-featured-1 .fl-module-content-slider .bx-wrapper {
		margin-bottom: 30px;
	}
	div.product-featured-1 .fl-module-content .fl-rich-text p span,
	div.product-featured-2 .fl-module-content .fl-rich-text p span,
	div.product-featured-3 .fl-module-content .fl-rich-text p span,
	div.product-featured-4 .fl-module-content .fl-rich-text p span,
	div.product-featured-5 .fl-module-content .fl-rich-text p span {
		font-size: 16px !important;
	}
	div.product-featured-2 .product-featured-2-image .fl-photo-content,
	div.product-featured-4 .product-featured-4-col-2 .fl-photo-content {
		top: 98px;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 35px;
	}
	div.story-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 35px;
	}
	.timeline-heading h2 {
		font-size: 48px;
	}
	.timeline-content h2 {
		font-size: 24px;
	}
	div.contest-featured-2 .column-desc .fl-module-content .fl-rich-text p,
	div.contest-featured-3 .column-desc .fl-module-content .fl-rich-text p {
		font-size: 17px !important;
	}
	div.contest-featured-4 .contest-featured-4-col-2 .fl-photo-content {
		margin-top: 60px;
	}
	div.contest-featured-4 .contest-featured-4-col-3 .fl-module-heading.contest-form-header .fl-heading {
		font-size: 30px;
	}
	div.contest-featured-4 .fl-module-content {
		margin: 5px;
	}
	div.contest-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 55px;
	}
	.news-featured-2 .fl-col-content > .fl-module {
		width: 48%;
	}

}

@media only screen and (max-width: 1023px) {

	body {
		background-color: #fff;
	}

	.content,
	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.site-inner,
	.wrap {
		width: 100%;
	}

	.header-image .site-header .wrap {
		background-position: center top;
	}

	.site-inner {
		padding-left: 5%;
		padding-right: 5%;
	}

	.featured-page .site-inner {
		padding-left: 0;
		padding-right: 0;
	}

	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-footer .entry-meta,
	.header-image .site-header .widget-area,
	.sidebar .widget,
	.site-header {

	}

	.site-header .search-form {
		float: none;
	}

	.site-description,
	.site-header .search-form,
	.site-title {
		text-align: center;
	}
	.site-header .search-form {
		margin: 16px auto ;
		margin: 1.6rem auto;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
		padding-top: 1.2rem;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
		padding: 4rem;
	}

	.site-footer {
		padding: 24px 0;
		padding: 2.4rem 0;
	}

	.footer-widgets {
		padding: 40px 5% 16px;
	}

	.footer-widgets-1 {
		margin: 0;
	}
	.contest-featured-1 .contest-featured-1-col-1,
	.contest-featured-1 .contest-featured-1-col-3 {
		display: none !important;
	}
	.contest-featured-1 .contest-featured-1-col-2 {
		width: 70% !important;
		float: none;
		text-align: center;
		margin: 0 auto;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-heading {
		font-size: 90px;
	}
	div.contest-featured-1 .contest-featured-1-col-2 .fl-module-content {
		margin-top: 40px;
		margin-bottom: 70px;
	}
	.contest-featured-2 .contest-featured-2-col-1,
	.contest-featured-2 .contest-featured-2-col-2,
	.contest-featured-2 .contest-featured-2-col-3,
	.contest-featured-2 .contest-featured-2-col-4 {
		width: 100% !important;
	}
	div.contest-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 45px;
	}
	.contest-featured-4 .contest-featured-4-col-1,
	.contest-featured-4 .contest-featured-4-col-2 {
		display: none !important;
	}
	.contest-featured-4 .contest-featured-4-col-3 {
		width: 100% !important;
		max-width: 100%;
		float: none;
	}
	.contest-featured-4 .contest-featured-4-col-3 .contest-form .gform_wrapper {
		max-width: 100%;
	}
	div.contest-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 40px;
	}
	div.contest-featured-5 .fl-module-heading.column-sub-header .fl-heading {
		font-size: 34px;
	}
	.landing-page div.ginput_complex.ginput_container.gf_name_has_2 span {
		width: 100%;
	}
	.landing-page div.ginput_container_name span {
		padding-right: 0;
	}
	.landing-page .gform_wrapper input[type=email],
	.landing-page .gform_wrapper input[type=number],
	.landing-page .gform_wrapper input[type=password],
	.landing-page .gform_wrapper input[type=tel],
	.landing-page .gform_wrapper input[type=text],
	.landing-page .gform_wrapper input[type=url],
	.landing-page .gform_wrapper select,
	.landing-page .gform_wrapper textarea {
		width: 100% !important;
	}
	.contact-featured-1.fl-row-full-height .fl-row-content-wrap {
		min-height: 35vh;
	}
	div.contact-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 34px;
	}
	.contact-form {
		max-width: 95%;
	}

}

@media only screen and (max-width: 960px) {

	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading {
		font-size: 38px;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading {
		font-size: 20px;
		margin-top: 5px !important;
		margin-bottom: 5px !important;
	}
	div.home-featured-1 .home-featured-1-col-2 .fl-col-content {
		margin-left: 0;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 68px;
	}
	div.home-featured-2 .home-featured-2-desc .fl-rich-text p span,
	div.home-featured-3 .home-featured-3-desc .fl-rich-text p span {
		font-size: 16px !important;
	}
	div.home-featured-2 .column-header.fl-module-heading .fl-heading {
		font-size: 20px;
	}
	div.home-featured-2-col-1 .fl-rich-text p span,
	div.home-featured-2-col-2 .fl-rich-text p span,
	div.home-featured-2-col-3 .fl-rich-text p span {
		font-size: 15px !important;
	}
	div.home-featured-3 .fl-row-content-wrap {
		padding-top: 70px;
    	padding-bottom: 70px;
	}
	div.fan-club-1.fl-row-full-height .fl-row-content-wrap {
		background-position: center top;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 30px;
	}
	div.fan-club-3 .column-desc .fl-rich-text p span {
		font-size: 16px;
	}
	div.fan-club-3 .fl-module-heading.column-header .fl-heading {
		font-size: 18px;
	}
	div.fan-club-3 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading {
		font-size: 32px;
	}
	div.fan-club-2 div.fl-module-heading .fl-heading {
		font-size: 62px;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading {
		font-size: 40px;
	}
	div.fan-club-6 .featured-button div.fl-module-content a {
		font-size: 18px;
	}
	div.fan-club-6 .fan-club-6-col-2 .fl-col-content {
		padding-bottom: 30px;
	}
	div.fan-club-9 div.column-header .fl-heading {
		font-size: 26px;
	}
	div.fan-club-9 div.column-header .fl-heading:after {
		margin-top: 16px;
	}
	div.product-featured-2 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-3 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-4 .fl-module-heading.column-header-main .fl-heading {
		font-size: 42px;
	}
	div.product-featured-3 .product-featured-3-col-2 .fl-col-content {
		margin-top: 100px;
	}
	div.product-featured-2 .product-featured-2-col-1 .fl-col-content,
	div.product-featured-4 .product-featured-4-col-1 .fl-col-content {
		padding-top: 0;
	}
	div.product-featured-2 .product-featured-2-image .fl-photo-content,
	div.product-featured-4 .product-featured-4-col-2 .fl-photo-content {
		top: 8px;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 32px;
	}
	div.product-featured-5 .product-featured-5-col-2 .product-featured-5-col-2-image {
		display: none;
	}
	div.story-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 30px;
	}
	.timeline-heading h2 {
		font-size: 40px;
	}
	.timeline-content h2 {
		font-size: 20px;
	}

}

@media only screen and (max-width: 800px) {

	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading {
		font-size: 36px;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 60px;
	}
	div.fan-club-1.fl-row-full-height .fl-row-content-wrap {
		background-position: center top;
		min-height: 60vh;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-headin {
		font-size: 70px;
	}
	div.fan-club-1 .fan-club-1-col-1 {
		top: 15%;
	}
	div.fan-club-2 div.fl-module-heading .fl-heading {
		font-size: 50px;
	}
	div.fan-club-5 .featured-button div.fl-module-content a {
		font-size: 22px;
	}
	div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
		min-height: 30vh;
	}
	div.fan-club-9 .fan-club-9-col-1 .fl-rich-text p,
	div.fan-club-9 .fan-club-9-col-2 .fl-rich-text p,
	div.fan-club-9 .fan-club-9-col-3 .fl-rich-text p {
		font-size: 12px !important;
	}
	div.product-featured-3 .product-featured-3-col-2 .fl-col-content {
		margin-top: 70px;
	}
	div.contest-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 38px;
	}
	div.contest-featured-5 .fl-module-heading.column-sub-header .fl-heading {
		font-size: 30px;
	}

}

@media only screen and (max-width: 768px) {

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	.site-header .wrap {
		padding: 10px 10px;
    	padding: 1rem 1rem;
	}
	.featured-button a {
		font-size: 18px !important;
	}
	div.fl-col {
		width: 100% !important;
	}
	div.home-featured-1 .home-featured-1-col-1,
	div.home-featured-1 .home-featured-1-col-2 {
		float: left;
		clear: none;
	}
	div.home-featured-1 .home-featured-1-col-1 {
		width: 40% !important;
	}
	div.home-featured-1 .home-featured-1-col-2 {
		margin-left: -40px;
		width: 60% !important;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-module-content,
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-module-content,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading {
		font-size: 32px;
		line-height: 1;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-module-content,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading {
		font-size: 17.5px;
		line-height: 1;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	div.home-featured-1 .home-featured-1-col-1 .featured-button .fl-button-left {
		text-align: left;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 50px;
	}
	div.home-featured-2 .home-featured-2-col-1,
	div.home-featured-2 .home-featured-2-col-2,
	div.home-featured-2 .home-featured-2-col-3 {
		width: 33.33% !important;
		float: left;
		clear: none;
	}
	div.home-featured-4 .fl-row-content-wrap {
		padding-top: 160px;
		padding-bottom: 110px;
	}
	div.home-featured-4 .fl-module-heading.column-header-main .fl-heading {
		text-align: center;
	}
	div.fan-club-1 .fan-club-1-col-1 {
		position: static;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-heading {
		font-size: 70px;
	}
	div.fan-club-2 .fl-module-content {
		margin-bottom: 0;
		margin-top: 0;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 40px;
		line-height: 0.8;
	}
	div.fan-club-3 .fl-col-small {
		max-width: 100%;
	}
	div.fan-club-4 .fan-club-4-col-1 {
		margin: 0;
		text-align: center;
		width: 100% !important;
		max-width: 100%;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading {
		text-align: center;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading br {
		display: none;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-10 .fl-module-heading.column-header-large .fl-heading {
		font-size: 40px;
	}
	div.fan-club-6 .fan-club-6-col-1 {
		height: 100%;
		margin: 0;
		position: absolute;
		top: 0;
	}
	div.fan-club-6 .fan-club-6-col-2 {
		margin: 0;
		float: right;
	}
	div.fan-club-6 .fan-club-6-col-2 .fl-col-content {
		padding-top: 0;
	}
	div.fan-club-6 .featured-button.fl-module-button .fl-button-right {
		text-align: right;
	}
	div.fan-club-9 p {
		text-align: center !important;
	}
	div.fan-club-9 .fan-club-9-col-1-main,
	div.fan-club-9 .fan-club-9-col-2-main {
		width: 50% !important;
		margin: 0;
		float: left;
		clear: none;
	}
	div.fan-club-9 .fan-club-9-col-1,
	div.fan-club-9 .fan-club-9-col-2,
	div.fan-club-9 .fan-club-9-col-3 {
		margin-bottom: 20px;
	}
	div.fan-club-9 .fan-club-9-col-1 .fl-rich-text p,
	div.fan-club-9 .fan-club-9-col-2 .fl-rich-text p,
	div.fan-club-9 .fan-club-9-col-3 .fl-rich-text p {
		font-size: 14px !important;
	}
	div.fan-club-9 .fan-club-9-col-1-main,
	div.fan-club-9 .fan-club-9-col-2-main {
		width: 100% !important;
		max-width: 100%;
	}
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading {
		text-align: center;
	}
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading br {
		display: none;
	}
	div.fan-club-10 .fan-club-10-col-1 {
		max-width: 80%;
	}
	div.fan-club-10 .fan-club-10-col-2 {
		max-width: 100%;
	}
	div.fl-builder-content div.product-featured-1 .fl-slide .fl-slide-text h2 span {
		font-size: 50px !important;
	}
	div.fl-builder-content div.product-featured-1 .fl-slide .fl-slide-text p span {
		font-size: 15px !important;
	}
	div.product-featured-1 .fl-slide .fl-slide-content {
		padding-bottom: 0 !important;
	}
	div.product-featured-1 .bx-wrapper .bx-pager {
		padding-top: 0;
	}
	div.product-featured-1 .bx-wrapper .bx-pager.bx-default-pager a {
		margin: 0 15px;
	}
	div.product-featured-1 div.fl-col,
	div.product-featured-2 div.fl-col,
	div.product-featured-3 div.fl-col,
	div.product-featured-4 div.fl-col,
	div.product-featured-5 div.fl-col {
		max-width: 100% !important;
	}
	div.product-featured-2 div.fl-row-content-wrap,
	div.product-featured-3 div.fl-row-content-wrap,
	div.product-featured-4 div.fl-row-content-wrap,
	div.product-featured-5 div.fl-row-content-wrap {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	div.product-featured-3 .product-featured-3-col-1,
	div.product-featured-3 .product-featured-3-col-2 {
		width: 100% !important;
	}
	div.product-featured-2 .parallax-back-layer .fl-col-content,
	div.product-featured-2 .parallax-front-layer .fl-col-content,
	div.product-featured-4 .parallax-back-layer .fl-col-content,
	div.product-featured-4 .parallax-front-layer .fl-col-content {
		background-size: cover;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 50px;
	}
	div.story-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 20px;
	}
	div.story-featured-2 .fl-module-content .fl-rich-text p {
		font-size: 15px !important;
		margin-bottom: 0;
	}
	div.story-featured-3 .fl-col {
		max-width: 100%;
	}
	.story-featured-3 .fl-col-group:nth-child(odd) .story-featured-3-col-left,
	.story-featured-3 .fl-col-group:nth-child(even) .story-featured-3-col-right {
		display: none !important;
	}
	.story-featured-3-col-left,
	.story-featured-3-col-right,
	.story-featured-3-col-left .timeline-content,
	.story-featured-3-col-right .timeline-content {
		border-top: 0 !important;
		border-left: 0 !important;
		border-right: 0 !important;
	}
	div.story-featured-3-col-left > .fl-col-content,
	div.story-featured-3-col-right > .fl-col-content {
		padding-top: 0;
	}
	.story-featured-3-col-left .timeline-heading,
	.story-featured-3-col-right .timeline-heading {
		display: block;
		font-size: 30px;
	}
	.story-featured-3-col-left .fl-rich-text p,
	.story-featured-3-col-right .fl-rich-text p {
		text-align: center !important;
	}
	.story-featured-3-col-left .timeline-image > div,
	.story-featured-3-col-right .timeline-image > div {
		display: inline-block;
	}
	.timeline-mobile {
		display: block !important;
		text-align: center;
		width: 100%;
	}
	.timeline-mobile img {
		width: 200px;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.timeline-content h2 {
		text-align: center !important;
		font-size: 25px;
	}
	.contest-featured-1 .contest-featured-1-col-2 .fl-module-content {
		margin-bottom: 60px;
	}
	.contest-featured-1 .fl-col-small,
	.contest-featured-2 .fl-col-small,
	.contest-featured-3 .fl-col-small,
	.contest-featured-4 .fl-col-small {
		max-width: 100%;
	}
	.contest-featured-2 .contest-featured-2-col-1,
	.contest-featured-2 .contest-featured-2-col-2,
	.contest-featured-2 .contest-featured-2-col-3,
	.contest-featured-2 .contest-featured-2-col-4 {
		float: left;
		clear: right;
	}
	div.contest-featured-3 .fl-row-content-wrap {
		padding-top: 50px;
	}
	.contest-featured-3 .column-desc .fl-module-content .fl-rich-text p {
		text-align: center !important;
	}
	.contest-featured-3 .fl-photo-align-left {
		text-align: center;
	}
	.contest-featured-3 .contest-featured-3-col-2,
	.contest-featured-4 .contest-featured-4-col-3 {
		width: 95% !important;
	}
	.contest-featured-4 {
		position: relative;
	}
	.contest-featured-4 .featured-button {
		position: absolute;
		bottom: 70px;
		right: 18px;
	}
	.contest-featured-4 .featured-button a {
		font-size: 14px !important;
	}
	.contest-featured-4 .fl-module-button .fl-button-left {
		text-align: left;
	}
	.news-featured-1 .fl-col .fl-col-content {
		margin-top: 80px !important;
    	margin-bottom: 80px !important;
	}
	.news-featured-2 div.fl-col {
		width: 90% !important;
	}
	.news-featured-2 .fl-col-content > .fl-module {
		width: 48%;
	}

}

@media only screen and (max-width: 670px) {

	div.home-featured-1 .home-featured-1-col-1,
	div.home-featured-1 .home-featured-1-col-2 {
		width: 100% !important;
		float: none;
		text-align: center;
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2 {
		display: inline-block;
		position: relative;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-module-content,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-module-content {
		margin-left: 5px;
		margin-right: 5px;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading {
		font-size: 42.5px;
		text-align: center;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading {
		left: 20.5%;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading {
		right: 20.5%;
	}
	div.home-featured-1 .home-featured-1-col-1 .featured-button .fl-button-left {
		text-align: center;
	}
	div.home-featured-2 .home-featured-2-col-1,
	div.home-featured-2 .home-featured-2-col-2,
	div.home-featured-2 .home-featured-2-col-3 {
		width: 100% !important;
		float: none;
    	max-width: 80%;
	}
	div.fan-club-1.fl-row-full-height .fl-row-content-wrap {
		min-height: 45vh;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-headin {
		font-size: 60px;
	}
	div.fan-club-1 .fan-club-1-col-1 {
		margin-top: 30px;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-heading {
		font-size: 45px;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-module-content {
		margin-bottom: 0;
	}
	div.fan-club-2 div.fl-module-heading .fl-heading {
		font-size: 42px;
	}
	div.fan-club-3 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading {
		font-size: 26px;
	}
	div.fan-club-3 .fl-row-content-wrap {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	div.fan-club-3 .column-desc .fl-module-content {
		margin-left: 20px;
		margin-right: 20px;
	}
	div.fan-club-3 .column-desc .fl-rich-text p span {
    	font-size: 16px !important;
	}
	div.fan-club-4 .fl-row-content-wrap {
		padding: 20px;
		padding-bottom: 45px;
	}
	div.fan-club-5 .mc4wp-fields-wrap {
		width: 100%;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-10 .fl-module-heading.column-header-large .fl-heading {
		font-size: 35px;
	}
	div.fan-club-6 .fan-club-6-col-1 {
		opacity: 0.1;
	}
	div.fan-club-6 .fan-club-6-col-2 {
		float: none;
		width: 100% !important;
		max-width: 100%;
		position: relative;
		z-index: 1;
	}
	div.fan-club-8 .fl-row-content-wrap {
		min-height: 26vh;
	}
	div.fan-club-9 .fan-club-9-col-1-main,
	div.fan-club-9 .fan-club-9-col-2-main {
		float: none;
		clear: both;
		max-width: 100%;
		width: 100% !important;
	}
	div.product-featured-1 .bx-wrapper .bx-controls {
		display: none;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 45px;
	}
	div.contest-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 32px;
	}
	div.contact-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 28px;
	}
	div.contact-form div.ginput_complex.ginput_container.gf_name_has_2 span {
		padding-right: 2px;
	}
	.news-featured-1 .fl-module.fl-module-heading .fl-heading {
		font-size: 60px;
	}
	.news-featured-2 .fl-col-content > .fl-module {
		width: 80%;
		left: 10% !important;
	}
	.footer-widgets .widget_nav_menu ul > li {
		margin-right: 15px;
	}
	.footer-widgets .copyright span {
		display: block;
	}
	.footer-widgets .copyright span.separator {
		display: none;
	}

}

@media only screen and (max-width: 560px) {

	.home-featured-1,
	.home-featured-2,
	.home-featured-3,
	.home-featured-4,
	.home-featured-5,
	.home .entry-content > .fl-builder-content,
	.home .footer-widgets {
		position: static;
		margin-bottom: 0;
	}
	div.home-featured-2 .fl-row-content-wrap,
	div.home-featured-3 .fl-row-content-wrap {
		padding-top: 50px;
    	padding-bottom: 50px;
	}
	.home-featured-1 .featured-bg-cover .fl-col-content,
	.home-featured-2 .featured-bg-cover .fl-col-content,
	.home-featured-3 .featured-bg-cover .fl-col-content {
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}
	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading {
		font-size: 35.5px;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 40px;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-heading {
		font-size: 50px;
	}
	div.fan-club-1 .fan-club-1-col-1 {
		margin-top: 40px;
	}
	div.fan-club-1.fl-row-full-height .fl-row-content-wrap {
    	min-height: 40vh;
	}
	div.fan-club-2 .fl-row-content-wrap {
		padding-top: 50px;
    	padding-bottom: 50px;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 32px;
	}
	div.fan-club-3 .fl-row-content-wrap {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading,
	div.fan-club-10 .fl-module-heading.column-header-large .fl-heading {
		font-size: 30px;
	}
	div.fan-club-5 .featured-button a .fl-button-text {
		padding: 15px 20px !important;
	}
	div.fan-club-5 .featured-button a .fa {
		margin-left: 10px;
	}
	div.fan-club-5 input[type="email"] {
		width: 78%;
	}
	div.fan-club-5 input[type="submit"] {
		width: 22%;
	}
	div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
		min-height: 23vh;
	}
	div.fan-club-9 div.column-header .fl-heading:after {
		display: none;
	}
	div.fan-club-9 div.column-header .fl-heading {
		font-size: 22px;
	}
	div.fan-club-9 .column-header .fl-heading .fl-heading-text {
		padding: 0;
	}
	div.product-featured-2 .parallax-back-layer .fl-col-content,
	div.product-featured-2 .parallax-front-layer .fl-col-content,
	div.product-featured-4 .parallax-back-layer .fl-col-content,
	div.product-featured-4 .parallax-front-layer .fl-col-content {
		display: none;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 32px;
	}
	div.contest-featured-1 .contest-featured-1-col-2 {
		width: 100% !important;
	}
	div.contest-featured-1 .contest-featured-1-col-2 .fl-module-content {
		margin: 40px;
		margin-top: 70px;
	}
	div.contest-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 38px;
	}
	div.contest-featured-5 .fl-module-heading.column-sub-header .fl-heading {
		font-size: 22px;
	}
	div.contest-featured-2 .column-desc .fl-module-content .fl-rich-text p,
	div.contest-featured-3 .column-desc .fl-module-content .fl-rich-text p,
	div.contest-featured-5 .fl-module-content .fl-rich-text p {
		font-size: 16px !important;
	}
	.contest-form .gform_wrapper .ginput_complex.ginput_container.has_first_name.no_middle_name.has_last_name span.name_first {
		margin-bottom: 20px;
	}
	.contest-form div.ginput_complex.ginput_container.gf_name_has_2 span {
		width: 100%;
		padding-right: 0;
	}
	.contest-form .gform_wrapper .top_label li.gfield.gf_left_half,
	.contest-form .gform_wrapper .top_label li.gfield.gf_right_half {
		width: 100% !important;
	}
	.contest-form div.gform_wrapper input[type="email"],
	.contest-form div.gform_wrapper input[type="text"],
	.contest-form div.gform_wrapper textarea {
		width: 100% !important;
	}
	.contest-form .gform_wrapper .gfield_date_dropdown_day,
	.contest-form .gform_wrapper .gfield_date_dropdown_month,
	.contest-form .gform_wrapper .gfield_date_dropdown_year {
		width: 30%;
	}
	div.contact-featured-2 .column-header-main.fl-module-heading .fl-heading {
		font-size: 25px;
	}
	.contact-form {
    	max-width: 100%;
	}
	.contact-form div.ginput_complex.ginput_container.gf_name_has_2 span {
		width: 49%;
	}
	.contact-form .gform_wrapper .top_label select.large {
		width: 100% !important;
	}
	.news-featured-1 .fl-col .fl-col-content {
    	margin-top: 70px !important;
    	margin-bottom: 40px !important;
	}
	.news-featured-1 .fl-module.fl-module-heading .fl-heading {
		font-size: 50px;
		line-height: 1;
	}
	.news-featured-2 .fl-col-content > .fl-module {
		width: 100%;
		left: 0 !important;
	}
	.footer-widgets .widget_nav_menu ul > li {
		margin-right: 10px;
	}
	.footer-widgets .widget_nav_menu .footer-nav-mini {
		margin-right: 5px;
	}

}

@media only screen and (max-width: 460px) {

	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading,
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 28px;
	}
	div.home-featured-2 .column-header-main.fl-module-heading .fl-module-content,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-module-content {
		margin-bottom: 20px;
	}
	div.home-featured-4 .fl-module-heading.column-header-main .fl-heading {
		font-size: 38px;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-heading {
		font-size: 40px;
	}
	div.fan-club-1.fl-row-full-height .fl-row-content-wrap {
		min-height: 38vh;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 26px;
	}
	div.fan-club-5 .featured-button a .fl-button-text {
		padding: 15px 20px !important;
	}
	div.fan-club-5 .featured-button a .fa {
		display: none;
	}
	div.fan-club-5 input[type="email"] {
		width: 100%;
	}
	div.fan-club-5 input[type="email"]::-webkit-input-placeholder {
		font-size: 16px;
	}
	div.fan-club-5 input[type="email"]:-moz-placeholder {
		font-size: 16px;
	}
	div.fan-club-5 input[type="email"]::-moz-placeholder {
		font-size: 16px;
	}
	div.fan-club-5 input[type="email"]:-ms-input-placeholder {
		font-size: 16px;
	}
	div.fan-club-5 input[type="submit"] {
		font-size: 16px;
		width: 100%;
		height: 48px;
		margin-top: 5px;
	}
	div.fan-club-8.fl-row-full-height .fl-row-content-wrap {
		min-height: 20vh;
	}
	div.fan-club-9 div.column-header .fl-heading {
		font-size: 22px;
	}
	div.fan-club-4 .fl-rich-text span,
	div.fan-club-4 .fl-rich-text p,
	div.fan-club-4 .fl-rich-text p span,
	div.fan-club-5 .fl-rich-text p,
	div.fan-club-5 .fl-rich-text p span,
	div.fan-club-9 .fl-rich-text p,
	div.fan-club-9 .fl-rich-text p span,
	div.fan-club-10 .fl-rich-text p,
	div.fan-club-10 .fl-rich-text p span {
		font-size: 16px !important;
	}
	div.product-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 25px;
	}
	div.fl-builder-content div.product-featured-1 .fl-slide .fl-slide-text h2 span {
		font-size: 20px !important;
	}
	div.product-featured-2 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-3 .fl-module-heading.column-header-main .fl-heading,
	div.product-featured-4 .fl-module-heading.column-header-main .fl-heading {
		font-size: 36px;
	}
	div.contest-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 28px;
	}
	div.contest-featured-4 .contest-featured-4-col-3 .fl-module-heading.contest-form-header .fl-heading {
		font-size: 24px;
	}
	div.contest-featured-5 .fl-module-heading.column-sub-header .fl-heading {
		font-size: 18px;
	}
	div.contest-featured-5 .fl-row-content-wrap {
		padding-top: 20px;
	}
	.contest-featured-2 .contest-featured-2-col-1,
	.contest-featured-2 .contest-featured-2-col-2,
	.contest-featured-2 .contest-featured-2-col-3,
	.contest-featured-2 .contest-featured-2-col-4 {
		width: 100% !important;
	}
	.contest-featured-2 .contest-featured-2-col-1 .fl-module-rich-text .fl-module-content,
	.contest-featured-2 .contest-featured-2-col-2 .fl-module-rich-text .fl-module-content,
	.contest-featured-2 .contest-featured-2-col-3 .fl-module-rich-text .fl-module-content,
	.contest-featured-2 .contest-featured-2-col-4 .fl-module-rich-text .fl-module-content,
	.contest-featured-5 .fl-module-rich-text .fl-module-content {
		margin-bottom: 0;
	}
	.news-featured-1 .fl-col .fl-col-content {
    	margin-top: 50px !important;
    	margin-bottom: 0 !important;
	}
	.news-featured-1 .fl-module.fl-module-heading .fl-heading {
    	font-size: 40px;
	}

}

@media only screen and (max-width: 370px) {

	div.home-featured-1 .home-featured-1-col-1 .column-header-1.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-2.fl-module-heading .fl-heading,
	div.home-featured-1 .home-featured-1-col-1 .column-header-3.fl-module-heading .fl-heading,
	div.home-featured-2 .column-header-main.fl-module-heading .fl-heading,
	div.home-featured-3 .column-header-main.fl-module-heading .fl-heading {
		font-size: 22px;
	}
	div.fan-club-1 .fl-module-heading.column-header-large .fl-heading {
		font-size: 32px;
	}
	div.fan-club-1.fl-row-full-height .fl-row-content-wrap {
		min-height: 30vh;
	}
	div.fan-club-2 .column-header-large.fl-module-heading .fl-heading {
		font-size: 22px;
	}
	div.fan-club-4 .fan-club-4-col-1 {
		width: 100% !important;
	}
	div.fan-club-5 .featured-button div.fl-module-content a {
		font-size: 15px !important;
	}
	div.fan-club-5 .featured-button a .fl-button-text {
		padding: 15px 15px !important;
		color: #fff !important;
		background: #ce288b;
	}
	div.fan-club-6 .featured-button div.fl-module-content a {
		font-size: 20px !important;
	}
	div.fan-club-4 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-6 .fl-module-heading.column-header-large .fl-heading,
	div.fan-club-9 .fl-module-heading.column-header-main .fl-heading {
		font-size: 32px;
	}
	div.contest-featured-2 .fl-module-heading.column-header-main .fl-heading {
		font-size: 22px;
		line-height: 1;
	}
	div.contest-featured-4 .contest-featured-4-col-3 .fl-module-heading.contest-form-header .fl-heading {
		font-size: 20px;
	}
	div.contest-featured-4 .featured-button {
		bottom: 65px;
		right: 10px;
	}
	div.contest-featured-4 .contest-featured-4-col-3 .featured-button a {
		font-size: 12px !important;
		border: 0 !important;
	}
	div.contest-featured-5 .fl-module-heading.column-header-main .fl-heading {
		font-size: 26px;
	}
	.contact-featured-1.fl-row-full-height .fl-row-content-wrap {
		min-height: 30vh;
	}
	.contact-form div.ginput_complex.ginput_container.gf_name_has_2 span {
		width: 100%;
	}
	.contact-form .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first {
		margin-bottom: 15px;
	}
	.footer-widgets .copyright {
		font-size: 10px;
	}
	.footer-widgets .copyright span:first-child {
		font-size: 8px;
	}

}

.mc4wp-alert.mc4wp-success {color:black !important;text-align: center;}