/*
	(c)2017 - visuallizard.com

	General styles.
	Template, view, plugin and element specific, etc.

	Colors

	red - #c2382d
	red hover - #9f1f14
	red disabled - #e0c3b6
	green - #1c4535
	green hover - #162c24
	green disabled - #c7c5ba
	yellow - #e3a96a
	yellow hover - #d09553
	yellow disabled - #edddc5
	cream - #fbf1e3
	peach - #f3e3d3
	taupe - #f0dfce

*/

div#announcement {
	display: block;
	position: relative;
	padding: 2rem;
	background: #ffbb00;
}

img, iframe { max-width: 100%; }

input[type="submit"],
button,
.button,
a.button {
	display: inline-block;
	position: relative;
	padding: 1rem 2rem;
	margin: 0;
	border-radius: 30px;
	font-family: "Wix Madefor Display", Arial, sans-serif;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.1rem;
}
a.button.green {
	border: 3px solid #1c4535;
	background: #1c4535;
	color: #fbf1e3;
}
a.button.green:hover {
	background: #162c24;
}
a.button.secondary.green {
	border: 3px solid #1c4535;
	background: none;
	color: #1c4535;
}
a.button.secondary.green:hover {
	background: #162c24;
	color: #fbf1e3;
}
a.button.red {
	border: 3px solid #c2382d;
	background: #c2382d;
	color: #fbf1e3;
}
a.button.red:hover {
	background: #9f1f14;
}
a.button.yellow {
	border: 3px solid #e3a96a;
	background: #e3a96a;
	color: #1c4535;
}
a.button.yellow:hover {
	background: #d09553;
}



ul.actions {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 1rem;
	row-gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}



ul#donate-anchors {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0 0 2rem 0;
	list-style: none;
}
	ul#donate-anchors li {
		display: block;
		position: relative;
		padding: 0;
		margin: 0;
		border-left: 1px solid #000;
	}
	ul#donate-anchors li:first-child { border: none; }
		ul#donate-anchors li a {
			display: block;
			position: relative;
			padding: 0.25rem 1rem;
			margin: 0;
		}

.form-block {
	display: block;
	position: relative;
	width: 100%;
	padding: 3rem 0;
	margin: 2rem 0 0 0;
	box-shadow: 500px 0px 0px 0px #1c4535, -500px 0px 0px 0px #1c4535;
	background: #1c4535;
}
	.form-block > h2 {
		margin-top: 0;
		color: #fbf1e3;
	}
    .form-block >.cke {
        margin-bottom: 2rem;
    }
    .form-block >.cke + form {
        margin-top: 2rem;
    }
    .form-block p {
        color: #fbf1e3;
    }
    .form-block p:last-child {
        margin-bottom: 0;
    }
form.fm-form,
.form-block > form {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 1.25rem;
	max-width: 100%;
	margin: 0;
}
div.input-text,
div.input-email,
div.input-number {
	display: block;
	position: relative;
	flex-grow: 1;
	flex-basis: 49%;
	padding: 0;
	margin: 0;
}
div.input-select,
div.input-radio,
div.input-textarea {
	width: 100%;
	padding: 0;
}
div.input-text label,
div.input-email label,
div.input-number label,
div.input-select label,
div.input-textarea label,
div.input-radio > label {
	margin: 0 0 10px 0;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fbf1e3;
}
div.input-select > label,
div.input-radio > label {
	display: block;
	flex-basis: 100%;
	max-width: 100%;
}
div.input-select,
div.input-radio {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 1rem;
}
div.input-check-option,
div.input-radio-option {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 1rem;
	flex-basis: 32%;
	max-width: 32%;
}
	div.input-check-option input[type="checkbox"],
	div.input-radio-option input[type="radio"] {
		margin: 0;
		transform: scale(2) translateX(2px);
		background-color: #1c4535;
	}
	div.input-check-option input[type="checkbox"]:checked,
	div.input-radio-option input[type="radio"]:checked {
		accent-color: #e3a96a;
	}
	div.input-check-option label,
	div.input-radio-option label {
		margin: 0;
		font-weight: 800;
		text-transform: uppercase;
		color: #fbf1e3;
	}
