/* ============================================================
LISTING PAGE + POPUPS STYLES
============================================================ */
/* ---------- Google Font (added only) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

/* Apply Manrope to all headings (added only) */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button {
	font-family: "Manrope", sans-serif !important;
}

/* ---------- Theme Variables & Base ---------- */
:root {
	--gold: #d8a80e;
	--gold-dark: #b68c0c;
	--muted: #6b6f76;
	--card-bg: #ffffff;
	--surface: #f3f5f7;
	--light-border: #e6e8eb;
	--text: #333333;
}

* {
	box-sizing: border-box;
}



/* ---------- Top Bar / Header ---------- */
.top-bar {
	background-color: var(--gold);
}

.top-bar a {
	color: #000;
	font-weight: 600;
	text-decoration: none;
}

.top-bar a:hover {
	text-decoration: underline;
}

/* ---------- Breadcrumb & Headings ---------- */
.breadcrumb-section small {
	color: #777;
}

.breadcrumb-section h4 {
	font-size: 26px;
  margin-bottom: 0;
}

/* ---------- Filter Buttons / Chips ---------- */
.filter-section .btn {
	border-radius: 20px;
	font-size: 14px;
	padding: 5px 15px;
}

.btn-warning,
.filter-section .btn-warning {
	background-color: var(--gold);
	border: none;
	color: #000;
}

.filter-section .btn-outline-secondary {
	color: #333;
}

/* ---------- Therapist Card Basics ---------- */
.therapist-card {
	padding: 1rem;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.therapist-card .therapist-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
}

/* Left info */
.therapist-card .info {
	margin-left: 0.5rem;
}

.therapist-card h6 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.therapist-card p.small {
	margin-bottom: 0.25rem;
	color: #666;
}

/* Right action column */
.therapist-card .actions {
	text-align: right;
}

.therapist-card .actions .fw-bold {
	margin-bottom: 0.5rem;
}

/* Buttons inside card */
.therapist-card .btn.btn-light {
	background: var(--gold);
	color: #111;
	border: 0;
	padding: 0.4rem 0.8rem;
	margin-left: 0.5rem;
	border-radius: 100px;
	cursor: pointer;
  font-size: 15px;
}

.therapist-card .open-btn {
	background: var(--gold);
	color: #111;
	border: 0;
	padding: 0.4rem 0.8rem;
	margin-left: 0.5rem;
	border-radius: 100px;
	cursor: pointer;
  font-size: 15px;
}

/* Small screens */
@media (max-width: 767px) {
	.therapist-card {
		display: block;
		gap: 12px;
		padding-left: 0 !important;
    padding-right: 0 !important;
	}

	.content h2 {
		font-size: 18px !important;
	}

	.therapist-card .actions {
		margin-top: 10px;
		text-align: left;
	}
	.btacc-container {
		margin-bottom: 40px !important;
		margin-top: 40px !important;
	}
	.single_wrap article {
		padding-right: 10px !important;
	}
	.btacc-related {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
}
}

/* ---------- More Options ---------- */
.option-box img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* ---------- Footer ---------- */
.footer-section {
	background: #000;
	color: #fff;
}

.footer-section a {
	color: #fff;
	text-decoration: none;
}

.footer-section a:hover {
	text-decoration: underline;
}

/* ---------- Pagination ---------- */
.pagination .page-link {
	border-radius: 4px;
	color: #000;
  margin-left: 2px !important;
  margin-right: 2px;
} 

.pagination .page-item.active .page-link {
	background: var(--gold);
	border-color: var(--gold);
	color: #111;
}

/* ============================
VIEW POPUP (namespaced)
============================ */
:root {
	--gold: #d8a80e;
	--gold-dark: #b68c0c;
	--muted: #6b6f76;
	--card-bg: #ffffff;
	--surface: #f3f5f7;
	--light-border: #e6e8eb;
	--text: #121318;
}

/* overlay */
#view-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.56);
	z-index: 2500;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 22px;
}

#view-popup-overlay.active {
	display: flex;
}

/* modal */
.view-popup-modal {
	width: 95%;
	max-width: 1100px;
	background: var(--card-bg);
	border-radius: 10px;
	box-shadow: 0 30px 60px rgba(6, 10, 15, 0.28);
	overflow: scroll;
	transform: translateY(-18px);
	opacity: 0;
	transition: all .20s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 44px);
	/* leave some breathing room */
}

#view-popup-overlay.active .view-popup-modal {
	transform: none;
	opacity: 1;
}

/* close X */
.view-popup-close-x {
	position: absolute;
	right: 12px;
	top: 12px;
	background: transparent;
	font-size: 20px;
	cursor: pointer;
	color: #444;
}

.view-popup-close-x:hover {
	background: rgba(0, 0, 0, 0.04);
	color: var(--gold);
}

/* top area: header grid */
.view-popup-top {
	display: grid;
	/* grid-template-columns: 1fr 320px; */
	gap: 18px;
	padding: 18px;
	border-bottom: 1px solid var(--light-border);
	align-items: start;
	background: #fff;
	grid-column: 1 / -1; /* spans both columns */
}

.view-popup-left {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.view-popup-photo {
	width: 96px;
	height: 96px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--light-border);
	background: #f7f7f7;
}

.view-popup-headline h1 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
}

.view-popup-headline p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: .92rem;
}

/* verified pill */
.view-popup-verified {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(216, 168, 14, 0.06);
	color: var(--gold);
	border: 1px solid rgba(216, 168, 14, 0.12);
	font-weight: 600;
	font-size: .86rem;
}

/* contact card right */
.view-popup-contact {
	background: #fffbe8;
	border: 1px solid var(--light-border);
	border-radius: 8px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.view-popup-contact h4 {
	margin: 0 0 6px 0;
	font-size: 1rem;
}

.view-popup-contact .small-muted {
	color: var(--muted);
	font-size: .92rem;
}

.view-popup-contact .view-popup-contact-phone {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text);
}

.view-popup-actions {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.view-popup-primary-btn {
	background: var(--gold);
	color: #111;
	border: 0;
	padding: .5rem 2.7rem !important;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
}
.view-popup-actions a.btn-outline-secondary {
	padding: .5rem 2.7rem;
}

.view-popup-primary-btn:hover {
	background: var(--gold-dark);
	color: #fff;
}

/* scrollable content wrapper (keeps header & footer visible) */
.view-popup-scroll {
	/* overflow: auto;
	-webkit-overflow-scrolling: touch; */
}



/* left column scroll area */
.view-popup-leftcol {
	padding-bottom: 0px;
}

.view-popup-rightcol {
	padding-bottom: 0px;
}

/* card blocks */
.view-popup-card {
	background: var(--card-bg);
	border: 1px solid var(--light-border);
	border-radius: 8px;
	padding: 14px;
	margin-bottom: 14px;
}

.view-popup-card h3 {
	margin: 0 0 8px 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}

.view-popup-card p,
.view-popup-card li {
	margin: 0 0 8px 0;
	color: #2b2f33;
	line-height: 1.5;
	font-size: .95rem;
}

/* mini card */
.view-popup-mini {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--light-border);
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 12px;
}

.view-popup-mini img {
	width: 44px;
	height: 44px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--light-border);
}

/* focus grid */
.view-popup-focus {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.view-popup-focus-item {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 10px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--light-border);
}

.view-popup-focus-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(216, 168, 14, 0.06);
	color: var(--gold);
	font-weight: 700;
}

/* group rows */
.view-popup-group {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 10px;
}

.view-popup-group img {
	width: 56px;
	height: 56px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--light-border);
}

/* map box */
.view-popup-map {
	border: 1px solid var(--light-border);
	border-radius: 8px;
	overflow: hidden;
	margin-top: 12px;
}

/* footer (always visible) */
.view-popup-footer {
	padding: 14px;
	font-size: .86rem;
	color: var(--muted);
	background: #fbfdff;
	border-top: 1px solid var(--light-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* nested email modal inside view popup */
#view-email-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	z-index: 4000;
	padding: 18px;
	-webkit-overflow-scrolling: touch;
}

#view-email-overlay.active {
	display: flex;
}

.view-email-modal {
	width: 720px;
	max-width: 96%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	padding: 16px;
}

.view-email-modal .form-control {
	border-radius: 8px;
}

.view-email-send {
	background: var(--gold);
	color: #fff;
	border: 0;
	padding: 10px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

.view-email-send:hover {
	background: var(--gold-dark);
}

/* scrolling helpers for left/right columns inside modal */



/* responsive */
@media (max-width:1200px) {

	.view-popup-top,
	.view-popup-main {
		grid-template-columns: 1fr 280px;
	}
}

@media (max-width:992px) {

	.view-popup-top,
	.view-popup-main {
		grid-template-columns: 1fr;
	}

	.view-popup-contact {
		order: 3;
	}

	.view-popup-scroll-left,
	.view-popup-scroll-right {
		max-height: none;
	}
}

@media (max-width:768px) {
	#view-popup-overlay {
		align-items: flex-start;
		padding: 12px;
	}

	.view-popup-modal {
		width: 100%;
		border-radius: 10px;
	}

	.view-popup-photo {
		width: 80px;
		height: 80px;
	}
}

/* =============================
EMAIL POPUP (NAMESPACED)
============================= */
.email-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	z-index: 4000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 18px;
	align-items: inherit;
}

.email-popup-overlay.active {
	display: flex;
}

/* Modal */
.email-popup-modal {
	background: #fff;
	border-radius: 10px;
	width: 720px;
	max-width: 95%;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	overflow: scroll;
	transform: translateY(-30px);
	opacity: 0;
	transition: all 0.3s ease;
}

.email-popup-overlay.active .email-popup-modal {
	transform: translateY(0);
	opacity: 1;
}

/* Header */
.email-popup-header {
	display: flex;
	align-items: center;
	padding: 20px 25px;
	border-bottom: 1px solid #e0e0e0;
}

.email-popup-header img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	margin-right: 15px;
	background: #f5f5f5;
}

.email-popup-info h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.email-popup-info p {
	margin: 3px 0 0;
	color: #555;
	font-size: 14px;
}

.email-popup-close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #777;
	transition: 0.3s;
	text-align: center;
  line-height: 35px !important;
}

.email-popup-close:hover {
	color: #000;
}

/* Body */
.email-popup-body {
	display: flex;
	padding: 25px;
	gap: 20px;
}

.email-popup-left {
	flex: 1;
}

.email-popup-left input,
.email-popup-left textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 12px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.email-popup-left input:focus,
.email-popup-left textarea:focus {
	border-color: #d8a80e;
	box-shadow: 0 0 0 0.15rem rgba(216, 168, 14, 0.25);
}

.email-popup-left textarea {
	resize: vertical;
	min-height: 90px;
}

/* Checkbox */
.email-popup-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 12px;
}

