﻿/* 091-pb application stylesheet
   Base site styles plus project-specific overrides.
   Order matters: base styles first, then overrides. */
main {
    min-height: calc(100vh - 220px);
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Variable.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: "Syne";
    src: url("../fonts/Syne-Variable.ttf") format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400 800;
}

:root {
    --pb-bg: #ffffff;
    --pb-ink: #13261f;
    --pb-muted: #4f665d;
    --pb-primary: #1d7f73;
    --pb-accent: #e8722a;
    --pb-card: #ffffff;
    --pb-border: #d9e3db;
    --pb-header-height: 70px;
}

html,
body {
    min-width: 300px;
    overflow-x: auto;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: var(--pb-header-height);
    font-family: "Outfit", "Segoe UI", sans-serif;
    color: var(--pb-ink);
    background: var(--pb-bg);
}

body.pb-mobile-menu-open {
    overflow-x: auto;
    overflow-y: hidden;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: "Syne", "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
}

.pb-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: var(--pb-header-height);
    z-index: 1030;
}

.pb-navbar {
    background: #ffffff;
    height: var(--pb-header-height);
    min-height: var(--pb-header-height);
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid rgba(217, 227, 219, 0.9);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(19, 38, 31, 0.08);
}

.pb-navbar .container-fluid {
    height: 100%;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.pb-navbar .navbar-brand {
    height: 100%;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 6;
}

.pb-navbar .navbar-toggler {
    margin: 0;
}

.pb-header-actions {
    height: 100%;
    position: relative;
    z-index: 6;
}

.pb-header-menu {
    align-self: stretch;
}

.pb-nav-main {
    gap: 0.4rem;
    margin: 0;
    align-items: center;
}

.pb-nav-link {
    min-height: 42px;
    padding: 0 0.95rem !important;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #2f4239;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

button.pb-nav-link {
    appearance: none;
}

.pb-nav-link:hover,
.pb-nav-link:focus,
.pb-nav-link.show {
    color: var(--pb-primary);
    border-color: rgba(29, 127, 115, 0.18);
    background: rgba(29, 127, 115, 0.08);
}

.pb-nav-link.active {
    color: var(--pb-primary);
    border-color: rgba(29, 127, 115, 0.24);
    background: rgba(29, 127, 115, 0.12);
}

.pb-nav-dropdown {
    min-width: 0;
    width: min(30rem, calc(100vw - 2rem));
    padding: 0.65rem;
    border: 1px solid rgba(217, 227, 219, 0.96);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(19, 38, 31, 0.14);
}

.pb-nav-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.pb-menu-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.5rem;
    border: 1px solid #d9e3db;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    color: #13261f;
    text-decoration: none;
    white-space: normal;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pb-menu-card:hover,
.pb-menu-card:focus {
    color: #13261f;
    border-color: #8eb6a9;
    background: #f7faf8;
    transform: translateY(-1px);
}

.pb-menu-card.active {
    color: #13261f;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    border-color: rgba(29, 127, 115, 0.45);
    box-shadow: inset 0 0 0 1px rgba(29, 127, 115, 0.2);
}

.pb-menu-card.active .pb-menu-card-title {
    color: #13261f;
}

.pb-menu-card.active .pb-menu-card-text {
    color: var(--pb-muted);
}

.pb-menu-card-icon-wrap {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
}

.pb-menu-card-icon {
    max-width: 30px;
    max-height: 30px;
    display: block;
}

.pb-menu-card-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pb-menu-card-title {
    font-size: 0.98rem;
    font-weight: 700;
}

.pb-menu-card-text {
    color: var(--pb-muted);
    font-size: 0.85rem;
    line-height: 1.35;
}

.pb-user-btn {
    height: 45px;
    padding: 0 0.8rem;
    border: 1px solid #6f7d75;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #2f4239;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    font-weight: 600;
    line-height: 1;
}

.pb-user-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pb-user-btn:hover,
.pb-user-btn:focus {
    color: var(--pb-primary);
    border-color: var(--pb-primary);
}

.pb-user-btn.active {
    color: var(--pb-primary);
    border-color: var(--pb-primary);
    background: rgba(29, 127, 115, 0.08);
}

.pb-menu-toggle {
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid #6f7d75;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #475950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pb-menu-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pb-menu-toggle.navbar-toggler:focus,
.pb-menu-toggle:hover {
    color: var(--pb-primary);
    border-color: var(--pb-primary);
    box-shadow: 0 0 0 0.18rem rgba(29, 127, 115, 0.12);
}

.pb-logo {
    height: 46px;
    max-height: calc(var(--pb-header-height) - 14px);
    width: auto;
    display: block;
}

.hero {
    background: linear-gradient(130deg, #113329 0%, #1d7f73 50%, #2ba195 100%);
    color: #f7fffb;
    box-shadow: 0 20px 40px rgba(20, 43, 35, 0.2);
}

.hero-kicker {
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.05;
}

.hero-subtitle {
    max-width: 52ch;
    color: rgba(247, 255, 251, 0.9);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-pb {
    background: linear-gradient(135deg, var(--pb-accent), #ff9a40);
    border: 0;
    color: #1e160c;
    font-weight: 700;
}

.btn-pb:hover,
.btn-pb:focus {
    color: #1e160c;
    filter: brightness(1.03);
}

.insight-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    box-shadow: 0 10px 24px rgba(19, 38, 31, 0.08);
    animation: rise-in 0.5s ease both;
}

.insight-card p {
    color: var(--pb-muted);
}

.dashboard-wrap {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(217, 227, 219, 0.9);
}

.table> :not(caption)>*>* {
    background: transparent;
}

.launch-panel {
    background: linear-gradient(160deg, #fff8ef 0%, #ffffff 65%);
    border: 1px solid #f0dbc9;
}

.pb-footer {
    background: #f7faf8;
    border-top: 1px solid #d9e3db;
}

.pb-footer-title {
    margin-bottom: 0.9rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pb-ink);
}

.pb-footer-link {
    margin-bottom: 0.52rem;
    color: #2f4239;
    text-decoration: none;
    font-weight: 500;
}

.pb-footer-link:hover,
.pb-footer-link:focus {
    color: var(--pb-primary);
    text-decoration: underline;
}

.pb-footer-bottom {
    border-top: 1px solid #d9e3db;
}

.pb-footer-site {
    color: #2f4239;
    text-decoration: none;
}

.pb-footer-site:hover,
.pb-footer-site:focus {
    color: var(--pb-primary);
}

.pb-jump-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1025;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(217, 227, 219, 0.96);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    color: #13261f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(19, 38, 31, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pb-jump-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.pb-jump-top:hover,
.pb-jump-top:focus {
    color: var(--pb-primary);
    border-color: rgba(29, 127, 115, 0.32);
    background: #ffffff;
}

.pb-jump-top:focus-visible {
    outline: 2px solid rgba(29, 127, 115, 0.3);
    outline-offset: 2px;
}

.pb-jump-top-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

body.pb-mobile-menu-open .pb-jump-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .pb-navbar {
        position: relative;
    }

    .pb-navbar .container-fluid {
        height: var(--pb-header-height);
        min-height: var(--pb-header-height);
    }

    .pb-header-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 5;
        min-height: 100vh;
        padding: calc(var(--pb-header-height) + 1rem) 1rem 1rem;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border-top: 0;
        box-shadow: none;
        margin-top: 0;
    }

    .pb-header-menu .navbar-nav {
        gap: 0.35rem;
    }

    .pb-nav-main>.nav-item {
        width: 100%;
    }

    .pb-header-menu .pb-nav-link {
        width: 100%;
        min-height: 3.2rem;
        justify-content: flex-start;
        padding: 0.92rem 0.95rem !important;
        border-radius: 0;
        border-color: #d9e3db;
        background: #f7faf8;
    }

    .pb-header-menu .dropdown-toggle.pb-nav-link {
        justify-content: space-between;
    }

    .pb-header-menu .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0.45rem;
        box-shadow: none;
    }

    .pb-nav-dropdown {
        width: 100%;
        padding: 0.45rem;
        border-radius: 0;
    }

    .pb-nav-dropdown-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        border-radius: 1rem;
    }
}

@media (max-width: 767.98px) {
    .pb-user-btn {
        width: 45px;
        padding: 0;
    }

    .pb-user-btn span {
        display: none !important;
    }

    .pb-jump-top {
        right: 0.85rem;
        bottom: 0.85rem;
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 992px) {
    .pb-navbar .container-fluid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        column-gap: 1rem;
        align-items: center;
    }

    .pb-navbar .navbar-brand {
        justify-self: start;
    }

    .pb-header-menu {
        grid-column: 2;
        display: flex !important;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .pb-header-menu .navbar-nav {
        height: 100%;
        align-items: center;
        margin: 0;
    }

    .pb-header-actions {
        grid-column: 3;
        justify-self: end;
        margin-left: 0 !important;
    }

    .pb-header-menu .pb-nav-link {
        line-height: 1;
    }

    .pb-header-menu .dropdown-menu {
        margin-top: 0.85rem;
    }

    .pb-header-menu .pb-nav-dropdown {
        border-radius: 0;
    }

    .pb-header-menu .pb-nav-dropdown-inner {
        grid-template-columns: 1fr;
    }
}

/* Project-specific overrides. */

.pb-header,
main,
.pb-footer,
.pb-header .container-fluid,
.pb-footer .container {
    min-width: 300px;
}

.table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.auth-login-page {
    min-height: calc(100vh - 350px);
}

.auth-card {
    border: 1px solid #d9e3db;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(19, 38, 31, 0.08);
    padding: 1.4rem;
}

.auth-title {
    margin: 0;
    color: #13261f;
}

.auth-subtitle {
    margin: 0;
    color: #4f665d;
}

.auth-card .alert {
    border-radius: 0.7rem;
}

.auth-card .form-label {
    font-weight: 600;
    color: #2f4239;
}

.auth-card .form-control {
    border-color: #c8d6cd;
    min-height: 44px;
}

.auth-card .form-control:focus {
    border-color: #1d7f73;
    box-shadow: 0 0 0 0.2rem rgba(29, 127, 115, 0.14);
}

.auth-card .btn {
    min-height: 44px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.auth-card .d-grid .btn {
    width: 100%;
}

.auth-card .btn-outline-dark {
    border-color: #c8d6cd;
    color: #2f4239;
}

.auth-card .btn-outline-dark:hover,
.auth-card .btn-outline-dark:focus {
    border-color: #8eb6a9;
    background: #f7faf8;
    color: #13261f;
}

.auth-card .text-danger {
    font-size: 0.9rem;
}

.auth-link {
    color: #1d7f73;
    text-decoration: none;
}

.auth-link:hover,
.auth-link:focus {
    text-decoration: underline;
}

.auth-legal {
    color: #4f665d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.auth-legal a {
    color: #1d7f73;
}

@media (max-width: 575.98px) {
    .auth-card {
        padding: 1.1rem;
        border-radius: 0.85rem;
    }
}

.account-overview-page {
    min-height: calc(100vh - 220px);
}

.settings-masonry {
    column-count: 1;
    column-gap: 1rem;
}

.settings-masonry-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
    .settings-masonry {
        column-count: 2;
        column-gap: 1.25rem;
    }

    .settings-masonry-item {
        margin-bottom: 1rem;
    }
}

.account-menu-wrap {
    border: 1px solid #d9e3db;
    border-radius: 0.9rem;
    background: #ffffff;
    padding: 0.65rem;
    box-shadow: 0 8px 24px rgba(19, 38, 31, 0.06);
}

.account-menu-desktop {
    display: block;
}

.account-menu-mobile {
    display: none;
    width: 100%;
}

@media (max-width: 939.98px) {
    .account-menu-desktop {
        display: none;
    }

    .account-menu-mobile {
        display: block;
    }
}

.account-menu-list {
    gap: 0.4rem;
    margin: 0;
}

.account-menu-list .nav-link {
    color: #2f4239;
    border: 1px solid #c8d6cd;
    border-radius: 0.65rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    background: #ffffff;
}

.account-menu-list .nav-link:hover,
.account-menu-list .nav-link:focus {
    border-color: #8eb6a9;
    background: #f7faf8;
}

.account-menu-list .nav-link.active {
    background: rgba(29, 127, 115, 0.12);
    color: #000;
    border-color: rgba(29, 127, 115, 0.24);
}

.account-menu-mobile .dropdown-toggle {
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.account-menu-mobile .dropdown-menu {
    border: 1px solid #d9e3db;
    border-radius: 0.75rem;
    padding: 0.4rem;
    background-color: #f5f2f2;
}

.account-menu-mobile .dropdown-menu .dropdown-item {
    text-align: center;
    border: 1px solid #c8d6cd;
    border-radius: 0.6rem;
    margin: 0.5rem 0;
    padding: 0.55rem 0.85rem;
    font-weight: 600;
    background-color: #fff;
}

.account-menu-mobile .dropdown-menu .dropdown-item.active,
.account-menu-mobile .dropdown-menu .dropdown-item:active {
    background: #1d7f73;
    border-color: #1d7f73;
}

.overview-card {
    border: 1px solid #ccd9d3;
    border-radius: 1rem;
    background:
        linear-gradient(90deg, #1d7f73, #2ba195) top left / 100% 4px no-repeat,
        linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
    box-shadow: 0 14px 34px rgba(19, 38, 31, 0.1);
    padding: 0.75rem;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.overview-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    background-color: #f1f0f0;
}

.overview-title {
    margin: 0;
    font-size: 1.2rem;
    color: #13261f;
}

.overview-list {
    display: grid;
    gap: 0.65rem;
}

.overview-list div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    border-bottom: 1px dashed #d9e3db;
    padding-bottom: 0.5rem;
    padding-right: 0;
}

.overview-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.overview-list dt {
    margin: 0;
    color: #000;
    font-weight: 600;
}

.overview-list dd {
    margin: 0;
    text-align: left;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #555;
    font-weight: 500;
}

.overview-stat {
    border: 1px solid #d9e3db;
    border-radius: 0.85rem;
    background: #fbfdfc;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.overview-stat-label {
    font-size: 0.82rem;
    color: #4f665d;
}

.overview-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #13261f;
}

.sessions-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #d8e4de;
    border-radius: 0;
    background: #fff;
}

.sessions-table-wrap table {
    min-width: 360px;
    margin-bottom: 0;
}

.sessions-table-wrap table th,
.sessions-table-wrap table td {
    vertical-align: middle !important;
}

.sessions-table-wrap .table> :not(caption)>*>* {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.sessions-table-wrap table thead th {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #3a564c;
    background: #f1f7f4;
    white-space: nowrap;
    border-bottom-width: 1px;
}

.sessions-table-wrap table tbody tr:hover {
    background: #f7fcf9;
}

.sessions-table-wrap table a {
    color: #1d7f73;
    text-decoration: none;
    font-weight: 600;
}

.sessions-table-wrap table a:hover {
    text-decoration: underline;
}

.referral-user-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.referral-user-id {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.pb-pagination {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.pb-pagination-select {
    width: 92px !important;
    min-width: 92px;
    max-width: 92px;
    flex: 0 0 92px;
    display: inline-block;
}

.pb-pagination .form-select.pb-pagination-select {
    width: 92px !important;
    min-width: 92px;
    max-width: 92px;
    flex: 0 0 92px;
}

.pb-pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pb-pagination .btn {
    min-width: 62px;
}

.pb-pagination-info {
    text-align: center;
    color: #4f665d;
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 575.98px) {
    .pb-pagination {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .referral-user-cell {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        white-space: nowrap;
    }

    .referral-user-id,
    .referral-user-status {
        white-space: nowrap;
    }
}

.pb-page-shell {
    min-height: calc(100vh - 220px);
}

.pb-home-shell {
    overflow-x: hidden;
}

.pb-content-card {
    border: 1px solid #d9e3db;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(19, 38, 31, 0.08);
}

.pb-content-card .breadcrumb {
    margin-bottom: 0;
}

.pb-content-card .breadcrumb-item+.breadcrumb-item::before {
    color: #6b8077;
}

.pb-content-card .breadcrumb a {
    color: #1d7f73;
    text-decoration: none;
}

.pb-content-card .breadcrumb a:hover,
.pb-content-card .breadcrumb a:focus {
    text-decoration: underline;
}

.pb-content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

/* Legacy navigation compatibility classes (reused markup, new template CSS). */
.text-gray-800 {
    color: #13261f !important;
}

.text-gray-700 {
    color: #2f4239 !important;
}

.text-gray-600,
.text-gray-500 {
    color: #4f665d !important;
}

.separator {
    width: 100%;
    border-top: 1px solid #d9e3db;
}

.separator-dashed {
    border-top-style: dashed;
}

.mw-20px {
    width: 20px;
    min-width: 20px;
}

.mh-300px {
    max-height: 300px;
}

.card-rounded {
    border-radius: 0.75rem;
}

.collapsible .toggle-on {
    display: none;
}

.collapsible .toggle-off {
    display: inline-block;
}

.collapsible:not(.collapsed) .toggle-on {
    display: inline-block;
}

.collapsible:not(.collapsed) .toggle-off {
    display: none;
}

.bi,
.ki-outline {
    font-style: normal;
    line-height: 1;
}

.bi-check-circle::before {
    content: "âœ”";
}

.bi-x-circle::before {
    content: "âœ–";
}

.bi-plus-square::before {
    content: "+";
}

.bi-dash-square::before {
    content: "-";
}

.ki-home::before {
    content: "âŒ‚";
}

.ki-right::before {
    content: "â€º";
}
