@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
    /* Typeface */
    --font-heading: 'Public Sans', sans-serif;
    --font-body: 'Public Sans', sans-serif;
    --color-heading: #141414;
    /* ===========================
     Headings
     =========================== */
    --h1-size: 56px;
    --h1-line-height: 105%;
    --h1-weight: 500;
    --h1-letter-spacing: -0.03em;
    --h2-size: 48px;
    --h2-line-height: 105%;
    --h2-weight: 500;
    --h2-letter-spacing: -0.03em;
    --h3-size: 40px;
    --h3-line-height: 125%;
    --h3-weight: 500;
    --h3-letter-spacing: -0.03em;
    --h4-size: 32px;
    --h4-line-height: 120%;
    --h4-weight: 600;
    --h4-letter-spacing: -0.02em;
    --h5-size: 24px;
    --h5-line-height: 130%;
    --h5-weight: 500;
    --h5-letter-spacing: 0em;
    --h6-size: 20px;
    --h6-line-height: 130%;
    --h6-weight: 500;
    --h6-letter-spacing: 0em;
    /* ===========================
     Title
     =========================== */
    --t1-size: 20px;
    --t1-line-height: 130%;
    --t1-weight: 600;
    --t1-letter-spacing: 0em;
    --t2-size: 18px;
    --t2-line-height: 130%;
    --t2-weight: 600;
    --t2-letter-spacing: 0em;
    /* ===========================
     Headline
     =========================== */
    --headline-medium-size: 20px;
    --headline-medium-line-height: 130%;
    --headline-medium-weight: 500;
    --headline-medium-letter-spacing: 0em;
    --headline-large-size: 20px;
    --headline-large-line-height: 130%;
    --headline-large-weight: 500;
    --headline-large-letter-spacing: 0em;
    /* ===========================
     Paragraphs
     =========================== */
    --p1-regular-size: 16px;
    --p1-regular-line-height: 160%;
    --p1-regular-weight: 400;
    --p1-regular-letter-spacing: 0.01em;
    --p1-medium-size: 16px;
    --p1-medium-line-height: 150%;
    --p1-medium-weight: 500;
    --p1-medium-letter-spacing: 0em;
    --p1-semibold-size: 16px;
    --p1-semibold-line-height: 150%;
    --p1-semibold-weight: 600;
    --p1-semibold-letter-spacing: 0em;
    --p2-regular-size: 14px;
    --p2-regular-line-height: 150%;
    --p2-regular-weight: 400;
    --p2-regular-letter-spacing: 0em;
    --p2-medium-size: 14px;
    --p2-medium-line-height: 150%;
    --p2-medium-weight: 500;
    --p2-medium-letter-spacing: 0em;
    --p2-semibold-size: 14px;
    --p2-semibold-line-height: 150%;
    --p2-semibold-weight: 600;
    --p2-semibold-letter-spacing: 0em;
    /* ===========================
     Caption
     =========================== */
    --caption-size: 12px;
    --caption-line-height: 120%;
    --caption-weight: 600;
    --caption-letter-spacing: 0.02em;
    --caption-transform: uppercase;
    /* ===========================
     Button
     =========================== */
    --button-size: 16px;
    --button-line-height: 150%;
    --button-weight: 600;
    --button-letter-spacing: 0em;
    --button-transform: none;
    /* ===========================
     color
     =========================== */
}
/* ===========================
   Styles
   =========================== */
