/*
Theme Name: Apollo Accounting
Version: 1.0.0
Template: astra
*/

/* Astra Header/Footer */

#ast-desktop-header, #ast-mobile-header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
	transition: all ease-out .5s;
}

#ast-desktop-header.active, #ast-mobile-header.active {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 5px 3px 20px 0 rgba(0, 0, 0, .1);
	padding: 0;
}

#ast-desktop-header.active img.custom-logo, #ast-mobile-header.active img.custom-logo {
	content: url('/wp-content/uploads/2025/11/web-logo.png');
	width: 240px!important;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
	transition: all ease-out .5s;
}

#ast-desktop-header.active .main-header-menu .menu-link, #ast-mobile-header.active .main-header-menu .menu-link {
	color: #1a3261!important;
	transition: color 0.3s ease;
}

#ast-desktop-header.active .main-header-menu .menu-link:hover, #ast-mobile-header.active .main-header-menu .menu-link:hover {
	color: #25a8a3!important;
}

#ast-desktop-header.active .ast-custom-button, #ast-mobile-header.active .ast-custom-button, #ast-desktop-header.active .ast-header-button-1 .menu-link, #ast-mobile-header.active .ast-header-button-1 .menu-link {
	color: #1a3261!important;
	border-color: #1a3261!important;
	transition: color 0.3s ease, border-color 0.3s ease;
}

#ast-desktop-header.active .ast-custom-button:hover, #ast-mobile-header.active .ast-custom-button:hover, #ast-desktop-header.active .ast-header-button-1 .menu-link:hover, #ast-mobile-header.active .ast-header-button-1 .menu-link:hover {
	color: #25a8a3!important;
	border-color: #25a8a3!important;
}

#ast-desktop-header.active .ast-builder-html-element a, #ast-mobile-header.active .ast-builder-html-element a {
	color: #1a3261!important;
	transition: color 0.3s ease;
}

#ast-desktop-header.active .ast-builder-html-element a:hover, 
#ast-mobile-header.active .ast-builder-html-element a:hover,
#ast-desktop-header.active .current-menu-item .menu-link,
#ast-mobile-header.active .current-menu-item .menu-link {
	color: #25a8a3!important;
}

/* End Astra Header/Footer */

/* Content */

.blog #content {
	margin-top: 100px;
}

.site-footer {
	position: relative;
	z-index: 1;
}

/* End Content */

/* Sticky Left / Right */

.sticky-parent {
	display: flex;
	align-items: flex-start; /* ensure top alignment */
}

.sticky-left, .sticky-right {
	position: -webkit-sticky!important;
	position: sticky!important;
	top: 190px!important;
	align-self: flex-start!important;
}

.sticky-left img, .sticky-right img {
	z-index: 10;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.sticky-left, .sticky-right {
		position: static !important;
		top: auto !important;
		align-self: auto !important;
	}
}

/* End Sticky Left / Right */

/* Pricing Table */

:root {
	--pt-navy: #1a3261;
	--pt-teal: #25a8a3;
	--pt-teal-light: #e8f7f7;
	--pt-navy-light: #f0f3f8;
	--pt-bronze: #9c6d3e;
	--pt-white: #ffffff;
	--pt-text-dark: #1a2535;
	--pt-text-mid: #4a5a72;
	--pt-text-light: #7a8a9e;
	--pt-border: #dde4ef;
	--pt-shadow: 0 8px 32px rgba(26, 50, 97, 0.13);
}

.pt-wrap * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.pt-wrap {
	color: var(--pt-text-dark);
	background: var(--pt-white);
	width: 100%;
	padding: 0 0 8px;
}

/* Scroll Wrapper */

.pt-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 14px;
	box-shadow: var(--pt-shadow);
	border: 1.5px solid var(--pt-border);
}

/* End Scroll Wrapper */

/* Table */

table.pt-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 620px;
	font-size: 0.875rem;
}

/* End Table */

/* Badge Row */

.pt-table .row-badge td {
	padding: 0;
	background: var(--pt-white);
	border: none;
	line-height: 1;
}

.pt-table .row-badge .badge-cell {
	background: var(--pt-teal);
	color: #fff;
	text-align: center;
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 0;
}

/* End Badge Row */

/* Tier Header Row */

