/*banner*/
a.buttonClick {
	background-color: rgba(0,20,137,1);
	color: #fff;
	padding: 20px 40px;
	border-radius: 19px;
	display: block;
	text-align: center;
	margin-top: 1em;
}

a.buttonClick:hover {
	background-color: #fff;
	color: rgba(0,20,137,1);
	border: 3px solid rgba(0,20,137,1);
	text-decoration: underline;
}

/*accordion*/
.accordion {
	color: #FFFFFF;
	cursor: pointer;
	padding: 10px 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;	
	transition: 0.4s;
	font-family: 'Didact Gothic',sans-serif;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	margin-top: 4px;
}

.accordion:hover {
	opacity: 0.5;
}

.accordion.active {
	color: #FFFFFF !important;
}

.accordion:after {
	content: '\276E';
	font-size: 100%;
	color: #FFFFFF;
	float: right;
	margin-left: 5px;
	transform: rotate(-90deg);
}

.accordion.active:after {
	content: '\276E';
	color: #FFFFFF;
	transform: rotate(90deg);
}

.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	font-family: 'Didact Gothic',sans-serif;
	font-weight: 300;
	font-size: 14px;
	box-sizing: border-box;
}

div.panel.show {	
	opacity: 1;
	max-height: max-content;
	margin-top: 15px;
}

div {
	box-sizing: border-box;
}

.map iframe {
	width: 600px;
	height: 450px;
}

#map-details {
	text-align: center;
	margin: auto;
}

/*table styling for the map and text*/
.tbl-col-2 tr{
	display: grid;
	grid-template-columns: 1fr 1fr;
}


/*table styling for presenters pictures*/
.tbl-col-2, .tbl-col-5 {
	width: 100%;
}

.tbl-col-2 tbody, .tbl-col-5 tbody {
	border-top: none;
}

.tbl-col-5 tr {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.tbl-col-5 tr td {
	border: none;
	text-align: center;
}

.profile-img {
	border-radius: 50%;
	height: 100px;
	width: 100px;
	object-fit: cover;
}

b {
	font-weight: bold;
}

@media all and (max-width: 767px) {
	/*accordion*/
	.accordion {
		width: 100%;
	}
	
	.map iframe {
		width: 100%;
		height: auto;
	}
	
	.tbl-col-2 tr, .tbl-col-5 tr {
		grid-template-columns: 1fr;
	}
	
	.tbl-col-5 tr td.hide {
		display:none;
	}
}