/* ============================================================
   CSS VARIABLES & RESET  (mirrored from style.css)
   ============================================================ */
:root {
    color-scheme: light;
    --bg: radial-gradient(circle at top left, #1f3d7a, #0d1221 60%);
    --panel-bg: rgba(18, 25, 46, 0.72);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f5f7ff;
    --text-secondary: rgba(245, 247, 255, 0.75);
    --accent: #5bc0f8;
}

* {
    box-sizing: border-box;
}

/* ============================================================
   BODY & OVERALL LAYOUT
   ============================================================ */
body {
    height: 100vh;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    min-height: 100vh;
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.left-column {
    background: var(--panel-bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--panel-border);
    backdrop-filter: blur(12px);
    position: relative;
    height: 100vh;
}

.right-column {
    background: linear-gradient(160deg, rgba(14, 20, 37, 0.9), rgba(12, 17, 29, 0.65));
    padding: 20px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ============================================================
   STEPS
   ============================================================ */
.step {
    display: none;
    height: 75%;
}

.step.active {
    display: block;
}

.step-container {
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.step-container .sub-step {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
    padding-bottom: 3rem;
    padding-top: 3rem;
    padding-right: 2rem;
}

.step-container .sub-step:last-child {
    border-bottom: none;
}

#scrollableSteps {
    scroll-snap-type: start !important;
    -webkit-overflow-scrolling: auto;
    overflow-y: scroll;
}

.sub-step {
    scroll-snap-align: start;
    min-height: 100%;
    box-sizing: border-box;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    gap: 8px;
    flex-grow: 1;
    flex-wrap: nowrap;
    padding-top: 12px;
}

.progress-container > div {
    flex: 1;
}

.progress-container .progress-step {
    width: 100%;
}

.progress-step {
    flex: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.progress-step.active {
    background-color: var(--accent);
}

.progress-step.previous {
    background-color: rgba(91, 192, 248, 0.4);
}

.progress-step:hover {
    background-color: rgba(91, 192, 248, 0.45);
    cursor: pointer;
}

.progress-step.active:hover {
    background-color: var(--accent);
    cursor: default;
}

.progress-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.progress-title {
    display: block;
    text-align: start;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.progress-title.active {
    color: var(--accent);
}

/* ============================================================
   NAVIGATION BUTTONS (fixed bar at bottom of left column)
   ============================================================ */
.navigation {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(12, 17, 29, 0.85);
    border-top: 1px solid var(--panel-border);
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(8px);
}

.content-wrapper {
    flex-grow: 1;
    overflow: hidden;
    padding-bottom: 60px;
}

/* ============================================================
   LEFT COLUMN SCROLL HIDING
   ============================================================ */
#left-main::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

#left-main {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================================
   BUTTONS — primary & secondary
   ============================================================ */
.btn-group-custom {
    display: flex;
    gap: 10px;
}

.btn-primary {
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(12, 17, 29, 0.7);
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid var(--accent);
    outline: none;
    letter-spacing: 0.03em;
    user-select: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
    line-height: 1.5;
}

.btn-primary:hover {
    background: rgba(14, 20, 37, 0.9);
    box-shadow: 0 0 18px rgba(91, 192, 248, 0.45), 0 0 28px rgba(91, 192, 248, 0.25);
    transform: translateY(-2px);
    color: var(--text-primary);
    border-color: var(--accent);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(91, 192, 248, 0.35);
    background: rgba(14, 20, 37, 0.8);
}

.btn-primary:disabled,
.btn-primary.disabled {
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.45), rgba(158, 158, 158, 0.35));
    border: 1px solid #9a9a9a !important;
    color: rgb(147, 147, 147);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 1;
}

.btn-primary:disabled:hover,
.btn-primary.disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(7, 10, 19, 0.45);
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    letter-spacing: 0.03em;
    user-select: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
    line-height: 1.5;
}

.btn-secondary:hover {
    background: rgba(14, 20, 37, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   FORM INPUTS
   ============================================================ */
.form-control,
.custom-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 10, 19, 0.6);
    color: var(--text-primary);
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder,
.custom-input::placeholder {
    color: rgba(245, 247, 255, 0.35);
}

.form-control:focus,
.custom-input:focus {
    outline: none;
    border-color: rgba(91, 192, 248, 0.65);
    background: rgba(7, 10, 19, 0.8);
    box-shadow: 0 0 0 3px rgba(91, 192, 248, 0.25);
    color: var(--text-primary);
}

.form-label,
.form-check-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

select.form-control,
select.custom-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml;utf8,<svg width='10' height='6' xmlns='http://www.w3.org/2000/svg'><path d='M1 1 L5 5 L9 1' stroke='white' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 10px 6px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Validation states */
.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: rgba(248, 113, 113, 0.65);
    background-image: none;
}

.invalid-feedback {
    color: rgba(248, 113, 113, 0.9);
    font-size: 0.85rem;
}

/* ============================================================
   CHECKBOXES — form-check style
   ============================================================ */
.form-check-input {
    accent-color: var(--accent);
    background-color: rgba(7, 10, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(91, 192, 248, 0.25);
    outline: none;
}

/* ============================================================
   CARD-CHECK (checkbox card tiles)
   ============================================================ */
.card-check {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    background: rgba(7, 10, 19, 0.45);
    color: var(--text-primary);
}

.card-check:hover {
    border-color: rgba(91, 192, 248, 0.45);
    background: rgba(7, 10, 19, 0.65);
}

.card-check input[type="checkbox"] {
    display: none;
}

.card-check .check-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(7, 10, 19, 0.5);
}

.card-check input[type="checkbox"]:checked + .check-icon {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.card-check input[type="checkbox"]:checked ~ .card-body {
    border-color: var(--accent);
    color: var(--text-primary);
}

.card-check input[type="checkbox"]:checked ~ .card-body h6 {
    color: var(--text-primary);
}

.card-check .check-icon i {
    display: none;
    font-size: 0.75rem;
}

.card-check input[type="checkbox"]:checked + .check-icon i {
    display: block;
}

.card-check.locked {
    pointer-events: none;
    opacity: 0.6;
}

.card-check.locked .lock-overlay {
    display: flex;
}

.card-check input {
    z-index: 1;
}

.card-body {
    background: transparent;
}

.card-body h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-body small {
    color: rgba(245, 247, 255, 0.5);
}

.card-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ============================================================
   LOCK OVERLAY
   ============================================================ */
.lock-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 11, 19, 0.75);
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: rgba(245, 247, 255, 0.6);
    z-index: 2;
}

.lock-overlay i {
    pointer-events: none;
}

/* ============================================================
   RADIO CARDS
   ============================================================ */
#radio-cards-container {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.radio-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    width: 100%;
    margin-right: 2rem;
    margin-bottom: 2rem;
    padding: 3rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(7, 10, 19, 0.45);
    color: var(--text-secondary);
}

