/* Interactive Highlight */
path {
    stroke: rgba(255, 255, 255, 0);
    fill:rgba(255, 255, 255, 0);
    transition: fill .25s ease;
}
path:hover {
    fill: rgba(255, 255, 255, .5) !important;
}

/* Map Image */
.imgContainer {
	max-width: 100vw;
	position: relative;
	right: 0;

}
.imgContainer img {
	max-width: 55vw;
	position: fixed;
	right: 0;
}
.imgContainer svg {
	max-width: 55vw;
	position: fixed;
	right: 0;
}



/* Accordions / Content Paragraphs */
.accordionContainer {
	padding-bottom: 100px;
	max-width: 40vw;
}
.accordion {
	background-color: #385d7a;
	margin: 0.25%;
	border: 2px solid transparent;
	color: rgb(214, 214, 214);
	cursor: pointer;
	overflow: auto;
	padding: 1.25%;
	width: 40vw;
	font-size: 28px;
	font-weight: 600;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	transition: 0.4s;
	text-align: left;
}
.active,
.accordion:hover {
	border-color: black;
}
.accordion:after {
	content: '\002B';
	color: rgb(214, 214, 214);
	font-weight: bold;
	float: right;
	margin-left: 2.5%;
}
.active:after {
	content: '\2212';
}
.textBlock {
	font-size: 21px;
	font-family: serif;
	margin-left: 1%;
	padding: 0 5px;
	background-color: transparent;
	max-height: 0;
	max-width: 95%;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	text-align: justify;
}
/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 9999; /* Sit on top */
	left: 0;
	top: 0;
	padding-top: 20px; /* Location of the box */
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
	background-color: transparent;
	margin: auto;
	width: 100%;
}
/* The Close Button */
.closeBtn {
	color: #ffffff;
	float: right;
	margin-right: 1%;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
}
/* Comparison Button Styles */
.compButton {
	border: none;
	color: rgb(0, 0, 0);
	background-color: transparent;
	border: 3px solid #385d7a;
	border-radius: 15px;
	margin: auto;
	margin-top: 1%;
	padding: 1%;
	text-align: center;
	text-decoration: none;
	font-size: 20px;
	font-family: serif;
	transition-duration: 0.4s;
	cursor: pointer;
	width: 100%;
}
.compButton:hover {
	background-color: #385d7a;
	color: white;
}
/* Comparison Text Styles */
.buddhismCompText {
	text-align: justify;
	width: 90%;
	margin: auto;
	line-height: 26px;
	font-size: 24px;
	color: rgb(214, 214, 214);
	background-color: transparent;
}
.compText {
	color: rgb(214, 214, 214);
	text-align: center;
	text-decoration: none;
	font-size: 20px;
}
/* Comparison Title/Image Styles */
.compTitle {
	padding: 2% 0;
	text-align: center;
	color: #ffffff;
	font-size: 32px;
}
.compImg {
	width: 40%;
	margin: 0 4.9%;
	text-align: center;
	float: left;
	margin-bottom: 1%;
}

@media screen and (min-width: 2250px) {
	.imgContainer {
		max-width: 90vw;
		right: 0;
	}
	.imgContainer img {
		max-width: 55vw;
		position: fixed;
		right: 0;
	}
	.imgContainer svg {
		max-width: 50.5vw;
		position: fixed;
		right: 0;
	}
	}
	

@media screen and (max-height: 700px)  {
	.accordionContainer {
		max-width: 100vw;
		position: absolute;
		margin-top: 75%;
	}
	.accordion {
		padding: 1.25%;
		width: 100%;
		font-size: 18px;
	}
	.textBlock {
		font-size: 18px;
	}
/* Map Image */
.imgContainer {
	min-width: 100vw;
	position: relative;
}
.imgContainer img {
	min-width: 100vw;
	position: absolute;

}
.imgContainer svg {
	min-width: 100vw;
	position: absolute;

}

}
@media (orientation: portrait)  {
	.accordionContainer {
		max-width: 100vw;
		position: absolute;
		margin-top: 75%;
	}
	.accordion {
		padding: 1.25%;
		width: 100%;
		font-size: 18px;
	}
	.textBlock {
		font-size: 18px;
	}
/* Map Image */
.imgContainer {
	min-width: 100vw;
	position: relative;
}
.imgContainer img {
	min-width: 100vw;
	position: absolute;

}
.imgContainer svg {
	min-width: 100vw;
	position: absolute;

}
}




