/*GENERAL NOTES
.ptag is used instead of the p tag because if you just use the p tag then it becomes easily readable by the computer and suggests reader mode on mobile

*/
@font-face {
	font-family: 'Ebrima';
	src: url('fonts/ebrima.ttf');
}

@font-face {
	font-family: 'Yu Gothic';
	src: url('fonts/YuGothL.ttc');
}

@font-face {
	font-family: 'Palanquin Dark';
	src: url('fonts/PalanquinDark-Regular.ttf');
}

@font-face {
	font-family: 'Fugaz One';
	src: url('fonts/FugazOne-Regular.ttf');
}

@font-face {
	font-family: 'Vidaloka';
	src: url('fonts/Vidaloka-Regular.ttf');
}

@font-face {
	font-family: 'Microsoft Yi Baiti';
	src: url('fonts/msyi.ttf');
}

@font-face {
	font-family: 'Adobe Garamond Pro';
	src: url('fonts/AGaramondPro-Italic.otf');
}

/*variable declarations*/
:root {
	--backgroundColour: white;
	--mainBackground: #f5f5f5;
	--mainIconColour: #cecece;
	--articleBackground: #ffffff;
	--hoverColour: #f97e6b;
	--offBlack: #272727;
	--widthWithSidebar: max(60vw, calc(100vw - 500px));
	--widthWithoutSidebar: 100vw;
	--sidebarDuration: 0.3s;
	--bodyWidth: var(--widthWithoutSidebar);
	/* --colwidth: 24%;
	--colspacing:40px;
	--articlewidth:800px; */
	--headerHeight:50px;
	--lightBorder: 1px solid rgba(255, 255, 255, 0.166);
	--leftMargin: clamp(10px,5vw,calc(0.8 * var(--bodyWidth)));
    --rightMargin: clamp(10px,5vw,calc( 0.30 * var(--bodyWidth)));
	--headerBG: #f5f5f5;
	--headerBorder: #e9e9e9;
}


/* width */
::-webkit-scrollbar {
	width: 8px;
	background: rgba(167, 130, 130, 0);
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--mainBackground);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #d9e8f5;
	border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgb(182, 182, 182);
}






html, body {
	top:0px;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-family: 'Karla', sans-serif;
	/* this was added to counter the effects of the meetup.css file on the home page */
	line-height: initial;
}

body {
	background-color: var(--mainBackground);
}

::selection {
	color:#8fe0dd;
	background-color: #40a3d1;
}

a {
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

a:hover {
	/* this was added to counter the effects of the meetup.css file on the home page */
	text-decoration: none;
}

.underlinedLink[href]:hover {
    text-decoration: underline;
}

button {
	cursor: pointer;
	padding: 10px 20px;
    border: 0px;
    border-radius: 2px;
	transition: all 0.1s;
	font-family: 'Karla', sans-serif;
	font-size: 1rem;
}

button:hover, .eventContainer button:hover {
	background-color: #f7eabe;
}

.moreButton, .eventContainer button {
	background-color: buttonface;
	box-shadow: 0px 3px #b7dbf1;
}



h5 {
	margin: 0px;
}

h6 {
	/* redundant now that Karla is applied to all */
	/* font-family: 'Karla'; */
    font-size: 18px;
    font-weight: normal;
    margin: 15px 0px 30px;
}

input, select, .searchHandlerInput {
	border-radius: 5px;
    border: 1px solid #ebebeb;
	/* margin: 0px 10px 20px 0px; */
    padding: 10px 15px;
    box-sizing: border-box;
	font-family: 'Karla';
	font-size: 1rem;
	/* width: 100%; */
}

input[type="submit"] {
	cursor: pointer;
	transition: all 0.1s;
	background-color: #d9e8f5;
	box-shadow: 0px 3px 4px #6a7da338;
    border: 0px;
}

input[type="submit"]:hover {
	background-color: #edf4fa;
    transition: all 0.1s;
}

/* p, label { */
	/* redundant now that Karla is applied to all */
	/* font-family: 'Karla'; */
/* } */

.formElementContainer {
	margin-bottom: 30px;
}

.formElementContainer > input, .formElementContainer > select {
	width: 100%;
}

.formElementContainer > label {
    font-weight: 700;
    font-size: 1em;
	margin-bottom: 10px;
}

strong {
    font-weight: bold;
}

iframe {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

table, td {
	border: 1px solid #f0f0f0;
	text-align: center;
}

/* td {
	padding: clamp(10px, calc(var(--leftMargin) / 2), 100%);
} */

td p {
	/* margin: 0px !important; */
	/* margin: clamp(10px, calc(var(--leftMargin) / 4), 100%) !important; */
	margin: clamp(10px, 2vmin, 20px) !important;
}


#globalContainer {
	width: 100vw;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: var(--mainBackground);
	overflow-x: hidden;
	overflow-y: hidden;
}

#basicIncomeContainer {
	position: absolute;
	top: var(--headerHeight);
	height: calc(100% - var(--headerHeight));
	width: var(--bodyWidth);
	overflow-y: scroll;
	overflow-x: hidden;
	transition: all var(--sidebarDuration);
	scroll-padding-top: 30px;
}

