/*
Theme Name: XLH Community Guidebook
Theme URI: https://
Description: This is the sample theme created for the Genesis Framework.
Author: Second Melody
Author URI: https://www.secondmelody.com/

Version: 3.5.8

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- Variables
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Globals
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/


/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em;font-weight: 700;font-size: 10px;}sup{font-weight: 700;top: -.7em;font-size: 10px;}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

/* Variables
--------------------------------------------- */
:root {
	--light-teal: #D3F1F1;
	--bright-teal: #00C7D6;
	--teal: #0096A9;
	--dark-teal: #004547;
	--light-purple: #DACDF0;
	--med-purple: #936BD5;
	--purple: #7039C8;
	--dark-purple: #2B1744;
	--white: #FFFFFF;
	--black: #1A1A1A;
}

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: var(--white);
	color: #333;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
	text-wrap: pretty;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: var(--dark-purple);
	font-weight: 900;
	text-decoration: underline;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
	color: var(--purple);
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

a.text-link,
.text-link .elementor-button {
	background-color: transparent;
	color: var(--dark-teal);
	display: inline-block;
	font-size: 16px;
	line-height: 16px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	z-index: 1;
}

a.underline {
    text-decoration: underline!important;
}

.no-widget-space .elementor-widget-text-editor p:has(> .text-link) {
    margin-bottom: 20px;
}

a.text-link:focus,
a.text-link:hover,
.text-link .elementor-button:focus,
.text-link .elementor-button:hover {
	background-color: var(--dark-purple);
	color: var(--white);
	padding-left: 8px;
	margin-left: -8px;
	transition: all 0.2s ease-in-out;
}

a.text-link:after,
.text-link .elementor-button .elementor-button-text:after {
	align-items: center;
	content: '\f061';
	display: inline-flex;
	font-family: 'Font Awesome 7 Sharp';
	justify-content: center;
	height: 40px;
	margin-left: 8px;
	transition: all 0.2s ease-in-out;
	width: 40px;
}

a.text-link:focus:after,
a.text-link:hover:after,
.text-link .elementor-button:focus .elementor-button-text:after,
.text-link .elementor-button:hover .elementor-button-text:after {
	margin-left: 0px;
	transition: all 0.2s ease-in-out;
}

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 800;
}

h3 sup {
    font-size: 0.4em;
    vertical-align: super;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: var(--black);
}

blockquote {
	margin: 30px;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 50px;
}

.subpage h1 {
    font-size: 40px;
}

h2 {
	font-size: 45px;
}

h2.smaller {
    font-size: 30px;
}

h2.teal {
	color: var(--teal);
}

h2.bright-teal {
	color: var(--bright-teal);
}

h2.dark-purple {
	color: var(--dark-purple);
}

h3 {
	font-size: 30px;
	font-weight: 600;
}

h3.purple {
    color: var(--purple);
    font-weight: 500;
}

h4 {
	font-size: 24px;
	font-weight: 400;
}

h4.tab-sub-titles {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    text-decoration-line: underline;
}

h4.light-purple {
    color: var(--light-purple);
    font-weight: 500;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

.entry-content h4 {
	margin-top: 40px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: var(--white);
	border: 1px solid var(--purple);
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	padding: 15px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid var(--purple);
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

::placeholder {
	color: #333;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background-color: var(--bright-teal);
	border: 0;
	border-radius: 10px;
	color: var(--black);
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	padding: 12px 24px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: var(--dark-purple);
	border-width: 0;
	color: var(--white);
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: var(--white);
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */
.purple-table {
	border-collapse: collapse;
}

.purple-table thead th {
	background-color: var(--dark-purple);
	color: var(--light-purple);
	font-size: 18px;
}

.purple-table td.row-title {
	font-size: 18px;
	font-weight: 600;
	
}

/* Remove default borders */
.purple-table th,
.purple-table td {
	border: none;
	position: relative;
}

/* Default cells: BOTH horizontal + vertical dotted lines */
.purple-table th,
.purple-table td {
	background-image:
		repeating-linear-gradient(
			to right,
			rgba(50, 30, 70, 0.35) 0px,
			rgba(50, 30, 70, 0.35) 3px,
			transparent 2px,
			transparent 10px
		),
		repeating-linear-gradient(
			to bottom,
			rgba(50, 30, 70, 0.35) 0px,
			rgba(50, 30, 70, 0.35) 3px,
			transparent 2px,
			transparent 10px
		);
	background-size: 100% 1px, 1px 100%;
	background-position: bottom left, top right;
	background-repeat: no-repeat;
	font-size: 16px;
}

/* Last Row remove bottom horizontal dots ONLY */
.purple-table tr:last-child td {
	background-image:
		repeating-linear-gradient(
			to bottom,
			rgba(50, 30, 70, 0.35) 0px,
			rgba(50, 30, 70, 0.35) 2px,
			transparent 2px,
			transparent 10px
		);

	background-size: 1px 100%;
	background-position: top right;
	background-repeat: no-repeat;
}

/* Last Column remove right vertical dots ONLY */
.purple-table th:last-child,
.purple-table td:last-child {
	background-image:
		repeating-linear-gradient(
			to right,
			rgba(50, 30, 70, 0.35) 0px,
			rgba(50, 30, 70, 0.35) 2px,
			transparent 2px,
			transparent 10px
		);

	background-size: 100% 1px;
	background-position: bottom left;
	background-repeat: no-repeat;
}

/* Bottom Right remove ALL (no outer border) */
.purple-table tr:last-child td:last-child {
	background-image: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
	
}

tbody {
	border-bottom: 0;
}


td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
	
}



td {	
	color: var(--dark-purple);
	background-color: var(--light-purple);
	font-size: 16px;
	line-height: 1.3em;
	padding: 15px;
	width: 25%;
}

tr {
	
	
}

th {
	font-weight: 600;
	padding: 0.5em;
	
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	padding: 0 24px;
}

.elementor-page .site-inner {
	padding: 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #0073e5;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: var(--white);
	border-bottom: none;
	padding: 0;
	position: relative;
	z-index: 9999;
	
}


/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
}

.wp-custom-logo .title-area {
	max-width: 300px;
	padding:15px 30px;
	width: 100%;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */
ul#menu-secondary-nav {
	background-color: var(--bright-teal);
	border-radius: 8px;
}

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: var(--dark-purple);
	display: block;
	font-size: 16px;
	font-weight: 600;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a {
	color: var(--teal);
	background-color: var(--dark-purple);
	text-decoration: none;
}

.genesis-nav-menu .sub-menu a:focus,
.genesis-nav-menu .sub-menu a:hover,
.genesis-nav-menu .sub-menu:hover,
.genesis-nav-menu .sub-menu .current-menu-item:hover {
	background-color: var(--light-teal);
	color: var(--dark-purple);
	border-radius: 0;
}

.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	background-color: var(--light-teal);
	color: var(--dark-purple);
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: var(--white);
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #333;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #0073e5;
}

.menu-toggle {
	float: right;
	line-height: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	padding: 15px 0;
	position: relative;
	z-index: 1000;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	margin-right: 5px;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding-bottom: 15px;
	padding-top: 15px;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */
h3.widgettitle.widget-title {
    display: none;
}

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}

#custom_html-12,
#custom_html-11,
#custom_html-10,
#custom_html-9,
#custom_html-8,
#custom_html-6,
#custom_html-5,
#custom_html-3 {
    display: none;
}

.page-id-39 #custom_html-12,
.page-id-31 #custom_html-11,
.page-id-29 #custom_html-10,
.page-id-27 #custom_html-9,
.page-id-25 #custom_html-8,
.page-id-23 #custom_html-6,
.page-id-21 #custom_html-5,
.page-id-14 #custom_html-3 {
    display: block;
    margin-bottom: 0px;
}