.email-popup-checkbox input {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.email-popup-checkbox a {
	color: #d8a80e;
	text-decoration: none;
}

.email-popup-checkbox a:hover {
	text-decoration: underline;
}

/* Button */
.email-popup-send-btn {
	background-color: #d8a80e;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 5px;
	width: 100%;
	font-size: 15px;
	cursor: pointer;
	transition: 0.2s;
	font-weight: 600;
}

.email-popup-send-btn:hover {
	background-color: #b38c0b;
}

/* Right column */
.email-popup-right {
	flex: 1;
	font-size: 14px;
	color: #333;
	line-height: 1.6;
}

.email-popup-right ol {
	margin: 10px 0 0 18px;
	padding: 0;
}

.email-popup-right li {
	margin-bottom: 8px;
}

/* Footer */
.email-popup-footer {
	font-size: 12px;
	color: #555;
	border-top: 1px solid #e0e0e0;
	padding: 15px 25px;
	background-color: #fafafa;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 680px) {
	.email-popup-body {
		flex-direction: column;
	}

	.email-popup-modal {
		width: 100%;
	}
}

/* ============================================================
Utilities
============================================================ */
.breadcrumb-section {
	padding: 12px 0;
}

.filter-section {
	padding-bottom: 12px;
}

/* end of file */
/* =========================================================================
FILTERS POPUP (namespaced) — append to style.css
Prefix: filter-popup-
========================================================================= */
#filter-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.56);
	z-index: 6000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 22px;
}

#filter-popup-overlay.active {
	display: flex;
}

/* modal container */
.filter-popup-modal {
	width: 100%;
	max-width: 980px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 40px 80px rgba(2, 6, 23, 0.55);
	overflow: hidden;
	transform: translateY(-20px) scale(.995);
	opacity: 0;
	transition: all .22s ease;
	position: relative;
	max-height: calc(100vh - 48px);
	display: flex;
	flex-direction: column;
}

#filter-popup-overlay.active .filter-popup-modal {
	transform: translateY(0) scale(1);
	opacity: 1;
}

/* header */
.filter-popup-header {
	padding: 22px 24px;
	border-bottom: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.filter-popup-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #121318;
}

.filter-popup-close,
.email-popup-close,
.view-popup-close-x {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 0;
	background: transparent;
	font-size: 26px;
	padding: 0;
	color: #333;
	line-height: 18px;
}

.filter-popup-close:hover {
	background: rgba(0, 0, 0, 0.04);
	color: #111;
}

/* body wrapper - two columns: content + bottom bar */
.filter-popup-body {
	padding: 18px 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 auto;
}

/* internal scroll area */
.filter-popup-scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding-right: 6px;
	/* room for native scroll bar */
	max-height: calc(100vh - 220px);
	/* keeps footer visible */
}

/* top chips row (popular filters) */
.filter-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.filter-chip {
	border-radius: 28px;
	border: 1px solid #e9e9ea;
	padding: 8px 14px;
	font-size: .95rem;
	background: #fff;
	color: #222;
	box-shadow: none;
}

.filter-chip.selected {
	background: rgb(216, 168, 14) !important;
	border-color: rgb(216, 168, 14) !important;
	color: #111;
}

/* divider */
.filter-divider {
	height: 1px;
	background: #efefef;
	margin: 18px 0;
}

/* two-column small controls row */
.filter-controls {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 14px;
}

.filter-controls .control-group {
	flex: 1 1 320px;
}

.control-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* pill-like choices for Female/Male/In Person etc */
.fp-pill {
	border-radius: 28px;
	border: 1px solid #e9e9ea;
	padding: 8px 14px;
	font-size: .95rem;
	background: #fff;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
}

.fp-pill:hover {
	border-color: #ddd;
}

/* ----------------------------
Specialties grid (checkboxes)
---------------------------- */
.filter-section-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 28px;
	align-items: start;
	margin-top: 8px;
}

@media (max-width: 900px) {
	.filter-section-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.filter-section-grid {
		grid-template-columns: 1fr;
	}
}

/* checkbox style row */
.fp-checkbox {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px 6px;
	color: #222;
	font-size: .95rem;
}

.fp-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #dcdcdc;
}

/* link to show more specialties */
.filter-show-more {
	color: #2b6ddb;
	font-size: .95rem;
	margin-top: 10px;
	display: inline-block;
	cursor: pointer;
}

/* insurance row similar to specialties */
.filter-insurance-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 28px;
	margin-top: 10px;
}

@media (max-width:900px) {
	.filter-insurance-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width:560px) {
	.filter-insurance-grid {
		grid-template-columns: 1fr;
	}
}

/* bottom action bar */
.filter-popup-footer {
	padding: 14px 18px;
	border-top: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #fff;
}

.filter-action-left {
  color: #000;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.filter-action-right {
	display: flex;
	gap: 12px;
	align-items: center;
}

.filter-apply-btn {
	background: #d8a80e;
	color: #111;
	border: 0;
	padding: 10px 18px;
	border-radius: 28px;
	font-weight: 600;
	font-size: 14px;
}

.filter-clear-btn {
	background: transparent;
	border: 1px solid #e1e1e1;
	padding: 8px 12px;
	border-radius: 100px;
	color: #222;
	font-size: 14px;
}

/* small utility */
.fp-section-title {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 1rem;
}

.fp-subtle {
	color: #6b6f76;
	font-size: .95rem;
}

/* Apply same hover/focus/active style */
.filter-chip:hover,
.filter-chip:focus,
.filter-chip:active,
.filter-chip:focus-visible,
.filter-chip:focus-within,
.filter-clear-btn:hover,
.filter-clear-btn:focus,
.filter-clear-btn:active,
.filter-clear-btn:focus-visible,
.filter-clear-btn:focus-within,
.filter-section .btn:hover,
.filter-section .btn:focus,
.filter-section .btn:active,
.filter-section .btn:focus-visible,
.filter-section .btn:focus-within,
.filter-apply-btn:hover,
.filter-apply-btn:focus,
.filter-apply-btn:active,
.filter-apply-btn:focus-visible,
.filter-apply-btn:focus-within,
.filter-popup-close:hover,
.filter-popup-close:focus,
.filter-popup-close:active,
.filter-popup-close:focus-visible,
.filter-popup-close:focus-within,
.email-popup-close:hover,
.email-popup-close:focus,
.email-popup-close:active,
.email-popup-close:focus-visible,
.email-popup-close:focus-within,
.view-popup-close-x:hover,
.view-popup-close-x:focus,
.view-popup-close-x:active,
.view-popup-close-x:focus-visible,
.view-popup-close-x:focus-within {
	background: var(--gold) !important;
	color: #111 !important;
	border-color: var(--gold) !important;
	outline: none !important;
}

/* ===============================
Black Therapy Today — Account Settings (Final Stable Version)
Bootstrap + Manrope + WebThreeX Custom Styles
=============================== */
:root {
	--btacc-primary: #f5b700;
	--btacc-primary-hover: #ffd84a;
	--btacc-border: #e4e4e4;
	--btacc-bg: #fff;
	--btacc-text: #222;
	--btacc-muted: #666;
}

body.btacc-body {
	background-color: var(--btacc-bg);
	font-family: 'Manrope', sans-serif;
	color: var(--btacc-text);
	margin: 0;
}

/* Layout Wrapper */
.btacc-page {
	padding: 80px 20px;
	width: 100%;
	background: #F5F7F9;
}

/* Card Container */
.btacc-card {
	max-width: 1320px !important;
}

/* Sidebar */
.btacc-sidebar {
	background: #fff;
	border-right: 1px solid var(--btacc-border);
	padding: 40px 30px;
	min-width: 260px;
}

.btacc-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 28px;
}

.btacc-navitem {
	list-style: none;
	font-size: 15px;
	color: #555;
	padding: 10px 0 10px 14px;
	cursor: pointer;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
	border-radius: 6px;
}

.btacc-navitem:hover {
	color: #000;
}

.btacc-navitem.btacc-active {
	font-weight: 600;
	color: #000;
	border-left-color: var(--btacc-primary);
	padding-left: 18px;
	/* space after yellow border */
	background-color: #fffdf3;
}

/* Form Area */
.btacc-form-wrap {
	padding: 50px 60px;
	flex-grow: 1;
}

.btacc-avatar-wrap {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 35px;
}

.btacc-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #d8d8d8;
	color: #fff;
	font-weight: 600;
	font-size: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btacc-avatar-actions button {
	background: #fff !important;
	border: 1px solid #b3b3b3;
	color: #4a4a4a !important;
	font-size: 14px;
	transition: color 0.3s ease;
	padding: 4px 10px;
	border-radius: 100px;
}

/* Labels & Inputs */
.btacc-label {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 6px;
	display: block;
}

.btacc-input,
.btacc-select,
.btacc-textarea {
	width: 100%;
	border: 1px solid var(--btacc-border) !important;
	border-radius: 100px !important;
	padding: 12px 20px !important;
	font-size: 14px !important;
	background-color: #fff !important;
	color: var(--btacc-text) !important;
	transition: all 0.3s ease !important;
	appearance: none !important;
}

.btacc-input:focus,
.btacc-select:focus,
.btacc-textarea:focus {
	border-color: var(--btacc-primary) !important;
	box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25) !important;
	outline: none !important;
}

.btacc-textarea {
	resize: none !important;
	height: 80px !important;
	border-radius: 20px !important;
}

/* Field Spacing */
.btacc-form-wrap .mb-3,
.btacc-form-wrap .mt-3,
.btacc-form-wrap .row.g-3 {
	margin-bottom: 22px !important;
}

/* Buttons */
.btacc-actions {
	display: flex !important;
	gap: 16px !important;
	margin-top: 35px !important;
}

.btacc-btn-save {
	background: var(--btacc-primary) !important;
	border: none !important;
	color: #000 !important;
	padding: 12px 38px !important;
	border-radius: 100px !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
	text-transform: none !important;
}

.btacc-btn-save:hover {
	background: var(--btacc-primary-hover) !important;
	color: #000 !important;
}

.btacc-btn-cancel {
	border: 1px solid #ccc !important;
	background: transparent !important;
	color: #555 !important;
	padding: 12px 38px !important;
	border-radius: 100px !important;
	font-weight: 500 !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
}

.btacc-btn-cancel:hover {
	background: #f1f1f1 !important;
	color: #222 !important;
}

/* Timezone Row */
.btacc-currenttime {
	font-size: 14px !important;
	color: var(--btacc-muted) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.btacc-form-wrap {
		padding: 40px 30px !important;
	}
}

@media (max-width: 768px) {
	.btacc-card {
		flex-direction: column !important;
	}

	.btacc-sidebar {
		border-right: none !important;
		border-bottom: 1px solid var(--btacc-border) !important;
	}

	.btacc-form-wrap {
		padding: 30px 20px !important;
	}

	.btacc-btn-save,
	.btacc-btn-cancel {
		width: 100% !important;
		text-align: center !important;
	}
}

/* ===============================
Billing Page Fixes (Icons, Button, Layout)
=============================== */
/* Fix Card Container Width */
.btacc-billing-wrap {
	display: flex !important;
	justify-content: center !important;
	align-items: flex-start !important;
	padding-top: 50px;
	padding-bottom: 50px;
}

