/* =========================
FILTER PANEL BUTTON STYLE LISTING SPLIT
========================= */
.panel-dropdown {
	margin: 5px;
}

.panel-dropdown>a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 30px;
	/* Rounded pill */
	background: #f5f7fa;
	border: 1px solid #e2e8f0;
	font-size: 14px;
	font-weight: 500;
	color: #0f172a;
	transition: all 0.3s ease;
}

/* Hover Effect */
.panel-dropdown>a:hover {
	background: #0f172a;
	color: #fff;
	border-color: #0f172a;
}

/* Active / Open Panel */
.panel-dropdown.active>a {
	background: #0f172a;
	color: #fff;
	border-color: #0f172a;
}

.panel-dropdown-content {
	border-radius: 14px;
	padding: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
}

.panel-dropdown>a::after {
	content: "\f107";
	font-family: "FontAwesome";
	margin-left: 8px;
	font-size: 12px;
}

#clear-listeo-filters {
	margin-top: 12px;
	padding: 7px 16px;
	border-radius: 30px;
	font-size: 13px;
}


span.count {
	font-weight: 500;
}

.simple-carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 10px 0px;
}

.simple-carousel img {
	width: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

.slides {
	display: flex;
	animation: slide 12s infinite;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}

	45% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-100%);
	}

	95% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0);
	}
}

#map {
	top: 80px;
}

@media (max-width: 768px) {
	#map {
		top: 40px;
		margin: 0px 10px;
		width: 96%;
	}
}

.nlpg-applied-filters {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	flex-wrap: wrap;
}

#nlpg-filter-groups {
	display: flex;
}

.nlpg-filter-group {
	display: grid;
	align-items: center;
	gap: 10px;
	margin-right: 20px;
}

.nlpg-group-title {
	font-size: 13px;
	color: #777;
	font-weight: 500;
}

.nlpg-chip {
	background: #d9f3f1;
	border: 1px solid #6dc5bd;
	color: #222;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	min-width: 90px;
	justify-content: space-between;
}


.nlpg-chip span {
	margin-left: 10px;
	font-weight: 600;
}


.nlpg-clear-btn {
	border: 1px solid #ccc;
	background: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
}
.gender-global-content {
/*     display: flex; */
    align-items: stretch;
    background: #f2f2f3;
    border-radius: 14px;
    border: 1px solid #fefefe;
    overflow: hidden;
    margin-bottom: 24px;
    font-family: Raleway;
}
/* ===============================
MOBILE STICKY SCHEDULE VISIT
=============================== */

.mobile-schedule-visit {
    display: none;
}

@media (max-width: 600px) {

    .mobile-schedule-visit {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #001c54;
        padding: 12px 15px;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    }

    .schedule-visit-btn {
        display: block;
        width: 100%;
        text-align: center;
        background: #ffffff;
        color: #001c54;
        font-weight: 600;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
    }

    body {
        padding-bottom: 35px;
    }
}