.elementor-1904 .elementor-element.elementor-element-8ac2c54{--display:flex;}.elementor-1904 .elementor-element.elementor-element-66ea1e4{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1904 .elementor-element.elementor-element-490ec66 .elementor-heading-title{font-size:42px;font-weight:600;color:#000000;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1904 .elementor-element.elementor-element-ca2592a{font-size:18px;font-weight:400;color:#000000;}.elementor-1904 .elementor-element.elementor-element-7c5ee2a{--display:flex;--min-height:1000px;}.elementor-1904 .elementor-element.elementor-element-7c5ee2a:not(.elementor-motion-effects-element-type-background), .elementor-1904 .elementor-element.elementor-element-7c5ee2a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FAFAFA;}.elementor-1904 .elementor-element.elementor-element-8e25c2a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-1904 .elementor-element.elementor-element-66ea1e4{--content-width:1200px;}.elementor-1904 .elementor-element.elementor-element-8e25c2a{--content-width:1200px;}}/* Start custom CSS for shortcode, class: .elementor-element-9f559fd *//* ========== Trigger button ========== */
#fxt-open-filters {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#fxt-open-filters:hover {
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    transform: translateY(-1px);
}

/* ========== Modal overlay (center + fade) ========== */
.fxt-filter-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    /* animation / visibility */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.45);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fxt-filter-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========== Modal box (scale in) ========== */
.fxt-filter-inner {
    position: relative;
    max-width: 780px;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 24px 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    font-size: 14px;

    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.fxt-filter-modal.is-open .fxt-filter-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.fxt-filter-inner h3 {
    text-align: center;
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

/* Close (X) */
#fxt-filter-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    color: #6b7280;
    transition: color 0.2s ease, transform 0.2s ease;
}

#fxt-filter-close:hover {
    color: #111827;
    transform: scale(1.05);
}

/* ====== TOGGLE SWITCH ====== */
.fxt-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
}

/* hide native checkbox */
.fxt-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* track */
.fxt-toggle-slider {
    position: relative;
    width: 40px;
    height: 22px;
    background: #f5f5f5;
    border-radius: 999px;
    border: 1px solid #d3d3d3;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

/* knob */
.fxt-toggle-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #9b9b9b;          /* grey knob like your screenshot */
    box-shadow: 0 1px 3px rgba(0,0,0,0.35);
    transform: translate(0, -50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

/* ON state */
.fxt-toggle input:checked + .fxt-toggle-slider {
    background: #e6f5ff;          /* light highlight, still subtle */
    border-color: #4c9aff;
}

.fxt-toggle input:checked + .fxt-toggle-slider::before {
    transform: translate(16px, -50%);
    background: #ffffff;          /* blue knob when ON; change if you want grey */
}

/* optional: focus ring when tabbing */
.fxt-toggle input:focus-visible + .fxt-toggle-slider {
    outline: 2px solid #4c9aff;
    outline-offset: 2px;
}

/* label text next to toggle */
.fxt-toggle-label {
    color: #333;
}


/* ========== Filter groups ========== */
.fxt-filter-group {
    margin-bottom: 16px;
}

label.fxt-filter-topic {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.fxt-filter-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
}

.fxt-filter-group select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    box-sizing: border-box;
}

/* ========== Toggle switches ========== */
.fxt-filter-toggles {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.fxt-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.fxt-toggle input {
    display: none;
}

.fxt-toggle-slider {
    display: inline-flex;
    position: relative;
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: background 0.2s ease;
}

.fxt-toggle-slider::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.fxt-toggle input:checked + .fxt-toggle-slider {
    background: #2563eb;
}

.fxt-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

/* ========== Range sliders ========== */

/* Base slider */
.fxt-slider-row {
    display: flex;
    align-items: center;
    gap: 5px;
}
.fxt-slider-row input[type="range"] {
    -webkit-appearance: none; /* remove default styles on WebKit */
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0; /* track color (light grey) */
    outline: none;
    margin: 0px 2px;
}

/* WebKit browsers (Chrome, Edge, Safari) */
.fxt-slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;   /* thumb color (blue) */
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #2563eb; /* outer ring same as thumb color */
    cursor: pointer;
}

/* Firefox */
.fxt-slider-row input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2563eb;   /* thumb color (blue) */
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #2563eb;
    cursor: pointer;
}

/* Firefox track */
.fxt-slider-row input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;   /* track color */
}

/* Optional: filled part of track in Firefox */
.fxt-slider-row input[type="range"]::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: #2563eb;   /* filled track color */
}


/* ========== Actions (only reset) ========== */
.fxt-filter-actions {
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
    padding-top: 12px;
    display: flex;
    justify-content: start;
}

#fxt-filter-reset {
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 14px;
    cursor: pointer;
    color: #374151;
    transition: background 0.2s ease, border-color 0.2s ease;
}

#fxt-filter-reset:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* ========== Responsive ========== */
@media (max-width: 640px) {
    .fxt-filter-inner {
        max-width: 100%;
        padding: 16px;
    }
}

/* === Filter bar (Broker 1 / 2 / 3 + Apply) === */

.fxt-filter-bar {
    width: 26%;
}

/* each "Broker X" group */
.fxt-filter-bar > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.fxt-filter-bar label {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
}