.btacc-billing-card {
	border: 1px solid var(--btacc-border) !important;
	border-radius: 16px !important;
	padding: 40px 50px !important;
	background: #fff !important;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
	max-width: 500px !important;
	width: 100% !important;
	margin-top: 0px !important;
}

/* Fix Payment Logos */
.btacc-card-icons {
	text-align: right !important;
	margin-bottom: 10px !important;
	position: absolute;
	top: 30px;
	right: 20px;
}

.btacc-card-icons img {
	display: inline-block !important;
	height: 13px !important;
	width: auto !important;
	margin-left: 6px !important;
	vertical-align: middle !important;
	object-fit: contain !important;
	border-radius: 4px !important;
}

/* Inputs and Field Layout */
.btacc-billing-card .btacc-input,
.btacc-billing-card .btacc-select {
	border: 1px solid var(--btacc-border) !important;
	border-radius: 100px !important;
	padding: 12px 20px !important;
	background-color: #fff !important;
}

.btacc-billing-card .btacc-input:focus,
.btacc-billing-card .btacc-select:focus {
	border-color: var(--btacc-primary) !important;
	box-shadow: none !important;
}

/* Fix Button */
.btacc-btn-agree {
	display: inline-block !important;
	background: var(--btacc-primary) !important;
	color: #000 !important;
	font-weight: 600 !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 12px 38px !important;
	font-size: 15px !important;
	margin-top: 10px !important;
	cursor: pointer !important;
	text-align: center !important;
	transition: all 0.3s ease !important;
	width: 100% !important;
}

.btacc-btn-agree:hover {
	background: var(--btacc-primary-hover) !important;
}

/* Fix spacing for inputs in row */
.btacc-billing-row {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 15px !important;
}

.btacc-billing-row>div {
	flex: 1 !important;
	min-width: 130px !important;
	margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.btacc-billing-card {
		padding: 30px 25px !important;
	}

	.btacc-card-icons {
		text-align: center !important;
	}

	.btacc-card-icons img {
		height: 24px !important;
	}
}

.mb-3.btacc-cardnumber-wrapper {
	position: relative;
}

/* ===============================
COMPLIANCE PAGE STYLES
=============================== */
.btacc-compliance-wrap {
	padding: 50px 80px !important;
}

.btacc-compliance-card {
	background: #fff !important;
	border: 1px solid #e5e5e5 !important;
	border-radius: 12px !important;
	padding: 30px 40px !important;
	max-width: 580px !important;
}

.btacc-compliance-title {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #000 !important;
}

.btacc-compliance-desc {
	font-size: 14px !important;
	color: #555 !important;
}

.btacc-btn-baa {
	padding: 10px 26px !important;
	font-size: 14px !important;
	margin-top: 10px !important;
	flex-shrink: 0 !important;
}

@media (max-width: 992px) {
	.btacc-compliance-wrap {
		padding: 40px 30px !important;
		justify-content: center !important;
	}

	.btacc-compliance-card {
		max-width: 100% !important;
	}

	.btacc-compliance-content {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 15px !important;
	}

	.btacc-btn-baa {
		margin-left: 0 !important;
	}
}

/**listing-css***/
:root {
	--btacc-primary: #f5b700;
	--btacc-primary-hover: #ffd84a;
	--btacc-border: #e4e4e4;
	--btacc-bg: #f5f7f9;
	--btacc-text: #222;
	--btacc-muted: #666;
	--btacc-radius: 12px;
}


/* Layout */
.btacc-layout {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

/* Sidebar */
.btacc-sidebar {
	width: 280px;
	min-width: 240px;
}

.btacc-box {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 20px;
}

.btacc-list {
	margin-top: 10px;
	max-height: 220px;
	overflow-y: auto;
}

.btacc-list a {
	display: block;
	font-size: 13px;
	color: var(--btacc-primary);
	text-decoration: none;
	margin-bottom: 8px;
}

.btacc-list a:hover {
	text-decoration: underline;
}

/* CTA Box */
.btacc-cta {
	background: #f49d2b;
	color: #fff;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
}

.btacc-btn-white {
	background: #fff;
	color: #333;
	border: none;
	border-radius: 100px;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

/* Contributors */
.btacc-contrib-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.btacc-accent {
	width: 32px;
	height: 3px;
	background: var(--btacc-primary);
	border-radius: 3px;
}

.btacc-contributor {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.btacc-contributor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.btacc-contributor .name {
	font-weight: 600;
	font-size: 14px;
}

.btacc-contributor .role {
	font-size: 12px;
	color: var(--btacc-muted);
	text-transform: uppercase;
}

/* Main Content */
.btacc-content {
	flex: 1;
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: var(--btacc-radius);
	padding: 28px;
}

.btacc-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 14px;
}

.btacc-content p {
	color: var(--btacc-muted);
	line-height: 1.65;
	font-size: 15px;
	margin-bottom: 16px;
}

/* The Urge To Humanize Section */
.btacc-related {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #f5f5f5;
}

.btacc-related .btacc-container {
	margin: 0 auto;
}

.btacc-related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.btacc-underline {
	width: 48px;
	height: 4px;
	background: var(--btacc-primary);
	border-radius: 3px;
	margin-top: 6px;
}

.btacc-card:hover {
	transform: translateY(-4px);
}

.btacc-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}




/* Responsive */
@media (max-width: 992px) {
	.btacc-layout {
		flex-direction: column;
	}

	.btacc-sidebar {
		width: 100%;
		order: 2;
	}

	.btacc-content {
		order: 1;
	}

	
}

@media (max-width: 576px) {
	.btacc-card {
		flex: 1 1 100%;
	}

	.btacc-related-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/***listing-css*****/
:root {
	--btacc-primary: #f5b700;
	--btacc-primary-hover: #ffd84a;
	--btacc-border: #e4e4e4;
	--btacc-bg: #fff;
	--btacc-text: #222;
	--btacc-muted: #666;
	--btacc-radius: 10px;
}

body {
	font-family: "Manrope", sans-serif;
	background: var(--btacc-bg);
	color: var(--btacc-text);
	margin: 0;
}

/* Container */
.btacc-container {
	max-width: 1350px;
	margin: 60px auto;
	padding: 0 25px;
}

/* Sidebar Boxes */
.btacc-box {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	padding: 18px 20px;
	margin-bottom: 16px;
}

.btacc-box-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #000;
}

.btacc-subtext {
	font-size: 13px;
	color: #555;
	margin-bottom: 12px;
	line-height: 1.5;
}

.btacc-subheading {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}

.btacc-box .btacc-search {
	width: 100%;
	border: 1px solid #dcdcdc;
	border-radius: 100px;
	padding: 8px 12px;
	font-size: 14px;
}

.btacc-box .btacc-search:focus-visible {
	outline: none
}

.btacc-linklist {
	max-height: 220px;
	overflow-y: auto;
	padding-right: 6px;
}

.btacc-linklist a {
	display: block;
	font-size: 13px;
	color: var(--btacc-primary);
	text-decoration: none;
	line-height: 1.6;
	transition: color 0.2s ease;
}

.btacc-linklist a:hover {
	text-decoration: underline;
	color: var(--btacc-primary-hover);
}

/* Custom scrollbar */
.btacc-linklist::-webkit-scrollbar {
	width: 6px;
}

.btacc-linklist::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.btacc-linklist::-webkit-scrollbar-thumb {
	background: var(--btacc-primary);
	border-radius: 10px;
}

/* CTA */
.btacc-cta {
	background: var(--btacc-primary);
	color: #000;
	border-radius: var(--btacc-radius);
	padding: 22px 20px;
	text-align: center;
	margin-bottom: 16px;
}

.btacc-cta h6 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}

.btacc-cta p {
	font-size: 13px;
	color: #222;
	margin-bottom: 15px;
}

.btacc-btn-white {
	background: #fff;
	color: #000;
	border: none;
	border-radius: 100px;
	padding: 8px 22px;
	font-weight: 600;
	font-size: 13px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	cursor: pointer;
}

/* Contributors */
.btacc-contrib-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.btacc-accent {
	width: 24px;
	height: 2px;
	background: var(--btacc-primary);
	border-radius: 3px;
}