form div.input-text input[type="text"],
form div.input-email input[type="email"],
form div.input-number input[type="number"],
form div.input-select select,
form div.input-textarea textarea {
	width: 100%;
	font-size: 1rem;
	line-height: 1;
	padding: 10px 20px;
	border-radius: 30px;
	background: #fbf1e3;
}
form div.error-message {
	display: block;
	position: relative;
	flex-basis: 50%;
	flex-grow: 1;
	padding: 15px;
	margin: 0 0 15px 0;
}
form div.g-recaptcha {
	display: block;
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
}
form input[type="submit"],
form button[type="submit"].button {
	border: 3px solid #e3a96a;
	background: #e3a96a;
	color: #1c4535;
}
form input[type="submit"]:hover,
form button[type="submit"].button:hover {
	background: #d09553;
}



/* !social media styles */
ul.social {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 1rem;
	row-gap: 1rem;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
	ul.social li {
		display: block;
		position: relative;
		flex-basis: 36px;
		max-width: 36px;
		text-align: center;
	}
		ul.social li a {
			display: block;
			position: relative;
			width: 36px;
			height: 36px;
			padding: 5px;
			margin: 0 auto;
			color: #1c4535;
		}




/* ! [[Home page styles]] */
section#introduction .container {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
	row-gap: 3rem;
	padding: 4rem 680px 4rem 0;
}
section#introduction .container h1 {
	margin-bottom: 3rem;
	line-height: 0.7;
}
section#introduction div#intro-banner {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 50%;
	min-height: 900px;
}
section#introduction div#intro-banner:before {
	content: "";
	display: block;
	position: absolute;
	width: 80%;
	height: 770px;
	bottom: 0;
	right: 0;
	z-index: 0;
	background-color: #1c4535;
	background-image: url("../../../img/2023/bow-lt-green.svg");
	background-repeat: repeat-x;
	background-position: -2px 540px;
}
	section#introduction div#intro-banner img {
		display: block;
		position: relative;
		z-index: 1;
	}
    section#introduction div#intro-banner div.button-set {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 2%;
        row-gap: 2rem;
        width: 80%;
        padding: 0;
        margin: 200px 0 0 0;
    }
        div.button-set div.banner-button {
            display: block;
            position: relative;
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0;
            margin: 0 auto;
            border-radius: 2rem;
            text-align: center;
            overflow: hidden;
            background: #ccc;
            color: #000;
        }

            div.button-set div.banner-button h3 {
                margin: 0;
                font-size: 2rem;
            }
                div.button-set div.banner-button h3 > a {
                    display: block;
                    position: relative;
                    width: 100%;
                    padding: 1.5rem;
                    transition: all 0.2s ease;
                }
                div.button-set div.banner-button a { background: #c2382d; color: #fbf1e3; }
                div.button-set div.banner-button a:hover { background: #4e9e80; color: #fbf1e3; }
                /*
                div.button-set div.banner-button:nth-child(even) a { background: #4e9e80; color: #fbf1e3; }
                div.button-set div.banner-button:nth-child(even) a:hover { background: #c2382d; color: #fbf1e3; }
                div.button-set div.banner-button:nth-child(odd) a { background: #c2382d; color: #fbf1e3; }
                div.button-set div.banner-button:nth-child(odd) a:hover { background: #4e9e80; color: #fbf1e3; }
                */

section#about .container {
	padding: 4rem 650px 2rem 0;
}
section#about h2 {
	margin-top: 0;
	color: #c2382d;
}

section#statistics .container {
	display: flex;
	position: relative;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 1.25rem;
	padding: 3rem 0 5rem 0;
	width: 100%;
}
section#statistics div.stat {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 2%;
	flex-basis: 32%;
	max-width: 32%;
	padding: 0;
	margin: 0;
}
	section#statistics div.stat figure {
		display: flex;
		position: relative;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-end;
		flex-basis: 30%;
		max-width: 30%;
		height: 100px;
		padding: 0;
		margin: -20px 0 0 0;
	}
		section#statistics div.stat figure img {
			display: block;
			position: relative;
			width: 80%;
			margin: 0 auto;
		}
	section#statistics div.stat div.stat-info {
		display: block;
		position: relative;
		flex-basis: 68%;
		max-width: 68%;
	}
		section#statistics div.stat div.stat-info h3 {
			margin: 0 0 0.5rem 0;
			font-size: 4rem;
			letter-spacing: -3px;
			color: #1c4535;
		}
		section#statistics div.stat div.stat-info p {
			text-transform: uppercase;
			font-size: 1rem;
			font-weight: 800;
			letter-spacing: 2px;
		}

