.ecjc-primary-text {
	color: #2684c6 !important;
}

.ecjc-day-1 {
	/* border-image: url("/eventPage/custom/ecjc26/images/day1slim.png") 64 30 26 46 fill / 64px 30px 26px 46px;
			padding: 64px 30px 26px 46px; */
	border-image: url("./images/day1slimer.png") 37 30 25 30 fill / 37px 30px 25px 30px;
	padding: 45px 30px 45px 60px;
	position: relative;
}

.ecjc-day-2 {
	border-image: url("./images/day2slimer.png") 66 30 37 47 fill / 66px 30px 37px 47px;
	padding: 45px 30px 45px 60px;
	position: relative;
}

.ecjc-day-3 {
	border-image: url("./images/day3slimer.png") 61 30 31 42 fill / 61px 30px 31px 42px;
	padding: 45px 30px 45px 60px;
	position: relative;
	top: -3px;
}

.ecjc-speaker-border {
	border-image: url("./images/speaker-border.png") 61 30 31 42 fill / 61px 30px 31px 42px;
	padding: 45px 30px 45px 45px;
	position: relative;
	top: -3px;
}

.ecjc-sunday {
	position: absolute;
	left: -25px;
	top: 48px;
	width: 70px;
}

.ecjc-monday {
	position: absolute;
	left: -25px;
	top: 48px;
	width: 70px;
}

.ecjc-tuesday {
	position: absolute;
	left: -25px;
	top: 48px;
	width: 70px;
}

.ecjc-day-container {
	padding-left: 20px;
}

.ecjc-athens {
	position: absolute;
	left: 60px;
	bottom: -22px;
	width: 100px;
}

.ecjc-schedule-container>div {
	margin-top: 20px;
}

.ecjc-schedule-container>div:first-of-type {
	margin-top: 0px;
}

.ecjc-schedule {
	display: block;
	font-size: 16px;
}

.ecjc-time {
	color: #2684c6;
	font-weight: 500;
	width: 190px;
	text-align: left;
}

.ecjc-time-hidden {
	display: none;
}

.ecjc-description {
	margin-top: 10px;
}

.ecjc-text {
	flex: 1;
	color: #59595b;
}

.ecjc-text {
	font-weight: bold;
}

.ecjc-text ul {
	margin-top: 10px;
	font-weight: normal;
}

.ecjc-description {
	font-weight: normal;
}

.ecjc-program-text {
	font-size: 16px;
}

.ecjc-speaker-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 25px;
}

.ecjc-speaker {
	max-width: 162px;
	text-align: center;
}

.ecjc-speaker-name {
	font-size: 18px;
	font-weight: 500;
	padding: 0px 5px;
	padding-top: 20px;
	color: #2684c6;
}

.ecjc-speaker-description {
	font-size: 16px;
	color: #555;
	padding: 0px 5px;
	padding-top: 10px;
}

.ecjc-speaker img {
	width: 100%;
	filter: saturate(0.5);
}

.ecjc-speaker-page {
	align-items: flex-start;
	/* flex-wrap: wrap; */
}

.ecjc-speaker-card {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	border-radius: 8px;
	border: 1px solid #2684c6;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	overflow: hidden;
	/* padding-bottom: 25px; */
	flex: 0 0 300px;
}

.ecjc-speaker-card .ecjc-speaker-name {
	font-size: 23px;
	padding-bottom: 15px;
}

.ecjc-speaker-card img {
	border-radius: 8px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.ecjc-speaker-page-title {
	text-align: center;
	margin-top: 40px;
}

.ecjc-speaker-bio {
	padding: 0px 10px;
}

.ecjc-sponsor-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.ecjc-associate-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.ecjc-sponsor {
	width: 30%;
	height: auto;
	aspect-ratio: 1;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	border: 1px solid #2684c6;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	overflow: hidden;
	box-sizing: border-box;
}

.ecjc-associate-container .ecjc-sponsor {
	width: 25%;
	height: auto;
	aspect-ratio: 1;
}

.ecjc-sponsor img {
	width: 100%;
}

/* Modal base (hidden) */
.custom-modal {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 160ms ease;
	z-index: 999;
}

/* Show when targeted */
.custom-modal:target {
	opacity: 1;
	pointer-events: auto;
}

/* Overlay */
.custom-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

/* Panel */
.custom-modal__panel {
	position: relative;
	width: min(720px, 100%);
	max-height: min(80vh, 900px);
	overflow: auto;
	background-color: white;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	transform: translateY(8px) scale(0.98);
	transition: transform 160ms ease;
}

.custom-modal:target .custom-modal__panel {
	transform: translateY(0) scale(1);
}

.custom-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	font-size: 28px;
	line-height: 1;
	text-decoration: none;
	color: #111;
	padding: 4px 10px;
	border-radius: 10px;
}

.custom-modal__close:hover {
	background: rgba(0, 0, 0, 0.06);
}

.ecjc-producers {
	text-align: center;
	margin: 20px 0px;
	margin-bottom: 30px;
	font-size: 20px;
}

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

	.ecjc-producers {
		font-size: 24px;
	}

	.ecjc-schedule {
		display: flex;
		gap: 10px;
		font-size: 20px;
	}

	.ecjc-day-1 {
		padding: 54px 30px 54px 84px;
	}

	.ecjc-day-2 {
		padding: 54px 30px 54px 84px;
	}

	.ecjc-day-3 {
		padding: 54px 30px 54px 84px;
		top: -3px;
	}

	.ecjc-speaker {
		max-width: 215px;
		text-align: center;
	}

	.ecjc-speaker-border {
		padding: 54px 30px 54px 40px;
		top: -3px;
	}

	.ecjc-speaker-page {
		display: flex;
	}

	.ecjc-speaker-page-title {
		text-align: left;
		margin-top: 10px;
	}

	.ecjc-speaker-card {
		max-width: 300px;
	}

	.ecjc-speaker-bio {
		margin-left: 20px;
	}

	.ecjc-sunday {
		position: absolute;
		left: -40px;
		top: 48px;
		width: 100px;
	}

	.ecjc-monday {
		position: absolute;
		left: -40px;
		top: 48px;
		width: 100px;
	}

	.ecjc-tuesday {
		position: absolute;
		left: -40px;
		top: 48px;
		width: 100px;
	}

	.ecjc-athens {
		position: absolute;
		left: 80px;
		bottom: -22px;
		width: 100px;
	}

	.ecjc-day-container {
		padding-left: 40px;
	}

	.ecjc-time {
		text-align: justify;
	}

	.ecjc-program-text {
		font-size: 18px;
	}

	.ecjc-sponsor-container {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 25px;
	}

	.ecjc-associate-container {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 25px;
	}

	.ecjc-sponsor {
		width: 265px;
		height: 265px;
		padding: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 20px;
		border: 1px solid #2684c6;
		box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
		overflow: hidden;
	}

	.ecjc-associate-container .ecjc-sponsor {
		width: 215px;
		height: 215px;
	}
}