.btacc-contributor {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.btacc-contributor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.btacc-contributor .name {
	font-weight: 600;
	font-size: 14px;
}

.btacc-contributor .role {
	font-size: 12px;
	color: var(--btacc-muted);
	text-transform: uppercase;
}

/* Main Content */
.btacc-content {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: var(--btacc-radius);
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 14px;
}

.btacc-content p {
	color: #555;
	line-height: 1.7;
	font-size: 15px;
	margin-bottom: 20px;
}

/* Related Section */

.btacc-related .btacc-container {
	margin: 0 auto;
}

.btacc-related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.btacc-related-header h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.btacc-underline {
	width: 44px;
	height: 2px;
	background: var(--btacc-primary);
	border-radius: 3px;
	margin-top: 3px;
}

.btacc-btn-viewall {
background: var(--btacc-primary);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 12px 18px 14px;
  font-size: 15px;
  font-weight: 600;
  transform: translateY(3px);
  line-height: 1.2;
}

.btacc-btn-viewall:is(:hover, :focus, :focus-visible, :active, :visited) {
    background-color: #000 !important;
    color: #fff !important;
}

.btacc-related-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btacc-card {
	min-width: 250px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.btacc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.btacc-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}

.btacc-card .meta {
	padding: 14px 0px 0px;
	margin-bottom: 0;
}

.btacc-card .meta .tag {
	display: inline-block;
	background: var(--btacc-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	border-radius: 5px;
	padding: 4px 10px;
	margin-bottom: 8px;
}

.btacc-card .meta h6 {
	font-size: 15px;
	font-weight: 600;
	margin: 0px 0 2px;
	color: #000;
}

.btacc-card .meta .time {
	font-size: 12px;
	color: #777;
}

@media (max-width: 992px) {
	

	.btacc-content {
		padding: 24px;
	}
}

@media (max-width: 576px) {
	.btacc-card {
		flex: 1 1 100%;
	}

	.btacc-related-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

#current-card-info {
	position: relative;
}

/***therapist-profile****/
.btacc-wrap {
	padding: 60px 18px 80px;
}

/* ---------- Profile Header ---------- */
.btacc-profile {
	display: flex;
	gap: 26px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.btacc-profile-left {
	flex: 1;
	min-width: 0;
}

.btacc-logo {
  width: 84px;
  height: 84px;
  border-radius: 100px;
  overflow: hidden;
  display: inline-block;
  margin-right: 12px;
  border: 0;
  box-shadow: none;
  background: #fff;
}

.btacc-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.btacc-name {
	font-size: 20px;
	font-weight: 700;
	margin: 6px 0 6px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.btacc-role {
	color: var(--btacc-muted);
	font-size: 13px;
	margin-bottom: 12px;
}

.btacc-desc {
	color: var(--btacc-muted);
	line-height: 1.7;
	font-size: 15px;
}

/* Right column cards */
.btacc-profile-right {
	width: 320px;
}

.btacc-card {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-connect-title {
	font-weight: 700;
	margin-bottom: 8px;
}

.btacc-phone {
	font-weight: 700;
	font-size: 18px;
	color: var(--btacc-primary);
	margin-bottom: 8px;
}

.btacc-cta-row {
	display: flex;
	gap: 8px;
	align-items: center;
}

.btacc-btn {
	border-radius: 100px;
	padding: 8px 18px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 14px;
}

.btacc-btn-yellow {
	background: var(--btacc-primary);
	color: #000;
	border-color: var(--btacc-primary);
	box-shadow: 0 4px 12px rgba(245, 183, 0, 0.15);
  text-decoration: none;
}

.btacc-btn-outline {
	background: #fff;
	color: #333;
	border: 1px solid #e6e6e6;
  text-decoration: none;

}

/* small muted list in profile cards */
.btacc-small {
	font-size: 13px;
	color: var(--btacc-muted);
	line-height: 1.6;
}

/* ---------- Full-width CTA Bar ---------- */
.btacc-cta-bar {
	background: var(--btacc-primary);
	color: #000;
	border-radius: 10px;
	padding: 18px 20px;
	margin: 18px 0 28px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.btacc-cta-bar p {
	margin: 0;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
}

.btacc-cta-bar a {
	color: #000;
	text-decoration: underline;
	margin-left: 6px;
	font-weight: 800;
}

/* ---------- Section common ---------- */
section.btacc-section {
	margin-bottom: 28px;
}

section.btacc-section .btacc-inner {
	display: flex;
	gap: 22px;
	align-items: flex-start;
}

.btacc-left {
	flex: 1;
	min-width: 0;
}

.btacc-right {
	width: 320px;
	flex-shrink: 0;
}

.btacc-subtitle {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 16px;
}

.btacc-line {
	height: 1px;
	background: var(--btacc-border);
	margin: 18px 0;
	border-radius: 2px;
}

/* finance / qualifications lists */
.btacc-list {
	font-size: 14px;
	color: var(--btacc-muted);
	line-height: 1.7;
}

.btacc-list b {
	color: var(--btacc-text);
	font-weight: 700;
}

/* small right-card */
.btacc-mini-card {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 10px;
	padding: 14px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-mini-card img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 100px;
}

/* Qualifications special badge */
.btacc-qual-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 8px;
	padding: 10px 12px;
	margin-bottom: 12px;
}

.btacc-qual-badge .badge-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #f6f6f6;
	display: inline-block;
}

/* Location / Map */
.btacc-map {
	width: 100%;
	height: 280px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--btacc-border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.btacc-addresses {
	display: flex;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.btacc-address {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 8px;
	padding: 12px;
	min-width: 220px;
	flex: 1;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-address small {
	display: block;
	color: var(--btacc-muted);
	margin-top: 8px;
	font-size: 13px;
}

/* Footer spacing */
.btacc-bottom-space {
	height: 48px;
}

/* Responsive */
@media (max-width: 992px) {
	.btacc-profile {
		flex-direction: column;
	}

	.btacc-profile-right {
		width: 100%;
	}

	.btacc-inner {
		flex-direction: column;
	}

	.btacc-right {
		width: 100%;
		order: 2;
	}

	.btacc-left {
		order: 1;
	}

	.btacc-addresses {
		flex-direction: column;
	}

	.btacc-map {
		height: 220px;
	}
}

@media (max-width:576px) {
	.btacc-wrap {
		margin: 20px auto;
		padding: 0 12px 60px;
	}

	.btacc-logo {
		width: 64px;
		height: 64px;
	}

	.btacc-name {
		font-size: 18px;
	}
}


/* ======================================
   See More Therapy Options (Exact Replica)
   ====================================== */

.btacc-therapy-options {
  background-color: #ffffff;
}

.btacc-heading {
font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin-bottom: 26px;
}

.btacc-option-card {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background-color: #fff;
  padding: 40px 20px;
  transition: all 0.2s ease-in-out;
  height: 100%;
}

.btacc-option-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.btacc-option-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

/* Desktop alignment fix */
@media (min-width: 992px) {
  .btacc-option-card {
    padding: 40px 15px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .btacc-option-card {
    margin-bottom: 20px;
  }
  .login-container .login-left {
	display: none;
  }
  .page-template-therapist .login-container .login-right .login-box {
	width: 100% !important;
  }
}

@media (max-width: 576px) {
  .btacc-heading {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btacc-option-card {
    padding: 30px 15px;
  }

  .btacc-option-img {
    max-height: 120px;
    margin-bottom: 15px;
  }
}

.btacc-address a {
  color: #000
}
.btacc-mini-card a {
  color: #000
}

/* ============================
   Find A Therapist Section (Exact Replica)
   ============================ */

.btacc-find-therapist {
  background-color: #fff;
}

.btacc-find-box {
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 40px 35px;
  background-color: #fff;
  max-width: 100%;
}

.btacc-find-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}

.btacc-find-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #222222;
  margin-bottom: 20px;
}

.btacc-search-input {
  border-radius: 100px !important;
  border: 1px solid #D8D8D8 !important;
  height: 38px !important;
  font-size: 14px !important;
  padding: 6px 15px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.btacc-search-input:focus {
  border-color: #f5b700 !important;
  box-shadow: 0 0 0 2px rgba(245, 183, 0, 0.25) !important;
}

.btacc-city-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}

.btacc-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.btacc-city-list li {
  display: inline-block;
}

.btacc-city-list li a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btacc-city-list li a:hover {
  color: #f5b700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btacc-find-box {
    padding: 30px 20px;
  }
  .btacc-city-list {
    gap: 4px 10px;
  }
  .btacc-find-title {
    font-size: 15px;
  }
}


.btacc-find-therapist {
  padding-bottom: 80px;
}

.login-container .login-right {
  align-items: center;
}
.login-container .login-left {
  text-align: right;
}
.login-container {
  padding-bottom: 0px;
  padding-top: 0px;
}
#therapist-login-form .form-label {
  font-size: 15px;
  margin-bottom: 2px;
}
#therapist-login-form .form-control {
  border-radius: 100px;
  font-size: 15px;
}
.text-decoration-none {
  color: #333;
}

.text-primary {
  color: #000 !important;
}

#login-button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 500px) {
	.single_wrap .page-title {
		font-size: 20px;
	}
	.single_wrap .blog-item {
		display: block !important;
	}
	.single_wrap .blog-item img {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 12px;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.single_wrap .blog-title {
		font-size: 20px;
		line-height: 1.1;
	}
}

.login-container .login-right .login-box {
	width: 40% !important;
}
.login-container .login-left {
	width: 60%;
}
.text-muted {
	font-size: 15px;
}
label {
	display: inline-block;
	line-height: 1.1;
	font-size: 15px;
}
.text-decoration-none {
	line-height: 1.1;
	font-size: 15px;
}



.compliance_wrap .btacc-card {
	display: flex !important;
  	flex-direction: row-reverse;
  	justify-content: space-between;
}

@media (max-width: 768px) {
	.btacc-find-therapist {
	padding-bottom: 50px;
	}
	.btacc-therapy-options {
		padding-bottom: 10px !important;
	}
	.breadcrumb-section, .filter-section, .therapists, .btacc-therapy-options, .btacc-find-therapist {
		padding-left: 15px;
		padding-right: 15px;
	}
	.breadcrumb-section .container, .filter-section .container, .btacc-find-therapist .container {
		max-width: inherit;
	}
	.therapists .container {
		max-width: inherit;
	}
	.btacc-therapy-options .container {
		max-width: inherit;

	}
	.btacc-therapy-options {
		padding-top: 10px !important;
	}
	.btacc-therapy-options .btacc-heading {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.btacc-option-card {
		height: auto;
	}
	.breadcrumb-section h4 {
		font-size: 20px;
	}
	.view-popup-focus {
		grid-template-columns: repeat(1, 1fr);
	}
	.filter-chip {
		padding: 5px 12px;
		font-size: 14px;
	}
	.filter-popup-header h2 {
		font-size: 19px;
	}
	.filter-popup-header {
		padding: 12px 24px;
	}
	.filter-insurance-grid {
		gap: 1px 28px;
	}
	.filter-section-grid {
		gap: 1px 28px;
	}
	.compliance_wrap {
		padding: 50px 20px;
	}
	.compliance_wrap .btacc-compliance-wrap {
		padding-left: 0 !important;
  		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-top: 0 !important;
	}
	.btacc-compliance-card {
		width: 100% !important;
	}
	.btacc-sidebar {
		width: 100%;
		order: 2;
		padding-left: 0 !important;
		padding-right: 0 !important;
		padding-top: 0;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.btacc-sidebar h5 {
		margin-bottom: 0 !important;
	}
	.btacc-compliance-card {
		padding: 20px 20px !important;
	}
	.compliance_wrap .btacc-card {
		display: flex !important;
  		flex-direction: column-reverse !important;
  		justify-content: space-between;
	}

}

@media (max-width: 575px) {
	.btacc-option-card {
		margin-bottom: 0 !important;
	}
	.filter-popup-footer {
		display: block;
  		text-align: center;
	}
	.filter-action-right {
		display: block;
		margin-top: 10px;
	}
	.filter-clear-btn {
		margin-bottom: 8px;
	}
	.view-popup-left {
		display: block;
	}
	.therapist-card .d-flex {
		display: block !important;
	}
	.therapist-card .info {
		margin-left: 0;
		margin-top: 10px;
	}
	.therapist-card .therapist-img {
		width: auto;
		height: auto;
		object-fit: cover;
		max-width: 100%;
	}
	.therapist-card .btn.btn-light {
		margin-left: 0;
	}
} 

.home1 .btacc-container {
	margin-top: 20px;
	margin-bottom: 20px;
}

/* ============================================================
LISTING PAGE + POPUPS STYLES
============================================================ */
/* ---------- Google Font (added only) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

/* Apply Manrope to all headings (added only) */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button {
	font-family: "Manrope", sans-serif !important;
}

/* ---------- Theme Variables & Base ---------- */
:root {
	--gold: #d8a80e;
	--gold-dark: #b68c0c;
	--muted: #6b6f76;
	--card-bg: #ffffff;
	--surface: #f3f5f7;
	--light-border: #e6e8eb;
	--text: #333333;
}

* {
	box-sizing: border-box;
}



/* ---------- Top Bar / Header ---------- */
.top-bar {
	background-color: var(--gold);
}

.top-bar a {
	color: #000;
	font-weight: 600;
	text-decoration: none;
}

.top-bar a:hover {
	text-decoration: underline;
}

/* ---------- Breadcrumb & Headings ---------- */
.breadcrumb-section small {
	color: #777;
}

.breadcrumb-section h4 {
	font-size: 26px;
  margin-bottom: 0;
}

/* ---------- Filter Buttons / Chips ---------- */
.filter-section .btn {
	border-radius: 20px;
	font-size: 14px;
	padding: 5px 15px;
}

.btn-warning,
.filter-section .btn-warning {
	background-color: var(--gold);
	border: none;
	color: #000;
}

.filter-section .btn-outline-secondary {
	color: #333;
}

/* ---------- Therapist Card Basics ---------- */
.therapist-card {
	padding: 1rem;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.therapist-card .therapist-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
}

/* Left info */
.therapist-card .info {
	margin-left: 0.5rem;
}

.therapist-card h6 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.therapist-card p.small {
	margin-bottom: 0.25rem;
	color: #666;
}

/* Right action column */
.therapist-card .actions {
	text-align: right;
}

.therapist-card .actions .fw-bold {
	margin-bottom: 0.5rem;
}

/* Buttons inside card */
.therapist-card .btn.btn-light {
	background: var(--gold);
	color: #111;
	border: 0;
	padding: 0.4rem 0.8rem;
	margin-left: 0.5rem;
	border-radius: 100px;
	cursor: pointer;
  font-size: 15px;
}

.therapist-card .open-btn {
	background: var(--gold);
	color: #111;
	border: 0;
	padding: 0.4rem 0.8rem;
	margin-left: 0.5rem;
	border-radius: 100px;
	cursor: pointer;
  font-size: 15px;
}

/* Small screens */
@media (max-width: 767px) {
	.therapist-card {
		display: block;
		gap: 12px;
		padding-left: 0 !important;
    padding-right: 0 !important;
	}

	.content h2 {
		font-size: 18px !important;
	}

	.therapist-card .actions {
		margin-top: 10px;
		text-align: left;
	}
	.btacc-container {
		margin-bottom: 40px !important;
		margin-top: 40px !important;
	}
	.single_wrap article {
		padding-right: 10px !important;
	}
	.btacc-related {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
}
}

/* ---------- More Options ---------- */
.option-box img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* ---------- Footer ---------- */
.footer-section {
	background: #000;
	color: #fff;
}

.footer-section a {
	color: #fff;
	text-decoration: none;
}

.footer-section a:hover {
	text-decoration: underline;
}

/* ---------- Pagination ---------- */
.pagination .page-link {
	border-radius: 4px;
}

.pagination .page-item.active .page-link {
	background: var(--gold);
	border-color: var(--gold);
	color: #111;
}

/* ============================
VIEW POPUP (namespaced)
============================ */
:root {
	--gold: #d8a80e;
	--gold-dark: #b68c0c;
	--muted: #6b6f76;
	--card-bg: #ffffff;
	--surface: #f3f5f7;
	--light-border: #e6e8eb;
	--text: #121318;
}

/* overlay */
#view-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.56);
	z-index: 2500;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 22px;
}

#view-popup-overlay.active {
	display: flex;
}

/* modal */
.view-popup-modal {
	width: 95%;
	max-width: 1100px;
	background: var(--card-bg);
	border-radius: 10px;
	box-shadow: 0 30px 60px rgba(6, 10, 15, 0.28);
	overflow: scroll;
	transform: translateY(-18px);
	opacity: 0;
	transition: all .20s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 44px);
	/* leave some breathing room */
}

#view-popup-overlay.active .view-popup-modal {
	transform: none;
	opacity: 1;
}

/* close X */
.view-popup-close-x {
	position: absolute;
	right: 12px;
	top: 12px;
	background: transparent;
	font-size: 20px;
	cursor: pointer;
	color: #444;
}

.view-popup-close-x:hover {
	background: rgba(0, 0, 0, 0.04);
	color: var(--gold);
}

/* top area: header grid */
.view-popup-top {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 18px;
	padding: 18px;
	border-bottom: 1px solid var(--light-border);
	align-items: start;
	background: #fff;
}

.view-popup-left {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.view-popup-photo {
	width: 96px;
	height: 96px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--light-border);
	background: #f7f7f7;
}

.view-popup-headline h1 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
}

.view-popup-headline p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: .92rem;
}

