@charset "UTF-8";
/*!
Theme Name: W139
Theme URI: http://underscores.me/
Author: Heerko van der Kooij
Author URI: https://swummoq.net
Description: Theme for W139
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: w139
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

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

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/* Media queries */
/*
Default wordpress theme breakpoints 
Name 	Pixel Width
huge 	1440
wide 	1280
large 	960
medium 	782
small 	600
mobile 	480

*/
/* 
 * Debug the queries using :before content on the body 
 * Enable by adding the class "debug" to the body
 */
/* line 26, sass/abstracts/media-queries/_media-queries.scss */
body.debug::before {
	content: "default";
	display: block;
	position: fixed;
	font-size: 1rem;
	border: 1px solid black;
	background-color: white;
	top: 1rem;
	left: 50%;
	padding: 0 0.5rem;
	transform: translateX(-50%);
	z-index: 1000;
}

@media (max-width: 600px) {
	/* line 41, sass/abstracts/media-queries/_media-queries.scss */
	body.debug:before {
		content: "mobile-viewport";
		display: block;
	}
}

@media (min-width: 600px) {
	/* line 48, sass/abstracts/media-queries/_media-queries.scss */
	body.debug:before {
		content: "small-viewport";
		display: block;
	}
}

@media (min-width: 782px) {
	/* line 55, sass/abstracts/media-queries/_media-queries.scss */
	body.debug:before {
		content: "medium-viewport";
		display: block;
	}
}

@media (min-width: 960px) {
	/* line 62, sass/abstracts/media-queries/_media-queries.scss */
	body.debug:before {
		content: "large-viewport";
		display: block;
	}
}

@media (min-width: 1280px) {
	/* line 69, sass/abstracts/media-queries/_media-queries.scss */
	body.debug:before {
		content: "xlarge-viewport";
		display: block;
	}
}

