@import url('https://cdn.javanan.org/fonts/iransansx/iransansxfanum.css');

html {
    direction: rtl;
    font-family: IRANSansXFaNum;
}

* {
    box-sizing: border-box;
    font-family: IRANSansXFaNum;
    --text: #37485c;
    --text2: #8c8d8e;
    --border-color: #ece6da;
    --radius: 24px;
    --radius2: 8px;
    --primary: #4A90E4;
}

a {
    text-decoration: none;
    color: initial;
}

body {
    background-color: #f4f2ee;
    margin: 0;
    color: var(--text);
}

nav {
    width: 100%;
    background-color: #2C3B5A;
    background-color: var(--primary);
    padding: 8px 0;
}

    nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    nav .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        nav .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        nav .logo .title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
        }

    nav .menuBar {
        font-size: 1.3rem;
        color: #fff;
        text-align: center;
        padding: 3px 7px 0px;
        cursor: pointer;
        display: none;
    }

    nav .avatar {
        display: flex;
        align-items: center;
        margin-right: auto;
    }

        nav .avatar img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            background-color: #ffffff26;
        }

        nav .avatar .name {
            font-size: 0.8rem;
            font-weight: 500;
            color: #fff;
            background-color: #ffffff26;
            padding: 6px 10px;
            border-radius: 8px;
            margin-left: -15px;
            padding-left: 23px;
        }


.container {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    padding: 0 24px;
}

main {
    margin-top: 30px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.asideProfile {
    background-color: #fff;
    border-radius: var(--radius);
    width: 250px;
    min-width: 250px;
    border: 1px solid var(--border-color);
}

    .asideProfile .profile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 24px;
        position: relative;
    }

        .asideProfile .profile .blob {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            display: none;
        }

        .asideProfile .profile .bg-blob-1 {
            padding: 15px;
            background-color: #61c6ea;
            top: 15px;
            left: 80px;
        }

        .asideProfile .profile .bg-blob-2 {
            padding: 7px;
            background-color: #fcca55;
            top: 35px;
            left: 171px;
        }

        .asideProfile .profile .bg-blob-3 {
            padding: 9px;
            background-color: #70d488;
            top: 79px;
            left: 158px;
        }

        .asideProfile .profile .bg-blob-4 {
            padding: 5px;
            background-color: #d4a92d;
            top: 75px;
            left: 65px;
        }

        .asideProfile .profile .img {
            width: 90px;
            height: 90px;
            overflow: hidden;
            border-radius: 50%;
            border: 2px solid #eee;
            z-index: 2;
        }

            .asideProfile .profile .img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .asideProfile .profile .name {
            font-size: 0.95rem;
            font-weight: 600;
        }

        .asideProfile .profile .info {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text2);
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }

            .asideProfile .profile .info .item {
                display: flex;
                align-items: center;
                gap: 6px;
            }

        .asideProfile .profile .status {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 8px;
            background-color: #f0f0f0;
            border-radius: var(--radius2);
            font-size: 0.85rem;
            font-weight: 500;
        }

            .asideProfile .profile .status[data-status="0"] {
                background-color: #fff0ca;
                color: #c69723;
            }

    .asideProfile .hr {
        background-color: #f0f0f0;
        width: calc(100% - 48px);
        height: 2px;
        border-radius: 5px;
        margin: 0px auto 8px;
    }

    .asideProfile .menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        align-items: start;
        padding: 0;
        margin: 0;
        padding: 8px 0 16px;
    }

        .asideProfile .menu .item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text);
            padding: 8px 24px;
            width: 100%;
        }

            .asideProfile .menu .item i {
                width: 16px;
            }

            .asideProfile .menu .item.active {
                background-color: #4A90E420;
                border-left: 3px solid var(--primary);
                color: var(--primary);
            }

.renderBody {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    flex-direction: column;
}


