@font-face {
    font-family: IRANSansXFaNum;
    src: local(IRANSansXFaNum-Regular-),
    url(../fonts/Webfonts/Woff2/IRANSansXFaNum-Regular.woff2) format("woff2"),
    url(../fonts/Webfonts/Woff/IRANSansXFaNum-Regular.woff) format("woff"),
    url(../fonts/IRANSansXFaNum-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: IRANSansXFaNum;
    src:
            url(../fonts/Webfonts/Woff2/IRANSansXFaNum-Bold.woff2) format("woff2"),
            url(../fonts/Webfonts/Woff/IRANSansXFaNum-Bold.woff) format("woff"),
            url(../fonts/IRANSansXFaNum-Bold.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: IRANSansXFaNum;
    direction: rtl;
    background-color: #fdfdfd;
}


.menu-desktop {
    background: #fff;
    width: 22%;
    height: 100%;
    position: fixed;
    transition: .3s;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    padding-top: 40px;
}

.menu-desktop::-webkit-scrollbar {
    width: 8px;
}

.menu-desktop::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.menu-desktop::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    /* border-radius: 50px; */
}

.app {
    padding: 25px;
    padding-right: 24%;
}

.box {
    background-color: #fff;
    box-shadow: 0 0 5px #91919129;
    border-radius: 8px;
    padding: 15px;
}

.menu-desktop-item-body {
    margin-top: 25px;
}

.menu-desktop-item {
    display: flex;
    color: #545454;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.menu-desktop-item i {
    flex-grow: 1;
    display: flex;
    justify-content: end;
}

.menu-desktop-collapse {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 0px 10px;
    margin-bottom: 10px;
    padding: 10px;
    padding-bottom: 0;
}

.menu-desktop-collapse .menu-desktop-item .menu-desktop-item-img {
    height: 33px;
}

.menu-desktop-collapse .menu-desktop-item {
    padding: 5px 0px
}

.menu-desktop-collapse-border {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.menu-desktop-item:hover {
    text-decoration: none;
}

.menu-desktop-item-title {
    margin-right: 12px;
    font-size: 13px;
    font-weight: 600;
}

.menu-desktop-item-img {
    background: #f4f4f4;
    padding: 5px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
}

.menu-desktop-item.active {
    background: #f2e3f7;
}

.menu-desktop-item.active .menu-desktop-item-img {
    background: unset;
}

.menu-desktop-logo {
    display: flex;
    align-items: center;
}

.menu-desktop-logo-img {
    width: 48px;
}

.menu-desktop-logo-title {
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #005290;
}

.menu-desktop-logo-title span {
    color: #9104c4;
}



@media (max-width:1100px) {

    .menu-desktop-item-title {
        display: none;
    }


    .menu-desktop-item.active {
        background: unset;
    }

    .menu-desktop-item.active .menu-desktop-item-img {
        background: #f2e3f7;

    }

    .menu-desktop {
        width: 15%;
    }

    .app {
        padding-right: 17%;
    }

    .menu-desktop-item-body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-desktop-logo-title {
        display: none;
    }

    .menu-desktop-logo {
        text-align: center;
    }

    .menu-desktop-logo {
        justify-content: center;
    }

    .menu-desktop-item i {
        display: none;
    }

    .menu-desktop-collapse {
        padding: 0px;
        padding-top: 10px;
    }


    .menu-desktop-collapse .menu-desktop-item {
        padding: 5px 10px;
    }
}


/* menu mobile */

.menu-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
}

.menu-mobile-icon {
    width: 40px;
}

.menu-mobile-btn {
    border: 0;
    background: transparent;
    outline: none;
    color: #9104c4;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: all 0.4s ease-in-out;
    border-radius: 0px 25px 25px 0px;
}

.offcanvas.active {
    left: 0;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.4s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
}

#overlay.active {
    visibility: visible;
    transition: background 0.4s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 100;
}

.menu-mobile-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #ddd;
}

.menu-mobile-item:hover {
    text-decoration: none;
}

.menu-mobile-item.active {
    background-color: #e5f3fa;
    border-bottom: none;
}