/* verified pill */
.view-popup-verified {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(216, 168, 14, 0.06);
	color: var(--gold);
	border: 1px solid rgba(216, 168, 14, 0.12);
	font-weight: 600;
	font-size: .86rem;
}

/* contact card right */
.view-popup-contact {
	background: #fffbe8;
	border: 1px solid var(--light-border);
	border-radius: 8px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.view-popup-contact h4 {
	margin: 0 0 6px 0;
	font-size: 1rem;
}

.view-popup-contact .small-muted {
	color: var(--muted);
	font-size: .92rem;
}

.view-popup-contact .view-popup-contact-phone {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text);
}

.view-popup-actions {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.view-popup-primary-btn {
	background: var(--gold);
	color: #111;
	border: 0;
	padding: .5rem .7rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
}

.view-popup-primary-btn:hover {
	background: var(--gold-dark);
	color: #fff;
}

/* scrollable content wrapper (keeps header & footer visible) */
.view-popup-scroll {
	/* overflow: auto;
	-webkit-overflow-scrolling: touch; */
}

/* main content two-column grid */
.view-popup-main {
 display: grid;
    grid-template-columns: 1fr 320px; /* 70 / 30 layout */
    grid-template-rows: auto 1fr;     /* top full width + content */
    gap: 18px;
    padding: 18px;
    background: var(--card-bg);
    max-height: calc(100vh - 320px);
    overflow: auto;
    padding-right: 6px;
}

/* left column scroll area */


.view-popup-rightcol {
	padding-bottom: 18px;
}

/* card blocks */
.view-popup-card {
	background: var(--card-bg);
	border: 1px solid var(--light-border);
	border-radius: 8px;
	padding: 14px;
	margin-bottom: 14px;
}

.view-popup-card h3 {
	margin: 0 0 8px 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}

.view-popup-card p,
.view-popup-card li {
	margin: 0 0 8px 0;
	color: #2b2f33;
	line-height: 1.5;
	font-size: .95rem;
}

/* mini card */
.view-popup-mini {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--light-border);
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 12px;
}

.view-popup-mini img {
	width: 44px;
	height: 44px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--light-border);
}

/* focus grid */
.view-popup-focus {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.view-popup-focus-item {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 10px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--light-border);
}

.view-popup-focus-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(216, 168, 14, 0.06);
	color: var(--gold);
	font-weight: 700;
}

/* group rows */
.view-popup-group {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 10px;
}

.view-popup-group img {
	width: 56px;
	height: 56px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--light-border);
}

/* map box */
.view-popup-map {
	border: 1px solid var(--light-border);
	border-radius: 8px;
	overflow: hidden;
	margin-top: 12px;
}

/* footer (always visible) */
.view-popup-footer {
	padding: 14px;
	font-size: .86rem;
	color: var(--muted);
	background: #fbfdff;
	border-top: 1px solid var(--light-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* nested email modal inside view popup */
#view-email-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	z-index: 4000;
	padding: 18px;
	-webkit-overflow-scrolling: touch;
}

#view-email-overlay.active {
	display: flex;
}

.view-email-modal {
	width: 720px;
	max-width: 96%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	padding: 16px;
}

.view-email-modal .form-control {
	border-radius: 8px;
}

.view-email-send {
	background: var(--gold);
	color: #fff;
	border: 0;
	padding: 10px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

.view-email-send:hover {
	background: var(--gold-dark);
}

/* scrolling helpers for left/right columns inside modal */
.view-popup-scroll-left {
	/* max-height: calc(100vh - 320px);
	overflow: auto; */
	padding-right: 6px;
	-webkit-overflow-scrolling: touch;
}

.view-popup-scroll-right {
	/* max-height: calc(100vh - 320px);
	overflow: auto; */
	padding-left: 6px;
	/* -webkit-overflow-scrolling: touch; */
}

/* responsive */
@media (max-width:1200px) {

	.view-popup-top,
	.view-popup-main {
		grid-template-columns: 1fr 280px;
	}
}

@media (max-width:992px) {

	.view-popup-top,
	.view-popup-main {
		grid-template-columns: 1fr;
	}

	.view-popup-contact {
		order: 3;
	}

	.view-popup-scroll-left,
	.view-popup-scroll-right {
		max-height: none;
	}
}

@media (max-width:768px) {
	#view-popup-overlay {
		align-items: flex-start;
		padding: 12px;
	}

	.view-popup-modal {
		width: 100%;
		border-radius: 10px;
	}

	.view-popup-photo {
		width: 80px;
		height: 80px;
	}
}

/* =============================
EMAIL POPUP (NAMESPACED)
============================= */
.email-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.6);
	z-index: 4000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 18px;
	align-items: inherit;
}

.email-popup-overlay.active {
	display: flex;
}

/* Modal */
.email-popup-modal {
	background: #fff;
	border-radius: 10px;
	width: 720px;
	max-width: 95%;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	overflow: scroll;
	transform: translateY(-30px);
	opacity: 0;
	transition: all 0.3s ease;
}

.email-popup-overlay.active .email-popup-modal {
	transform: translateY(0);
	opacity: 1;
}

/* Header */
.email-popup-header {
	display: flex;
	align-items: center;
	padding: 20px 25px;
	border-bottom: 1px solid #e0e0e0;
}

.email-popup-header img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	margin-right: 15px;
	background: #f5f5f5;
}

.email-popup-info h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.email-popup-info p {
	margin: 3px 0 0;
	color: #555;
	font-size: 14px;
}

.email-popup-close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 24px;
	cursor: pointer;
	color: #777;
	transition: 0.3s;
	text-align: center;
  line-height: 35px !important;
}

.email-popup-close:hover {
	color: #000;
}

/* Body */
.email-popup-body {
	display: flex;
	padding: 25px;
	gap: 20px;
}

.email-popup-left {
	flex: 1;
}

.email-popup-left input,
.email-popup-left textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 12px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.email-popup-left input:focus,
.email-popup-left textarea:focus {
	border-color: #d8a80e;
	box-shadow: 0 0 0 0.15rem rgba(216, 168, 14, 0.25);
}

.email-popup-left textarea {
	resize: vertical;
	min-height: 90px;
}

/* Checkbox */
.email-popup-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 12px;
}

.email-popup-checkbox input {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.email-popup-checkbox a {
	color: #d8a80e;
	text-decoration: none;
}

.email-popup-checkbox a:hover {
	text-decoration: underline;
}

/* Button */
.email-popup-send-btn {
	background-color: #d8a80e;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 5px;
	width: 100%;
	font-size: 15px;
	cursor: pointer;
	transition: 0.2s;
	font-weight: 600;
}

.email-popup-send-btn:hover {
	background-color: #b38c0b;
}

/* Right column */
.email-popup-right {
	flex: 1;
	font-size: 14px;
	color: #333;
	line-height: 1.6;
}

.email-popup-right ol {
	margin: 10px 0 0 18px;
	padding: 0;
}

.email-popup-right li {
	margin-bottom: 8px;
}

/* Footer */
.email-popup-footer {
	font-size: 12px;
	color: #555;
	border-top: 1px solid #e0e0e0;
	padding: 15px 25px;
	background-color: #fafafa;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 680px) {
	.email-popup-body {
		flex-direction: column;
	}

	.email-popup-modal {
		width: 100%;
	}
}

/* ============================================================
Utilities
============================================================ */
.breadcrumb-section {
	padding: 12px 0;
}

.filter-section {
	padding-bottom: 12px;
}

/* end of file */
/* =========================================================================
FILTERS POPUP (namespaced) — append to style.css
Prefix: filter-popup-
========================================================================= */
#filter-popup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.56);
	z-index: 6000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 22px;
}