.radio-card:hover {
    border: 1px solid rgba(91, 192, 248, 0.5);
    background: rgba(7, 10, 19, 0.65);
    cursor: pointer;
}

.radio-card-check {
    display: none;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.radio-card-check i {
    font-size: 1.6rem;
    color: var(--accent);
}

.radio-card-icon img {
    width: 80px;
}

.radio-card .products-icons-grid__item svg {
    fill: rgba(245, 247, 255, 0.35);
}

.radio-card .radio-card-label {
    color: rgba(245, 247, 255, 0.5);
}

.radio-card .radio-card-label-description {
    color: rgba(245, 247, 255, 0.4);
}

.radio-card-label {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.radio-card-label-description {
    margin-top: 0.5rem;
    color: rgba(245, 247, 255, 0.5);
}

.radio-card.selected {
    border: 1px solid var(--accent);
    background: rgba(7, 10, 19, 0.7);
    box-shadow: 0 0 0 3px rgba(91, 192, 248, 0.15);
}

.radio-card.selected .radio-card-check {
    display: inline-flex;
}

.radio-card.selected svg {
    fill: var(--accent);
}

.radio-card.selected .radio-card-label {
    color: var(--text-primary);
}

.radio-card.selected .radio-card-label-description {
    color: var(--text-secondary);
}

/* ============================================================
   MODAL RADIO CARDS GROUP
   ============================================================ */
.modal-radio-card-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1rem;
}

.modal-radio-card-group .radio-card {
    width: 32%;
    margin-bottom: 1em;
    margin-top: 1em;
}

@media (min-width: 800px) {
    .modal-lg {
        max-width: 1100px !important;
    }

    .modal-radio-card-group {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .modal-radio-card-group .radio-card {
        width: 100% !important;
        margin-bottom: 1em;
        margin-top: 1em;
    }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-content {
    background: rgba(14, 20, 37, 0.97);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    color: var(--text-primary);
    backdrop-filter: blur(12px);
}

.modal-header {
    border-bottom: 1px solid var(--panel-border);
}

.modal-title {
    color: var(--text-primary);
}

.btn-close {
    filter: invert(1) opacity(0.6);
}

.btn-close:hover {
    filter: invert(1) opacity(1);
}

.modal-backdrop.show {
    opacity: 0.85;
    background-color: rgba(0, 0, 0, 0.6);
}

/* ============================================================
   ICON OPTIONS CIRCLE
   ============================================================ */
.icon-options-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(91, 192, 248, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-options-circle i {
    font-size: 26px;
    color: var(--accent);
}

/* ============================================================
   OR DIVIDER
   ============================================================ */
.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    width: 100%;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.or-divider span {
    margin: 0 12px;
    font-size: 12px;
    line-height: 1;
    color: rgba(245, 247, 255, 0.35);
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ============================================================
   MOBILE TOGGLE BUTTONS
   ============================================================ */
.mobile-toggle-open,
.mobile-toggle-close {
    display: none;
}

@media (max-width: 767.98px) {
    .mobile-toggle-open,
    .mobile-toggle-close {
        display: inline-flex;
    }

    .right-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    #left-main {
        padding-left: 1rem !important;
    }

    .container-fluid.h-100,
    .row.h-100 {
        height: auto !important;
        min-height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #left-main.left-column {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100svh !important;
        min-height: 100dvh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        padding: 12px 14px 120px !important;
        box-sizing: border-box;
        z-index: 1050;
        background: rgba(13, 18, 33, 0.98);
        backdrop-filter: blur(16px);
    }

    .mobile-toggle-open {
        bottom: 96px;
    }

    #step1Form > .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    #step1Form.row.g-3 {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    #step1Form > .col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .btn-group-custom {
        position: fixed !important;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 12px 14px;
        background: rgba(12, 17, 29, 0.95);
        box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.3);
        z-index: 1100;
        backdrop-filter: blur(8px);
    }

    #left-main.left-column.is-hidden {
        transform: translateX(-100%);
        pointer-events: none;
    }

    html.drawer-open,
    body.drawer-open {
        overflow: hidden !important;
        height: 100%;
    }

    .mobile-toggle-close {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 1100;
        align-items: center;
        justify-content: center;
        padding: 10px 12px;
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(14, 20, 37, 0.8);
        border-radius: 8px;
        color: var(--text-primary);
    }

    .mobile-toggle-open {
        position: fixed;
        bottom: 16px;
        right: 16px;
        z-index: 1040;
        padding: 12px 14px;
        font-size: 14px;
        border: 1px solid rgba(91, 192, 248, 0.3);
        background: rgba(14, 20, 37, 0.9);
        border-radius: 999px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        color: var(--text-primary);
    }

    .drawer-open .mobile-toggle-open {
        display: none !important;
    }
}

/* ============================================================
   COLUMN WIDTH OVERRIDES
   ============================================================ */
.col-md-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

.col-md-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
}