/* Content Area
---------------------------------------------------------------------------- */

/* Globals
--------------------------------------------- */
button#back-to-top {
	align-items: center;
    border-radius: 8px;
    bottom: 20px;
    background-color: var(--bright-teal);
    color: var(--dark-teal);
	display: flex;
	flex-direction: column;
	gap: 8px;
    right: 20px;
    transition: all 0.2s ease-in-out;
    padding: 12px;
    position: fixed;
    z-index: 9999;
}

button#back-to-top:focus,
button#back-to-top:hover {
	background-color: var(--dark-teal);
    color: var(--bright-teal);
}

h2.pop-out {
	color: var(--dark-purple);
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
}

button#slide-out-support-mobile {
    align-items: center;
    background-color: var(--bright-teal);
    border-radius: 8px;
    bottom: 100px;
    color: var(--dark-teal);
    display: flex;
    flex-direction: column;
	padding: 17px;
    position: fixed;
    right: 20px;
    transition: all 0.2s ease-in-out;
    z-index: 9999;
}

button#slide-out-support-mobile:before {
	color: var(--dark-teal);   
	content: "\f002";
	font-family: "Font Awesome 7 Pro";
	font-weight: 900;
	font-size: 20px;
}

.find-support-container.e-flex.e-con-boxed.e-con.e-parent {
    background-color: var(--light-purple);
	border-right: 15px solid var(--purple);
}

.find-support-btn.elementor-widget.elementor-widget-button {
	left: 19px;    
	position: fixed;
	top: 188px;
	transform: rotate(90deg);
	transform-origin: left center;
	z-index: 999;
}

.find-support-btn {
    background-color: var(--med-purple);
}

.find-support-popout summary.e-n-accordion-item-title .e-n-accordion-item-title-text {
    font-size: 16px;
    font-weight: 700;
}

.find-support-popout details#e-n-accordion-item-9170,
.find-support-popout details#e-n-accordion-item-9171,
.find-support-popout details#e-n-accordion-item-9172,
.find-support-popout details#e-n-accordion-item-9173 {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
}

.find-support-popout summary.e-n-accordion-item-title::before {
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	content: '';
    display: inline-block;
	flex-shrink: 0;
	height: 80px;
    margin-right: 5px;
    vertical-align: middle;
	width: 80px;  
}

details#e-n-accordion-item-9170 summary::before {
	background-image: url('/wp-content/uploads/2026/04/children.svg');  
}

details#e-n-accordion-item-9171 summary::before {
	background-image: url('/wp-content/uploads/2026/04/Teens.svg');  
}

details#e-n-accordion-item-9172 summary::before {
	background-image: url('/wp-content/uploads/2026/04/Young-adults.svg');  
}

details#e-n-accordion-item-9173 summary::before {
	background-image: url('/wp-content/uploads/2026/04/Adults.svg');  
}

.popout-section-title p {
	color: var(--dark-purple);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0px;
}


.popout-section-links ul li {
	list-style: none;
    padding-left: 20px;
    position: relative;
}

.popout-section-links ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--purple);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

 .popout-section-links ul > li.two-lines:before {
    top: 20%;
}

.popout-section-links ul {
	font-size: 16px;
	font-weight: 400;
}

a.popout-section-links li {
	font-size: 16px;
	font-weight: 400;
}

.popout-section-links a:after {
	align-items: center;
	content: '\f061';
	display: inline-flex;
	font-family: 'Font Awesome 7 Sharp';
	justify-content: center;
	height: 40px;
	margin-left: 8px;
	transition: all 0.2s ease-in-out;
	width: 40px;
}

.popout-section-links a:hover,
.popout-section-links a:focus {
	background-color: var(--dark-purple);
	color: var(--white);
	padding-left: 8px;
	margin-left: -8px;
	transition: all 0.2s ease-in-out;
}

.no-row-pad.e-parent.e-con > .elementor-element,
.no-bottom-pad.e-parent.e-con > .elementor-element {
	padding-left: 24px;
	padding-right: 24px;
}

.e-parent.e-con {
	padding: 40px 24px;
	padding-inline-end: 24px;
	padding-inline-start: 24px;
}

.no-row-pad-inner.e-parent.e-con,
.no-row-pad-inner.e-flex.e-con-boxed.e-con.e-child {
	padding-top: 60px; 
	padding-bottom: 60px; 
}

.no-bottom-pad.e-con-full.e-flex.e-con.e-child,
.no-bottom-pad.e-parent.e-con {
	padding-bottom: 0px;
	margin-bottom:0px;
}

.no-row-pad.elementor-element {
	--widgets-spacing: 0;
	--widgets-spacing-row: 0px;
	--widgets-spacing-column: 0px;
}

.inner-menu.e-flex.e-con {
    padding: 0;
}

.e-parent.e-con.e-con-full,
.quote-full-container.quote-overlay-row.e-con-full.e-flex.e-con.e-child {
	padding-inline-end: 0;
	padding-inline-start: 0;
}

.e-parent.e-con.intro-row {
	padding-bottom: 0;
}

.inner-no-row-pad.e-con {
	margin-top: -20px;
}

.subpage-header.e-parent.e-con {
	padding-left: 25px;
	padding-right: 25px;
}

.inner-jump-point-top-only {
	padding-top: 80px;
}

.row-pad-inner-first {
	padding-top: 60px;
}

.row-pad-inner-last {
	padding-bottom: 60px;
}

.e-parent.e-con.intro-row p:last-of-type {
	margin-bottom: 0;
}

.extra-pad-bottom {
	padding-bottom: 0px;
	padding-top: 0px;
}

.cta-pad, .cta-pad.e-con {
	padding: 8px 30px;
}

.elementor-invisible {
    opacity: 0;
    visibility: visible !important;
}

.no-widget-space.elementor-element {
    --widgets-spacing-row: 0px;
    padding: 60px 0;
}

.subpage-header.e-parent.e-con {
	padding: 60px 24px;
}

/*-------TABS-------*/
.e-n-tabs-content h4 {
	margin-top: 10px;
}

.e-n-tabs button[role="tab"] {
	padding: 12px!important;
}

.e-n-tabs button[role="tab"] .e-n-tab-title-text {
	font-size: 15px!important;
}

.e-n-tabs-heading {
	gap: 5px!important;
}

/* Global Font Colors-------*/
.bright-teal-txt {
	color: var(--bright-teal);
}


/* Global Background Colors-------*/
.light-purple-background {
	background-color: var(--light-purple);
	color: var(--black);
}


.purple-list-indent a {
	color: var(--dark-purple);
}

.dark-purple-background {
	background-color: var(--dark-purple);
	color: var(--light-teal);
}

.dark-purple-background a {
	color: var(--light-purple);
}

.dark-purple-background-teal {
	background-color: var(--dark-purple);
	color: var(--white);
}

.dark-purple-background-teal h2 {
	color: var(--bright-teal);
}

.light-teal-background {
	background-color: var(--light-teal);
	color: var(--black);
}


.light-teal-background a.button  {
	background-color: var(--bright-teal);
	color: var(--black);
}

.light-teal-background a {
	color: var(--dark-teal);
}

.light-teal-background a:focus,
.light-teal-background a:hover {
	background-color: var(--teal);
	color: var(--white);
}


.light-teal-background a.button:focus, 
.light-teal-background a.button:hover {
	background-color: var(--teal);
	color: var(--white);
}

.dark-teal-background a,
.dark-teal-background {
	background-color: var(--dark-teal);
	color: var(--white);
}

.dark-teal-background a.text-link:focus, 
.dark-teal-background a.text-link:hover, 
.dark-teal-background a .text-link .elementor-button:focus, 
.dark-teal-background a .text-link .elementor-button:hover {
	background-color: var(--bright-teal);
	color: var(--dark-teal);
}