#filter-popup-overlay.active {
	display: flex;
}

/* modal container */
.filter-popup-modal {
	width: 100%;
	max-width: 980px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 40px 80px rgba(2, 6, 23, 0.55);
	overflow: hidden;
	transform: translateY(-20px) scale(.995);
	opacity: 0;
	transition: all .22s ease;
	position: relative;
	max-height: calc(100vh - 48px);
	display: flex;
	flex-direction: column;
}

#filter-popup-overlay.active .filter-popup-modal {
	transform: translateY(0) scale(1);
	opacity: 1;
}

/* header */
.filter-popup-header {
	padding: 22px 24px;
	border-bottom: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.filter-popup-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #121318;
}

.filter-popup-close,
.email-popup-close,
.view-popup-close-x {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 0;
	background: #fff;
	font-size: 26px;
	padding: 0;
	color: #333;
	line-height: 18px;
}

.filter-popup-close:hover {
	background: rgba(0, 0, 0, 0.04);
	color: #111;
}

/* body wrapper - two columns: content + bottom bar */
.filter-popup-body {
	padding: 18px 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 auto;
}

/* internal scroll area */
.filter-popup-scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding-right: 6px;
	/* room for native scroll bar */
	max-height: calc(100vh - 220px);
	/* keeps footer visible */
}

/* top chips row (popular filters) */
.filter-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.filter-chip {
	border-radius: 28px;
	border: 1px solid #e9e9ea;
	padding: 8px 14px;
	font-size: .95rem;
	background: #fff;
	color: #222;
	box-shadow: none;
}



/* divider */
.filter-divider {
	height: 1px;
	background: #efefef;
	margin: 18px 0;
}

/* two-column small controls row */
.filter-controls {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 14px;
}

.filter-controls .control-group {
	flex: 1 1 320px;
}

.control-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* pill-like choices for Female/Male/In Person etc */
.fp-pill {
	border-radius: 28px;
	border: 1px solid #e9e9ea;
	padding: 8px 14px;
	font-size: .95rem;
	background: #fff;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
}

.fp-pill:hover {
	border-color: #ddd;
}

/* ----------------------------
Specialties grid (checkboxes)
---------------------------- */
.filter-section-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 28px;
	align-items: start;
	margin-top: 8px;
}

@media (max-width: 900px) {
	.filter-section-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.filter-section-grid {
		grid-template-columns: 1fr;
	}
}

/* checkbox style row */
.fp-checkbox {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 8px 6px;
	color: #222;
	font-size: .95rem;
}

.fp-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	border-radius: 4px;
	border: 1px solid #dcdcdc;
}

/* link to show more specialties */
.filter-show-more {
	color: #2b6ddb;
	font-size: .95rem;
	margin-top: 10px;
	display: inline-block;
	cursor: pointer;
}

/* insurance row similar to specialties */
.filter-insurance-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 28px;
	margin-top: 10px;
}

@media (max-width:900px) {
	.filter-insurance-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width:560px) {
	.filter-insurance-grid {
		grid-template-columns: 1fr;
	}
}

/* bottom action bar */
.filter-popup-footer {
	padding: 14px 18px;
	border-top: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #fff;
}

.filter-action-left {
  color: #000;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.filter-action-right {
	display: flex;
	gap: 12px;
	align-items: center;
}

.filter-apply-btn {
	background: #d8a80e;
	color: #111;
	border: 0;
	padding: 10px 18px;
	border-radius: 28px;
	font-weight: 600;
	font-size: 14px;
}

.filter-clear-btn {
	background: transparent;
	border: 1px solid #e1e1e1;
	padding: 8px 12px;
	border-radius: 100px;
	color: #222;
	font-size: 14px;
}

/* small utility */
.fp-section-title {
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 1rem;
}

.fp-subtle {
	color: #6b6f76;
	font-size: .95rem;
}

/* Apply same hover/focus/active style */
.filter-chip:hover,
.filter-chip:focus,
.filter-chip:active,
.filter-chip:focus-visible,
.filter-chip:focus-within,
.filter-clear-btn:hover,
.filter-clear-btn:focus,
.filter-clear-btn:active,
.filter-clear-btn:focus-visible,
.filter-clear-btn:focus-within,
.filter-section .btn:hover,
.filter-section .btn:focus,
.filter-section .btn:active,
.filter-section .btn:focus-visible,
.filter-section .btn:focus-within,
.filter-apply-btn:hover,
.filter-apply-btn:focus,
.filter-apply-btn:active,
.filter-apply-btn:focus-visible,
.filter-apply-btn:focus-within,
.filter-popup-close:hover,
.filter-popup-close:focus,
.filter-popup-close:active,
.filter-popup-close:focus-visible,
.filter-popup-close:focus-within,
.email-popup-close:hover,
.email-popup-close:focus,
.email-popup-close:active,
.email-popup-close:focus-visible,
.email-popup-close:focus-within,
.view-popup-close-x:hover,
.view-popup-close-x:focus,
.view-popup-close-x:active,
.view-popup-close-x:focus-visible,
.view-popup-close-x:focus-within {
	background: var(--gold) !important;
	color: #111 !important;
	border-color: var(--gold) !important;
	outline: none !important;
}

/* ===============================
Black Therapy Today — Account Settings (Final Stable Version)
Bootstrap + Manrope + WebThreeX Custom Styles
=============================== */
:root {
	--btacc-primary: #f5b700;
	--btacc-primary-hover: #ffd84a;
	--btacc-border: #e4e4e4;
	--btacc-bg: #fff;
	--btacc-text: #222;
	--btacc-muted: #666;
}

body.btacc-body {
	background-color: var(--btacc-bg);
	font-family: 'Manrope', sans-serif;
	color: var(--btacc-text);
	margin: 0;
}

/* Layout Wrapper */
.btacc-page {
	padding: 80px 20px;
	width: 100%;
	background: #F5F7F9;
}

/* Card Container */
.btacc-card {
	max-width: 1320px !important;
}

/* Sidebar */
.btacc-sidebar {
	background: #fff;
	border-right: 1px solid var(--btacc-border);
	padding: 40px 30px;
	min-width: 260px;
}

.btacc-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 28px;
}

.btacc-navitem {
	list-style: none;
	font-size: 15px;
	color: #555;
	padding: 10px 0 10px 14px;
	cursor: pointer;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
	border-radius: 6px;
}

.btacc-navitem:hover {
	color: #000;
}

.btacc-navitem.btacc-active {
	font-weight: 600;
	color: #000;
	border-left-color: var(--btacc-primary);
	padding-left: 18px;
	/* space after yellow border */
	background-color: #fffdf3;
}

/* Form Area */
.btacc-form-wrap {
	padding: 50px 60px;
	flex-grow: 1;
}

.btacc-avatar-wrap {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 35px;
}

.btacc-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #d8d8d8;
	color: #fff;
	font-weight: 600;
	font-size: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btacc-avatar-actions button {
	background: #fff !important;
	border: 1px solid #b3b3b3;
	color: #4a4a4a !important;
	font-size: 14px;
	transition: color 0.3s ease;
	padding: 4px 10px;
	border-radius: 100px;
}

/* Labels & Inputs */
.btacc-label {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 6px;
	display: block;
}

.btacc-input,
.btacc-select,
.btacc-textarea {
	width: 100%;
	border: 1px solid var(--btacc-border) !important;
	border-radius: 100px !important;
	padding: 12px 20px !important;
	font-size: 14px !important;
	background-color: #fff !important;
	color: var(--btacc-text) !important;
	transition: all 0.3s ease !important;
	appearance: none !important;
}

.btacc-input:focus,
.btacc-select:focus,
.btacc-textarea:focus {
	border-color: var(--btacc-primary) !important;
	box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25) !important;
	outline: none !important;
}

.btacc-textarea {
	resize: none !important;
	height: 80px !important;
	border-radius: 20px !important;
}

/* Field Spacing */
.btacc-form-wrap .mb-3,
.btacc-form-wrap .mt-3,
.btacc-form-wrap .row.g-3 {
	margin-bottom: 22px !important;
}

/* Buttons */
.btacc-actions {
	display: flex !important;
	gap: 16px !important;
	margin-top: 35px !important;
}

.btacc-btn-save {
	background: var(--btacc-primary) !important;
	border: none !important;
	color: #000 !important;
	padding: 12px 38px !important;
	border-radius: 100px !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
	text-transform: none !important;
}

.btacc-btn-save:hover {
	background: var(--btacc-primary-hover) !important;
	color: #000 !important;
}

.btacc-btn-cancel {
	border: 1px solid #ccc !important;
	background: transparent !important;
	color: #555 !important;
	padding: 12px 38px !important;
	border-radius: 100px !important;
	font-weight: 500 !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
}

.btacc-btn-cancel:hover {
	background: #f1f1f1 !important;
	color: #222 !important;
}

/* Timezone Row */
.btacc-currenttime {
	font-size: 14px !important;
	color: var(--btacc-muted) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.btacc-form-wrap {
		padding: 40px 30px !important;
	}
}

@media (max-width: 768px) {
	.btacc-card {
		flex-direction: column !important;
	}

	.btacc-sidebar {
		border-right: none !important;
		border-bottom: 1px solid var(--btacc-border) !important;
	}

	.btacc-form-wrap {
		padding: 30px 20px !important;
	}

	.btacc-btn-save,
	.btacc-btn-cancel {
		width: 100% !important;
		text-align: center !important;
	}
}

/* ===============================
Billing Page Fixes (Icons, Button, Layout)
=============================== */
/* Fix Card Container Width */
.btacc-billing-wrap {
	display: flex !important;
	justify-content: center !important;
	align-items: flex-start !important;
	padding-top: 50px;
	padding-bottom: 50px;
}

.btacc-billing-card {
	border: 1px solid var(--btacc-border) !important;
	border-radius: 16px !important;
	padding: 40px 50px !important;
	background: #fff !important;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
	max-width: 500px !important;
	width: 100% !important;
	margin-top: 0px !important;
}

/* Fix Payment Logos */
.btacc-card-icons {
	text-align: right !important;
	margin-bottom: 10px !important;
	position: absolute;
	top: 30px;
	right: 20px;
}

.btacc-card-icons img {
	display: inline-block !important;
	height: 13px !important;
	width: auto !important;
	margin-left: 6px !important;
	vertical-align: middle !important;
	object-fit: contain !important;
	border-radius: 4px !important;
}

/* Inputs and Field Layout */
.btacc-billing-card .btacc-input,
.btacc-billing-card .btacc-select {
	border: 1px solid var(--btacc-border) !important;
	border-radius: 100px !important;
	padding: 12px 20px !important;
	background-color: #fff !important;
}

.btacc-billing-card .btacc-input:focus,
.btacc-billing-card .btacc-select:focus {
	border-color: var(--btacc-primary) !important;
	box-shadow: none !important;
}

/* Fix Button */
.btacc-btn-agree {
	display: inline-block !important;
	background: var(--btacc-primary) !important;
	color: #000 !important;
	font-weight: 600 !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 12px 38px !important;
	font-size: 15px !important;
	margin-top: 10px !important;
	cursor: pointer !important;
	text-align: center !important;
	transition: all 0.3s ease !important;
	width: 100% !important;
}