.menu-mobile-item:first-child {
    border-radius: 0px 25px 0px 0px;
}

.menu-mobile-item:last-child {
    border-bottom: none;
}

.menu-mobile-item-info {
    margin-right: 20px;
}

.menu-mobile-item-title {
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.menu-mobile-item-mute {
    font-size: 12px;
    color: #9b9b9b;
}

.menu-mobile-item-icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    color: #9104c4;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-blog {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.pd-20 {
    padding: 20px;
}

.content-mobile {
    padding: 20px;
}

.cm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cm-item:hover {
    text-decoration: none;
}

.cm-item-img {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 8px;
}

.cm-item-title {
    font-size: 10px;
    color: #000;
    margin-top: 5px;
}

.search-box-m-text {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.search-box-m-btn {
    background: #0073ad;
    color: #fff;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 10px;
}

.search-box-m-btn:hover {
    color: #fff;
    text-decoration: none
}


.px-14 {
    padding-right: 14px;
    padding-left: 14px;
}


.py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-m-title {
    font-size: 16px;
    font-weight: 600;
}

.header-m-link {
    font-size: 12px;
    color: #005290;
}


.header-m-link:hover {
    text-decoration: none;
}

.fs-10 {
    font-size: 10px;
}

.card-m-blog {
    box-shadow: 0 2px 6px #afafaf3d !important;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

.card-m-blog-img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
}

.card-m-blog-title {
    font-size: 10px;
    width: 100%;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    height: 30px;
    color: #000;
}

.shadow-2 {
    box-shadow: 0 2px 5px #d3d3d3 !important;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cd-item-img {
    background: #eaeaea;
    width: 56px;
    height: 56px;
    padding: 10px;
    border-radius: 50%;
    margin-top: -50px;
}

.cd-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #005290;
    margin-top: 15px;
    padding-bottom: 15px;
}

.cd-item-text {
    padding-top: 15px;
    border-top: 1px solid #d1d1d1;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    color: #000;
    text-align: center;
}

.d-header-title {
    color: #9104c4;
    font-size: 16px;
    font-weight: 600;
}


a:hover {
    text-decoration: none;
}

.menu-mobile-bottom {
    position: fixed;
    bottom: 0;
    height: 68px;
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 6px #afafaf3d !important;
    border-radius: 12px 12px 0px 0px;
    display: flex;
    align-items: center;
    z-index: 99;
    justify-content: space-around;
}

.menu-mobile-bottom-item {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
}

.menu-mobile-bottom-logo img {
    width: 36px;
    height: 36px;
    border: 2px solid #d1d1d1;
    padding: 5px;
    border-radius: 8px;
}

.menu-mobile-bottom-item.active {
    background: #efe0f4;
}

/* modal */
.modal-footer {
    flex-wrap: nowrap;
}

.modal-content {
    border-radius: 10px;
}

.modal-login-input {
    height: 53px;
    border-radius: 12px;
    font-size: 14px;
    text-align: left;
}

.modal-login-input::placeholder {
    direction: rtl !important;
    text-align: right !important;
}

.btn.btn-modal-primary {
    width: 100%;
    background: #005290;
    color: white;
    border-radius: 10px;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
}


.btn.btn-modal-outline {
    width: 100%;
    border: 1px solid #d8d8d8;
    color: #005290;
    border-radius: 10px;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
}

.modal-login-link {
    font-size: 14px;
    display: block;
}

.color-link {
    color: #005290;
}

.modal-title {
    font-size: 16px;
    font-weight: 600;
}

.br-10 {
    border-radius: 10px;
}

.btn-n {
    border: 0;
    background: transparent;
    outline: none;
}

@media (max-width:767px) {
    .modal-dialog.modal-dialog-centered {
        height: 100%;
        margin: 0;
    }

    .modal-content {
        border-radius: 0;
        height: 100%;
    }

    .menu-desktop {
        display: none;
    }

    .app {
        padding: 0;
    }

    .px-m-20 {
        padding: 0 20px;
    }

    .box {
        box-shadow: 0 2px 6px #afafaf3d !important;
    }

    .content-desktop {
        display: none;
    }

    .d-m-none {
        display: none !important;
    }

    .mr-m-20 {
        margin-right: 20px;
    }
}


