﻿.add-fund-modal {
    position: fixed;
    background: #fff;
    top: calc(60px * var(--scale));
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    z-index: 12;
    display: none;
}


    .add-fund-modal.active {
        display: flex;
        flex-direction: column;
    }


    .add-fund-modal .modal-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

.table-container {
    flex-grow: 1;
    overflow-y: auto;
    direction: rtl;
    margin-top: 20px;
}

.add-fund-modal-flex {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.margin-body {
    margin: calc(75px * var(--scale)) calc(100px * var(--scale)) calc(20px * var(--scale)) calc(100px * var(--scale));
    overflow: hidden;
}

.add-fund-modal .title {
    font-size: calc(26px * var(--scale));
    font-weight: bold;
}


.bottom-button {
    background: #3473EB;
    border-radius: 3px;
    width: calc(125px * var(--scale));
    height: calc(32px * var(--scale));
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    line-height: calc(32px * var(--scale));
    color: #fff;
    display: block;
    text-align: center;
}

    .bottom-button.disabled {
        background-color: #f5f5f5 !important;
    }