#sidePanel {
	position: fixed;
	top: 0px;
	right: calc( -1 * min(100vh,500px) );
	height: 100%;
	max-width: 500px;
	width: 40%;
	border: 0px solid rgba(0, 0, 0, 0);
	transition: all var(--sidebarDuration);
}


.invisible {
	opacity:0;
	transition: opacity 0.2s;
	pointer-events: none;
}

.visible {
	opacity: 1;
	transition: opacity 0.2s;
	pointer-events: auto;
}

.mob {
	display: none;
}

header.web {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}

.web a:not(.headerLinkLabel) {
	/* border: 3px solid red; */
	padding: 0px calc(2vw - 5px);
	border-radius: 4px;
}

.web a:hover {
	background-color: white;
	color: var(--offBlack);
}

header.mob {
	background-color: #efefef;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	font-family: 'Palanquin Dark SemiBold', sans-serif;
	color: #a7aaab;
	font-size: clamp(10px,8vw,35px);
}

header.mob > div {
	flex-grow: 1;
	text-align: center;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	cursor: pointer;
}

header.mob > div:first-child {
	border-right: solid 1px #e9e9e9;
}


header {
	background-color: var(--headerBG);
	border-bottom: 1px var(--headerBorder) solid;
	position: fixed;
	left: 0px;
	width: var(--bodyWidth);
	top: 0px;
	height: var(--headerHeight);
	z-index: 1;
	display: block;
	transition: all var(--sidebarDuration);
}

header > div {
	height: var(--headerHeight);
	overflow: hidden;
	display: flex;
    align-items: center;
}

header > div > a {
	font-size: 14px;
	color: #a9a9a9;
	font-family: 'Ebrima', sans-serif;
	letter-spacing: 0.5px;
	margin-left: 15px;
}

header > div > a > img {
	background-color: #cecece;
	transition: background-color 0.1s;
	margin-right: 15px;
}

header > div > a > img:hover {
	background-color: #fa9551;
	transition: background-color 0.25s;
}

#hamburger {
	flex-shrink: 0;
	transition: background-color 0.1s;
	cursor: pointer;
	fill: var(--mainIconColour);
	position: relative;
	top: 6px;
	left: 8px;
	height: 40px;
	width: 40px;
}

#hamburger:hover {
	fill: var(--hoverColour);
}

#nav, #outercontact {
	position: fixed;
	background-image:         linear-gradient(188deg, #d9bede, #9cbcfe, #70d4c8);
	border-radius: 10px;
	width: calc(var(--bodyWidth) - 50px);
	/* height: calc(100% - 100px); */
	top:82px;
	left:25px;
	z-index: 1;
	color:white;
	font-family: 'Yu Gothic', sans-serif;
	padding-top: 10px;
	box-shadow: 0vh 1vh 4vw 0vw rgba(0, 0, 0, 0.2);
	max-height: calc(100% - 120px);
	background-attachment: scroll;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
}

#nav {
	overflow-y: auto;
	overflow-x: hidden;
}

.panel {
	/* padding: 10px; */
	margin: 5px;
	flex-basis: 280px;
	flex-grow: 1;
	border-radius: 15px;
	border: var(--lightBorder);
}

