/*


Theme Name: Lucidity Festival 2020: Regeneration Earth
Author: Alicia St Rose
Author URI: https://intrepidrealist.com/
Description: Custom Theme for Lucidity Festival 2020: Regeneration Earth
Version: 1.0
Text Domain: lucidity-2020
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/




/** Montserrat Light **/
@font-face {
    font-family: "Montserrat";
    font-weight: 300;
    font-style: normal;
    src: url("fonts/montserrat/Montserrat-Light.woff") format('woff2');
    src: url("fonts/montserrat/Montserrat-Light.woff") format('woff');
}

/** Montserrat Light-Italic **/
@font-face {
    font-family: "Montserrat";
    font-weight: 300;
    font-style: italic;
    src: url("fonts/montserrat/Montserrat-LightItalic.woff") format('woff2');
    src: url("fonts/montserrat/Montserrat-LightItalic.woff") format('woff');
}

/** Montserrat Medium **/
@font-face {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    src: url("fonts/montserrat/Montserrat-Medium.woff") format('woff2');
    src: url("fonts/montserrat/Montserrat-Medium.woff") format('woff');
}

/** Montserrat Medium-Italic **/
@font-face {
    font-family: "Montserrat";
    font-weight: 500;
    font-style: italic;
    src: url("fonts/montserrat/Montserrat-MediumItalic.woff") format('woff2');
    src: url("fonts/montserrat/Montserrat-MediumItalic.woff") format('woff');
}

/** Montserrat Regular **/
@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    src: url("fonts/montserrat/Montserrat-Regular.woff") format('woff2');
    src: url("fonts/montserrat/Montserrat-Regular.woff") format('woff');
}

/** Montserrat Regular-Italic **/
@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    font-style: italic;
    src: url("fonts/montserrat/Montserrat-Italic.woff") format('woff2');
    src: url("fonts/montserrat/Montserrat-Italic.woff") format('woff');
}

@font-face {
    font-family: 'la_chatte__mamanregular';
    src: url('fonts/la_chatte_a_maman-webfont.woff') format('woff2'),
         url('fonts/la_chatte_a_maman-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background-color: #081306;
	background-image: /*linear-gradient(to bottom, transparent 0%, #081306 50%, #1d2c01 100%),*/ url('images/greenery-bg.jpg');
	background-position: top center, center 115px ;
	background-repeat: no-repeat;
}
body.home {
	background-position: top center, center 346px;
}
body.single-3d-artist,
body.post-type-archive-3d-artist,
body.archive,
body.page-id-14975,
body.page-template-page-short-header,
body.page-template-page-stages,
body.page-template-page-schedule,
body.single-stage,
body.single-musician,
body.single-workshop,
body.single-wisdom,
body.single-vendor,
body.single-healer,
body.single-performer,
body.single-artist,
body.single-food-vendor {
	background-color: #081306;
	background-image: /*linear-gradient(to bottom, transparent 0%, #081306 50%, #1d2c01 100%),*/ url('images/greenery-bg.jpg');
	background-position: top center, center 115px ;
	background-repeat: no-repeat;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #fffdf3;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-size: 1rem;
	line-height: 1.5em;
	font-weight: 300;
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom: .5em;
	color: #ffdc86;
	font-family: 'la_chatte__mamanregular';
	line-height: .7;
	font-weight: 200;
	letter-spacing: .01em;
}

h1 {
	font-size: 4.5rem;
}
h2 {
	font-size: 3.75rem;
}
h3 {
	font-size: 3rem;
}
h4 {
	font-size: 2rem;
}
h5 {
	font-size: 1rem;
}
h6 {
	font-size: .75rem;
}
h1.montserrat,
h2.montserrat,
h3.montserrat,
h4.montserrat,
h5.montserrat,
h6.montserrat,
.page-id-10888 h2 {
	margin-bottom: .7em;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.1;
	letter-spacing: 0;
}
h1.montserrat {
	font-size: 2.5rem;
}
h2.montserrat,
.page-id-10888 h2 {
	font-size: 2rem;
}

h3.montserrat {
	font-size: 1.75rem;
}
h4.montserrat {
	font-size: 1.5rem;
}
h5.montserrat {
	font-size: 1rem;
}
h6.montserrat {
	font-size: .75rem;
}
.entry-content h2,
.village-text h2 {
	font-size: 2rem;
	margin-bottom: .7em;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.1;
}
p {
	margin-bottom: 1em;
	font-size: 1.125rem;
}
b, strong {
	font-weight: 400; 
}
.bamboo-bg b,
.bamboo-bg strong {
	font-weight: 600;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
	padding: 0 0 0 15px;
	font-size: 24px;
	border-left: 2px solid #9A4372;
	color: #7B3D5F;
}
blockquote cite {
	font-size: 20px;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #50450c;
	border: 0;
	height: 2px;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	clear: both;
}
ul, ol {
	margin: 0 0 1.5em 1em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	
}
ol li {
	margin-bottom: 1.5em!important;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	vertical-align: bottom;
}
.seven-image.seven-flexitem img,
.page-template-page-realm-cornerstone img,
.page .site-content img {
	box-shadow: 0 0 30px rgb(54, 60, 17);
}
.page.page-template-page-sponsors .site-content img {
	box-shadow: none;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
/*.wp-block-button__link:active, .wp-block-button__link:focus, .wp-block-button__link:hover, .wp-block-button__link:visited*/

#courseweek-call-section #mc_embed_signup input[type="submit"],
a.wp-block-button__link,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-block;
	width: auto;
	margin-top: 20px;
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .03em;
  background: linear-gradient(to top, #ff9500 0%, #ffcc5d 100%);
  color: #340019;
  cursor: pointer;
  border-radius: 60px;
  border: none;
  text-shadow: none;
  padding: 10px 13px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#eeeeee')";
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#eeeeee');
  margin: 10px;
  margin-left: 0;
  margin-right: 0;
  vertical-align: middle; 
}
button a,
button a:hover {
	color: #340019;
	font-weight: 400;
}
button a:visited,
.wp-block-button__link:visited{
	color: #340019;
}
.bamboo-bg button {
	box-shadow: 0 0 1px brown;
}
.quicktags-toolbar input[type="button"],
.wp-switch-editor {
  color: #555!important;  
}

input[type="submit"] {
-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}
.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: linear-gradient(to top, #ffcc5d 0%, #ff9500 100%);
  color: #340019;
  /*border: 3px solid #c73b45;*/
}
.button:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: none;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
   color: #575454;
}

input:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 18- */
   color: #575454;  
}

input:-moz-placeholder,
textarea:-moz-placeholder {  /* Firefox 19+ */
   color: #575454;  
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {  
   color: #575454;  
}

input::placeholder,
textarea::placeholder {
  color: #575454;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {/* for Chrome */
  color: inherit;
  color: #575454;
}
/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	text-decoration: none;
	color: #f3a83e;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	line-height: 1.1em;
}
a:visited {
	color: #f3a83e;
}

a:hover,
a:focus,
a:active {
	color: #ffdc86;
	border: none;
	box-shadow: none;
}
.archive .archive-terms a {
	color: #f3a83e;
}
.archive .archive-terms a:hover,
.archive .archive-terms a:focus,
.archive .archive-terms a:active {
	color: #ffdc86;
}
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation li.button {
	margin-top: 0;
	padding: 0;
	background: #c73b45;
	color: #fff;
}
#site-navigation.main-navigation li.button a {
	padding: 7px 10px 6px;
}
.main-navigation li.button:hover {
	background: #daedda;
}
.main-navigation a {
	display: block;
	text-decoration: none;
	font-weight: 300;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
	color: #daedda;
}

/* Small menu */
.menu-toggle {
	display: none;
}
@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: none;
	}

	.main-navigation ul {
		display: none;
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}
.left {
	float: left;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.1em;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
 --------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

#black-studio-tinymce-3 .widget-title {
	text-align: center;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.site-branding,
.site-info,
#primary,
#sub-content, 
.section-inner {
	margin: 0 4.5%;
}
.home #primary,
.page-template-page-villages #primary,
.page-template-page-course-overview #primary {
	width: 100%;
	margin: 0;
}
#header-wrapper {
  position: relative;
  z-index: 101;
  width: 100%;
  height: 115px;
  background: #1a210b;
}
.site-title,
.site-description {
	margin: 0 auto;
	text-indent: -10000px;
}
.site-title {
	width: 150px;
	height: 94px;
	margin-top: 10px;
}
.site-title a {
	display: block;
	width: 150px;
	height: 94px;
	background: url('images/logo-lime-smaller.png') 0 0 no-repeat;
}
.site-description {
	display: none;
}
.header-image {
	width: 100%;
  vertical-align: bottom;
}
.single-3d-artist .header-image,
.post-type-archive-3d-artist .header-image,
.archive .header-image,
.page-id-14975 .header-image,
.page-template-page-short-header .header-image,
.page-template-page-stages .header-image,
.page-template-page-schedule .header-image,
.single-stage .header-image,
.single-musician .header-image,
.single-workshop .header-image,
.single-wisdom .header-image,
.single-vendor .header-image,
.single-healer .header-image,
.single-performer .header-image,
.single-artist .header-image,
.single-food-vendor .header-image {
	height: 45px;
}
.header-image #circles-container .circle-container:first-of-type,
.header-image #circles-container .circle-container:last-of-type {
		display: none;
	}
.header-image .circle-container.mobile,
.header-image .circle-container {
  width: auto;
}
.header-image .circle-container.mobile {
	margin-top: -10px;
}
.home .header-image .circle-container.mobile {
	padding-top: 60px;
}
.header-image .circle {
  border-radius: 50%;
  background-color: rgba(255, 170, 232, 0.27);
  background-color: rgba(255, 221, 0, 0.27);
  width: 300px;
  height: 300px;
  position: absolute;
  opacity: 0;
  animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}

.shadow {
	display: none;
}
#content-inner {
	margin-bottom: 50px;
	overflow: visible;
}
.home #content-inner {
	margin-top: 0;
	margin-bottom: 0;
}
#primary {
	position: relative;
	overflow: visible;
}
#secondary p {
	font-size: 16px;
}
#colophon {
	font-size: 14px;
	background: #452536;
	text-align: center;
	color: #808080;
}
#colophon .site-info {
	padding: 10px 0;
	color: #bec369;
}
#colophon a {
	color: #f3a83e;
}
#colophon a:hover {
	color: #40b2ab;
}
.share-buttons {
	margin-top: 20px;
}
.share-buttons img {
	vertical-align: middle;
	opacity: .3;
}
.share-buttons img:hover {
	opacity: .5;
}
span.bold {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #bec369;
}
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	/*margin: 0 0 1.5em;*/
}
.page-template-page-villages .hentry {
	margin-bottom: 0;
}
.entry-title,
.page-title,
.archive-title,
.page-id-10712 h2 {
	text-align: center;
}
.page-id-68042 .entry-title {
	display: none!important;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.entry-summary .clear {
	margin-bottom: 15px;
  clear: both
}
.post-navigation {
	margin: 0 4.5%;
	overflow: auto;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.patterned-background {
	background: url('images/body-spiral-bg-yellow.jpg') 100px center #17282f;
}
/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}

/*==== responsive image grids ===*/
	
	#portal-thumbs {
		display: block;
	}
	
	#portal-thumbs {
		margin-top: 25px;
		margin-left: -6.25%;
		text-align: center;
		/*max-width: 1032px;*/
	}

	#portal-thumbs.rig li {
		position: relative;
		display: inline-block;
		height: auto;
		max-width: 100%;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	#portal-thumbs.rig li {
		margin: 0 0 2.5% 6.25%;
	}
	
	#portal-thumbs.rig li span {
		display: block;
		position: absolute;
		width: 100%;
		bottom: 140px;
		left: 0;
		margin: 0 auto;
		padding: 10px 0;
		text-align: center;
		font-size: 21px;
		font-weight: 700;
		color: #e4ebbe;
		background: #94515d;
		border-radius: 25px;
		line-height: 1em;
		opacity: 1;
		text-transform: uppercase;
	}
	#portal-thumbs img {
		border-radius: 100%;
		box-shadow: 0px 0px 20px #d6f6ea, 0px 0px 20px #d6f6ea;
	}
	#portal-thumbs img.closed {
		opacity: .7;
	}
	#course-icons img {
		max-width: 100%;
		height: auto;
	}
	#portal-thumbs img:hover {
		box-shadow: 0px 0px 25px #fff, 0px 0px 25px #fff;
	}
	#portal-thumbs.rig.columns li {
		text-align: center;
		vertical-align: top;
	}
	
/*--------------------------------------------------------------
12.3 Font Awesome
--------------------------------------------------------------*/
.yellow {
	color: #ffdc86;
}	
/*--------------------------------------------------------------
12.4 Custom Templates
--------------------------------------------------------------*/