section#apply .container {
	display: flex;
	position: relative;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 1.25rem;
	padding: 5rem 100px 5rem 600px;
	margin-bottom: -140px;
	width: 100%;
	max-width: 1300px;
	z-index: 1;
	background-color: #c2382d;
	background-image:
		radial-gradient( ellipse at bottom left, transparent, rgba(194, 56, 45, 0.6), rgba(194, 56, 45, 1), rgba(194, 56, 45, 1) ),
		url("../../../img/2023/hamper-application-bk.jpg")
	;
	background-repeat: no-repeat;
	background-position: -10px 0, -60px 0;
	background-size: 600px 420px, 48%;
	color: #fbf1e3;
}
	section#apply .container > h2 {
		margin-top: 0;
		color: #fbf1e3;
	}
	section#apply .container p {
		font-size: 1.125rem;
	}

section#latest {

}
	section#latest .container {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-content: flex-start;
		flex-wrap: wrap;
		row-gap: 1.25rem;
		width: 100%;
		padding: 4rem 0;
		overflow: visible;
	}
		section#latest .container div.blog {
			display: flex;
			position: relative;
			justify-content: flex-start;
			align-items: flex-start;
			flex-wrap: wrap;
		}
		section#latest .container div.blog.feed {
			flex-basis: 55%;
			max-width: 55%;
		}
			section#latest .container div.blog.feed > h2 {
				display: block;
				flex-basis: 68%;
				max-width: 68%;
				margin-top: 0;
				color: #fbf1e3;
			}
			section#latest .container div.blog.feed > ul.actions {
				justify-content: flex-end;
				flex-grow: 1;
			}
			section#latest .container div.blog.feed > div.article-set {
				display: flex;
				position: relative;
				justify-content: flex-start;
				align-items: stretch;
				flex-wrap: wrap;
				column-gap: 4%;
				row-gap: 2rem;
				width: 100%;
				padding: 0;
				margin: 0;
			}
				section#latest .container div.blog.feed > div.article-set article {
					display: flex;
					position: relative;
					flex-direction: column;
					row-gap: 1rem;
					flex-basis: 48%;
					max-width: 48%;
					padding: 0;
				}
					section#latest .container div.blog.feed > div.article-set article div.article-date {
						order: 0;
						font-size: 1rem;
						font-weight: 800;
					}
					section#latest .container div.blog.feed > div.article-set article h3 {
						order: 1;
						margin: 0 0 0.5rem 0;
						font-size: 2rem;
						line-height: 0.8;
					}
						section#latest .container div.blog.feed > div.article-set article h3 a {
							text-decoration: none;
							color: #e3a96a;
						}
					section#latest .container div.blog.feed > div.article-set article div.article-body {
						order: 2;
						font-size: 1rem;
						line-height: 1.5;
					}
		section#latest .container div.blog.banner {
			display: block;
			position: absolute;
			top: 2rem;
			left: 62%;
			width: 45%;
			max-height: 600px;
			overflow: hidden;
		}

section#key-dates .container {
	display: flex;
	position: relative;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 3rem;
	padding: 3rem 0 5rem 0;
	width: 100%;
}
section#key-dates h2 {
	align-self: center;
	flex-basis: 70%;
	flex-grow: 1;
}
section#key-dates ul.actions {
	align-self: center;
}
section#key-dates div.date {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 2%;
	flex-basis: 32%;
	max-width: 32%;
	padding: 0;
	margin: 0;
}
	section#key-dates div.date figure {
		display: flex;
		position: relative;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-end;
		flex-basis: 30%;
		max-width: 30%;
		height: 100px;
		padding: 0;
		margin: -20px 0 0 0;
	}
		section#key-dates div.date figure img {
			display: block;
			position: relative;
			width: 80%;
			margin: 0 auto;
		}
	section#key-dates div.date div.date-info {
		display: block;
		position: relative;
		flex-basis: 68%;
		max-width: 68%;
	}
		section#key-dates div.date div.date-info h3 {
			margin: 0 0 0.5rem 0;
			letter-spacing: -5px;
			color: #c2382d;
		}
		section#key-dates div.date div.date-info p {
			font-size: 1rem;
			font-weight: 800;
		}


	section#tradition .container {
		display: flex;
		position: relative;
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
		flex-wrap: wrap;
		column-gap: 2%;
		row-gap: 1.25rem;
		padding: 5rem 3rem 2rem 3rem;
		width: 100%;
		text-align: center;
		background: #c2382d;
		color: #fbf1e3;
	}
	section#tradition .container:before {
		content: "";
		display: block;
		position: absolute;
		top: -3rem;
		left: 0;
		right: 0;
		z-index: 1;
		height: 6rem;
		background: url("../../../img/2023/bow.svg") no-repeat center top;
		background-size: contain;
	}
	section#tradition .container:after {
		content: "";
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 1;
		height: 3rem;
		background: #c2382d;
	}