.bright-teal-background {
	background-color: var(--bright-teal);
	color: var(--black);
}

span.green ,
span.purple,
span.red,
span.blue {
    font-weight: 800;
}

span.green {
    color: #29750E;
}

span.purple {
    color: #A02C93;
}

span.red {
    color: #C90505;
}

span.blue {
    color: #115C91;
}

span.teal {
    color: var(--teal);
}

.text-bold {
    font-weight: 600;
}

.disclaimer,
.disclaimer-full {
    font-weight: normal;
    font-size: 14px;
    padding-left: 0;
    padding-bottom: 16px;
}

.educational-disclaimer {
    font-size:15px;
	font-weight: 600;
    padding: 24px;
}

.educational-disclaimer p {
	margin-bottom: 0;
}

h2.educational-disclaimer {
	font-size: 45px;
	font-weight: 600;
    padding: 0;
}

h3.educational-disclaimer {
    font-size: 30px;
    font-weight: 600;
    padding: 0;
}

h2.educational-disclaimer::after {
	color: var(--bright-teal);
    content: "\f06a";
    font-family: "Font Awesome 7 Pro";
    font-size: 25px;
    font-weight: 900;
    position: relative;
    right: -5px;
    top: -10px;
}

h3.educational-disclaimer::after {
    color: var(--bright-teal);
    content: "\f06a";
    font-family: "Font Awesome 7 Pro";
    font-size: 20px;
    font-weight: 900;
    position: relative;
    right: -5px;
    top: -10px;
}

ul.two-col li {
    padding-bottom: 16px;
}

.entry-content ul.two-col > li {
	list-style-type: none;
	margin-left:0px;
}

.entry-content ul.two-col {
    margin-bottom: 20px;
    padding-left: 0px;
}

/*Accordian-------*/
.purple-accordion .e-n-accordion-item {
    background-color: var(--light-purple);
	padding: 15px 30px;
}

.purple-accordion {
	padding: 0;
}

summary.e-n-accordion-item-title .e-n-accordion-item-title-text  {
	font-size: 24px;
}

.e-n-menu-toggle .e-n-menu-toggle-icon:before {
	content: 'Jump to Section';
	margin-right: 8px;
}


/* Global Cards-------*/
.light-purple-card.e-flex.e-con {
	background-color: var(--light-purple);
	border-left: 10px solid var(--med-purple);
	color: var(--black);
	padding: 30px;
}

.light-purple-card p:last-of-type {
	margin-bottom:0;
}

.light-purple-card a {
	color: var(--dark-purple);
}

.dark-purple-card.e-flex.e-con {
	background-color: var(--dark-purple);
	border-left: 10px solid var(--med-purple);
	color: var(--white);
	padding: 8px 30px;
}

.dark-purple-background.card-curve p {
	color: var(--white);
	margin-bottom: 0;
}

.dark-purple-card a.text-link,
.text-link .elementor-button {
	color: var(--white);
}

.dark-purple-card a.text-link:focus,
.dark-purple-card a.text-link:hover,
.dark-purple-card .text-link .elementor-button:focus,
.dark-purple-card .text-link .elementor-button:hover {
	background-color: var(--light-purple);
	color: var(--dark-purple);
}

.dark-purple-card p {
	color: var(--white);
}

/* ARROW CARDS FOR ALL */
.arrow-card {
	padding: 24px 24px 0;
}

.arrow-card h4 {
    margin-top: 0px;
}

.dark-teal-arrow-card {
	background-color: var(--dark-teal);
	color: var(--white);
}

.dark-teal-arrow-card.e-flex.e-con {
	padding: 24px;
}

.dark-teal-arrow-card a {
	color: var(--white);
}

.dark-teal-arrow-card a:hover,
.dark-teal-arrow-card a:focus {
	background-color: var(--teal);
	color: var(--white);
}

.dark-teal-arrow-card-container.e-flex.e-con.e-child {
	background-color: var(--dark-teal);
	padding: 24px 24px 0;
}

.light-teal-arrow-card-container.e-flex.e-con.e-child {
	background-color: var(--light-teal);
	color: var(--black);
}



.teal-arrow-card-container.e-flex.e-con.e-child::before {
	background-image: url('/wp-content/uploads/2026/04/cta-arrow.svg');
	background-repeat: no-repeat;
    background-size: contain;
	content: "";
	left: -10px;
	height: 70px;
	margin: auto;
	top: -5px;
	width: 40px;
    z-index: 9;
}

.dark-purple-arrow-card-container.e-flex.e-con.e-child::before {
	background-image: url('/wp-content/uploads/2026/04/cta-arrow-purple.svg');
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: -10px;
	height: 70px;
	margin: auto;
	top: -5px;
	width: 40px;
	z-index: 9;
}



.dark-purple-arrow-card-container a:hover {
	background-color: var(--light-purple);
	color: var(--dark-purple);
}

.card-arrow.e-con h4,
.card-arrow.e-con p {
	margin-left: 8px;
}

.card-arrow.e-con::before {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 10px;
  top: 10px;
  width: 20px;
  height: 30px;
  z-index: 1;
}

.card-arrow.purple-arrow.e-flex.e-con.e-child a {
	color: var(--dark-purple);
}

.card-arrow.purple-arrow.e-flex.e-con.e-child a:focus,
.card-arrow.purple-arrow.e-flex.e-con.e-child a:hover {
	color: var(--purple);
}

.card-arrow.purple-arrow.e-flex.e-con.e-child li:first-of-type {
	/* margin-top: 20px; */
}

.dark-teal-arrow.e-con::before {
  background-image: url('/wp-content/uploads/2026/04/cta-arrow.svg');
}

.purple-arrow.e-con::before {
	background-image: url('/wp-content/uploads/2026/04/cta-arrow-purple.svg');
}

