div.carousel {
	position: relative;
	max-width: 100%;
	font-family: Calibri, sans-serif;
	font-size: 14pt;
	margin: 1em 0em;
	border-left: 1px solid gray;
	border-top: 3px solid gray;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
div.carousel-inner {
	position: relative;
	height: 360px;
	overflow-x: hidden;
	overflow-y: auto;
}

div.carousel-item {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 0;
}
div.carousel-item.active {
	position: relative;
	opacity: 1;
	z-index: 1;
}
div.carousel-item h3 {
	margin: 0;
	padding: 0.75em 0.5em 0.5em 0.5em;
	background-color: beige;
}
div.carousel-item p.carousel-list-item {
	margin: 0.5em 1.75em 0.5em 2.75em;
	text-indent: -0.6em;
}

div.carousel-thumbnail-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 1em;
}
div.carousel-thumbnail-item {
	margin: 0.75em 0em;
	padding: 0em 0.5em 0.5em 0.5em;
	border-top: 1px solid gray;
	border-left: 1px solid lightgray;
	border-right: 1px solid lightgray;
	border-bottom: 1px solid lightgray;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
}
div.carousel-thumbnail-item:hover {
	background-color: lightgray;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
div.carousel-thumbnail-item a {
	text-decoration: none;
}
div.carousel-thumbnail-item div.park-name {
	margin: 0.25em 0em;
	font-weight: bold;
	line-height: 1.25em;
	text-align: center;
}
div.carousel-thumbnail-item div.park-thumbnail {
	text-align: center;
}
div.carousel-thumbnail-item div.park-added-date {
	font-size: smaller;
	font-style: italic;
	line-height: 1.25em;
	text-align: center;
}

div.carousel-card-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 1em;
}
div.carousel-card-item {
	max-width: 40%;
	margin: 0.75em 0em;
	padding: 0em 0.5em 0.5em 0.5em;
	border-top: 1px solid gray;
	border-left: 1px solid lightgray;
	border-right: 1px solid lightgray;
	border-bottom: 1px solid lightgray;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
}
div.carousel-card-item:hover {
	background-color: lightgray;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
div.carousel-card-item a {
	text-decoration: none;
}
div.carousel-card-item div.card-title {
	margin: 0.25em 0em;
	font-weight: bold;
	line-height: 1.25em;
	text-align: left;
}
div.carousel-card-item div.card-content {
	text-align: left;
}
div.carousel-card-item div.card-date {
	font-size: smaller;
	font-style: italic;
	line-height: 1.25em;
	text-align: right;
}

div.carousel-indicators {
	text-align: center;
	margin-top: 0.5rem;
}
div.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background-color: #CCCCCC;
	margin: 0 4px;
	cursor: pointer;
}
div.carousel-indicators button.active {
	background-color: #0D6EFD;
}
button.carousel-toggle {
	display: block;
	margin: 1rem auto 0;
	font-size: 0.9rem;
	padding: 0.25rem 0.75rem;
	border: 1px solid #888888;
	border-radius: 4px;
	background-color: #F9F9F9;
	cursor: pointer;
}