section#tradition h3,
section#tradition h4 { color: #fbf1e3; }
section#tradition .container > h3 {
	margin: 0 15%;
}
section#tradition div.tradition {
	display: flex;
	position: relative;
	justify-content: center;
	align-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	row-gap: 1.5rem;
	flex-basis: 32%;
	max-width: 32%;
}
	section#tradition div.tradition h4 {
		margin-bottom: 0;
		letter-spacing: 0.05rem;
	}
	section#tradition div.tradition p {
		margin-bottom: 0;
		font-size: 1.125rem;
	}




/* ! Banners: defaults */
.feature-banners {
	display: block;
	position: relative;
	line-height: 0;
	margin: 0;
	border-bottom: 5px solid transparent;
	border-image-source: url("../../img/border-red-green.png");
	border-image-slice: 100 0;
	border-image-repeat: repeat;
}
	.banner {
		position: relative;
		padding: 0;
	}
		.banner-link {
			display: block;
		}
		.banner-img {
			display: block;
			width: 100%;
			height: auto;
		}
		.banner-text {
			position: absolute;
			top: 50%;
			left: 0;
			right: 0;
			margin: 0 auto;
			text-align: center;
			text-transform: uppercase;
			text-shadow: 0 0 3px rgba(0,0,0,.5);
			color: #fff;
			transform: translateY(-50%);
			transition: all .2s;
		}
		.banner-link:hover .banner-text {
			opacity: .5;
		}
			.banner-title {
				color: inherit;
				font-size: 50px;
				font-size: calc(1em + 2vw);
				margin-top: 0;
				margin-bottom: 0;
			}
			.banner-desc {
				max-width: 600px;
				margin: 0 auto;
				letter-spacing: 0.05em;
			}



	/* ! Banners: Grid Fixed item width */
	.banners {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		margin: 0;
		padding: 0;
	}
		.banners .banner {
			display: block;
			flex-basis: 25%;
			flex-grow: 1;
			padding: 0;
		}
		.grid-fixed .banner-link {
			display: flex;
			align-items: center;
			height: 100%;
		}
		.grid-fixed .banner-img {
			transition: transform .3s;
		}
		.grid-fixed .banner-link:hover .banner-img {
			transform: scale(1.1);
		}
		.grid-fixed .banner-title {
			font-size: 20px;
		}

	/* ! Banners: Grid Flex item width
	(usually for sponsor logos where width is unknown. Set module settigns to something like Width:0 and Height:100px ) */
	.grid-flex.banners {
		display: flex;
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0.625rem;
		row-gap: 1.25rem;
		width: 100%;
		margin: 0;
		padding: 0;
	}
		.grid-flex .banner {
			display: block;
			position: relative;
			flex-basis: 22%;
			max-width: 25%;
			margin: 0;
			padding: 0;
		}
		.grid-flex .banner-link {

		}
		.grid-flex .banner-img {
			display: block;
			width: 100%;
			margin: 0;
		}
		.grid-flex .banner:hover .banner-img {

		}
		.grid-flex .banner-title {
			font-size: 16px;
		}



/* ! [[Sponsor Logos]] */
div.sponsor-set {
	display: flex;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 1.25rem;
	width: 100%;
	padding: 0;
	margin: 0;
}
	div.sponsor-set div.banner {
		display: block;
		position: relative;
		flex-basis: 23.5%;
		max-width: 23.5%;
	}