.dark-teal-arrow h4,
.purple-arrow h4 {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.purple-arrow h4,
.dark-teal-arrow h4,
.dark-teal-arrow p,
.purple-arrow p,
.dark-teal-arrow p,
.disclaimer  {
  padding-left: 30px;
}

.light-teal-arrow-card.e-con,
.dark-teal-arrow-card.e-con,
.purple-arrow-card.e-con {
    padding: 30px 30px 0;
	position: relative !important;
    z-index: 1;
}

.img-curve.e-flex.e-con {
	border-radius: 130px 0 0;	
}


/* CTAs Cards -------*/
.card-curve {
	border-radius: 60px 0;
	padding: 16px 40px 30px;
}

.card-curve h4 {
	color: var(--bright-teal);
}

.card-curve h4.light-purple {
	color: var(--light-purple);
}

/* Image treatments & Quotes-------*/

/* Photo Treatments-------*/
.quote-img.elementor-widget.elementor-widget-image img {
	max-height: 475px;
}



.teal-img-right.elementor-widget.elementor-widget-image img {
	border-radius:  0 0 100px 0;

}

.quote-img.elementor-widget.elementor-widget-image img,
.purple-img-left.elementor-widget.elementor-widget-image img,
.teal-img-left.elementor-widget.elementor-widget-image img,
.teal-img-right.elementor-widget.elementor-widget-image img   {
	display: block;
	object-fit: cover;
	object-position: top;
	position: relative;
}

.img-outter::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

.quote-img-outter-teal::after {
	background: radial-gradient(
		    circle at bottom right,
		    var(--teal) 0%,
		    var(--white) 80%
		  );
	border-radius: 0 200px 0 0;
	right: -40px;
}

.quote-pic-outter img,
.purple-img-left img,
.teal-img-left img,
.teal-img-right img {
	 display: block;
	z-index: 1;
}

.quote-full-container.e-con,
.quote-img-outter-teal.e-con,
.quote-img-outter-purple.e-con,
.purple-img-left-outter.e-con,
.teal-img-left-outter.e-con,
.teal-img-right-outter.e-con {
  --container-default-padding-top: 0px;
  --container-default-padding-right: 0px;
  --container-default-padding-bottom: 0px;
  --container-default-padding-left: 0px;
  padding: 0 !important;
}

/*Quote Treatments-------*/

.quote-container.e-flex.e-con {
    font-weight: 600;
	padding: 24px;
    z-index: -2;
}

.quote-container p {
	padding-top:15px;
	margin-bottom: 0px;
}

.quote-name {
	font-weight: 700;
}

.quote-descript {
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
}

.quote-sm-container.e-con.e-flex {
	border-radius: 0 60px 0 60px;
	font-weight: 600;
	padding: 40px 30px;
}

.quote-overlay-row.e-flex.e-con.e-child  {
	margin-top: -138px;
	padding:0;
	z-index:2;
}

.quote-overlay-bottom-row.e-flex.e-con.e-child {
	margin-bottom: -40px;
	padding:0;
	z-index:2
}

.quote-name p {
	margin:0px;
}

.full-color-purple-top {
	background: linear-gradient(
	to bottom,
	var(--light-teal) 0%,
	var(--light-teal) 20%,
	var(--light-purple) 20%,
	var(--light-purple) 95%,
	var(--dark-purple) 95%,
	var(--dark-purple) 100%
	);
}

.light-purple-quote-container.e-flex.e-con.e-child {
	background-color: var(--light-purple);
	padding: 190px 60px;
	position: absolute;
	--padding-top:0px;
	--widgets-spacing: 0;
	z-index: -10;
}

.light-teal-quote-container.e-flex.e-con.e-child {
	background-color: var(--light-teal);
	padding: 190px 60px;
	position: absolute;
	--padding-top:0px;
	--widgets-spacing: 0;
	z-index: -10;
}

.teal-extra-bottom.e-con-full.e-flex.e-con.e-child {
	background: linear-gradient(
	to bottom,
	var(--white) 0%,
	var(--white) 90%,
	var(--light-teal) 90%,
	var(--light-teal) 100%
	);
	z-index: -10;
}

.dark-purple-extra-bottom.e-con-full.e-flex.e-con.e-child {
	background: linear-gradient(
	to bottom,
	var(--light-teal) 0%,
	var(--light-teal) 90%,
	var(--dark-purple) 90%,
	var(--dark-purple) 100%
	);
	z-index: -10;
}

.white-extra-bottom.e-con-full.e-flex.e-con.e-child {
	background: linear-gradient(
	to bottom,
	var(--light-teal) 0%,
	var(--light-teal) 90%,
	var(--white) 90%,
	var(--white) 100%
	);
	/* z-index: -10; */
}


/* Lists-------*/
.entry-content ul.purple-list {
    padding-left: 18px;
}

.purple-list li::marker {
	color: var(--purple);
}

.transition-adult-care,
.transition-adult-care ul.teal-list {
	font-weight: 500;
}

.entry-content ul.teal-list {
	line-height: 24px;
	margin-left: 24px;
	margin-right: 24px;
	padding-left: 18px;
	padding-top: 10px;
}

.teal-list li,
.purple-list li,
.general-list li {
	padding-bottom: 8px;
	padding-top: 8px;
}

.teal-list li::marker {
	color: var(--teal);
}

/*.list-text-bold ul {
    font-weight: 600;
}*/

ul.teal-list.indent {
    margin-left: 39px;
}

ul.purple-list-indent li.no-bullet {
    list-style: none;
}

ul.purple-list-indent,
ul.general-list-indent {
    padding-top: 15px;
}

ul.purple-list.indent {
    padding-left: 50px;
}


ul.purple-list.indent:first-of-type {
    /* margin-top: -20px; */
}

/* Front Page
--------------------------------------------- */

.hero-row.e-parent.e-con {
	padding: 0;
}


.hero-text.e-flex.e-con-boxed {
    padding-left: calc((100vw - 1180px) / 2);
}


.journey-age {
	color: var(--bright-teal);
}

.journey-age p {
	margin-bottom:0;

}

.journey-age h4 {
	font-weight: 600;
	margin-bottom: 0px;
	margin-top: 0px;
}

span.thanks {
    font-weight: 800;
    text-transform: uppercase;
}


/* Understanding XLH
--------------------------------------------- */
.sticky-menu.e-flex.e-con {
    background-color: var(--dark-purple);
    /*box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.25);*/
    position: sticky;
    top: 60px;
    z-index: 10;
}

.sticky-menu-sub.e-flex.e-con {
    background-color: var(--dark-purple);
    color: var(--white);
	top: 165px;
    position: sticky;
    z-index: 10;
}

.sticky-menu-sub .e-n-menu-toggle .e-n-menu-toggle-icon:before {
	content: 'Symptoms and Signs';
	margin-right: 8px;
}

.xlh-txt {
	text-align: center;
	font-size: 70px;
	font-weight: 700;
}

.xlh-purple {
	color: #A02C93;
}

.xlh-green {
	color: #29750E;
}

.xlh-blue {
	color: #115C91;
}

.xlh-red {
	color: #C90505;
}

p.xlh-purple,
p.xlh-green,
p.xlh-blue,
p.xlh-red {
	font-size: 18px;
	font-weight: 400;
	border-bottom:0;
	padding-bottom: 15px;
}

p.xlh-red {
	border-right: 0px;
}

/* Leaky Bucket Layout*/

.bucket-container {
    position: relative;
}


/* TEXT BLOCK POSITIONS */

/* TEXT BLOCK POSITIONS */
.bucket-one-txt.elementor-widget-text-editor,
.bucket-two-txt.elementor-widget-text-editor,
.bucket-three-txt.elementor-widget-text-editor,
.bucket-four-txt.elementor-widget-text-editor {
    position: relative;
    width: 100%;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    padding-left: 70px;
    margin-bottom: 30px;
}

/* Icons ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â anchored left in flow */
.bucket-one-txt:before,
.bucket-two-txt:before,
.bucket-three-txt:before,
.bucket-four-txt:before {
    font-family: 'Font Awesome 7 Pro';
    font-size: 50px;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
}

.bucket-one-txt:before { content: '\e0ee'; }
.bucket-two-txt:before { content: '\e0ef'; }
.bucket-three-txt:before { content: '\e0f0'; }
.bucket-four-txt:before { content: '\e0f1'; }

/* Lines ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â hidden in stacked layout */
.bucket-one-txt:after,
.bucket-two-txt:after,
.bucket-three-txt:after,
.bucket-four-txt:after {
    display: none;
}

/* Shared absolute positioning */
    .bucket-one-txt.elementor-widget-text-editor,
    .bucket-two-txt.elementor-widget-text-editor,
    .bucket-three-txt.elementor-widget-text-editor,
    .bucket-four-txt.elementor-widget-text-editor {
        position: absolute;
        width: 30%;
        padding-left: 0;
        margin-bottom: 0;
    }

    /* Icons ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â back to offset position */
    .bucket-one-txt:before,
    .bucket-two-txt:before,
    .bucket-three-txt:before,
    .bucket-four-txt:before {
        margin-left: -60px;
        top: -12px;
        left: auto;
    }

    /* 1 Top Left */
    .bucket-one-txt.elementor-widget-text-editor {
        top: 0px;
        left: 60px;
    }

    /* 2 Top Right */
    .bucket-two-txt.elementor-widget-text-editor {
        top: 100px;
        right: 0px;
    }

    /* 3 Bottom Right */
    .bucket-three-txt.elementor-widget-text-editor {
        bottom: 70px;
        right: 0;
    }

    /* 4 Bottom Left */
    .bucket-four-txt.elementor-widget-text-editor {
        bottom: 150px;
        left: 60px;
        width: 25%;
    }

    /* Lines ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â visible on desktop */
    .bucket-one-txt:after,
    .bucket-two-txt:after,
    .bucket-three-txt:after,
    .bucket-four-txt:after {
        display: block;
        content: '';
        position: absolute;
        border-top: 2px dashed #3b1f5e;
        height: 0;
    }

    /* 1 Top Left: line goes down-right */
    .bucket-one-txt:after {
        top: 60px;
        right: -180px;
        width: 180px;
        transform: rotate(30deg);
        transform-origin: left center;
    }

    /* 2 Top Right: line goes down-left */
    .bucket-two-txt:after {
        top: 30px;
        left: -180px;
        width: 135px;
        transform: rotate(-50deg);
        transform-origin: right center;
    }

    /* 3 Bottom Right: line goes up-left */
    .bucket-three-txt:after {
        top: 30px;
        left: -200px;
        width: 160px;
        transform: rotate(-17deg);
        transform-origin: right center;
    }

    /* 4 Bottom Left: line goes up-right */
    .bucket-four-txt:after {
        top: 140px;
        right: -80px;
        width: 170px;
        transform: rotate(25deg);
        transform-origin: left center;
    }

	/* Chart Legand */
	.legend-containter {
	    display: flex;
	    flex-direction: column;
		margin-top:-10px;
	}

	.legend-key img {
	    width: 20px;
		margin-bottom:0px;
		padding-bottom:0px;
	}

	.legend-key  {
		display: flex;
		font-size: 16px;
		padding-bottom: 15px;
	}
	
	span.frequency {
	   padding: 0 10px;
	}

	.legend.e-flex.e-con {
	    background-color: #8CDDDD;
	    padding: 16px 24px;
	}

.xlh-chart-section {
  scroll-margin-top: 180px;
}

.xlh-category-nav {
	display: flex;
	gap: 14px;
	flex-direction: column;
	margin: 16px;
}

.xlh-pill {
  border: 2px solid var(--light-purple);
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.2s ease;
}

.xlh-pill:hover,
.xlh-pill:focus,
.xlh-pill.is-active {
  background: var(--bright-teal);
  border-color: var(--bright-teal);
  color: var(--dark-purple);
}

.xlh-category-nav a {
	color: var(--light-purple);
}

.xlh-category-nav .xlh-pill.mPS2id-highlight,
.xlh-category-nav .xlh-pill.mPS2id-clicked {
  background: var(--bright-teal);
  border-color: var(--bright-teal);
  color: var(--dark-purple);
}

.sticky-menu-sub .e-n-menu-toggle .e-n-menu-toggle-icon:before {
	content: 'Symptoms and Signs';
	margin-right: 8px;
}

/*XLH Over Time*/
/* HEADER ROW (icons) */
.xlh-over-time-row.header {
	display: flex;
	justify-content: flex-start;
	height: 140px;
	margin-bottom: 10px;
	align-items: center;
}

.xlh-over-time-row.header {
	flex: 0 0 100px;
	height: 100px;
	margin-bottom: 24px;
	overflow: visible;
	position: relative;
	width: 100%;
}

.over-time-img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 110px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	width: 110px;
}