/* === Coming Soon Page Template === */
/*.page-template-page-coming-soon #header-wrapper {
	display: none;
}*/
.page-template-page-coming-soon #primary {
	margin: 0;
}
body.page-template-page-coming-soon {
	background: url('images/coming-soon-landing-page-bckgrd-mobile.jpg') center 100px #090A0F no-repeat ;
}
#coming-soon-intro-section {
	margin-top: 175px;
}
#coming-soon-intro-section .intro-header,
#coming-soon-intro-section .intro-text p {
	color: #f3ffff;
	text-shadow: 0px 5px 10px #2f1c4d;
}
#coming-soon-intro-section .intro-header {
	font-size: 1.75rem;
	font-weight: 300;
}
#coming-soon-intro-section .intro-text {
	padding: 0;
}
#coming-soon-intro-section .intro-text p {
	text-align: center;
}

.coming-soon-featured-content {
	text-align: center;
}
.coming-soon-featured-heading {
	font-size: 2rem;
	color: #803162;
	font-weight: 300;
}

/* === Buy Tickets Page Template === */
.page-id-10883 #site-navigation {
	display: none;
}
/* === Home Page Template === */

.header-image img {
	width: 100%;
}

.home .section-inner {
	/*padding: 20px 0;*/
}
.date-location-inner.section-inner {
	padding-top: 50px;
	padding-bottom: 0;
}
#home-intro-section {
	padding: 0;
	text-align: center;
}
.intro-inner.section-inner {
	padding-top: 0;
}
.home-section-heading,
.home-featured-content h2 {
	margin-bottom: .3em;
	font-size: 4rem;
	color: #bec369;
	text-align: center;
	letter-spacing: .01em;
}
.intro-header span {
	font-size: 2rem;
}
.intro-text p {
  font-size: 1.25rem;
}
#video-section {
	background: url('images/bamboo-bckgrnd.jpg');
	padding: 25px 0;
}
#video-section .home-section-heading,
.bamboo-bg {
	color: #3c1606;
	text-shadow: 0 1px #fffff7;
}
#video-section .home-section-heading,
.bamboo-bg {
	font-weight: 400;
} 
#video-section img {
	box-shadow: 0 0 10px #460f0f;
}
#blog-call-section {
	background: #1d2c01;
	border-top: 2px solid #50450c;
  border-bottom: 2px solid #50450c;
}
#blog-call-section .blog-call-inner {
	padding-top: 50px;
	padding-bottom: 50px;
	background: url('images/dream-journal-faint-bg.png') bottom right no-repeat;
} 
/*.content-1 .button {
	margin-top: .75em;
	margin-bottom: 1.5em;
  display: inline-block;
}*/
#home-call-outs-section {
	border-bottom: 2px solid #e09a8e;
}
.call-out-block {
	padding-top: 35px;
	text-align: center;
	flex-grow: 1;
	min-height: 300px;
}
.call-out-heading {
	color: #b95a3f;
	/*font-family: 'Montserrat', sans-serif;*/
	font-size: 26px;
}
.call-out-block p {
	font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  text-shadow: 0 0 3px #f8ac5f;
}
.call-faqs {
	background: url('images/faq-bg.png') bottom center no-repeat;
}
.call-leave-it-better {
	background: url('images/leave-it-better-bg.png') bottom center no-repeat;
}
.call-community-site {
	background: url('images/community-bg.png') bottom center no-repeat;
}
.featured-section-1 {
	overflow: auto;
	background: url('images/realm-panel-bg.jpg');
	border-bottom: 3px solid #bf3e0d;
}
.home-featured-content {
	margin: 0 3.5%;
}
.featured-section-1 .home-featured-heading {
	font-size: 36px;
	color: #fbf8ef;
  text-shadow: 0px 0px 10px #561616;
}
.featured-section-1 .featured-content-text p {
	font-size: 21px;
	font-family: 'Montserrat', sans-serif;
}
.content-1 span {
	font-family: 'Montserrat', sans-serif;
	text-shadow: 0px 0px 5px #f7e7ba;
}

.content-1 .featured-content-text {
	margin-top: 15px;
}
#courseweek-call-section {
	padding-top: 25px;
	background: #f8cf87;
	overflow: auto;
}
.courseweek-call-inner {
	padding: 0 0 420px;
	background: url('images/courseweek-home-panel-bg.jpg') bottom center no-repeat;
	overflow: auto;
}
/* === Participant Archive Templates === */
.participant-archive li {
	  /*width:100%;*/
    max-width: 100%;
    min-height: 360px;
    margin: 14px 0 20px;
    background: url('images/realm-spiral-bg.jpg') center -200px no-repeat;
    border-radius: 5px 5px 15px 15px;
    /* border: 4px solid #e8ac50; */
    text-align: center;
}
.participant-archive img {
	display: block;
	width: 100%;
  margin-bottom: 10px;
	border-radius: 5px 5px 0 0;
  border: 3px solid #3b501e;
}
.participant-archive img:hover {
	/*box-shadow: 0px 0px 25px #fff, 0px 0px 25px #fff;*/
}
.participant-archive-title {
	margin-bottom: .5rem;
}
.participant-archive {
	list-style: none;
	margin-left: 0;
	text-align: center;
}

.participant-archive h3 {
	/*width: 260px;*/
	margin: 0 auto;
	padding: 7px 8px;
	font-size: 22px;
	text-transform: none;
	font-weight: normal;
}
h3.long-name {
	font-size: 20px;
}
/*Custom Particpant & Vendor Archive Navigation */
.archive-terms {
	margin: 0 0 30px;
	list-style: none;
	font-size: 20px;
}
.archive-vendor .archive-terms,
.taxonomy-vendor-type .archive-terms {
	margin: 0 0 15px;
}
.archive-terms li {
	display: inline-block;
	margin: 0 25px 5px 0;	
}
.archive-terms li.current a {
	font-family: 'Montserrat', sans-serif; 
	color: #ffdc86;
}

.post-type-archive-healer .participant-archive li.healer-category-oracle {
	display: none!important;
}
/*=== Vendor List ===*/

#vendor-list .food-vendor {
	overflow: auto;
	padding-bottom: 15px;
	border-bottom: 2px solid #DEC6DA;
}
#vendor-list .food-vendor:last-child {
	border: none;
}
.attachment-food-vendor {
	width: 100%;
	max-width: 300px;
}

/*=== Participant Single ===*/
/*.single-workshop #content,
.single-artist #content,
.single-healer #content,
.single-installation {
	background: url('images/intro-bg-lite.jpg') center 100px repeat-x #FEEBD6;
}*/

.participant-meta.flex-item {
	max-width: 700px;
	margin: 0 auto 25px;
}

.participant-meta-inner {
	padding-bottom: 15px;
	background: url(images/realm-spiral-bg.jpg) center 100px no-repeat;
  	border-radius: 5px 5px 15px 15px;
  	/* border: 4px solid #e8ac50; */
  	text-align: center;
 }

.participant-meta img {
  border-radius: 5px 5px 0 0;
  border: 3px solid #3b501e;
}
.participant-meta .social {
	min-height: 25px;
}
.participant-wrapper .entry-title {
	text-align: left;
}
.singular-artist .clear {
	clear: both;
	}
.details {
	/*position: relative;*/
	clear: both;
}
.social-icons {
	height: 33px;
	margin: 0;
}
.participant {
	margin-bottom: 20px;
}
.entry-content .social {
	padding-top: 1.5em;
	clear: both;
	text-align: center;
}
.social h3 {
	font-size: 1.5rem;
	margin-bottom: .4rem;
}
.entry-content .social-icons li {
	display: inline-block;
	width: 33px;
	height: 33px;
	margin: 0 5px 0 0;
	list-style: none;
	text-indent: -9999px;
}
.entry-content .social-icons li a {
	display: block;
	width: 33px!important;
	height: 33px;
	background-image: url('images/social-icons-dark.png');
}
.entry-content .social-icons li#site-link a {
	background: url('images/www-icon.png') 0 top;
}
.entry-content .social-icons li#twitter a {
	background-position: 0 top;
}
#subcontent .social-icons li#twitter a {
	background-position: 0 bottom;
}
.entry-content .social-icons li#facebook a {
	background-position: 198px top;
}
#subcontent .social-icons li#facebook a {
	background-position: 198px bottom;
}
.entry-content .social-icons li#instagram a {
	background-position: 165px top;
}
#subcontent .social-icons li#instagram a {
	background-position: 165px bottom;
}
.entry-content .social-icons li#myspace a {
	background-position: 33px top;
}
.entry-content .social-icons li#youtube a {
	background-position: 132px top;
}
.entry-content .social-icons li#vimeo a {
	background-position: 66px top;
}
.entry-content .social-icons li#soundcloud a {
	background-position: 99px top;
}
.entry-content .social-icons li#site-link a:hover {
	background-position: 0 -33px;
}
.entry-content .social-icons li#twitter a:hover {
	background-position: 0 bottom;
}
#subcontent .social-icons li#twitter a:hover {
	background-position: 0 top;
}
.social-icons li#facebook a:hover {
	background-position: 198px bottom;
}
#subcontent .social-icons li#facebook a:hover {
	background-position: 198px top;
}
.entry-content .social-icons li#instagram a:hover {
	background-position: 165px bottom;
}
#subcontent .social-icons li#instagram a:hover {
	background-position: 165px top;
}
.entry-content .social-icons li#myspace a:hover {
	background-position: 33px bottom;
}
.entry-content .social-icons li#youtube a:hover {
	background-position: 132px bottom;
}
.entry-content .social-icons li#vimeo a:hover {
	background-position: 66px bottom;
}
.entry-content .social-icons li#soundcloud a:hover {
	background-position: 99px bottom;
}
.scheduled-workshops {
	/*text-align: center;*/
}
.workshop-list li {
	margin-bottom: 20px;
	padding: 20px 0;
	border-bottom: 2px solid #50450c;
}
.workshop-list li:last-child {
	border: none;
}
.workshop-list li p:last-of-type {
	margin-bottom: 0;
}	
.workshop-lecture {
	margin-bottom: 20px;
	border-bottom: 1px solid #50450c;
}	
.workshop-lecture:last-of-type {
	border: none;
}	
.duration {
	color: #bec369;
}
.offering-description {
	padding-top: 25px;
  border-top: 2px solid #50450c;
  /*text-align: center;*/
  clear: both;
}
.offering-description ul,
#other-offerings ul,
#festival-locations ul,
.scheduled-workshops ul {
	list-style: none;
	margin: 0 0 30px;
}
.offering-description p {
	text-align: left;
}
span.schedule-link a {
	font-weight: 600;
}
.event-description {
	margin-top: 15px;
	font-size: 17px;
}
.media {
	padding: 30px 0;
	/*border-bottom: 2px solid #ff989f;*/
	text-align: center;		
}
.single-workshop .media {
	border-top: 2px solid #50450c;
}

.media iframe {
	display: block;
	margin: 0 auto 20px;
}
#other-offerings {
	padding: 30px 0 0;
	border-bottom: 2px solid #50450c;
}
#other-offerings h3,
.healing-description-title,
.festival-locations-title,
.presentation-category,
.workshop-event-title {
	font-family: 'Montserrat', sans-serif;
	text-transform: none;
	font-size: 25px;
}
.festival-locations-title {
	text-align: center;
}
.workshop-event-title {
	margin-bottom: 5px;
}
#festival-locations {
	margin: 20px 0px;
	padding-top: 20px;
	text-align: center;
	border-bottom: 2px solid #50450c;
}
.single-workshop #festival-locations {
	border-top: 2px solid #50450c;
}
.lineage {
	margin-bottom: 20px;
	border-bottom: 2px solid #50450c;
}

/* === Realm Page Templates === */

.attachment-totem-icon {
	display: inline-block;
	vertical-align: middle;
}
.single-village-title,
.realm-heading {
	text-align: center;
}
.postid-15899 .single-village-title {
	text-indent: inherit;
	text-align: center;
	height: auto;
}
#facebook-community {
	padding: 20px;
	overflow: auto;
}
#facebook-community a {
	color: #fff;
	text-decoration: underline;
}
.attachment-village-fb-image {
	float: left;
	margin-right: 1em;
	border: 4px solid #fff;
}
.facebook-callout {
	line-height: 1.2em;
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
}
#facebook-community,
#facebook-community h3,
#facebook-community h4 {
	color: #fff;
}

#connected-environments {
  margin-top: 25px;
  padding: 0;
}
#connected-environments ul {
	margin: 30px 0 0;
	list-style: none;
}
#connected-environments ul li {
	min-height: 230px;
	padding: 25px 0;
	clear: both;
	border-bottom: 1px solid #efb9b5;
}
#connected-environments ul li h4 {
	text-align: center;
}
#connected-environments ul li:last-of-type {
	border: none;
}
.attachment-stage-thumb {
	display: block;
	width: 250px;
	margin: 0 auto 20px auto;
  
	border-radius: 120px;
}
.attachment-stage-thumb:hover {
   
}
    
