.accordionItem {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #0c2340;
	margin-bottom: 2rem;
}

.accordionItemHeading {
	cursor: auto;
	padding: 0.5rem 1rem;
	width: 100%;
	box-sizing: border-box;
	height: auto;
	min-height: 100px;
	color: #0c2340;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	border-bottom: 1px solid rgba(0,0,0,0);
}

.close .accordionItemContent {
	height: 0px;
	min-height: 0px;
	opacity: 0;
	overflow: hidden;
	/* transition: opacity 0.5s ease-in-out; */
}

.open .accordionItemContent {
	background-color: #F7F7F7;
	width: 100%;
	height: auto;
	opacity: 1;
	box-sizing: border-box;
	border-top: none;
	border-top-right-radius: none;
	border-top-left-radius: none;
	animation: smooth 0.5s ease-in-out;
	border-radius: 15px;
}

.open .accordionItemHeading {
	margin: 0px;
	border-radius: 10px;
	border-bottom: 1px solid #0c2340;
}

@keyframes smooth {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.event-detail-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Button Accordion styles */
.button-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;	
}

.btn-container {
	float: right;
	display: flex;
	flex-direction: row;
	width: 100%;
	align-self: center;
	justify-self: center;
	height: 100%;
	max-height: 75px;
}

.btn-container>a {
	margin: 0 0.5rem;
	flex: 1 1 1%;
}
.btn-container>a:first-of-type {
	margin-left: 0;	
}
.btn-container>a:last-of-type {
	margin-right: 0;	
}


.attend-person, .attend-webcast, .more-info {
	margin: 0;
	position: relative;
	text-align: center;
	box-shadow: 0px 3px 6px #00000029;
	padding: 6px 6px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.attend-person span, .attend-webcast span, .more-info span {
	vertical-align: middle;
	display: block;
}

.more-info {
	background-color: #fff;
	border: 1px solid #0c2340;
	color: #0c2340;
}

.more-info:hover {
	background-color: #0c2340;
}

.attend-person:hover, .attend-webcast:hover, .more-info:hover {
	color: #fff;
}

 .attend-person.active,
.attend-webcast.active {
	background-color: #3C837C;
	
	border: 1px solid #3C837C;
} 

.attend-person:hover::after, .attend-webcast:hover::after, .more-info:hover::after {
	content: '';
	position: absolute;
	width: 35%;
	height: 0;
	left: 50%;
	bottom: 10px;
	transform: translate(-50%, 0%);
	/*Change this to increase/decrease distance*/
	border-bottom: 2px solid #fff;
}

/* SPEAKER Style */

/* .accordionItemContent .speaker-text {
	padding-left: 1rem;
	padding-top: 1rem;
	position: relative;
} */

/* .accordionItemContent .speaker-btn {
	transform: none;
	margin: 0.5rem 0.5rem;
	text-align: center;
	width: 100%;
} */

.accordionItemContent .agenda-table {
	margin-top: 1.5rem;
}

.accordionItemContent h2 {
	margin-top: 1rem;
}

.accordionItemContent .event-image {
	width: 100%;
	float: right;
	padding-left: 1rem;
}

.accordionItemContent .map-image {
	margin: 0 auto;
	display: block;
	width: 100%;
	max-width: 768px;
}

/* Event name and text */

.webseries-name {
	font-weight: bold;
	font-size: 1.10rem;
}

.webseries-data {
	margin-top: 0;	
}

.webseries-data>span:not(:last-of-type):after {
	content: " |";
}

/* Mobile styles */


@media (max-width:991.5px){
	.accordionItemContent .event-image {
		padding-left: 0;
	}	
}

@media (max-width:600px) {
	.btn-container>a {
		padding: 1rem 0;
	}
	.attend-person span, .attend-webcast span, .more-info span {
		font-size: 0.75rem;
		line-height: 1rem;
	}
	.webseries-data {
		font-size: 0.9rem;
		display: flex;
		flex-direction: column;
	}
	.webseries-data>span:after {
		display: none;
	}
}

@media (max-width:360px) {
	.webseries-name {
		font-size: 0.85rem;
	}
	.webseries-data {
		font-size: 0.75rem;
	}
}