@media (min-width: 1440px) {
	/* line 76, sass/abstracts/media-queries/_media-queries.scss */
	body.debug:before {
		content: "xxlarge-viewport";
		display: block;
	}
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
/* line 11, sass/generic/_normalize.scss */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
/* line 23, sass/generic/_normalize.scss */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
/* line 31, sass/generic/_normalize.scss */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* line 40, sass/generic/_normalize.scss */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
/* line 53, sass/generic/_normalize.scss */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 64, sass/generic/_normalize.scss */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
/* line 76, sass/generic/_normalize.scss */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/* line 85, sass/generic/_normalize.scss */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/* line 95, sass/generic/_normalize.scss */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 105, sass/generic/_normalize.scss */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
/* line 116, sass/generic/_normalize.scss */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
/* line 125, sass/generic/_normalize.scss */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

/* line 133, sass/generic/_normalize.scss */
sub {
	bottom: -0.25em;
}

/* line 137, sass/generic/_normalize.scss */
sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
/* line 148, sass/generic/_normalize.scss */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
/* line 160, sass/generic/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
/* line 176, sass/generic/_normalize.scss */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
/* line 186, sass/generic/_normalize.scss */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
/* line 195, sass/generic/_normalize.scss */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
/* line 206, sass/generic/_normalize.scss */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
/* line 218, sass/generic/_normalize.scss */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
/* line 229, sass/generic/_normalize.scss */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
/* line 240, sass/generic/_normalize.scss */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
/* line 253, sass/generic/_normalize.scss */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
/* line 261, sass/generic/_normalize.scss */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
/* line 270, sass/generic/_normalize.scss */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
/* line 280, sass/generic/_normalize.scss */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
/* line 290, sass/generic/_normalize.scss */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
/* line 299, sass/generic/_normalize.scss */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
/* line 308, sass/generic/_normalize.scss */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
/* line 320, sass/generic/_normalize.scss */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
/* line 328, sass/generic/_normalize.scss */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
/* line 339, sass/generic/_normalize.scss */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
/* line 347, sass/generic/_normalize.scss */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
/* line 3, sass/generic/_box-sizing.scss */
*,
*::before,
*::after {
	box-sizing: inherit;
}

/* line 9, sass/generic/_box-sizing.scss */
html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
/* load fonts */
/* assets/fonts/OrganizedKonfusion.woff */
@font-face {
	font-family: 'OrganizedKonfusion';
	src: url("assets/fonts/OrganizedKonfusion.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

/* assets/fonts/AUTHENTIC_SANS/woff/AUTHENTICSans-60.woff & assets/fonts/AUTHENTIC_SANS/woff/AUTHENTICSans-60.woff2 */
@font-face {
	font-family: 'authentic_sans';
	src: url("assets/fonts/AUTHENTIC_SANS/woff/AUTHENTICSans-90.woff2") format("woff2"), url("assets/fonts/AUTHENTIC_SANS/woff/AUTHENTICSans-60.woff") format("woff");
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'authentic_sans';
	src: url("assets/fonts/AUTHENTIC_SANS/woff/AUTHENTICSans-150.woff2") format("woff2"), url("assets/fonts/AUTHENTIC_SANS/woff/AUTHENTICSans-150.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'authentic_sans_condensed';
	src: url("assets/fonts/AUTHENTIC_SANS/otf/AUTHENTICSans-Condensed-90.otf") format("opentype");
	font-weight: 600;
}

@font-face {
	font-family: 'authentic_sans_condensed';
	src: url("assets/fonts/AUTHENTIC_SANS/otf/AUTHENTICSans-Condensed-150.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
}

/* set base font size */
/* line 4, sass/base/typography/_typography.scss */
html {
	font-size: 62.5%;
}

/* line 8, sass/base/typography/_typography.scss */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "authentic_sans_condensed", -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 2.5rem;
	line-height: 1.5;
}

/* line 20, sass/base/typography/_typography.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "authentic_sans_condensed", -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-weight: normal;
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

/* line 1, sass/base/typography/_headings.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

/* line 1, sass/base/typography/_copy.scss */
p {
	margin-bottom: 1.5em;
}

/* line 5, sass/base/typography/_copy.scss */
dfn,
cite,
em,
i {
	font-style: normal;
	/* authentic sans does not have italics */
}

/* line 12, sass/base/typography/_copy.scss */
blockquote {
	margin: 0 1.5em;
}

/* line 16, sass/base/typography/_copy.scss */
address {
	margin: 0 0 1.5em;
}

/* line 20, sass/base/typography/_copy.scss */
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

/* line 30, sass/base/typography/_copy.scss */
code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

/* line 37, sass/base/typography/_copy.scss */
abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

/* line 43, sass/base/typography/_copy.scss */
mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

/* line 49, sass/base/typography/_copy.scss */
big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
/* line 1, sass/base/elements/_html.scss */
html {
	scroll-behavior: smooth;
}

/* line 1, sass/base/elements/_body.scss */
body {
	background: #fff;
}

/* line 1, sass/base/elements/_hr.scss */
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

/* line 1, sass/base/elements/_lists.scss */
ul,
ol {
	margin: 0 0 1.5em 3em;
}

/* line 6, sass/base/elements/_lists.scss */
ul {
	list-style: disc;
}

/* line 10, sass/base/elements/_lists.scss */
ol {
	list-style: decimal;
}

/* line 14, sass/base/elements/_lists.scss */
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

/* line 20, sass/base/elements/_lists.scss */
dt {
	font-weight: 700;
}

/* line 24, sass/base/elements/_lists.scss */
dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
/* line 2, sass/base/elements/_media.scss */
embed,
iframe,
object {
	max-width: 100%;
}

/* line 8, sass/base/elements/_media.scss */
img {
	height: auto;
	max-width: 100%;
}

/* line 13, sass/base/elements/_media.scss */
figure {
	margin: 1em 0;
}

/* line 1, sass/base/elements/_tables.scss */
table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
/* line 1, sass/base/elements/_links.scss */
a {
	color: #4169e1;
}

/* line 4, sass/base/elements/_links.scss */
a:visited {
	color: #800080;
}

/* line 8, sass/base/elements/_links.scss */
a:hover, a:focus, a:active {
	color: #191970;
}

/* line 14, sass/base/elements/_links.scss */
a:focus {
	outline: thin dotted;
}

/* line 18, sass/base/elements/_links.scss */
a:hover, a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
/* line 1, sass/base/elements/_buttons.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

/* line 13, sass/base/elements/_buttons.scss */
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

/* line 17, sass/base/elements/_buttons.scss */
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

/* line 1, sass/base/elements/_fields.scss */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

/* line 22, sass/base/elements/_fields.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

/* line 27, sass/base/elements/_fields.scss */
select {
	border: 1px solid #ccc;
}

/* line 31, sass/base/elements/_fields.scss */
textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
	/* line 2, sass/layouts/_global.css */
	.site {
		display: grid;
		grid-template-columns: auto;
		grid-template-areas: "header" "main" "footer";
	}
	/* line 11, sass/layouts/_global.css */
	.site-main {
		grid-area: main;
		overflow: hidden;
		/* Resolves issue with <pre> elements forcing full width. */
	}
	/* line 17, sass/layouts/_global.css */
	.site-footer {
		grid-area: footer;
	}
}

/* line 22, sass/layouts/_global.css */
.wpml-ls-statics-footer,
.otgs-development-site-front-end {
	display: none;
}

/* line 1, sass/layouts/_home.scss */
.home {
	scroll-behavior: smooth;
}

/* line 4, sass/layouts/_home.scss */
.home .current-event-column {
	padding: 0 2rem;
}

/* line 8, sass/layouts/_home.scss */
.home .past-link {
	display: none;
	color: var(--color__text-main);
	position: absolute;
	bottom: calc( 4rem + 1rem);
	right: 2rem;
	font-size: 2em;
	display: block;
	text-align: center;
}

/* line 19, sass/layouts/_home.scss */
.home .past-link .arrow {
	display: block;
	text-align: center;
	text-decoration: none;
	font-family: 'Times New Roman', Times, serif;
	font-size: 0.75em;
	margin-top: -0.7em;
}

@media (min-width: 782px) {
	/* line 34, sass/layouts/_home.scss */
	.home .events-container {
		display: flex;
		height: calc(100vh - calc(8rem + 4rem));
		overflow: hidden;
	}
	/* line 40, sass/layouts/_home.scss */
	.home .current-event-column {
		border-right: 1px solid black;
	}
	/* line 44, sass/layouts/_home.scss */
	.home .current-event-column,
	.home .future-events-column {
		flex: 1;
		overflow-y: auto;
		/* To make them scrollable */
		position: relative;
		padding-top: 1rem;
	}
	/* line 54, sass/layouts/_home.scss */
	.home .past-events-column {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		grid-gap: 16px;
	}
	/* line 61, sass/layouts/_home.scss */
	.home .past-events {
		margin-top: 0;
	}
	/* line 65, sass/layouts/_home.scss */
	.home .past-events .event {
		width: 33.33333%;
		padding: 2rem;
		float: left;
		overflow: hidden;
	}
	/* line 74, sass/layouts/_home.scss */
	.home .past-link {
		display: block;
	}
}

/* line 86, sass/layouts/_home.scss */
.wpml-ls-statics-footer,
.otgs-development-site-front-end {
	display: none;
}

@media (min-width: 782px) {
	/* line 93, sass/layouts/_home.scss */
	.past-events {
		/* three columns. draw 1px wide line to indicate the columns */
	}
	/* line 96, sass/layouts/_home.scss */
	.past-events::before {
		content: "";
		position: absolute;
		width: 1px;
		height: 100%;
		top: 0;
		left: 33.333%;
		border-left: 1px solid black;
	}
	/* line 106, sass/layouts/_home.scss */
	.past-events::after {
		content: "";
		position: absolute;
		width: 1px;
		height: 100%;
		top: 0;
		left: 66.666%;
		border-left: 1px solid black;
	}
}

/**
 * Event
 * 
 * Overwrite default styles for The Events Calendar plugin
 */
/* line 7, sass/layouts/_events.scss */
#tribe-events-pg-template {
	max-width: unset;
	margin: 0;
	padding: 0;
}

/**
 * Single Event
 */
/* line 16, sass/layouts/_events.scss */
article.tribe-events-single {
	display: flex;
	justify-content: space-between;
}

/* line 21, sass/layouts/_events.scss */
article.tribe-events-single section {
	flex: 1;
	/* give some space between columns */
	padding: 1rem;
	border-right: 1px solid black;
}

/* line 29, sass/layouts/_events.scss */
article.tribe-events-single aside {
	flex: 1;
	/* give some space between columns */
	padding: 1rem;
	border-left: 1px solid black;
	margin-left: -1px;
	/* to make the border meet */
}

/**
 * Current Events list, homepage
 */
/* line 45, sass/layouts/_events.scss */
.events-current .event .event-tags {
	font-size: .75em;
	font-weight: bold;
	font-family: "authentic_sans", -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* line 51, sass/layouts/_events.scss */
.events-current .event .event-date {
	font-size: 1.5em;
}

/* line 55, sass/layouts/_events.scss */
.events-current .event .event-title {
	font-size: 8rem;
	text-align: center;
	margin: 0 5rem;
}

/* line 61, sass/layouts/_events.scss */
.events-current .event .event-artists {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 1.25em;
}

/* line 67, sass/layouts/_events.scss */
.events-current .event .event-thumb img {
	border-radius: 2rem;
}

/**
 * Future Events list, homepage
 */
/* line 77, sass/layouts/_events.scss */
.events-future .event {
	display: grid;
	grid-template-areas: "thumb date title" "thumb date content";
	grid-gap: 1rem;
	padding: 2rem 2rem 0 2rem;
	border-bottom: 1px solid black;
}

/* line 86, sass/layouts/_events.scss */
.events-future .event .event-date {
	grid-area: date;
	grid-row-start: 1;
	grid-row-end: 3;
	/* This makes it span two rows */
	text-align: right;
}

/* line 93, sass/layouts/_events.scss */
.events-future .event .event-date .Y {
	display: block;
}

/* line 98, sass/layouts/_events.scss */
.events-future .event .event-thumb {
	grid-area: thumb;
	grid-row-start: 1;
	grid-row-end: 3;
}

/* line 103, sass/layouts/_events.scss */
.events-future .event .event-thumb img {
	border-radius: 1rem;
}

/* line 108, sass/layouts/_events.scss */
.events-future .event .event-title {
	grid-area: title;
	text-decoration: none;
	color: #404040;
}

/* line 114, sass/layouts/_events.scss */
.events-future .event .event-content {
	grid-area: content;
}

/* line 118, sass/layouts/_events.scss */
.events-future .event .event-tags,
.events-future .event .event-artists {
	display: none;
}

@media (min-width: 1280px) {
	/* line 127, sass/layouts/_events.scss */
	.events-future .event {
		padding: 2rem 20% 0 2rem;
	}
}

/**
 * Past Events list, homepage
 */
/* line 137, sass/layouts/_events.scss */
.past-events {
	border-top: 1px solid black;
	position: relative;
	/* three columns. draw 1px wide line to indicate the columns */
}

/* line 142, sass/layouts/_events.scss */
.past-events .event {
	border-bottom: 1px solid black;
}

/* line 146, sass/layouts/_events.scss */
.past-events h2 {
	margin-top: 1rem;
	margin-left: 1rem;
}

/* line 2, sass/layouts/_site-header.scss */
.site-header {
	grid-area: header;
	display: flex;
	flex-direction: row;
	z-index: 1;
	justify-content: space-between;
	align-items: center;
	height: 8rem;
	border-bottom: 1px solid black;
	/* style the button.menu-toggle so that it look like a hamburger menu */
}

/* line 14, sass/layouts/_site-header.scss */
.site-header .custom-logo-link img {
	height: 3rem;
	width: auto;
	margin: 0.5rem;
}

/* line 22, sass/layouts/_site-header.scss */
.site-header .menu-toggle {
	display: block;
	z-index: 1;
	position: relative;
	border: none;
	width: 3rem;
	height: 3rem;
	color: transparent;
	overflow: hidden;
	right: 1rem;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}

/* line 36, sass/layouts/_site-header.scss */
.site-header .menu-toggle span {
	display: block;
	position: absolute;
	background: #000;
	color: transparent;
	top: 50%;
	left: 50%;
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	/* style as dot like the button */
}

/* line 52, sass/layouts/_site-header.scss */
.site-header .menu-toggle span::before, .site-header .menu-toggle span::after {
	content: "";
	display: block;
	position: absolute;
	left: 0rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #000;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 68, sass/layouts/_site-header.scss */
.site-header .menu-toggle span::before {
	top: -0.9rem;
}

/* line 72, sass/layouts/_site-header.scss */
.site-header .menu-toggle span::after {
	top: 0.9rem;
}

/* line 81, sass/layouts/_site-header.scss */
.site-header .toggled .menu-toggle span {
	background-color: transparent;
	transform: translate(0%, -50%);
}

/* line 84, sass/layouts/_site-header.scss */
.site-header .toggled .menu-toggle span::before, .site-header .toggled .menu-toggle span::after {
	content: "";
	display: block;
	position: absolute;
	left: 0rem;
	top: -1.5rem;
	width: 0.1rem;
	height: 3.5rem;
	border-radius: 0;
	background: #000;
	transform: rotateZ(45deg);
}

/* line 102, sass/layouts/_site-header.scss */
.site-header .toggled .menu-toggle span::after {
	transform: rotateZ(-45deg);
}

/* line 1, sass/layouts/_site-footer.scss */
.site-footer {
	position: fixed;
	bottom: 0;
	background-color: red;
	width: 100%;
	font-size: 2rem;
	border-top: 1px solid black;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
/* line 1, sass/components/navigation/_navigation.scss */
.main-navigation {
	display: block;
}

/* line 5, sass/components/navigation/_navigation.scss */
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-top: 2rem;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: -100%;
	background-color: white;
	box-shadow: none;
	transition: right 0.5s ease-in-out, box-shadow 0.3s 0.5s ease-in-out;
}

/* line 20, sass/components/navigation/_navigation.scss */
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

/* line 28, sass/components/navigation/_navigation.scss */
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

/* line 35, sass/components/navigation/_navigation.scss */
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

/* line 42, sass/components/navigation/_navigation.scss */
.main-navigation ul ul a {
	width: 200px;
	text-decoration: none;
}

/* line 54, sass/components/navigation/_navigation.scss */
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

/* line 60, sass/components/navigation/_navigation.scss */
.main-navigation li {
	position: relative;
}

/* line 67, sass/components/navigation/_navigation.scss */
.main-navigation a {
	display: inline-block;
	text-decoration: none;
	color: black;
	font-size: 4rem;
}

@media (min-width: 782px) {
	/* line 84, sass/components/navigation/_navigation.scss */
	.main-navigation ul {
		/* on desktop the menu only spans half the screen */
		width: 50%;
		right: -50%;
	}
}

/* Small menu. */
/* line 95, sass/components/navigation/_navigation.scss */
.main-navigation.toggled ul {
	display: block;
	right: 0;
	box-shadow: -2rem 0rem 2rem rgba(0, 0, 0, 0.3);
}

/* line 101, sass/components/navigation/_navigation.scss */
.menu-toggle {
	display: block;
	z-index: 1;
	position: relative;
}

/* line 122, sass/components/navigation/_navigation.scss */
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
}

/* line 126, sass/components/navigation/_navigation.scss */
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

/* line 130, sass/components/navigation/_navigation.scss */
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

/* line 134, sass/components/navigation/_navigation.scss */
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
/* line 1, sass/components/content/_posts-and-pages.scss */
.sticky {
	display: block;
}

/* line 5, sass/components/content/_posts-and-pages.scss */
.post,
.page {
	margin: 0 0 1.5em;
}

/* line 10, sass/components/content/_posts-and-pages.scss */
.updated:not(.published) {
	display: none;
}

/* line 14, sass/components/content/_posts-and-pages.scss */
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

/* line 20, sass/components/content/_posts-and-pages.scss */
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
/* line 1, sass/components/comments/_comments.scss */
.comment-content a {
	word-wrap: break-word;
}

/* line 5, sass/components/comments/_comments.scss */
.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
/* line 1, sass/components/widgets/_widgets.scss */
.widget {
	margin: 0 0 1.5em;
}

/* line 5, sass/components/widgets/_widgets.scss */
.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
/* line 1, sass/components/media/_media.scss */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
/* line 11, sass/components/media/_media.scss */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
/* line 1, sass/components/media/_captions.scss */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

/* line 5, sass/components/media/_captions.scss */
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* line 10, sass/components/media/_captions.scss */
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/* line 15, sass/components/media/_captions.scss */
.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
/* line 1, sass/components/media/_galleries.scss */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

/* line 7, sass/components/media/_galleries.scss */
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

/* line 16, sass/components/media/_galleries.scss */
.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

/* line 21, sass/components/media/_galleries.scss */
.gallery-caption {
	display: block;
}

/* Marquee
--------------------------------------------- */
/* Marquee styles */
/* line 2, sass/components/marquee/_marquee.scss */
.marquee {
	--gap: 1rem;
	position: relative;
	display: flex;
	overflow: hidden;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	gap: var(--gap);
	border-bottom: 1px solid black;
	align-items: center;
	background-color: var(--marquee-bg, white);
	box-shadow: var(--box-shadow-top);
	font-size: 3rem;
}

/* line 16, sass/components/marquee/_marquee.scss */
.marquee__content {
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll var(--marquee-duration, 10s) linear infinite;
	list-style: none;
	margin: 0;
}

/* line 27, sass/components/marquee/_marquee.scss */
.marquee__content p {
	margin: 0;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
	/* line 43, sass/components/marquee/_marquee.scss */
	.marquee {
		overflow-x: auto;
		align-items: flex-start;
	}
	/* line 47, sass/components/marquee/_marquee.scss */
	.marquee__content {
		animation-play-state: paused !important;
	}
}

/* Reverse animation */
/* line 53, sass/components/marquee/_marquee.scss */
.marquee--reverse .marquee__content {
	animation-direction: reverse;
}

/* Pause on hover */
/* line 58, sass/components/marquee/_marquee.scss */
.marquee--hover-pause:hover .marquee__content {
	animation-play-state: paused;
}

/* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
/* line 63, sass/components/marquee/_marquee.scss */
.marquee--fit-content {
	max-width: -moz-fit-content;
	max-width: fit-content;
}

/* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
/* line 68, sass/components/marquee/_marquee.scss */
.marquee--pos-absolute .marquee__content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}

/* Enable position absolute animation on the duplicate content (last-child) */
/* line 75, sass/components/marquee/_marquee.scss */
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
	animation-name: scroll-abs;
}

@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
/* line 2, sass/plugins/jetpack/_infinite-scroll.scss */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
/* line 8, sass/plugins/jetpack/_infinite-scroll.scss */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
/* line 2, sass/utilities/_accessibility.scss */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* line 14, sass/utilities/_accessibility.scss */
.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;
	-webkit-clip-path: none;
	        clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
/* line 36, sass/utilities/_accessibility.scss */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
/* line 1, sass/utilities/_alignments.scss */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

/* line 11, sass/utilities/_alignments.scss */
.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

/* line 21, sass/utilities/_alignments.scss */
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
/*# sourceMappingURL=style.css.map */