/*=== Avatar Archive ===*/
.character .character-panel {
	max-width: 300px; 
	margin: 0 auto;
	border-radius: 15px;
}
.character .air .character-panel {
	background: linear-gradient( rgba(243, 201, 106, 0.61), rgba(144, 94, 4, 0.15) 75%), url(images/realm-tile-air.jpg);
}
.character .fire .character-panel {
	background: linear-gradient( rgba(243, 106, 106, 0.50), rgba(144, 4, 4, 0.40) 75%), url('images/realm-tile-fire.jpg');
}
.character .earth .character-panel {
	background: linear-gradient( rgba(154, 169, 32, 0.8), rgba(68, 93, 20, 0.78) ), url('images/realm-tile-earth-lighter.jpg');
}
.character .water .character-panel {
	background: linear-gradient( rgba(32, 112, 169, 0.42), rgba(14, 62, 111, 0.72) ), url('images/realm-tile-water.jpg');
}
.character .spirit .character-panel {
	background: linear-gradient( rgba(152, 97, 202, 0.78), rgba(72, 20, 93, 0.63) ), url('images/realm-tile-spirit.jpg');
}
.character-panel img {
	vertical-align: bottom;
	border-radius: 5px 5px 0 0;
	border: 3px solid #f58b7f;
}
.entry-content .character-panel h2 {
	font-family: 'la_chatte__mamanregular', cursive;
}
.non-archetypal-village-panel img {
	border: none;
}
.fire .character-panel img {
	border: 3px solid #f58b7f;
}
.air .character-panel img {
	border: 3px solid #ffdc86;
}
.earth .character-panel img {
	border: 3px solid #b7e627;
}
.water .character-panel img {
	border: 3px solid #7fc4f5;
}
.spirit .character-panel img {
	border: 3px solid #d69ef3;
}
.character-description {
	padding: 15px 2.5%;
}
.character-meta {
	padding: 0 5% 15px;
	color: #FFFAEF;
	font-size: 1.125rem;
	font-weight: 400;
}
.character-description h3,
.character-meta h2 {
	color: #FFFAEF;
}
.character-meta h2 {
	font-size: 3.5rem;
    line-height: .7;
    text-align: center;
}
.character-meta-list {
	margin-left: 0;
	list-style: none;
}
.character-meta-list li {
    border-bottom: 1px solid;
    text-align: center;
    padding: .5em 0;
}
.character-meta-list li:last-child {
	border: none;
}
.fire .character-meta-list li {
	border-color: #f58b7f;
}
.air .character-meta-list li {
	border-color: #ffdc86;
}
.air .character-meta-list li,
.air .character-meta h2 {
	color: #3c1606;
}
.earth .character-meta-list li {
	border-color: #b7e627;
}
.water .character-meta-list li {
	border-color: #7fc4f5;
}
.spirit .character-meta-list li {
	border-color: #d69ef3;
}
.character-meta-list span {
	font-family: 'Montserrat', sans-serif;
}
.character-meta button {
	display: block;
	margin: 0 auto 1em;
}

.non-archetypal-village-description {
	padding: 20px 2% 10px;
	border-radius: 5px 5px 15px 15px;
	background: url('images/realm-spiral-bg.jpg') top center;
}
.postid-15899 .back-to-cornerstone {
	display: none;
}
.fire .character-description {
	border-radius: 0 0 15px 15px;
	background: linear-gradient( rgba(243, 106, 106, 0.72), rgba(144, 4, 4, 0.45) ), url('images/realm-tile-fire.jpg');
}
.air .character-description {
	border-radius: 0 0 15px 15px;
	background: linear-gradient( rgba(243, 201, 106, 0.61), rgba(144, 94, 4, 0.55) ), url('images/realm-tile-air.jpg');
}
.earth .character-description {
	border-radius: 0 0 15px 15px;
	background: linear-gradient( rgba(154, 169, 32, 0.8), rgba(68, 93, 20, 0.78) ), url('images/realm-tile-earth-lighter.jpg');
}
.water .character-description {
	border-radius: 0 0 15px 15px;
	background: linear-gradient( rgba(32, 112, 169, 0.42), rgba(14, 62, 111, 0.72) ), url('images/realm-tile-water.jpg');
}
.spirit .character-description {
	border-radius: 0 0 15px 15px;
	background: linear-gradient( rgba(152, 97, 202, 0.78), rgba(72, 20, 93, 0.63) ), url('images/realm-tile-spirit.jpg');
}
/*====== REALMS ======*/
/*=== Co-author our New Story ===*/

.page-template-page-realm-cornerstone .entry-content,
.page-template-page-realm-cornerstone #primary {
	width: 100%;
	margin: 0;
}
.page-template-page-realm-cornerstone #content-inner {
	margin-top: 0;
}
#realm-intro-section {
	margin-bottom: 30px;
}
#realm-seven-things-section {
	padding-top: 40px;
	background: #1d2c01;
	border-top: 2px solid #2c2d0f;
}
ol.seven-things-list {
	margin-bottom: 0;
}

.page-template-page-realm-cornerstone img.timeline-logo {
	box-shadow: none;
}
/*=== Realm Archive ===*/
.realm-section {
	padding: 40px 0;
}
.realm-section:last-child {
	padding-bottom: 60px;
}
.page-template-page-villages .entry-summary {
	margin-top: 0;
}
/*=== Single Realm ===*/
.page-template-page-villages .earth {
	background: #f7eaaa;
}
.page-template-page-villages .water {
	/*background: #c4d1d4;*/
}
.page-template-page-villages .air {
	/*background: #cbdbe6;*/
}
.page-template-page-villages .spirit {
	background: #f7e3f1;
}
.page-template-page-villages .fire {
	background: #ffdbb5;
}
.page-template-page-villages .type-village {
	padding-bottom: 15px;
	border-bottom: 2px solid #DEC6DA;
}
.page-template-page-villages .type-village:last-of-type {
	border: none;
}
.page-template-page-villages .type-village h2,
.page-template-page-villages .type-village .more-link {
	text-align: center;
}
.page-template-page-villages .type-village .village-image {
	display: block;
	text-align: center;
}

/*=== Custom Post Type Sponsors ===*/
.sponsor-list,
.sponsor {
	padding-top: 30px;
	padding-bottom: 20px;
	border-top: 2px solid #194a4c;
}
#sponsors-founders.sponsor-list {
	margin-top: 0;
	border: none;
}
#sponsors-founders {
	margin-top: 20px;
}
.sponsors {
	text-align: center;
}
.sponsors a {
	display: inline-block;
	margin: 20px;
}
.sponsor-list-title {
	margin-bottom: 30px;
	text-align: center;
}
.sponsor-logo {
	margin: 0 auto; 
}
				
/* === Courseweek Course Page Templates === */
   
   
/*--- Courseweek Overview Page ---*/

.page-template-page-course-overview #content-inner,
.page-template-page-course-overview #primary,
.page-template-page-course-overview #main {
	max-width: 100%;
}

#courseweek-overview-intro {
	padding-bottom: 50px;
	background: url('images/body-spiral-bg-yellow.jpg') center 100px repeat-x;
}
#courseweek-tracks,
#courseweek-host-bio {
	padding: 50px 0 40px;
	border-top: 2px solid #194a4c;
	border-bottom: 2px solid #194a4c;
	background: url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/section-grunge-bg.jpg') top center repeat-x #071923;
}
#courseweek-overview-content-2 {
	padding: 50px 0 40px;
	background: url('images/body-spiral-bg-yellow.jpg') center -300px repeat-x;
}
#courseweek-overview-content-1 {
	padding-bottom: 1px;
	background: #051d25;
}
.course-list {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	font-size: 19px;
}
.course-list li a {
	font-size: 20px;
}
.course-list li img {
	float: left;
	vertical-align: middle;
}
.course-package {
	 background-color: #051d25;
	 text-align: center;
}
.course-package:last-of-type {
	margin-bottom: 50px;
}
.course-package img {
	display: block;
	margin: 0;
	width: 100%;
	vertical-align: bottom;
}
#full-experience {
	padding-top: 50px;
}

.content-box {
	text-align: center;
	padding: 35px 3.5% 20px;
	background: url('images/body-spiral-bg-blue-small.jpg') center -200px;
}
.courseweek-experience .content-box {
	/*background:  url('../../../2018-sub/wp-content/uploads/2017/12/overview-panel-bg.png') -200px -25px repeat-x, url('../../../2018-sub/wp-content/uploads/2017/12/overview-panel-bg.png') -50px 600px repeat-x, #f8cf87;*/
}
.course-bonuses .content-box {
	/*background: url('../../../2018-sub/wp-content/uploads/2017/12/overview-panel-bg.png') -200px -25px repeat-x, url('../../../2018-sub/wp-content/uploads/2017/12/overview-panel-bg.png') -50px 600px repeat-x, #fdf4e1;*/
	text-align: left;
}
.course-package-title {
	font-size: 35px;
}
.course-package ul {
	list-style: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}
ul.course-list li {
	padding: 10px 0;
}
.course-list-course-text {
	margin-left: 75px;
}
ul.course-list li span a {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
}
.course-price {
	text-align: center;
}
.course-price span.c-price {
	display: inline-block; 
	border-radius: 5px;
	color: #fb4747;
	font-size: 2.813rem;
	font-weight: 400;	
}

.parking-alert {
	padding: 20px 0;
	font-size: 1.188rem;
	color: #ffe829;
}
.parking-alert strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}

.courseweek-host-title {
	text-align: center;
}
.host-bio-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 100%;
  box-shadow: 0px 0px 30px #f4f73775;
}

#courseweek-tagline {
	min-height: 200px;
	padding-top: 30px;
	color: #fff;
	text-align: center;
	background: url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/courseweek-tagline-bg.jpg') top center no-repeat;
	background-size: cover;
}
.page-template-page-courses .hentry .entry-header,
.hentry #course-overview,
.hentry .courseweek-tagline-inner,
#course-icon-links-inner,
.single-course .section-inner,
.course-header-inner {
	margin: 0 3.5%;
}
.page-template-page-courses .hentry .entry-header {
	text-align: center;
}
#courseweek-tagline h2 {
	margin-bottom: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 35px;
	line-height: 1.3em;
	color: #fdf5e5;
}

.page-template-page-courses article {
	margin-bottom: 0;
}
.page-template-page-courses .entry-content .course,
.single-course .section {
	height: auto;
	min-height: 400px;
	margin: 0;
	padding-top: 310px;
	color: #5e396f;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top center;
}
.single-course .section {
	padding-top: 0;
	min-height: 350px;
}
.single-course .section-inner {
	overflow: auto;
}
.single-course button {
	font-size: 1.5rem;
}
.course .course-header-inner { 
	padding-top: 15px;
}
.course-intro {
	background: url('images/realm-spiral-bg.jpg') top center;
	padding-top: 30px;
	border-top: 1px solid #B12B57;
}
.page-template-page-courses article.course a {
	color: #5e396f;
}
.page-template-page-courses article.course .more-link a {
	font-family: 'Montserrat', sans-serif;
	color: #c73b45;
	font-size: 23px;
}
article.course.purple,
article.course.purple #section-2 {
	background-color: #e2a7eb;
	border-top: 3px solid #e2a7eb;
}
article.course.orange,
article.course.orange #section-2 {
	background-color: #fdd29b;
	border-top: 3px solid #fdd29b;
}
article.course.blue,
article.course.blue #section-2 {
	background-color: #c5f0f7;
	border-top: 3px solid #c5f0f7;
}
article.course.green,
article.course.green #section-2 {
	background-color: #d5dea9;
	border-top: 3px solid #d5dea9;
}
article.course.red,
article.course.red #section-2 {
	background-color: #f9a8a7;
	border-top: 3px solid #f9a8a7;
}
article.course.yellow,
article.course.yellow #section-2 {
	background-color: #f0b149;
	border-top: 3px solid #f0b149;
}
.single-course article.course.purple,
.single-course article.course.orange,
.single-course article.course.blue,
.single-course article.course.green,
.single-course article.course.red,
 .single-course article.course.yellow {
	background-color: transparent;
}
.class-entry-title,
.course-entry-title {
	text-transform: uppercase;
}
.class-entry-title {
	margin-bottom: 0;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: .01em;
	font-size: 34px;
}
.course-entry-title {
	margin-top: -5px;
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
}
.course-text {
	padding: 5% 2.5%;
}

.sub-title {
	font-style: italic; 
}
.course .more-link {
	margin: 20px 0 0;
}

.course-description,
.class-description {
	margin-bottom: 25px;
	border-bottom: 2px solid #DEC6DA;
}
.course-signup-button {
	text-align: center;
  display: block;
  margin: 25px auto;
}
#course-signup {
	text-align: center; 
	padding: 30px 0;
}
.course-signup-button .button {
	padding: 10px 13px;
	font-size: 1.625rem;
}
#course-icon-links {
	background: #fdeccd;
	margin: 0;
}
#course-icon-links-inner ul {
	margin: 0;
	padding: 25px 0;
	text-align: center;
	list-style: none;
}
#course-icon-links-inner ul li {
	display: inline-block;
	margin: 0 1.5%;
}