.over-time-img.baby {
	background-image: url('/wp-content/uploads/2026/04/Baby.svg');
	left: 0%;
	transform: translateX(0);
}

.over-time-img.children {
	background-image: url('/wp-content/uploads/2026/04/children.svg');
	left: 24%;
}

.over-time-img.teens {
	background-image: url('/wp-content/uploads/2026/04/Teens.svg');
	left: 45%;
}

.over-time-img.couple {
	background-image: url('/wp-content/uploads/2026/04/Adult-Couple.svg');
	left: 67%;
}

.over-time-img.elder {
	background-image: url('/wp-content/uploads/2026/04/Elder.svg');
	left: 87%;
}

/* CHART LAYOUT*/
.xlh-over-time-chart {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: visible;
}

.xlh-over-time-row {
  position: relative;
  width: 100%;
  height: 28px;
  flex: 0 0 28px;
}

/*BAR CONTAINER*/
.xlh-over-time-bar {
  --arrow: 18px;
  position: absolute;
  left: var(--start);
  top: 0;
  width: var(--width);
  height: 100%;
}

/* ARROW (ANIMATED LAYER) */
.xlh-over-time-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(
    0 0,
    calc(100% - var(--arrow)) 0,
    100% 50%,
    calc(100% - var(--arrow)) 100%,
    0 100%
  );

  transform-origin: left center;
  transform: scaleX(0);
}

/* Colors */

.xlh-over-time-bar.med-purple::before {
  background: #B79CE2;
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	clip-path: polygon(
    0 0,
    calc(100% - var(--arrow)) 0,
    94% 0%,
    calc(100% - var(--arrow)) 100%,
    0 100%
  );

  transform-origin: left center;
  transform: scaleX(0);
}


.xlh-over-time-bar.purple::before {
  background: var(--light-purple);
}

.xlh-over-time-bar.blue::before {
  background: #78c7f2;
}

.xlh-over-time-bar.green::before {
  background: #a8d69b;
}

.xlh-over-time-bar.pink::before {
  background: #FAA3C0;
}

.xlh-over-time-bar.pink-haze::before {
	background: #e371d4;
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	clip-path: polygon(
    0 0,
    calc(100% - var(--arrow)) 0,
    94% 0%,
    calc(100% - var(--arrow)) 100%,
    0 100%
  );

  transform-origin: left center;
  transform: scaleX(0);
}

/* Labels */
.xlh-over-time-label {
	color: var(--black);
	font-size: 14px;
	font-weight: 700;
	left: var(--x);
	line-height: 1.1;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
	z-index: 2;
}

/* TRIGGER ANIMATION */
.xlh-over-time-chart.in-view .xlh-over-time-bar::before {
  animation: xlhGrowArrow 0.85s ease forwards;
}

.xlh-over-time-chart.in-view .xlh-over-time-label {
  animation: xlhFadeLabel 0.35s ease forwards;
}