.pt-table .row-tier-header td {
	background: var(--pt-navy);
	padding: 22px 20px 20px;
	vertical-align: top;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.pt-table .row-tier-header td:last-child {
	border-right: none;
}

.pt-table .row-tier-header td.col-featured {
	background: #1f3e78;
}

.pt-table .row-tier-header td.col-label {
	vertical-align: bottom;
	padding-bottom: 24px;
	background: var(--pt-white);
}

.pt-label-eyebrow {
	display: block;
	color: var(--pt-text-light);
	font-size: 0.67rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.pt-label-title {
	color: var(--pt-navy);
	font-size: 1rem;
	font-weight: 700;
}

/* End Tier Header Row */

/* Tier Name Block */

.pt-tier-top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 5px;
}

.pt-tier-icon {
	width: 27px;
	height: 27px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	flex-shrink: 0;
}

.pt-tier-icon.icon-bronze { background: rgba(156, 109, 62, 0.28); }
.pt-tier-icon.icon-silver { background: rgba(138, 155, 176, 0.28); }
.pt-tier-icon.icon-gold	{ background: rgba(201, 168, 76, 0.28); }

.pt-tier-name {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
}

.pt-tier-sub {
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 9px;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-tier-sub.sub-bronze { color: #d4956a; }
.pt-tier-sub.sub-silver { color: #a8bcd0; }
.pt-tier-sub.sub-gold { color: #d4b86a; }

.pt-tier-tagline {
	font-size: 0.77rem;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.5;
	margin-bottom: 14px;
	font-weight: 300;
}

/* End Tier Name Block */

/* Price Block */

.pt-price .from-label {
	display: block;
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1px;
}

.pt-price .amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.pt-price .per {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 400;
}

.pt-price .monthly {
	display: block;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.38);
	margin-top: 3px;
	margin-bottom: 15px;
}

/* End Price Block */

/* Header Buttons */

.pt-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 14px;
	border-radius: 7px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: all 0.2s ease;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.pt-btn.btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff;
}

.pt-btn.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
	text-decoration: none;
}

.pt-btn.btn-solid {
	background: var(--pt-teal);
	border-color: var(--pt-teal);
	color: #fff;
}

.pt-btn.btn-solid:hover {
	background: #1e928d;
	border-color: #1e928d;
	color: #fff;
	text-decoration: none;
}

/* End Header Buttons */

/* Section Divider Rows */

.pt-table .row-section td {
	background: var(--pt-navy-light);
	color: var(--pt-navy);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 8px 18px;
	border-top: 2px solid var(--pt-border);
	border-bottom: 1px solid var(--pt-border);
}

.pt-table .row-section td.col-featured-light {
	background: #e0f0f0;
}

/* End Section Divider Rows */

/* Feature Rows */

.pt-table .row-feature td {
	padding: 11px 18px;
	border-bottom: 1px solid var(--pt-border);
	vertical-align: middle;
	text-align: center;
	color: var(--pt-text-mid);
}

.pt-table .row-feature td:first-child {
	text-align: left;
	color: var(--pt-text-dark);
	font-weight: 500;
	font-size: 0.83rem;
}

.pt-table .row-feature:nth-child(even) td {
	background: var(--pt-navy-light);
}

.pt-table .row-feature td.col-featured-light {
	background: rgba(37, 168, 163, 0.07);
}

.pt-table .row-feature:nth-child(even) td.col-featured-light {
	background: rgba(37, 168, 163, 0.12);
}

.pt-table .row-feature:hover td {
	background: #ddf3f2;
}

.pt-table .row-feature:hover td.col-featured-light {
	background: #c8edeb;
}

/* End Feature Rows */

/* Footer CTA Row */

.pt-table .row-footer td {
	background: var(--pt-navy-light);
	padding: 18px 20px;
	border-top: 2px solid var(--pt-border);
	text-align: center;
	vertical-align: middle;
}

.pt-table .row-footer td:first-child {
	text-align: left;
}

.pt-table .row-footer td.col-featured-light {
	background: rgba(37, 168, 163, 0.09);
}

.pt-footer-note {
	font-size: 0.82rem;
	color: var(--pt-text-mid);
	line-height: 1.55;
}

.pt-footer-note strong {
	display: block;
	color: var(--pt-navy);
	font-size: 0.84rem;
	font-weight: 700;
	margin-bottom: 3px;
}

/* End Footer CTA Row */

/* Footer Buttons */

.pt-btn-footer {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 7px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: all 0.2s ease;
	cursor: pointer;
}

.pt-btn-footer.btn-footer-outline {
	background: transparent;
	border-color: var(--pt-navy);
	color: var(--pt-navy);
}

.pt-btn-footer.btn-footer-outline:hover {
	background: var(--pt-navy);
	color: #fff;
	text-decoration: none;
}

.pt-btn-footer.btn-footer-solid {
	background: var(--pt-teal);
	border-color: var(--pt-teal);
	color: #fff;
}

.pt-btn-footer.btn-footer-solid:hover {
	background: #1e928d;
	border-color: #1e928d;
	color: #fff;
	text-decoration: none;
}

/* End Footer Buttons */

/* Indicators */

.pt-wrap .check {
	color: var(--pt-teal);
	font-size: 1.05rem;
	font-weight: 700;
}

.pt-wrap .cross {
	color: #c2cdd9;
	font-size: 1.05rem;
}

.pt-wrap .pill {
	display: inline-block;
	font-size: 0.69rem;
	font-weight: 600;
	border-radius: 20px;
	padding: 3px 9px;
	white-space: nowrap;
}

.pt-wrap .pill-limited	 { color: var(--pt-text-light); background: #e4eaf3; }
.pt-wrap .pill-priority	{ color: var(--pt-teal); background: var(--pt-teal-light); }
.pt-wrap .pill-clientled { color: var(--pt-bronze); background: #fdf0e6; }

/* End Indicators */

/* Footnote */

.pt-footnote {
	text-align: center;
	margin-top: 16px;
	font-size: 0.77rem;
	color: var(--pt-text-light);
}

.pt-footnote a {
	color: var(--pt-teal);
	text-decoration: none;
	font-weight: 500;
}

.pt-footnote a:hover {
	text-decoration: underline;
}

.pt-scroll-hint {
	display: none;
	text-align: center;
	font-size: 0.7rem;
	color: var(--pt-text-light);
	margin-bottom: 7px;
}

@media (max-width: 680px) {
	.pt-scroll-hint {
		display: block;
	}
}

/* End Footnote */

/* End Pricing Table */