.panel > div {
	padding: 15px 10px 5px 10px;
	font-family: 'Palanquin Dark', sans-serif;
    font-weight: 200;
    letter-spacing: 0.5px;
}

/* .panel a {
	padding: 7px;
	line-height: 1.4em;
	display: block;
	transition: all 0.3s;
}

.panel a:hover {
	background-color: rgba(255, 255, 255, 0.171);
	transition: all 0.3s;
} */

hr {
	border: 0px solid rgba(255, 255, 255, 0);
	height: 1px;
	margin: 0px;
    background-color: rgba(255, 255, 255, 0.4);
}

#outercontact {
	height: calc(100% - 120px);
	overflow-y: scroll;
}

#outercontact::-webkit-scrollbar {
	width: 5px;
	background: #9cbcfe;
	/*   */
}

/* Track */
#outercontact::-webkit-scrollbar-track {
	/* background: #70d4c8; */
	background-image:         linear-gradient(188deg, #d9bede, #9cbcfe, #70d4c8);
}

.grid-item {
	border: 1px solid red;
	flex-basis: 23vmin;
	flex-grow: 1;
	/* width:30vmin; */
	padding: 10px;
	height:auto;
	/* max-height: 30vh; */
	cursor: pointer;
	align-self: stretch;
	display: grid;
	grid-template-rows: 70% 30%;
	place-items: center;
	border: var(--lightBorder);
	margin: 7px;
	border-radius: 20px;
	transition: all 0.3s;
}

.grid-item:hover {
	transition: all 0.3s;
	background-color: rgba(255, 255, 255, 0.1);
}

.grid-item > img {
	height: 35%;
	/* width: 60%; */
}

.grid-item > h6 {
	font-family: 'Palanquin Dark SemiBold', sans-serif;
    color: white;
	font-size: 3vmin;
	text-align: center;
	margin: 0px;
}

.articleSegment {

	margin: 200px var(--leftMargin);
	max-width: min(1100px, 100vw);
    box-sizing: border-box;
	padding: clamp(20px,5vw,50px) clamp(10px, 5vw,70px);
	margin-right: var(--rightMargin);
	background-color: var(--articleBackground);
	margin: 30px var(--leftMargin);
}


h4 {
	font-family: 'Palanquin Dark','DM Serif Display', serif;
	border-bottom: 1px solid var(--offBlack);
	padding-bottom: 20px;
	line-height: 1.1em;
	font-size: clamp(2em, calc(0.04 * var(--bodyWidth)), 3em);
	color: var(--offBlack);
	margin: 0px;
}

p, .ptag, li {
	/* redundant now that Karla is applied to all */
	/* font-family: 'Karla'; */
	font-size: 1.1em;
	font-weight: 100;
	letter-spacing: -0.03em;
	line-height: 1.3em;
	margin: 25px 0px;
}


.bold {
	font-weight: bold;
}

.extlink, p > a, .formElementContainer label a, figcaption > a:hover {
	padding: 3px;
	background-color: #fcf4c9;
	text-decoration: underline;
    text-decoration-color: #f7ad9e;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.extlink:hover, .formElementContainer label a:hover {
	background-color: var(--hoverColour);
}

blockquote {
	font-family: 'Sorts Mill Goudy', 'Adobe Garamond Pro', serif;
	font-style: italic;
	color: var(--offBlack);
	font-size: 1.1em;
	line-height:1.5em;
	text-align:center;
	/* letter-spacing: 0.5px; */

	width:var(--articlewidth);
	margin: 30px 0px;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:min(100px,calc(0.01 * var(--bodyWidth)));
	padding-right:min(100px,calc(0.01 * var(--bodyWidth)));
	background-image: linear-gradient(90deg, #f5f5f5, #ededed, #ededed, #f5f5f5);
}

sup {
	padding: 1px 3px;
}

sup:has(a):hover {
	background-color: var(--hoverColour);
	font-weight: bold;
}


.authHandler_button {
	border-radius: 40px;
    border: none;
    /* redundant now that Karla is applied to all */
	/* font-family: 'Karla'; */
    background-color: white;
}

.or {
	font-family: 'Palanquin Dark';
}

.articleSegment .bg-white {
	/* The article already has a white background, so any inner white needs a border. */
	border-radius: 3px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Drop shadow for depth */
}

.articleSegment img {
	margin-top: 25px;
}

.leaflet-container img {
	margin-top: inherit;
}

/*.hidden {
	// A class added by Meetup
	display: none;
}*/

.blogDetails {
	/* redundant now that Karla is applied to all */
	/* font-family: 'Karla'; */
    font-size: 18px;
    font-weight: normal;
    margin: 15px 0px 30px;
}

.faqLink:hover {
	text-decoration:underline;
}

.buttonContainer > button:hover {
    background-color: var(--hoverColour);
    transition: all 0.1s;
}

.buttonContainer > button {
    padding: 10px;
    border: 0px solid white;
    background-color: var(--headerBorder);
    border-radius: 5px;
    transition: all 0.2s;
}

.JTMLFormSaveButton {
	background-color: #9dd7a1 !important;
}
.JTMLFormSaveButton:hover {
	background-color: #90cd99 !important;
}


/* the radio buttons resize weirdly in safari so don't set them to 100%*/
#membershipForm input:not([type="radio"]) {
	width: 100%;
}