/* Headline */
.headline-medium {
    --headline-medium-size: 28px;
    --headline-medium-line-height: 125%;
    --headline-medium-weight: 500;
    --headline-medium-letter-spacing: 0em;
}
.headline-large {
    --headline-large-size: 32px;
    --headline-large-line-height: 125%;
    --headline-large-weight: 500;
    --headline-large-letter-spacing: 0em;
}
/* Title */
.t1 {
    font-family: var(--font-heading);
    font-size: var(--t1-size);
    line-height: var(--t1-line-height);
    font-weight: var(--t1-weight);
    letter-spacing: var(--t1-letter-spacing);
    color: var(--color-heading);
}
.t2 {
    font-family: var(--font-heading);
    font-size: var(--t2-size);
    line-height: var(--t2-line-height);
    font-weight: var(--t2-weight);
    letter-spacing: var(--t2X-letter-spacing);
    color: var(--color-heading);
}

    
/* Paragraphs */
.p1-regular {
    font-family: var(--font-body);
    font-size: var(--p1-regular-size);
    line-height: var(--p1-regular-line-height);
    font-weight: var(--p1-regular-weight);
    letter-spacing: var(--p1-regular-letter-spacing);
}
.p1-medium {
    font-family: var(--font-body);
    font-size: var(--p1-medium-size);
    line-height: var(--p1-medium-line-height);
    font-weight: var(--p1-medium-weight);
    letter-spacing: var(--p1-medium-letter-spacing);
}
.p1-semibold {
    font-family: var(--font-body);
    font-size: var(--p1-semibold-size);
    line-height: var(--p1-semibold-line-height);
    font-weight: var(--p1-semibold-weight);
    letter-spacing: var(--p1-semibold-letter-spacing);
}
.p2-regular {
    font-family: var(--font-body);
    font-size: var(--p2-regular-size);
    line-height: var(--p2-regular-line-height);
    font-weight: var(--p2-regular-weight);
    letter-spacing: var(--p2-regular-letter-spacing);
}
.p2-medium {
    font-family: var(--font-body);
    font-size: var(--p2-medium-size);
    line-height: var(--p2-medium-line-height);
    font-weight: var(--p2-medium-weight);
    letter-spacing: var(--p2-medium-letter-spacing);
}
.p2-semibold {
    font-family: var(--font-body);
    font-size: var(--p2-semibold-size);
    line-height: var(--p2-semibold-line-height);
    font-weight: var(--p2-semibold-weight);
    letter-spacing: var(--p2-semibold-letter-spacing);
}
h6 {
    font-family: var(--font-heading);
    font-size: var(--t1-size);
    line-height: var(--t1-line-height);
    font-weight: var(--t1-weight);
    letter-spacing: var(--t1-letter-spacing);
}

.mystic-faq-section-item-answer ul {
	padding-left: 0;
}

.mystic-faq-section-item-answer ul li:first-child {
    padding-top: 0;
}

.mystic-faq-section-item-answer ul li {
    padding: 6px 0 6px 32px;
    list-style: none;
    position: relative;
}
.mystic-faq-section-item-answer ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    display: block;
    width: 16px;
    background-image: url(../images/checklist-green.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 12px;
}
.mystic-disclaimer-component--default a {
    color: var(--iOS-Blue-01, #007aff);
    font-family: "Public Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    letter-spacing: 0.16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: var(--transition-fast);
}
.xclean-accordion-component.layout_dots .num_key {
    display: none;
}
.xclean-accordion-component.layout_number {
    max-width: 100%;
}
.layout_number .advanced-accordion-header {
    justify-content: space-between;
}

.layout_number .mystic-accordion-header {
    background-color: #ffffff;
    border-bottom-color: #eeeef0;
    display: flex;
    width: 100%;
    height: 64px;
    padding: 8px 24px;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.2s 
ease;
}
.layout_number .mystic-accordion-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.layout_number .mystic-accordion-header[aria-expanded=true] {
    border-radius: 16px 16px 0 0;
}
.layout_number .mystic-accordion-content.expanded {
    padding: 24px 16px;
    background-color: var(--mystic-bg-white);
    border-top: 1px solid #eeeef0;
    transition: all 0.3s 
ease;
    border-radius: 0 0 16px 16px;
    margin-bottom: 16px;
}
.layout_number .mystic-accordion-item {
    border-radius: 16px;
    background: var(--mystic-bg-white);
    border: none;
    margin-bottom: 16px;
}
.layout_number span.mystic-accordion-title {
    font-weight: 700;
    position: relative;
    padding-left: 12px !important;
}
.layout_number span.mystic-accordion-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #eeeef0;
}
.hero01__header a {
    color: #0f557d;
    text-decoration: underline;
}
.ss-steps-layout .step-icon i, .ss-steps-layout .step-icon svg {
    width: 28px;
    height: 28px;
    color: #0F7EBA;
    fill: #0F7EBA;
}
.step-icon {
    display: flex;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 84px;
    border: 1px solid #EEEEF0;
    background-color: transparent;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.ss-steps-layout .step-label {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}
.elementor-widget-mystic_news_section .news-section {
    padding: 64px 24px;
}

/* Member Mail PDF cards – file icon, download icon, professional layout */
.news-card-new--member-mail .news-card-new-content,
.news-card--member-mail .news-card-content,
.news-card--member-mail .news-card-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news-card-new-member-mail-icon-wrap,
.news-card-member-mail-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--color-heading, #141414);
}
.xclean-member-mail-icon {
    width: 4.25rem;
    height: 4.25rem;
    flex-shrink: 0;
}
.xclean-member-mail-icon--file {
    opacity: 0.85;
}
.news-card-new--member-mail .news-card-new-date--small,
.news-card--member-mail .news-card-date--small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #666;
    margin-bottom: 0.25rem;
}
.news-card-new-download-pdf,
.news-card-download-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0b71a8;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.2s ease, gap 0.2s ease;
}
.news-card-new-download-pdf:hover,
.news-card-download-pdf:hover {
    color: #005fcc;
    text-decoration: underline;
}
.news-card-new-download-pdf .xclean-member-mail-icon--download,
.news-card-download-pdf .xclean-member-mail-icon--download {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: currentColor;
}
@media (max-width: 767px) {
    .news-card-new-member-mail-icon-wrap .xclean-member-mail-icon,
    .news-card-member-mail-icon-wrap .xclean-member-mail-icon {
        width: 2rem;
        height: 2rem;
    }
}