@media (min-width:768px) {

    .modal-content {
        max-width: 400px;
    }

    .menu-mobile {
        display: none;
    }

    .offcanvas {
        display: none;
    }

    #overlay {
        display: none;
    }

    .content-mobile {
        display: none;
    }

    .menu-mobile-bottom {
        display: none;
    }
}


.wallet-wrap-1-btn {
    background: #9104c4;
    color: #fff;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 16px;
    border: 0;
    transition: 0.3s;
    border: 1px solid #9104c4;
}

.wallet-wrap-1-btn:hover {
    background: #fff;
    color: #9104c4;
}

.wallet-wrap-1-btn:active {
    background: #9104c4;
    color: #fff;
}

.wallet-wrap-1-btn-price {
    width: 100%;
    margin-left: 10px;
    height: 48px;
    border: 0;
    background: transparent;
    border: 1px solid #9104c4;
    border-radius: 10px;
    transition: 0.3s;
}

.wallet-wrap-1-btn-price:hover {
    background: #9104c4;
    color: #fff;
}

.wallet-wrap-1-btn-price.active {
    background: #9104c4;
    color: #fff;
}

.wallet-wrap-1-btn-price:last-child {
    margin: 0;
}

.wallet-wrap-1-input {
    height: 53px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
}

.wallet-wrap-1-input:focus {
    border-color: #f2e3f7;
    box-shadow: 0 0 0 0.2rem rgb(242 227 247);
}

.wallet-wrap-1-label {
    font-size: 12px;
    color: #969696;
    margin-top: 20px;
}

.wallet-wrap-1-title {
    font-size: 16px;
    font-weight: 600;
}

.wallet-wrap-1-amount {
    margin: 0 5px;
    font-weight: 600;
    font-size: 18px;
}

.wallet-wrap-1-img {
    margin-top: -15px;
}

.wallet-wrap-2-title {
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 10px;
}

.wallet-wrap-2-label {
    font-size: 14px;
    color: #8d8d8d;
}

.wallet-wrap-2-group {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 0px 5px;
}

.wallet-wrap-2-group .form-control {
    border: 0;
    border-radius: 0;
    border-left: 1px solid #ced4da;
    border-radius: 0;
    height: 50px;
    font-size: 14px;
}

.wallet-wrap-2-group .form-control:focus {
    box-shadow: unset;
    color: #9104c4;
}

.wallet-wrap-2-group .form-control:last-child {
    border-left: 0;
}

.wallet-wrap-2-btn {
    color: #fff;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #9104c4;
    border: 1px solid #9104c4;
    margin-bottom: 1px;
    width: 100%;
    transition: 0.3s;
}

.wallet-wrap-2-btn:hover {
    background: #fff;
    color: #9104c4;
}


.loan-wrap-1 img {
    width: 40px;
}