/*--- Courseweek Single ---*/
.single-course #primary {
	margin: 0;
}
.single-course article.course {
	margin-bottom: 0;
	padding-top: 0;
	border: none;
}
/*.postid-1518 .entry-content {
	background: url('images/courseweek-circular-graphic.jpg') top center;
	border-bottom: 1px solid #efb9b5;
}
.postid-1518 .entry-content-inner {
	margin: 0 2.5%;
}
.postid-1518 .course-intro {
	background: none;
} */
.single-course .entry-title {
	font-size: 3rem;
}
.single-course .entry-subtitle {
	font-size: 1.688rem;
	font-weight: 300;
	color: #f9a656;
}
.single-course .green .entry-subtitle {
	color: #7f925c;
}
.single-course .yellow .entry-subtitle {
	color: #c07d26;
}
.single-course .red .entry-subtitle {
	color: #c73445;
}
.single-course .purple .entry-subtitle {
  color: #b385c5;
}
.course-bullet-list {
	margin-top: 35px;
	padding: 1.5em 3%;
	background: #4b611d;
	border-radius: 8px;
}
.yellow .course-bullet-list {
	border-color: #efd39e;
}
.orange .course-bullet-list {
	border-color: #fbc865;
}
.blue .course-bullet-list {
	border-color: #9dceda;
}
.green .course-bullet-list {
	border-color: #7f925c;
}
.red .course-bullet-list {
	border-color: #efb9b5;
}
.purple .course-bullet-list {
	border-color: #ac8ab9;
}
.single-course .bullets {
	margin-bottom: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
}
.single-course .bullets li {
	margin-bottom: .4em;
  line-height: 1.2em;
}
.single-course .call-out {
	background: #C5CEB1;
	color: #fdf5e5;
	font-size: 25px;
	text-align: center;
}
.postid-1518.single-course .instructor-wrapper {
	margin-bottom: 35px;
	padding-bottom: 15px;
	border-bottom: 3px solid #cc606c;
}
.postid-1518.single-course .instructor-wrapper:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.post-1518.single-course .instructor-intro {
	padding: 0;
}
.single-course h3.instructor-heading {
	text-transform: none;
	text-align: center;
}
.single-course .call-out {
	display: none;
	background-color: #091a21;
}

.single-course .green .call-out {
	color: #7f925c;
}
.single-course .orange .call-out {
	color: #f9a656;
}
.single-course .blue .call-out {
	background-color: #3ca2bb;
}
.single-course .yellow .call-out {
	background-color: #d6a951;
}
.single-course .purple .call-out {
	color: #846092;
}
.single-course .red .call-out {
	color: #cc606c;
}
.postid-1518.single-course .red .call-out {
	color: #cc606c;
}

.single-course .call-out .section-inner {
	padding: 25px 0;
	font-size: 2.063rem;
	line-height: 1.1em;
	font-style: italic; 
}
.postid-1518.single-course .call-out .section-inner {
	font-size: 1.875rem;
}
.single-course .instructor-intro {
	padding: 50px 0 0;
}
#instructor-bio {
	background: url('images/greenery-bg.jpg') top center no-repeat #0A1208;
	border-top: 2px solid #B12B57;
	overflow: auto;
}
#instructor-bio .section-inner {
	padding-top: 50px;
}
.instructor ul {
	margin-left: 0;
	list-style: none;
}
.instructor ul li {
	display: inline-block;
  /*width: 45%;
  margin-right: 7%;*/
  vertical-align: top;
   clear: both;
}
/*.red .instructor ul li {
	border-color: #efb9b5;
}
.purple .instructor ul li {
	border-color: #ac8ab9;
}
.yellow .instructor ul li {
	border-color: #efd39e;
}
.orange .instructor ul li {
	border-color: #fbc865;
}
.blue .instructor ul li {
	border-color: #9dceda;
} */
.instructor ul li:last-child {
	margin: 0;
}
.instructor h3 {
	text-align: center;
}
.instructor-image-wrapper {
	display: block;
	max-width: 500px;
	margin: 1em auto;
	padding: 50px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.instructor-image-wrapper:last-child {
	background: #fdf4e1;
}
.green .instructor-image-wrapper {
	background-image: url('images/ew-instructor-photo-bg.png');
}
.yellow .instructor-image-wrapper {
	background-image: url('images/iw-instructor-photo-bg.png');
}
.orange .instructor-image-wrapper {
	background-image: url('images/crew-instructor-photo-bg.png');
}
.blue .instructor-image-wrapper {
	background-image: url('images/comw-instructor-photo-bg.png');
}
.purple .instructor-image-wrapper {
	background-image: url('images/sw-instructor-photo-bg.png');
}
.red .instructor-image-wrapper {
	background-image: url('images/bw-instructor-photo-bg.png');
}
.attachment-instructor-image {
	display: block;
	border-radius: 100%;
	box-shadow: 0 0 20px #ECAD3F;
}
/*.instructor-bio {
	border-radius: 0 0 13px 13px;
	color: #FFFAEF;
}
.green .instructor-bio {
	
}
.yellow .instructor-bio {
	background: url('images/iw-instructor-photo-bg.png') 100px 200px no-repeat #c07d2d;
}
.orange .instructor-bio {
	background: url('images/crew-instructor-photo-bg.png') 100px 200px no-repeat #DF7C36;
}
.blue .instructor-bio {
	background: url('images/comw-instructor-photo-bg.png') 100px 200px no-repeat #215370;
}
.purple .instructor-bio {
	background: url('images/sw-instructor-photo-bg.png') 100px 200px no-repeat #57316f;
}
.red .instructor-bio {
	background: url('images/bw-instructor-photo-bg.png') 100px 200px no-repeat #731315;
}
.instructor-bio-inner {
	padding: 20px 5%;
}*/
/* === Application Portal === */
 
#portals {
  padding: 0;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}

.app-portal.flex-item {
  width: 300px;
  height: auto;
  margin-top: 30px;
  box-shadow: 0 0 30px rgb(54, 60, 17);
  border: 2px solid #4f5207;
}

.app-portal {
	background: url('images/realm-spiral-bg.jpg') center -200px no-repeat;
	border-radius: 5px 5px 15px 15px;
	/*border: 4px solid #e8ac50;*/
	text-align: center;
}
.realm-card.app-portal {
	background: none;
	margin-bottom: 25px;
	border-radius: 15px 15px 0 0;
}
.realm-card-text {
	padding-top: 25px;
	border-radius: 15px;
	background: url('images/bamboo-bckgrnd.jpg');
}
.realm-card-inner.app-portal-inner {
	border-radius: 15px;
}
.air .realm-card-inner.app-portal-inner {
	background: linear-gradient( rgba(243, 201, 106, 0.61), rgba(144, 94, 4, 0.55) ), url('images/realm-tile-air.jpg');
}
.spirit .realm-card-inner.app-portal-inner {
	background: linear-gradient( rgba(152, 97, 202, 0.78), rgba(72, 20, 93, 0.84) ), url('images/realm-tile-spirit.jpg');
}
.air .realm-card-inner.app-portal-inner {
	background: linear-gradient( rgba(243, 201, 106, 0.61), rgba(144, 94, 4, 0.55) ), url('images/realm-tile-air.jpg');
}
.fire .realm-card-inner.app-portal-inner {
	background: linear-gradient( rgba(243, 106, 106, 0.72), rgba(84, 7, 7, 0.45) ), url('images/realm-tile-fire.jpg');
}
.water .realm-card-inner.app-portal-inner {
	background: linear-gradient( rgba(32, 112, 169, 0.42), rgba(14, 62, 111, 0.72) ), url('images/realm-tile-water.jpg');
}
.earth .realm-card-inner.app-portal-inner {
	background: linear-gradient( rgba(154, 169, 32, 0.8), rgba(44, 60, 13, 0.78) ), url('images/realm-tile-earth-lighter.jpg');
}
.app-portal img {
	width: 75%;
	margin: 1.5em 0 1em;
	border-radius: 100%;
	box-shadow: 0px 0px 30px #fcfdc1cf;	
}
.realm-card.app-portal img {
	width: 70%;
	border-radius: 100%;
}
.spirit .realm-card.app-portal img {
	border: 3px solid #d69ef3;
	box-shadow: 0px 0px 30px #fbfd7a75;
}
.air .realm-card.app-portal img {
	border: 3px solid #ffdc86;
	box-shadow: 0px 0px 30px #ad37f775;
}
.fire .realm-card.app-portal img {
	border: 3px solid #f58b7f;
	box-shadow: 0px 0px 30px #f4f73775;
}
.water .realm-card.app-portal img {
	border: 3px solid #7fc4f5;
	box-shadow: 0px 0px 30px #fcfdc1cf;
}
.earth .realm-card.app-portal img {
	border: 3px solid #b7e627;
	box-shadow: 0px 0px 30px #fcfdc1cf;
}

.app-portal-content {
	padding: 5%;
}
h3.app-portal-title {
    font-size: 1.75rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}
h3.app-portal-title.long-title {
	font-size: 1.5rem;
}
.realm-card h2 {
	margin-bottom: .3em;
	font-size: 4rem;
	color: #3c1606;
	text-align: center;
    line-height: 1.2;
}
.portal-excerpt,
.realm-card-text {
	font-family: 'Montserrat', sans-serif;
	color: #cfd4cf;
	font-weight: 300;
}
.realm-card-text {
	border-radius: 0 0 15px 15px;
	color: #3c1606;
  font-weight: 400;
  padding: 20px 5% 10px;
	text-align: left;
}

.realm-text {
	padding-top: 20px;
  border-top: 2px solid #194a4c;
}
.realm-text p {
	font-size: 1.313rem;
}
p.apply {
	text-align: center;
}
.app-portal .button {
	display: block!important;
}

/* === REALMS === */

/* == Realms Cornerstone == */
.page-template-page-realm-cornerstone .hentry {
	padding-top: 35px;
	/*background: #ffecd5 url('images/intro-bg-lite.jpg') top center no-repeat;*/
}
.page-template-page-realm-cornerstone .entry-header {
	margin: 0 2.5%;
}
.page-template-page-realm-cornerstone .section-heading {
	text-align: center;
}
.seven-things-list,
.seven-things-list ul  {
	margin-left: 0;
  padding-right: 0;
	list-style: none;
}
.seven-things-list > li {
	padding: 25px 0;
	counter-increment: step-counter;
	border-top: 2px solid #50450c;
	overflow: visible;	
}
.seven-things-list > li::before {
	position: absolute;
	display: block;
  content: counter(step-counter);
  width: 50px;
  height: 50px;
  margin-right: 5px;
  padding: 10px 17px;
  font-size: 1.5rem;
  background-color: rgb(200,200,200);
  color: white;
  font-family: 'Montserrat', sans-serif;
  border-radius: 100%;
  box-shadow: 0 0 10px rgb(142, 139, 103, .6);
  border: 2px solid #fdda85;
  font-weight: 400;
}
.seven-things-list li li::before {
	content: none;
}
.seven-things-list > li:first-child::before,
.seven-things-list > li:nth-child(6)::before {
	background-image: url('images/realm-tile-fire.jpg');
}
.seven-things-list > li:nth-child(2)::before,
.seven-things-list > li:nth-child(7)::before {
	background-image: url('images/realm-tile-earth.jpg');
}
.seven-things-list > li:nth-child(3)::before,
.seven-things-list > li:nth-child(8)::before {
	background-image: url('images/realm-tile-air.jpg');
}
.seven-things-list > li:nth-child(4)::before,
.seven-things-list > li:nth-child(9)::before {
	background-image: url('images/realm-tile-spirit.jpg');
}
.seven-things-list > li:nth-child(5)::before,
.seven-things-list > li:nth-child(10)::before {
	background-image: url('images/realm-tile-water.jpg');
}
.seven-things-list-heading {
  margin-left: 55px;
  padding: 10px 0 0 0;
}
.seven-things-years li {
	padding: 20px 0 10px;
	border-top: 1px solid #50450c;
}
.seven-things-years li:last-child {
	border-bottom: 1px solid #50450c;
}
.seven-things-years-footer {
	padding-top: 25px;
}
.festival-year {
	display: block;
	margin-bottom: .5em;
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	color: #ffdc86;
}
.timeline-logo {
	display: block;
	margin: .7em auto .7em;
	
}

/* == Realms Archive ==*/

.realm-section {
	padding: 50px 0;
	overflow: auto;
	border-top: 3px solid #50450c;
}
.realm-section:nth-child(even) {
	background: url('images/greenery-bg.jpg') center -150px repeat-x #081306;
}
.realm-section:nth-child(odd) {
	background: url('images/realm-spiral-bg.jpg') center -200px repeat-x #182501;
}
.realm-card.app-portal {
	background-repeat: repeat-x;
}

/* == Realms Single ==*/

.back-to-cornerstone {
	margin-top: 25px;
	padding: 20px 2.5%;
  border-radius: 5px 5px 15px 15px;
  /* border: 4px solid #e8ac50; */
}

/* === Custom Post Type Stages & Environments === */

.page-template-page-stages-php article,
.archive-form .hentry {
	margin-bottom: 15px;
	padding-top: 35px;
	border-top: 2px solid #50450c;
}
.page-template-page-stages-php .hentry:first-of-type,
.archive-form .hentry:first-of-type {
	border-top: none;
}
.page-template-page-stages-php .stage img {
	display: block;
	margin: 0 auto;
	border-radius: 100%;
	}