/*

#nav > div > .ptag > a {
	position: relative;
	display: block;
	line-height: 1.2em;
	padding:7px;
}

#nav > div > .ptag > a, .menubar {
	position: relative;
	top:30px;
	left:-7px;
}
*/
/* #nav > div > .ptag > a:hover {
	transition: background-color 0.2s;
	background-color: rgba(255,255,255, 0.1);;
}  */

/*makes it so that when you redirect within this page there's an offset*/
/*
:target:before {
	content:"";
	display:block;
	margin:-35vh 0 0;
}


strong {
	position: relative;
	top:10px;
	font-family: 'Palanquin Dark', sans-serif;
	font-weight: 200;
	letter-spacing: 0.5px;
} */

/*note that -webkit-,-moz-,-ms-,-o- things are about working on older browsers
flex is there so that you can control the spans individually(?)*/

/* h1 {
	font-family: 'Fugaz One', serif;
	font-weight:300;
	position: absolute;
	transform: rotate(-7.7deg);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: -webkit-linear-gradient(8deg, #d58da3, #fa8567, #fa9551);
	background-image:    -moz-linear-gradient(8deg, #d58da3, #fa8567, #fa9551);
	background-image:     -ms-linear-gradient(8deg, #d58da3, #fa8567, #fa9551);
	background-image:      -o-linear-gradient(8deg, #d58da3, #fa8567, #fa9551);
	background-image:         linear-gradient(8deg, #d58da3, #fa8567, #fa9551);
	background-position-y: 1vw;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;

	justify-content: flex-start;
	align-items: flex-start;

	font-size: 17.3vw;
	left: -2vw;
	top: calc(270px - 20vw); /*a smaller vw and it will move up as you shrink, a smaller px and it will shift up*/
	/*
} */

/* .safari {
	display:none;
} */

#logoimg {
	width:calc(0.53 * var(--bodyWidth));
	position: absolute;
	left: calc(-0.025 * var(--bodyWidth));
	top: calc(250px - calc(0.05 * var(--bodyWidth))); /*a smaller vw and it will move up as you shrink, a smaller px and it will shift up*/
	transition: all 0.1s;
}



/* #secondspan {
	font-size: calc(0.137 * var(--bodyWidth));
	margin-left: calc(-0.01 * var(--bodyWidth));
	margin-top: calc(-0.105 * var(--bodyWidth));
} */