.loan-wrap-1 span {
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.loan-wrap-1 {
    display: flex;
    align-items: center;
}

.loan-wrap-info-title {
    color: #9b9b9b;
    font-size: 14px;
}

.loan-wrap-info-title {
    color: #9b9b9b;
    font-size: 14px;
}

.loan-wrap-info-data {
    font-weight: 600;
}

.loan-wrap-1-btn {
    height: 50px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.signle-loan-wrap-1 {
    background: #eef6f3;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.signle-loan-wrap-1-data {
    color: #32b78f;
    font-size: 16px;
    font-weight: 600;
}

.signle-loan-wrap-1-data span {
    margin-left: 5px;
}

.signle-loan-wrap-2-box {
    height: 58px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.signle-loan-wrap-2-btn {
    border: 0;
    background: #9104c4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.signle-loan-wrap-2-btn:is(:disabled) {
    cursor: pointer;
    background: #9b9b9b;
}

span.signle-loan-mount {
    font-size: 14px;
}

#signle-loan-input {
    border: 0;
    width: 20px;
    padding: 0;
    outline: none;
}

.box h4 {
    font-size: 18px;
    font-weight: 600;
}

.box p {
    font-size: 14px;
}

.fs-14 {
    font-size: 14px;
}

.range-body {
    margin-top: 43px;
}

.range-slider {
    width: 100%;
    direction: ltr;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.range-tooltip-body {
    font-size: 12px;
    color: #a5a5a5;
    margin-bottom: 7px;
}

.range {
    width: 100%;
}


.range {
    background: linear-gradient(to right, #0050b2 0%, #0050b2 00%, #edeff3 00%, #edeff3 100%);
    -webkit-appearance: none;
    width: 100%;
    height: 9px;
    border-radius: 5px;
    background-color: #edeff3;
    outline: none;
    margin: 10px 0;
    transition: background-color 0.2s ease;
}

.range::-webkit-slider-runnable-track {
    background: var(--range-progress);
}

.range::-moz-range-track {
    background: var(--range-progress);
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.signle-loan-wrap-3-btn {
    border: 0;
    background: #9105c4;
    height: 44px;
    padding: 0 30px;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
}

.text-1 {
    color: #9105c4;
}

.bg-1 {
    background: #9105c4 !important;
}

.btn-modal-loan {
    width: 100%;
    background: #9105c4;
    color: white;
    border-radius: 10px;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-modal-loan img {
    width: 40px;
}

.table .thead-light th {
    color: #495057;
    background-color: #f2e3f7;
    border-color: transparent;
    text-align: center;
}

.thead-light th:first-child {
    border-radius: 0 10px 10px 0;
}

.thead-light th:last-child {
    border-radius: 10px 0px 0px 10px;
}

.table {
    margin-bottom: 0;
}

tr {
    white-space: nowrap;
}

.table td,
.table th {
    text-align: right;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #f2e3f7;
}

button.btn.btn-block.text-right:focus {
    box-shadow: unset;
}

.btn-acc {
    font-size: 14px;
    font-weight: 600;
    border: 0;
    outline: none;
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:768px) {

    .wallet-wrap-1-img {
        display: none;
    }

    .border-m-0 {
        border: 0 !important;
    }
}




.sheba-bank-img {
    width: 32;
    height: 32px;
}

.sheba-bank-name {
    font-size: 18px;
    font-weight: 600;
}


.card-number {
    padding: 14px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    height: 45px;
}

.card-number:focus {
    transition: .2s ease;
    outline: none !important;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgb(0 82 144);
}

.deposit-number {
    padding: 14px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    text-align: left;
    font-size: 16px;
    height: 45px;
    width: 100%;
    direction: ltr;
}

.deposit-number:focus {
    transition: .2s ease;
    outline: none !important;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgb(0 82 144);
}

.depositnumber-lable {
    font-size: 12px;
}



.cardnumber-container {
    display: flex;
    justify-content: space-between;
    direction: ltr;
}

.card-number {
    width: 23%;
}

.sheba-bank-transparent {
    width: 100%;
    border: 1px solid #005290;
    outline: none;
    border-radius: 8px;
    font-size: 14px;
    padding: 5px;
    background: transparent;
    color: #005290;
    font-weight: 600;
    height: 34px;
    transition: 0.3s;
}


.sheba-bank-transparent:hover {
    background: #005290;
    color: #fff;
}

.sheba-bank-transparent:active {
    background: transparent;
    border: 1px solid #005290;
    color: #005290;
}



@media (max-width:767px) {

    .sheba-bank-btn:after {
        display: none;
    }

    .sheba-header-title {
        font-size: 18px;
        font-weight: 600;
    }

    .sheba-bank-tab {
        width: 100%;
    }


    .sheba-bank-nav {
        background: #eaeaea;
        width: 100%;
        height: 52px;
        border-radius: 10px;
        margin-bottom: 15px;
        flex-wrap: nowrap;
        align-items: center;
        padding: 8px;
    }

    .sheba-bank-btn {
        border: 0;
        font-size: 14px;
        color: #484848;
        height: 40px;
        width: 100%;
    }

    .sheba-bank-btn.active {
        background: #484848;
    }

}


.disable-card{
    filter: blur(3px);
}