/**
 * Locations Listing Section
 */

.locations-listing-section {
	background: var(--gray);
	padding-top: 164px;
	text-align: center;
	padding-bottom: 67px;
}
.locations-listing-section .section-header {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.locations-search {
	position: relative;
	max-width: 595px;
	margin: 30px auto 130px;
}
.locations-search input {
	width: 100%;
	height: 65px;
	background: var(--white);
	border: none;
	border-radius: 15px;
	padding: 0 55px 0 24px;
	font-family: 'Calibre', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
}
.locations-search input::-webkit-input-placeholder{color: var(--black);opacity: 1}
.locations-search input::-moz-placeholder{color: var(--black);opacity: 1}
.locations-search input:-ms-input-placeholder{color: var(--black);opacity: 1}
.locations-search input::-ms-input-placeholder{color: var(--black);opacity: 1}
.locations-search input::placeholder{color: var(--black);opacity: 1}
.locations-search .search-icon {
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--black);
	display: flex;
	cursor: pointer;
}

.locations-grid {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 30px;
	text-align: left;
}
.location-card {
	width: calc(33.333% - 20px);
	background: transparent;
	border: 1px solid var(--black);
	border-radius: 24px;
	padding: 25px 25px 32px 32px;
	display: flex;
	flex-direction: column;
}
.location-card.status-active {
	background: var(--white);
	border-color: var(--white);
}
.location-card .card-top {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}
.location-card .status-badge {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 600;
}
.location-card .status-badge.active {
	color: #21AB56;
}
.location-card .status-badge.coming-soon {
	color: var(--black);
}
.location-card h3 {
    margin-bottom: 28px;
}
.location-card .areas {
	margin-bottom: 0;
}
.location-card .card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 15px;
	padding-top: 50px;
	flex-wrap: wrap;
	margin-top: auto;
}
.location-card .card-bottom .see-details,
.location-card .card-bottom strong,
.location-card .card-bottom b {
    font-weight: 600;
}
@media only screen and (max-width: 1199px) {
	.location-card{
		padding: 25px;
	}
	.locations-search {
		margin: 30px auto 70px;
	}
}
@media only screen and (max-width: 991px) {
	.locations-search {
		margin: 30px auto 40px;
	}
	.location-card {
		width: calc(50% - 15px);
	}
}
@media only screen and (max-width: 767px) {
	.locations-listing-section {
		padding-top: 135px;
		padding-bottom: 45px;
	}
	.location-card {
		width: 100%;
	}
	.locations-grid {
		row-gap: 20px;
	}
	.locations-search input{
		font-size: 16px;
		padding: 0 40px 0 15px;
		height: 56px;
	}
	.locations-search .search-icon{
		right: 15px;
		width: 18px;
	}
	.location-card .card-bottom {
		padding-top: 30px;
	}
}
