@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Controls/Admin/Trades/SingleTradeInfoAdminComponent.razor.rz.scp.css */

.trade-info-card[b-obojt6c56i] {
    background-color: #ffffff; /* White card background */
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Softer shadow for light theme */
    border: 1px solid #dee2e6; /* Light border for the card */
}

.card-header[b-obojt6c56i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef; /* Lighter separator line */
}

.symbol-container[b-obojt6c56i] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-icon[b-obojt6c56i] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.pair[b-obojt6c56i] {
    font-size: 1.4em;
    font-weight: bold;
    color: #212529; /* Darker text for pair name */
}

.status[b-obojt6c56i] {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

    .status.open[b-obojt6c56i] {
        background-color: #007bff; /* Blue for open */
        color: #ffffff;
    }

    .status.closed[b-obojt6c56i] {
        background-color: #6c757d; /* Gray for closed */
        color: #ffffff;
    }

.card-body[b-obojt6c56i] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-obojt6c56i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
}

.label[b-obojt6c56i] {
    color: #6c757d; /* Muted gray for labels */
}

.value[b-obojt6c56i] {
    color: #343a40; /* Dark gray for values */
    font-weight: 500;
}

.type-buy[b-obojt6c56i] {
    color: #198754; /* Green for buy (Bootstrap success green) */
    font-weight: bold;
}

.type-sell[b-obojt6c56i] {
    color: #dc3545; /* Red for sell (Bootstrap danger red) */
    font-weight: bold;
}

.pnl .label[b-obojt6c56i] {
    font-weight: bold;
}

.pnl-positive[b-obojt6c56i] {
    color: #198754; /* Green for profit */
    font-weight: bold;
}

.pnl-negative[b-obojt6c56i] {
    color: #dc3545; /* Red for loss */
    font-weight: bold;
}

.card-footer[b-obojt6c56i] {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef; /* Lighter separator line */
    text-align: right; /* Aligns button to the right by default */
}

.form-group[b-obojt6c56i] {
    margin-bottom: 10px;
    text-align: left; /* Align label and input to the left */
}

.form-label[b-obojt6c56i] {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #495057; /* Darker gray for form labels */
}

.form-input[b-obojt6c56i] {
    width: calc(100% - 18px); /* Full width minus padding and border */
    padding: 8px;
    border: 1px solid #ced4da; /* Standard input border */
    border-radius: 4px;
    font-size: 0.95em;
    background-color: #fff;
    color: #495057;
}

    .form-input[b-obojt6c56i]::placeholder {
        color: #adb5bd; /* Placeholder text color */
    }

.btn-close[b-obojt6c56i] {
    background-color: #dc3545; /* Red for close button */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

    .btn-close:hover[b-obojt6c56i] {
        background-color: #c82333; /* Darker red on hover */
    }

    .btn-close:disabled[b-obojt6c56i] {
        background-color: #adb5bd;
        cursor: not-allowed;
    }

#trade-closed-message[b-obojt6c56i] {
    text-align: center;
    color: #6c757d; /* Muted text color */
    font-style: italic;
    margin-top: 10px;
}
/* /Controls/Common/AccessDenied.razor.rz.scp.css */

.card[b-ygtq0plred] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #e1e5e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.card-icon[b-ygtq0plred] {
    margin-bottom: 24px;
}

    .card-icon img[b-ygtq0plred] {
        width: 80px;
        height: 80px;
    }

.card-title[b-ygtq0plred] {
    font-size: 28px;
    font-weight: 700;
    color: #d9534f; /* A soft red for warning */
    margin: 0 0 16px;
}

.card-message[b-ygtq0plred] {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
    color: #6c757d;
}

.card-button[b-ygtq0plred] {
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .card-button:hover[b-ygtq0plred] {
        background-color: #5a6268;
        transform: translateY(-2px);
    }
/* /Controls/Common/CoinsAndBalanceDropdownComponent.razor.rz.scp.css */
/*! CSS Used from: Embedded */
.css-v6puf8 input[b-9p17i1766o] {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    width: 100%;
}

    .css-v6puf8 input[b-9p17i1766o]::placeholder {
        color: rgba(255, 255, 255, 0.5);
        font-size: 16px;
        line-height: 18px;
        font-weight: 600;
    }

.css-bp1l2g[b-9p17i1766o] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-bp1l2g .search_box[b-9p17i1766o] {
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        background: rgb(30, 33, 36);
        padding: 6px;
        border: none;
        outline: none;
        margin: 0px !important;
    }

        .css-bp1l2g .search_box div[b-9p17i1766o] {
            border: none !important;
            outline: none !important;
            margin: 0px !important;
        }

    .css-bp1l2g .scrollable[b-9p17i1766o] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-bp1l2g .scrollable div[b-9p17i1766o] {
            cursor: pointer;
            transition: 100ms ease-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-bp1l2g .scrollable div .asset_item[b-9p17i1766o] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-bp1l2g .scrollable div .asset_item_right[b-9p17i1766o] {
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                gap: 12px;
            }

                .css-bp1l2g .scrollable div .asset_item_right p:first-of-type[b-9p17i1766o] {
                    font-size: 14px;
                    white-space: nowrap;
                    color: rgb(255, 255, 255);
                    line-height: 18px;
                    font-weight: 500;
                }

                .css-bp1l2g .scrollable div .asset_item_right p:last-of-type[b-9p17i1766o] {
                    font-size: 14px;
                    white-space: nowrap;
                    color: rgba(255, 255, 255, 0.5);
                    line-height: 18px;
                    font-weight: 600;
                }

            .css-bp1l2g .scrollable div:hover[b-9p17i1766o] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-bp1l2g .scrollable div.selected[b-9p17i1766o] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-bp1l2g .scrollable div p[b-9p17i1766o] {
                font-size: 14px;
                white-space: nowrap;
                color: rgb(255, 255, 255);
                line-height: 18px;
                font-weight: 500;
            }

@@media (max-width: 768px) {
    .css-bp1l2g .scrollable[b-9p17i1766o] {
        padding-bottom: 200px;
    }
}

.css-g70r1a[b-9p17i1766o] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}

    .css-g70r1a img[b-9p17i1766o] {
        width: 16px;
        height: 16px;
    }

    .css-g70r1a input[b-9p17i1766o] {
        line-height: 18px;
        color: rgb(255, 255, 255);
        border: none;
        outline: none;
        background: transparent;
        font-weight: 500;
        width: 100%;
    }

        .css-g70r1a input[b-9p17i1766o]::placeholder {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

.css-cg9ir8[b-9p17i1766o] {
    display: none;
    position: absolute;
    left: 0px;
    max-width: 80%;
    min-width: 80%;
    z-index: 101;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 200ms ease-out, opacity 100ms ease-out;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
    margin-top: 4px;
    border-radius: 8px;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

    .css-cg9ir8.full[b-9p17i1766o] {
        max-width: 100%;
        width: 100%;
    }

.asset-item[b-9p17i1766o] {
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .asset-item:hover[b-9p17i1766o] {
        background-color: #f5f5f5;
    }

.search_box input[b-9p17i1766o] {
    width: 100%;
    border: none;
    outline: none;
    padding: 0.5rem;
}

.scrollable[b-9p17i1766o] {
    max-height: 400px;
    overflow-y: auto;
}
.loading-indicator[b-9p17i1766o] {
    padding: 1rem;
    text-align: center;
    color: #666;
}

.error-message[b-9p17i1766o] {
    padding: 1rem;
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 1rem;
}
/* /Controls/Common/ImportAssets.razor.rz.scp.css */

.dialog-overlay[b-ty7ep7n1mg] {
    /* This could be used for a modal effect, but for simplicity,
       we're directly styling the dialog on a dark page.
       If it were a true modal, it might have:
       position: fixed; top: 0; left: 0; width: 100%; height: 100%;
       background: rgba(0,0,0,0.5);
       display: flex; justify-content: center; align-items: center;
    */
}

.dialog[b-ty7ep7n1mg] {
    background-color: #1E1E1E; /* Darker dialog background */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dialog-header[b-ty7ep7n1mg] {
    padding: 20px 24px;
    border-bottom: 1px solid #333333; /* Subtle separator */
}

    .dialog-header h2[b-ty7ep7n1mg] {
        margin: 0;
        font-size: 20px;
        color: #FFFFFF;
        text-align: center;
    }

.dialog-body[b-ty7ep7n1mg] {
    padding: 0px 24px 16px;
    flex-grow: 1;
}

.search-bar-container[b-ty7ep7n1mg] {
    display: flex;
    align-items: center;
    background-color: #2C2C2C; /* Input background */
    border-radius: 8px;
    padding: 0 12px;
    margin: 16px 0;
    border: 1px solid #333333;
}

    .search-bar-container:focus-within[b-ty7ep7n1mg] {
        border-color: #007AFF;
    }

.search-icon-img[b-ty7ep7n1mg] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    opacity: 0.6;
}

#assetSearchInput[b-ty7ep7n1mg] {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: #E0E0E0;
    padding: 12px 0;
    font-size: 16px;
    outline: none;
}

    #assetSearchInput[b-ty7ep7n1mg]::placeholder {
        color: #757575; /* Lighter placeholder text */
    }

.asset-list[b-ty7ep7n1mg] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px; /* Or adjust as needed */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #4F4F4F #2C2C2C;
}

    /* For Webkit browsers like Chrome, Safari */
    .asset-list[b-ty7ep7n1mg]::-webkit-scrollbar {
        width: 8px;
    }

    .asset-list[b-ty7ep7n1mg]::-webkit-scrollbar-track {
        background: #2C2C2C;
        border-radius: 4px;
    }

    .asset-list[b-ty7ep7n1mg]::-webkit-scrollbar-thumb {
        background-color: #4F4F4F;
        border-radius: 4px;
        border: 2px solid #2C2C2C;
    }


.asset-item[b-ty7ep7n1mg] {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #2A2A2A; /* Subtle separator for items */
}

    .asset-item:last-child[b-ty7ep7n1mg] {
        border-bottom: none;
    }

.asset-icon[b-ty7ep7n1mg] {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    border-radius: 50%; /* Circular icons */
}

.asset-details[b-ty7ep7n1mg] {
    flex-grow: 1;
}

.asset-name[b-ty7ep7n1mg] {
    display: block;
    font-size: 16px;
    color: #F0F0F0;
}

.asset-symbol[b-ty7ep7n1mg] {
    display: block;
    font-size: 13px;
    color: #888888; /* Muted color for symbol */
}

.button[b-ty7ep7n1mg] {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .button:active[b-ty7ep7n1mg] {
        transform: scale(0.98);
    }

.asset-action-button[b-ty7ep7n1mg] {
    background-color: #2C2C2C;
    color: #007AFF; /* Accent color for add text/icon */
    border: 1px solid #007AFF;
    min-width: 70px; /* Ensure buttons have a decent width */
    text-align: center;
}

    .asset-action-button img[b-ty7ep7n1mg] {
        width: 16px;
        height: 16px;
    }

    .asset-action-button.added[b-ty7ep7n1mg] {
        background-color: #007AFF; /* Green for added state */
        color: #FFFFFF;
        border-color: #007AFF;
    }


.dialog-footer[b-ty7ep7n1mg] {
    padding: 20px 24px;
    border-top: 1px solid #333333; /* Subtle separator */
    display: flex;
    justify-content: flex-end; /* Align button to the right */
}

.button.primary[b-ty7ep7n1mg] {
    background-color: #007AFF; /* Primary action blue */
    color: white;
    padding: 12px 20px;
    font-size: 16px;
}

    .button.primary:hover[b-ty7ep7n1mg] {
        background-color: #0056b3; /* Darker blue on hover */
    }
/* /Controls/Common/SelectCountryDropDownComponent.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-jhp2bj[b-t9akukt1d0] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-jhp2bj .search_box[b-t9akukt1d0] {
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        padding: 6px;
        border: none;
        outline: none;
        background: rgb(30, 33, 36) !important;
        margin: 0px !important;
    }

        .css-jhp2bj .search_box div[b-t9akukt1d0] {
            border: none !important;
            outline: none !important;
            margin: 0px !important;
        }

    .css-jhp2bj .scrollable[b-t9akukt1d0] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-jhp2bj .scrollable div[b-t9akukt1d0] {
            cursor: pointer;
            transition: 100ms ease-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-jhp2bj .scrollable div .country_item[b-t9akukt1d0] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-jhp2bj .scrollable div:hover[b-t9akukt1d0] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div.selected[b-t9akukt1d0] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div p[b-t9akukt1d0] {
                font-size: 14px;
                white-space: nowrap;
                color: rgb(255, 255, 255);
                line-height: 18px;
                font-weight: 500;
            }

@media (max-width: 768px) {
    .css-jhp2bj .scrollable[b-t9akukt1d0] {
        padding-bottom: 200px;
    }
}

.css-g70r1a[b-t9akukt1d0] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}

    .css-g70r1a img[b-t9akukt1d0] {
        width: 16px;
        height: 16px;
    }

    .css-g70r1a input[b-t9akukt1d0] {
        line-height: 18px;
        color: rgb(255, 255, 255);
        border: none;
        outline: none;
        background: transparent;
        font-weight: 500;
        width: 100%;
    }

        .css-g70r1a input[b-t9akukt1d0]::placeholder {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

.css-cg9ir8[b-t9akukt1d0] {
    display: block;
    position: absolute;
    left: 0px;
    max-width: 80%;
    min-width: 80%;
    z-index: 101;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 200ms ease-out, opacity 100ms ease-out;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
    margin-top: 4px;
    border-radius: 8px;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}
/* /Controls/Common/SingleTradeInfo.razor.rz.scp.css */

.trade-info-card[b-ht618njd98] {
    background-color: #1e1e1e; /* Slightly lighter dark shade for the card */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #333; /* Subtle border */
}

.card-header[b-ht618njd98] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444; /* Separator */
}

/* Added container for symbol and icon */
.symbol-container[b-ht618njd98] {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

/* Style for the SVG icon */
.crypto-icon[b-ht618njd98] {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    vertical-align: middle; /* Helps align with text */
}

.pair[b-ht618njd98] {
    font-size: 1.4em;
    font-weight: bold;
    color: #ffffff;
}

.status[b-ht618njd98] {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

    .status.open[b-ht618njd98] {
        background-color: #007bff; /* Blue for open */
        color: #ffffff;
    }

    .status.closed[b-ht618njd98] {
        background-color: #6c757d; /* Gray for closed */
        color: #ffffff;
    }

.card-body[b-ht618njd98] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Spacing between rows */
}

.detail-row[b-ht618njd98] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
}

.label[b-ht618njd98] {
    color: #aaa; /* Lighter gray for labels */
}

.value[b-ht618njd98] {
    color: #e0e0e0;
    font-weight: 500;
}

.type-buy[b-ht618njd98] {
    color: #28a745; /* Green for buy */
    font-weight: bold;
}

.type-sell[b-ht618njd98] {
    color: #dc3545; /* Red for sell */
    font-weight: bold;
}

.pnl .label[b-ht618njd98] {
    font-weight: bold;
}

.pnl-positive[b-ht618njd98] {
    color: #28a745; /* Green for profit */
    font-weight: bold;
}

.pnl-negative[b-ht618njd98] {
    color: #dc3545; /* Red for loss */
    font-weight: bold;
}

.card-footer[b-ht618njd98] {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444; /* Separator */
    text-align: right;
}