.cashi {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

    .cashi .item {
        display: flex;
        background-color: #ffffff;
        width: calc(33.3% - 10px);
        padding: 16px;
        gap: 16px;
        align-items: center;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        min-width: 250px;
    }

        .cashi .item .icon {
            display: flex;
            border-radius: 50%;
            background-color: #4a90e421;
            color: var(--primary);
            padding: 16px;
            font-size: 1.3rem;
        }

        .cashi .item .details {
            display: flex;
            flex-direction: column;
            gap: 8px;
            height: 100%;
        }

            .cashi .item .details .title {
                font-size: 0.95rem;
                font-weight: 600;
            }

            .cashi .item .details .desription {
                font-size: 0.8rem;
                font-weight: 500;
                color: var(--text2);
            }

.notifs {
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background-color: #fff;
    padding: 20px 24px;
}

    .notifs .title {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .notifs .item {
        width: 100%;
        margin-bottom: 16px;
        padding: 8px 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        background-color: #00a9aa0f;
        border-radius: 12px;
    }

        .notifs .item .img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            border-radius: 50%;
            padding-top: 3px;
            background-color: #ffffff;
            color: #00a9aa;
        }

        .notifs .item .details {
        }

            .notifs .item .details .title {
                font-size: 0.85rem;
                margin-bottom: 5px;
            }

            .notifs .item .details .date {
                font-size: 0.75rem;
                direction: ltr;
                text-align: right;
            }

        .notifs .item .status {
            margin-right: auto;
            padding: 5px;
            margin-left: 10px;
            color: var(--text2);
        }

            .notifs .item .status.unread {
                color: var(--text);
            }







/*#region login*/
.bgblob {
    position: absolute;
    padding: 200px;
    border-radius: 50%;
    filter: blur(95px);
    opacity: .2;
    top: 50%;
    left: 50%;
}

    .bgblob.bgblob-1 {
        transform: translate(calc(-50% - 150px), calc(-50% - 150px));
        background-color: #fcc956;
    }

    .bgblob.bgblob-2 {
        transform: translate(calc(-50% + 150px), calc(-50% + 150px));
        background-color: #00d2ff;
    }

.loginContainer {
    width: 400px;
    max-width: 100%;
    overflow: auto;
    max-height: 100%;
    margin: auto;
    padding: 24px;
}

.cardLogin {
    width: 100%;
    background-color: #fff;
    border-radius: var(--radius);
    padding-bottom: 14px;
    box-shadow: 0 0 7px 0 #58585814;
    overflow:hidden;
    margin-bottom: 15px;
}

    .cardLogin::-webkit-scrollbar {
        width: 0px;
    }

    .cardLogin .header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 11px;
        padding: 0px;
    }

        .cardLogin .header img {
            /*            width: 85px;
            height: 85px;
            border-radius: 45%;*/
            width: 100%;
        }

        .cardLogin .header .title {
            font-size: 1.1rem;
            font-weight: 800;
            background: linear-gradient(136deg, #e9c363, #6abfcb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            padding: 0 8px;
        }

        .cardLogin .header .description {
            font-size: 0.85rem;
            font-weight: 500;
            color: #807c72;
            margin-top: 5px;
        }

    .cardLogin .frmBox {
        padding: 18px;
        gap: 16px;
    }

    .cardLogin .formItem .formLabel {
        color: #807c72;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .cardLogin .inpt {
        color: var(--text);
        border-radius: var(--radius2);
    }

    .cardLogin .btn {
        border-radius: var(--radius2);
        font-weight: 600;
    }

    .cardLogin .notHavOrganId {
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 24px;
        padding: 0 4px;
        color: var(--primary);
        display: none;
        cursor: pointer;
    }

.captchaBox {
    position: relative;
}

    .captchaBox .img-captcha {
        height: 37.6px;
        border-radius: 4px 0 0 4px;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
    }

    .captchaBox input {
        padding-left: calc(50% + 10px);
        text-align: center;
    }
/*#endregion*/


overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0003;
    backdrop-filter: blur(2px);
    z-index: 8;
}




@media (max-width: 768px) {
    nav .logo {
        display: none;
    }

    nav .menuBar {
        display: block;
    }

    .asideProfile {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        border-radius: 0;
        height: 100%;
        border: none;
        z-index: 9;
    }
        



    .cashi .item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 570px) {
    .cashi .item {
        width: 100%;
    }
}