/* STAGGER BAR ANIMATION */
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(1) .xlh-over-time-bar::before { animation-delay: 0.05s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(2) .xlh-over-time-bar::before { animation-delay: 0.12s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(3) .xlh-over-time-bar::before { animation-delay: 0.19s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(4) .xlh-over-time-bar::before { animation-delay: 0.26s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(5) .xlh-over-time-bar::before { animation-delay: 0.33s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(6) .xlh-over-time-bar::before { animation-delay: 0.4s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(7) .xlh-over-time-bar::before { animation-delay: 0.47s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(8) .xlh-over-time-bar::before { animation-delay: 0.54s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-bar::before { animation-delay: 0.61s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(10) .xlh-over-time-bar::before { animation-delay: 0.68s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(11) .xlh-over-time-bar::before { animation-delay: 0.75s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(12) .xlh-over-time-bar::before { animation-delay: 0.82s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(13) .xlh-over-time-bar::before { animation-delay: 0.89s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(14) .xlh-over-time-bar::before { animation-delay: 0.96s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(15) .xlh-over-time-bar::before { animation-delay: 0.103s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(16) .xlh-over-time-bar::before { animation-delay: 0.110s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(17) .xlh-over-time-bar::before { animation-delay: 0.117s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(18) .xlh-over-time-bar::before { animation-delay: 0.124s; }

/* STAGGER LABEL FADE */
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(1) .xlh-over-time-label { animation-delay: 0.75s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(2) .xlh-over-time-label { animation-delay: 0.82s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(3) .xlh-over-time-label { animation-delay: 0.89s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(4) .xlh-over-time-label { animation-delay: 0.96s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(5) .xlh-over-time-label { animation-delay: 1.03s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(6) .xlh-over-time-label { animation-delay: 1.1s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(7) .xlh-over-time-label { animation-delay: 1.17s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(8) .xlh-over-time-label { animation-delay: 1.24s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.31s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.38s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.45s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.52s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.59s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.66s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.73s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.80s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.87s; }
.xlh-over-time-chart.in-view .xlh-over-time-row:nth-child(9) .xlh-over-time-label { animation-delay: 1.94s; }

/* KEYFRAMES */
@keyframes xlhGrowArrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes xlhFadeLabel {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*References*/
ol.reference li {
    font-size: 16px;
    line-height: 30px;
}


/* KEY TRANSITIONS */
.adult-care-number {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.numbers sup {
	margin-left:-10px;
}

.adult-care-number::before {
	align-items: center;
	background: var(--dark-purple);
	border-radius: 50%;
	color: var(--light-purple);
	content: attr(data-number);
	display: flex;
	flex-shrink: 0;
	font-weight: bold;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.adult-care-number span {
	display: inline;
}


/* KEY TRANSITIONS
--------------------------------------------- */
/* Container */
.age-menu.e-flex.e-con {
    background-color: #8CDDDD;
    padding: 40px 40px 40px 10px;
}

/* Each row: dot/line column + text column */
.age-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* Left column: holds the dot and the dashed line below it */
.age-wrap::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The dot itself */
.age-wrap .age-dot {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dark-purple);
    margin-top: 8px; /* aligns with the first line of the age label */
    position: relative;
    z-index: 1;
}

/* The dashed vertical line connecting dots */
.age-wrap:not(:last-child) .age-dot::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 120px);
    border-left: 2px dashed var(--dark-purple);
}

.age-content {
    flex: 1;
    padding-bottom: 70px;
}

.age-wrap:last-child .age-content {
    padding-bottom: 0;
}

.age,
.age a {
    color: var(--black);
	font-size: 24px;
    font-weight: 700;
}

.age:hover,
.age:focus {
    color: var(--dark-purple);
}

.age-dot:focus {
	color: var(--dark-purple);
}

.age-wrap.active .age-dot {
    background: var(--purple);
}

.age-descrip {
    font-size: 16px;
}

.purple-flag {
    margin-top: 16px;
}


/* DAILY LIVING
--------------------------------------------- */
ul.e-n-menu-heading {
    font-size: 16px;
}

/* GLOSSARY
--------------------------------------------- */
.glossary-section {
    font-size: 50px;
	font-weight: 700;
}

h3.glossary-section {
    font-size: 50px;
    font-weight: 700;
}

.find-terms  {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: flex-start;
}

.find-terms-responsive,
.find-terms a span   {
	color: var(--dark-teal);
}

.find-terms-responsive,
.find-terms a   {
	color: var(--dark-teal);
	width: 25%;
}

span.letter {
    color: #499395;
	font-weight: 900;
	width: 25%;
}

.find-terms-responsive,
.find-terms.e-con.e-flex {
	background-color: #8CDDDD;
	padding: 24px;
	margin-bottom: 30px!important;
}

.find-terms h4 {
	margin-top: 0px;
	 text-align: center;
}

.glossary-section-row.e-flex.e-con.e-child li {
	font-weight: 400;
}


.resource-tabs .card-arrow.purple-arrow.e-flex.e-con.e-child a:hover {
	color: var(--teal);
}

.resource-tabs .card-arrow.purple-arrow.e-flex.e-con.e-child a:after {
	align-items: center;
	content: '\f061';
	display: inline-flex;
	font-family: 'Font Awesome 7 Sharp';
	justify-content: center;
	height: 40px;
	margin-left: 8px;
	transition: all 0.2s ease-in-out;
	width: 40px;
}


/*Footer*/
	a.footer-right-links {
		color: var(--bright-teal);
		font-weight:400;
	}

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #333;
	color: var(--white);
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	line-height: 1.5;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 20px;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	clear: both;
	background-color: var(--dark-purple);
	font-size: 15px;
	line-height: 1.3em;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 60px;
	padding-right: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}


/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	font-size: 15px;
	line-height: 1.5;
	padding: 30px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}

.widget-area.footer-widgets-1.footer-widget-area {
	background-color: var(--light-teal);
	padding: 30px;
}

.widget-area.footer-widgets-2.footer-widget-area {
	color: var(--white);
	padding: 30px;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 480px) {

	table {
		table-layout: auto;
		word-break: normal;
	}

}

@media (min-width: 985px) and (max-width: 1260px) { 

}

@media only screen and (min-width: 985px) {


	/* Globals
	--------------------------------------------- */
	.e-parent.e-con {
		padding: 60px 40px;
	}

	.no-row-pad.e-parent.e-con {
		padding: 0;
	}

	.e-parent.e-con.smaller {
		padding: 60px 40px;
	}

	.e-parent.e-con.top-only {
		padding: 60px 40px 0;
	}

	.extra-pad-bottom {
		padding-bottom: 45px;
	}

	.three-col li {
	    width: 85%;
	}

	ul.two-col li {
		min-width: 400px;
	}
	
	.entry-content ul.teal-list {
		margin-left: 0px;
	}

	ul.teal-list.indent {
	    margin-left: 39px;
	}

	.dark-purple-background.card-curve p {
		padding: 10px
	}

	.dark-purple-background.card-curve p {
		padding: 10px
	}

	.three-col {
	    column-count: 3;
	}

	ul.four-col {
	    column-count: 4;
	    column-gap: 90px;
	}

	.quote-container.e-flex.e-con {
	    font-weight: 600;
	    z-index: -2;
	}

	.inner-jump-point, 
	.inner-jump-point.e-flex.e-con.e-child:first-of-type {
	    padding: 80px 40px;
	}

	.purple-img-left-outter::after {
		  background: radial-gradient(
		    circle at bottom left,
		    var(--purple) 0%,
			var(--purple) 50%,
		    var(--white) 95%
		  );
		border-radius: 200px 0 0 0;
		left: -40px;
		top:5px;
	}


	.purple-img-left-outter::after {
	  background: radial-gradient(
	    circle at bottom left,
	    var(--purple) 0%,
		var(--purple) 50%,
	    var(--white) 95%
	  );
	  border-radius: 200px 0 0 0;
	  left: -10px;
	top:-15px;
}
	
	.quote-img-outter-purple::after {
		background: radial-gradient(
			    circle at bottom right,
			    var(--purple) 0%,
			    var(--light-purple) 90%
			  );
		border-radius: 0 200px 0 0;
		right: -40px;
	}

	.teal-img-left-outter::after {
		 background: radial-gradient(
		    circle at bottom left,
		    var(--teal) 0%,
			 var(--teal) 50%,
		    var(--white) 100%
		  );
		  border-radius: 200px 0 0 0;
		  left: -40px;
		  top:5px;
		  z-index: 0;
	}
	
	.teal-img-right-outter::after {
		 background: radial-gradient(
		    circle at top right,
		    var(--teal) 0%,
	
		    var(--white) 100%
		  );
		  border-radius:  0 0 100px 0;
		  right: -40px;
		  top:0px;
		  z-index: 0;
	}

	.quote-img.elementor-widget.elementor-widget-image img {
		border-radius: 0 200px 0 0;
		max-height: 475px;
	}

	.purple-img-left.elementor-widget.elementor-widget-image img,
	.teal-img-left.elementor-widget.elementor-widget-image img {
		border-radius: 200px 0 0 0;
	}

	ul.two-col {
    	column-count: 2;
		column-gap: 90px;
	}

	button.xlh-hamburger {
		display:none;
	}

	.subpage-header.e-parent.e-con,
	.no-row-pad.e-parent.e-con > .elementor-element,
	.no-bottom-pad.e-parent.e-con > .elementor-element {
		padding-left: 40px;
		padding-right: 40px;
	}

	button#slide-out-support:before {
	align-items: center;
	content: '\f002';
	display: inline-flex;
	font-family: 'Font Awesome 7 Sharp';
	justify-content: center;
	transition: all 0.2s ease-in-out;
	padding-right: 8px;
}

button#slide-out-support {
	background-color: var(--med-purple);
	border-radius: 0;
	left: 19px;
	position: fixed;
	top: 188px;
	transform: rotate(90deg);
	transform-origin: left center;
	z-index: 999;
}

button#slide-out-support:hover {
	background-color: var(--purple);
}

	button#slide-out-support-mobile {
		display: none;
	}

	/* Fonts
	--------------------------------------------- */
	h1 {
		font-size: 72px;
	}
	
	.subpage h1 {
	    font-size: 50px;
	}

	p.xlh-purple,
	p.xlh-green,
	p.xlh-blue,
	p.xlh-red {
		border-bottom: 0;
		border-right: 1px solid var(--black);
		font-size: 18px;
		font-weight: 400;
		padding-right: 20px;
	}

	/* Symptoms and Signs of XLH Chart
	--------------------------------------------- */
	.xlh-chart-section {
	  margin-bottom: 60px;
	}
	
	.xlh-chart-section h2 {
	  margin-bottom: 24px;
	}
	
	.xlh-chart-table {
	  width: 100%;
	}
	
	.xlh-chart-header,
	.xlh-chart-row {
	  align-items: center;
	  border-bottom: 1px solid rgba(0,0,0,.35);
	  display: grid;
	  grid-template-columns: 55% 15% 15% 15%;
	}

	.xlh-icon-row {
	    align-items: center;
		display: flex;
	    justify-content: center;
	}

	.xlh-category-nav {
	    display: flex;
	    flex-direction: row;
	    gap: 24px;
	    margin: 16px;
	}
	
	.xlh-chart-header {
	  font-weight: 700;
	  font-size: 18px;
	}
	
	.xlh-chart-header > div,
	.xlh-chart-row > div {
	  padding: 14px 10px;
	  text-align: center;
	}
	
	.xlh-description {
	  text-align: left !important;
	}
	
	.frequency-icon {
	  width: 22px;
	  height: 22px;
	  display: inline-block;
	}

	p.note {
	    font-size: 14px;
	    line-height: 1.5em;
	    padding-top: 10px;
	}

	.quote-container.e-flex.e-con {
	    padding: 60px calc(max(1140px, 100vw)/2 - 580px) 60px 120px;
	}

	
	/* Site Header
	--------------------------------------------- */

	.site-header {
		/*position: sticky;*/
		top: 0;
		z-index: 9999;
	}

	.utility-nav-menu.genesis-nav-menu {
		align-items: center;
		background-color: var(--dark-purple);
		display: flex;
		justify-content: center;
		padding-left: 24px;
		padding-right: 24px;
	}

	.utility-nav-menu.genesis-nav-menu a {
		color: var(--white);
		font-size: 15px;
		font-weight: 600;
		padding: 30px 0;
	}

	.utility-nav-menu.genesis-nav-menu a:after {
		content: '\f0dd';
	    font-family: 'Font Awesome 7 Pro';
		font-size: 12px;
		margin-left: 4px;
		position: relative;
		top: -4px;
	}

	.utility-nav-menu.genesis-nav-menu a:hover, 
	.utility-nav-menu.genesis-nav-menu a:focus,
	.utility-nav-menu.genesis-nav-menu a:active,
	.current-menu-item.menu-item-object-page a {
		color: var(--bright-teal);
	}

	ul#menu-main-menu {
	    display: flex;
	    justify-content: space-between;
	    width: 1140px;
	}


	/* Site Header
	--------------------------------------------- */

	/* Genesis Menu
	--------------------------------------------- */

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu > .menu-bold > a {
		font-weight: 700;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #333;
		color: var(--white);
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		background-color: #0073e5;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 180px;
	}

	.utility-nav-menu .sub-menu,
	.utility-nav-menu .sub-menu a {
		background-color: var(--bright-teal);
	}

	.utility-nav-menu .sub-menu a:after {
		display:none;
	}

	.genesis-nav-menu .sub-menu {
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}


	.utility-nav-menu.sub-menu,
	.genesis-nav-menu .sub-menu a {
		background-color: var(--bright-teal);
		border-top: 0;
		color: var(--dark-purple);
		padding: 15px;
	}

	.genesis-nav-menu .sub-menu a:hover,
	.genesis-nav-menu .sub-menu a:focus {
		background-color: var(--light-teal);
		color: var(--dark-purple);
	}


	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
		padding-top: 15px;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */
	.genesis-nav-primary {

	}
	
	.nav-primary {
		
		clear: none;
		float: right;
		padding-right: 30px;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* Site-Inner
	--------------------------------------------- */

	.site-inner {
		max-width: 1140px;
	}

	.elementor-page .site-inner {
		max-width: 100%;
	}

	/* Content
	--------------------------------------------- */

	.content {
		float: left;
		/*width: 65%;*/
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}


	/* Sidebar
	--------------------------------------------- */

	.sidebar {
		float: right;
		width: 30%;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 60px;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		display: flex;
		flex-wrap: wrap;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
	}

	.widget-area.footer-widgets-1.footer-widget-area {
		background-color: var(--light-teal);
		width: 30%;
	}

	.widget-area.footer-widgets-2.footer-widget-area {
		color: var(--white);
		width: 70%;
	}

	.footer-logo-link {
		align-items: center;
		display: flex;
		flex-direction: row;
		padding-top: 16px;
	}

	.footer-left-container {
		padding: 30px 0;
	}

	.footer-logo img {
		width: 80%;
	}

	a.footer-links {
		color: var(--dark-purple);
		display: flex;
		line-height: 2em;
		flex-direction: row;
		padding-left: 10px;
		padding-bottom: 5px;
		flex-wrap: wrap;
	}

	a.footer-links:after {
		content: '\f08e';
		font-family: 'Font Awesome 7 Sharp';
		margin-left: 8px;
		transition: all 0.2s ease-in-out;
	}



	.footer-right-links-copyright {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px;
		justify-content: flex-start;
		padding-top: 24px;
	}

}


@media only screen and (max-width: 961px) {
	

	
	.no-row-pad.e-parent.e-con {
		padding: 0px;
	}

	.teal-img-right-outter::after {
		right: -10px;
	}

	.quote-container.light-purple-mobile.e-flex.e-con.e-child {
		background-color: var(--light-purple);
	}

	.quote-container.light-teal-mobile.e-flex.e-con.e-child {
		background-color: var(--light-teal);
	}

	/* Let the container grow to fit stacked content */
    .bucket-container {
        height: auto !important;
        min-height: unset !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Image on top, centered */
    .bucket-container .bucket-pic {
        position: relative !important;
        width: 60% !important;
        margin: 0 auto 40px auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .bucket-container {
        height: auto !important;
        min-height: unset !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .bucket-container .bucket-pic {
        position: relative !important;
        width: 60% !important;
        margin: 0 auto 40px auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .bucket-one-txt.elementor-widget-text-editor,
    .bucket-two-txt.elementor-widget-text-editor,
    .bucket-three-txt.elementor-widget-text-editor,
    .bucket-four-txt.elementor-widget-text-editor {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        padding-left: 80px;
        margin-bottom: 30px;
        /* NO display:flex here */
    }

    /* Icon pseudo-element positioned relative to the widget div */
    .bucket-one-txt:before,
    .bucket-two-txt:before,
    .bucket-three-txt:before,
    .bucket-four-txt:before {
        position: absolute;
        top: 0;
        left: 0;
        margin-left: 0;
        font-size: 50px;
        line-height: 1;
    }

    /* Target the inner text div to add top padding so text clears the icon */
    .bucket-one-txt .elementor-widget-container,
    .bucket-two-txt .elementor-widget-container,
    .bucket-three-txt .elementor-widget-container,
    .bucket-four-txt .elementor-widget-container {
        padding-top: 8px;
    }

    .bucket-one-txt:after,
    .bucket-two-txt:after,
    .bucket-three-txt:after,
    .bucket-four-txt:after {
        display: none !important;
    }
}

@media only screen and (max-width: 985px) {
	
/*Browse Resources Button*/
	button#slide-out-support {
	    display: none;
	}

	.find-support-container.e-flex.e-con-boxed.e-con.e-parent {
	    top: 80px;
	}

	#elementor-popup-modal-3416 .dialog-close-button {
	    display: flex;
	    top: 10%;
	    font-size: 18px;
	    color: var(--dark-purple);
	}

	h2.pop-out {
	    padding-top: 30px;
	}

	.footer-right-links-copyright {
	    line-height: 24px;
	}

	a.footer-right-links.e-parent.e-con {
		padding: 24px 0!important;
		margin: 24px 0;
	}


	.e-parent.e-con {
		padding: 0px 24px;
	}

	.card-arrow.e-con::before {
	    top: 11px;
	}

	.mobile-pad.e-parent.e-con {
		padding-left: 45px;
		padding-right: 45px;
	}

	.mobile-pad.e-flex.e-con-boxed.e-con.e-child {
		padding-left: 30px;
		padding-right: 30px;
	}

	.adult-care-number {
		align-items: baseline;
		gap: 5px;
	}

	.sticky-menu-sub.e-flex.e-con {
	    top: 330px;
	    position: sticky;
	    z-index: 10;
	}

	div#menubar-190 {
	    margin-top: 10px;
	}

	/*Footer*/
	.footer-logo-link {
		align-items: center;    
		display: flex;
		justify-content: space-between;
	}

	.footer-links a {
	    padding-right: 15px;
	}

	.footer-left-text {
	    padding-bottom: 24px;
	    text-align: center;
	}

/*quotes*/
	.light-teal-quote-container.e-flex.e-con.e-child,
	.light-purple-quote-container.e-flex.e-con.e-child {
		display: none;
	}

	.quote-container.e-flex.e-con {
		background-color: var(--light-purple);
	}

	.quote-container.light-teal-background.e-flex.e-con {
		background-color: var(--light-teal);
	}

	li.e-n-menu-item {
	    display: flex;
	    justify-content: center;
	    margin-right: 0px !important;
	    width: 100%;
	}

	.hero-text.e-flex.e-con-boxed.e-con.e-child {
    	padding: 0 24px;
	}

	.elementor-widget-n-menu .e-n-menu-item:not(:last-of-type) .e-n-menu-title:after {
		display: none;
	}
	
	/*Table*/
		.purple-table,
		.purple-table thead,
		.purple-table tbody,
		.purple-table th,
		.purple-table td,
		.purple-table tr {
			display: block;
			width: 100%;
		}

		.purple-table thead {
			display: none;
		}

		.purple-table tr {
			background-color: var(--light-purple);
			margin-bottom: 20px;
			padding: 0;
		}

		.purple-table td {
			width: 100%;
			padding: 12px 15px;
			background-image:
				repeating-linear-gradient(
					to right,
					rgba(50, 30, 70, 0.35) 0px,
					rgba(50, 30, 70, 0.35) 3px,
					transparent 3px,
					transparent 10px
				);
			background-size: 100% 1px;
			background-position: bottom left;
			background-repeat: no-repeat;
		}

		.purple-table td.row-title {
			background-color: var(--dark-purple);
			color: var(--light-purple);
			font-size: 18px;
			font-weight: 600;
		}

		.purple-table td:not(.row-title)::before {
			content: attr(data-label);
			display: block;
			color: var(--dark-purple);
			font-weight: 600;
			font-size: 14px;
			margin-bottom: 4px;
		}

		.purple-table tr:last-child td:last-child,
		.purple-table tr td:last-child {
			background-image: none;
		}


	/*Chart*/

	  .xlh-chart-section {
	    margin-bottom: 40px;
	  }

	  .xlh-chart-section h2 {
	    font-size: 24px;
	    margin-bottom: 16px;
	  }

	  .xlh-chart-header {
	    display: none;
	  }

	  .xlh-chart-row {
	    display: grid;
	    grid-template-columns: 1fr;
	    gap: 10px;
	    padding: 18px 0;
	    border-bottom: 1px solid rgba(0,0,0,.35);
	  }

	  .xlh-chart-row > div {
	    padding: 0;
	    text-align: left;
	  }

	  .xlh-description {
	    font-size: 18px;
	    font-weight: 600;
	    margin-bottom: 8px;
	  }

	  .xlh-chart-row > div:not(.xlh-description) {
	    display: grid;
	    grid-template-columns: 90px 1fr;
	    align-items: center;
	    gap: 10px;
	  }

	  .xlh-chart-row > div:nth-child(2)::before {
	    content: "Children";
	    font-weight: 700;
	  }

	  .xlh-chart-row > div:nth-child(3)::before {
	    content: "Teens";
	    font-weight: 700;
	  }

	  .xlh-chart-row > div:nth-child(4)::before {
	    content: "Adults";
	    font-weight: 700;
	  }

	  .frequency-icon {
	    width: 24px;
	    height: 24px;
	  }

	/* XLH Chart Over Time */
		  .xlh-over-time-row {
		    height: 38px;
		    flex-basis: 38px;
		  }
		
		  .xlh-over-time-bar::before {
		    --arrow: 14px;
		  }
		
		  .xlh-over-time-label {
		    font-size: 12px;
		    white-space: normal;
		  }

	}




@media (max-width: 767px) {

	/* XLH Over Time â€” Mobile */
	.over-time-img {
		height: 60px;
		width: 60px;
	}

	.over-time-img.children {
		left: 27%;
	}

	.over-time-img.teens {
		left: 47%;
	}

	.over-time-img.couple {
		left: 68%;
	}

	.over-time-img.elder {
		left: 88%;
	}

	.xlh-over-time-bar.med-purple {
	    width: 32%;
	}

	.xlh-over-time-bar.pink-haze {
	    width: 28%;
	}

	.xlh-over-time-bar.pink-haze::before,
	.xlh-over-time-bar.med-purple::before {
		clip-path: polygon(
	    0 0,
	    calc(100% - var(--arrow)) 10%,
	    15% 10%,
	  );
	}
}


@media only screen and (max-width: 500px) {
	.subpage h1 {
	    font-size: 39px;
	}
	
	.footer-logo-link {
        flex-direction: column;
    }

    a.text-link:after,
	.text-link .elementor-button .elementor-button-text:after {
		height: 20px;
	}

	.subpage-header.e-parent.e-con {
		padding: 60px 25px;
	}

	p.xlh-purple,
	p.xlh-green,
	p.xlh-blue,
	p.xlh-red {
		border-right: 0;
	}

	.teal-img-right-outter::after {
	  right: -10px;
	}

    .bucket-container .bucket-pic {
        width: 85% !important;
    }

    .bucket-one-txt.elementor-widget-text-editor,
    .bucket-two-txt.elementor-widget-text-editor,
    .bucket-three-txt.elementor-widget-text-editor,
    .bucket-four-txt.elementor-widget-text-editor {
        padding-left: 65px;
        margin-bottom: 24px;
    }

    .bucket-one-txt:before,
    .bucket-two-txt:before,
    .bucket-three-txt:before,
    .bucket-four-txt:before {
        font-size: 40px;
    }


    .sticky-menu-sub.e-flex.e-con {
	    top: 165px;
	    position: sticky;
	    z-index: 10;
	}

	.sticky-menu-sub.symptoms-menu-mobile.e-flex.e-con {
		top: 120px;
	    position: sticky;
	    z-index: 10;
	}

}



/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}