.btn-close[b-ht618njd98] {
    background-color: #dc3545; /* Red for close button */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

    .btn-close:hover[b-ht618njd98] {
        background-color: #c82333; /* Darker red on hover */
    }
/* /Controls/Common/ToastComponent.razor.rz.scp.css */
.mytoast[b-c6x044ug8z] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* Start as a circle */
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    background: var(--neon-cyan);
    color: #000;
    border-radius: 50%;
    opacity: 0;
    z-index: 999999;
    overflow: hidden;
    animation: toastEntrance-b-c6x044ug8z 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

    .mytoast.exiting[b-c6x044ug8z] {
        animation: toastExit-b-c6x044ug8z 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

.mytoast-content[b-c6x044ug8z] {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mytoast-heading[b-c6x044ug8z] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.mytoast-message[b-c6x044ug8z] {
    margin: 2px 0;
    font-size: 14px;
}

.mytoast-close[b-c6x044ug8z] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 1px;
}

.mytoast-progress[b-c6x044ug8z] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar-b-c6x044ug8z 5s linear forwards;
}


/* Reveal content once fully expanded */
.mytoast.expanded .mytoast-content[b-c6x044ug8z] {
    opacity: 1;
}

/* Entrance Animation: circle expands to a rectangle */
@keyframes toastEntrance-b-c6x044ug8z {
    0% {
        transform: translateX(-50%) translateY(-100%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 0;
    }

    40% {
        transform: translateX(-50%) translateY(20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        width: 300px;
        height: max-content;
        border-radius: 0.5rem;
        opacity: 1;
    }
}

@keyframes toastExit-b-c6x044ug8z {
    0% {
        transform: translateX(-50%) translateY(20px);
        width: 300px;
        border-radius: 0.5rem;
        opacity: 1;
    }

    40% {
        transform: translateX(-50%) translateY(20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}

/* Progress bar animation */
@keyframes progressBar-b-c6x044ug8z {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Success Variation with Glow */
.mytoast-success[b-c6x044ug8z] {
    background: var(--neon-cyan, #d1e7dd);
    color: #000;
    box-shadow: 0 0 12px var(--neon-cyan, #d1e7dd);
}

    .mytoast-success .mytoast-progress[b-c6x044ug8z] {
        background: linear-gradient(to right, var(--neon-cyan, #00f7ff), #00d1e0);
    }

/* Danger Variation with Glow */
.mytoast-danger[b-c6x044ug8z] {
    background: #f8d7da; /* red-500 */
    color: #fff;
    box-shadow: 0 0 12px #f8d7da;
}

    .mytoast-danger .mytoast-progress[b-c6x044ug8z] {
        background: linear-gradient(to right, #ef4444, #f87171);
    }

/* Info Variation with Glow */
.mytoast-info[b-c6x044ug8z] {
    background: #cff4fc; /* bright blue */
    color: #fff;
    box-shadow: 0 0 12px #cff4fc;
}

    .mytoast-info .mytoast-progress[b-c6x044ug8z] {
        background: linear-gradient(to right, #0ea5e9, #38bdf8);
    }

/* Warning Variation with Glow */
.mytoast-warning[b-c6x044ug8z] {
    background: #fff3cd; /* amber */
    color: #000;
    box-shadow: 0 0 12px #fff3cd;
}

    .mytoast-warning .mytoast-progress[b-c6x044ug8z] {
        background: linear-gradient(to right, #f59e0b, #fbbf24);
    }
/* /Controls/Dashboard/BalanceCard.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-1ov6cn9 .balance_card_bottom[b-9vlxlcgsov] {
    margin-top: 44px;
    overflow: scroll;
    position: relative;
    padding-bottom: 20px;
}

.css-1ov6cn9 .balance_card_bottom_title[b-9vlxlcgsov] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 18px;
    font-weight: 700;
    border-radius: 4px;
}

.css-bqmfuh[b-9vlxlcgsov] {
    display: grid;
    padding-top: 12px;
}

    .css-bqmfuh .account_summary_button[b-9vlxlcgsov] {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        outline: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: 150ms ease-out;
    }

        .css-bqmfuh .account_summary_button:hover[b-9vlxlcgsov] {
            color: white;
            background-color: rgb(49, 172, 238);
        }

    .css-bqmfuh .account_summary_new_item[b-9vlxlcgsov] {
        font-size: 14px;
        color: rgb(255, 255, 255);
        line-height: 18px;
        font-weight: 500;
        cursor: pointer;
        display: grid;
        grid-template-columns: 120px 150px 100px;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        transition: 150ms ease-out;
        box-sizing: border-box;
        padding: 6px 0px;
        height: 52px;
    }

        .css-bqmfuh .account_summary_new_item span[b-9vlxlcgsov] {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            gap: 4px;
        }

            .css-bqmfuh .account_summary_new_item span img[b-9vlxlcgsov] {
                height: 18px;
                width: 18px;
            }

        .css-bqmfuh .account_summary_new_item .title[b-9vlxlcgsov] {
            white-space: break-spaces;
            font-weight: 600;
        }

        .css-bqmfuh .account_summary_new_item .value[b-9vlxlcgsov] {
            color: rgba(255, 255, 255, 0.75);
            white-space: nowrap;
            width: 100%;
            max-width: max-content;
        }

        .css-bqmfuh .account_summary_new_item:not(:last-of-type)[b-9vlxlcgsov] {
            border-bottom: 1px solid rgba(255, 255, 255, 0.024);
        }

        .css-bqmfuh .account_summary_new_item:hover[b-9vlxlcgsov] {
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.05);
            border-color: transparent;
        }

        .css-bqmfuh .account_summary_new_item:hover[b-9vlxlcgsov] {
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.05);
            border-color: transparent;
        }

@@media screen and (max-width: 550px) {
    .css-bqmfuh .account_summary_new_item[b-9vlxlcgsov] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        width: 100%;
        padding: 12px 6px;
    }

    .css-bqmfuh .account_summary_button[b-9vlxlcgsov] {
        display: none;
    }

    .css-bqmfuh .account_summary_new_item:hover .value[b-9vlxlcgsov] {
        display: none;
    }

    .css-bqmfuh .account_summary_new_item:hover .account_summary_button[b-9vlxlcgsov] {
        display: block;
    }
}

/* /Controls/Dashboard/CategoryComponent.razor.rz.scp.css */
/*! CSS Used from: Embedded */
.css-sai4f1 .account_card_bottom[b-lqakk1aju1] {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.css-1d4c5kz[b-lqakk1aju1] {
    height: 100%;
    width: 100%;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.024);
    box-sizing: border-box;
    max-width: 470px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 56px;
}

    .css-1d4c5kz .account_section_title[b-lqakk1aju1] {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.48);
        line-height: 18px;
        font-weight: 600;
    }

    .css-1d4c5kz .categories_section[b-lqakk1aju1] {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 16px;
    }

    .css-1d4c5kz .progress_wrapper span[b-lqakk1aju1] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

        .css-1d4c5kz .progress_wrapper span p:nth-of-type(2)[b-lqakk1aju1] {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            color: white;
        }

    .css-1d4c5kz .progress_section[b-lqakk1aju1] {
        position: relative;
        height: 12px;
        width: 100%;
        background: transparent;
        margin-top: 16px;
    }

        .css-1d4c5kz .progress_section .progress_bar[b-lqakk1aju1] {
            position: absolute;
            left: 0px;
            width: 100%;
            height: 100%;
            border-radius: 32px;
            background-color: rgb(78, 190, 150);
            opacity: 0.5;
        }

        .css-1d4c5kz .progress_section .progress[b-lqakk1aju1] {
            position: absolute;
            left: 0px;
            width: 100%;
            height: 100%;
            border-radius: 32px;
            background-color: rgb(78, 190, 150);
            transition: width 300ms ease-in;
        }

    .css-1d4c5kz .signal_strength_wrapper .signal_wrapper[b-lqakk1aju1] {
        display: flex;
        gap: 4px;
        margin-top: 16px;
    }

    .css-1d4c5kz .signal_strength_wrapper span[b-lqakk1aju1] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

        .css-1d4c5kz .signal_strength_wrapper span p:nth-of-type(2)[b-lqakk1aju1] {
            font-size: 16px;
            line-height: 24px;
            font-weight: 600;
        }

            .css-1d4c5kz .signal_strength_wrapper span p:nth-of-type(2).red[b-lqakk1aju1] {
                color: rgb(255, 51, 68);
            }

    .css-1d4c5kz .signal_strength_wrapper .signal_wrapper .signal_bar[b-lqakk1aju1] {
        height: 12px;
        width: 100%;
        transition: 300ms ease-in;
    }

        .css-1d4c5kz .signal_strength_wrapper .signal_wrapper .signal_bar:first-of-type[b-lqakk1aju1] {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .css-1d4c5kz .signal_strength_wrapper .signal_wrapper .signal_bar:last-of-type[b-lqakk1aju1] {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

@media screen and (max-width: 1274px) {
    .css-1d4c5kz[b-lqakk1aju1] {
        gap: 56px;
        border-radius: 12px;
        margin-top: 8px;
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .css-1d4c5kz .categories_wrapper[b-lqakk1aju1] {
        display: none;
    }
}
/*! CSS Used from: Embedded */
.css-sai4f1 .account_card_bottom[b-lqakk1aju1] {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.css-1d4c5kz[b-lqakk1aju1] {
    height: 100%;
    width: 100%;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.024);
    box-sizing: border-box;
    max-width: 470px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 56px;
}

    .css-1d4c5kz .account_section_title[b-lqakk1aju1] {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.48);
        line-height: 18px;
        font-weight: 600;
    }

    .css-1d4c5kz .categories_section[b-lqakk1aju1] {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 16px;
    }

    .css-1d4c5kz .progress_wrapper span[b-lqakk1aju1] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

        .css-1d4c5kz .progress_wrapper span p:nth-of-type(2)[b-lqakk1aju1] {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            color: white;
        }

    .css-1d4c5kz .progress_section[b-lqakk1aju1] {
        position: relative;
        height: 12px;
        width: 100%;
        background: transparent;
        margin-top: 16px;
    }

        .css-1d4c5kz .progress_section .progress_bar[b-lqakk1aju1] {
            position: absolute;
            left: 0px;
            width: 100%;
            height: 100%;
            border-radius: 32px;
            background-color: rgb(78, 190, 150);
            opacity: 0.5;
        }

        .css-1d4c5kz .progress_section .progress[b-lqakk1aju1] {
            position: absolute;
            left: 0px;
            width: 100%;
            height: 100%;
            border-radius: 32px;
            background-color: rgb(78, 190, 150);
            transition: width 300ms ease-in;
        }

    .css-1d4c5kz .signal_strength_wrapper .signal_wrapper[b-lqakk1aju1] {
        display: flex;
        gap: 4px;
        margin-top: 16px;
    }

    .css-1d4c5kz .signal_strength_wrapper span[b-lqakk1aju1] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

        .css-1d4c5kz .signal_strength_wrapper span p:nth-of-type(2)[b-lqakk1aju1] {
            font-size: 16px;
            line-height: 24px;
            font-weight: 600;
        }

            .css-1d4c5kz .signal_strength_wrapper span p:nth-of-type(2).red[b-lqakk1aju1] {
                color: rgb(255, 51, 68);
            }

    .css-1d4c5kz .signal_strength_wrapper .signal_wrapper .signal_bar[b-lqakk1aju1] {
        height: 12px;
        width: 100%;
        transition: 300ms ease-in;
    }

        .css-1d4c5kz .signal_strength_wrapper .signal_wrapper .signal_bar:first-of-type[b-lqakk1aju1] {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .css-1d4c5kz .signal_strength_wrapper .signal_wrapper .signal_bar:last-of-type[b-lqakk1aju1] {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

@media screen and (max-width: 1274px) {
    .css-1d4c5kz[b-lqakk1aju1] {
        gap: 56px;
        border-radius: 12px;
        margin-top: 8px;
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .css-1d4c5kz .categories_wrapper[b-lqakk1aju1] {
        display: none;
    }
}
/* /Controls/Dashboard/OpenTradeHistoryComponent.razor.rz.scp.css */
td.text-start[b-aq22p4djz1] {
    color: #fff;
}
tr:hover td[b-aq22p4djz1] {
    color: #aeacac !important;
}
/* /Controls/Dashboard/TradeAreaComponent.razor.rz.scp.css */
[b-e4gq7tfohs] .custom-range {
    /* Base reset */
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: transparent;
    cursor: pointer;
    outline: none;
    /* Rounded track with gradient */
    background: linear-gradient(90deg, rgba(40, 40, 60, 0.8) 0%, rgba(90, 70, 240, 0.6) 50%, rgba(40, 40, 60, 0.8) 100%);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(100, 80, 255, 0.2);
    border: none;
}

    /* WebKit Thumb (Chrome/Safari) */
    [b-e4gq7tfohs] .custom-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 23px;
        height: 23px;
        background: radial-gradient(circle, #00f7ff 30%, #0066ff 100%);
        border-radius: 50%;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 10px #00f7ff, 0 0 20px rgba(0, 247, 255, 0.5), inset 0 0 5px rgba(255, 255, 255, 0.8);
        border: none;
        transition: all 0.3s ease-out;
    }

    /* Firefox Thumb */
    [b-e4gq7tfohs] .custom-range::-moz-range-thumb {
        width: 23px;
        height: 23px;
        background: radial-gradient(circle, #00f7ff 30%, #0066ff 100%);
        border-radius: 50%;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 10px #00f7ff, 0 0 20px rgba(0, 247, 255, 0.5), inset 0 0 5px rgba(255, 255, 255, 0.8);
        border: none;
        transition: all 0.3s ease-out;
    }

    /* Progress fill (WebKit only) */
    [b-e4gq7tfohs] .custom-range::-webkit-slider-runnable-track {
        height: 5px;
        background: linear-gradient(90deg, rgba(0, 247, 255, 0.3) 0%, rgba(100, 80, 255, 0.7) 100%);
        border-radius: 10px;
    }

    /* Hover States */
    [b-e4gq7tfohs] .custom-range::-webkit-slider-thumb:hover,
    [b-e4gq7tfohs] .custom-range::-moz-range-thumb:hover {
        transform: scale(1.1);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 15px #00f7ff, 0 0 30px rgba(0, 247, 255, 0.7);
    }

    /* Active/Focus States */
    [b-e4gq7tfohs] .custom-range:active::-webkit-slider-thumb,
    [b-e4gq7tfohs] .custom-range:focus::-webkit-slider-thumb {
        background: radial-gradient(circle, #00f7ff 20%, #0066ff 120%);
        animation: thumb-pulse-b-e4gq7tfohs 1.5s infinite;
    }

    [b-e4gq7tfohs] .custom-range:active::-moz-range-thumb,
    [b-e4gq7tfohs] .custom-range:focus::-moz-range-thumb {
        background: radial-gradient(circle, #00f7ff 20%, #0066ff 120%);
        animation: thumb-pulse-b-e4gq7tfohs 1.5s infinite;
    }

@keyframes thumb-pulse-b-e4gq7tfohs {
    0% {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 10px #00f7ff;
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.4), 0 0 20px #00f7ff;
    }

    100% {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 0 10px #00f7ff;
    }
}

/* Optional: Floating bubble value indicator */
[b-e4gq7tfohs] .range-bubble {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    padding: 4px 12px;
    background: rgba(0, 10, 30, 0.7);
    color: #00f7ff;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    border: 1px solid rgba(0, 247, 255, 0.3);
    transform: translateY(-5px);
}
/* /Controls/Dashboard/TradeHistoryComponent.razor.rz.scp.css */
.nav-link[b-2obmlwbsjm], .disabled[b-2obmlwbsjm]{
    color: #fff
}
/* /Controls/Deposit/DepositAddress.razor.rz.scp.css */
/* Inner centered container (mimics site's content column) */
.container[b-3omsmjswrx] {
    width: 100%;
    max-width: 980px;
    padding: 18px;
}

/* Card */
.deposit-card[b-3omsmjswrx] {
    background: #eaf7eb; /* soft green */
    border: 3px solid #2f9140; /* bright green border */
    border-radius: 10px;
    padding: 28px 34px;
    box-shadow: 0 10px 24px rgba(47,145,64,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
    margin: 0 auto;
}

/* Instruction */
.deposit-instruction[b-3omsmjswrx] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #1f4f2f;
    margin-bottom: 22px;
    font-weight: 600;
}

.pin-emoji[b-3omsmjswrx] {
    font-size: 18px;
    margin-right: 6px;
}

/* QR Box */
.qr-wrapper[b-3omsmjswrx] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-box[b-3omsmjswrx] {
    width: 186px;
    height: 186px;
    border: 4px solid #2f9140;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(47,145,64,0.05);
}

    .qr-box img[b-3omsmjswrx] {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 6px
    }

/* Address label & field */
.field-row[b-3omsmjswrx] {
    margin-top: 12px;
}

label[b-3omsmjswrx] {
    display: block;
    font-size: 14px;
    color: #23355a;
    margin-bottom: 8px;
    font-weight: 600;
}

.address-row[b-3omsmjswrx] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.address-input[b-3omsmjswrx] {
    flex: 1;
    background: #fbfefb;
    border: 1px solid rgba(27,43,34,0.09);
    padding: 14px 16px;
    font-size: 15px;
    color: #1b2b3d;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* "Copy" button — visual only */
.copy-btn[b-3omsmjswrx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #2d323b;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: default; /* no JS — not clickable */
    min-width: 80px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

/* Warning box */
.warning[b-3omsmjswrx] {
    margin-top: 18px;
    background: #fff3cf;
    border: 1px solid #f2d38a;
    padding: 12px 14px;
    border-radius: 8px;
    color: #7c5d13;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Small screens: stack */
@media (max-width:520px) {
    .deposit-card[b-3omsmjswrx] {
        padding: 20px
    }

    .qr-box[b-3omsmjswrx] {
        width: 150px;
        height: 150px
    }

    .address-row[b-3omsmjswrx] {
        flex-direction: column;
        align-items: stretch
    }

    .copy-btn[b-3omsmjswrx] {
        width: 100%
    }

    .address-input[b-3omsmjswrx] {
        width: 100%
    }
}
/* /Controls/Deposit/NewDepositComponent.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-nncgg[b-extctylcvm] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-extctylcvm] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-1azirga label[b-extctylcvm] {
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.css-1azirga .select_wrapper[b-extctylcvm] {
    background: rgba(255, 255, 255, 0.024);
    border-radius: 8px;
    margin-top: 6px;
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: border 150ms ease-out;
    position: relative;
    height: 40px;
    min-width: 135px;
    width: 100%;
}

.css-1azirga select[b-extctylcvm] {
    appearance: none;
    width: 100%;
    border: none;
    outline: none;
    color: white;
    background: #1f2325;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga .select_wrapper:hover[b-extctylcvm] {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.css-v6puf8[b-extctylcvm] {
    width: 100%;
}

    .css-v6puf8 label[b-extctylcvm] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

        .css-v6puf8 label.divide[b-extctylcvm] {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            justify-content: space-between;
        }

    .css-v6puf8 .amountbox_wrapper[b-extctylcvm] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px solid transparent;
        position: relative;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
    }

        .css-v6puf8 .amountbox_wrapper:hover[b-extctylcvm] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-v6puf8 .amount_select[b-extctylcvm] {
        outline: none;
        border: none;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.05);
        padding: 6px;
        cursor: pointer;
        box-sizing: border-box;
        transition: background 150ms ease-out;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        height: 100%;
    }

        .css-v6puf8 .amount_select:hover[b-extctylcvm] {
            background: rgba(255, 255, 255, 0.024);
        }

        .css-v6puf8 .amount_select p[b-extctylcvm] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-v6puf8 .amount_select img[b-extctylcvm] {
            width: 16px;
            height: 16px;
        }

    .css-v6puf8 input[b-extctylcvm] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        font-size: 16px;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
    }

        .css-v6puf8 input[b-extctylcvm]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
            line-height: 18px;
            font-weight: 600;
        }

.css-8ndowl[b-extctylcvm] {
    position: fixed;
    z-index: 100;
    inset: 0px;
}

.css-919eu4[b-extctylcvm] {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.css-13lqfnw[b-extctylcvm] {
    position: absolute;
    width: 59%;
    padding: 16px;
    min-height: 300px;
    max-height: 95%;
    border-radius: 12px;
    transform: translate(-50%, -45%);
    top: 50%;
    left: 50%;
    max-width: 430px;
    animation: 0.3s ease-out 0s 1 normal forwards running fadeSlideIn;
    overflow: scroll;
    background: rgba(255, 255, 255, 0.075) !important;
    backdrop-filter: blur(200px) !important;
    border: 1px solid rgba(255, 255, 255, 0.024) !important;
}

    .css-13lqfnw .modal_top[b-extctylcvm] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }

        .css-13lqfnw .modal_top .modal_top_title[b-extctylcvm] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-13lqfnw .modal_top button[b-extctylcvm] {
            background: transparent;
            border: none;
            cursor: pointer;
            display: grid;
            place-content: center;
            width: 24px;
            height: 24px;
        }

            .css-13lqfnw .modal_top button:hover[b-extctylcvm] {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
                filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(334deg) brightness(200%) contrast(100%);
            }

    .css-13lqfnw .modal_content[b-extctylcvm] {
        margin-top: 16px;
        display: grid;
        gap: 16px;
    }

        .css-13lqfnw .modal_content .modal_description[b-extctylcvm] {
            font-size: 14px;
            line-height: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 95%;
        }

@media (max-width: 768px) {
    .css-13lqfnw[b-extctylcvm] {
        position: fixed;
        top: unset;
        bottom: 0px;
        left: 0px;
        z-index: 101;
        width: 100%;
        max-width: unset;
        max-height: 85vh;
        transform: none;
        animation: 0.3s ease-out 0s 1 normal forwards running fadeSlideUp;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

.css-13lqfnw .modal_footer[b-extctylcvm] {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box !important;
}

.css-184mof1[b-extctylcvm] {
    width: 100%;
}

    .css-184mof1 label[b-extctylcvm] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-184mof1 .select_wrapper[b-extctylcvm] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        margin-top: 6px;
        padding: 10px 8px;
        border: 1px solid transparent;
        transition: border 150ms ease-out;
        position: relative;
        height: 42px;
        min-width: 150px;
        width: 100%;
    }

        .css-184mof1 .select_wrapper img[b-extctylcvm] {
            width: 16px;
            height: 16px;
        }

    .css-184mof1 .svg_icon[b-extctylcvm] {
        width: 8px;
        height: 6px;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .css-184mof1 select[b-extctylcvm] {
        appearance: none;
        width: 100%;
        border: none;
        outline: none;
        color: white;
        background: #22282e63;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        height: 100%;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        padding-left: 24px;
    }

    .css-184mof1 .select_wrapper:hover[b-extctylcvm] {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

.css-1ky7uhq[b-extctylcvm] {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    padding: 0px !important;
    margin: 0px !important;
}

    .css-1ky7uhq label[b-extctylcvm] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1ky7uhq .file_upload_wrapper[b-extctylcvm] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px dashed rgba(255, 255, 255, 0.05);
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
        position: relative;
    }

        .css-1ky7uhq .file_upload_wrapper .upload_wrapper[b-extctylcvm] {
            display: flex;
            gap: 8px;
            -webkit-box-align: center;
            align-items: center;
        }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper .icon[b-extctylcvm] {
                color: rgb(49, 172, 238);
                border-radius: 4px;
                padding: 2px;
                opacity: 0.5;
                transition: 150ms ease-out;
            }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper p[b-extctylcvm] {
                font-size: 14px;
                line-height: 18px;
                color: rgba(255, 255, 255, 0.8);
            }

                .css-1ky7uhq .file_upload_wrapper .upload_wrapper p strong[b-extctylcvm] {
                    color: rgb(49, 172, 238);
                    font-weight: 600;
                }

        .css-1ky7uhq .file_upload_wrapper:hover[b-extctylcvm] {
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

            .css-1ky7uhq .file_upload_wrapper:hover .upload_wrapper .icon[b-extctylcvm] {
                opacity: 1;
                color: rgb(49, 172, 238);
            }
/* /Controls/Home/CookieConsent.razor.rz.scp.css */
#cookie-consent-banner[b-db1bb7skbg] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(120%); /* Start off-screen */
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-top: 1px solid #333;
}

    #cookie-consent-banner.show[b-db1bb7skbg] {
        transform: translateY(0);
    }

.cookie-consent-text[b-db1bb7skbg] {
    margin-right: 2rem;
}

    .cookie-consent-text p[b-db1bb7skbg] {
        margin: 0;
        font-size: 0.9rem;
    }

    .cookie-consent-text a[b-db1bb7skbg] {
        color: #0c6cf2;
        text-decoration: none;
        font-weight: 500;
    }

        .cookie-consent-text a:hover[b-db1bb7skbg] {
            text-decoration: underline;
        }

.cookie-consent-buttons[b-db1bb7skbg] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

    .cookie-consent-buttons button[b-db1bb7skbg] {
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.2s, transform 0.1s;
    }

        .cookie-consent-buttons button:active[b-db1bb7skbg] {
            transform: scale(0.95);
        }

#cookie-accept-btn[b-db1bb7skbg] {
    background-color: #0c6cf2;
    color: white;
}

    #cookie-accept-btn:hover[b-db1bb7skbg] {
        background-color: #0a58c4;
    }

#cookie-decline-btn[b-db1bb7skbg] {
    background-color: #444;
    color: #f0f0f0;
}

    #cookie-decline-btn:hover[b-db1bb7skbg] {
        background-color: #555;
    }

@media (max-width: 768px) {
    #cookie-consent-banner[b-db1bb7skbg] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cookie-consent-text[b-db1bb7skbg] {
        margin-right: 0;
    }

    .cookie-consent-buttons[b-db1bb7skbg] {
        width: 100%;
        justify-content: flex-end;
    }
}
/* /Controls/Master/ConnectWalletModel.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-jdqo73[b-0uobccucoi] {
    display: grid;
    gap: 6px;
    margin: 0px !important;
    padding: 0px !important;
}

    .css-jdqo73 .input_wrapper[b-0uobccucoi] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        padding: 10px 8px !important;
    }

        .css-jdqo73 .input_wrapper:hover[b-0uobccucoi] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-jdqo73 label[b-0uobccucoi] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-jdqo73 input[b-0uobccucoi],
    .css-jdqo73 textarea[b-0uobccucoi] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        appearance: none;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-jdqo73 input[b-0uobccucoi]::placeholder,
        .css-jdqo73 textarea[b-0uobccucoi]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

.css-nncgg[b-0uobccucoi] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-0uobccucoi] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-8ndowl[b-0uobccucoi] {
    position: fixed;
    z-index: 1300;
    inset: 0px;
}

.css-919eu4[b-0uobccucoi] {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.css-1ocdasm[b-0uobccucoi] {
    position: absolute;
    width: 92%;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 430px;
    animation: 0.3s ease-out 0s 1 normal forwards running fadeSlideIn;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.075) !important;
    backdrop-filter: blur(200px) !important;
    border: 1px solid rgba(255, 255, 255, 0.024) !important;
}

    .css-1ocdasm .modal_top[b-0uobccucoi] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }

        .css-1ocdasm .modal_top .modal_top_title[b-0uobccucoi] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-1ocdasm .modal_top button[b-0uobccucoi] {
            background: transparent;
            border: none;
            cursor: pointer;
            display: grid;
            place-content: center;
            width: 24px;
            height: 24px;
        }

            .css-1ocdasm .modal_top button:hover[b-0uobccucoi] {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
                filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(334deg) brightness(200%) contrast(100%);
            }

    .css-1ocdasm .modal_content[b-0uobccucoi] {
        margin-top: 6px;
        display: grid;
        gap: 16px;
        height: 100%;
        overflow: hidden;
    }

        .css-1ocdasm .modal_content .modal_description[b-0uobccucoi] {
            font-size: 14px;
            line-height: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 95%;
        }

    .css-1ocdasm .modal_footer[b-0uobccucoi] {
        margin-top: 32px;
        display: flex;
        gap: 12px;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box !important;
    }

.css-3delch[b-0uobccucoi] {
    background: rgb(255, 51, 68);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-3delch.disabled[b-0uobccucoi] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }
/* /Controls/Master/NotificationTab.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-3delch[b-ox9bpppibc] {
    background: rgb(255, 51, 68);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    transition: 150ms ease-in;
    margin: 0px !important;
}
/* /Controls/Master/ProfileTab.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-1azirga label[b-sdvreku8t5] {
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.css-1azirga .select_wrapper[b-sdvreku8t5] {
    background: rgba(255, 255, 255, 0.024);
    border-radius: 8px;
    margin-top: 6px;
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: border 150ms ease-out;
    position: relative;
    height: 40px;
    min-width: 135px;
    width: 100%;
}

.css-1azirga .svg_icon[b-sdvreku8t5] {
    width: 8px;
    height: 6px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga select[b-sdvreku8t5] {
    appearance: none;
    width: 100%;
    border: none;
    outline: none;
    color: white;
    background: transparent;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga .select_wrapper:hover[b-sdvreku8t5] {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.css-nncgg[b-sdvreku8t5] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-sdvreku8t5] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-inwg8j[b-sdvreku8t5] {
    width: 100%;
    margin-top: 24px;
    position: relative;
    height: calc(100% - 40px);
    overflow-x: hidden;
    padding-bottom: 200px;
}

.css-1ky7uhq[b-sdvreku8t5] {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    padding: 0px !important;
    margin: 0px !important;
}

    .css-1ky7uhq label[b-sdvreku8t5] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1ky7uhq .file_upload_wrapper[b-sdvreku8t5] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px dashed rgba(255, 255, 255, 0.05);
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
        position: relative;
    }

        .css-1ky7uhq .file_upload_wrapper .upload_wrapper[b-sdvreku8t5] {
            display: flex;
            gap: 8px;
            -webkit-box-align: center;
            align-items: center;
        }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper .icon[b-sdvreku8t5] {
                color: rgb(49, 172, 238);
                border-radius: 4px;
                padding: 2px;
                opacity: 0.5;
                transition: 150ms ease-out;
            }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper p[b-sdvreku8t5] {
                font-size: 14px;
                line-height: 18px;
                color: rgba(255, 255, 255, 0.8);
            }

                .css-1ky7uhq .file_upload_wrapper .upload_wrapper p strong[b-sdvreku8t5] {
                    color: rgb(49, 172, 238);
                    font-weight: 600;
                }

        .css-1ky7uhq .file_upload_wrapper:hover[b-sdvreku8t5] {
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

            .css-1ky7uhq .file_upload_wrapper:hover .upload_wrapper .icon[b-sdvreku8t5] {
                opacity: 1;
                color: rgb(49, 172, 238);
            }

.css-7v5cjc[b-sdvreku8t5] {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    z-index: 999;
    transform: translateX(0px);
    padding: 24px 16px 16px;
    opacity: 1;
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    transition: 300ms ease-in-out;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

    .css-7v5cjc .top[b-sdvreku8t5] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }

        .css-7v5cjc .top .top_title[b-sdvreku8t5] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-7v5cjc .top button[b-sdvreku8t5] {
            background: transparent;
            border: none;
            cursor: pointer;
            display: grid;
            place-content: center;
            width: 24px;
            height: 24px;
        }

            .css-7v5cjc .top button:hover[b-sdvreku8t5] {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
                filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(334deg) brightness(200%) contrast(100%);
            }

@media (max-width: 768px) {
    .css-7v5cjc[b-sdvreku8t5] {
        max-width: unset;
        width: 100vw;
        background-color: rgb(5, 8, 11) !important;
    }
}

.css-1xolpc6 .status[b-sdvreku8t5] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgb(255, 255, 255);
}

.css-1xolpc6 .status_text[b-sdvreku8t5] {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.css-1xolpc6 .status.error[b-sdvreku8t5] {
    color: rgb(255, 51, 68);
}

.css-1xolpc6 .icon[b-sdvreku8t5] {
    min-width: 16px;
    min-height: 16px;
}

.css-1xolpc6 .form[b-sdvreku8t5] {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.css-1xolpc6 .form_footer[b-sdvreku8t5] {
    margin-top: 24px;
}
/*! CSS Used from: Embedded */
.css-jdqo73[b-sdvreku8t5] {
    display: grid;
    gap: 6px;
    margin: 0px !important;
    padding: 0px !important;
}

    .css-jdqo73 .input_wrapper[b-sdvreku8t5] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        padding: 10px 8px !important;
    }

        .css-jdqo73 .input_wrapper:hover[b-sdvreku8t5] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-jdqo73 label[b-sdvreku8t5] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-jdqo73 input[b-sdvreku8t5] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        appearance: none;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-jdqo73 input[b-sdvreku8t5]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

.css-1wnllbt[b-sdvreku8t5] {
    width: 100%;
}

    .css-1wnllbt label[b-sdvreku8t5] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1wnllbt .select_wrapper[b-sdvreku8t5] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        margin-top: 6px;
        border: 1px solid transparent;
        transition: border 150ms ease-out;
        position: relative;
        height: 42px;
        min-width: 135px;
        width: 100%;
        padding: 10px 8px !important;
    }

    .css-1wnllbt .svg_icon[b-sdvreku8t5] {
        width: 8px;
        height: 6px;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .css-1wnllbt .select_wrapper button[b-sdvreku8t5] {
        appearance: none;
        width: 100%;
        border: none;
        outline: none;
        color: white;
        background: transparent;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        height: 100%;
        cursor: pointer;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 8px;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-1wnllbt .select_wrapper button p[b-sdvreku8t5] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
        }

            .css-1wnllbt .select_wrapper button p.has_country[b-sdvreku8t5] {
                color: white;
            }

    .css-1wnllbt .select_wrapper:hover[b-sdvreku8t5] {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

.css-1kyvdx0[b-sdvreku8t5] {
    position: relative;
}

.css-9s4rph[b-sdvreku8t5] {
    display: none;
    position: absolute;
    left: 0px;
    max-width: 80%;
    min-width: 80%;
    z-index: 101;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 200ms ease-out, opacity 100ms ease-out;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    margin-top: 4px;
    border-radius: 8px;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

.css-jhp2bj[b-sdvreku8t5] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-jhp2bj .search_box[b-sdvreku8t5] {
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        padding: 6px;
        border: none;
        outline: none;
        background: rgb(30, 33, 36) !important;
        margin: 0px !important;
    }

        .css-jhp2bj .search_box div[b-sdvreku8t5] {
            border: none !important;
            outline: none !important;
            margin: 0px !important;
        }

    .css-jhp2bj .scrollable[b-sdvreku8t5] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-jhp2bj .scrollable div[b-sdvreku8t5] {
            cursor: pointer;
            transition: 100ms ease-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-jhp2bj .scrollable div .country_item[b-sdvreku8t5] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-jhp2bj .scrollable div:hover[b-sdvreku8t5] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div.selected[b-sdvreku8t5] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div p[b-sdvreku8t5] {
                font-size: 14px;
                white-space: nowrap;
                color: rgb(255, 255, 255);
                line-height: 18px;
                font-weight: 500;
            }

@media (max-width: 768px) {
    .css-jhp2bj .scrollable[b-sdvreku8t5] {
        padding-bottom: 200px;
    }
}

.css-g70r1a[b-sdvreku8t5] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}

    .css-g70r1a img[b-sdvreku8t5] {
        width: 16px;
        height: 16px;
    }

    .css-g70r1a input[b-sdvreku8t5] {
        line-height: 18px;
        color: rgb(255, 255, 255);
        border: none;
        outline: none;
        background: transparent;
        font-weight: 500;
        width: 100%;
    }

        .css-g70r1a input[b-sdvreku8t5]::placeholder {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

.css-13blo34[b-sdvreku8t5] {
    width: 100%;
}

    .css-13blo34 label[b-sdvreku8t5] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-13blo34 .select_wrapper[b-sdvreku8t5] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        border-radius: 8px;
        margin-top: 6px;
        height: 42px;
        background: rgba(255, 255, 255, 0.024);
        border: 1px solid transparent;
        transition: border 150ms ease-out;
        min-width: 135px;
        padding: 10px 4px !important;
    }

        .css-13blo34 .select_wrapper input[b-sdvreku8t5] {
            line-height: 18px;
            color: rgb(255, 255, 255);
            border: none;
            outline: none;
            background: transparent;
            font-weight: 500;
            width: 100%;
            margin: 0px !important;
            padding: 0px !important;
        }

            .css-13blo34 .select_wrapper input[b-sdvreku8t5]::placeholder {
                color: rgba(255, 255, 255, 0.75);
                font-weight: 500;
            }

        .css-13blo34 .select_wrapper:hover[b-sdvreku8t5] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

.css-nncgg[b-sdvreku8t5] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-sdvreku8t5] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-inwg8j[b-sdvreku8t5] {
    width: 100%;
    margin-top: 24px;
    position: relative;
    height: calc(100% - 40px);
    overflow-x: hidden;
    padding-bottom: 200px;
}

.css-1ky7uhq[b-sdvreku8t5] {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    padding: 0px !important;
    margin: 0px !important;
}

    .css-1ky7uhq label[b-sdvreku8t5] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1ky7uhq .file_upload_wrapper[b-sdvreku8t5] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px dashed rgba(255, 255, 255, 0.05);
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
        position: relative;
    }

        .css-1ky7uhq .file_upload_wrapper .progress[b-sdvreku8t5] {
            position: absolute;
            top: 0px;
            left: 0px;
            height: 100%;
            background: rgba(255, 255, 255, 0.043);
            border-radius: 8px;
            z-index: 1;
            transition: width 300ms ease-in;
        }

        .css-1ky7uhq .file_upload_wrapper .upload_wrapper[b-sdvreku8t5] {
            display: flex;
            gap: 8px;
            -webkit-box-align: center;
            align-items: center;
        }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper img[b-sdvreku8t5] {
                width: 24px;
                height: 24px;
                background: rgba(49, 172, 238, 0.1);
                border-radius: 4px;
                padding: 2px;
                opacity: 0.5;
                transition: 150ms ease-out;
            }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper .icon[b-sdvreku8t5] {
                color: rgb(49, 172, 238);
                border-radius: 4px;
                padding: 2px;
                opacity: 0.5;
                transition: 150ms ease-out;
            }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper p[b-sdvreku8t5] {
                font-size: 14px;
                line-height: 18px;
                color: rgba(255, 255, 255, 0.8);
            }

                .css-1ky7uhq .file_upload_wrapper .upload_wrapper p strong[b-sdvreku8t5] {
                    color: rgb(49, 172, 238);
                    font-weight: 600;
                }

        .css-1ky7uhq .file_upload_wrapper:hover[b-sdvreku8t5] {
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

            .css-1ky7uhq .file_upload_wrapper:hover .upload_wrapper img[b-sdvreku8t5] {
                opacity: 1;
            }

            .css-1ky7uhq .file_upload_wrapper:hover .upload_wrapper .icon[b-sdvreku8t5] {
                opacity: 1;
                color: rgb(49, 172, 238);
            }

.css-12m2m7s .form[b-sdvreku8t5] {
    display: grid;
    gap: 16px;
}

.css-12m2m7s .section_content[b-sdvreku8t5] {
    margin-top: 12px;
    display: grid;
    gap: 16px;
}

.css-12m2m7s .section_footer[b-sdvreku8t5] {
    margin-top: 16px;
}
/* /Controls/Master/SecurityTab.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-1vv7r1s[b-y7m4f3m3i3] {
    display: grid;
    gap: 6px;
    margin-top: 0px !important;
}

    .css-1vv7r1s label[b-y7m4f3m3i3] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1vv7r1s .input_wrapper[b-y7m4f3m3i3] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        height: 42px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        position: relative;
        padding: 10px 8px !important;
    }

        .css-1vv7r1s .input_wrapper .show_btn[b-y7m4f3m3i3] {
            background-color: transparent;
            border: none;
            outline: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 16px;
            font-weight: 600;
            cursor: pointer;
            position: absolute;
            right: 0px;
        }

        .css-1vv7r1s .input_wrapper:hover[b-y7m4f3m3i3] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-1vv7r1s input[b-y7m4f3m3i3] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-1vv7r1s input:-webkit-autofill[b-y7m4f3m3i3], .css-1vv7r1s input:-webkit-autofill:hover[b-y7m4f3m3i3], .css-1vv7r1s input:-webkit-autofill:focus[b-y7m4f3m3i3], .css-1vv7r1s input:-webkit-autofill:active[b-y7m4f3m3i3] {
            background-clip: text;
            -webkit-text-fill-color: rgb(255, 255, 255);
            transition: background-color 5000s ease-in-out;
            box-shadow: transparent 0px 0px 20px 20px inset;
        }

        .css-1vv7r1s input[b-y7m4f3m3i3]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

.css-nncgg[b-y7m4f3m3i3] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-y7m4f3m3i3] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-inwg8j[b-y7m4f3m3i3] {
    width: 100%;
    margin-top: 24px;
    position: relative;
    height: calc(100% - 40px);
    overflow-x: hidden;
    padding-bottom: 200px;
}

.css-3delch[b-y7m4f3m3i3] {
    background: rgb(255, 51, 68);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    transition: 150ms ease-in;
    margin: 0px !important;
}

.css-7v5cjc[b-y7m4f3m3i3] {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    z-index: 999;
    transform: translateX(0px);
    padding: 24px 16px 16px;
    opacity: 1;
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    transition: 300ms ease-in-out;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

    .css-7v5cjc .top[b-y7m4f3m3i3] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }

        .css-7v5cjc .top .top_title[b-y7m4f3m3i3] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-7v5cjc .top button[b-y7m4f3m3i3] {
            background: transparent;
            border: none;
            cursor: pointer;
            display: grid;
            place-content: center;
            width: 24px;
            height: 24px;
        }

            .css-7v5cjc .top button:hover[b-y7m4f3m3i3] {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
                filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(334deg) brightness(200%) contrast(100%);
            }

@media (max-width: 768px) {
    .css-7v5cjc[b-y7m4f3m3i3] {
        max-width: unset;
        width: 100vw;
        background-color: rgb(5, 8, 11) !important;
    }
}

.css-94nc50 .section:not(:first-of-type)[b-y7m4f3m3i3] {
    margin-top: 32px;
}

.css-94nc50 .form[b-y7m4f3m3i3] {
    margin-top: 16px;
    display: grid;
    gap: 16px;
}

.css-94nc50 .section_titles .title[b-y7m4f3m3i3] {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.css-94nc50 .section_titles .subtitle[b-y7m4f3m3i3] {
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.css-94nc50 .section_content[b-y7m4f3m3i3] {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.css-94nc50 .section_footer[b-y7m4f3m3i3] {
    margin-top: 16px;
}

.css-yxtzq2[b-y7m4f3m3i3] {
    background: rgb(1, 178, 139);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    transition: 150ms ease-in;
    margin: 0px !important;
}
/*! CSS Used from: Embedded */
.css-1vv7r1s[b-y7m4f3m3i3] {
    display: grid;
    gap: 6px;
    margin-top: 0px !important;
}

    .css-1vv7r1s label[b-y7m4f3m3i3] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1vv7r1s .input_wrapper[b-y7m4f3m3i3] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        height: 42px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        position: relative;
        padding: 10px 8px !important;
    }

        .css-1vv7r1s .input_wrapper .show_btn[b-y7m4f3m3i3] {
            background-color: transparent;
            border: none;
            outline: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 16px;
            font-weight: 600;
            cursor: pointer;
            position: absolute;
            right: 0px;
        }

        .css-1vv7r1s .input_wrapper:hover[b-y7m4f3m3i3] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-1vv7r1s input[b-y7m4f3m3i3] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-1vv7r1s input:-webkit-autofill[b-y7m4f3m3i3], .css-1vv7r1s input:-webkit-autofill:hover[b-y7m4f3m3i3], .css-1vv7r1s input:-webkit-autofill:focus[b-y7m4f3m3i3], .css-1vv7r1s input:-webkit-autofill:active[b-y7m4f3m3i3] {
            background-clip: text;
            -webkit-text-fill-color: rgb(255, 255, 255);
            transition: background-color 5000s ease-in-out;
            box-shadow: transparent 0px 0px 20px 20px inset;
        }

        .css-1vv7r1s input[b-y7m4f3m3i3]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

.css-nncgg[b-y7m4f3m3i3] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-y7m4f3m3i3] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-inwg8j[b-y7m4f3m3i3] {
    width: 100%;
    margin-top: 24px;
    position: relative;
    height: calc(100% - 40px);
    overflow-x: hidden;
    padding-bottom: 200px;
}

.css-3delch[b-y7m4f3m3i3] {
    background: rgb(255, 51, 68);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    transition: 150ms ease-in;
    margin: 0px !important;
}

.css-94nc50 .section:not(:first-of-type)[b-y7m4f3m3i3] {
    margin-top: 32px;
}

.css-94nc50 .form[b-y7m4f3m3i3] {
    margin-top: 16px;
    display: grid;
    gap: 16px;
}

.css-94nc50 .section_titles .title[b-y7m4f3m3i3] {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.css-94nc50 .section_titles .subtitle[b-y7m4f3m3i3] {
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.css-94nc50 .section_content[b-y7m4f3m3i3] {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.css-94nc50 .section_footer[b-y7m4f3m3i3] {
    margin-top: 16px;
}

.css-yxtzq2[b-y7m4f3m3i3] {
    background: rgb(1, 178, 139);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    transition: 150ms ease-in;
    margin: 0px !important;
}
.input_fa[b-y7m4f3m3i3] {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 1.125rem;
    line-height: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    outline: none;
}

.input_f[b-y7m4f3m3i3] {
    position: absolute;
    inset: 0px;
    height: 100%;
    display: flex;
    text-align: left;
    opacity: 1;
    color: white;
    pointer-events: all;
    background: transparent;
    border: 0px solid transparent;
    outline: transparent solid 0px;
    box-shadow: none;
    line-height: 1;
    letter-spacing: 0.6em;
    font-size: var(--root-height);
    font-family: monospace;
    font-variant-numeric: tabular-nums;
    padding-left: 10px!important;
    width: 110%;
}
/* /Controls/Master/SideBarMenu.razor.rz.scp.css */
.page[b-tmvwzvgrye] {
    transition: 300ms ease-in-out;
}
.slide-left[b-tmvwzvgrye] {
    transform: translateX(0%);
    
}
.slide-right[b-tmvwzvgrye] {
    transform: translateX(-100%);
}
/* /Controls/Master/SomeSideBar.razor.rz.scp.css */
/* /Controls/Master/VerificationTab.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-1azirga label[b-9d3reknkj8] {
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.css-1azirga .select_wrapper[b-9d3reknkj8] {
    background: rgba(255, 255, 255, 0.024);
    border-radius: 8px;
    margin-top: 6px;
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: border 150ms ease-out;
    position: relative;
    height: 40px;
    min-width: 135px;
    width: 100%;
}

.css-1azirga .svg_icon[b-9d3reknkj8] {
    width: 8px;
    height: 6px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga select[b-9d3reknkj8] {
    appearance: none;
    width: 100%;
    border: none;
    outline: none;
    color: white;
    background: #232629;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga .select_wrapper:hover[b-9d3reknkj8] {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.css-nncgg[b-9d3reknkj8] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-9d3reknkj8] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-inwg8j[b-9d3reknkj8] {
    width: 100%;
    margin-top: 24px;
    position: relative;
    height: calc(100% - 40px);
    overflow-x: hidden;
    padding-bottom: 200px;
}

.css-1ky7uhq[b-9d3reknkj8] {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    padding: 0px !important;
    margin: 0px !important;
}

    .css-1ky7uhq label[b-9d3reknkj8] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1ky7uhq .file_upload_wrapper[b-9d3reknkj8] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px dashed rgba(255, 255, 255, 0.05);
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
        position: relative;
    }

        .css-1ky7uhq .file_upload_wrapper .upload_wrapper[b-9d3reknkj8] {
            display: flex;
            gap: 8px;
            -webkit-box-align: center;
            align-items: center;
        }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper .icon[b-9d3reknkj8] {
                color: rgb(49, 172, 238);
                border-radius: 4px;
                padding: 2px;
                opacity: 0.5;
                transition: 150ms ease-out;
            }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper p[b-9d3reknkj8] {
                font-size: 14px;
                line-height: 18px;
                color: rgba(255, 255, 255, 0.8);
            }

                .css-1ky7uhq .file_upload_wrapper .upload_wrapper p strong[b-9d3reknkj8] {
                    color: rgb(49, 172, 238);
                    font-weight: 600;
                }

        .css-1ky7uhq .file_upload_wrapper:hover[b-9d3reknkj8] {
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

            .css-1ky7uhq .file_upload_wrapper:hover .upload_wrapper .icon[b-9d3reknkj8] {
                opacity: 1;
                color: rgb(49, 172, 238);
            }

.css-7v5cjc[b-9d3reknkj8] {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    z-index: 999;
    transform: translateX(0px);
    padding: 24px 16px 16px;
    opacity: 1;
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    transition: 300ms ease-in-out;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

    .css-7v5cjc .top[b-9d3reknkj8] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }

        .css-7v5cjc .top .top_title[b-9d3reknkj8] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-7v5cjc .top button[b-9d3reknkj8] {
            background: transparent;
            border: none;
            cursor: pointer;
            display: grid;
            place-content: center;
            width: 24px;
            height: 24px;
        }

            .css-7v5cjc .top button:hover[b-9d3reknkj8] {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
                filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(334deg) brightness(200%) contrast(100%);
            }

@media (max-width: 768px) {
    .css-7v5cjc[b-9d3reknkj8] {
        max-width: unset;
        width: 100vw;
        background-color: rgb(5, 8, 11) !important;
    }
}

.css-1xolpc6 .status[b-9d3reknkj8] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgb(255, 255, 255);
}

.css-1xolpc6 .status_text[b-9d3reknkj8] {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.css-1xolpc6 .status.error[b-9d3reknkj8] {
    color: rgb(255, 51, 68);
}

.css-1xolpc6 .icon[b-9d3reknkj8] {
    min-width: 16px;
    min-height: 16px;
}

.css-1xolpc6 .form[b-9d3reknkj8] {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.css-1xolpc6 .form_footer[b-9d3reknkj8] {
    margin-top: 24px;
}
/* /Controls/Mining/MiningHistoryComponent.razor.rz.scp.css */

.mining-list-container[b-rfbr1ntaf0] {
    background-color: #1e1e1e; /* Dark grey for component background */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 360px; /* Max width constraint */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow for depth */
}

    .mining-list-container h2[b-rfbr1ntaf0] {
        color: #ffffff;
        text-align: center;
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 1.6em;
        border-bottom: 1px solid #333; /* Subtle separator */
        padding-bottom: 10px;
    }

.mining-list[b-rfbr1ntaf0] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mining-item[b-rfbr1ntaf0] {
    background-color: #2a2a2a; /* Medium-dark grey for list items */
    border: 1px solid #383838; /* Slightly lighter border for definition */
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 18px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .mining-item:hover[b-rfbr1ntaf0] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    }

    .mining-item:last-child[b-rfbr1ntaf0] {
        margin-bottom: 0;
    }

.item-header[b-rfbr1ntaf0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-name[b-rfbr1ntaf0] {
    font-size: 1.2em;
    font-weight: 600; /* Semibold */
    color: white;
}

.status[b-rfbr1ntaf0] {
    font-size: 0.85em;
    padding: 5px 10px;
    border-radius: 15px; /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status.Pending[b-rfbr1ntaf0] {
        background-color: #cfb600; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }
    .status.Active[b-rfbr1ntaf0] {
        background-color: #03dac6; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }

    .status.Completed[b-rfbr1ntaf0] {
        background-color: #cf6679; /* Reddish/pink accent - Material Design dark theme */
        color: #121212;
    }

    .status.Closed[b-rfbr1ntaf0] { /* Added a distinct 'closed' status style */
        background-color: #4f4f4f; /* Grey for closed/disabled state */
        color: #ababab;
    }

.item-details[b-rfbr1ntaf0] {
    font-size: 0.95em;
    color: #b0b0b0; /* Slightly lighter grey for details */
}

.detail-row[b-rfbr1ntaf0] {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #3f3f3f; /* Dashed separator for rows */
}

    .detail-row:last-child[b-rfbr1ntaf0] {
        border-bottom: none;
    }

    .detail-row .label[b-rfbr1ntaf0] {
        color: #888888; /* Dimmer grey for labels */
        margin-right: 10px;
    }

    .detail-row .value[b-rfbr1ntaf0] {
        font-weight: 500;
        color: #d0d0d0;
        text-align: right;
    }

.action-btn[b-rfbr1ntaf0] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #f44336; /* Red button color */
    color: #ffffff; /* White text for contrast on red */
    border: none;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .action-btn:hover:not(:disabled)[b-rfbr1ntaf0] {
        background-color: #d32f2f; /* Darker red on hover */
        transform: translateY(-1px);
    }

    .action-btn:active:not(:disabled)[b-rfbr1ntaf0] {
        transform: translateY(0px);
    }

    .action-btn:disabled[b-rfbr1ntaf0] {
        background-color: #4a4a4a; /* Dark grey for disabled button */
        color: #757575; /* Lighter grey for disabled text */
        cursor: not-allowed;
    }
/* /Controls/Signals/SignalsHistoryComponent.razor.rz.scp.css */

.mining-list-container[b-18qx02bsjn] {
    background-color: #1e1e1e; /* Dark grey for component background */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 360px; /* Max width constraint */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow for depth */
}

    .mining-list-container h2[b-18qx02bsjn] {
        color: #ffffff;
        text-align: center;
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 1.6em;
        border-bottom: 1px solid #333; /* Subtle separator */
        padding-bottom: 10px;
    }

.mining-list[b-18qx02bsjn] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mining-item[b-18qx02bsjn] {
    background-color: #2a2a2a; /* Medium-dark grey for list items */
    border: 1px solid #383838; /* Slightly lighter border for definition */
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 18px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .mining-item:hover[b-18qx02bsjn] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    }

    .mining-item:last-child[b-18qx02bsjn] {
        margin-bottom: 0;
    }

.item-header[b-18qx02bsjn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-name[b-18qx02bsjn] {
    font-size: 1.2em;
    font-weight: 600; /* Semibold */
    color: white;
}

.status[b-18qx02bsjn] {
    font-size: 0.85em;
    padding: 5px 10px;
    border-radius: 15px; /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status.Pending[b-18qx02bsjn] {
        background-color: #cfb600; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }

    .status.Active[b-18qx02bsjn] {
        background-color: #03dac6; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }

    .status.Completed[b-18qx02bsjn] {
        background-color: #cf6679; /* Reddish/pink accent - Material Design dark theme */
        color: #121212;
    }

    .status.Closed[b-18qx02bsjn] { /* Added a distinct 'closed' status style */
        background-color: #4f4f4f; /* Grey for closed/disabled state */
        color: #ababab;
    }

.item-details[b-18qx02bsjn] {
    font-size: 0.95em;
    color: #b0b0b0; /* Slightly lighter grey for details */
}

.detail-row[b-18qx02bsjn] {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #3f3f3f; /* Dashed separator for rows */
}

    .detail-row:last-child[b-18qx02bsjn] {
        border-bottom: none;
    }

    .detail-row .label[b-18qx02bsjn] {
        color: #888888; /* Dimmer grey for labels */
        margin-right: 10px;
    }

    .detail-row .value[b-18qx02bsjn] {
        font-weight: 500;
        color: #d0d0d0;
        text-align: right;
    }

.action-btn[b-18qx02bsjn] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #f44336; /* Red button color */
    color: #ffffff; /* White text for contrast on red */
    border: none;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .action-btn:hover:not(:disabled)[b-18qx02bsjn] {
        background-color: #d32f2f; /* Darker red on hover */
        transform: translateY(-1px);
    }

    .action-btn:active:not(:disabled)[b-18qx02bsjn] {
        transform: translateY(0px);
    }

    .action-btn:disabled[b-18qx02bsjn] {
        background-color: #4a4a4a; /* Dark grey for disabled button */
        color: #757575; /* Lighter grey for disabled text */
        cursor: not-allowed;
    }
/* /Controls/Stake/StakeHistoryComponent.razor.rz.scp.css */

.mining-list-container[b-agd40ox4ys] {
    background-color: #1e1e1e; /* Dark grey for component background */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 360px; /* Max width constraint */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow for depth */
}

    .mining-list-container h2[b-agd40ox4ys] {
        color: #ffffff;
        text-align: center;
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 1.6em;
        border-bottom: 1px solid #333; /* Subtle separator */
        padding-bottom: 10px;
    }

.mining-list[b-agd40ox4ys] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mining-item[b-agd40ox4ys] {
    background-color: #2a2a2a; /* Medium-dark grey for list items */
    border: 1px solid #383838; /* Slightly lighter border for definition */
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 18px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .mining-item:hover[b-agd40ox4ys] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    }

    .mining-item:last-child[b-agd40ox4ys] {
        margin-bottom: 0;
    }

.item-header[b-agd40ox4ys] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-name[b-agd40ox4ys] {
    font-size: 1.2em;
    font-weight: 600; /* Semibold */
    color: white;
}

.status[b-agd40ox4ys] {
    font-size: 0.85em;
    padding: 5px 10px;
    border-radius: 15px; /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status.Pending[b-agd40ox4ys] {
        background-color: #cfb600; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }
    .status.Active[b-agd40ox4ys] {
        background-color: #03dac6; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }

    .status.Completed[b-agd40ox4ys] {
        background-color: #cf6679; /* Reddish/pink accent - Material Design dark theme */
        color: #121212;
    }

    .status.Closed[b-agd40ox4ys] { /* Added a distinct 'closed' status style */
        background-color: #4f4f4f; /* Grey for closed/disabled state */
        color: #ababab;
    }

.item-details[b-agd40ox4ys] {
    font-size: 0.95em;
    color: #b0b0b0; /* Slightly lighter grey for details */
}

.detail-row[b-agd40ox4ys] {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #3f3f3f; /* Dashed separator for rows */
}

    .detail-row:last-child[b-agd40ox4ys] {
        border-bottom: none;
    }

    .detail-row .label[b-agd40ox4ys] {
        color: #888888; /* Dimmer grey for labels */
        margin-right: 10px;
    }

    .detail-row .value[b-agd40ox4ys] {
        font-weight: 500;
        color: #d0d0d0;
        text-align: right;
    }

.action-btn[b-agd40ox4ys] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #f44336; /* Red button color */
    color: #ffffff; /* White text for contrast on red */
    border: none;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .action-btn:hover:not(:disabled)[b-agd40ox4ys] {
        background-color: #d32f2f; /* Darker red on hover */
        transform: translateY(-1px);
    }

    .action-btn:active:not(:disabled)[b-agd40ox4ys] {
        transform: translateY(0px);
    }

    .action-btn:disabled[b-agd40ox4ys] {
        background-color: #4a4a4a; /* Dark grey for disabled button */
        color: #757575; /* Lighter grey for disabled text */
        cursor: not-allowed;
    }
/* /Controls/Subscribe/SubscribeHistoryComponent.razor.rz.scp.css */

.mining-list-container[b-o69ievxle0] {
    background-color: #1e1e1e; /* Dark grey for component background */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 360px; /* Max width constraint */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Deeper shadow for depth */
}

    .mining-list-container h2[b-o69ievxle0] {
        color: #ffffff;
        text-align: center;
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 1.6em;
        border-bottom: 1px solid #333; /* Subtle separator */
        padding-bottom: 10px;
    }

.mining-list[b-o69ievxle0] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mining-item[b-o69ievxle0] {
    background-color: #2a2a2a; /* Medium-dark grey for list items */
    border: 1px solid #383838; /* Slightly lighter border for definition */
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 18px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .mining-item:hover[b-o69ievxle0] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    }

    .mining-item:last-child[b-o69ievxle0] {
        margin-bottom: 0;
    }

.item-header[b-o69ievxle0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-name[b-o69ievxle0] {
    font-size: 1.2em;
    font-weight: 600; /* Semibold */
    color: white;
}

.status[b-o69ievxle0] {
    font-size: 0.85em;
    padding: 5px 10px;
    border-radius: 15px; /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .status.Pending[b-o69ievxle0] {
        background-color: #cfb600; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }

    .status.Active[b-o69ievxle0] {
        background-color: #03dac6; /* Teal accent - Material Design dark theme */
        color: #121212; /* Dark text for contrast on light bg */
    }

    .status.Completed[b-o69ievxle0] {
        background-color: #cf6679; /* Reddish/pink accent - Material Design dark theme */
        color: #121212;
    }

    .status.Closed[b-o69ievxle0] { /* Added a distinct 'closed' status style */
        background-color: #4f4f4f; /* Grey for closed/disabled state */
        color: #ababab;
    }

.item-details[b-o69ievxle0] {
    font-size: 0.95em;
    color: #b0b0b0; /* Slightly lighter grey for details */
}

.detail-row[b-o69ievxle0] {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #3f3f3f; /* Dashed separator for rows */
}

    .detail-row:last-child[b-o69ievxle0] {
        border-bottom: none;
    }

    .detail-row .label[b-o69ievxle0] {
        color: #888888; /* Dimmer grey for labels */
        margin-right: 10px;
    }

    .detail-row .value[b-o69ievxle0] {
        font-weight: 500;
        color: #d0d0d0;
        text-align: right;
    }

.action-btn[b-o69ievxle0] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #f44336; /* Red button color */
    color: #ffffff; /* White text for contrast on red */
    border: none;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .action-btn:hover:not(:disabled)[b-o69ievxle0] {
        background-color: #d32f2f; /* Darker red on hover */
        transform: translateY(-1px);
    }

    .action-btn:active:not(:disabled)[b-o69ievxle0] {
        transform: translateY(0px);
    }

    .action-btn:disabled[b-o69ievxle0] {
        background-color: #4a4a4a; /* Dark grey for disabled button */
        color: #757575; /* Lighter grey for disabled text */
        cursor: not-allowed;
    }
/* /Controls/Withdraw/NewWithdrawComponent.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-nncgg[b-w50xo69ku2] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-w50xo69ku2] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }

.css-1azirga label[b-w50xo69ku2] {
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.css-1azirga .select_wrapper[b-w50xo69ku2] {
    background: rgba(255, 255, 255, 0.024);
    border-radius: 8px;
    margin-top: 6px;
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: border 150ms ease-out;
    position: relative;
    height: 40px;
    min-width: 135px;
    width: 100%;
}

.css-1azirga select[b-w50xo69ku2] {
    appearance: none;
    width: 100%;
    border: none;
    outline: none;
    color: white;
    background: #1f2325;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga .select_wrapper:hover[b-w50xo69ku2] {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.css-v6puf8[b-w50xo69ku2] {
    width: 100%;
}

    .css-v6puf8 label[b-w50xo69ku2] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

        .css-v6puf8 label.divide[b-w50xo69ku2] {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            justify-content: space-between;
        }

    .css-v6puf8 .amountbox_wrapper[b-w50xo69ku2] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px solid transparent;
        position: relative;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
    }

        .css-v6puf8 .amountbox_wrapper:hover[b-w50xo69ku2] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-v6puf8 .amount_select[b-w50xo69ku2] {
        outline: none;
        border: none;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.05);
        padding: 6px;
        cursor: pointer;
        box-sizing: border-box;
        transition: background 150ms ease-out;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        height: 100%;
    }

        .css-v6puf8 .amount_select:hover[b-w50xo69ku2] {
            background: rgba(255, 255, 255, 0.024);
        }

        .css-v6puf8 .amount_select p[b-w50xo69ku2] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-v6puf8 .amount_select img[b-w50xo69ku2] {
            width: 16px;
            height: 16px;
        }

    .css-v6puf8 input[b-w50xo69ku2] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        font-size: 16px;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
    }

        .css-v6puf8 input[b-w50xo69ku2]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
            line-height: 18px;
            font-weight: 600;
        }

.css-8ndowl[b-w50xo69ku2] {
    position: fixed;
    z-index: 1300;
    inset: 0px;
}

.css-919eu4[b-w50xo69ku2] {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.css-13lqfnw[b-w50xo69ku2] {
    position: absolute;
    width: 59%;
    padding: 16px;
    min-height: 300px;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 430px;
    animation: 0.3s ease-out 0s 1 normal forwards running fadeSlideIn;
    overflow: scroll;
    background: rgba(255, 255, 255, 0.075) !important;
    backdrop-filter: blur(200px) !important;
    border: 1px solid rgba(255, 255, 255, 0.024) !important;
}

    .css-13lqfnw .modal_top[b-w50xo69ku2] {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
    }

        .css-13lqfnw .modal_top .modal_top_title[b-w50xo69ku2] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgb(255, 255, 255);
        }

        .css-13lqfnw .modal_top button[b-w50xo69ku2] {
            background: transparent;
            border: none;
            cursor: pointer;
            display: grid;
            place-content: center;
            width: 24px;
            height: 24px;
        }

            .css-13lqfnw .modal_top button:hover[b-w50xo69ku2] {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
                filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(334deg) brightness(200%) contrast(100%);
            }

    .css-13lqfnw .modal_content[b-w50xo69ku2] {
        margin-top: 16px;
        display: grid;
        gap: 16px;
    }

        .css-13lqfnw .modal_content .modal_description[b-w50xo69ku2] {
            font-size: 14px;
            line-height: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 95%;
        }

@media (max-width: 768px) {
    .css-13lqfnw[b-w50xo69ku2] {
        position: fixed;
        top: unset;
        bottom: 0px;
        left: 0px;
        z-index: 101;
        width: 100%;
        max-width: unset;
        max-height: 85vh;
        transform: none;
        animation: 0.3s ease-out 0s 1 normal forwards running fadeSlideUp;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

.css-13lqfnw .modal_footer[b-w50xo69ku2] {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box !important;
}

.css-184mof1[b-w50xo69ku2] {
    width: 100%;
}

    .css-184mof1 label[b-w50xo69ku2] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-184mof1 .select_wrapper[b-w50xo69ku2] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        margin-top: 6px;
        padding: 10px 8px;
        border: 1px solid transparent;
        transition: border 150ms ease-out;
        position: relative;
        height: 42px;
        min-width: 150px;
        width: 100%;
    }

        .css-184mof1 .select_wrapper img[b-w50xo69ku2] {
            width: 16px;
            height: 16px;
        }

    .css-184mof1 .svg_icon[b-w50xo69ku2] {
        width: 8px;
        height: 6px;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .css-184mof1 select[b-w50xo69ku2] {
        appearance: none;
        width: 100%;
        border: none;
        outline: none;
        color: white;
        background: #22272e7d;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        height: 100%;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        padding-left: 24px;
    }

    .css-184mof1 .select_wrapper:hover[b-w50xo69ku2] {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

.css-1ky7uhq[b-w50xo69ku2] {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    padding: 0px !important;
    margin: 0px !important;
}

    .css-1ky7uhq label[b-w50xo69ku2] {
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1ky7uhq .file_upload_wrapper[b-w50xo69ku2] {
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        padding: 4px 4px 4px 8px;
        margin-top: 6px;
        border: 1px dashed rgba(255, 255, 255, 0.05);
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: border 150ms ease-out;
        height: 42px;
        position: relative;
    }

        .css-1ky7uhq .file_upload_wrapper .upload_wrapper[b-w50xo69ku2] {
            display: flex;
            gap: 8px;
            -webkit-box-align: center;
            align-items: center;
        }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper .icon[b-w50xo69ku2] {
                color: rgb(49, 172, 238);
                border-radius: 4px;
                padding: 2px;
                opacity: 0.5;
                transition: 150ms ease-out;
            }

            .css-1ky7uhq .file_upload_wrapper .upload_wrapper p[b-w50xo69ku2] {
                font-size: 14px;
                line-height: 18px;
                color: rgba(255, 255, 255, 0.8);
            }

                .css-1ky7uhq .file_upload_wrapper .upload_wrapper p strong[b-w50xo69ku2] {
                    color: rgb(49, 172, 238);
                    font-weight: 600;
                }

        .css-1ky7uhq .file_upload_wrapper:hover[b-w50xo69ku2] {
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

            .css-1ky7uhq .file_upload_wrapper:hover .upload_wrapper .icon[b-w50xo69ku2] {
                opacity: 1;
                color: rgb(49, 172, 238);
            }
/* /Layout/AuthLayout.razor.rz.scp.css */
@charset "UTF-8";


html[b-qcxmwok1ks],
body[b-qcxmwok1ks],
div[b-qcxmwok1ks],
span[b-qcxmwok1ks],
applet[b-qcxmwok1ks],
object[b-qcxmwok1ks],
iframe[b-qcxmwok1ks],
h1[b-qcxmwok1ks],
h2[b-qcxmwok1ks],
h3[b-qcxmwok1ks],
h4[b-qcxmwok1ks],
h5[b-qcxmwok1ks],
h6[b-qcxmwok1ks],
p[b-qcxmwok1ks],
blockquote[b-qcxmwok1ks],
pre[b-qcxmwok1ks],
a[b-qcxmwok1ks],
abbr[b-qcxmwok1ks],
acronym[b-qcxmwok1ks],
address[b-qcxmwok1ks],
big[b-qcxmwok1ks],
cite[b-qcxmwok1ks],
code[b-qcxmwok1ks],
del[b-qcxmwok1ks],
dfn[b-qcxmwok1ks],
em[b-qcxmwok1ks],
img[b-qcxmwok1ks],
ins[b-qcxmwok1ks],
kbd[b-qcxmwok1ks],
q[b-qcxmwok1ks],
s[b-qcxmwok1ks],
samp[b-qcxmwok1ks],
small[b-qcxmwok1ks],
strike[b-qcxmwok1ks],
strong[b-qcxmwok1ks],
sub[b-qcxmwok1ks],
sup[b-qcxmwok1ks],
tt[b-qcxmwok1ks],
var[b-qcxmwok1ks],
b[b-qcxmwok1ks],
u[b-qcxmwok1ks],
i[b-qcxmwok1ks],
center[b-qcxmwok1ks],
dl[b-qcxmwok1ks],
dt[b-qcxmwok1ks],
dd[b-qcxmwok1ks],
ol[b-qcxmwok1ks],
ul[b-qcxmwok1ks],
li[b-qcxmwok1ks],
fieldset[b-qcxmwok1ks],
form[b-qcxmwok1ks],
label[b-qcxmwok1ks],
legend[b-qcxmwok1ks],
table[b-qcxmwok1ks],
caption[b-qcxmwok1ks],
tbody[b-qcxmwok1ks],
tfoot[b-qcxmwok1ks],
thead[b-qcxmwok1ks],
tr[b-qcxmwok1ks],
th[b-qcxmwok1ks],
td[b-qcxmwok1ks],
article[b-qcxmwok1ks],
aside[b-qcxmwok1ks],
canvas[b-qcxmwok1ks],
details[b-qcxmwok1ks],
embed[b-qcxmwok1ks],
figure[b-qcxmwok1ks],
figcaption[b-qcxmwok1ks],
footer[b-qcxmwok1ks],
header[b-qcxmwok1ks],
hgroup[b-qcxmwok1ks],
menu[b-qcxmwok1ks],
nav[b-qcxmwok1ks],
output[b-qcxmwok1ks],
ruby[b-qcxmwok1ks],
section[b-qcxmwok1ks],
summary[b-qcxmwok1ks],
time[b-qcxmwok1ks],
mark[b-qcxmwok1ks],
audio[b-qcxmwok1ks],
video[b-qcxmwok1ks] {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article[b-qcxmwok1ks],
aside[b-qcxmwok1ks],
details[b-qcxmwok1ks],
figcaption[b-qcxmwok1ks],
figure[b-qcxmwok1ks],
footer[b-qcxmwok1ks],
header[b-qcxmwok1ks],
hgroup[b-qcxmwok1ks],
menu[b-qcxmwok1ks],
nav[b-qcxmwok1ks],
section[b-qcxmwok1ks] {
    display: block;
}

body[b-qcxmwok1ks] {
    line-height: 1;
}

ol[b-qcxmwok1ks],
ul[b-qcxmwok1ks] {
    list-style: none;
}

blockquote[b-qcxmwok1ks],
q[b-qcxmwok1ks] {
    quotes: none;
}

    blockquote[b-qcxmwok1ks]:before,
    blockquote[b-qcxmwok1ks]:after,
    q[b-qcxmwok1ks]:before,
    q[b-qcxmwok1ks]:after {
        content: "";
        content: none;
    }

table[b-qcxmwok1ks] {
    border-collapse: collapse;
    border-spacing: 0;
}

html[b-qcxmwok1ks] {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

*[b-qcxmwok1ks] {
    font-family: Open Sans !important;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 100%;
}

body[b-qcxmwok1ks] {
    background-color: #05080b;
}

.scrollbar-hide[b-qcxmwok1ks]::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide[b-qcxmwok1ks] {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.divider_24px[b-qcxmwok1ks] {
    height: 24px;
    width: 100%;
    background: transparent;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.divider_32px[b-qcxmwok1ks] {
    height: 32px;
    width: 100%;
    background: transparent;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.divider_48px[b-qcxmwok1ks] {
    height: 48px;
    width: 100%;
    background: transparent;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

p.profit[b-qcxmwok1ks] {
    color: #0f9 !important;
}

p.loss[b-qcxmwok1ks] {
    color: #f34 !important;
}

.toast-styles[b-qcxmwok1ks] {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    padding: 16px;
    border: 1px solid inherit;
}

.react-datepicker[b-qcxmwok1ks] {
    background-color: #2c3e50;
    border: none !important;
    border-radius: 10px;
    width: 100% !important;
    background-color: transparent !important;
}

.react-datepicker-wrapper[b-qcxmwok1ks] {
    width: 100% !important;
}

.react-datepicker__header[b-qcxmwok1ks] {
    background-color: transparent !important;
    border-bottom: none !important;
    width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 0 8px !important;
    display: inline-block;
}

.react-datepicker__current-month[b-qcxmwok1ks],
.react-datepicker__day-name[b-qcxmwok1ks] {
    color: #fff !important;
    font-size: 12px;
    font-weight: 500;
    font-family: Open Sans;
    padding-top: 8px !important;
}

.react-datepicker__triangle[b-qcxmwok1ks] {
    display: none !important;
}

.react-datepicker__day--outside-month[b-qcxmwok1ks] {
    opacity: 0.5 !important;
}

.react-datepicker__day[b-qcxmwok1ks],
.react-datepicker__day-name[b-qcxmwok1ks] {
    color: #fff !important;
    border-radius: 100% !important;
    width: 2rem;
    line-height: 2rem;
    font-weight: 500;
}

    .react-datepicker__day:hover[b-qcxmwok1ks] {
        background-color: #ffffff1f !important;
    }

.react-datepicker__day--selected[b-qcxmwok1ks],
.react-datepicker__day--keyboard-selected[b-qcxmwok1ks] {
    background-color: #3498db !important;
    border-radius: 100% !important;
    color: #fff !important;
}

.react-datepicker__day--today[b-qcxmwok1ks] {
    background-color: #ffffff1f !important;
    border-radius: 100% !important;
    color: #fff !important;
}

.custom-datepicker[b-qcxmwok1ks] {
    display: flex;
    width: 100%;
}

.no-zoom[b-qcxmwok1ks] {
    font-size: 16px;
    transform-origin: top left;
    transform: scale(0.9);
    width: 240px;
    padding: 5.333333px;
    border-radius: 6.666667px;
    border-width: 1.333333px;
    margin-right: -60px;
    margin-bottom: -8px;
}

.no-zoom-14px[b-qcxmwok1ks] {
    font-size: 16px;
    transform-origin: top left;
    transform: scale(0.875);
    width: 205.71px;
    height: 20px;
    padding: 4.57px;
    border-width: 0px;
    border-radius: 0 !important;
    margin-right: -25.71px;
    margin-bottom: -3px;
}

.textarea-wrapper[b-qcxmwok1ks] {
    display: inline-block;
    transform: scale(0.875);
    transform-origin: top left;
}

.no-zoom-textarea[b-qcxmwok1ks] {
    font-size: 16px;
    line-height: 24px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 !important;
    width: 180px;
    outline: 0;
    resize: none;
}

.blink_me[b-qcxmwok1ks] {
    animation: blinker-b-qcxmwok1ks 2s linear infinite;
    cursor: not-allowed;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

@keyframes blinker-b-qcxmwok1ks {
    50% {
        opacity: 0.5;
    }
}

.eyes_wrapper[b-qcxmwok1ks] {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.eyes_button[b-qcxmwok1ks] {
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0 !important;
    height: 16px !important;
    cursor: pointer;
    color: #ffffffbf;
    transition: all 0.15s ease-out;
    line-height: 14px;
}

    .eyes_button:hover[b-qcxmwok1ks] {
        color: #fff;
    }

.user_balance[b-qcxmwok1ks] {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 32px;
    font-feature-settings: "tnum";
    transform: translateY(4px);
    animation: fadeInFromBottom-b-qcxmwok1ks 0.2s ease-out forwards;
}

@keyframes fadeInFromBottom-b-qcxmwok1ks {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(8px);
    }

    50% {
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.user_balance.hidden i[b-qcxmwok1ks] {
    display: inline-block;
    opacity: 0;
    transform: translateY(4px);
    animation: fadeInFromBottom-b-qcxmwok1ks 0.1s ease-out forwards;
}

    .user_balance.hidden i:nth-child(1)[b-qcxmwok1ks] {
        animation-delay: 0.1s;
    }

    .user_balance.hidden i:nth-child(2)[b-qcxmwok1ks] {
        animation-delay: 0.15s;
    }

    .user_balance.hidden i:nth-child(3)[b-qcxmwok1ks] {
        animation-delay: 0.25s;
    }

    .user_balance.hidden i:nth-child(4)[b-qcxmwok1ks] {
        animation-delay: 0.33s;
    }

    .user_balance.hidden i:nth-child(5)[b-qcxmwok1ks] {
        animation-delay: 0.46s;
    }

    .user_balance.hidden i:nth-child(6)[b-qcxmwok1ks] {
        animation-delay: 0.57s;
    }

@keyframes fadeInFromBottom-b-qcxmwok1ks {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(4px);
    }

    50% {
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.text-btn[b-qcxmwok1ks] {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    color: #31acee !important;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

    .text-btn:hover[b-qcxmwok1ks] {
        color: #2b97d1 !important;
    }

.tiny_btn[b-qcxmwok1ks] {
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #ffffff0d;
    padding: 6px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.15s ease-out;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #fff;
    height: 100%;
}

    .tiny_btn:hover[b-qcxmwok1ks] {
        background: #ffffff06;
    }

    .tiny_btn p[b-qcxmwok1ks] {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        color: #fff;
    }

    .tiny_btn .svg_icon[b-qcxmwok1ks] {
        width: 8px;
        height: 6px;
    }

.react-datepicker__year-read-view--down-arrow[b-qcxmwok1ks],
.react-datepicker__month-read-view--down-arrow[b-qcxmwok1ks],
.react-datepicker__month-year-read-view--down-arrow[b-qcxmwok1ks],
.react-datepicker__navigation-icon[b-qcxmwok1ks]:before {
    border-color: #ccc;
    border-style: solid;
    border-width: 3px 3px 0 0;
    content: "";
    display: block;
    height: 9px;
    position: absolute;
    top: 6px;
    width: 9px;
}

.react-datepicker-wrapper[b-qcxmwok1ks] {
    display: inline-block;
    padding: 0;
    border: 0;
}

.react-datepicker[b-qcxmwok1ks] {
    font-family: Helvetica Neue, helvetica, arial, sans-serif;
    font-size: 0.8rem;
    background-color: #fff;
    color: #000;
    border: 1px solid #aeaeae;
    border-radius: 0.3rem;
    display: inline-block;
    position: relative;
    line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container[b-qcxmwok1ks] {
    border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time[b-qcxmwok1ks],
.react-datepicker--time-only .react-datepicker__time-box[b-qcxmwok1ks] {
    border-bottom-left-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper[b-qcxmwok1ks] {
    z-index: 1;
    line-height: 0;
}

    .react-datepicker-popper .react-datepicker__triangle[b-qcxmwok1ks] {
        stroke: #aeaeae;
    }

    .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle[b-qcxmwok1ks] {
        fill: #f0f0f0;
        color: #f0f0f0;
    }

    .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle[b-qcxmwok1ks] {
        fill: #fff;
        color: #fff;
    }

.react-datepicker__header[b-qcxmwok1ks] {
    text-align: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #aeaeae;
    border-top-left-radius: 0.3rem;
    padding: 8px 0;
    position: relative;
}

.react-datepicker__header--time[b-qcxmwok1ks] {
    padding-bottom: 8px;
    padding-left: 5px;
    padding-right: 5px;
}

    .react-datepicker__header--time:not(.react-datepicker__header--time--only)[b-qcxmwok1ks] {
        border-top-left-radius: 0;
    }

.react-datepicker__header:not(.react-datepicker__header--has-time-select)[b-qcxmwok1ks] {
    border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select[b-qcxmwok1ks],
.react-datepicker__month-dropdown-container--select[b-qcxmwok1ks],
.react-datepicker__month-year-dropdown-container--select[b-qcxmwok1ks],
.react-datepicker__year-dropdown-container--scroll[b-qcxmwok1ks],
.react-datepicker__month-dropdown-container--scroll[b-qcxmwok1ks],
.react-datepicker__month-year-dropdown-container--scroll[b-qcxmwok1ks] {
    display: inline-block;
    margin: 0 15px;
}

.react-datepicker__current-month[b-qcxmwok1ks],
.react-datepicker-time__header[b-qcxmwok1ks],
.react-datepicker-year-header[b-qcxmwok1ks] {
    margin-top: 0;
    color: #000;
    font-weight: 700;
    font-size: 0.944rem;
}

h2.react-datepicker__current-month[b-qcxmwok1ks] {
    padding: 0;
    margin: 0;
}

.react-datepicker-time__header[b-qcxmwok1ks] {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.react-datepicker__navigation[b-qcxmwok1ks] {
    align-items: center;
    background: none;
    display: flex;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 2px;
    padding: 0;
    border: none;
    z-index: 1;
    height: 32px;
    width: 32px;
    text-indent: -999em;
    overflow: hidden;
}

.react-datepicker__navigation--previous[b-qcxmwok1ks] {
    left: 2px;
}

.react-datepicker__navigation--next[b-qcxmwok1ks] {
    right: 2px;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button)[b-qcxmwok1ks] {
    right: 85px;
}

.react-datepicker__navigation--years[b-qcxmwok1ks] {
    position: relative;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.react-datepicker__navigation--years-previous[b-qcxmwok1ks] {
    top: 4px;
}

.react-datepicker__navigation--years-upcoming[b-qcxmwok1ks] {
    top: -4px;
}

.react-datepicker__navigation:hover *[b-qcxmwok1ks]:before {
    border-color: #a6a6a6;
}

.react-datepicker__navigation-icon[b-qcxmwok1ks] {
    position: relative;
    top: -1px;
    font-size: 20px;
    width: 0;
}

.react-datepicker__navigation-icon--next[b-qcxmwok1ks] {
    left: -2px;
}

    .react-datepicker__navigation-icon--next[b-qcxmwok1ks]:before {
        transform: rotate(45deg);
        left: -7px;
    }

.react-datepicker__navigation-icon--previous[b-qcxmwok1ks] {
    right: -2px;
}

    .react-datepicker__navigation-icon--previous[b-qcxmwok1ks]:before {
        transform: rotate(225deg);
        right: -7px;
    }

.react-datepicker__month-container[b-qcxmwok1ks] {
    float: left;
}

.react-datepicker__year[b-qcxmwok1ks] {
    margin: 0.4rem;
    text-align: center;
}

.react-datepicker__year-wrapper[b-qcxmwok1ks] {
    display: flex;
    flex-wrap: wrap;
    max-width: 180px;
}

.react-datepicker__year .react-datepicker__year-text[b-qcxmwok1ks] {
    display: inline-block;
    width: 4rem;
    margin: 2px;
}

.react-datepicker__month[b-qcxmwok1ks] {
    margin: 0.4rem;
    text-align: center;
}

    .react-datepicker__month .react-datepicker__month-text[b-qcxmwok1ks],
    .react-datepicker__month .react-datepicker__quarter-text[b-qcxmwok1ks] {
        display: inline-block;
        width: 4rem;
        margin: 2px;
    }

.react-datepicker__input-time-container[b-qcxmwok1ks] {
    clear: both;
    width: 100%;
    float: left;
    margin: 5px 0 10px 15px;
    text-align: left;
}

    .react-datepicker__input-time-container .react-datepicker-time__caption[b-qcxmwok1ks],
    .react-datepicker__input-time-container .react-datepicker-time__input-container[b-qcxmwok1ks] {
        display: inline-block;
    }

        .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input[b-qcxmwok1ks] {
            display: inline-block;
            margin-left: 10px;
        }

            .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[b-qcxmwok1ks] {
                width: auto;
            }

                .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"][b-qcxmwok1ks]::-webkit-inner-spin-button,
                .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"][b-qcxmwok1ks]::-webkit-outer-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

                .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"][b-qcxmwok1ks] {
                    -moz-appearance: textfield;
                }

        .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter[b-qcxmwok1ks] {
            margin-left: 5px;
            display: inline-block;
        }

.react-datepicker__time-container[b-qcxmwok1ks] {
    float: right;
    border-left: 1px solid #aeaeae;
    width: 85px;
}

.react-datepicker__time-container--with-today-button[b-qcxmwok1ks] {
    display: inline;
    border: 1px solid #aeaeae;
    border-radius: 0.3rem;
    position: absolute;
    right: -87px;
    top: 0;
}

.react-datepicker__time-container .react-datepicker__time[b-qcxmwok1ks] {
    position: relative;
    background: #fff;
    border-bottom-right-radius: 0.3rem;
}

    .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box[b-qcxmwok1ks] {
        width: 85px;
        overflow-x: hidden;
        margin: 0 auto;
        text-align: center;
        border-bottom-right-radius: 0.3rem;
    }

        .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list[b-qcxmwok1ks] {
            list-style: none;
            margin: 0;
            height: calc(195px + 0.85rem);
            overflow-y: scroll;
            padding-right: 0;
            padding-left: 0;
            width: 100%;
            box-sizing: content-box;
        }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item[b-qcxmwok1ks] {
                height: 30px;
                padding: 5px 10px;
                white-space: nowrap;
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover[b-qcxmwok1ks] {
                    cursor: pointer;
                    background-color: #f0f0f0;
                }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected[b-qcxmwok1ks] {
                background-color: #216ba5;
                color: #fff;
                font-weight: 700;
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover[b-qcxmwok1ks] {
                    background-color: #216ba5;
                }

            .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled[b-qcxmwok1ks] {
                color: #ccc;
            }

                .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover[b-qcxmwok1ks] {
                    cursor: default;
                    background-color: transparent;
                }

.react-datepicker__week-number[b-qcxmwok1ks] {
    color: #ccc;
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: 0.166rem;
}

    .react-datepicker__week-number.react-datepicker__week-number--clickable[b-qcxmwok1ks] {
        cursor: pointer;
    }

        .react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected, .react-datepicker__week-number--keyboard-selected):hover[b-qcxmwok1ks] {
            border-radius: 0.3rem;
            background-color: #f0f0f0;
        }

.react-datepicker__week-number--selected[b-qcxmwok1ks] {
    border-radius: 0.3rem;
    background-color: #216ba5;
    color: #fff;
}

    .react-datepicker__week-number--selected:hover[b-qcxmwok1ks] {
        background-color: #1d5d90;
    }

.react-datepicker__week-number--keyboard-selected[b-qcxmwok1ks] {
    border-radius: 0.3rem;
    background-color: #2a87d0;
    color: #fff;
}

    .react-datepicker__week-number--keyboard-selected:hover[b-qcxmwok1ks] {
        background-color: #1d5d90;
    }

.react-datepicker__day-names[b-qcxmwok1ks] {
    white-space: nowrap;
    margin-bottom: -8px;
}

.react-datepicker__week[b-qcxmwok1ks] {
    white-space: nowrap;
}

.react-datepicker__day-name[b-qcxmwok1ks],
.react-datepicker__day[b-qcxmwok1ks],
.react-datepicker__time-name[b-qcxmwok1ks] {
    color: #000;
    display: inline-block;
    width: 1.7rem;
    line-height: 1.7rem;
    text-align: center;
    margin: 0.166rem;
}

.react-datepicker__day[b-qcxmwok1ks],
.react-datepicker__month-text[b-qcxmwok1ks],
.react-datepicker__quarter-text[b-qcxmwok1ks],
.react-datepicker__year-text[b-qcxmwok1ks] {
    cursor: pointer;
}

    .react-datepicker__day:hover[b-qcxmwok1ks],
    .react-datepicker__month-text:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text:hover[b-qcxmwok1ks],
    .react-datepicker__year-text:hover[b-qcxmwok1ks] {
        border-radius: 0.3rem;
        background-color: #f0f0f0;
    }

.react-datepicker__day--today[b-qcxmwok1ks],
.react-datepicker__month-text--today[b-qcxmwok1ks],
.react-datepicker__quarter-text--today[b-qcxmwok1ks],
.react-datepicker__year-text--today[b-qcxmwok1ks] {
    font-weight: 700;
}

.react-datepicker__day--highlighted[b-qcxmwok1ks],
.react-datepicker__month-text--highlighted[b-qcxmwok1ks],
.react-datepicker__quarter-text--highlighted[b-qcxmwok1ks],
.react-datepicker__year-text--highlighted[b-qcxmwok1ks] {
    border-radius: 0.3rem;
    background-color: #3dcc4a;
    color: #fff;
}

    .react-datepicker__day--highlighted:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--highlighted:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--highlighted:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--highlighted:hover[b-qcxmwok1ks] {
        background-color: #32be3f;
    }

.react-datepicker__day--highlighted-custom-1[b-qcxmwok1ks],
.react-datepicker__month-text--highlighted-custom-1[b-qcxmwok1ks],
.react-datepicker__quarter-text--highlighted-custom-1[b-qcxmwok1ks],
.react-datepicker__year-text--highlighted-custom-1[b-qcxmwok1ks] {
    color: #f0f;
}

.react-datepicker__day--highlighted-custom-2[b-qcxmwok1ks],
.react-datepicker__month-text--highlighted-custom-2[b-qcxmwok1ks],
.react-datepicker__quarter-text--highlighted-custom-2[b-qcxmwok1ks],
.react-datepicker__year-text--highlighted-custom-2[b-qcxmwok1ks] {
    color: green;
}

.react-datepicker__day--holidays[b-qcxmwok1ks],
.react-datepicker__month-text--holidays[b-qcxmwok1ks],
.react-datepicker__quarter-text--holidays[b-qcxmwok1ks],
.react-datepicker__year-text--holidays[b-qcxmwok1ks] {
    position: relative;
    border-radius: 0.3rem;
    background-color: #ff6803;
    color: #fff;
}

    .react-datepicker__day--holidays .overlay[b-qcxmwok1ks],
    .react-datepicker__month-text--holidays .overlay[b-qcxmwok1ks],
    .react-datepicker__quarter-text--holidays .overlay[b-qcxmwok1ks],
    .react-datepicker__year-text--holidays .overlay[b-qcxmwok1ks] {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translate(-50%);
        background-color: #333;
        color: #fff;
        padding: 4px;
        border-radius: 4px;
        white-space: nowrap;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.3s ease-in-out;
    }

    .react-datepicker__day--holidays:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--holidays:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--holidays:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--holidays:hover[b-qcxmwok1ks] {
        background-color: #cf5300;
    }

        .react-datepicker__day--holidays:hover .overlay[b-qcxmwok1ks],
        .react-datepicker__month-text--holidays:hover .overlay[b-qcxmwok1ks],
        .react-datepicker__quarter-text--holidays:hover .overlay[b-qcxmwok1ks],
        .react-datepicker__year-text--holidays:hover .overlay[b-qcxmwok1ks] {
            visibility: visible;
            opacity: 1;
        }

.react-datepicker__day--selected[b-qcxmwok1ks],
.react-datepicker__day--in-selecting-range[b-qcxmwok1ks],
.react-datepicker__day--in-range[b-qcxmwok1ks],
.react-datepicker__month-text--selected[b-qcxmwok1ks],
.react-datepicker__month-text--in-selecting-range[b-qcxmwok1ks],
.react-datepicker__month-text--in-range[b-qcxmwok1ks],
.react-datepicker__quarter-text--selected[b-qcxmwok1ks],
.react-datepicker__quarter-text--in-selecting-range[b-qcxmwok1ks],
.react-datepicker__quarter-text--in-range[b-qcxmwok1ks],
.react-datepicker__year-text--selected[b-qcxmwok1ks],
.react-datepicker__year-text--in-selecting-range[b-qcxmwok1ks],
.react-datepicker__year-text--in-range[b-qcxmwok1ks] {
    border-radius: 0.3rem;
    background-color: #216ba5;
    color: #fff;
}

    .react-datepicker__day--selected:hover[b-qcxmwok1ks],
    .react-datepicker__day--in-selecting-range:hover[b-qcxmwok1ks],
    .react-datepicker__day--in-range:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--selected:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--in-selecting-range:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--in-range:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--selected:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--in-selecting-range:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--in-range:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--selected:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--in-selecting-range:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--in-range:hover[b-qcxmwok1ks] {
        background-color: #1d5d90;
    }

.react-datepicker__day--keyboard-selected[b-qcxmwok1ks],
.react-datepicker__month-text--keyboard-selected[b-qcxmwok1ks],
.react-datepicker__quarter-text--keyboard-selected[b-qcxmwok1ks],
.react-datepicker__year-text--keyboard-selected[b-qcxmwok1ks] {
    border-radius: 0.3rem;
    background-color: #bad9f1;
    color: #000;
}

    .react-datepicker__day--keyboard-selected:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--keyboard-selected:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--keyboard-selected:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--keyboard-selected:hover[b-qcxmwok1ks] {
        background-color: #1d5d90;
    }

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range)[b-qcxmwok1ks],
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range)[b-qcxmwok1ks],
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range)[b-qcxmwok1ks],
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--in-range)[b-qcxmwok1ks] {
    background-color: #216ba580;
}

.react-datepicker__month--selecting-range
.react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__year--selecting-range
.react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__month--selecting-range
.react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__year--selecting-range
.react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__month--selecting-range
.react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__year--selecting-range
.react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__month--selecting-range
.react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks],
.react-datepicker__year--selecting-range
.react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range, .react-datepicker__month-text--in-selecting-range, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__year-text--in-selecting-range)[b-qcxmwok1ks] {
    background-color: #f0f0f0;
    color: #000;
}

.react-datepicker__day--disabled[b-qcxmwok1ks],
.react-datepicker__month-text--disabled[b-qcxmwok1ks],
.react-datepicker__quarter-text--disabled[b-qcxmwok1ks],
.react-datepicker__year-text--disabled[b-qcxmwok1ks] {
    cursor: default;
    color: #ccc;
}

    .react-datepicker__day--disabled:hover[b-qcxmwok1ks],
    .react-datepicker__month-text--disabled:hover[b-qcxmwok1ks],
    .react-datepicker__quarter-text--disabled:hover[b-qcxmwok1ks],
    .react-datepicker__year-text--disabled:hover[b-qcxmwok1ks] {
        background-color: transparent;
    }

    .react-datepicker__day--disabled .overlay[b-qcxmwok1ks],
    .react-datepicker__month-text--disabled .overlay[b-qcxmwok1ks],
    .react-datepicker__quarter-text--disabled .overlay[b-qcxmwok1ks],
    .react-datepicker__year-text--disabled .overlay[b-qcxmwok1ks] {
        position: absolute;
        bottom: 70%;
        left: 50%;
        transform: translate(-50%);
        background-color: #333;
        color: #fff;
        padding: 4px;
        border-radius: 4px;
        white-space: nowrap;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.3s ease-in-out;
    }

.react-datepicker__input-container[b-qcxmwok1ks] {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .react-datepicker__input-container .react-datepicker__calendar-icon[b-qcxmwok1ks] {
        position: absolute;
        padding: 0.5rem;
        box-sizing: content-box;
    }

.react-datepicker__view-calendar-icon input[b-qcxmwok1ks] {
    padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view[b-qcxmwok1ks],
.react-datepicker__month-read-view[b-qcxmwok1ks],
.react-datepicker__month-year-read-view[b-qcxmwok1ks] {
    border: 1px solid transparent;
    border-radius: 0.3rem;
    position: relative;
}

    .react-datepicker__year-read-view:hover[b-qcxmwok1ks],
    .react-datepicker__month-read-view:hover[b-qcxmwok1ks],
    .react-datepicker__month-year-read-view:hover[b-qcxmwok1ks] {
        cursor: pointer;
    }

        .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow[b-qcxmwok1ks],
        .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow[b-qcxmwok1ks],
        .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow[b-qcxmwok1ks],
        .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow[b-qcxmwok1ks],
        .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow[b-qcxmwok1ks],
        .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow[b-qcxmwok1ks] {
            border-top-color: #b3b3b3;
        }

.react-datepicker__year-read-view--down-arrow[b-qcxmwok1ks],
.react-datepicker__month-read-view--down-arrow[b-qcxmwok1ks],
.react-datepicker__month-year-read-view--down-arrow[b-qcxmwok1ks] {
    transform: rotate(135deg);
    right: -16px;
    top: 0;
}

.react-datepicker__year-dropdown[b-qcxmwok1ks],
.react-datepicker__month-dropdown[b-qcxmwok1ks],
.react-datepicker__month-year-dropdown[b-qcxmwok1ks] {
    background-color: #f0f0f0;
    position: absolute;
    width: 50%;
    left: 25%;
    top: 30px;
    z-index: 1;
    text-align: center;
    border-radius: 0.3rem;
    border: 1px solid #aeaeae;
}

    .react-datepicker__year-dropdown:hover[b-qcxmwok1ks],
    .react-datepicker__month-dropdown:hover[b-qcxmwok1ks],
    .react-datepicker__month-year-dropdown:hover[b-qcxmwok1ks] {
        cursor: pointer;
    }

.react-datepicker__year-dropdown--scrollable[b-qcxmwok1ks],
.react-datepicker__month-dropdown--scrollable[b-qcxmwok1ks],
.react-datepicker__month-year-dropdown--scrollable[b-qcxmwok1ks] {
    height: 150px;
    overflow-y: scroll;
}

.react-datepicker__year-option[b-qcxmwok1ks],
.react-datepicker__month-option[b-qcxmwok1ks],
.react-datepicker__month-year-option[b-qcxmwok1ks] {
    line-height: 20px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

    .react-datepicker__year-option:first-of-type[b-qcxmwok1ks],
    .react-datepicker__month-option:first-of-type[b-qcxmwok1ks],
    .react-datepicker__month-year-option:first-of-type[b-qcxmwok1ks] {
        border-top-left-radius: 0.3rem;
        border-top-right-radius: 0.3rem;
    }

    .react-datepicker__year-option:last-of-type[b-qcxmwok1ks],
    .react-datepicker__month-option:last-of-type[b-qcxmwok1ks],
    .react-datepicker__month-year-option:last-of-type[b-qcxmwok1ks] {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-bottom-left-radius: 0.3rem;
        border-bottom-right-radius: 0.3rem;
    }

    .react-datepicker__year-option:hover[b-qcxmwok1ks],
    .react-datepicker__month-option:hover[b-qcxmwok1ks],
    .react-datepicker__month-year-option:hover[b-qcxmwok1ks] {
        background-color: #ccc;
    }

        .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming[b-qcxmwok1ks],
        .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming[b-qcxmwok1ks],
        .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming[b-qcxmwok1ks] {
            border-bottom-color: #b3b3b3;
        }

        .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous[b-qcxmwok1ks],
        .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous[b-qcxmwok1ks],
        .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous[b-qcxmwok1ks] {
            border-top-color: #b3b3b3;
        }

.react-datepicker__year-option--selected[b-qcxmwok1ks],
.react-datepicker__month-option--selected[b-qcxmwok1ks],
.react-datepicker__month-year-option--selected[b-qcxmwok1ks] {
    position: absolute;
    left: 15px;
}

.react-datepicker__close-icon[b-qcxmwok1ks] {
    cursor: pointer;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 0 6px 0 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

    .react-datepicker__close-icon[b-qcxmwok1ks]:after {
        cursor: pointer;
        background-color: #216ba5;
        color: #fff;
        border-radius: 50%;
        height: 16px;
        width: 16px;
        padding: 2px;
        font-size: 12px;
        line-height: 1;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        content: "×";
    }

.react-datepicker__close-icon--disabled[b-qcxmwok1ks] {
    cursor: default;
}

    .react-datepicker__close-icon--disabled[b-qcxmwok1ks]:after {
        cursor: default;
        background-color: #ccc;
    }

.react-datepicker__today-button[b-qcxmwok1ks] {
    background: #f0f0f0;
    border-top: 1px solid #aeaeae;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    padding: 5px 0;
    clear: left;
}

.react-datepicker__portal[b-qcxmwok1ks] {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000c;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 2147483647;
}

    .react-datepicker__portal .react-datepicker__day-name[b-qcxmwok1ks],
    .react-datepicker__portal .react-datepicker__day[b-qcxmwok1ks],
    .react-datepicker__portal .react-datepicker__time-name[b-qcxmwok1ks] {
        width: 3rem;
        line-height: 3rem;
    }

@media (max-width: 400px), (max-height: 550px) {
    .react-datepicker__portal .react-datepicker__day-name[b-qcxmwok1ks],
    .react-datepicker__portal .react-datepicker__day[b-qcxmwok1ks],
    .react-datepicker__portal .react-datepicker__time-name[b-qcxmwok1ks] {
        width: 2rem;
        line-height: 2rem;
    }
}

.react-datepicker__portal .react-datepicker__current-month[b-qcxmwok1ks],
.react-datepicker__portal .react-datepicker-time__header[b-qcxmwok1ks] {
    font-size: 1.44rem;
}

.react-datepicker__children-container[b-qcxmwok1ks] {
    width: 13.8rem;
    margin: 0.4rem;
    padding-right: 0.2rem;
    padding-left: 0.2rem;
    height: auto;
}

.react-datepicker__aria-live[b-qcxmwok1ks] {
    position: absolute;
    clip-path: circle(0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    width: 1px;
    white-space: nowrap;
}

.react-datepicker__calendar-icon[b-qcxmwok1ks] {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}
/*! CSS Used from: https://app.theironmarkets.com/assets/index-CukNxZR_.css */
div[b-qcxmwok1ks],
span[b-qcxmwok1ks],
h3[b-qcxmwok1ks],
p[b-qcxmwok1ks],
a[b-qcxmwok1ks],
img[b-qcxmwok1ks],
form[b-qcxmwok1ks] {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

*[b-qcxmwok1ks] {
    font-family: Open Sans !important;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 100%;
}

.scrollbar-hide[b-qcxmwok1ks]::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide[b-qcxmwok1ks] {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-zoom-14px[b-qcxmwok1ks] {
    font-size: 16px;
    transform-origin: top left;
    transform: scale(0.875);
    width: 205.71px;
    height: 20px;
    padding: 4.57px;
    border-width: 0px;
    border-radius: 0 !important;
    margin-right: -25.71px;
    margin-bottom: -3px;
}
/*! CSS Used from: Embedded */
.css-1x2rcon[b-qcxmwok1ks] {
    background-color: rgb(5, 8, 11);
}

.css-1vru7qh[b-qcxmwok1ks] {
    padding: 0px 32px 144px;
    background: transparent;
    height: 100%;
    overflow: scroll;
}

@media screen and (max-width: 768px) {
    .css-1vru7qh[b-qcxmwok1ks] {
        padding-bottom: 180px;
    }
}

.css-wdz6e6[b-qcxmwok1ks] {
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 32px 0px;
    box-sizing: border-box;
}

    .css-wdz6e6 .link[b-qcxmwok1ks] {
        text-decoration: none;
        font-size: 14px;
        line-height: 18px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
    }

.css-1ne255a[b-qcxmwok1ks] {
    width: 100%;
    height: 100%;
    min-height: 100%;
    animation: 250ms ease-out 0s 1 normal none running slideInFade;
}

.css-1axhzbi[b-qcxmwok1ks] {
    max-width: 470px;
    width: 100%;
    color: white;
    margin: 64px auto 0px;
}

    .css-1axhzbi .auth_form_title[b-qcxmwok1ks] {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        color: rgb(255, 255, 255);
    }

    .css-1axhzbi .auth_form_fields[b-qcxmwok1ks] {
        margin-top: 40px;
        display: grid;
        gap: 18px;
    }

    .css-1axhzbi .form_action_text[b-qcxmwok1ks] {
        margin-top: 16px;
        font-size: 14px;
        font-weight: 600;
        transition: 80ms ease-in-out;
    }

        .css-1axhzbi .form_action_text a[b-qcxmwok1ks] {
            color: rgb(49, 170, 206);
            text-decoration: none;
        }

    .css-1axhzbi .auth_form_footer[b-qcxmwok1ks] {
        margin-top: 48px;
    }

    .css-1axhzbi .email-placement[b-qcxmwok1ks],
    .css-1axhzbi .password-placement[b-qcxmwok1ks] {
        display: none;
        font-size: 14px;
        opacity: 0;
        transition: 80ms ease-in-out;
    }

.css-jdqo73[b-qcxmwok1ks] {
    display: grid;
    gap: 6px;
    margin: 0px !important;
    padding: 0px !important;
}

    .css-jdqo73 .input_wrapper[b-qcxmwok1ks] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        padding: 10px 8px !important;
    }

        .css-jdqo73 .input_wrapper:hover[b-qcxmwok1ks] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-jdqo73 input[b-qcxmwok1ks] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        appearance: none;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-jdqo73 input:-webkit-autofill[b-qcxmwok1ks],
        .css-jdqo73 input:-webkit-autofill:hover[b-qcxmwok1ks],
        .css-jdqo73 input:-webkit-autofill:focus[b-qcxmwok1ks],
        .css-jdqo73 input:-webkit-autofill:active[b-qcxmwok1ks] {
            background-clip: text;
            -webkit-text-fill-color: rgb(255, 255, 255);
            transition: background-color 5000s ease-in-out;
            box-shadow: transparent 0px 0px 20px 20px inset;
        }

        .css-jdqo73 input[b-qcxmwok1ks]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

    .css-jdqo73 .email-placement[b-qcxmwok1ks] {
        display: none;
        font-size: 14px;
        opacity: 0;
        transition: 80ms ease-in-out;
    }

.css-1vv7r1s[b-qcxmwok1ks] {
    display: grid;
    gap: 6px;
    margin-top: 0px !important;
}

    .css-1vv7r1s .input_wrapper[b-qcxmwok1ks] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        height: 42px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        position: relative;
        padding: 10px 8px !important;
    }

        .css-1vv7r1s .input_wrapper .show_btn[b-qcxmwok1ks] {
            background-color: transparent;
            border: none;
            outline: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 16px;
            font-weight: 600;
            cursor: pointer;
            position: absolute;
            right: 0px;
        }

        .css-1vv7r1s .input_wrapper:hover[b-qcxmwok1ks] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-1vv7r1s input[b-qcxmwok1ks] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-1vv7r1s input:-webkit-autofill[b-qcxmwok1ks],
        .css-1vv7r1s input:-webkit-autofill:hover[b-qcxmwok1ks],
        .css-1vv7r1s input:-webkit-autofill:focus[b-qcxmwok1ks],
        .css-1vv7r1s input:-webkit-autofill:active[b-qcxmwok1ks] {
            background-clip: text;
            -webkit-text-fill-color: rgb(255, 255, 255);
            transition: background-color 5000s ease-in-out;
            box-shadow: transparent 0px 0px 20px 20px inset;
        }

        .css-1vv7r1s input[b-qcxmwok1ks]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

    .css-1vv7r1s .password-placement[b-qcxmwok1ks] {
        display: none;
        font-size: 14px;
        opacity: 0;
        transition: 80ms ease-in-out;
    }

.css-nncgg[b-qcxmwok1ks] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-qcxmwok1ks] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-bqapth5sxn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-bqapth5sxn] {
    flex: 1;
}

.sidebar[b-bqapth5sxn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-bqapth5sxn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-bqapth5sxn]  a, .top-row[b-bqapth5sxn]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-bqapth5sxn]  a:hover, .top-row[b-bqapth5sxn]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-bqapth5sxn]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-bqapth5sxn] {
        justify-content: space-between;
    }

    .top-row[b-bqapth5sxn]  a, .top-row[b-bqapth5sxn]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-bqapth5sxn] {
        flex-direction: row;
    }

    .sidebar[b-bqapth5sxn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-bqapth5sxn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-bqapth5sxn]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-bqapth5sxn], article[b-bqapth5sxn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-bqapth5sxn] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-bqapth5sxn] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Pages/Account/Register.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-1ne255a[b-k1br64d5qo] {
    width: 100%;
    height: 100%;
    min-height: 100%;
    animation: 250ms ease-out 0s 1 normal none running slideInFade;
}

.css-1axhzbi[b-k1br64d5qo] {
    max-width: 470px;
    width: 100%;
    color: white;
    margin: 64px auto 0px;
}

    .css-1axhzbi .auth_form_title[b-k1br64d5qo] {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        color: rgb(255, 255, 255);
    }

    .css-1axhzbi .auth_form_fields[b-k1br64d5qo] {
        margin-top: 40px;
        display: grid;
        gap: 18px;
    }

    .css-1axhzbi .form_action_text[b-k1br64d5qo] {
        margin-top: 16px;
        font-size: 14px;
        font-weight: 600;
        transition: 80ms ease-in-out;
    }

        .css-1axhzbi .form_action_text a[b-k1br64d5qo] {
            color: rgb(49, 170, 206);
            text-decoration: none;
        }

    .css-1axhzbi .auth_form_footer[b-k1br64d5qo] {
        margin-top: 48px;
    }

    .css-1axhzbi .text-btn[b-k1br64d5qo] {
        outline: none;
        border: none;
        background: transparent;
        color: rgb(49, 170, 206);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        place-self: flex-start;
        padding: 0px !important;
        margin: 0px !important;
    }

    .css-1axhzbi .first-name-placement[b-k1br64d5qo],
    .css-1axhzbi .last-name-placement[b-k1br64d5qo],
    .css-1axhzbi .email-placement[b-k1br64d5qo],
    .css-1axhzbi .password-placement[b-k1br64d5qo],
    .css-1axhzbi .confirm-placement[b-k1br64d5qo],
    .css-1axhzbi .phone-placement[b-k1br64d5qo] {
        display: none;
        font-size: 14px;
        opacity: 0;
        transition: 80ms ease-in-out;
    }

.css-jdqo73[b-k1br64d5qo] {
    display: grid;
    gap: 6px;
    margin: 0px !important;
    padding: 0px !important;
}

    .css-jdqo73 .input_wrapper[b-k1br64d5qo] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        padding: 10px 8px !important;
    }

        .css-jdqo73 .input_wrapper:hover[b-k1br64d5qo] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-jdqo73 input[b-k1br64d5qo] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        appearance: none;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-jdqo73 input:-webkit-autofill[b-k1br64d5qo],
        .css-jdqo73 input:-webkit-autofill:hover[b-k1br64d5qo],
        .css-jdqo73 input:-webkit-autofill:focus[b-k1br64d5qo],
        .css-jdqo73 input:-webkit-autofill:active[b-k1br64d5qo] {
            background-clip: text;
            -webkit-text-fill-color: rgb(255, 255, 255);
            transition: background-color 5000s ease-in-out;
            box-shadow: transparent 0px 0px 20px 20px inset;
        }

        .css-jdqo73 input[b-k1br64d5qo]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

    .css-jdqo73 .first-name-placement[b-k1br64d5qo],
    .css-jdqo73 .last-name-placement[b-k1br64d5qo],
    .css-jdqo73 .email-placement[b-k1br64d5qo] {
        display: none;
        font-size: 14px;
        opacity: 0;
        transition: 80ms ease-in-out;
    }

.css-1wnllbt[b-k1br64d5qo] {
    width: 100%;
}

    .css-1wnllbt .select_wrapper[b-k1br64d5qo] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        background: rgba(255, 255, 255, 0.024);
        border-radius: 8px;
        margin-top: 6px;
        border: 1px solid transparent;
        transition: border 150ms ease-out;
        position: relative;
        height: 42px;
        min-width: 135px;
        width: 100%;
        padding: 10px 8px !important;
    }

    .css-1wnllbt .svg_icon[b-k1br64d5qo] {
        width: 8px;
        height: 6px;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }

    .css-1wnllbt .select_wrapper button[b-k1br64d5qo] {
        appearance: none;
        width: 100%;
        border: none;
        outline: none;
        color: white;
        background: transparent;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        height: 100%;
        cursor: pointer;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 8px;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-1wnllbt .select_wrapper button p[b-k1br64d5qo] {
            font-size: 14px;
            line-height: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
        }

    .css-1wnllbt .select_wrapper:hover[b-k1br64d5qo] {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

.css-1kyvdx0[b-k1br64d5qo] {
    position: relative;
}

.css-9s4rph[b-k1br64d5qo] {
    display: none;
    position: absolute;
    left: 0px;
    max-width: 80%;
    min-width: 80%;
    z-index: 101;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 200ms ease-out, opacity 100ms ease-out;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    margin-top: 4px;
    border-radius: 8px;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

.css-jhp2bj[b-k1br64d5qo] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-jhp2bj .search_box[b-k1br64d5qo] {
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        padding: 6px;
        border: none;
        outline: none;
        background: rgb(30, 33, 36) !important;
        margin: 0px !important;
    }

        .css-jhp2bj .search_box div[b-k1br64d5qo] {
            border: none !important;
            outline: none !important;
            margin: 0px !important;
        }

    .css-jhp2bj .scrollable[b-k1br64d5qo] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-jhp2bj .scrollable div[b-k1br64d5qo] {
            cursor: pointer;
            transition: 100ms ease-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-jhp2bj .scrollable div .country_item[b-k1br64d5qo] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-jhp2bj .scrollable div:hover[b-k1br64d5qo] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div p[b-k1br64d5qo] {
                font-size: 14px;
                white-space: nowrap;
                color: rgb(255, 255, 255);
                line-height: 18px;
                font-weight: 500;
            }

@media (max-width: 768px) {
    .css-jhp2bj .scrollable[b-k1br64d5qo] {
        padding-bottom: 200px;
    }
}

.css-g70r1a[b-k1br64d5qo] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}

    .css-g70r1a img[b-k1br64d5qo] {
        width: 16px;
        height: 16px;
    }

    .css-g70r1a input[b-k1br64d5qo] {
        line-height: 18px;
        color: rgb(255, 255, 255);
        border: none;
        outline: none;
        background: transparent;
        font-weight: 500;
        width: 100%;
    }

        .css-g70r1a input[b-k1br64d5qo]::placeholder {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

.css-13blo34[b-k1br64d5qo] {
    width: 100%;
}

    .css-13blo34 .select_wrapper[b-k1br64d5qo] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        border-radius: 8px;
        margin-top: 6px;
        height: 42px;
        background: rgba(255, 255, 255, 0.024);
        border: 1px solid transparent;
        transition: border 150ms ease-out;
        min-width: 135px;
        padding: 10px 4px !important;
    }

        .css-13blo34 .select_wrapper input[b-k1br64d5qo] {
            line-height: 18px;
            color: rgb(255, 255, 255);
            border: none;
            outline: none;
            background: transparent;
            font-weight: 500;
            width: 100%;
            margin: 0px !important;
            padding: 0px !important;
        }

            .css-13blo34 .select_wrapper input[b-k1br64d5qo]::placeholder {
                color: rgba(255, 255, 255, 0.75);
                font-weight: 500;
            }

        .css-13blo34 .select_wrapper .left[b-k1br64d5qo] {
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            gap: 4px;
            width: 100%;
            height: 100%;
            background: transparent;
            margin: 0px;
            max-width: max-content;
        }

    .css-13blo34 .svg_icon[b-k1br64d5qo] {
        margin-left: -6px;
        transition: 150ms ease-in-out;
    }

    .css-13blo34 .select_wrapper button[b-k1br64d5qo] {
        width: 100%;
        border: none;
        outline: none;
        color: white;
        background: transparent;
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        height: 100%;
        cursor: pointer;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        gap: 4px;
        max-width: max-content;
    }

        .css-13blo34 .select_wrapper button p[b-k1br64d5qo] {
            font-size: 13px;
            line-height: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            margin-left: 4px;
        }

            .css-13blo34 .select_wrapper button p.has_country[b-k1br64d5qo] {
                color: white;
            }

    .css-13blo34 .select_wrapper:hover[b-k1br64d5qo] {
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

.css-1844oih[b-k1br64d5qo] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-1844oih .search_box[b-k1br64d5qo] {
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        padding: 6px;
        border: none;
        outline: none;
        background: rgb(30, 33, 36) !important;
        margin: 0px !important;
    }

        .css-1844oih .search_box div[b-k1br64d5qo] {
            border: none !important;
            outline: none !important;
            margin: 0px !important;
        }

    .css-1844oih .scrollable[b-k1br64d5qo] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-1844oih .scrollable div[b-k1br64d5qo] {
            cursor: pointer;
            transition: 100ms ease-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-1844oih .scrollable div .country_item[b-k1br64d5qo] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-1844oih .scrollable div:hover[b-k1br64d5qo] {
                background-color: rgba(0, 0, 0, 0.35);
            }

            .css-1844oih .scrollable div p[b-k1br64d5qo] {
                font-size: 14px;
                white-space: nowrap;
                color: rgb(255, 255, 255);
                line-height: 18px;
                font-weight: 500;
            }

@media (max-width: 768px) {
    .css-1844oih .scrollable[b-k1br64d5qo] {
        padding-bottom: 200px;
    }
}

.css-1vv7r1s[b-k1br64d5qo] {
    display: grid;
    gap: 6px;
    margin-top: 0px !important;
}

    .css-1vv7r1s .input_wrapper[b-k1br64d5qo] {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        gap: 4px;
        border: 1px solid transparent;
        transition: border 150ms ease-in-out;
        min-width: 135px;
        height: 42px;
        margin-top: 6px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.024);
        position: relative;
        padding: 10px 8px !important;
    }

        .css-1vv7r1s .input_wrapper .show_btn[b-k1br64d5qo] {
            background-color: transparent;
            border: none;
            outline: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 16px;
            font-weight: 600;
            cursor: pointer;
            position: absolute;
            right: 0px;
        }

        .css-1vv7r1s .input_wrapper:hover[b-k1br64d5qo] {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

    .css-1vv7r1s input[b-k1br64d5qo] {
        background: transparent;
        border: none;
        outline: none;
        color: white;
        line-height: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0px !important;
        padding: 0px !important;
    }

        .css-1vv7r1s input:-webkit-autofill[b-k1br64d5qo],
        .css-1vv7r1s input:-webkit-autofill:hover[b-k1br64d5qo],
        .css-1vv7r1s input:-webkit-autofill:focus[b-k1br64d5qo],
        .css-1vv7r1s input:-webkit-autofill:active[b-k1br64d5qo] {
            background-clip: text;
            -webkit-text-fill-color: rgb(255, 255, 255);
            transition: background-color 5000s ease-in-out;
            box-shadow: transparent 0px 0px 20px 20px inset;
        }

        .css-1vv7r1s input[b-k1br64d5qo]::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

    .css-1vv7r1s .password-placement[b-k1br64d5qo],
    .css-1vv7r1s .confirm-placement[b-k1br64d5qo] {
        display: none;
        font-size: 14px;
        opacity: 0;
        transition: 80ms ease-in-out;
    }

.css-1azirga span[b-k1br64d5qo] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
}

    .css-1azirga span p[b-k1br64d5qo] {
        font-size: 16px;
        line-height: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
    }

    .css-1azirga span strong[b-k1br64d5qo] {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

.css-1azirga .select_wrapper[b-k1br64d5qo] {
    background: rgba(255, 255, 255, 0.024);
    border-radius: 8px;
    margin-top: 6px;
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: border 150ms ease-out;
    position: relative;
    height: 40px;
    min-width: 135px;
    width: 100%;
}

.css-1azirga .svg_icon[b-k1br64d5qo] {
    width: 8px;
    height: 6px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.css-1azirga .select_wrapper:hover[b-k1br64d5qo] {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.css-hojqro[b-k1br64d5qo] {
    display: none;
    position: absolute;
    left: 0px;
    max-width: 80%;
    min-width: 80%;
    z-index: 101;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 200ms ease-out, opacity 100ms ease-out;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    margin-top: 4px;
    border-radius: 8px;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}

.css-v28khi[b-k1br64d5qo] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-v28khi .scrollable[b-k1br64d5qo] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-v28khi .scrollable div[b-k1br64d5qo] {
            cursor: pointer;
            transition: 0.2s ease-in-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-v28khi .scrollable div .currency_item[b-k1br64d5qo] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-v28khi .scrollable div.selected[b-k1br64d5qo] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-v28khi .scrollable div:hover[b-k1br64d5qo] {
                background-color: rgba(0, 0, 0, 0.25);
            }

            .css-v28khi .scrollable div p[b-k1br64d5qo] {
                font-size: 14px;
                white-space: nowrap;
                color: rgb(255, 255, 255);
                line-height: 18px;
                font-weight: 500;
            }

.css-nncgg[b-k1br64d5qo] {
    background: rgb(49, 172, 238);
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 42px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 150ms ease-in;
    margin: 0px !important;
}

    .css-nncgg.disabled[b-k1br64d5qo] {
        background-color: grey;
        pointer-events: none;
        user-select: none;
        cursor: not-allowed;
    }
/* /Pages/Auth/ForgetPassword.razor.rz.scp.css */

.form-group[b-9cfs5ptdtl] {
    margin-bottom: 20px;
    width: 100%;
}

label[b-9cfs5ptdtl] {
    color: #3f4b5b;
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

input[type="email"][b-9cfs5ptdtl] {
    border: 1px solid #dcdee2;
    border-radius: 4px;
    color: #4d4d4d;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
    width: 100%;
}

    input[type="email"]:focus[b-9cfs5ptdtl] {
        border-color: #5897fb;
        box-shadow: 0 0 0 2px #5897fb1a;
        outline: none;
    }

.login-container[b-9cfs5ptdtl] {
    align-items: center;
    background-color: #2c334212;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.login-box[b-9cfs5ptdtl] {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-large);
    max-width: 400px;
    padding: 2.5rem;
    position: relative;
    width: 100%;
    z-index: 2;
}

    .login-box h2[b-9cfs5ptdtl] {
        color: var(--text-primary);
        font-family: helvetica neue, Helvetica, Arial, sans-serif;
        font-size: 34px;
        font-weight: 600;
        letter-spacing: -0.01em;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        text-align: center;
    }

.login-subtitle[b-9cfs5ptdtl] {
    color: var(--text-secondary);
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.login-form[b-9cfs5ptdtl] {
    gap: 1.5rem;
}

.form-group[b-9cfs5ptdtl],
.login-form[b-9cfs5ptdtl] {
    display: flex;
    flex-direction: column;
}

.form-group[b-9cfs5ptdtl] {
    gap: 0.5rem;
}

    .form-group input[b-9cfs5ptdtl],
    .form-group label[b-9cfs5ptdtl] {
        font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
        font-size: 16px;
    }

    .form-group input[b-9cfs5ptdtl] {
        border: 1px solid #2c33422b;
        border-radius: 5px;
        padding: 0.75rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus[b-9cfs5ptdtl] {
            border-color: var(--secondary-color);
            outline: none;
        }

.form-options[b-9cfs5ptdtl] {
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
    font-size: 14px;
    justify-content: space-between;
}

.form-options[b-9cfs5ptdtl],
.remember-me[b-9cfs5ptdtl] {
    align-items: center;
    display: flex;
}

.remember-me[b-9cfs5ptdtl] {
    color: var(--text-secondary);
    gap: 0.5rem;
}

.forgot-password[b-9cfs5ptdtl] {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.25s ease;
}

    .forgot-password:hover[b-9cfs5ptdtl] {
        color: var(--primary-color);
        text-decoration: none;
    }

.login-button[b-9cfs5ptdtl] {
    background-color: #2c3342;
    border: 1px solid #2c3342;
    border-radius: 5px;
    box-shadow: 0 15px 35px #2c334226;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
    font-size: 16px;
    font-weight: 600;
    min-height: 45px;
    overflow: hidden;
    width: 100%;
    padding: 18px 35px;
    position: relative;
    z-index: 1;
}

    .login-button[b-9cfs5ptdtl]:before {
        background-color: #ad7f4e;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transition: width 0.25s ease;
        width: 0;
        z-index: -1;
    }

    .login-button:hover[b-9cfs5ptdtl]:before {
        width: 100%;
    }

    .login-button:hover[b-9cfs5ptdtl] {
        border-color: #ad7f4e;
        color: #fff;
    }

    .login-button:disabled[b-9cfs5ptdtl] {
        background-color: #ccc;
        border-color: #ccc;
        cursor: not-allowed;
        opacity: 0.7;
    }

        .login-button:disabled[b-9cfs5ptdtl]:before {
            display: none;
        }
    .login-button.secondary:hover[b-9cfs5ptdtl] {
        background-color: var(--primary-color);
        color: #fff;
    }
@media (max-width: 480px) {
    .login-container[b-9cfs5ptdtl] {
        margin-top: 100px;
        padding: var(--spacing-m);
    }

    .login-box[b-9cfs5ptdtl] {
        border-radius: var(--border-radius-s);
        padding: var(--spacing-l);
    }

    .form-options[b-9cfs5ptdtl] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

.form-group[b-9cfs5ptdtl] {
    margin-bottom: 1rem;
}

    .form-group label[b-9cfs5ptdtl] {
        color: #333;
    }

    .form-group input[b-9cfs5ptdtl] {
        border: 2px solid #ddd;
        border-radius: 6px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus[b-9cfs5ptdtl] {
            border-color: #2c5530;
            box-shadow: 0 0 0 3px #2c55301a;
        }

@media (max-width: 768px) {
    .form-group[b-9cfs5ptdtl] {
        margin-bottom: 0.75rem;
    }

        .form-group input[b-9cfs5ptdtl] {
            border-radius: 8px;
            font-size: 16px;
            padding: 0.875rem;
        }

        .form-group label[b-9cfs5ptdtl] {
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }
}

@media (max-width: 480px) {
    .form-group[b-9cfs5ptdtl] {
        margin-bottom: 0.6rem;
    }

        .form-group input[b-9cfs5ptdtl] {
            border-radius: 6px;
            font-size: 16px;
            padding: 0.75rem;
        }

        .form-group label[b-9cfs5ptdtl] {
            font-size: 0.85rem;
            margin-bottom: 0.35rem;
        }
}

@media (max-width: 768px) {
    .form-group input:focus[b-9cfs5ptdtl] {
        box-shadow: 0 0 0 3px #2c553026;
    }
}

.form-group label[b-9cfs5ptdtl] {
    font-weight: 600;
}

.input[b-9cfs5ptdtl] {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-group input:focus[b-9cfs5ptdtl] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px #ad7f4e1a;
    outline: none;
}

.form-group[b-9cfs5ptdtl] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-9cfs5ptdtl] {
        color: var(--text-primary);
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
/* /Pages/Auth/Login.razor.rz.scp.css */

.form-group[b-r9ytrvwml9] {
    margin-bottom: 20px;
    width: 100%;
}

label[b-r9ytrvwml9] {
    color: #3f4b5b;
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

input[type="email"][b-r9ytrvwml9] {
    border: 1px solid #dcdee2;
    border-radius: 4px;
    color: #4d4d4d;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
    width: 100%;
}

    input[type="email"]:focus[b-r9ytrvwml9] {
        border-color: #5897fb;
        box-shadow: 0 0 0 2px #5897fb1a;
        outline: none;
    }

.login-container[b-r9ytrvwml9] {
    align-items: center;
    background-color: #2c334212;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.login-box[b-r9ytrvwml9] {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-large);
    max-width: 400px;
    padding: 2.5rem;
    position: relative;
    width: 100%;
    z-index: 2;
}

    .login-box h2[b-r9ytrvwml9] {
        color: var(--text-primary);
        font-family: helvetica neue, Helvetica, Arial, sans-serif;
        font-size: 34px;
        font-weight: 600;
        letter-spacing: -0.01em;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        text-align: center;
    }

.login-subtitle[b-r9ytrvwml9] {
    color: var(--text-secondary);
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.login-form[b-r9ytrvwml9] {
    gap: 1.5rem;
}

.form-group[b-r9ytrvwml9],
.login-form[b-r9ytrvwml9] {
    display: flex;
    flex-direction: column;
}

.form-group[b-r9ytrvwml9] {
    gap: 0.5rem;
}

    .form-group input[b-r9ytrvwml9],
    .form-group label[b-r9ytrvwml9] {
        font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
        font-size: 16px;
    }

    .form-group input[b-r9ytrvwml9] {
        border: 1px solid #2c33422b;
        border-radius: 5px;
        padding: 0.75rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus[b-r9ytrvwml9] {
            border-color: var(--secondary-color);
            outline: none;
        }

.form-options[b-r9ytrvwml9] {
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
    font-size: 14px;
    justify-content: space-between;
}

.form-options[b-r9ytrvwml9],
.remember-me[b-r9ytrvwml9] {
    align-items: center;
    display: flex;
}

.remember-me[b-r9ytrvwml9] {
    color: var(--text-secondary);
    gap: 0.5rem;
}

.forgot-password[b-r9ytrvwml9] {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.25s ease;
}

    .forgot-password:hover[b-r9ytrvwml9] {
        color: var(--primary-color);
        text-decoration: none;
    }

.login-button[b-r9ytrvwml9] {
    background-color: #2c3342;
    border: 1px solid #2c3342;
    border-radius: 5px;
    box-shadow: 0 15px 35px #2c334226;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
    font-size: 16px;
    font-weight: 600;
    min-height: 45px;
    overflow: hidden;
    width: 100%;
    padding: 18px 35px;
    position: relative;
    z-index: 1;
}

    .login-button[b-r9ytrvwml9]:before {
        background-color: #ad7f4e;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transition: width 0.25s ease;
        width: 0;
        z-index: -1;
    }

    .login-button:hover[b-r9ytrvwml9]:before {
        width: 100%;
    }

    .login-button:hover[b-r9ytrvwml9] {
        border-color: #ad7f4e;
        color: #fff;
    }

    .login-button:disabled[b-r9ytrvwml9] {
        background-color: #ccc;
        border-color: #ccc;
        cursor: not-allowed;
        opacity: 0.7;
    }

        .login-button:disabled[b-r9ytrvwml9]:before {
            display: none;
        }

@media (max-width: 480px) {
    .login-container[b-r9ytrvwml9] {
        margin-top: 100px;
        padding: var(--spacing-m);
    }

    .login-box[b-r9ytrvwml9] {
        border-radius: var(--border-radius-s);
        padding: var(--spacing-l);
    }

    .form-options[b-r9ytrvwml9] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

.form-group[b-r9ytrvwml9] {
    margin-bottom: 1rem;
}

    .form-group label[b-r9ytrvwml9] {
        color: #333;
    }

    .form-group input[b-r9ytrvwml9] {
        border: 2px solid #ddd;
        border-radius: 6px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus[b-r9ytrvwml9] {
            border-color: #2c5530;
            box-shadow: 0 0 0 3px #2c55301a;
        }

@media (max-width: 768px) {
    .form-group[b-r9ytrvwml9] {
        margin-bottom: 0.75rem;
    }

        .form-group input[b-r9ytrvwml9] {
            border-radius: 8px;
            font-size: 16px;
            padding: 0.875rem;
        }

        .form-group label[b-r9ytrvwml9] {
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }
}

@media (max-width: 480px) {
    .form-group[b-r9ytrvwml9] {
        margin-bottom: 0.6rem;
    }

        .form-group input[b-r9ytrvwml9] {
            border-radius: 6px;
            font-size: 16px;
            padding: 0.75rem;
        }

        .form-group label[b-r9ytrvwml9] {
            font-size: 0.85rem;
            margin-bottom: 0.35rem;
        }
}

@media (max-width: 768px) {
    .form-group input:focus[b-r9ytrvwml9] {
        box-shadow: 0 0 0 3px #2c553026;
    }
}

.form-group label[b-r9ytrvwml9] {
    font-weight: 600;
}

.input[b-r9ytrvwml9] {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

    .form-group input:focus[b-r9ytrvwml9] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px #ad7f4e1a;
        outline: none;
    }

.form-group[b-r9ytrvwml9] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-r9ytrvwml9] {
        color: var(--text-primary);
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
/* /Pages/Auth/SignUp.razor.rz.scp.css */

.contact-header-wrapper[b-aqzqoyv0jh] {
    padding-top: 100px;
    position: relative;
}

    .contact-header-wrapper > :first-child[b-aqzqoyv0jh] {
        background-color: #fff;
        position: relative;
        z-index: 2;
    }

.contact-header[b-aqzqoyv0jh] {
    background-color: #2c334212;
    margin-top: -1px;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 100px;
    position: relative;
    text-align: left;
}

.contact-header-overlay[b-aqzqoyv0jh] {
    background-position: 50%;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.contact-header-container[b-aqzqoyv0jh] {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.contact-header-title[b-aqzqoyv0jh] {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.shape-dots[b-aqzqoyv0jh] {
    background-image: radial-gradient(circle, #e0e0e0 2px, #0000 0);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .shape-dots[b-aqzqoyv0jh] {
        display: none;
    }
}

.shape-dots.top[b-aqzqoyv0jh] {
    height: 173px;
    left: 77px;
    top: -40px;
    width: 309px;
}

.shape-dots.bottom[b-aqzqoyv0jh] {
    bottom: -30px;
    height: 222px;
    right: -147px;
    width: 172px;
}

.contact-row[b-aqzqoyv0jh] {
    grid-gap: 40px;
    background-color: #fff;
    box-shadow: 0 5px 70px #262a4c1a;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    margin: 10px auto 20px;
    max-width: 1200px;
    padding: 80px 15px;
}

.contact-column[b-aqzqoyv0jh] {
    padding: 20px;
}

    .contact-column.left[b-aqzqoyv0jh] {
        padding-right: 40px;
    }

.contact-intro[b-aqzqoyv0jh] {
    margin-bottom: 30px;
}

    .contact-intro p[b-aqzqoyv0jh] {
        color: #696969;
        font-size: 15px;
        line-height: 1.6;
    }

.contact-form[b-aqzqoyv0jh] {
    width: 100%;
}

.form-row[b-aqzqoyv0jh] {
    gap: 40px;
    margin-bottom: 20px;
}

.form-group[b-aqzqoyv0jh] {
    margin-bottom: 20px;
    width: 100%;
}

.three-columns[b-aqzqoyv0jh] {
    grid-gap: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}

label[b-aqzqoyv0jh] {
    color: #3f4b5b;
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

input[type="email"][b-aqzqoyv0jh],
input[type="tel"][b-aqzqoyv0jh],
input[type="text"][b-aqzqoyv0jh],
select[b-aqzqoyv0jh],
textarea[b-aqzqoyv0jh] {
    border: 1px solid #dcdee2;
    border-radius: 4px;
    color: #4d4d4d;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
    width: 100%;
}

    input[type="email"]:focus[b-aqzqoyv0jh],
    input[type="tel"]:focus[b-aqzqoyv0jh],
    input[type="text"]:focus[b-aqzqoyv0jh],
    select:focus[b-aqzqoyv0jh],
    textarea:focus[b-aqzqoyv0jh] {
        border-color: #5897fb;
        box-shadow: 0 0 0 2px #5897fb1a;
        outline: none;
    }

textarea[b-aqzqoyv0jh] {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group[b-aqzqoyv0jh],
.radio-group[b-aqzqoyv0jh] {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .checkbox-group label[b-aqzqoyv0jh],
    .radio-group label[b-aqzqoyv0jh] {
        align-items: center;
        cursor: pointer;
        display: flex;
        font-weight: 400;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .checkbox-group input[type="checkbox"][b-aqzqoyv0jh],
    .radio-group input[type="radio"][b-aqzqoyv0jh] {
        margin-top: 4px;
    }

.char-count[b-aqzqoyv0jh] {
    margin-top: 5px;
    text-align: right;
}

.char-count[b-aqzqoyv0jh],
.field-hint[b-aqzqoyv0jh] {
    color: #8d8d8d;
    font-size: 12px;
}

.field-hint[b-aqzqoyv0jh] {
    display: block;
    margin-top: 4px;
    text-align: left;
}

.submit-button[b-aqzqoyv0jh] {
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    transition: background-color 0.3s ease;
}

    .submit-button:hover[b-aqzqoyv0jh] {
        color: #724412;
    }

.image-container[b-aqzqoyv0jh] {
    margin-top: 20px;
    position: relative;
}

.contact-image[b-aqzqoyv0jh] {
    border-radius: 8px;
    box-shadow: var(--wp--preset--shadow--deep);
    display: block;
    margin: 0 auto;
    position: relative;
    width: 60%;
    z-index: 2;
}

.shape-dots[b-aqzqoyv0jh] {
    background-image: radial-gradient(circle, #000 2px, #0000 0);
    background-size: 15px 15px;
    opacity: 0.75;
    position: absolute;
    z-index: 1;
}

    .shape-dots.top[b-aqzqoyv0jh] {
        height: 150px;
        left: -50px;
        top: 80px;
        width: 300px;
    }

    .shape-dots.bottom[b-aqzqoyv0jh] {
        height: 300px;
        right: 0;
        top: -100px;
        width: 150px;
    }

@media (max-width: 768px) {
    .contact-row[b-aqzqoyv0jh] {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .contact-column.left[b-aqzqoyv0jh] {
        padding-right: 0;
    }

    .form-row[b-aqzqoyv0jh] {
        flex-direction: column;
        gap: 10px;
    }

    .three-columns[b-aqzqoyv0jh] {
        grid-gap: 10px;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(3, 1fr);
    }
}

.required[b-aqzqoyv0jh] {
    font-weight: 700;
}

.checkbox-group[b-aqzqoyv0jh] {
    margin: 15px 0;
}

    .checkbox-group label[b-aqzqoyv0jh] {
        align-items: flex-start;
        cursor: pointer;
        display: flex;
        font-weight: 400;
        margin-top: 10px;
    }

    .checkbox-group input[type="checkbox"][b-aqzqoyv0jh] {
        margin-right: 10px;
        margin-top: 2px;
        transform: scale(1.2);
        width: auto;
    }

.submit-button[b-aqzqoyv0jh] {
    background-color: #cf9455;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 30px;
    padding: 15px;
    transition: all 0.3s ease;
}

    .submit-button:hover[b-aqzqoyv0jh] {
        background-color: #b8824a;
        box-shadow: 0 4px 12px #cf94554d;
        transform: translateY(-2px);
    }

.form-group[b-aqzqoyv0jh] {
    display: flex;
    flex-direction: column;
}

.form-group[b-aqzqoyv0jh] {
    gap: 0.5rem;
}

    .form-group input[b-aqzqoyv0jh],
    .form-group label[b-aqzqoyv0jh] {
        font-family: -apple-system, BlinkMacSystemFont, segoe ui, helvetica neue, sans-serif;
        font-size: 16px;
    }

    .form-group input[b-aqzqoyv0jh] {
        border: 1px solid #2c33422b;
        border-radius: 5px;
        padding: 0.75rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus[b-aqzqoyv0jh] {
            border-color: var(--secondary-color);
            outline: none;
        }

.form-group[b-aqzqoyv0jh] {
    margin-bottom: 1rem;
}

.form-row[b-aqzqoyv0jh] {
    grid-gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-group label[b-aqzqoyv0jh] {
    color: #333;
}

.form-group input[b-aqzqoyv0jh],
.form-group select[b-aqzqoyv0jh],
.form-group textarea[b-aqzqoyv0jh] {
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

    .form-group input:focus[b-aqzqoyv0jh],
    .form-group select:focus[b-aqzqoyv0jh],
    .form-group textarea:focus[b-aqzqoyv0jh] {
        border-color: #2c5530;
        box-shadow: 0 0 0 3px #2c55301a;
    }

.form-group textarea[b-aqzqoyv0jh] {
    min-height: 80px;
    resize: vertical;
}

.submit-button[b-aqzqoyv0jh] {
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.submit-button[b-aqzqoyv0jh] {
    background-color: #2c5530;
}

    .submit-button:hover:not(:disabled)[b-aqzqoyv0jh] {
        background-color: #1e3a21;
    }

    .submit-button:disabled[b-aqzqoyv0jh] {
        background-color: #ccc;
        color: #999;
    }

@media (max-width: 768px) {
    .form-row[b-aqzqoyv0jh] {
        gap: 0.75rem;
        grid-template-columns: 1fr;
    }

    .form-group[b-aqzqoyv0jh] {
        margin-bottom: 0.75rem;
    }

        .form-group input[b-aqzqoyv0jh],
        .form-group select[b-aqzqoyv0jh],
        .form-group textarea[b-aqzqoyv0jh] {
            border-radius: 8px;
            font-size: 16px;
            padding: 0.875rem;
        }

        .form-group label[b-aqzqoyv0jh] {
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }

    .submit-button[b-aqzqoyv0jh] {
        border-radius: 8px;
        font-size: 16px;
        padding: 0.875rem 1.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-group[b-aqzqoyv0jh] {
        margin-bottom: 0.6rem;
    }

        .form-group input[b-aqzqoyv0jh],
        .form-group select[b-aqzqoyv0jh],
        .form-group textarea[b-aqzqoyv0jh] {
            border-radius: 6px;
            font-size: 16px;
            padding: 0.75rem;
        }

        .form-group label[b-aqzqoyv0jh] {
            font-size: 0.85rem;
            margin-bottom: 0.35rem;
        }

    .submit-button[b-aqzqoyv0jh] {
        border-radius: 6px;
        font-size: 15px;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .form-group input:focus[b-aqzqoyv0jh],
    .form-group select:focus[b-aqzqoyv0jh],
    .form-group textarea:focus[b-aqzqoyv0jh] {
        box-shadow: 0 0 0 3px #2c553026;
    }

    .submit-button[b-aqzqoyv0jh] {
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        min-height: 44px;
    }

        .submit-button:active[b-aqzqoyv0jh] {
            transform: translateY(1px);
        }

        .submit-button:disabled[b-aqzqoyv0jh]:after {
            height: 14px;
            width: 14px;
        }
}

.submit-button:disabled[b-aqzqoyv0jh] {
    position: relative;
}

    .submit-button:disabled[b-aqzqoyv0jh]:after {
        animation: spin-b-aqzqoyv0jh 1s ease infinite;
        border: 2px solid #0000;
        border-radius: 50%;
        border-top-color: #fff;
        content: "";
        height: 16px;
        margin: auto;
        position: absolute;
        width: 16px;
    }

.form-group.half[b-aqzqoyv0jh] {
    flex: 1 1;
}

.form-row[b-aqzqoyv0jh] {
    display: flex;
    gap: 1rem;
}

.form-group label[b-aqzqoyv0jh] {
    font-weight: 600;
}

.required[b-aqzqoyv0jh] {
    color: #dc3545;
}

.form-group input[b-aqzqoyv0jh],
.form-group select[b-aqzqoyv0jh],
.form-group textarea[b-aqzqoyv0jh] {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

    .form-group input:focus[b-aqzqoyv0jh],
    .form-group select:focus[b-aqzqoyv0jh],
    .form-group textarea:focus[b-aqzqoyv0jh] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px #ad7f4e1a;
        outline: none;
    }

.submit-button[b-aqzqoyv0jh] {
    background: linear-gradient(135deg, #2c3342 0, #b8824a 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    text-transform: uppercase;
    transition: all 0.2s ease;
    width: 100%;
}

    .submit-button:hover:not(:disabled)[b-aqzqoyv0jh] {
        box-shadow: 0 4px 12px #ad7f4e66;
        transform: translateY(-2px);
    }

    .submit-button:disabled[b-aqzqoyv0jh] {
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

@media (max-width: 768px) {
    .form-row[b-aqzqoyv0jh] {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half[b-aqzqoyv0jh] {
        margin-bottom: 1.5rem;
    }
}

.form-group[b-aqzqoyv0jh] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-aqzqoyv0jh] {
        color: var(--text-primary);
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }
/*! CSS Used keyframes */
@keyframes spin-b-aqzqoyv0jh {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}
/* /Pages/Dashboard/Deposit.razor.rz.scp.css */
.page[b-2hrlyse4ou] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.container[b-2hrlyse4ou] {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 960px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
}

/* Heading */
.header[b-2hrlyse4ou] {
    margin-bottom: 28px;
}

    .header h1[b-2hrlyse4ou] {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
        color: #23344a;
    }

    .header p[b-2hrlyse4ou] {
        margin: 6px 0 0;
        font-size: 13px;
        color: #6c7b8a;
    }

/* Info box */
.info-box[b-2hrlyse4ou] {
    background: #f1f5fb;
    border-radius: 8px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 71, 187, 0.08);
    margin-bottom: 28px;
}

    .info-box h2[b-2hrlyse4ou] {
        font-size: 14px;
        margin: 0 0 12px;
        font-weight: 600;
        color: #1b3a5e;
    }

    .info-box ul[b-2hrlyse4ou] {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .info-box li[b-2hrlyse4ou] {
        font-size: 13px;
        color: #425b73;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
    }

        .info-box li[b-2hrlyse4ou]::before {
            content: "✓";
            color: #2f76d2;
            margin-right: 10px;
            font-weight: 700;
        }

/* Form styles */
form[b-2hrlyse4ou] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

label[b-2hrlyse4ou] {
    font-size: 13px;
    color: #1d2c3d;
    font-weight: 500;
    margin-bottom: 6px;
    display: inline-block;
}

input[type="text"][b-2hrlyse4ou],
input[type="number"][b-2hrlyse4ou],
select[b-2hrlyse4ou] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(27,43,34,0.08);
    border-radius: 8px;
    background: #fafafa;
    font-size: 14px;
    outline: none;
    transition: all 0.12s ease;
}

    input:focus[b-2hrlyse4ou], select:focus[b-2hrlyse4ou] {
        border-color: rgba(47,118,210,0.4);
        box-shadow: 0 4px 12px rgba(47,118,210,0.08);
        background: #fff;
    }

.input-group[b-2hrlyse4ou] {
    display: flex;
    align-items: center;
}

    .input-group span[b-2hrlyse4ou] {
        margin-left: 10px;
        font-size: 13px;
        color: #6f7f8e;
    }

/* Summary box */
.summary-box[b-2hrlyse4ou] {
    background: #fbfcfe;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 14px;
    margin-top: 6px;
}

.summary-row[b-2hrlyse4ou] {
    display: flex;
    justify-content: space-between;
    padding: 10px 4px;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

    .summary-row:last-child[b-2hrlyse4ou] {
        border-bottom: none;
    }

.summary-label[b-2hrlyse4ou] {
    color: #6c7b8a;
    font-size: 13px;
}

.summary-value[b-2hrlyse4ou] {
    color: #1d2c3d;
    font-weight: 600;
    font-size: 13px;
}

/* Button */
.submit-wrap[b-2hrlyse4ou] {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-submit[b-2hrlyse4ou] {
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    cursor: pointer;
    color: #fff;
    letter-spacing: 0.8px;
    background: linear-gradient(90deg, #2b2a2a 0%, #3f3b37 35%, #c58f4f 100%);
    width: 100%;
    max-width: 480px;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

    .btn-submit:active[b-2hrlyse4ou] {
        transform: scale(0.99);
    }

@media (min-width: 820px) {
    form[b-2hrlyse4ou] {
        max-width: 600px;
    }
}

@media (max-width: 420px) {
    .container[b-2hrlyse4ou] {
        padding: 20px;
    }

    .header h1[b-2hrlyse4ou] {
        font-size: 24px;
    }
}
/* /Pages/Dashboard/Investements.razor.rz.scp.css */
.container[b-yf2f6niznx] {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header[b-yf2f6niznx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .header h2[b-yf2f6niznx] {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
    }

.btn-primary[b-yf2f6niznx] {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-primary:hover[b-yf2f6niznx] {
        background-color: #2563eb;
    }

.summary-cards[b-yf2f6niznx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card[b-yf2f6niznx] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}

    .card h3[b-yf2f6niznx] {
        font-size: 1rem;
        color: #6b7280;
        margin-bottom: 10px;
    }

    .card .value[b-yf2f6niznx] {
        font-size: 1.5rem;
        font-weight: 700;
        color: #111827;
    }

    .card .subtext[b-yf2f6niznx] {
        color: #16a34a;
        font-size: 0.9rem;
        margin-top: 6px;
    }

.table-section[b-yf2f6niznx] {
    margin-top: 20px;
}

table[b-yf2f6niznx] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

thead[b-yf2f6niznx] {
    background-color: #f3f4f6;
}

th[b-yf2f6niznx], td[b-yf2f6niznx] {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

th[b-yf2f6niznx] {
    font-weight: 600;
    color: #374151;
}

td[b-yf2f6niznx] {
    color: #4b5563;
}

.positive[b-yf2f6niznx] {
    color: #16a34a;
    font-weight: 600;
}

.status[b-yf2f6niznx] {
    
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-transform: capitalize;
    display: inline-block;
}

    .status.Closed[b-yf2f6niznx] {
        background: #dcfce7;
        color: #166534;
    }

    .status.Completed[b-yf2f6niznx] {
        background: #dcfce7;
        color: #166534;
    }

    .status.Running[b-yf2f6niznx] {
        background: #fef3c7;
        color: #92400e;
    }

    .status.Pending[b-yf2f6niznx] {
        background: #fef3c7;
        color: #92400e;
    }

    .status.failed[b-yf2f6niznx] {
        background: #fee2e2;
        color: #991b1b;
    }

@media (max-width: 768px) {
    body[b-yf2f6niznx] {
        padding: 20px;
    }

    .header[b-yf2f6niznx] {
        flex-direction: column;
        gap: 15px;
    }
}
/* /Pages/Dashboard/Transactions.razor.rz.scp.css */
.container[b-js30e9esi4] {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 2rem;
    max-width: 1000px;
    width: 100%;
}

h2[b-js30e9esi4] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ---------- Filter Row ---------- */
.filters[b-js30e9esi4] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

select[b-js30e9esi4],
input[type="date"][b-js30e9esi4] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    font-size: 0.9rem;
    color: #1e293b;
}

/* ---------- Table ---------- */
table[b-js30e9esi4] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th[b-js30e9esi4] {
    text-align: left;
    color: #64748b;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

td[b-js30e9esi4] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}

tr:hover[b-js30e9esi4] {
    background-color: #f8fafc;
}

.type[b-js30e9esi4] {
    color: #64748b;
    font-size: 0.85rem;
}

.amount[b-js30e9esi4] {
    font-weight: 600;
}

.status[b-js30e9esi4] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 9999px;
    text-transform: lowercase;
}

    .status.Approved[b-js30e9esi4] {
        background-color: #ecfdf5;
        color: #059669;
    }
    .status.Pending[b-js30e9esi4] {
        background-color: #fef3c7;
        color: #d97706;
    }
    .status.Declined[b-js30e9esi4] {
        background-color: #fef2f2;
        color: #dc2626;
    }

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    table[b-js30e9esi4],
    thead[b-js30e9esi4],
    tbody[b-js30e9esi4],
    th[b-js30e9esi4],
    td[b-js30e9esi4],
    tr[b-js30e9esi4] {
        display: block;
    }

    thead[b-js30e9esi4] {
        display: none;
    }

    tr[b-js30e9esi4] {
        margin-bottom: 1rem;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    td[b-js30e9esi4] {
        border: none;
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

        td[b-js30e9esi4]::before {
            content: attr(data-label);
            font-weight: 600;
            color: #64748b;
        }
}
/* /Pages/Dashboard/Withdraw.razor.rz.scp.css */
/* ========== Page layout ========== */
.page-wrap[b-hrqptp8c3d] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}

.shell[b-hrqptp8c3d] {
    width: 100%;
    max-width: 980px;
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(19,24,30,0.06), 0 2px 6px rgba(19,24,30,0.04);
    border: 1px solid rgba(27,43,34,0.04);
}

/* Top heading */
.heading[b-hrqptp8c3d] {
    max-width: 820px;
    margin: 4px 6px 20px 6px;
}

    .heading h1[b-hrqptp8c3d] {
        margin: 8px 0 6px 0;
        font-weight: 600;
        font-size: 28px;
        color: #25422f; /* deep green */
        letter-spacing: -0.2px;
    }

    .heading p[b-hrqptp8c3d] {
        margin: 0;
        color: #65736b;
        font-size: 13px;
        line-height: 1.4;
    }

.divider-accent[b-hrqptp8c3d] {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(37,66,47,0.85), rgba(37,66,47,0.15));
    margin: 18px 0 22px 0;
    border-radius: 4px;
    opacity: 0.85;
}

/* Main content area */
.form-grid[b-hrqptp8c3d] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* inner card for withdrawal details */
.card[b-hrqptp8c3d] {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid rgba(27,43,34,0.06);
    box-shadow: inset 0 0 0 1px rgba(27,43,34,0.01);
}

    .card h2[b-hrqptp8c3d] {
        margin: 0 0 14px 0;
        font-size: 13px;
        font-weight: 600;
        color: #2f4f3b;
        letter-spacing: 1px;
    }

    /* thin accent rule under title */
    .card .title-rule[b-hrqptp8c3d] {
        height: 2px;
        width: 100%;
        background: #2f4f3b;
        opacity: 0.18;
        margin: 10px 0 18px 0;
        border-radius: 2px;
    }

/* form layout inside card */
.form-row[b-hrqptp8c3d] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

label[b-hrqptp8c3d] {
    display: block;
    font-size: 13px;
    color: #2b4a39;
    margin-bottom: 6px;
    font-weight: 500;
}

.note[b-hrqptp8c3d] {
    font-size: 12px;
    color: #7b8a83;
    margin-top: 6px;
}

input[type="text"][b-hrqptp8c3d],
input[type="number"][b-hrqptp8c3d],
select[b-hrqptp8c3d],
textarea[b-hrqptp8c3d] {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #213127;
    background: #fafafa;
    border: 1px solid rgba(27,43,34,0.08);
    border-radius: 8px;
    outline: none;
    transition: box-shadow .12s ease, border-color .12s ease;
}

    input:focus[b-hrqptp8c3d], select:focus[b-hrqptp8c3d], textarea:focus[b-hrqptp8c3d] {
        box-shadow: 0 6px 18px rgba(37,66,47,0.06);
        border-color: rgba(37,66,47,0.32);
        background: #fff;
    }

select[b-hrqptp8c3d] {
    appearance: none;
    background-image: linear-gradient(45deg,transparent 50%, #9aa79a 50%), linear-gradient(135deg,#9aa79a 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

textarea[b-hrqptp8c3d] {
    min-height: 90px;
    resize: vertical;
    line-height: 1.4;
    font-family: inherit;
}

.small-muted[b-hrqptp8c3d] {
    font-size: 12px;
    color: #9aa69f;
}

/* summary box (light table) */
.summary[b-hrqptp8c3d] {
    margin-top: 6px;
    background: #fbfbfb;
    border-radius: 8px;
    padding: 14px;
    border: 1px solid rgba(27,43,34,0.03);
}

    .summary .row[b-hrqptp8c3d] {
        display: flex;
        justify-content: space-between;
        padding: 10px 4px;
        border-bottom: 1px dashed rgba(27,43,34,0.03);
        align-items: center;
    }

        .summary .row:last-child[b-hrqptp8c3d] {
            border-bottom: none;
        }

    .summary .label[b-hrqptp8c3d] {
        color: #6f7f78;
        font-size: 13px;
    }

    .summary .value[b-hrqptp8c3d] {
        color: #2f4f3b;
        font-weight: 600;
    }

/* CTA */
.cta-wrap[b-hrqptp8c3d] {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.btn-submit[b-hrqptp8c3d] {
    border: none;
    cursor: pointer;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    color: white;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(90deg, #2b2a2a 0%, #3f3b37 30%, #c58f4f 100%);
    box-shadow: 0 8px 30px rgba(197,143,79,0.12), 0 2px 6px rgba(0,0,0,0.06) inset;
    transition: transform .08s ease, box-shadow .12s ease, opacity .12s;
}

    .btn-submit:active[b-hrqptp8c3d] {
        transform: translateY(1px) scale(.998);
    }

    .btn-submit:disabled[b-hrqptp8c3d] {
        opacity: .6;
        cursor: not-allowed;
        filter: grayscale(.25);
    }

/* spacing / small helpers */
.muted[b-hrqptp8c3d] {
    color: #708278;
    font-size: 13px;
}

.form-section[b-hrqptp8c3d] {
    padding: 0;
}

/* Responsive / layout breakpoints */
@media (min-width: 880px) {
    .form-grid[b-hrqptp8c3d] {
        grid-template-columns: 1fr 360px;
        gap: 26px;
        align-items: start;
    }

    .card[b-hrqptp8c3d] {
        padding: 22px;
    }
}

@media (max-width: 420px) {
    .shell[b-hrqptp8c3d] {
        padding: 18px;
        border-radius: 10px;
    }

    .heading h1[b-hrqptp8c3d] {
        font-size: 22px;
    }
}
