@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
/*BODY AND MAIN STYLES */
/* Mobile Layout: 480px and below. All others inherit unless overridden */ 
body {
    font-family: 'Mukta Mahee', sans-serif;
	margin-top: 0;
    background-image: url(../images/small-bg.jpg);
	background-color: #2f7bad;
	background-position:top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-size: 100%;
    font-size: 1em;
	font-weight: 400;
    line-height: 1.5;
    color: #333333;
}
@media only screen and (min-width: 481px) {
	body {
		background-image: url(../images/medium-bg.jpg);
	}
}
@media only screen and (min-width: 897px) {
	body {
		background-image: url(../images/large-bg.jpg);
		font-size: 1.1em;
		line-height: 1.55;
		background-size: cover;
		margin-top: 20px;
	}
}
video#videobg { 
	display: none;
}
@media only screen and (min-width: 1040px) {
	video#videobg { 
		display: block;
		position: fixed;
		top: 50%;
		left: 50%;
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		z-index: -100;
		transform: translateX(-50%) translateY(-50%);
		transition: 1s opacity;
	}
}
.topBar {
	background: #2da9bb;
	display: block;
	padding: 10px 0;
	color: #fff;
	font-weight: 400;
}
@media only screen and (min-width: 625px) {
	.topBar {
		padding: 5px 10px;
	}
}
/* Mobile Layout: 480px and below. All others inherit unless overridden */ 
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 94%;
	clear: none;
	float: none;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
	.gridContainer {
		width: 90.675%;
		clear: none;
		float: none;
		margin-left: auto;
	}
}
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	.gridContainer {
		width: 88.5%;
		max-width: 1232px;
		margin: auto;
		clear: none;
		float: none;
		margin-left: auto;
	}
}
header {
	background: #fff;
	padding: 10px 10px 0 10px;
}
/* Mobile Layout: 480px and below. All others inherit unless overridden */ 
.small-header {
    display: block;
}
.small-header p {
	margin: 0;
}
@media only screen and (min-width: 481px) {
	.small-header {
		display: none;
	}
}
.medium-header {
    display: none;
}
.medium-header p {
	margin: 0;
}
@media only screen and (min-width: 481px) {
	.medium-header {
		display: block;
	}
}
@media only screen and (min-width: 897px) {
	.medium-header {
		display: none;
	}
}
.large-header {
    display: none;
}
@media only screen and (min-width: 897px) {
	.large-header {
		display: block;
		border: 3px #2da9bb dotted;
		border-bottom: none;
		padding: 20px;
	}
	.large-header p {
		margin: 0;
	}
}
@media only screen and (min-width: 1042px) {
	.large-header {
		padding: 20px 35px;
	}
}
@media only screen and (min-width: 1350px) {
	.large-header {
		padding: 20px 50px;
	}
}
.siteLogo {
	float: none;
	margin: 60px 0 25px 0;
	text-align: center;
}
@media only screen and (min-width: 897px) {
	.siteLogo {
		float: left;
		text-align: left;
		margin: 25px 0 0 0;
		max-width: 250px;
	}	
}
@media only screen and (min-width: 997px) {
	.siteLogo {
		max-width: 300px;
	}	
}
@media only screen and (min-width: 1200px) {
	.siteLogo {
		max-width: 350px;
	}	
}
@media only screen and (min-width: 1250px) {
	.siteLogo {
		margin: auto;
		max-width: none;
	}	
}
.siteTitle {
	float: none;
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 1;
}
@media only screen and (min-width: 897px) {
	.siteTitle {
		float: right;
		margin: 35px 0 0;
	}	
}
.siteName {
	font-size: 3.5em;
	text-transform: uppercase;
	color: #4ea1ce;
	text-align: center;
    padding-bottom: 20px;
}
@media only screen and (min-width: 897px) {
	.siteName {
		font-size: 3.75em;
		text-align: left;
		padding-bottom: 0;
	}	
}
@media only screen and (min-width: 1097px) {
	.siteName {
		font-size: 4.25em;
	}	
}
@media only screen and (min-width: 1200px) {
	.siteName {
		font-size: 4.75em;
	}	
}
@media only screen and (min-width: 1450px) {
	.siteName {
		font-size: 5.25em;
	}	
}
.siteSlogan {
	font-size: 1.5em;
	color: #b8067e;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 20px;
}
@media only screen and (min-width: 897px) {
	.siteSlogan {
		font-size: 1.25em;
		margin-bottom: auto;
		text-align: left;
		line-height: 1;
	}	
}
@media only screen and (min-width: 1097px) {
	.siteSlogan {
		font-size: 1.40em;
	}	
}
@media only screen and (min-width: 1200px) {
	.siteSlogan {
		font-size: 1.55em;
	}	
}
@media only screen and (min-width: 1450px) {
	.siteSlogan {
		font-size: 1.75em;
	}	
}
/* Social Media */
.topNavSocial {
	float: left;
	padding: 10px 0;
}
@media only screen and (min-width: 897px) {
	.topNavSocial {
		float: right;
		padding: 25px 15px 0 0;
	}
}
@media only screen and (min-width: 1450px) {
	.topNavSocial {
		padding-right: 5%;
	}
}
.topNavSocial img {
  width: 19px;
}
.topNavSocial a {
  padding: 10px 5px;
}
@media only screen and (min-width: 325px) {
	.topNavSocial img {
	  width: auto;
	}
}
@media only screen and (min-width: 897px) {
	.topNavSocial a  {
	padding: 5px;
	}
}
/*social media*/
.facebook {
	background-image: url(/images/icon-facebook.png);
	background-repeat: no-repeat;
	background-position: center;
}
.facebook:hover {
	background-image: url(/images/icon-facebook-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.twitter {
	background-image: url(/images/icon-twitter.png);
	background-repeat: no-repeat;
	background-position: center;
}
.twitter:hover {
	background-image: url(/images/icon-twitter-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.pinterest {
	background-image: url(/images/icon-pinterest.png);
	background-repeat: no-repeat;
	background-position: center;
}
.pinterest:hover {
	background-image: url(/images/icon-pinterest-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.goodreads {
	background-image: url(/images/icon-goodreads.png);
	background-repeat: no-repeat;
	background-position: center;
}
.goodreads:hover {
	background-image: url(/images/icon-goodreads-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.instagram {
	background-image: url(/images/icon-instagram.png);
	background-repeat: no-repeat;
	background-position: center;
}
.instagram:hover {
	background-image: url(/images/icon-instagram-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.maillist {
	background-image: url(/images/icon-maillist.png);
	background-repeat: no-repeat;
	background-position: center;
}
.maillist:hover {
	background-image: url(/images/icon-maillist-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.bookbub {
	background-image: url(/images/icon-bookbub.png);
	background-repeat: no-repeat;
	background-position: center;
}
.bookbub:hover {
	background-image: url(/images/icon-bookbub-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.amazon {
	background-image: url(/images/icon-amazon.png);
	background-repeat: no-repeat;
	background-position: center;
}
.amazon:hover {
	background-image: url(/images/icon-amazon-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
.tiktok {
	background-image: url(/images/icon-tiktok.png);
	background-repeat: no-repeat;
	background-position: center;
}
.tiktok:hover {
	background-image: url(/images/icon-tiktok-over.png);
	background-repeat: no-repeat;
	background-position: center;
}
/*MOBILE MENU */
.js #menu, #menu { /*don't display the menu that builds the mobile menu ever */
		display:none;
	}
.slicknav_menu {
	display:none;
}
.slicknav_menu {
    font-size: 1em;
    background: none;
    padding: 5px;
}
.slicknav_nav {
    clear: both;
	font-family: 'Fira Sans', sans-serif;
	text-transform: uppercase;
	background-color: #2da9bb;
    color: #fff;
    margin: 0 10px;
    font-size: 1em;
}
.slicknav_btn {
	background-color: #2da9bb;
	margin-right: 5%;
}
.slicknav_nav li {
    border-top: 2px #fff dotted;
}
.slicknav_nav .slicknav_row:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
	color: #fff;
}
.slicknav_nav a:hover { 
	background: #2f8ec2;
	color: #fff;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.slicknav_nav a:visited {
	color: #fff;
}
.slicknav_nav .slicknav_item:hover {
	background: #2f8ec2;color: #fff;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}
.slicknav_menu .slicknav_menutxt {
    text-shadow: none;
}
.slicknav_menu .slicknav_icon-bar {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
@media screen and (max-width: 897px) { /*display the mobile menu now up to 897px */	
	.js .slicknav_menu {
		display:block;
	}
}
/*END OF MOBILE MENU */
/*START OF MAIN MENU */
.mainmenu {
	display:none;
}
@media only screen and (min-width: 897px) {
	.mainmenu {
		display: block;
		float: left;
	}
}
nav { 
	font-family: 'Fira Sans', sans-serif;
	text-transform: uppercase;
}
@media only screen and (min-width: 1332px) {
	nav { 
		padding-left: 25px;
	}	
}
nav ul {
  font-size: 0;
  margin: 0;
  padding: 0;
  font-weight: 500;
  z-index: 9999;
}
nav ul li {
  display: inline-block;
  position: relative;
  font-size: 16px;
}
nav ul li a {
  color: #fff;
  display: block;
  padding: 8px 10px;
  transition: 0.3s linear;
  text-decoration: none;
  letter-spacing: .85px;
}
@media only screen and (min-width: 940px) {
	nav ul li a {
	  padding: 8px 14px;
	}
	
}
nav ul li a:visited {
  color: #fff;
}
nav ul li a:hover, nav ul li a:active {
  color: #fff;
}
nav ul li:hover { 
	background: #4ea1ce; 
	color: #cde2eb;
}
nav ul li ul {
  display: none;
  position: absolute;
  width: 275px;
}
nav ul li ul li {
  display: block;
  font-size: 14px;
}
nav ul li ul li:first-child { 
	border-top: none; 
}
nav ul li ul li a {
  background: #4aa0b6;
  color: #fff;
  display: block;
  padding: 8px 10px 8px 15px;
}
nav ul li ul li a:hover { 
	background: #bd1189; 
	color: #fff;
}
.waves {
	float: none;
	text-align: center;
	padding: 5px;
}
@media only screen and (min-width: 897px) {
	.waves {
		display: none;
	}
}
@media only screen and (min-width: 1132px) {
	.waves {
		display: block;
		text-align: right;
		float: right;
		max-width: 20%;
	}
}
@media only screen and (min-width: 1332px) {
	.waves {
		max-width: none;
	}
}
article {
	background: #fff;
	padding: 0 10px;
}
.main-content {
    padding: 1% 5%;
    background-color: #fff;
    border-left: 3px #2da9bb dotted;
	border-right: 3px #2da9bb dotted;
}
@media only screen and (min-width: 481px) {
	.main-content {
		padding: 1% 5%;
	}
}
@media only screen and (min-width: 897px) {
	.main-content {
		padding: 3% 5%;
	}
}
.bottomContent {
	border-top: 3px #ce5aa2 dotted;
	padding: 20px 0 0;
	margin-top: 25px;
}
footer {
	background: #2da9bb;
	padding: 3px 10px 10px;
}
.main-footer {
	border: 3px #fff dotted;
	border-top: none;
    padding: 1% 5%;
    font-size: 80%;
	color: #fff;
	line-height: 145%;
}

/*END OF MAIN LAYOUT AND GENERAL STYLES */
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
.clearDiv {
	clear:both;
}
/*START OF CUSTOMIZATIONS */
/* Mobile Layout: 480px and below. All others inherit unless overridden */ 
h1, h2, h3, h4, h5, h6 {
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.5em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-weight: bold;
	font-family: 'Courgette', cursive;
}
h1 {
	font-size: 1.25em;
	color: #629CCC;
}
h2 {
	font-size: 1.25em;
	color: #AD0080;
}
h3 {
     font-size: 1.25em;
     color: #629CCC;
}
h4 {
	font-size: 1.2em;
	color: #629CCC;
}
h5 {
    ffont-size: 1.2em;
    color : #AD0080;
}
h6 {
    font-size: 1.1em;
    color : #999999;
}
@media only screen and (min-width: 897px) {
	h1 {
		font-size: 1.65em;
	}
	h2 {
		font-size: 1.85em;
    	margin-top: 40px;
	}
	h3 {
		 font-size: 1.4em;
	}
	h4 {
		font-size: 1.3em;
	}
	h5 {
		font-size: 1.3em;
	}
}
a  
{
  color : #2f8ec2;
}
a:visited
{
  color : #2f8ec2;
}
a:hover  
{
  color : #b71d80;
}
a.copyright {
	text-transform: uppercase;
	color:#fff;
	padding: 5px;
	text-decoration: none;
}
a.copyright:visited {
	color:#fff;
}
a.copyright:hover {
	color:#fff;
	background: #4ea1ce; 
}
.centerText {
	text-align: center;
}
.col2thirdleft {
	float: none;
	width: 98%;
	padding: 0 1%;
	margin: auto;
}
@media only screen and (min-width: 1097px) {
	.col2thirdleft {
		float: left;
		width: 65%;	
	}
}
.col1thirdright {
	float: none;
	width: 98%;
	padding: 0 1%;
	margin: auto;
}
@media only screen and (min-width: 1097px) {
	.col1thirdright {
		float: right;
		width: 30%;	
	}
}
.col2thirdright {
	float: none;
	width: 98%;
	padding: 0 1%;
	margin: auto;
}
@media only screen and (min-width: 1097px) {
	.col2thirdright {
		float: right;
		width: 65%;	
	}
}
.col1thirdleft {
	float: none;
	width: 98%;
	padding: 0 1%;
	margin: auto;
}
@media only screen and (min-width: 1097px) {
	.col1thirdleft {
		float: left;
		width: 30%;	
	}
}
.col1halfright {
	float: none;
	width: 98%;
	padding: 0 1%;
	margin: auto;
}
@media only screen and (min-width: 897px) {
	.col1halfright {
		float: right;
		width: 47%;
		padding: 0;
	}
}
.col1halfleft {
	float: none;
	width: 98%;
	padding: 0 1%;
	margin: auto;
}
@media only screen and (min-width: 897px) {
	.col1halfleft {
		float: left;
		width: 45%;
		padding: 0 2.5% 0 0;
	}
}
/*home Page*/
.homeOpening {
	font-family: 'Courgette', cursive;
	font-size: 1.5em;
	color: #629CCC;
}
.recipe {
	margin: 25px 0;
	max-width: 180px;
    background: #fff;
    padding: 7px;
    -moz-box-shadow: 0 0 15px #ccc;
    -webkit-box-shadow: 0 0 15px #ccc;
    box-shadow: 0 0 15px #ccc;
}
@media only screen and (min-width: 347px) {
	.recipe {
		max-width: 225px;
	}	
}
@media only screen and (min-width: 397px) {
	.recipe {
		max-width: 250px;
	}	
}
@media only screen and (min-width: 697px) {
	.recipe {
		padding: 10px;
		margin: 35px 20px;
	}	
}
.readerGuide {
	margin: 25px 0;
	padding: 0 10px;
	border: 5px #4986BE dotted;
	font-family: 'Courgette', cursive;
	font-size: 1.35em;
	color: #629CCC;
}
@media only screen and (min-width: 497px) {
	.readerGuide {
		margin: 25px;
		padding: 0 15px;
		border: 7px #4986BE dotted;
		font-size: 1.45em;
	}
}
@media only screen and (min-width: 1232px) {
	.readerGuide {
		margin: 35px 10px 35px 10px;
		padding: 0 20px;
		border: 10px #4986BE dotted;
		font-size: 1.45em;
	}
}
button {
    padding: 10px 15px;
    background:#4B88C0;
    border: none;
	color: #fff;
     -moz-border-radius: 5px;
    border-radius: 5px;
	font-size: .825em;
    text-transform: uppercase;
	text-align: center;
	font-weight: 400;
	margin: 10px 5px 10px 0;
	cursor: pointer;
}
#promovideo video {
  width: 100%    !important;
  height: auto   !important;
}	
#cookbook {
	display: none;
}
button.pink {
    padding: 15px 20px;
    background:#CF59A3;
    border: none;
	color: #fff;
     -moz-border-radius: 5px;
    border-radius: 5px;
	font-size: 1em;
    text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	margin: 20px auto;
	cursor: pointer;
}
button:hover {
    background:#2da9bb;
}
img.buyBtn {
	padding: 5px 6px;
}
/*Flora Contact Form */
/* @form label + field :: field class is useful for validation 
---------------------------------------------------------------------- */
.floraforms .field-icon i { 
	color:#CF59A3; 
}
.floraforms .field-label em { 
	color:#CF59A3;
}
.floraforms .flo-input:hover,
.floraforms .flo-textarea:hover,
.floraforms .flo-select > select:hover,
.floraforms .flo-selectmulti select:hover, 
.floraforms .flo-input:hover ~ .flo-hint,
.floraforms .flo-file .file-input:hover + .flo-input,
.floraforms .flo-textarea:hover ~ .flo-hint{
	border-color: #CF59A3;
}
.floraforms .flo-input,
.floraforms .flo-select,
.floraforms .flo-textarea,
.floraforms .flo-select > select,
.floraforms .flo-selectmulti select{
	border: 1px solid #dfd8d7;
}
.floraforms .btn-themed {  background-color: #CF59A3;  }
.floraforms .btn-themed:hover,
.floraforms .btn-themed:focus { background-color: #2DA9BB; }
.floraforms .btn-themed:active{ background-color: #dfd8d7; }

.floraforms .alert-info { color:#CF59A3; background-color: #fff; }
.floraforms .alert-success { color:#fff; background-color: #CF59A3; }
.floraforms .alert-warning { color: #fff; background-color: #CF59A3; }
.floraforms .alert-error { color:#CF59A3; background-color: #fff; }

.floraforms .flo-input:focus,
.floraforms .flo-textarea:focus,
.floraforms .flo-select > select:focus,
.floraforms .flo-selectmulti select:focus{ border-color: #CF59A3; color: #333; }
.floraforms .flo-selectmulti select:focus, 
.floraforms .flo-input:focus ~ .flo-hint,
.floraforms .flo-textarea:focus ~ .flo-hint, 
.floraforms .flo-file .file-input:focus + .flo-input{ border-color: #CF59A3; }
.floraforms .flo-select > select:focus + .arrow{ color:#CF59A3; }

.floraforms .state-error .flo-input,
.floraforms .state-error .flo-textarea,
.floraforms .state-error.flo-select > select,
.floraforms .state-error.flo-selectmulti > select,
.floraforms .state-error input:hover + .flo-checkbox, 
.floraforms .state-error input:hover + .flo-radio,
.floraforms .state-error input:focus + .flo-checkbox, 
.floraforms .state-error input:focus + .flo-radio,
.floraforms .state-error .flo-checkbox, 
.floraforms .state-error .flo-radio{
	background:#fdfbfa;
	border-color:#CF59A3;
}
.floraforms .captcode{
	background: #fff;
   	border: 1px solid #dfd8d7;
	margin: 10px 0;
}
@media only screen and (min-width: 898px) {
	.floraforms .captcode{
		margin: 0;
	}	
}
.floraforms .refresh-captcha i{ 
	color: #CF59A3; 
}
.floraforms input:checked + .flo-checkbox, 
.floraforms input:checked + .flo-radio{ 
	border: 3px solid #81a7ea; 
	background:#2DA9BB; 
}
.floraforms input:hover + .flo-radio,
.floraforms input:hover + .flo-checkbox,
.floraforms input:focus + .flo-checkbox, 
.floraforms input:focus + .flo-radio{
    border-color: #2DA9BB;
}
/* @validaion - success state 
-------------------------------------------------- */
.floraforms .state-success .flo-input,
.floraforms .state-success .flo-textarea,
.floraforms .state-success.flo-select > select,
.floraforms .state-success.flo-selectmulti > select{
	background:#fdfbfa;
	border-color:#2DA9BB;
}
.floraforms .state-success.flo-select .arrow {
    color: #CF59A3;
}
/* @toggle switch normal state 
--------------------------------------------------------------- */
.floraforms .flo-switch > input:checked + .switch-label {
    border-color:#2DA9BB;
	background: #2DA9BB; 
}
/* @toggle switch normal state focus 
--------------------------------------------------------------------------------- */
.floraforms .flo-switch > input:checked:focus + .switch-label { 
	background: #2DA9BB; 
	border-color: #2DA9BB; 
}
.requiredText {
	color:#CF59A3;
	font-weight: bold;
}