.page-template-page-stages-php .stage h2 {
	text-align: center;
}
.see-who-what {
	margin-top: 15px;
}
.description img {
	margin: 0;
}
.more-info {
	text-align: center;
}
.theme-camp-button {
	padding-bottom: 15px;
}
#stage-architect {
	margin: 20px 0;
	padding: 20px 3% 0;
	clear: both;
}
#stage-architect h4 strong {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
}	
#stage-architect p {
	font-size: 1.5rem;
}
.realm-location {
	padding-top: 25px;
	border-top: 1px solid #efb9b5;
	text-align: center;
}
#post-15890 .stage-connection,
#post-13772 .stage-connection,
#post-38026 .stage-connection,
#post-43270 .stage-connection {
	display: none;
}
.details {
  margin-top: 50px;
  /*position: relative;*/
  clear: both;
}
.details-header {
  margin-bottom: 1em;
  font-size: 36px;
  text-align: center;
}
.details .event-title {
  margin-bottom: .5em;
  text-align: center;
  font-size: 1.50rem;
}
.details-header,
.details .event-title {
  font-family: 'Montserrat', sans-serif;
}
.details .event-title {
	color: #fff;
}
.workshop-meta {
  display: block;
  margin-bottom: .5em;
  text-align: center;
}
.workshop-description {
	margin-top: 30px;
	text-align: left;
}
.performer-list ul {
	margin: 0;
	list-style: none;
	}
.performer-list ul li {
	margin-bottom: 7px;
	line-height: 1em;
}					
	
.links {
	margin-top: 10px;
	padding-top: 15px;
	border-top: 2px solid #50450c;
}


.social-media {
	min-height: 170px;
    padding-top: 25px;
    background: url('images/patterned-bg-maroon.jpg') center -200px no-repeat #6f2936;
    border-top: 1px solid #c0b891;
    border-bottom: 1px solid #c0b891;
}
.social-media h3 {
	color: #d5dda9;
}
.social-icons {
	margin: 0;
}
.social-icons li {
	width: 40px;
	height: 40px;
	list-style: none;
	display: inline-block;
}
.social-icons li a img {
	opacity: .3;
}
.social-icons li a img:hover {
	opacity: .5;
}
#mega-menu {
	padding-top: 25px;
	color: #bec369;
	padding-bottom: 25px;
	background: #352304;
}
#mega-menu-inner {
	margin: 0 4.5%;
	overflow: hidden;
}
.page-template-page-coming-soon #mega-menu {
	margin-top: 0;
}

#mega-menu .widget-title {
	margin-bottom: 1em;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	color: #bec369;
}
#mega-menu #mail-chimp .widget-title {
	margin-bottom: 1em;
}
#mega-menu p {
	font-size: 15px;
}
.block {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #50450c;
}
.block:last-child {
	border-bottom: none;
}
#social-media.block {
	padding-bottom: 30px;
}
.snail-mail img,
.social-media img {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	opacity: .7;
}
.snail-mail a {
	font-weight: 200;
	color: #bec369;
}
.snail-mail p {
	margin-bottom: .5em;
}
#mega-menu #mc_embed_signup input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 7px 10px;
  border-radius: 35px;
  background: #3e351f;
  font-size: 18px;
  color: #daedda;
}
#colophon {
	margin-top: -5px;
	background: #2f220d;
}


/* === Video Archive Page Template === */

.video-panel {
	margin-bottom: 30px;
	padding-bottom: 15px;
  background: url('images/realm-spiral-bg.jpg') top center no-repeat;
  border-radius: 5px 5px 15px 15px;
}
.video-wrapper {
	position: relative;
}
.fas {
  display: inline-block;
  padding: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fffdf3;
  font-size: 3rem;
}
.fas:hover {
	color: #ffc943;
	transition:all 0.3s ease;
}
.video-title {
	text-align: center;
}	
.video-date {
	display: block;
	margin: 0 auto .5em;
}	
.video-description {
	padding: 1.5em 1.5em .5em;
}		
		
    
    
/* === 2020 Landing Page Template === */


.page-template-page-buy #header-wrapper,
.page-template-page-buy div#ehu-bar.ehu-bottom-fixed,
.page-template-page-buy button#responsive-menu-button {
	display: none;
}

.page-template-page-buy #primary,
.page-template-page-buy main.site-main,
.page-template-page-buy .entry-content {
	width: 100%;
	max-width: 100%;
}
body.page-template-page-buy {
	background: url('images/body-bg.jpg');
}
section {
	width: 100%;
}
section.hero-image {
  position: relative;
  min-height: 300px;
  margin: 0;
  padding: 175px 0 0;
  background: url('images/buy-ticket-hero-mobile.jpg') top center no-repeat #090c05;
}
.page-template-page-bu .details {
	top: 100px;
	text-align: center;
}
.page-template-page-buy .details h3 {
	color: #fff;
	/*text-shadow: 0px 0px 7px #430d00, 0px 0px 7px #430d00, 0px 0px 10px #430d00;*/
}
.media h3 {
  font-size: 36px;
  font-family: 'Montserrat', sans-serif;
  color: #ffdc86;
}
h3.date {
	font-weight: 300;
	font-size: 1.313rem;
}
h3.location {
	line-height: 1em;
	font-weight: 300;
	font-size: 1.125rem;
}
.page-template-page-buy a.button {
	position: relative;
	/*background: #ff9500;*/
	color: #340019!important;
	font-size: 1.50rem;
	font-weight: 400;
	background: linear-gradient(to top, #ff9500 0%, #ffcc5d 100%);
	z-index: 1;
}
.page-template-page-buy a.button:before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(to bottom, #ff9500 0%, #ffcc5d 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.page-template-page-buy a.button:hover::before {
  opacity: 1;
}
.page-template-page-buy #primary {
	margin: 0;
}
.page-template-page-buy article {
	margin-bottom: 0;
	
}
.page-template-page-buy .entry-content {
	margin-top: 0;
}
section.intro {
	padding: 35px 0;
}
.inner-section {
	margin: 0 5%;
	padding-bottom: 50px;
}
.page-template-page-buy h2.section-title {
	text-align: center;
	color: #ffcc5d;
}
#curve,
#curve2 {
  position: absolute;
  bottom: 0;
  width: 100%; 
}
#curve path,
#curve2 path {
  filter:url(https://lucidityfestival.com/wp-content/themes/lucidity-2020/style.css?ver=5.8.2#shadow);
}
.page-template-page-buy #mega-menu {
	background: #352304;
	color: #bec369;
}

.page-template-page-buy .snail-mail a,
.page-template-page-buy #mega-menu,
.page-template-page-buy #mega-menu .widget-title {
	color: #bec369;
}
.page-template-page-buy #mega-menu #mc_embed_signup input[type="email"] {
	background: #444e2d; 
}
.page-template-page-buy #mc_embed_signup input[type="submit"] {
	background: #a15b3f;
}
.page-template-page-buy #colophon {
	background: #2f220d;
}
.page-template-page-buy #colophon .site-info,
.page-template-page-buy span.bold {
	color: #bec369;
}
.page-template-page-buy #colophon a
 {
	color: #ff9500;
}
/*--------------------------------------------------------------
13.0 Formidable
--------------------------------------------------------------*/

.form-intro {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 2px solid #194a4c;
		font-size: 16px;
	}
.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container {
	font-size: 17px;
	font-family: 'Montserrat', sans-serif;
	color: #555;
}
/*.frm_style_formidable-style.with_frm_style label.frm_primary_label, 
.frm_style_formidable-style.with_frm_style.frm_login_form label,
.frm_style_formidable-style.with_frm_style .frm_primary_label p {
		font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    color: #7B3D5F;
    text-align: left;
    margin: 0 0 5px;
    padding: 0 0 3px 0;
    width: auto;
    display: block;
    line-height: 1.1em;
    font-weight: normal;
}
.frm_style_formidable-style.with_frm_style .frm_primary_label p.instructions {
	padding: 10px;
	font-size: 18px;
	background: #f8fcd4;
}
.frm_style_formidable-style.with_frm_style p.description, 
.frm_style_formidable-style.with_frm_style div.description, 
.frm_style_formidable-style.with_frm_style div.frm_description, 
.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description, 
.frm_style_formidable-style.with_frm_style .frm_error {
		max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #9C6885;
    line-height: 1.1em;
    font-weight: normal;
    text-align: left;
    font-style: normal; 
}

.frm_style_formidable-style.with_frm_style .frm_error {
	color: red;
}
*/
.frm_dropzone .dz-message {
	font-weight: 400!important;
}
.frm_dropzone .dz-preview .dz-error-message {
	right: -200px!important;
	left: auto;
}
.frm_style_formidable-style.with_frm_style .profile-upload div.frm_description {
	margin-top: 10px;
}
/*
.frm_style_formidable-style.with_frm_style input[type=text], 
.frm_style_formidable-style.with_frm_style input[type=password], 
.frm_style_formidable-style.with_frm_style input[type=email], 
.frm_style_formidable-style.with_frm_style input[type=number], 
.frm_style_formidable-style.with_frm_style input[type=url], 
.frm_style_formidable-style.with_frm_style input[type=tel], 
.frm_style_formidable-style.with_frm_style input[type=file], 
.frm_style_formidable-style.with_frm_style input[type=search], 
.frm_style_formidable-style.with_frm_style select,
.frm_style_formidable-style.with_frm_style textarea {
	border: 3px solid #B78DB0;
}
*/
.frm_style_formidable-style.with_frm_style input[type=file] {
	border: none;
}
.with_frm_style .vertical_radio .frm_radio label {
	padding-left: 23px!important;
}
/*.frm_style_formidable-style.with_frm_style .frm_radio label, 
.frm_style_formidable-style.with_frm_style .frm_checkbox label {
    font-family: 'Montserrat', sans-serif;
    font-size:18px;
    color: #7B3D5F;
    font-weight: normal;
    display: inline;
    white-space: prewrap;
}
.frm_style_formidable-style.with_frm_style input[type=submit], 
.frm_style_formidable-style.with_frm_style .frm_submit input[type=button], 
.frm_form_submit_style, 
.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit],
.frm_style_formidable-style.with_frm_style .frm_submit button {
    width: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    height: auto;
    line-height: normal;
    text-align: center;
    background: #7B3D5F;
    border-width: 0;
    border-color: transparent;
    border-style: solid;
    color: #fff;
    cursor: pointer;
    font-weight: normal;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-shadow: none;
    padding: 6px 11px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#eeeeee')";
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#eeeeee');
    margin: 10px;
    margin-left: 0;
    margin-right: 0;
    vertical-align: middle;
}
.frm_style_formidable-style.with_frm_style input[type=submit]:hover, 
.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover, 
.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:hover {
    background: #4D2A3E;
    border-color: transparent;
    color: #fff;
}
.frm_style_formidable-style.with_frm_style input[type=text], 
.frm_style_formidable-style.with_frm_style input[type=password], 
.frm_style_formidable-style.with_frm_style input[type=email], 
.frm_style_formidable-style.with_frm_style input[type=number], 
.frm_style_formidable-style.with_frm_style input[type=url], 
.frm_style_formidable-style.with_frm_style input[type=tel], 
.frm_style_formidable-style.with_frm_style input[type=phone], 
.frm_style_formidable-style.with_frm_style input[type=search], 
.frm_style_formidable-style.with_frm_style select, 
.frm_style_formidable-style.with_frm_style textarea, 
.frm_form_fields_style, 
.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container, 
.frm_form_fields_active_style, 
.frm_form_fields_error_style, 
.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices, 
.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {
		min-height: 35px;
    color: #555555;
    margin-bottom: 5px;
    padding: 6px 10px;
    font-weight: normal;
  }
  */
.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3 {
	  line-height: 1.5em;
}
.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading.form-repeater h3 {
	line-height: 1.5em;
	/*background: #7B3D5F;
	display: inline-block;
	border-radius: 8px;
	padding: 10px;*/
}
.frm_html_container h3 {
	font-family: 'Montserrat', sans-serif;
}
.frm_toggle_container {
	  border-bottom: 1px solid #DEC6DA;
}
.frm_style_formidable-style.with_frm_style .frm_icon_font {
	vertical-align: top;
}
  .frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon::before,
	.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon::before {
    font-size: 22px!important;
    color: #fff!important;
}
.frm_form_field .wp-editor-wrap {
	margin-bottom: 20px;
}
.mce-widget input[type=button],
.mce-widget button,
.wp-editor-tabs button {
	border-radius: 0;
}
.mce-widget input[type=button]:hover,
.mce-widget button:hover,
.wp-editor-tabs button:hover {
	background-color: #ebebeb!important;
	color: #666;
}

/*--------------------------------------------------------------
13.0 Mailchimp
--------------------------------------------------------------*/
#mc_embed_signup .clear {
	float: left;
	width: 41px;
	margin-left: 2px;
	clear: none;
}
.email-field {
	float: left;
	width: 85%;
}
.email-submit {
	margin: 0;
}
#mc_embed_signup .email-submit {
	color: #BDA377;
}
#mc_embed_signup input[type="submit"] {
	width: auto;
	height: 41px;
	padding: 5px;
	border: none;
	border-radius: 60px;
	background: #a15b3f;
	box-shadow: none;
	font-size: 18px;
	color: #ffdca0;
	letter-spacing: 0;
	text-shadow: none!important;
	line-height: 0;
	cursor: pointer;
	opacity: .7;
}
#mc_embed_signup input[type="submit"]:hover {
	font-family: 'Montserrat', sans-serif;
	opacity: 1;
	color: #ffdca0;
	background: #7b432c;	
}
#courseweek-call-section #mc_embed_signup input[type="submint"] {
	float: none!important;
}
#mc_embed_signup input[type="email"],
#mc-embedded-subscribe {
	margin: 0;
}
.popmake #mc_embed_signup input[type="email"],
.popmake #mc-embedded-subscribe {
	width: 100%;
}
#courseweek-call-section #mc_embed_signup input[type="email"] {
	width: 100%;
  height: 40px;
  padding: 7px 10px;
  border-radius: 25px;
  background: #fdf3e6;
  font-size: 18px;
  color: #62314c;
}
#mc_embed_signup input[type="email"]:focus {
	background: #a2b68f;
}
	