h2 {
	font-family: 'Palanquin Dark', serif;
	font-weight:300;
	position: absolute;
	transform: skew(-5deg) rotate(-5deg);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: -webkit-linear-gradient(50deg, #56c66b, #0c8ab9, #3d6288);
	background-image:    -moz-linear-gradient(50deg, #56c66b, #0c8ab9, #3d6288);
	background-image:     -ms-linear-gradient(50deg, #56c66b, #0c8ab9, #3d6288);
	background-image:      -o-linear-gradient(50deg, #56c66b, #0c8ab9, #3d6288);
	background-image:         linear-gradient(50deg, #56c66b, #0c8ab9, #3d6288);
	line-height: 1;
	left:calc(0.59 * var(--bodyWidth));
	top:29vh;
	font-size: calc(0.044 * var(--bodyWidth));
	transition: all 0.1s;
}

@media screen and (max-width:700px) {
	#logoimg {
	    width: calc(0.8 * var(--bodyWidth));
		top: 100px;
		left: calc(-0.04 * var(--bodyWidth));
	}

	h2 {
		top: clamp(300px, calc(0.6 * var(--bodyWidth)), 70vh);
		font-size: calc(0.07 * var(--bodyWidth));
		left: calc(0.3 * var(--bodyWidth));
	}
}

/* h3 {
	font-family: 'Palanquin Dark', serif;
	font-size: 4vw;
	color: white;
	top:83vh;
	left:19vw;
	text-align:center;
	position: absolute;
	width: 60vw;
	line-height: 3em;
} */

#home {
	/* position: relative;
	top: 0px; */
	overflow: hidden;
	height: 100%;
	width: var(--bodyWidth);
	position: relative;
	/* right: 0px; */
	/* background-image: -webkit-linear-gradient(189deg, #94d1f8, #e7e7e7, #e4e586,var(--mainBackground), var(--mainBackground));
	background-image:    -moz-linear-gradient(189deg, #94d1f8, #e7e7e7, #e4e586, var(--mainBackground), var(--mainBackground));
	background-image:     -ms-linear-gradient(189deg, #94d1f8, #e7e7e7, #e4e586,var(--mainBackground), var(--mainBackground));
	background-image:      -o-linear-gradient(189deg, #94d1f8, #e7e7e7, #e4e586,var(--mainBackground), var(--mainBackground));
	background-image:         linear-gradient(189deg, #94d1f8, #e7e7e7, #e4e586, var(--mainBackground), var(--mainBackground)); */
	/* background-position-y: 58px; */
}

figure {
	width: 100%;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
	display: grid;
    grid-template-columns: 1fr;
	justify-items: center;
}

figure > img, figure > iframe {
	width: 100%;
    max-width: 600px;
	border: none;
}

figcaption {
	font-style: italic;
    font-size: 0.9em;
    color: #ababab;
    line-height: 16px;
    text-align: center;
	/* redundant now that Karla is applied to all */
	/* font-family: 'Karla'; */
    margin: 10px;
}

.articleSegment {
    & p, & li, & blockquote {
        font-size: clamp(16px,5vw,18px);
        line-height: clamp(25px,5vw,28px);
        margin-bottom: clamp(25px,5vw,28px);
    }
}

.articleSegment h1 {
	font-size: clamp(25px,4vw,35px);
    line-height: clamp(25px,5vw,35px);
    font-family: 'Palanquin Dark';
    font-weight: bold;
    margin-top: 50px;
}

h1:first-of-type {
	margin-block-start: 0px;
}

.articleSegment h2 {
	font-size: clamp(25px,3.5vw,30px);
    line-height: clamp(25px,5vw,35px);
    font-family: 'Palanquin Dark';
    font-weight: 400;
    margin-top: 50px;
    position: initial;
    transform: initial;
    color: initial;
}

.tableContainer {
	overflow-x: scroll;
    border: 2px solid #f0f0f0;
}

blockquote {
	font-size: 1.25em;
	background-image: linear-gradient(90deg, #ffffff, #f5f5f5, #f5f5f5, #ffffff);
}

.memberCard {
	margin: 10px auto;
	background-color: #ebebeb;
	color: #878e95;
	font-size: 0.9rem;
	padding: 7px 14px;
	width: fit-content;
	border-radius: 8px;
	transition: all 0.1s;
}

.isMemberCard {
	background-color: #efe7b8;
	color: #89804a;
}

.memberCard:hover {
	background-color: #ffffff;
	color: #768799;
}

.isMemberCard:hover {
	background-color: #f1ecca;
	color: #96883d;
}

.footerLink {
	width: fit-content;
	display: grid;
	grid-template-columns: 60px 1fr;
	align-items: center;
	justify-items: center;
	margin: 25px 25px 0px 0px;
    padding: 8px;
}

/* if you don't do this then the last one will wrap when it looks like it shouldn't because there is enough space */
.footerLink:last-of-type {
	margin-right: 0px;
}


.SearchHandlerContainer {
	border: initial;
    margin: initial;
}

.searchHandlerInput {
	z-index: initial;
}

.searchHandlerResultContainer {
	z-index: initial;
}





.loaderContainer {
	display: grid;
    justify-items: center;
    align-items: center;
}

.loader {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: relative;
	animation: rotate 1s linear infinite
}
.loader::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 5px solid #b7dbf1;
	animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
	100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
	0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
	25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
	50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
	75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
	100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}





.homeSectionLabel {
	color: var(--mainIconColour);
	margin: 0px !important;
}

#promotedEventContainer h1 {
	margin: 0px;
	margin-bottom: 20px;
}


@media screen and (min-width:1200px) {
	#promotedEventContainer {
		position: sticky;
		top: calc(50px* 2);
		padding: 30px;
		margin-left: 0px;
	}

	#homeBody {
		display: grid;
		grid-template-columns: 2fr 1fr;
		align-items: start;
	}

	#promotedEventContainer p {
		margin: 0px;
		margin-bottom: 10px;
	}
}






