/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./pages/event-archive/button/Button.css ***!
  \*******************************************************************************************************************************************************************************************/
.custom-button {
	display: block;
	text-align: center;
	font-family: 'Basis Grotesque', Helvetica, Arial, Lucida, sans-serif;
	letter-spacing: 0.9px;
	background-color: transparent;
	border: none;
	width: 100%;
	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: #000000;
	text-transform: uppercase;
	border: 1px solid black;
	padding: 14px 40px 12px;
	cursor: pointer;
}

.custom-button:hover {
	background-color: #000;
	color: white;
	border: 1px solid black;
}

/*!******************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./pages/event-module/moduleToggle/ModuleToggle.css ***!
  \******************************************************************************************************************************************************************************************************/
.module-toggle-container {
	width: 100%;
	min-width: 600px;
	position: relative;
}
.module-active-dot {
	background-color: #000;
	height: 5px;
	width: 5px;
	border-radius: 10px;
	position: absolute;
	top: 12px;
	left: -12px;
}

.module-toggle-button {
	position: re;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 7px;
	padding-left: 0;
	margin-bottom: 0;
	background-color: transparent;
	color: #000;
	border: none;
	border-radius: 0px;
	cursor: pointer;
	border-bottom: 1px solid black;
}

.module-toggle-button:hover {
	color: #61413a;
}

.module-toggle-body-open {
	border-bottom: 1px solid transparent;
}

.module-button-event-date {
	font-family: 'Basis Grotesque', Helvetica, Arial, Lucida, sans-serif;
	letter-spacing: 0.9px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 600;
	margin-right: 55px;
	text-transform: uppercase;
	width: 230px;
	text-align: left;
}
.module-button-event-title {
	font-family: 'Signifier regular', Helvetica, Arial, Lucida, sans-serif;
	font-size: 20px;
	line-height: 28px;
}

.module-button-event-type {
	font-family: 'Signifier regular', Helvetica, Arial, Lucida, sans-serif;
	font-size: 14px;
	line-height: 20px;
}

.module-button-column {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.module-second-column {
	width: 50px;
	justify-content: flex-end;
}

.module-toggle-body {
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	border-bottom: 1px solid black;
	opacity: 0;
	visibility: hidden;
	max-height: 0px;
	transition: all 0.4s linear;
	display: flex;
	gap: 16px;
	padding-bottom: 0px;
	margin-bottom: 20px;
}

.module-event-image {
	display: none;
	max-width: 100%;
	height: auto;
	max-height: 400px;
}

.module-toggle-body-on {
	opacity: 1;
	visibility: visible;
	padding-top: 15px;
	padding-bottom: 30px;
	max-height: 540px;
}

.module-toggle-body-off {
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s linear;
}

.module-toggle-arrow {
	display: inline-block;
	font-size: 12px;
	margin-left: 104px;
	margin-bottom: -15px;
}

.module-rotated-arrow-up {
	transform: rotate(-90deg);
}

.module-rotated-arrow-down {
	transform: rotate(90deg);
}

.module-toggle-body-description-row {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.module-toggle-body-description {
	font-family: 'Basis Grotesque', Helvetica, Arial, Lucida, sans-serif;
	margin-right: 10%;
	margin-bottom: 30px;
}
.module-toggle-body-details {
	font-family: 'Basis Grotesque', Helvetica, Arial, Lucida, sans-serif;
}

.module-toggle-body-details-title {
	font-family: 'Basis Grotesque', Helvetica, Arial, Lucida, sans-serif;
	letter-spacing: 0.7px;
	font-size: 10px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 1px solid black;
	margin-bottom: 18px;
}

@media screen and (max-width: 1300px) {
	.module-event-list-section {
		padding-left: 70px;
	}

	.module-toggle-arrow {
		margin-left: 50px;
	}
	.module-button-event-date {
		margin-right: 50px;
	}
}

@media screen and (max-width: 1100px) {
	.module-event-image {
		display: block;
	}

	.module-active-dot {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.module-event-list-section {
		padding-left: 40px !important;
	}

	.module-toggle-container {
		min-width: 550px;
	}

	.module-toggle-body-on {
		max-height: -moz-fit-content;
		max-height: fit-content;
	}

	.module-toggle-arrow {
		margin-left: 30px;
	}

	.module-button-event-date {
		margin-right: 30px;
	}
}

@media screen and (max-width: 900px) {
	.module-toggle-container {
		min-width: auto;
	}

	.module-toggle-button,
	.module-button-column {
		flex-direction: column;
		align-items: flex-start;
	}
	.module-second-column {
		top: 40px;
		right: 25px;
		position: absolute;
		width: 20px;
	}

	.module-button-event-title {
		padding: 8px 0px 0px;
	}

	.module-toggle-body {
		display: flex;
		flex-direction: column;
	}
}

/*!****************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./pages/event-module/EventModule.css ***!
  \****************************************************************************************************************************************************************************************/
.event-module {
	color: #000;
}

.event-module-list-section {
	display: grid;
	grid-template-columns: 40% 1fr;
	grid-column-gap: 85px;
	align-items: start;
	justify-items: center;
}

.event-module-list {
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 1300px) {
	.event-module-list-section {
		grid-template-columns: 700px 1fr;
		grid-column-gap: 45px !important;
	}
}

@media screen and (max-width: 1100px) {
	.event-module-list-section {
		grid-column-gap: 0px !important;
	}
}

/*!****************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./pages/event-module/fadingImage/FadingImage.css ***!
  \****************************************************************************************************************************************************************************************************/
.event-module {
	color: #000;
}

.event-module-list-section {
	display: flex;
	justify-content: space-between;
}

.event-module-list {
	display: flex;
	flex-direction: column;
}

.fading-image-wrapper {
	width: 100%;
	min-height: 200px;
	height: auto;
	overflow: hidden;
}

#event-module-main-image {
	width: 100%;
	height: auto;
	transition: opacity ease 0.4s;
	opacity: 0.2;
	background-color: white;
}

.loading-img {
	opacity: 1 !important;
}

@media screen and (max-width: 1100px) {
	.fading-image-wrapper {
		display: none;
	}
}


/*# sourceMappingURL=index.css.map*/