.btacc-btn-agree:hover {
	background: var(--btacc-primary-hover) !important;
}

/* Fix spacing for inputs in row */
.btacc-billing-row {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 15px !important;
}

.btacc-billing-row>div {
	flex: 1 !important;
	min-width: 130px !important;
	margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.btacc-billing-card {
		padding: 30px 25px !important;
	}

	.btacc-card-icons {
		text-align: center !important;
	}

	.btacc-card-icons img {
		height: 24px !important;
	}
}

.mb-3.btacc-cardnumber-wrapper {
	position: relative;
}

/* ===============================
COMPLIANCE PAGE STYLES
=============================== */
.btacc-compliance-wrap {
	padding: 50px 80px !important;
}

.btacc-compliance-card {
	background: #fff !important;
	border: 1px solid #e5e5e5 !important;
	border-radius: 12px !important;
	padding: 30px 40px !important;
	max-width: 580px !important;
}

.btacc-compliance-title {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #000 !important;
}

.btacc-compliance-desc {
	font-size: 14px !important;
	color: #555 !important;
}

.btacc-btn-baa {
	padding: 10px 26px !important;
	font-size: 14px !important;
	margin-top: 10px !important;
	flex-shrink: 0 !important;
}

@media (max-width: 992px) {
	.btacc-compliance-wrap {
		padding: 40px 30px !important;
		justify-content: center !important;
	}

	.btacc-compliance-card {
		max-width: 100% !important;
	}

	.btacc-compliance-content {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 15px !important;
	}

	.btacc-btn-baa {
		margin-left: 0 !important;
	}
}

/**listing-css***/
:root {
	--btacc-primary: #f5b700;
	--btacc-primary-hover: #ffd84a;
	--btacc-border: #e4e4e4;
	--btacc-bg: #f5f7f9;
	--btacc-text: #222;
	--btacc-muted: #666;
	--btacc-radius: 12px;
}


/* Layout */
.btacc-layout {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

/* Sidebar */
.btacc-sidebar {
	width: 280px;
	min-width: 240px;
}

.btacc-box {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 20px;
}

.btacc-list {
	margin-top: 10px;
	max-height: 220px;
	overflow-y: auto;
}

.btacc-list a {
	display: block;
	font-size: 13px;
	color: var(--btacc-primary);
	text-decoration: none;
	margin-bottom: 8px;
}

.btacc-list a:hover {
	text-decoration: underline;
}

/* CTA Box */
.btacc-cta {
	background: #f49d2b;
	color: #fff;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
}

.btacc-btn-white {
	background: #fff;
	color: #333;
	border: none;
	border-radius: 100px;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

/* Contributors */
.btacc-contrib-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.btacc-accent {
	width: 32px;
	height: 3px;
	background: var(--btacc-primary);
	border-radius: 3px;
}

.btacc-contributor {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.btacc-contributor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.btacc-contributor .name {
	font-weight: 600;
	font-size: 14px;
}

.btacc-contributor .role {
	font-size: 12px;
	color: var(--btacc-muted);
	text-transform: uppercase;
}

/* Main Content */
.btacc-content {
	flex: 1;
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: var(--btacc-radius);
	padding: 28px;
}

.btacc-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 14px;
}

.btacc-content p {
	color: var(--btacc-muted);
	line-height: 1.65;
	font-size: 15px;
	margin-bottom: 16px;
}

/* The Urge To Humanize Section */
.btacc-related {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #f5f5f5;
}

.btacc-related .btacc-container {
	margin: 0 auto;
}

.btacc-related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.btacc-underline {
	width: 48px;
	height: 4px;
	background: var(--btacc-primary);
	border-radius: 3px;
	margin-top: 6px;
}

.btacc-card:hover {
	transform: translateY(-4px);
}

.btacc-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}




/* Responsive */
@media (max-width: 992px) {
	.btacc-layout {
		flex-direction: column;
	}

	.btacc-sidebar {
		width: 100%;
		order: 2;
	}

	.btacc-content {
		order: 1;
	}

	
}

@media (max-width: 576px) {
	.btacc-card {
		flex: 1 1 100%;
	}

	.btacc-related-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/***listing-css*****/
:root {
	--btacc-primary: #f5b700;
	--btacc-primary-hover: #ffd84a;
	--btacc-border: #e4e4e4;
	--btacc-bg: #fff;
	--btacc-text: #222;
	--btacc-muted: #666;
	--btacc-radius: 10px;
}

body {
	font-family: "Manrope", sans-serif;
	background: var(--btacc-bg);
	color: var(--btacc-text);
	margin: 0;
}

/* Container */
.btacc-container {
	max-width: 1350px;
	margin: 60px auto;
	padding: 0 25px;
}

/* Sidebar Boxes */
.btacc-box {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	padding: 18px 20px;
	margin-bottom: 16px;
}

.btacc-box-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #000;
}

.btacc-subtext {
	font-size: 13px;
	color: #555;
	margin-bottom: 12px;
	line-height: 1.5;
}

.btacc-subheading {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}

.btacc-box .btacc-search {
	width: 100%;
	border: 1px solid #dcdcdc;
	border-radius: 100px;
	padding: 8px 12px;
	font-size: 14px;
}

.btacc-box .btacc-search:focus-visible {
	outline: none
}

.btacc-linklist {
	max-height: 220px;
	overflow-y: auto;
	padding-right: 6px;
}

.btacc-linklist a {
	display: block;
	font-size: 13px;
	color: var(--btacc-primary);
	text-decoration: none;
	line-height: 1.6;
	transition: color 0.2s ease;
}

.btacc-linklist a:hover {
	text-decoration: underline;
	color: var(--btacc-primary-hover);
}

/* Custom scrollbar */
.btacc-linklist::-webkit-scrollbar {
	width: 6px;
}

.btacc-linklist::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.btacc-linklist::-webkit-scrollbar-thumb {
	background: var(--btacc-primary);
	border-radius: 10px;
}

/* CTA */
.btacc-cta {
	background: var(--btacc-primary);
	color: #000;
	border-radius: var(--btacc-radius);
	padding: 22px 20px;
	text-align: center;
	margin-bottom: 16px;
}

.btacc-cta h6 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.3;
}

.btacc-cta p {
	font-size: 13px;
	color: #222;
	margin-bottom: 15px;
}

.btacc-btn-white {
	background: #fff;
	color: #000;
	border: none;
	border-radius: 100px;
	padding: 8px 22px;
	font-weight: 600;
	font-size: 13px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	cursor: pointer;
}

/* Contributors */
.btacc-contrib-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.btacc-accent {
	width: 24px;
	height: 2px;
	background: var(--btacc-primary);
	border-radius: 3px;
}

