/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2025 | 08:09:15 */
.locationHero {
	background-image: url("https://www.salvation.my/en/wp-content/uploads/sites/202/2025/08/location_bg_solid.jpg");
	background-size: cover;
	background-position: center;
	height: 250px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	border-radius: 0 0 30px 30px;
}
.locationHero-content {
	position: relative;
	z-index: 2;
}
.locationHero-content h1 {
	font-size: 3rem;
	margin-bottom: 10px;
	font-weight: 500;
	color: #ffffff;
}
.locationHero-content h2 {
	font-size: 1.2rem;
	font-weight: bold;
	color: #ffffff;
}
.locationHero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.12);
	border-radius: 0 0 30px 30px;
}
.locationContainer {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}
.stateSidebar {
	color: white;
	padding: 20px 0;
	width: 200px;
	flex-shrink: 0;
}
.stateSidebar-container {
	background-color: #00a8dd;
	border-radius: 15px;
    overflow: hidden;
}
.stateSidebar-item {
	padding: 15px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: background-color 0.3s;
}
.stateSidebar-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.stateSidebar-item.active {
	background-color: rgba(255, 255, 255, 0.2);
	position: relative;
}
.stateSidebar-item.active:after {
	content: "✓";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.state-dropdown {
	position: relative;
	background-color: #00a8dd;
	margin: 20px;
	border-radius: 5px;
	display: none;
}
.stateDropdown-button {
	width: 100%;
	background-color: #00a8dd;
	color: white;
	border: none;
	padding: 15px 20px;
	text-align: left;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s;
}
.stateDropdown-button:hover {
	background-color: #3a91d3;
}
.stateDropdown-arrow {
	transition: transform 0.3s;
}
.stateDropdown-arrow.open {
	transform: rotate(180deg);
}
.stateDropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 300px;
	overflow-y: auto;
	display: none;
}
.stateDropdown-content.open {
	display: block;
}
.stateDropdown-item {
	padding: 12px 20px;
	color: #333;
	cursor: pointer;
	transition: background-color 0.3s;
	border-bottom: 1px solid #eee;
}
.stateDropdown-item:last-child {
	border-bottom: none;
}
.stateDropdown-item:hover {
	background-color: #f5f5f5;
}
.stateDropdown-item.selected {
	background-color: #e3f2fd;
	color: #4aa1e3;
	font-weight: bold;
}
.content {
	flex-grow: 1;
	padding: 20px;
}
.findChurch-card {
	background-color: #f4f7fa;
	border-radius: 30px;
	margin-bottom: 30px;
	padding: 30px;
}
.findChurch-title {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.findChurch-address {
	color: #555;
	margin-bottom: 20px;
	line-height: 1.5;
}
.findChurch-image img {
/* 	max-width: 100%;
	max-height: 250px;
	border-radius: 5px; */
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: cover;
	border-radius: 30px;
}
.map-button {
	display: inline-flex;
	align-items: center;
	background-color: #00a8dd;
	color: white;
	padding: 8px 15px;
	border-radius: 30px;
	text-decoration: none;
	margin-top: 15px;
}
.map-button svg {
	margin-left: 5px;
	width: 18px;
	height: 18px;
	fill: white;
}
.map-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 5px;
	vertical-align: middle;
}
.service-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
.service-table thead th:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.service-table thead th:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
.service-table th {
	background-color: #027da4;
	color: white;
	text-align: left;
	padding: 10px;
}
.service-table td {
	padding: 10px;
	border-bottom: 1px solid #eee;
}
.service-table td:first-child {
	font-weight: bold;
}
.no-churches {
	text-align: center;
	padding: 60px 20px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}
.no-churches h3 {
	color: #4aa1e3;
	margin-bottom: 15px;
	font-size: 1.5rem;
}
.no-churches p {
	color: #666;
	font-size: 1rem;
}
@media (min-width: 769px) {
	.findChurch-card {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "info image" "schedule image";
		column-gap: 20px;
	}
	.findChurch-info {
		grid-area: info;
	}
	.findChurch-schedule {
		grid-area: schedule;
	}
	.findChurch-image-container {
		grid-area: image;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.findChurch-image {
		width: 100%;
	}
	.map-button {
		align-self: center;
	}
}
@media (max-width: 768px) {
	.locationHero-content h1 {
		font-size: 2rem;
	}
	.locationContainer {
		flex-direction: column;
	}
	.stateSidebar {
		width: 100%;
		order: 0;
		padding: 0;
		background-color: transparent;
	}
	.stateSidebar-item {
		display: none;
	}
	.stateSidebar-container {
		display: none;
	}
	.stateSidebar-scroll {
		display: none;
	}
	.state-dropdown {
		display: block;
		margin: 15px;
	}
	.content {
		order: 1;
	}
	.findChurch-card {
		display: flex;
		flex-direction: column;
		padding: 20px;
	}
	.findChurch-image-container {
		order: 2;
		margin: 15px 0;
	}
	.findChurch-info {
		order: 1;
	}
	.findChurch-schedule {
		order: 3;
	}
	.map-button {
		align-self: center;
		margin-top: 15px;
	}
	.findChurch-image {
		display: flex;
		justify-content: center;
	}
	.service-table {
		font-size:12px;
	}
}