.home .mc-field-group h3 {
	margin-bottom: 10px;
}
.input-group {
	margin: 10px 0 5px;
	overflow: hidden;
}
.input-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.input-group ul li {
	display: inline-block;
	margin: 0 10px 0 0;
}
.input-group ul li input {
	margin: 0 3px 0 0;
}

/*--------------------------------------------------------------
13.0 Popup Maker
--------------------------------------------------------------*/

#popmake-8746 {
	background: url('images/patterned-bg-maroon-light.jpg');
}
#popmake-20605 {
	min-height: 450px;
	background: url('images/FOMO-popup-2020.jpg') no-repeat bottom center;
}
#popmake-20605 .pum-title {
	text-align: center;
}
#popmake-20605 p {
	text-shadow: 0px 0px 10px rgba( 2, 2, 2, 1.00 ),0px 0px 10px rgba( 2, 2, 2, 1.00 );
}
.home .popmake #mc_embed_signup {
	width: 100%;
	max-width: 100%;
	float: left;
}
.popmake #mc_embed_signup .mc-field-group {
	width: 100%;
}
.popmake #mc_embed_signup input[type="email"] {
	border-radius: 7px;
	border: 3px solid #B78DB0;
	background: #ead5e5;
}
.popmake #mc_embed_signup input[type="email"]:focus {
	background: #bc93b2;
}
.popmake #mc_embed_signup .clear {
	margin-top: 10px;
}
.popmake.responsive .popmake-content img {
    height: auto;
    margin-bottom: 15px;
}
#popmake-8746.popmake.responsive .popmake-content img {
	max-width: 100%!important;
	width: 100%!important;
}

/*--------------------------------------------------------------
13.0 Responsive Menu
--------------------------------------------------------------*/
.page-template-page-coming-soon button#responsive-menu-button .responsive-menu-box {
	display: none;
}
/*--------------------------------------------------------------
13.0 RSS Aggregator
--------------------------------------------------------------*/
.page-id-10912 #content-inner {
	width: 100%!important;
	max-width: 100%!important;
}
.page-id-10912 #primary {
	max-width: 100%!important;
}

ul.rss-aggregator {
	margin: 0;
	list-style: none;
}
.feed-item {
	margin-bottom: 10px;
}
.feed-item a {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 300;
}
.feed-date {
	font-style: italic;
	font-family: 'Montserrat', sans-serif;
}
/*--------------------------------------------------------------
13.0 Whistles
--------------------------------------------------------------*/

/* Whistles */
.whistles {
	clear:       both;
	width:       100%;
	margin:      0 0 1.5rem;
	line-height: 1.3;
}

.whistles::after,
.whistle-content::after {
	content:    ".";
	display:    block;
	height:     0;
	clear:      both;
	visibility: hidden;
}

.whistle-title:hover {
	cursor: pointer;
}

.whistle-content {
	overflow: hidden;
}
.whistles-toggle .whistle-content,
.whistles-accordion .whistle-content {
	background:  #747736;
}

/**
 * Tabs
 */

/* Wraps the entire tabbed section. */
.whistles-tabs {}

/* Unordered list. */
.whistles-tabs .whistles-tabs-nav {
	list-style: none;
	margin: 0;
}

/* Individual list item. */
.whistles-tabs .whistles-tabs-nav li {
	display: inline-block;
}

			/* Link within list item. */
			.whistles-tabs .whistles-tabs-nav li a {
				display:            inline-block;
				padding:            0.5rem 1.5rem;
				font-size:          0.75em;
				font-family:        Arial, sans-serif;
				font-weight:        bold;
				color:              #777;
				background:         #f5f5f5;
				border:             1px solid #ececec;
				border-right-width: 0;
			}

			.whistles-tabs .whistles-tabs-nav li:last-child a {
				border-right-width: 1px;
			}

			.whistles-tabs .whistles-tabs-nav li a:hover {
				color:      #555;
				background: #f9f9f9;
			}
			.whistles-tabs .whistles-tabs-nav li[aria-selected="true"] a {
				color:               #555;
				background:          #fff;
				border-bottom-color: #fff;
			}

	/* Wraps all of the tab content panels. */
	.whistles-tabs .whistles-tabs-wrap {
		margin:     -1px 0 0;
		padding:    1.5rem 1.5rem 0 1.5rem;
		color:      #666;
		background: #fff;
		border:     1px solid #ececec;
	}

		/* Individual tab content. */
		.whistles-tabs-wrap .whistle-content {}

/**
 * Toggle/Accordion
 */

/* Wraps the entire toggle/accordion section. */
.whistles-toggle,
.whistles-accordion {
	margin-bottom: 0;
}

/* Title for individual section. */
.whistles-toggle .whistle-title,
.whistles-accordion .whistle-title {
	margin: 5px 0 0 0;
	padding: 1rem 1.5rem;
	font-size: 21px;
	font-family: 'Montserrat', sans-serif;
	color: #ffdc86;
	font-weight: 300;
	text-transform: none;
	background: #3b4e17;
	border: 2px solid #3c5017;
	line-height: 1.2;
}
.whistles-toggle .whistle-title:first-child, 
.whistles-accordion .whistle-title:first-child {
	border-top-width: 1px;
}

.whistles-toggle .whistle-title:hover,
.whistles-toggle .whistle-title[aria-selected="true"],
.whistles-accordion .whistle-title:hover, 
.whistles-accordion .whistle-title[aria-selected="true"] {
	color: #ffdc86;
  background: #4b611d;
  border: 2px solid #4b611d;
}
.has-whistles h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	text-transform: none;
}
/* Individual toggle section content. */
.whistles-toggle .whistle-content,
.whistles-accordion .whistle-content {
	margin:     -1px 0 0;
	padding:    1.5rem 1.5rem .5rem 1.5rem;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid #4b611d;
	color: #f3f3ec;
	font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
13.0 Yith Toolbar
--------------------------------------------------------------*/
#yith-topbar-countdown.topbar-countdown-container {
	position: fixed;
}

/*--------------------------------------------------------------
13.0 jQuery Plugins
--------------------------------------------------------------*/ 	
/*======= Flexslider =======*/

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

.flexslider a {
	display: block;
}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
	font-family: 'flexslider-icon';
	src:url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/fonts/flexslider-icon.eot');
	src:url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/fonts/flexslider-icon.eot#iefix') format('embedded-opentype'),
		url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/fonts/flexslider-icon.woff') format('woff'),
		url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/fonts/flexslider-icon.ttf') format('truetype'),
		url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/fonts/flexslider-icon.svg#flexslider-icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; margin-bottom: 0; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider { margin: 0; background: transparent; /*display: none;*/}
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport { max-height: 300px; }
.flexslider .slides { overflow: hidden; }
.carousel li { margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a  { text-decoration:none; display: block; width: 40px; height: 40px; margin: -20px 0 0; position: absolute; top: 50%; z-index: 10; overflow: hidden; opacity: 0; cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.flex-direction-nav .flex-prev { /*left: -50px;*/ }
.flex-direction-nav .flex-next { /*right: -50px; text-align: right;*/ }
.flexslider:hover .flex-prev { opacity: 0.7; left: 10px; }
.flexslider:hover .flex-next { opacity: 0.7; right: 10px; }
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { opacity: 1; }
.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; }
.flex-direction-nav a:before  { font-family: "flexslider-icon"; font-size: 40px; line-height:1; display: inline-block; content: '\f001'; }
.flex-direction-nav a.flex-next:before  { content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a { display: block; width: 20px; height: 20px; position: absolute; bottom: 5px; left: 10px; opacity: 0.8; z-index: 10; overflow: hidden; cursor: pointer; color: #000; }
.flex-pauseplay a:before  { font-family: "flexslider-icon"; font-size: 20px; display: inline-block; content: '\f004'; }
.flex-pauseplay a:hover  { opacity: 1; }
.flex-pauseplay a.flex-play:before { content: '\f003'; }

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -o-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); box-shadow: inset 0 0 3px rgba(0,0,0,0.3); }
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}


/* Custom Styles
*********************************/

.flex-direction-nav {display: none;}
/*===== Flexisel =====*/

#Flexisel01 {
	width: 100%;
}
#sponsor-slider {
display:none;
}
body.rfwbs-active {
	padding-bottom: 0!important;
}
.nbs-flexisel-container {
    position:relative;
    max-width:100%;
    margin-bottom: 15px;
}
.nbs-flexisel-ul {
    position:relative;
    width:9999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
}

.nbs-flexisel-inner {
    overflow:hidden;
    margin: 0 auto;
    width:100%;
    max-height: 140px;  
}

.nbs-flexisel-item {
    float:left;
    margin:0;
    padding:0px;
    cursor:pointer;
    position:relative;
    line-height:0px;
}

.nbs-flexisel-item img {
    width: 100%;
    cursor: pointer;
    position: relative;
    max-width:220px;
    max-height:140px;
    background: transparent;
    border: none;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    width: 22px;
    height: 22px; 
    position: absolute;
    cursor: pointer;
    z-index: 100;
    opacity: 0.5;
}

.nbs-flexisel-nav-left {
    left: 10px;
    /*background: url(https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/button-previous.png) no-repeat;*/
}

.nbs-flexisel-nav-right {
    right: 5px;
    /*background: url(https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/button-next.png) no-repeat;*/
}


/*--------------------------------------------------------------
13.0 MEDIA QUERIES
--------------------------------------------------------------*/
/*--------------------------------------------------------------
13.0 Media Queries
--------------------------------------------------------------*/


/* === MIN-WIDTH 401PX === */

@media only screen and (min-width: 401px) {
	
	#mc_embed_signup .clear {
		margin-left: 5px;
	}
	.page-template-page-courses .entry-content .course {
		padding-top: 77%;
	}
	.single-course .section .section-inner {
		padding-top: 83%;
		padding-bottom: 25px;
	}
	#section-1,
	#section-2,
	#section-3 {
		padding: 0;
	}
}
/* === MIN-WIDTH 500PX === */

@media only screen and (min-width: 500px) {
	.flexslider { 
		margin: 0; 
	}
	.shadow {
		display: block;
	}
	.buy-button {
	  width: 350px;
	}
	.buy-button a {
	  padding: 7px 50px;
	}
	#courseweek-tagline { 
		padding-top: 50px;
	}
}
/* === MIN-WIDTH 601PX === */

@media only screen and (min-width: 601px) {
	
	
	#portal-thumbs {
		display: block;
		margin-top: 50px;
		margin-left: -2.5%;
		text-align: center;
		max-width: 1032px;
	}
	#portal-thumbs.rig li {
		display: inline-block;
    height: auto;
    min-height: 260px;
    margin: 0 0 2.5% 2.5%;
    width: 30%;
	}
	
	.home #content-inner .intro {
		border-bottom: 2px solid #DEC6DA;
	}
	
	/* === Buy Page Template === */
	
	body.page-template-buy-tickets #primary {
		border-top: 1px solid #ff989f;
	}
	
	/* === Applications Portal Template === */
		
	.participant-apps {
		height: auto;
	}
	.participant-apps img {
		vertical-align: bottom;
		border-top: 1px solid #ff989f;
	}	
	.participant-apps-inner {
		position: absolute;
		width: 50%;
		top: 20%;
		margin: 0 24%;
		color: #c63b45;
		text-transform: uppercase;
	}
	
	.participant-apps-inner .participation {
		font-family: 'Montserrat', sans-serif;
		font-size: 19px;
	}
	.participant-apps-inner .apps-date {
		font-size:  17px;
	}
	.participant-apps-inner h2 {
		font-size: 20px;
	}
	
	/* === Courseweek Template === */
	
	#courseweek-tagline { 
		padding-top: 50px;
	}
	#courseweek-tagline h2 {
		line-height: 1.6em;
	}

	.page-template-page-courses .entry-content .course.odd,
	#section-1,
	#section-3 {
		background-position: top right;
	}
	.page-template-page-courses .entry-content .course.even,
	#section-2 {
		background-position: top left;
	}
	
	/* === Realm Avatar Archive Page === */
	.flexbox {
		display: flex;
	 	flex-flow: row;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	
}

/* === MIN-WIDTH 601PX & MAX-WIDTH 768px === */
@media screen and (min-width: 601px) and (max-width: 768px) {
	.flexbox.avatars .flexitem {
		flex: 0 0 50%;
    	text-align: center;
		margin-bottom: 1.5em;
	}
}