/* dropdowns */
.fxt-broker-select,
#fxt-sort-select {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    font-size: 14px;
    color: #111827;
    line-height: 1.4;
    cursor: pointer;
    outline: none;
    appearance: none;
    /* simple custom arrow */
    background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%), 
                      linear-gradient(135deg, #9ca3af 50%, transparent 50%);
    background-position: calc(100% - 14px) calc(50% - 2px),
                         calc(100% - 10px) calc(50% - 2px);
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
}

.fxt-broker-select:focus,
#fxt-sort-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb1a;
}

/* Apply filter button */
#fxt-apply-filter {
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background: #0052ff;
    color: #fff;
    white-space: nowrap;
    transition: background .15s ease, transform .1s ease, box-shadow .1s ease;
}

#fxt-apply-filter:hover {
    background: #0041cc;
    box-shadow: 0 4px 10px rgba(0, 82, 255, 0.25);
}

#fxt-apply-filter:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* === Sort bar === */

.fxt-sort-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #4b5563;
}

.fxt-sort-bar span {
    font-weight: 500;
}

/* reuse same style for sort select but a bit narrower */
.fxt-sort-bar #fxt-sort-select {
    max-width: 200px;
}

/* === Responsive === */

@media (max-width: 768px) {
    .fxt-filter-bar {
        align-items: stretch;
    }

    .fxt-filter-bar > div {
        min-width: 100%;
    }

    .fxt-sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .fxt-sort-bar #fxt-sort-select {
        width: 100%;
        max-width: none;
    }
}

.fxt-broker-select-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 220px;
    position: relative;
}

.fxt-broker-select-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
    margin-bottom: 4px;
}

.fxt-broker-select-preview-logo {
    max-height: 24px;
    width: auto;
    display: block;
}

.fxt-broker-select-preview-name {
    color: #314158;
    font-size: 14px;
    font-weight: 500;
}

/* dropdown box */
.fxt-broker-dropdown {
    position: relative;
}

.fxt-broker-dropdown-toggle {
    width: 100%;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.fxt-broker-dropdown-label {
    color: #b5b5b5;
    display: flex;
    font-size: 14px;
    align-items: center;
    gap: 8px;
}

/* dropdown menu list */
.fxt-broker-dropdown-menu {
    position: absolute;
    z-index: 50;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 4px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    display: none;
}

.fxt-broker-dropdown.open .fxt-broker-dropdown-menu {
    display: block;
}

.fxt-broker-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    cursor: pointer;
}

.fxt-broker-option:hover {
    background: #f3f4f6;
}

.fxt-broker-option-logo {
    max-height: 22px;
    width: auto;
    display: block;
}

.fxt-broker-option-name {
    font-size: 13px;
}


.fxt-broker-cards-wrapper {
    display: flex;
    gap: 28px;
    margin-bottom: 25px;
}
.container-fxt-broker-card {
    display: flex;
    gap: 10px;
    width: 72%;
}
.fxt-broker-card {
    width: 100%;
    border: 1px solid #e1e4eb;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.fxt-card-header {
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:6px;
}
.fxt-card-logo {
    max-height:40px;
    width:auto;
}
.fxt-card-meta-row {
    display:flex;
    justify-content:space-between;
    font-size:14px;
    margin-bottom:4px;
}
.fxt-card-btn {
    display:inline-block;
    margin-top:12px;
    padding:8px 16px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    background:#0052ff;
    color:#fff;
    text-align:center;
}
.fxt-pagination {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    margin-bottom: 15px;
}
button.fxt-page-btn {
    color: #0052ff;
    background: #2c64eb12;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}
.fxt-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}

.fxt-compare-table th,
.fxt-compare-table td {
    border: 1px solid #e1e4eb;
    padding: 10px 14px;
    vertical-align: middle;
}

.fxt-compare-table thead th {
    font-size: 16px;
    background: #f5f7fb;
    font-weight: 600;
}

.fxt-compare-table th:first-child,
.fxt-compare-table td:first-child {
    width: 28%;
    text-align: left;
    white-space: nowrap;
}

/* broker columns = equal + centered */
.fxt-compare-table th:not(:first-child),
.fxt-compare-table td:not(:first-child) {
    text-align: center;
}

/* optional: slightly rounded container for each table group */
.fxt-compare-table-wrapper {
    margin-bottom: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

span.fxt-badge {
    font-size: 16px;
    background-color: #71b21987;
    padding: 4px 10px;
    border-radius: 5px;
}

.fxt-loading {
    opacity:.5;
    pointer-events:none;
}

td.supported-true  .supported-true  { display:inline-block; }
td.supported-true  .supported-false { display:none; }
td.supported-false .supported-true  { display:none; }
td.supported-false .supported-false { display:inline-block; }

.fxt-no-brokers {
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    background: #fafafa;
    text-align: center;
    max-width: 480px;
    margin: 150px auto;
}

.fxt-no-brokers-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
}

.fxt-no-brokers-svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.fxt-no-brokers-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fxt-no-brokers-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.fxt-no-brokers-actions {
    display: flex;
    justify-content: center;
}

.fxt-no-brokers-btn {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 999px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.fxt-no-brokers-btn:hover {
    opacity: 0.9;
}

.container-filter-scroll::-webkit-scrollbar {
    width: 8px;
    background-color: #f4f4f4;
    border-radius: 100px;
}
.container-filter-scroll::-webkit-scrollbar-thumb {
    background-color: #0052ff;
    border-radius: 100px;
}
.container-filter-scroll::-webkit-scrollbar-track {
    background-color: #f4f4f4;
    border-radius: 100px;
}/* End custom CSS */