/* ! bulletin module styles */
article {
	display: block;
	position: relative;
	clear: both;
	float: left;
	width: 100%;
	padding: 30px;
	margin: 0;
	border-top: 1px solid #1c4535;
}
article:first-of-type {
	border: none;
}



/* ! events module styles */
.event-set {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
}
	.event-set > div {
		display: block;
		position: relative;
		clear: both;
		float: left;
		width: 100%;
		padding: 30px;
		margin: 0 0 15px 0;
		background: rgba(238,234,224,1);
	}
		.event-set > div p.dates {
			display: block;
			position: relative;
			float: left;
			width: 23%;
			padding: 15px;
			font-size: 22px;
			font-weight: 400;
			text-align: center;
			background: #fff;
			color: #000;
		}
		.event-set > div > h3 {
			display: block;
			position: relative;
			float: right;
			width: 75%;
			padding: 0;
			margin: 0 0 15px 0;
		}
		.event-set > div div.body {
			display: block;
			position: relative;
			clear: right;
			float: right;
			width: 75%;
			padding: 0;
			margin: 0;
		}



/* ! gallerys */
.gallery-set {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap: 2%;
	row-gap: 1.25rem;
	width: 100%;
	margin: 0 0 1.5rem 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
}
.gallery-set > li {
	flex-basis: 18.4%;
	max-width: 18.4%;
	margin: 0;
	padding: 0;

}

.gallery-box {
	position: relative;
	display: block;
	margin: 0;
	height: 0;
	padding-top: 100%;
	background-size: cover;

}
.gallery-box a {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	justify-content: flex-end;
	color: #fff;

	transform: scale(1);
	cursor: pointer;
}
.gallery-box[style*="placeholder"] {
	background-size: cover;
}
.gallery-text {
	display: block;
	width: 100%;
	min-height: 0;
	max-height: 70%;
	margin: 0;
	padding: 1em;
	border: none;
	border-radius: 0;
	background-color: transparent;
	background-image: linear-gradient(to bottom, rgba(0,0,0, 0), rgba(0,0,0, .5), rgba(0,0,0, .85));
	color: #fff;
	opacity: 1;
	transition: all .3s ease-in-out;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	z-index: 1;
}
.gallery-title {
	font-family: "Wix Madefor Display", Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: normal;
	margin-bottom: 0;
	color: #fff;
}
.gallery-box .gallery-brief {
	display: none;
}
.gallery-box .gallery-brief:empty {
	margin: 0;
}
.gallery-box a:hover .gallery-brief {
	max-height: 200px;
	opacity: 1;
	margin-top: 1em;
}


/* ! Sponsor Delivery Confirmation */
.sponsor-delivery-confirmation {
	float: none;
	padding: 2em 0 1em;
	margin: 2em 0;

	color: #776;
	font-weight: 500;
}

	.sponsor-delivery-confirmation .table-wrap {
		margin: 0;
		width: 98%;
	}

	.sponsor-delivery-confirmation table {
		font-size: 0.875rem;
	}

	.sponsor-delivery-confirmation th {
		vertical-align: middle;

		font-weight: 600;
	}

		.sponsor-delivery-confirmation .confirmation-submitted th {
			color: #999;
			font-weight: 300;
		}

	.sponsor-delivery-confirmation td {
		vertical-align: middle;

		font-weight: 500;
	}

		.sponsor-delivery-confirmation .confirmation-submitted td {
			color: #999;
			font-weight: 300;
		}

	.sponsor-delivery-confirmation select,
	.sponsor-delivery-confirmation .result {
		display: inline-block;
		padding: 0.2em 1em 0.25em;

		font-size: 0.875rem;
		font-weight: 300;
	}

	.sponsor-delivery-confirmation .success {
		background-color: #e0f0e0;

		color: #169f16;
	}

	.sponsor-delivery-confirmation .fail {
		background-color: #ecd1d1;

		color: #be5555;
	}

	@media only screen and (max-width: 520px) {
		.sponsor-delivery-confirmation tr { display: flex; flex-wrap: wrap; margin-bottom: 2rem; }
		.sponsor-delivery-confirmation th { order: 1; width: 30%; }
		.sponsor-delivery-confirmation td { order: 3; width: 100%; }
		.sponsor-delivery-confirmation td.right { order: 2; width: 70%; padding: .25em .5em; }
		.sponsor-delivery-confirmation .result { display: inline-block; }
	}