/* samsung s7 portrait */
@media 
    (-webkit-min-device-pixel-ratio: 3)
    and (min-resolution: 192dpi) and (max-width:640px){
		.single-course .section .section-inner {
			padding-top: 25%;
			padding-bottom: 25px;
		}
}

/* samsung s7 landscape*/
@media 
    (-webkit-min-device-pixel-ratio: 3) 
    and (min-resolution: 192dpi){
		.single-course .section .section-inner {
			padding-top: 25%;
			padding-bottom: 25px;
		}
}
/* === MIN-WIDTH 736PX === */

@media only screen and (min-width: 736px) {
	
	
	.participant-apps-inner .participation {
		font-family: 'Montserrat', sans-serif;
		font-size: 22px;
	}
	.participant-apps-inner .apps-date {
		font-size:  17px;
	}
	.participant-apps-inner h2 {
		font-size: 25px;
	}
	.page-template-page-courses .entry-content .course {
		padding-top: 0;
		/*background-size: 40% auto, contain;*/
		
	}
}

/* === MIN-DEVICE-WIDTH 768PX === */
@media screen and (min-device-width: 768px) and (orientation : landscape){
	
	.buy-button-wrapper {
		display: none;
	}
	
}
/* === MIN-WIDTH 768PX === */

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

	/*===== FlexBox =====*/
	.flex-container {
		display: flex;
	}
	body {
		max-width: 100%;
		margin: 0;
		/*background: url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/drawn-line.png') left 1323px repeat-x;*/	
	}
	body.home {
    background-position: top center, center 300px;
	}
	
	#header-wrapper {
    z-index:101;
    /*position: fixed;*/
	}
	.header-image {
    width: 100%;
    vertical-align: bottom;
    /*padding-top: 115px;*/
	}
	.single-3d-artist .header-image,
	.post-type-archive-3d-artist .header-image,
	.archive .header-image,
	.page-id-14975 .header-image,
	.page-template-page-short-header .header-image,
	.page-template-page-stages .header-image,
	.page-template-page-schedule .header-image,
	.single-stage .header-image,
	.single-musician .header-image,
	.single-wisdom .header-image,
	.single-vendor .header-image,
	.single-healer .header-image,
	.single-performer .header-image,
	.single-artist .header-image,
	.single-food-vendor .header-image {
		height: 100px;
	}
	.header-image #circles-container .circle-container:first-of-type,
	.header-image #circles-container .circle-container:last-of-type {
		display: flex;
	}
	.header-image .big.circle-container {
		margin-top: -20px;
	}
	.header-image img {
		margin-top: 0;
		width: 100%;
	}
	#masthead {
		position: relative;
	}
	.site-branding {
		margin: 0 2.5%;
	}
	.site-title {
		margin: 10px 0 0;
	}
	.page-id-14975 .site-title {
		margin: 0 auto;
	}
	.main-navigation {
		float: none;
		position: absolute;
		width: 85%;
		top: 35px;
		right: 0;
	}
	.main-navigation ul {
		float: right;
		list-style: none;
		margin: 0;
		padding-left: 0;
	}
	.main-navigation li {
		float: left;
		position: relative;
		margin-left: 16px;
	}
	#site-navigation.main-navigation a {
		display: block;
		padding-top: 7px;
		text-decoration: none;
		font-family: 'Montserrat', sans-serif;
		color: #f3a83e;
		font-size: 17px;
	}
	#site-navigation.main-navigation .nav-button-buy a {
		padding: 5px 8px 4px;
		border-radius: 7px;
		/*text-transform: uppercase;*/
		font-family: 'Montserrat', sans-serif;
    color: #340019!important;
    /*font-size: 1.50rem;*/
    font-weight: 400;
    background: linear-gradient(to top, #ff9500 0%, #ffcc5d 100%);
	}
	#site-navigation.main-navigation .nav-button-buy a:hover {
		color: #510311;
		box-shadow: 0 0 10px #dea628;
	}
	.main-navigation ul ul {
		display: none;
		left: 0;
		position: absolute;
		top: 1.6em;
		background: #ffcc5d;
		z-index: 99999;
	}
	.main-navigation ul ul ul {
		left: 100%;
		top: 0;
	}
	#site-navigation.main-navigation ul ul a {
		width: 200px;
		color: #340019;
		font-weight: 400;
	}
	.main-navigation ul ul li {
		margin: 0;
		padding: 0 7px;
	}
	.main-navigation ul ul,
	.main-navigation ul ul li:last-child {
		border-radius: 0 0 7px 7px;
	}
	.main-navigation ul li li a {
		padding: 7px;
	}
	.main-navigation ul ul > li:first-child,
	.main-navigation ul ul ul > li:first-child   {
		padding-top: 5px;
		border: transparent;
	}
	.main-navigation li:hover > a {
	}
	.main-navigation ul ul :hover > a {
	}
	.main-navigation ul ul a:hover {
	}
	.main-navigation ul li:hover > ul {
			display: block;
		}

	#site-navigation.main-navigation ul .current_page_item > a,
	#site-navigation.main-navigation ul .current-menu-item > a,
	#site-navigation.main-navigation ul li  > a:hover {
		color: #ffdc86;
	}
	#site-navigation.main-navigation .nav-button-buy a:hover {
		color: #ffdc86;
	}
	#site-navigation.main-navigation ul li li.current_page_item a,
	#site-navigation.main-navigation ul li li.current-menu-item a,
	#site-navigation.main-navigation ul li li > a:hover {
		color: #340019;
		border: transparent;
	}
	
	#site-navigation.main-navigation ul li li.current_page_item,
	#site-navigation.main-navigation ul li li.current-menu-item,
	#site-navigation.main-navigation ul li li:hover,
	#site-navigation.main-navigation ul li li:hover {
		background: #ffdc86;
		border: transparent;
	}
		
		
	/*--------------------------------------------------------------
	10. Content
	--------------------------------------------------------------*/
	#content {
		margin: 0 2.5%;
	}
	#content {
		min-height: 650px;
		margin: 0 auto;
	}
	#content-inner {
		margin-top: 35px;
		margin-bottom: 50px;
	}
	.has-sidebar #primary {
		float: left;
		width: 69%;
	}
	.has-sidebar #secondary {
		float: right;
		width: 27%;
		margin-top: 37px;
		padding: 0 0 0 3%;
		border-left: 2px solid #efb9b5;
	}
	
	#colophon {
		font-size: 14px;
		text-align: center;
		color: #9c4558;
	}
	#colophon .site-info {
		padding: 10px 0;
	}
	
	/*--------------------------------------------------------------
	10.3 Pages and Posts
	--------------------------------------------------------------*/
	.page-id-10712 h2{
		text-align: left;
	}
	/*--------------------------------------------------------------
	10.4 Page Templates
	--------------------------------------------------------------*/
	
	
	
	/*===== Front Page ======*/
	
	.home #content,
	.page-template-page-realm-cornerstone #content {
		/*padding-top: 75px;*/
	}
	.details-wrapper {
		padding-top: 115px;
	}
	.home .details {
		top: 100px;
	}
	.section-inner {
		margin: 0 5%;
	}
	#home-date-location-section {
		/*padding-top: 30px;*/
	}
	#home-intro-section {
		padding: 25px 0 50px;
	}
	.intro-text {
		text-align: left;
		overflow: auto;
	}
	#video-section .flex-container {
		display: block;
	}
	#video-section img {
	  margin-right: 0;
	}
	
	.call-outs-inner {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
	.call-out-block {
		padding: 45px 2.5%;
		text-align: center;
		flex-grow: 1;
		min-height: 300px;
		width: 30%;

	}
	/*.call-out-heading {
		color: #b95a3f;
		text-shadow: 0 0 3px #f8ac5f;
	}*/
	.call-out-block p {
		font-size: 1.438rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-shadow: 0 0 3px #f8ac5f;
	}
	.call-faqs {
		background: url('images/faq-bg.png') bottom center no-repeat;
	}
	.call-leave-it-better {
		background: url('images/leave-it-better-bg.png') bottom center no-repeat;
	}
	.call-community-site {
		background: url('images/community-bg.png') bottom center no-repeat;
	}
	.featured-section-1 {
		clear: both;
		overflow: auto;
		background: url('images/realm-panel-bg.jpg');
		border-top: 3px solid #bf3e0d;
		border-bottom: 3px solid #bf3e0d;
	}
	.home-featured-content {
		margin: 0;
	}
	.featured-section-1 .featured-content-text {
		float: right;
		width: 45%;
		margin: 0;
		padding-top: 45px;
	}
	.featured-section-1 .home-featured-heading {
		/*font-family: 'Montserrat', sans-serif;*/
		margin-bottom: 0;
		font-size: 36px;
		color: #fbf8ef;
    text-shadow: 0px 0px 10px #561616;
	}
	.featured-section-1 .featured-content-text p {
		font-size: 21px;
		font-family: 'Montserrat', sans-serif;
	}
	.content-1 {
		overflow: hidden;
	}
	.content-1 img {
		border-bottom: none;
	}
	#video-section {
		padding: 50px 0 65px;
	}
	
	#courseweek-call-section {
		padding-top: 0;
	}
	.courseweek-call-inner {
		padding: 120px 0 60px;
		background-position: 200px bottom;
	}
	.courseweek-call-inner .featured-content-text {
		padding-bottom: 40px;
	}
	.courseweek-call-text {
		width: 55%;
	}
	

	#subsidiary-wrapper {
		margin-top: 100px;
		padding-top: 30px;
		background: url('images/subsidiary-bg-green.png') top left repeat-x;
		overflow: auto;
	}
	.module {
		float: left;
		width: 32%;
		margin-left: 2%;
		color: #fff;
	}
	.module:first-child {
		margin-left: 0;
	}
	.module ul {
		margin-left: 0;
		list-style: none;
	}
	#subsidiary .widget-title {
		color: #fff;
	}
	#home-event img {
		display: inline-block;
		float: left;
		width: 225px;
	}
	#home-event .event-details {
		float: right;
		width: 75%;
	}
	.home-event-block-title {
		margin-bottom: 60px;
	}
	.event-excerpt .wow {
		margin: 0;
	}
	/* Flexisel */
	.nbs-flexisel-item {
	    margin:0 10px;
	    height: auto;
	}
	
	/*=== REALMS ===*/
	
	/*== Realms Archive ==*/
	
	.realm-card.app-portal {
		float: left;
		width: 47%;
		margin-bottom: 0;
	}
	.realm-text {
		float: right;
		width: 50%;
		padding-top: 0;
		border-top: none;
	}
	
	/*== Realms Single ==*/
	
	.attachment-stage-thumb {
		width: 175px;
		float: left;
		margin: 0 15px 20px 0;
	}
	#connected-environments ul li h4 {
		text-align: left;
	}
	/*== Realms Avatar Archive ==*/
	
	/*.flexbox.avatars .flexitem:nth-child(4) {
		margin-right: 3%;
	}*/
	
	/*== Co-author Page Template ==*/
	.page-template-page-realm-cornerstone .section-heading {
		text-align: left;
	}
	.seven-things-years li {
		min-height: 250px;
		padding: 20px 0 30px;
	}
	.seven-things-years li:first-child {
		/*background: url('images/lucidity-awake-in-dreams-bg.png') right 50px no-repeat;*/
	}
	.seven-flex-container {
		display: flex;
		justify-content: space-between;
	}
	.seven-image {
		flex-grow: 1;
		max-width: 28%;
	}
	.timeline-text {
		flex-grow: 3;
		max-width: 69%;
	}
	.timeline-text p {
		font-size: 1.25rem;
		line-height: 1.6em;
	}
	.timeline-logo {
		margin: 2em auto .7em;
		padding-top: 40px;
	}
	/*=== Participant Templates ===*/
	/*== Participant Archive list ==*/
	
	
	.participant-archive {
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		margin-left: -3.2%;
	}
	.participant-archive li {
		width: 30%;
		max-width: 30%;
		min-height: 410px;
		margin: 14px 0 20px 3.2%;
		/*background: url('images/body-spiral-bg-blue-small.jpg') center -200px no-repeat;*/
    border-radius: 5px 5px 15px 15px;
    /* border: 4px solid #e8ac50; */
    text-align: center;
	}
	/*.participant-archive li:first-child,
	.participant-archive li:nth-child(3n+1) {
		margin-left: 0;
	}*/
	/*=== Participant Single ===*/
	.single-workshop .entry-content,
	.single-artist .entry-content,
	.single-healer .entry-content {
		margin-top: 80px;
	}
	.participant-wrapper {
		display: flex;
	}
	.participant-meta.flex-item {
		width: 54%;
		max-width: 700px;
		margin: 0 auto 25px;
    margin-left: 0;
	}
	.participant-bio.flex-item {
		width: 42%;
	}
	.participant-meta-inner {
		background: url('images/realm-spiral-bg.jpg') center 300px no-repeat;
	 }
	.participant-meta img {
		width: 100%;
	  border-radius: 5px 5px 0 0;
	}
	.participant-wrapper .entry-title {
		text-align: left;
	}
	
	/*=== Custom Post Type Vendors ===*/
	.food-vendor .entry-summary {
		margin-top: 0;
	}
	.attachment-vendor-image {
		float: left;
		width: 350px;
		margin: 0 1.5em 1.5em 0;
	}
	
	/* === Custom Post Type Stages & Environments === */
	
	.page-template-page-stages-php article {
		clear: both;
		overflow: visible;
	}
	.page-template-page-stages-php .stage img {
    display: block;
    float: left;
    margin: 0 15px 15px 0;
	}
	.page-template-page-stages-php .stage h2 {
		text-align: left;
	}
	.see-who-what {
		margin-top: 15px;
	}
	.more-info {
		text-align: left;
	}
	.description img {
		float: left;
		margin: 0 15px 15px 0;
	}	
	.performer-list {
		clear: both;
		overflow: auto;
	}					
	.activity {
		float: left;
    width: 200px;
    margin-left: 15px;
	}
	.activity:first-of-type {
		margin-left: 0;
	}
	.schedule-list,
	.stages-list {
		width: 50%;
	}
	
	/* === Courseweek Overview Page Templates === */
	.course-list li a {
		font-size: 28px;
	}
	ul.course-list li span a {
		font-size: 1.2rem;
	}
	/* === Courseweek Single Course Page Templates === */
	
	.instructor-wrapper:last-child {
		margin-right: 0;
	}
	.single-course .entry-title {
		font-size: 4.5rem;
	}
	.single-course .entry-subtitle {
		font-size: 4.5rem;
	}
	.postid-13563 .instructor ul {
		/*display: flex;
		flex-wrap: wrap;
		justify-content: space-between;*/
		flex-flow: column wrap; /* Shorthand ? you could use ?flex-direction: column? and ?flex-wrap: wrap? instead */
	  justify-content: flex-start;
	  align-items: flex-start;
	}
	#post-7888 .instructor ul li,
	#post-1545 .instructor ul li,
	#post-1541 .instructor ul li,
	#post-1518 .instructor ul li,
	#post-1543 .instructor ul li {
		width: 100%;
	}
	.postid-13563 .instructor ul li {
		position: relative;
		max-width: 32%;
		height: 100%;
		margin-right: 1.5%;
	}
	.postid-13563 .instructor ul li:nth-child(3) {
		margin-right: 0;
	}
	/*#post-7888 .instructor-bio,
	#post-1545 .instructor-bio,
	#post-1541 .instructor-bio,
	#post-1518 .instructor-bio,
	#post-1543 .instructor-bio {
		/*float: right;
    width: 66%;
    min-height: 350px;
    border-radius: 0 3px 13px 0;
	}*/
	#post-7888 .instructor-image-wrapper,
	#post-1545 .instructor-image-wrapper,
	#post-1541 .instructor-image-wrapper,
	#post-1518 .instructor-image-wrapper,
	#post-1543 .instructor-image-wrapper {
    display: block;
    /*margin-left: 2%;*/
	}
	#course_to_courseweek-class_list {
		list-style: none;
	}
	#course_to_courseweek-class_list li {
		margin-bottom: 1.1em;
		line-height: 1.1em;
	}
	
	/* === Applications Portal Page Template === */
	
	.buy-button {
		position: absolute;
    top:340px;
    margin: 0 auto;
	}

	
	/* === Application Forms  === */

	.application-form .entry-title {
		max-width: 700px;
		margin: 0 auto .5em;
	}
	
	/* === Video Archive Page Template  === */
	
	.video-container.flex-container {
		flex-wrap: wrap;
		justify-content: center;
	}
	.video-container .flex-item {
		flex-basis: 30%;
		margin: 1.5%;
	}
	/* === 2020 Buy Tickets Landing Page  === */
	
	section.hero-image {
		min-height: 650px;
		padding: 270px 0 0;
    background-image: url('images/buy-ticket-hero-03.jpg'), url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/wood-background-test-03.jpg');
    background-position:  top center,  top center;
    background-repeat: no-repeat;
	}
	
	/**
 	* Formidable Plugin
 	* --------------------------------------------------------------------------- */
 
	.frm_forms.frm_style_formidable-style.with_frm_style {
		max-width: 700px;
		margin: 0 auto;
	}
	
	/**
 	* Heads Up Bar
 	* --------------------------------------------------------------------------- */
	div#ehu-bar.ehu-bottom-fixed,
	div#ehu-bar {
		display: none;
	}
	
	/**
 	* Mailchimp Plugin
 	* --------------------------------------------------------------------------- */
	
	.home #mc_embed_signup {
		position: relative;
		width: 100%;
	}
	#mc_embed_signup h4 {
		margin-bottom: 0;
	}
	#mc_embed_signup .mc-field-group {
    width: 80%;
    margin-right: 5px;
    padding-bottom: 0;
    min-height: 0;
	}
	.popmake #mc_embed_signup .mc-field-group {
		width: 100%;
	}
	.home #mc_embed_signup label {
		display: block;
		margin: 0;
	}
	#mc_embed_signup .email-submit {
		height: 40px;
	}
	.email-field {
		float: left;
		width: 75%;
	}
	
	#mc_embed_signup .clear {
		float: left;
		width: 41px;
		margin-left: 5px;
		clear: none;
	}
	#mc_embed_signup input[type="submit"] {
		float: right;
	}
	#courseweek-call-section #mc_embed_signup input[type="submit"] {
		float: left!important;
	}
	#mc_embed_signup input[type="submit"]:hover {
		font-family: 'Montserrat', sans-serif;	
	}
	/*#mc_embed_signup input[type="email"] {
		width: 100%;
		height: 45px;
		margin: 0;
		padding: 8px 10px;
		border: none;
		border-radius: 5px 0 0 5px;
		-webkit-border-radius: 5px 0 0 5px;
		-o-border-radius: 5px 0 0 5px;
		background: #c0d0b1;
		color: #fff;
		behavior: url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/PIE.php');
	}*/
	#mc_embed_signup input[type="email"]:focus {
		background: #a2b68f;
	}
	
	.home .mc-field-group h3 {
		margin-bottom: 10px;
	}
	.input-group {
		margin: 10px 0 5px;
		overflow: hidden;
	}
	.input-group ul {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: center;
	}
	.input-group ul li {
		display: inline-block;
		margin: 0 10px 0 0;
	}
	.input-group ul li input {
		margin: 0 3px 0 0;
	}
	
	/**
 * RSS Aggregator Plugin
 * --------------------------------------------------------------------------- */
	ul.rss-aggregator {
		width: 60%;
		margin: 0;
	}
	/**
 * Whistles Plugin
 * --------------------------------------------------------------------------- */
	/* Title for individual section. */
	.whistles-toggle .whistle-title,
	.whistles-accordion .whistle-title {
		font-size: 25px;
	}
	/**
 * jQuery Plugins
 * --------------------------------------------------------------------------- */
	.home .flexslider {
		/*padding: 115px 0 0 0;*/
	}

}

