.kfci-event-agenda {
	--kfci-event-agenda-font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--kfci-event-agenda-time-width: 80px;
	width: 100%;
	font-family: var(--kfci-event-agenda-font-family);
}

.kfci-event-agenda__empty {
	margin: 0;
	padding: 20px;
	color: #888;
}

.kfci-event-agenda__list {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #dacbcc;
	border-radius: 8px;
}

.kfci-event-agenda__list:has(.kfci-event-agenda__item.is-active) {
	background-color: #f5f3f3;
}

.kfci-event-agenda__item {
	position: relative;
	border-bottom: 1px solid #dacbcc;
	transition: background-color 0.3s ease;
}

.kfci-event-agenda__item:last-child {
	border-bottom: 0;
}

.kfci-event-agenda__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 6px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.kfci-event-agenda__item.is-active::before {
	opacity: 1;
}

.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header,
.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header:hover,
.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header:focus,
.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header:active {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-height: 88px;
	margin: 0;
	padding: 32px;
	border: 0;
	border-radius: 0;
	background: none;
	background-color: transparent;
	box-shadow: none;
	outline: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: normal;
	text-transform: none;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
}

.kfci-event-agenda__title {
	flex: 1 1 0%;
	min-width: 0;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: #050101;
}

.kfci-event-agenda__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border: 0.5px solid #dacbcc;
	border-radius: 50%;
	color: #050101;
}

.kfci-event-agenda__icon {
	display: none;
	width: 24px;
	height: 24px;
	line-height: 1;
}

.kfci-event-agenda__icon svg,
.kfci-event-agenda__icon i,
.kfci-event-agenda__icon .elementor-icon {
	display: block;
	width: 1em;
	height: 1em;
}

.kfci-event-agenda__icon svg {
	max-width: 100%;
	max-height: 100%;
}

.kfci-event-agenda__item:not(.is-active) .kfci-event-agenda__icon--plus,
.kfci-event-agenda__item.is-active .kfci-event-agenda__icon--minus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.kfci-event-agenda__content-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.kfci-event-agenda__content-wrap.is-open {
	grid-template-rows: 1fr;
}

.kfci-event-agenda__content-inner {
	overflow: hidden;
	min-height: 0;
}

.kfci-event-agenda__sessions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 0;
}

.kfci-event-agenda__session {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e9eaeb;
}

.kfci-event-agenda__session:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.kfci-event-agenda__time {
	flex: 0 0 var(--kfci-event-agenda-time-width);
	width: var(--kfci-event-agenda-time-width);
	margin: 6px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.07px;
	text-transform: uppercase;
	color: #050101;
}

.kfci-event-agenda__session-body {
	display: flex;
	flex: 1 1 0%;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	padding-right: 40px;
}

.kfci-event-agenda__session-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	color: #050101;
}

.kfci-event-agenda__session-description {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #332e2e;
}

@media (max-width: 767px) {
	.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header,
	.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header:hover,
	.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header:focus,
	.elementor-widget-kfci_event_agenda_accordion .kfci-event-agenda__header:active {
		align-items: flex-start;
		min-height: 0;
		padding: 20px;
	}

	.kfci-event-agenda__title {
		flex: 1 1 auto;
		max-width: calc(100% - 56px);
		padding-right: 8px;
	}

	.kfci-event-agenda__toggle {
		flex-shrink: 0;
		align-self: flex-start;
	}

	.kfci-event-agenda__session {
		flex-direction: column;
		gap: 8px;
	}

	.kfci-event-agenda__time {
		flex-basis: auto;
		width: auto;
		margin-top: 0;
	}
}