/* h4 {
	padding: 0px 0px 10px 0px;
	font-family: 'Vidaloka', serif;
	font-size: 4em;
	font-weight: 200;
	width:70vw;
}

.bold {
	font-weight: 1000;
}

.articlebar {
	height: 1px;
	width: 60vw;
	background-color: black;
	opacity: 0.32;
	position: relative;
	top:-70px;
}

.info > .ptag, li {
	font-family: 'Microsoft Yi Baiti', sans-serif;
	font-size: 1.5em;
	width:calc(var(--articlewidth) + 200px);
	margin-bottom: 30px;
}

.info > .ptag, li, blockquote {
	position: relative;
	top:-30px;
}

.viewport {
	display: none;
	background-attachment: fixed;
	filter: blur(7px);
	position: relative;
	transform: scale(1.00);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	height: 100vh;
	z-index: -1;
}

#img1,#img7,#img13,#img19 {
	background-image: url("images/img1.jpg");
}

#img2,#img8,#img14,#img20 {
	background-image: url("images/img2.jpg");
	background-position-y: 65px;
}

#img3,#img9,#img15,#img21 {
	background-image: url("images/img3.jpg");
}

#img4,#img10,#img16 {
	background-image: url("images/img4.png");
}

#img5,#img11,#img17 {
	background-image: url("images/img5.jpg");
}

#img6,#img12,#img18 {
	background-image: url("images/img6.jpg");
	background-position-y: -1550px;
}

.youtube {
	width:var(--articlewidth);
	height:450px;
}

#greenagenda {
	width:calc(var(--articlewidth) + 200px);
	height:600px;
}



.convener > h4 {
	font-size: 2.5em;
	position: relative;
	top:-20px;

}

.convenertext {
	position: relative;
	font-family: 'Microsoft Yi Baiti', sans-serif;
	font-size: 1.5em;
	width: 400px;
	left:300px;
	top:-300px;
} */

.hidden {
    display:none;
}



/* this is mainly applicable on the reports page */
.JTML_Table td p {
    margin: 0px !important;
	white-space: nowrap;
	text-align: left;
}




.cardContainer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
}

.cardImage {
	min-height: 200px;
	flex-basis: 300px;
	flex-grow: 1;
	align-self: stretch;
	background-position: center;
	background-size: cover;
}

.cardContent {
	flex-basis: 300px;
	flex-grow: 10;
}

.eventContainer h1 {
	margin-bottom: 20px;
}

.eventContainer p {
	margin: 0px 0px 10px 0px;
}



.stripeSubscriptionContainer {
    background-color: #f7f7f7;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid #00000014;
}

.stripeSubscriptionContainer h2 {
    margin: 0px;
}

.stripeBottomCotainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.stripeBottomCotainer p {
    margin: 0px;
}

.stripeBottomCotainer button {
	background-color: #f7eabe;
}

.stripeBottomCotainer button:hover {
	background-color: var(--hoverColour);
}

.payoutContainer {
	background-color: var(--headerBG);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.payoutContainer .JTML_Table {
	background-color: white;
	border: 2px solid #e7e7e7;
}

.completedUserContactRow td {
	background-color: #dce9d8 !important;
}