.elementor-widget-xclean-accordion-component {
    width: 100%
}
.check__list__point ul[style="list-style-type: disc;"] {
    margin: 8px 0 0 0;
    padding-left: 20px;
}
.check__list__point ul[style="list-style-type: disc;"] li {
    list-style: disc;
    padding-left: 0;
    padding: 5px 0;
}
.check__list__point ul[style="list-style-type: disc;"] li::before {
    display: none;
}
.mystic-heading-bullet-list li a {
    color: #0f557d;
    text-decoration: underline;
}
.elementor .elementor-widget-mystic-icon-text .mystic-icon-text-text a {
    color: #0b71a8 !important;
}
table.mystic-data-table__table .header-empty .mystic-table-main-content {
    display: none;
}
@media all and (max-width: 999px) {
    .ss-tab-images.desktop {
        display: none;
    }
    /* .grid-column-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    } */
    .grid-column-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .grid-column-5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .mystic-faq-section-item-header {
        padding: 10px 0px;
    }
    .mystic-no-bg-card {
        width: auto;
    }
  
}
@media all and (max-width: 767px) {
    .xclean-card-partner .dgrid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .mystic-faq-section-item-header {
        padding: 10px 0px;
    }
    .xclean-card-text-icon .dgrid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .ss-steps-layout .steps-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px 16px;
    }
    .xclean-news-has-search .xclean-news-section-header {
        align-self: center;
    }
}

/* xclean Our News – search */
.xclean-news-has-search .xclean-news-section-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
    align-self: flex-end;
}
.xclean-news-search-wrap {
    position: relative;
    max-width: 320px;
    width: 100%;
}
.xclean-news-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.25rem;
    border: 1px solid var(--color-heading, #141414);
    border-radius: 0.25rem;
    font-size: 1rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") no-repeat 0.6rem center;
    background-size: 1rem;
}
.xclean-news-search-input::placeholder {
    color: #666;
}
.xclean-news-has-search.xclean-news-search-loading .xclean-news-search-input {
    opacity: 0.8;
}
.xclean-news-pagination-hidden {
    display: none !important;
}
.xclean-news-section-wrapper.xclean-news-pagination-loading .xclean-news-grid-content {
    opacity: 0.6;
    pointer-events: none;
}
.xclean-news-section-wrapper.xclean-news-pagination-loading .mystic-news-pagination {
    opacity: 0.7;
    pointer-events: none;
}
.xclean-news-grid-content{
    width: 100%;
}

/* Tab active state when synced from URL (e.g. after pagination) */
a.xclean-news-tab-active {
    font-weight: 600;
    text-decoration: underline;
}

/* Pagination: compact (Prev 1 … N Next) and mobile-friendly */
.xclean-news-section-wrapper .mystic-news-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.xclean-news-section-wrapper .mystic-news-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.35rem;
    justify-content: center;
    align-items: center;
}
.xclean-news-section-wrapper .mystic-news-pagination .page-numbers li {
    list-style: none;
    margin: 0;
}
.xclean-news-section-wrapper .mystic-news-pagination a.page-numbers,
.xclean-news-section-wrapper .mystic-news-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.4rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .xclean-news-section-wrapper .mystic-news-pagination .page-numbers {
        gap: 0.25rem;
    }
    .xclean-news-section-wrapper .mystic-news-pagination a.page-numbers,
    .xclean-news-section-wrapper .mystic-news-pagination span.page-numbers {
        min-width: 2rem;
        height: 2rem;
        padding: 0 0.35rem;
        font-size: 0.8125rem;
    }
    .xclean-news-section-wrapper .mystic-news-pagination .prev.page-numbers,
    .xclean-news-section-wrapper .mystic-news-pagination .next.page-numbers {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
.xclean-news-no-results {
    padding: 1.5rem;
    text-align: center;
    color: #666;
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}