/* === MIN-WIDTH 769PX === */

@media only screen and (min-width: 769px) {
	
	#mega-menu {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	/* === Flexbox === */
	.flex-container {
		display: flex;
	}

	/* === Front Page Template === */
	.details-wrapper {
		padding-top: 0;
	}
	.home .details {
		top: 75px;
	}
	#video-section .flex-container {
		display: flex;
		justify-content: space-between;
		margin-top: 40px;
	}
	#video-section .flex-item {
		max-width: 57%;
	}
	#video-section .flex-item.video-image {
		max-width: 40%
	}
	/*=== AVATARS ARCHIVE ===*/
	.flexbox.avatars .flexitem {
		flex: 0 0 30%;
    	margin: 0 1.5%;
	}
}
/* === MIN-WIDTH 800PX === */

@media only screen and (min-width: 800px) {
	.portal-intro {
		width: 100%;
		margin: 0 auto;
	}
	
	#content {
		/*background:  url('images/pattern-top-left.png') -100px 0px no-repeat, url('images/pattern-top-right.png') right -100px no-repeat, url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/pattern-bottom-left.png') -100px bottom no-repeat, url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/pattern-bottom-right.png') bottom right no-repeat;*/
	}
	/*#content.short-page {
		
	}*/
	.home #content,
	.page-template-page-realm-cornerstone #content {
		padding: 0;
	}
	.content-1 {
		background-position: 0 0;
		
	}
	
	#mega-menu {
		clear: both;
	}
	#mega-menu-inner {
		margin: 0 2.5%;
	}
	
	.block {
		float: left;
		width: 30%;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	#social-media.block {
		padding-bottom: 0;
		width: 25%;
	}
	#get-in-touch {
		width: 40%
	}
	#mega-menu #mail-chimp {
		float: right;
		width: 35%;
	}
	#mega-menu #mc_embed_signup input[type="email"] {
    width: 100%;
	}
  #colophon {
		margin-top: 0;
	}
	
	/* === Front Page Template === */
	.featured-section-1 .featured-content-image {
		margin-top: 100px;
	}
	/* === Course List Page Template === */
	
		
	/* === Buy Tickets 2017 === */
	
	.participant-apps {
		height: auto;
	}
	
	.participant-apps-inner {
    font-size: 100%;
	}
	
	.buy-button {
    top: 365px;
   }
	
}

/* === MIN-WIDTH 900PX === */

@media only screen and (min-width: 900px) {
	
	.buy-button {
    top: 400px;
   }
	.courseweek-call-inner {
		background-position: bottom right;
	}
}

/* === MIN-WIDTH 1000PX === */

@media only screen and (min-width: 1000px) {
	.buy-button {
    top: 425px;
   }
	
}
/* === MIN-WIDTH 1100PX === */

@media only screen and (min-width: 1100px) {
	
	#masthead,
	.site-branding, 		
	#primary,
	#sub-content,
	.site-info,
	.section-inner,
	#mega-menu-inner,
	.course-header-inner,
	.single-course .section-inner {
		max-width: 1100px;
		margin: 0 auto;
	}
	.page-template-page-courses #primary,
	.single-course #primary,
	.page-template-page-realm-cornerstone #primary,
	.page-template-page-villages #primary {
		max-width: 100%;
	}
	.page-template-page-courses .entry-content #course-overview,
	.page-template-page-courses .hentry .entry-header,
	.page-template-page-realm-cornerstone .entry-header,
	.hentry .courseweek-tagline-inner,
	.call-out,
	.call-out .section-inner,
	.instructor-intro .section-inner,
	#instructor-bio .section-inner,
	#content-inner {
		margin: 0 auto;
		max-width: 1100px;
	}
	
	.single-course .call-out {
		max-width: 100%;
	}
	.page-template-page-courses .course img {
		/*width: 500px;
		margin: 0;*/
	}
	.single-courseweek-class #primary {
		float: left;
		width: 70%;
	}
	#content-inner {
		margin: 40px auto 50px;
		overflow: visible;
		/*padding-top: 150px;*/
	}
	.page-id-23882 #content-inner {
		padding-top: 0;
	}
	.page-template-page-coming-soon #content-inner {
		max-width: 100%;
		margin-bottom: 0;
	}
	.single-course #content-inner {
		margin-bottom: 0;
		padding-top: 0;
		max-width: 100%;
	}
	.home #content-inner,
	.page-template-page-villages #content-inner,
	.page-template-page-realm-cornerstone #content-inner {
		margin: 0 auto;
		border-bottom: none;
		max-width: 100%;
	}
	.page-template-page-villages .entry-content-wrapper {
		margin-top: 35px;
	}
	.home #primary,
	.page-template-page-realm-cornerstone #primary {
		width: 100%;
		max-width: 100%;
	}
	.buy-button {
    top: 450px;
   }
	#primary {
		background: none;
	}
	.participant-apps-inner .participation {
		font-size: 3px;
	}
	.participant-apps-inner .apps-date {
		font-size:  17px;
	}
	.participant-apps-inner h2 {
		font-size: 35px;
	}
}

	
/* === MIN-WIDTH 1100PX === */

@media only screen and (min-width: 1100px) {
	.buy-button {
		top: 475px;
	}
	
}
/* === MIN-WIDTH 1200PX === */

@media only screen and (min-width: 1200px) {
	.buy-button {
		top: 530px;
	}
	.participant-apps-inner {
		font-size: 100%;
	}
	
	#content {
		/*background:  url('images/pattern-top-left.png') -100px 0px no-repeat, url('images/pattern-top-right.png') right -100px no-repeat, url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/pattern-bottom-left.png') -100px bottom no-repeat, url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/pattern-bottom-right.png') bottom right no-repeat, url('https://lucidityfestival.com/wp-content/themes/lucidity-2020/images/pattern-middle.jpg') top center repeat-y;
	}
	.home #content {
		background-position: -100px 300px, right 300px, left 0px bottom 600px, right 0px bottom 600px, top center;
	*/ }
	
}

/* === MIN-WIDTH 1400PX === */

@media only screen and (min-width: 1400px) {
	
	.buy-button {
		top: 625px;
	}
	.participant-apps-inner .participation {
		font-size: 3px;
		font-size:5rem;
	}
	.participant-apps-inner .apps-date {
		font-size:  17px;
		font-size: 2.7rem;
	}
	.participant-apps-inner h2 {
		font-size: 35px;
		font-size: 5rem;
	}
}

/* === MIN-WIDTH 1600PX === */
@media only screen and (min-width: 1600px) {
	
	.buy-button {
		top: 700px;
  }
}