@font-face {
    font-family: 'Poppins';
    src: url('../webfonts/poppins-regular.woff2') format('woff2'),
        url('../webfonts/poppins-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../webfonts/poppins-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../webfonts/poppins-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../webfonts/poppins-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-color: #D79200;
    --brand-color-orange-50: #FBF4E6;
    --brand-color-orange-100: #F3DDB0;
    --brand-color-orange-200: #EDCD8A;

    --brand-gray-black-50: #E9E9EA;
    --brand-gray-black-50: #E9E9EA;
    --brand-gray-black-100: #D2D2D5;
    --brand-gray-black-200: #A5A5AB;
    --brand-gray-black-300: #777980;
    --brand-gray-black-400: #4A4C56;
    --brand-gray-black-450: #2A2A2A;
    --brand-gray-black-500: #1D1F2C;
    --brand-gray-black-600: #161721;
    --brand-gray-black-800: #07080B;

    --brand-secondary-color-brown-200: #ADB690;
    --brand-secondary-color-brown-300: #87945D;
    --brand-secondary-color-brown-400: #70803D;
    --brand-secondary-color-brown-500: #4C600D;

    --brand-error-red-100: #FBD8DB;
    --brand-error-red-500: #EB3D4D;

    --brand-font-family: Poppins;
}

body {
    font-family: var(--brand-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.sidebar-header .btn-close {
    display: none;
}

.top-navbar h6,
.sidebar-header h4 {
    color: var(--brand-color);
    font-weight: 600;
    font-size: 24px;
    line-height: 116%;
    letter-spacing: 0%;
}

.top-navbar .btn,
.top-navbar .btn:hover,
.top-navbar .btn:active,
.top-navbar .btn:focus-visible,
.top-navbar .btn {
    color: var(--brand-color);
    border: 0;
    background-color: transparent;
    outline: 0 !important;
    font-size: 20px;
}

.desktop-sidebar {
    width: 280px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: var(--bs-white);
    border-right: 1px solid #dee2e6;
    overflow-y: auto;
    transition: all 0.3s;
}

.main-content-wrapper {
    margin-left: 280px;
    transition: all 0.3s;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.sidebar-menu {
    padding: 1rem 0;
}

.sidebar-item {
    margin-bottom: 2px;
    list-style: none;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--brand-gray-black-400);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.sidebar-link:focus-visible {
    outline: unset;
}

.sidebar-item.active .sidebar-link,
.sidebar-link:hover {
    background-color: var(--brand-color);
    color: var(--brand-color-orange-50);
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
}

.sidebar-link.logout {
    margin-top: 2rem;
    color: var(--brand-error-red-500);
    border: 1px solid #D2D2D5;
}

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bs-white);
    border-bottom: 1px solid #dee2e6;
    padding: 24px;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.content-area {
    padding: 1.5rem;
}

.stat-card {
    border: none;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.offcanvas {
    width: 280px;
}

.desktop-sidebar::-webkit-scrollbar {
    width: 5px;
}

.desktop-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.desktop-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 5px;
}

.page-header h1 {
    color: var(--brand-gray-black-400);
    font-weight: 600;
    font-size: 36px;
    line-height: 116%;
    letter-spacing: 0%;
}

.brand-card-mini {
    padding: 24px;
    border-radius: 8px;
    background: #F9FAFB;
    border: 1px solid #D2D2D5;
    margin-bottom: 1.5rem !important;
}

.dashboard-stats p {
    color: var(--brand-gray-black-400);
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-stats p i {
    color: var(--brand-color);
}

.dashboard-stats h6 {
    color: var(--brand-gray-black-500);
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
}

.dashboard-stats span {
    color: var(--brand-gray-black-300);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

h4.dash-quick-actions-heading {
    color: var(--brand-gray-black-400);
    font-weight: 500;
    font-size: 24px;
    line-height: 116%;
    letter-spacing: 0%;
    margin-bottom: 1rem;
}

.dash-quick-actions .quick-action {
    height: 98px;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash-quick-actions .add-member-action {
    background: #155DFC;
}

.dash-quick-actions .send-tokens-action {
    background: #00A63E;
}

.dash-quick-actions .top-up-action {
    background: #9810FA;
}

.dash-quick-actions .share-and-grow-action {
    background: #F54900;
}

.dash-quick-actions i {
    color: var(--bs-white);
    margin-bottom: 10px;
}

.dash-quick-actions p {
    color: var(--bs-white);
    text-align: center;
    margin-bottom: 10px;
}

.brand-card,
.send-tokens-wrapper .enter-amount {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
}

.top-navbar p,
.sidebar-header p,
.page-header p,
.brand-card p,
.brand-card h6,
.brand-card .btn,
.brand-card-mini p,
.brand-secondary-card h6,
.dash-quick-actions p,
.dash-recent-activities p,
.family-and-friends-stats p,
#add-new-contact p,
.send-tokens-wrapper .enter-amount .balance-stats span,
.send-tokens-wrapper .transaction-success p,
.top-up-tokens p,
.topup-payment-details .payment-methods-wrapper .form-check-label,
.topup-purchase-successful-wrapper p,
.brand-input,
.brand-input-lg,
.brand-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

.brand-card h6 {
    color: var(--brand-gray-black-400) !important;
    font-weight: 500 !important;
}

.page-header p,
.top-navbar p,
.brand-card p,
.fnf-contact-list .fnf-contact .info p.mail,
.send-tokens-wrapper .send-tokens .contact .info p,
.send-tokens-wrapper .send-tokens .info p,
.send-tokens-wrapper .enter-amount p,
.send-tokens-wrapper .enter-amount .balance-stats span,
.topup-payment-details .tokens-summary p {
    color: var(--brand-gray-black-200);
}

.brand-secondary-card {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    padding: 16px;
    border-radius: 8px;
    background: #F9FAFB;
    margin-bottom: 1rem;
}

.brand-secondary-card span,
.dash-recent-activities .dash-recent-activity span,
.pledge-histories .pledge-history span,
.transaction-history-wrapper .transaction-history span {
    color: var(--brand-gray-black-200);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.dash-recent-activities .dash-recent-activity h6.danger,
.transaction-history-wrapper .transaction-history h6.danger {
    color: #E7000B;
    font-weight: 600;
}

.dash-recent-activities .dash-recent-activity h6.success,
.transaction-history-wrapper .transaction-history h6.success {
    color: #00A63E;
    font-weight: 600;
}

.btn-brand,
.btn-brand:active,
.btn-brand:focus,
.btn-brand:focus-visible,
.btn-brand:hover {
    text-align: center;
    color: var(--bs-white) !important;
    background-color: var(--brand-color) !important;
    border-radius: 12px;
    padding: 16px;
}

.btn-outline-brand {
    color: var(--brand-color);
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--brand-color);
}

.btn-outline-brand:hover {
    color: var(--bs-white);
    background-color: var(--brand-color);
}

.btn-brand-danger,
.btn-brand-danger:hover {
    background-color: var(--brand-error-red-500) !important;
}

.share-and-grow-stats .brand-card-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-and-grow-stats span {
    color: var(--brand-gray-black-200);
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.share-and-grow-stats h6 {
    color: var(--brand-gray-black-500);
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
}

.share-and-grow-stats i.primary {
    color: #155DFC;
    font-size: 32px;
}

.share-and-grow-stats i.green {
    color: #00A63E;
    font-size: 32px;
}

.brand-secondary-card span.badge {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    border-radius: 99px;
    border-width: 1px;
    padding: 6px 12px;
}

.brand-secondary-card span.completed {
    color: #008236;
    background: #DCFCE7;
    border: 1px solid #B9F8CF;
}

.brand-secondary-card span.open {
    color: #364153;
    background: #E5E7EB;

}

.your-referral-link .your-referral-form {
    display: flex;
    gap: 16px;
}

.your-referral-link .your-referral-form .btn {
    display: flex;
    gap: 5px;
    align-items: center;
}

.your-referral-link .qr-code-section {
    height: 306px;
    border-radius: 8px;
    padding: 16px;
    background-color: #F9FAFB;
}

.your-referral-link .share-via-action {
    display: flex;
    gap: 16px;
}

.current-pledge,
.chain-position,
.wallet-summary {
    background-color: var(--brand-color);
    border-radius: 8px;
    padding: 24px;
}

.current-pledge h4,
.chain-position h4 {
    color: var(--bs-white);
    font-weight: 600;
    font-size: 36px;
    line-height: 160%;
    letter-spacing: 0%;
}

.current-pledge p,
.chain-position p {
    color: var(--bs-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 116%;
    letter-spacing: 0%;
}

.monthly-pledge-stats .brand-card-mini {
    display: flex;
    gap: 16px;
    align-items: center;
}

.monthly-pledge-stats i {
    border-radius: 10px;
    padding: 12px;
}

.monthly-pledge-stats i.primary {
    color: #155DFC;
    background-color: #DBEAFE;
}

.monthly-pledge-stats i.green {
    color: #00A63E;
    background-color: #DCFCE7;
}

.monthly-pledge-stats span {
    color: var(--brand-gray-black-200);
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.monthly-pledge-stats h6 {
    color: var(--brand-gray-black-600);
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
}

.pledge-histories .pledge-history {
    align-items: center;
}

.pledge-histories .pledge-history span.badge {
    border-radius: 99px;
    padding: 6px 12px;
}

.pledge-histories .pledge-history span.badge.success {
    color: #008236;
    background-color: #DCFCE7;
}

.pledge-histories .pledge-history span.badge.secondary {
    color: #364153;
    background-color: #E5E7EB;
}

.chain-hierarchy .tier {
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 1.5rem;
}

.chain-hierarchy .info-wrap {
    display: flex;
    gap: 24px;
}

.chain-hierarchy .tier .info h6 {
    color: var(--brand-gray-black-400);
    font-weight: 500;
}

.chain-hierarchy .tier .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 12px 17px;
    font-size: 18px;
}

.chain-hierarchy .tier span {
    color: var(--brand-gray-black-200);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.chain-hierarchy .tier p {
    font-weight: 500;
    text-align: center;
}

.chain-hierarchy .tier-2 {
    border: 1px solid #155DFC;
    background: #EFF6FF;
}

.chain-hierarchy .tier-2 .icon {
    color: var(--bs-white);
    background: #155DFC;
}

.chain-hierarchy .tier-2 p {
    color: #155DFC;
}

.chain-hierarchy .tier-3 {
    background: #FAF5FF;
    border: 1px solid #9810FA;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.chain-hierarchy .tier-3 .icon {
    color: var(--bs-white);
    background: #9810FA;
}

.chain-hierarchy .tier-3 p {
    color: #9810FA;
}

.chain-hierarchy .tier-4 {
    background: #F0FDF4;
    border: 1px solid #B9F8CF;
}

.chain-hierarchy .tier-4 .icon {
    color: var(--bs-white);
    background: #00A63E;
}

.chain-hierarchy .tier-4 p {
    color: #00A63E;
}

.chain-hierarchy .arrow {
    color: #99A1AF;
    text-align: center;
    margin-bottom: 1.5rem;
}

.chain-position-stats {
    text-align: center;
}

.chain-position-stats i {
    font-size: 18px;
    margin-bottom: 1rem;
}

.chain-position-stats i.t2 {
    color: #155DFC;
}

.chain-position-stats i.t3 {
    color: #9810FA;
}

.chain-position-stats i.t4 {
    color: #00A63E;
}

.chain-position-stats h6 {
    color: var(--brand-gray-black-500);
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
}

.chain-position-stats p {
    color: var(--brand-gray-black-300);
    text-align: center;
}

.wallet-summary span {
    color: var(--bs-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 116%;
    letter-spacing: 0%;
}

.wallet-summary h4 {
    color: var(--bs-white);
    font-weight: 600;
    font-size: 36px;
    line-height: 160%;
    letter-spacing: 0%;
    margin: .3rem 0;
}

.wallet-summary .btn {
    color: var(--brand-color);
    border-radius: 12px;
    padding: 16px;
    background: var(--brand-color-orange-50);
}

.wallet-histories .wallet-history p.credit {
    color: #00A63E;
    font-weight: 600;
    text-align: right;
}

.wallet-histories .wallet-history p.debit {
    color: #E7000B;
    font-weight: 600;
    text-align: right;
}

.wallet-histories .wallet-history span {
    color: var(--brand-gray-black-200);
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: right;
}

.wallet-histories .wallet-history .info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-histories .wallet-history .info h6 {
    color: var(--brand-gray-black-400);
    font-weight: 500;
}

.wallet-histories .wallet-history .info p {
    color: var(--brand-gray-black-200);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.wallet-histories .wallet-history .info .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 8px;
    font-size: 14px;
}

.wallet-histories .wallet-history .info .icon.credit {
    color: #00A63E;
    background: #DCFCE7;
}

.wallet-histories .wallet-history .info .icon.debit {
    color: #E7000B;
    background: #FFE2E2;
}

.wallet-histories .wallet-histories-tabs {
    width: 100%;
    height: 66px;
    border-radius: 99px;
    padding: 8px;
    display: flex;
    gap: 8px;
    background-color: #ECECF0;
    margin-bottom: 2rem;
}

.wallet-histories .wallet-histories-tabs .wallet-action-btn {
    color: var(--brand-gray-black-400);
    font-weight: 400;
    font-size: 14px;
    line-height: 116%;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 99px;
    height: 50px;
    border: unset;
}

.wallet-histories .wallet-histories-tabs .wallet-action-btn:hover,
.wallet-histories .wallet-histories-tabs .wallet-action-btn.active {
    background-color: var(--bs-white);
}

.wallet-histories .history-loader .spinner-border,
.transaction-history-wrapper .history-loader .spinner-border {
    width: 3rem;
    height: 3rem;
}

.fnf-contact-list .fnf-contact,
.send-tokens-wrapper .send-tokens .contact,
.send-tokens-wrapper .enter-amount .balance-stats {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    padding: 16px;
    border-radius: 8px;
    background: #F9FAFB;
    margin-bottom: 1rem;
    align-items: center;
}

.fnf-contact-list .fnf-contact .btn-send {
    white-space: nowrap;
}

.family-and-friends-stats {
    text-align: center;
}

.family-and-friends-stats i {
    margin-bottom: 10px;
}

.family-and-friends-stats i.blue {
    color: #155DFC;
}

.family-and-friends-stats i.green {
    color: #00A63E;
}

.family-and-friends-stats i.purple {
    color: #9810FA;
}

.family-and-friends-stats h6 {
    color: var(--brand-gray-black-500);
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
}

.family-and-friends-stats p {
    color: var(--brand-gray-black-300);
    text-align: center;
}

.fnf-contact-list .fnf-contact .info,
.send-tokens-wrapper .send-tokens .contact .info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fnf-contact-list .fnf-contact .info .avatar-icon,
.send-tokens-wrapper .send-tokens .contact .info .avatar-icon {
    color: var(--bs-white);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 99px;
    background-color: var(--brand-color);
}

.fnf-contact-list .fnf-contact .info h6.name,
.send-tokens-wrapper .send-tokens .contact .info h6 {
    color: var(--brand-gray-black-400);
    font-weight: 500;
}

.fnf-contact-list .fnf-contact .stat {
    display: flex;
    gap: 16px;
    align-items: center;
}

.fnf-contact-list .fnf-contact .stat span.balance {
    color: var(--brand-gray-black-200);
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: right;
}

.fnf-contact-list .fnf-contact .stat p.tokens {
    color: var(--brand-gray-black-500);
    font-weight: 600;
    text-align: right;
}

.sync-fnf-contacts {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.sync-fnf-contacts h5 {
    color: var(--brand-gray-black-400);
    font-weight: 500;
    font-size: 20px;
    line-height: 116%;
    letter-spacing: 0%;
}

.sync-fnf-contacts p {
    color: var(--brand-gray-black-200);
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.sync-fnf-contacts .btn-sync-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;
}

.sync-fnf-contacts .btn-sync-contacts:hover {
    color: var(--bs-white);
    background-color: var(--brand-color);
}

.modal-content .modal-header {
    border: 0;
    align-items: flex-start;
}

.modal-content .modal-title {
    color: var(--brand-gray-black-500);
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;

}

.modal-content p {
    color: var(--brand-gray-black-300);
    margin: 0;
}

.brand-label {
    color: var(--brand-gray-black-500);
    margin-bottom: 6px;
}

.brand-input {
    color: var(--brand-gray-black-500);
    border-radius: 12px;
    padding: 16px;
    background-color: #F3F3F5;
    border: 1px solid #E2E4E9;
}

.brand-input-lg {
    color: var(--brand-gray-black-300);
    background: #F3F3F5;
    border-radius: 12px;
    padding: 24px;
    height: 70px;
}

.brand-input:focus,
.brand-input-group:focus,
.brand-input-lg:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(241 212 140);
    border-color: var(--brand-color);
}

.brand-input-group {
    border-radius: 12px;
    background: #F3F3F5;
    border: 1px solid #E2E4E9;
}

.brand-input-group .input-group-text {
    padding: 16px;
    background: #F3F3F5;
    border: unset;
}

.brand-input-group .brand-input {
    border: unset;
}

.brand-input-group .brand-input:focus {
    background: #F3F3F5;
    border-color: transparent;
    box-shadow: unset;
    outline: unset;
}

.send-tokens-wrapper .send-tokens .contact i {
    display: none;
}

.send-tokens-wrapper .send-tokens .contact.active i {
    font-size: 18px;
    display: block;
    color: var(--brand-color);
}

.send-tokens-wrapper .send-tokens .contact.active {
    border: 1px solid var(--brand-color);
    background-color: var(--brand-color-orange-50);
}

.send-tokens-wrapper .enter-amount .balance-stats {
    display: block;
}

.send-tokens-wrapper .enter-amount .balance-stats p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.send-tokens-wrapper .enter-amount .balance-stats span.tokens {
    color: var(--brand-gray-black-400);
}

.send-tokens-wrapper .transaction-success {
    position: relative;
    text-align: center;
    border-radius: 12px;
    padding: 24px;
    height: 337px;
    box-shadow: 5px 5px 40.7px 0px #00000026;
}

.send-tokens-wrapper .transaction-success .icon {
    margin: auto;
    width: 80px;
    height: 80px;
    color: #00A63E;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DCFCE7;
    border-radius: 50%;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.send-tokens-wrapper .transaction-success h5 {
    color: var(--brand-gray-black-500);
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 0.8rem;
}

.send-tokens-wrapper .transaction-success p {
    color: var(--brand-gray-black-300);
}

.send-tokens-wrapper .transaction-success .make-another-transaction {
    position: absolute;
    right: 25px;
    padding: 12px;
    border-radius: 50%;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    cursor: pointer;
}

.send-tokens-wrapper .transaction-success .make-another-transaction:hover {
    color: var(--bs-white);
    background-color: var(--brand-color);
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 8px;
}

.stepper .step {
    text-align: center;
}

.stepper .circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F6F5F4;
    color: var(--brand-gray-black-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
}

.stepper .step.active .circle {
    background: var(--brand-color);
    color: #fff;
}

.stepper .line {
    width: 60px;
    height: 1px;
    background: #E7E7E7;
    margin: 0 10px;
}

.top-up-tokens .package {
    text-align: center;
    border-radius: 12px;
    padding: 24px;
    background: #F9FAFB;
    position: relative;
    cursor: pointer;
}

.top-up-tokens .package.active {
    border: 1px solid var(--brand-color);
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.top-up-tokens .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    width: 64px;
    height: 64px;
    border-radius: 99px;
    padding: 12px;
    color: var(--brand-color);
    background-color: var(--brand-color-orange-50);
    margin: 1.3rem auto;
}

.top-up-tokens h5 {
    color: var(--brand-gray-black-500);
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.top-up-tokens p {
    color: var(--brand-gray-black-300);
    text-align: center;
}

.top-up-tokens h6 {
    color: var(--brand-gray-black-500);
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.top-up-tokens span.tag {
    color: var(--bs-white);
    font-weight: 400;
    font-size: 10px;
    line-height: 116%;
    letter-spacing: 0%;
    text-align: center;
    background-color: var(--brand-color);
    padding: 6px 12px;
    border-radius: 99px;
    position: absolute;
    top: -13px;
    right: 46%;
}

.top-up-tokens span.save {
    color: #00A63E;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.arrow-back {
    color: var(--brand-gray-black-400);
    font-size: 24px;
}

.topup-payment-details .tokens-summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-radius: 8px;
    padding: 16px;
    background-color: var(--brand-color-orange-50);
}

.topup-payment-details .tokens-summary h4 {
    color: var(--brand-gray-black-400);
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    letter-spacing: 0%;
}

.topup-payment-details .payment-methods-wrapper .payment-method-option {
    padding: 24px;
    border-radius: 8px;
    background-color: #F3F3F5;
}

.topup-payment-details .payment-methods-wrapper .payment-method-option .payment-method-label {
    color: var(--brand-gray-black-500);
}

.topup-payment-details .payment-methods-wrapper .payment-method-option .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
}

.topup-payment-details .payment-methods-wrapper .payment-method-option .form-check-input:checked {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.topup-payment-details .payment-methods-wrapper .payment-method-option .form-check-input:focus-visible {
    outline: unset;
}

.topup-payment-details .payment-methods-wrapper .payment-method-option .form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgb(251 244 230);
}

.topup-payment-details .payment-method-form .form-label {
    color: var(--brand-gray-black-500);
}

.topup-purchase-successful-wrapper {
    text-align: center;
    padding: 4rem 24px;
    border-radius: 12px;
    box-shadow: 5px 5px 40.7px 0px #00000026;
}

.topup-purchase-successful-wrapper .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 90px;
    background-color: #DCFCE7;
    margin-bottom: 1rem;
}

.topup-purchase-successful-wrapper .icon i {
    color: #00A63E;
    font-size: 24px;
}

.topup-purchase-successful-wrapper h4 {
    color: var(--brand-gray-black-500);
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
}

.topup-purchase-successful-wrapper p {
    color: var(--brand-gray-black-300);
}

.order-histories .brand-card-mini {
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.order-histories p {
    margin-bottom: 8px;
}

.order-histories .product,
.order-histories .order-no {
    color: var(--brand-gray-black-500);
    font-size: 14px;
    font-weight: 500;
}

.order-histories .product-info {
    color: var(--brand-gray-black-300);
    font-size: 14px;
}

.order-histories .order-no {
    color: var(--brand-color);
    margin-bottom: 0;
}

.order-histories .product-price {
    color: var(--brand-color);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: right;
}

.order-histories .order-status {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    height: 28px;
    border-width: 1px;
    border-radius: 99px;
    padding: 6px 12px;
}

.order-histories .order-status.delivered {
    color: #008236;
    background-color: #DCFCE7;
    border: 1px solid #B9F8CF;
}

.order-histories .order-status.processing {
    color: #F97338;
    background: #FFF7ED;
    border: 1px solid #FFD6C4;
}

.order-histories .order-status.cancelled {
    color: #F44263;
    background-color: #FFF1F2;
    border: 1px solid #FFC7D1;
}

.order-histories .order-status.in-transit {
    color: #1447E6;
    background-color: #DBEAFE;
    border: 1px solid #BEDBFF;
}

.profile-photo-wrapper {
    text-align: center;
    border-radius: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
    border: 1px solid #E9E9EA;
}

.profile-photo-wrapper .img-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 15px;
}

.profile-photo-wrapper .img-wrap img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
}

.profile-photo-wrapper .img-wrap .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--brand-color);
    width: 30px;
    height: 30px;
    border-radius: 20px;
    color: var(--bs-white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}

.profile-photo-wrapper span {
    color: #A7A7A7;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
}

.languages-wrapper {
    display: block;
}

.languages-wrapper .language .form-check-input {
    display: none;
}

.languages-wrapper .language .form-check-label i {
    display: none;
}

.languages-wrapper .language .form-check-input:checked+.form-check-label i {
    display: block;
    color: var(--brand-color);
    visibility: visible;
    opacity: 1;
}

.languages-wrapper .language {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E9E9EA;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.languages-wrapper .language:last-child {
    border-bottom: 0;
}

.language-radio {
    display: none;
}

.language-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin: 0;
    transition: all 0.3s ease;
}

.languages-wrapper .language .fa-check-circle {
    font-size: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.languages-wrapper .language {
    cursor: pointer;
    user-select: none;
}

.delete-account-title {
    text-align: center;
    color: var(--brand-gray-black-600);
    font-weight: 600;
    font-size: 36px;
    line-height: 116%;
    letter-spacing: 0%;
    margin-bottom: 3rem;
}

.danger-notice {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--brand-error-red-500);
    margin-bottom: 2rem;
}

.danger-notice .icon {
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 99px;
    background: #FFFFFF33;
    color: var(--bs-white);
    font-size: 26px;
    margin-bottom: 1.5rem;
}

.danger-notice h6 {
    color: var(--bs-white);
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.danger-notice p {
    color: var(--bs-white);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
}

.reason-option {
    padding: 12px;
    border-radius: 10px;
    background: var(--bs-white);
    margin-bottom: 1rem;
}

.reason-option .form-check-input:checked {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.forgot-password-link {
    color: var(--brand-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-decoration: none;
}

.toggle-password {
    cursor: pointer;
}

.legal-documents-wrapper {
    display: flex;
    gap: 24px;
}

.legal-documents-wrapper .legal-document {
    width: 100%;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E9E9EA;
}

.follow-us-wrapper h4 {
    color: var(--brand-gray-black-500);
    font-weight: 500;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 0%;
}

.follow-us-wrapper .social-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    border-radius: 12px;
    border-width: 1px;
    padding: 24px;
    border: 1px solid #F4F4F4;
    background: #F9FAFB;
}

.follow-us-wrapper .social-wrap .social-icon {
    width: 48px;
    height: 48px;
    opacity: 1;
    border-radius: 99px;
    padding: 12px;
}

.follow-us-wrapper .social-wrap .social-info h6 {
    color: var(--brand-gray-black-500);
    font-weight: 500;
}

.follow-us-wrapper .social-wrap .social-info p {
    margin-bottom: 0;
}

.follow-us-wrapper .social-wrap .fa-angle-right {
    color: var(--brand-gray-black-400);
}

.follow-us-wrapper .social-wrap .social-icon.facebook {
    background: #155DFC;
}

.follow-us-wrapper .social-wrap .social-icon.twitter {
    background: #00A6F4;
}

.follow-us-wrapper .social-wrap .social-icon.tiktok {
    background: #070707;
}

.follow-us-wrapper .social-wrap .social-icon.instagram {
    background: linear-gradient(135deg, #9810FA 0%, #E60076 50%, #FF6900 100%);
}

.follow-us-wrapper .social-wrap .social-icon.linkedin {
    background: #1447E6;
}

.follow-us-wrapper .social-wrap .social-icon.youtube {
    background: #E7000B;
}

.contact-form-wrap .file-upload-area {
    position: relative;
    padding: 24px;
    border: 1px dashed var(--brand-color);
    border-radius: 12px;
    background: #F3F3F5;
    cursor: pointer;
    overflow: hidden;
}

.contact-form-wrap .file-upload-content {
    text-align: center;
}

.contact-form-wrap .upload-icon {
    color: var(--bs-black);
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.contact-us-section .contact-form-wrap .upload-text {
    color: var(--brand-gray-black-600);
    font-size: 18px;
    font-weight: 400;
    line-height: 132%;
    margin-bottom: 8px;
}

.contact-us-section .contact-form-wrap .upload-hint {
    color: var(--brand-gray-black-300);
    font-size: 16px;
    font-weight: 400;
    line-height: 132%;
    margin-bottom: 0;
}

.contact-form-wrap .file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.contact-form-wrap .file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-form-wrap .file-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-right: 5px;
    padding: 6px 12px;
    background: rgba(215, 146, 0, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #2c3e50;
    animation: fadeIn 0.3s ease;
}

.contact-form-wrap .file-item i {
    font-size: 16px;
    color: var(--brand-color);
}

.contact-form-wrap .file-item .file-name {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-form-wrap .file-item .file-size {
    font-size: 11px;
    color: var(--bs-gray);
}

.contact-form-wrap .file-item .remove-file {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form-wrap .file-item .remove-file i {
    font-size: 12px;
    color: var(--bs-gray);
}

.contact-info-wrap {
    padding: 24px;
    border-radius: 12px;
    background-color: var(--brand-color-orange-50);
}

.contact-info-wrap .contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-wrap .contact-info-item i {
    color: var(--brand-color);
}

.contact-info-wrap .contact-info-item h6 {
    color: var(--brand-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
}

.contact-info-wrap .contact-info-item p {
    color: var(--brand-gray-black-300);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.toggle-password-wrap {
    position: relative;
}

.toggle-password-wrap i {
    position: absolute;
    right: 28px;
    bottom: 28px;
    font-size: 20px;
    z-index: 9;
}

/* Loader Overly */
.disable-actions {
    pointer-events: none;
    user-select: none;
}

body.disable-actions .loader-overlay {
    display: flex !important;
}

.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 1;
    visibility: visible;
    transition: glow .4s ease;
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-box {
    position: relative;
    text-align: center;
    padding: 40px 50px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.loader-box img {
    position: absolute;
    top: 23%;
    left: 32%;
    width: 80px;
    animation: fadeText 1.5s ease-in-out infinite alternate;
}

.loader-spinner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top: 4px solid #ffffff;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loader-logo {
    position: absolute;
    top: 100px;
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%);
    animation: pulse 1.8s ease-in-out infinite alternate;
}

.loader-text {
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffffcc;
}

/* toastr */
#toastr-content {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: var(--bs-white);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    background: #333;
    height: auto;
    min-height: 45px;
    width: auto;
    min-width: 200px;
    max-width: 350px;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#toastr-wrap.toastr-show #toastr-content {
    opacity: 1;
    transform: translateY(0);
}

#toastr-wrap.toastr-success #toastr-content {
    background: #10b981;
}

#toastr-wrap.toastr-error #toastr-content {
    background: #ef4444;
}

#toastr-wrap.toastr-warning #toastr-content {
    background: #f59e0b;
}

#toastr-wrap.toastr-info #toastr-content {
    background: #3b82f6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeText {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .offcanvas.offcanvas-start {
        width: 280px;
    }

    .desktop-sidebar {
        display: none;
    }

    .main-content-wrapper {
        margin-left: 0;
    }

    .main-content-wrapper .main-content {
        padding: 0 !important;
    }

    .main-content-wrapper .main-content .content-section {
        padding: 24px 20px;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-header .btn-close {
        display: block;
        color: var(--brand-gray-black-800);
        font-size: 18px;
    }

    .top-navbar h6,
    .sidebar-header h4,
    .monthly-pledge-stats h6 {
        font-size: 16px;
    }

    .top-navbar p,
    .sidebar-header p,
    .monthly-pledge-stats span,
    .dashboard-stats p {
        font-size: 12px;
    }

    .page-header {
        margin-bottom: 1.5rem !important;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .dashboard-stats,
    .dash-quick-actions {
        margin-bottom: 0 !important;
        --bs-gutter-x: 1rem;
    }

    h4.dash-quick-actions-heading {
        font-size: 20px;
    }

    .brand-card-mini,
    .wallet-summary {
        padding: 12px;
    }

    .dash-quick-actions .quick-action {
        height: 82px;
        margin-bottom: 1rem !important;
    }

    .offcanvas-backdrop {
        backdrop-filter: blur(15px);
    }

    .monthly-pledge-stats .brand-card-mini {
        display: block;
    }

    .brand-card-mini {
        margin-bottom: 1rem !important;
    }

    .monthly-pledge-stats i {
        padding: 9px;
        margin-bottom: 10px;
    }

    .chain-hierarchy .tier {
        padding: 16px;
    }

    .fnf-contact-list .fnf-contact .info {
        flex-direction: column;
        align-items: stretch;
    }

    .share-via-action .btn,
    .fnf-contact-list .fnf-contact .info .avatar-icon {
        margin-bottom: 10px;
    }

    .fnf-contact-list .fnf-contact .stat span.balance {
        font-size: 14px;
    }

    .fnf-contact-list .fnf-contact .stat p.tokens {
        margin-top: 5px;
    }

    .fnf-contact-list .fnf-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .fnf-contact-list .fnf-contact .stat {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 12px;
    }

    .fnf-contact-list .fnf-contact .btn-send {
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .sync-fnf-contacts .btn-sync-contacts {
        width: 100%;
        margin-top: 20px;
    }

    .top-up-tokens span.tag {
        right: 24%;
    }

    .sync-fnf-contacts,
    .your-referral-link .share-via-action,
    .your-referral-link .your-referral-form {
        display: block;
    }

    .your-referral-link .your-referral-form .btn {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
        height: 50px;
    }

    .legal-documents-wrapper {
        display: block;
        width: 100%;
    }

    .legal-documents-wrapper .legal-document:first-child {
        margin-bottom: 1rem;
    }
}