.btacc-contributor {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.btacc-contributor img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.btacc-contributor .name {
	font-weight: 600;
	font-size: 14px;
}

.btacc-contributor .role {
	font-size: 12px;
	color: var(--btacc-muted);
	text-transform: uppercase;
}

/* Main Content */
.btacc-content {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: var(--btacc-radius);
	padding: 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 14px;
}

.btacc-content p {
	color: #555;
	line-height: 1.7;
	font-size: 15px;
	margin-bottom: 20px;
}

/* Related Section */

.btacc-related .btacc-container {
	margin: 0 auto;
}

.btacc-related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.btacc-related-header h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.btacc-underline {
	width: 44px;
	height: 2px;
	background: var(--btacc-primary);
	border-radius: 3px;
	margin-top: 3px;
}

.btacc-btn-viewall {
background: var(--btacc-primary);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 12px 18px 14px;
  font-size: 15px;
  font-weight: 600;
  transform: translateY(3px);
  line-height: 1.2;
}

.btacc-related-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btacc-card {
	min-width: 250px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btacc-related .btacc-card {
  flex: 0 0 calc(25% - 16px);
}

.btacc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.btacc-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}

.btacc-card .meta {
	padding: 14px 0px 0px;
	margin-bottom: 0;
}

.btacc-card .meta .tag {
	display: inline-block;
	background: var(--btacc-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	border-radius: 5px;
	padding: 4px 10px;
	margin-bottom: 8px;
}

.btacc-card .meta h6 {
	font-size: 15px;
	font-weight: 600;
	margin: 0px 0 2px;
	color: #000;
}

.btacc-card .meta .time {
	font-size: 12px;
	color: #777;
}

@media (max-width: 992px) {
	

	.btacc-content {
		padding: 24px;
	}
}

@media (max-width: 576px) {
	.btacc-card {
		flex: 1 1 100%;
	}

	.btacc-related-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

#current-card-info {
	position: relative;
}

/***therapist-profile****/
.btacc-wrap {
	padding: 60px 18px 80px;
}

/* ---------- Profile Header ---------- */
.btacc-profile {
	display: flex;
	gap: 26px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.btacc-profile-left {
	flex: 1;
	min-width: 0;
}

.btacc-logo {
  width: 84px;
  height: 84px;
  border-radius: 100px;
  overflow: hidden;
  display: inline-block;
  margin-right: 12px;
  border: 0;
  box-shadow: none;
  background: #fff;
}

.btacc-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.btacc-name {
	font-size: 20px;
	font-weight: 700;
	margin: 6px 0 6px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.btacc-role {
	color: var(--btacc-muted);
	font-size: 13px;
	margin-bottom: 12px;
}

.btacc-desc {
	color: var(--btacc-muted);
	line-height: 1.7;
	font-size: 15px;
}

/* Right column cards */
.btacc-profile-right {
	width: 320px;
}

.btacc-card {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-connect-title {
	font-weight: 700;
	margin-bottom: 8px;
}

.btacc-phone {
	font-weight: 700;
	font-size: 18px;
	color: var(--btacc-primary);
	margin-bottom: 8px;
}

.btacc-cta-row {
	display: flex;
	gap: 8px;
	align-items: center;
}

.btacc-btn {
	border-radius: 100px;
	padding: 8px 18px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 14px;
}

.btacc-btn-yellow {
	background: var(--btacc-primary);
	color: #000;
	border-color: var(--btacc-primary);
	box-shadow: 0 4px 12px rgba(245, 183, 0, 0.15);
  text-decoration: none;
}

.btacc-btn-outline {
	background: #fff;
	color: #333;
	border: 1px solid #e6e6e6;
  text-decoration: none;

}

/* small muted list in profile cards */
.btacc-small {
	font-size: 13px;
	color: var(--btacc-muted);
	line-height: 1.6;
}

/* ---------- Full-width CTA Bar ---------- */
.btacc-cta-bar {
	background: var(--btacc-primary);
	color: #000;
	border-radius: 10px;
	padding: 18px 20px;
	margin: 18px 0 28px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.btacc-cta-bar p {
	margin: 0;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
}

.btacc-cta-bar a {
	color: #000;
	text-decoration: underline;
	margin-left: 6px;
	font-weight: 800;
}

/* ---------- Section common ---------- */
section.btacc-section {
	margin-bottom: 28px;
}

section.btacc-section .btacc-inner {
	display: flex;
	gap: 22px;
	align-items: flex-start;
}

.btacc-left {
	flex: 1;
	min-width: 0;
}

.btacc-right {
	width: 320px;
	flex-shrink: 0;
}

.btacc-subtitle {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 16px;
}

.btacc-line {
	height: 1px;
	background: var(--btacc-border);
	margin: 18px 0;
	border-radius: 2px;
}

/* finance / qualifications lists */
.btacc-list {
	font-size: 14px;
	color: var(--btacc-muted);
	line-height: 1.7;
}

.btacc-list b {
	color: var(--btacc-text);
	font-weight: 700;
}

/* small right-card */
.btacc-mini-card {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 10px;
	padding: 14px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-mini-card img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 100px;
}

/* Qualifications special badge */
.btacc-qual-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 8px;
	padding: 10px 12px;
	margin-bottom: 12px;
}

.btacc-qual-badge .badge-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #f6f6f6;
	display: inline-block;
}

/* Location / Map */
.btacc-map {
	width: 100%;
	height: 280px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--btacc-border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.btacc-addresses {
	display: flex;
	gap: 18px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.btacc-address {
	background: #fff;
	border: 1px solid var(--btacc-border);
	border-radius: 8px;
	padding: 12px;
	min-width: 220px;
	flex: 1;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.btacc-address small {
	display: block;
	color: var(--btacc-muted);
	margin-top: 8px;
	font-size: 13px;
}

/* Footer spacing */
.btacc-bottom-space {
	height: 48px;
}

/* Responsive */
@media (max-width: 992px) {
	.btacc-profile {
		flex-direction: column;
	}

	.btacc-profile-right {
		width: 100%;
	}

	.btacc-inner {
		flex-direction: column;
	}

	.btacc-right {
		width: 100%;
		order: 2;
	}

	.btacc-left {
		order: 1;
	}

	.btacc-addresses {
		flex-direction: column;
	}

	.btacc-map {
		height: 220px;
	}
}

@media (max-width:576px) {
	.btacc-wrap {
		margin: 20px auto;
		padding: 0 12px 60px;
	}

	.btacc-logo {
		width: 64px;
		height: 64px;
	}

	.btacc-name {
		font-size: 18px;
	}
}


/* ======================================
   See More Therapy Options (Exact Replica)
   ====================================== */

.btacc-therapy-options {
  background-color: #ffffff;
}

.btacc-heading {
font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin-bottom: 26px;
}

.btacc-option-card {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background-color: #fff;
  padding: 40px 20px;
  transition: all 0.2s ease-in-out;
  height: 100%;
}

.btacc-option-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.btacc-option-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

/* Desktop alignment fix */
@media (min-width: 992px) {
  .btacc-option-card {
    padding: 40px 15px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .btacc-option-card {
    margin-bottom: 20px;
  }
  .login-container .login-left {
	display: none;
  }
  .page-template-therapist .login-container .login-right .login-box {
	width: 100% !important;
  }
}

@media (max-width: 576px) {
  .btacc-heading {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btacc-option-card {
    padding: 30px 15px;
  }

  .btacc-option-img {
    max-height: 120px;
    margin-bottom: 15px;
  }
}

.btacc-address a {
  color: #000
}
.btacc-mini-card a {
  color: #000
}

/* ============================
   Find A Therapist Section (Exact Replica)
   ============================ */

.btacc-find-therapist {
  background-color: #fff;
}

.btacc-find-box {
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 40px 35px;
  background-color: #fff;
  max-width: 100%;
}

.btacc-find-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}

.btacc-find-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #222222;
  margin-bottom: 20px;
}

.btacc-search-input {
  border-radius: 100px !important;
  border: 1px solid #D8D8D8 !important;
  height: 38px !important;
  font-size: 14px !important;
  padding: 6px 15px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.btacc-search-input:focus {
  border-color: #f5b700 !important;
  box-shadow: 0 0 0 2px rgba(245, 183, 0, 0.25) !important;
}

.btacc-city-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}

.btacc-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

.btacc-city-list li {
  display: inline-block;
}

.btacc-city-list li a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btacc-city-list li a:hover {
  color: #f5b700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btacc-find-box {
    padding: 30px 20px;
  }
  .btacc-city-list {
    gap: 4px 10px;
  }
  .btacc-find-title {
    font-size: 15px;
  }
}


.btacc-find-therapist {
  padding-bottom: 80px;
}

.login-container .login-right {
  align-items: center;
}
.login-container .login-left {
  text-align: right;
}
.login-container {
  padding-bottom: 0px;
  padding-top: 0px;
}
#therapist-login-form .form-label {
  font-size: 15px;
  margin-bottom: 2px;
}
#therapist-login-form .form-control {
  border-radius: 100px;
  font-size: 15px;
}
.text-decoration-none {
  color: #333;
}

.text-primary {
  color: #000 !important;
}

#login-button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 500px) {
	.single_wrap .page-title {
		font-size: 20px;
	}
	.single_wrap .blog-item {
		display: block !important;
	}
	.single_wrap .blog-item img {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 12px;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.single_wrap .blog-title {
		font-size: 20px;
		line-height: 1.1;
	}
}

.login-container .login-right .login-box {
	width: 40% !important;
}
.login-container .login-left {
	width: 60%;
}
.text-muted {
	font-size: 15px;
}
label {
	display: inline-block;
	line-height: 1.1;
	font-size: 15px;
}
.text-decoration-none {
	line-height: 1.1;
	font-size: 15px;
}



.compliance_wrap .btacc-card {
	display: flex !important;
  	flex-direction: row-reverse;
  	justify-content: space-between;
}

@media (max-width: 768px) {
	.btacc-find-therapist {
	padding-bottom: 50px;
	}
	.btacc-therapy-options {
		padding-bottom: 10px !important;
	}
	.breadcrumb-section, .filter-section, .therapists, .btacc-therapy-options, .btacc-find-therapist {
		padding-left: 15px;
		padding-right: 15px;
	}
	.breadcrumb-section .container, .filter-section .container, .btacc-find-therapist .container {
		max-width: inherit;
	}
	.therapists .container {
		max-width: inherit;
	}
	.btacc-therapy-options .container {
		max-width: inherit;

	}
	.btacc-therapy-options {
		padding-top: 10px !important;
	}
	.btacc-therapy-options .btacc-heading {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.btacc-option-card {
		height: auto;
	}
	.breadcrumb-section h4 {
		font-size: 20px;
	}
	.view-popup-focus {
		grid-template-columns: repeat(1, 1fr);
	}
	.filter-chip {
		padding: 5px 12px;
		font-size: 14px;
	}
	.filter-popup-header h2 {
		font-size: 19px;
	}
	.filter-popup-header {
		padding: 12px 24px;
	}
	.filter-insurance-grid {
		gap: 1px 28px;
	}
	.filter-section-grid {
		gap: 1px 28px;
	}
	.compliance_wrap {
		padding: 50px 20px;
	}
	.compliance_wrap .btacc-compliance-wrap {
		padding-left: 0 !important;
  		padding-right: 0 !important;
		padding-bottom: 0 !important;
		padding-top: 0 !important;
	}
	.btacc-compliance-card {
		width: 100% !important;
	}
	.btacc-sidebar {
		width: 100%;
		order: 2;
		padding-left: 0 !important;
		padding-right: 0 !important;
		padding-top: 0;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.btacc-sidebar h5 {
		margin-bottom: 0 !important;
	}
	.btacc-compliance-card {
		padding: 20px 20px !important;
	}
	.compliance_wrap .btacc-card {
		display: flex !important;
  		flex-direction: column-reverse !important;
  		justify-content: space-between;
	}

}

@media (max-width: 575px) {
	.btacc-option-card {
		margin-bottom: 0 !important;
	}
	.filter-popup-footer {
		display: block;
  		text-align: center;
	}
	.filter-action-right {
		display: block;
		margin-top: 10px;
	}
	.filter-clear-btn {
		margin-bottom: 8px;
	}
	.view-popup-left {
		display: block;
	}
	.therapist-card .d-flex {
		display: block !important;
	}
	.therapist-card .info {
		margin-left: 0;
		margin-top: 10px;
	}
	.therapist-card .therapist-img {
		width: auto;
		height: auto;
		object-fit: cover;
		max-width: 100%;
	}
	.therapist-card .btn.btn-light {
		margin-left: 0;
	}
} 

.home1 .btacc-container {
	margin-top: 20px;
	margin-bottom: 20px;
}

.hero2 .btacc-container {
	margin-top: 40px;	
}  
.search-icon {
	position: relative;
}
.search-icon:before {
content: "";
  position: absolute;
  right: 10px;
  top: 8px;
  background-image: url("http://btt.webthreex.com/wp-content/uploads/2025/12/search-icon.png");
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.login-container .login-right .form-control {
	font-size: 15px !important;
	border-radius: 100px !important;
}

.rightfeed .feed .title {
	display: block;
  	margin-top: 6px;
  	margin-bottom: 0;
}


/* Yellow strip wrapper */
.btt-cta-strip {
  margin: 32px auto;
  padding: 0 16px;
}

.btt-cta-strip__inner {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #e1b21a;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  align-items: center;
  padding: 20px 32px;
  gap: 24px;
}

/* Columns */
.btt-cta-strip__col {
  color: #ffffff;
}

.btt-cta-strip__col--find {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.btt-cta-strip__col--pros {
  padding-left: 24px;
}

/* Titles */
.btt-cta-strip__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

/* Form */
.btt-cta-strip__form {
  margin: 0;
  padding-right: 30px;
}

.btt-cta-strip__fields {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btt-cta-strip__input {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  background-color: #ffffff;
  color: #111111;
  width: 100%; 
}

.btt-cta-strip__input::placeholder {
  color: #9ca3af;
}
.btt-cta-strip__form .btacc-autocomplete-container {
	position: relative;
}

/* Buttons / links */
.btt-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btt-cta-strip__btn--black {
  background-color: #000000;
  color: #ffffff;
}

.btt-cta-strip__btn--black:hover {
  opacity: 0.9;
}

.btt-cta-strip__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.btt-cta-strip__link {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}

.btt-cta-strip__link:hover {
  text-decoration: underline;
}

/* Verified text */
.btt-cta-strip__verified {
  font-size: 13px;
  color: #111111;
  text-align: right;
}

.btt-cta-strip__verified span {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .btt-cta-strip__inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .btt-cta-strip__col--find {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding-bottom: 16px;
    margin-bottom: 12px;
  }
  .btt-cta-strip__col--pros {
    padding-left: 0;
  }
  .btt-cta-strip__fields {
    flex-direction: column;
    align-items: stretch;
  }
  .btt-cta-strip__btn {
    width: 100%;
    justify-content: center;
  }
  .btt-cta-strip__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


.btt-cta-strip__form .btacc-autocomplete-container:before {
	content: "";
  position: absolute;
right: 17px;
  top: 11px;
  background-image: url("http://btt.webthreex.com/wp-content/uploads/2025/12/search-icon.png");
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  opacity: 0.5;
}