#left-main {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    min-width: 280px;
    overflow-y: auto;
}

@media (max-width: 1700px) and (min-width: 768px) {
    #left-main {
        flex: 0 0 35% !important;
        max-width: 35% !important;
    }

    .right-column {
        flex: 0 0 65% !important;
        max-width: 65% !important;
    }
}

/* ============================================================
   FORGE VIEWER
   ============================================================ */
#forgeViewer {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ============================================================
   LOADING OVERLAY
   ============================================================ */
#loadingOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.svg-wrapper {
    width: 308px;
    height: 308px;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    width: 217.68px;
    height: 217.62px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cls-1 {
    fill: #5bc0f8;
}

@keyframes animate-svg-fill {
    0%   { fill: transparent; }
    100% { fill: #5bc0f8; }
}

.svg-elem-1 { animation: animate-svg-fill 5s ease-in 0.8s both; }
.svg-elem-2 { animation: animate-svg-fill 5s ease-in 0.9s both; }
.svg-elem-3 { animation: animate-svg-fill 5s ease-in 1.0s both; }
.svg-elem-4 { animation: animate-svg-fill 5s ease-in 1.1s both; }

.top-logo svg {
    animation: none !important;
}

/* ============================================================
   SVG GRADIENT FILLS  (st0–st214, unchanged)
   ============================================================ */
.st0  { fill: #f5f7ff; }
.st1  { fill: url(#SVGID_1_); }
.st2  { fill: url(#SVGID_2_); }
.st3  { fill: url(#SVGID_3_); }
.st4  { fill: none; }
.st5  { fill: url(#SVGID_4_); }
.st6  { fill: url(#SVGID_5_); }
.st7  { fill: url(#SVGID_6_); }
.st8  { fill: url(#SVGID_7_); }
.st9  { fill: url(#SVGID_8_); }
.st10 { fill: url(#SVGID_9_); }
.st11 { fill: url(#SVGID_10_); }
.st12 { fill: url(#SVGID_11_); }
.st13 { fill: url(#SVGID_12_); }
.st14 { fill: url(#SVGID_13_); }
.st15 { fill: url(#SVGID_14_); }
.st16 { fill: url(#SVGID_15_); }
.st17 { fill: url(#SVGID_16_); }
.st18 { fill: url(#SVGID_17_); }
.st19 { fill: url(#SVGID_18_); }
.st20 { fill: url(#SVGID_19_); }
.st21 { fill: url(#SVGID_20_); }
.st22 { fill: url(#SVGID_21_); }
.st23 { fill: url(#SVGID_22_); }
.st24 { fill: url(#SVGID_23_); }
.st25 { fill: url(#SVGID_24_); }
.st26 { fill: url(#SVGID_25_); }
.st27 { fill: url(#SVGID_26_); }
.st28 { fill: url(#SVGID_27_); }
.st29 { fill: url(#SVGID_28_); }
.st30 { fill: url(#SVGID_29_); }
.st31 { fill: url(#SVGID_30_); }
.st32 { fill: url(#SVGID_31_); }
.st33 { fill: url(#SVGID_32_); }
.st34 { fill: url(#SVGID_33_); }
.st35 { fill: url(#SVGID_34_); }
.st36 { fill: url(#SVGID_35_); }
.st37 { fill: url(#SVGID_36_); }
.st38 { fill: url(#SVGID_37_); }
.st39 { fill: url(#SVGID_38_); }
.st40 { fill: url(#SVGID_39_); }
.st41 { fill: url(#SVGID_40_); }
.st42 { fill: url(#SVGID_41_); }
.st43 { fill: url(#SVGID_42_); }
.st44 { fill: url(#SVGID_43_); }
.st45 { fill: url(#SVGID_44_); }
.st46 { fill: url(#SVGID_45_); }
.st47 { fill: url(#SVGID_46_); }
.st48 { fill: url(#SVGID_47_); }
.st49 { fill: url(#SVGID_48_); }
.st50 { fill: url(#SVGID_49_); }
.st51 { fill: url(#SVGID_50_); }
.st52 { fill: url(#SVGID_51_); }
.st53 { fill: url(#SVGID_52_); }
.st54 { fill: url(#SVGID_53_); }
.st55 { fill: url(#SVGID_54_); }
.st56 { fill: url(#SVGID_55_); }
.st57 { fill: url(#SVGID_56_); }
.st58 { fill: url(#SVGID_57_); }
.st59 { fill: url(#SVGID_58_); }
.st60 { fill: url(#SVGID_59_); }
.st61 { fill: url(#SVGID_60_); }
.st62 { fill: url(#SVGID_61_); }
.st63 { fill: url(#SVGID_62_); }
.st64 { fill: url(#SVGID_63_); }
.st65 { fill: url(#SVGID_64_); }
.st66 { fill: url(#SVGID_65_); }
.st67 { fill: url(#SVGID_66_); }
.st68 { fill: url(#SVGID_67_); }
.st69 { fill: url(#SVGID_68_); }
.st70 { fill: url(#SVGID_69_); }
.st71 { fill: url(#SVGID_70_); }
.st72 { fill: url(#SVGID_71_); }
.st73 { fill: url(#SVGID_72_); }
.st74 { fill: url(#SVGID_73_); }
.st75 { fill: url(#SVGID_74_); }
.st76 { fill: url(#SVGID_75_); }
.st77 { fill: url(#SVGID_76_); }
.st78 { fill: url(#SVGID_77_); }
.st79 { fill: url(#SVGID_78_); }
.st80 { fill: url(#SVGID_79_); }
.st81 { fill: url(#SVGID_80_); }
.st82 { fill: url(#SVGID_81_); }
.st83 { fill: url(#SVGID_82_); }
.st84 { fill: url(#SVGID_83_); }
.st85 { fill: url(#SVGID_84_); }
.st86 { fill: url(#SVGID_85_); }
.st87 { fill: url(#SVGID_86_); }
.st88 { fill: url(#SVGID_87_); }
.st89 { fill: url(#SVGID_88_); }
.st90 { fill: url(#SVGID_89_); }
.st91 { fill: url(#SVGID_90_); }
.st92 { fill: url(#SVGID_91_); }
.st93 { fill: url(#SVGID_92_); }
.st94 { fill: url(#SVGID_93_); }
.st95 { fill: url(#SVGID_94_); }
.st96 { fill: url(#SVGID_95_); }
.st97 { fill: url(#SVGID_96_); }
.st98 { fill: url(#SVGID_97_); }
.st99 { fill: url(#SVGID_98_); }
.st100 { fill: url(#SVGID_99_); }
.st101 { fill: url(#SVGID_100_); }
.st102 { fill: url(#SVGID_101_); }
.st103 { fill: url(#SVGID_102_); }
.st104 { fill: url(#SVGID_103_); }
.st105 { fill: url(#SVGID_104_); }
.st106 { fill: url(#SVGID_105_); }
.st107 { fill: url(#SVGID_106_); }
.st108 { fill: url(#SVGID_107_); }
.st109 { fill: url(#SVGID_108_); }
.st110 { fill: url(#SVGID_109_); }
.st111 { fill: url(#SVGID_110_); }
.st112 { fill: url(#SVGID_111_); }
.st113 { fill: url(#SVGID_112_); }
.st114 { fill: url(#SVGID_113_); }
.st115 { fill: url(#SVGID_114_); }
.st116 { fill: url(#SVGID_115_); }
.st117 { fill: url(#SVGID_116_); }
.st118 { fill: url(#SVGID_117_); }
.st119 { fill: url(#SVGID_118_); }
.st120 { fill: url(#SVGID_119_); }
.st121 { fill: url(#SVGID_120_); }
.st122 { fill: url(#SVGID_121_); }
.st123 { fill: url(#SVGID_122_); }
.st124 { fill: url(#SVGID_123_); }
.st125 { fill: url(#SVGID_124_); }
.st126 { fill: url(#SVGID_125_); }
.st127 { fill: url(#SVGID_126_); }
.st128 { fill: url(#SVGID_127_); }
.st129 { fill: url(#SVGID_128_); }
.st130 { fill: url(#SVGID_129_); }
.st131 { fill: url(#SVGID_130_); }
.st132 { fill: url(#SVGID_131_); }
.st133 { fill: url(#SVGID_132_); }
.st134 { fill: url(#SVGID_133_); }
.st135 { fill: url(#SVGID_134_); }
.st136 { fill: url(#SVGID_135_); }
.st137 { fill: url(#SVGID_136_); }
.st138 { fill: url(#SVGID_137_); }
.st139 { fill: url(#SVGID_138_); }
.st140 { fill: url(#SVGID_139_); }
.st141 { fill: url(#SVGID_140_); }
.st142 { fill: url(#SVGID_141_); }
.st143 { fill: url(#SVGID_142_); }
.st144 { fill: url(#SVGID_143_); }
.st145 { fill: url(#SVGID_144_); }
.st146 { fill: url(#SVGID_145_); }
.st147 { fill: url(#SVGID_146_); }
.st148 { fill: url(#SVGID_147_); }
.st149 { fill: url(#SVGID_148_); }
.st150 { fill: url(#SVGID_149_); }
.st151 { fill: url(#SVGID_150_); }
.st152 { fill: url(#SVGID_151_); }
.st153 { fill: url(#SVGID_152_); }
.st154 { fill: url(#SVGID_153_); }
.st155 { fill: url(#SVGID_154_); }
.st156 { fill: url(#SVGID_155_); }
.st157 { fill: url(#SVGID_156_); }
.st158 { fill: url(#SVGID_157_); }
.st159 { fill: url(#SVGID_158_); }
.st160 { fill: url(#SVGID_159_); }
.st161 { fill: url(#SVGID_160_); }
.st162 { fill: url(#SVGID_161_); }
.st163 { fill: url(#SVGID_162_); }
.st164 { fill: url(#SVGID_163_); }
.st165 { fill: url(#SVGID_164_); }
.st166 { fill: url(#SVGID_165_); }
.st167 { fill: url(#SVGID_166_); }
.st168 { fill: url(#SVGID_167_); }
.st169 { fill: url(#SVGID_168_); }
.st170 { fill: url(#SVGID_169_); }
.st171 { fill: url(#SVGID_170_); }
.st172 { fill: url(#SVGID_171_); }
.st173 { fill: url(#SVGID_172_); }
.st174 { fill: url(#SVGID_173_); }
.st175 { fill: url(#SVGID_174_); }
.st176 { fill: url(#SVGID_175_); }
.st177 { fill: url(#SVGID_176_); }
.st178 { fill: url(#SVGID_177_); }
.st179 { fill: url(#SVGID_178_); }
.st180 { fill: url(#SVGID_179_); }
.st181 { fill: url(#SVGID_180_); }
.st182 { fill: url(#SVGID_181_); }
.st183 { fill: url(#SVGID_182_); }
.st184 { fill: url(#SVGID_183_); }
.st185 { fill: url(#SVGID_184_); }
.st186 { fill: url(#SVGID_185_); }
.st187 { fill: url(#SVGID_186_); }
.st188 { fill: url(#SVGID_187_); }
.st189 { fill: url(#SVGID_188_); }
.st190 { fill: url(#SVGID_189_); }
.st191 { fill: url(#SVGID_190_); }
.st192 { fill: url(#SVGID_191_); }
.st193 { fill: url(#SVGID_192_); }
.st194 { fill: url(#SVGID_193_); }
.st195 { fill: url(#SVGID_194_); }
.st196 { fill: url(#SVGID_195_); }
.st197 { fill: url(#SVGID_196_); }
.st198 { fill: url(#SVGID_197_); }
.st199 { fill: url(#SVGID_198_); }
.st200 { fill: url(#SVGID_199_); }
.st201 { fill: url(#SVGID_200_); }
.st202 { fill: url(#SVGID_201_); }
.st203 { fill: url(#SVGID_202_); }
.st204 { fill: url(#SVGID_203_); }
.st205 { fill: url(#SVGID_204_); }
.st206 { fill: url(#SVGID_205_); }
.st207 { fill: url(#SVGID_206_); }
.st208 { fill: url(#SVGID_207_); }
.st209 { fill: url(#SVGID_208_); }
.st210 { fill: url(#SVGID_209_); }
.st211 { fill: url(#SVGID_210_); }
.st212 { fill: url(#SVGID_211_); }
.st213 { fill: url(#SVGID_212_); }
.st214 { fill: url(#SVGID_213_); }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.spinner-border {
    border-color: rgba(91, 192, 248, 0.25);
    border-top-color: var(--accent);
}

.badge.bg-secondary {
    background-color: rgba(91, 192, 248, 0.15) !important;
    color: var(--accent);
    border: 1px solid rgba(91, 192, 248, 0.25);
}

.text-muted,
.text-secondary {
    color: var(--text-secondary) !important;
}

.bg-light {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.display-none { display: none !important; }
.hidden       { display: none !important; }

.button-spinner {
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 6px;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* width helpers used inline in other-index */
.width-40 { width: 40%; }
.width-10 { width: 10%; }
.width-90 { width: 90%; }

/* pdf spinner */
#pdf-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* radio pdf preview */
#radio-div-master label .text-center {
    position: relative;
    min-height: 180px;
}

#guiviewer3d-toolbar {
    display: none !important;
}

/* fixed-inline helper */
.fixed-inline {
    display: inline-flex;
    align-items: center;
}