﻿@import 'reset.css';
@import 'fonts.css';
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
:root {
    --background-primary-default: #f7f7f7;
    --text-primary-secondary: #4d4d4d;
    --gray-white: #fff;
    --radius-300: 16px;
    --radius-200: 8px;
    --radius-500: 32px;
    --font-size-400: 16px;
    --Gray500: #666;
    --space-0: 0;
    --space-150: 8px;
    --space-250: 16px;
    --space-300: 24px;
    --radius-200: 8px;
    --radius-300: 16px;
    --background-brand-satima-default: #f2ab39;
    --alpha-black-500: rgba(0, 0, 0, 0.5);
}

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-family: "Yekan Bakh";
    background: #fae9cd;
}

.w-h-100 {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
}

.bg-F7F7F7 {
    background-color: var( --background-primary-default);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
}

.login-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* فرم لاگین */
.login-form {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    background: #fff;
    border: 1px solid #666666;
    border-radius: 16px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    width: 526px;
    height: 700px;
    padding: 82px 48px;
}

.form-content {
    width: 430px;
    height: 536px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.welcome-text {
    color: var(--text-brand-satima, #f2ab39);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 24px 0;
}

.login-title {
    color: var(--text-primary-black, #000);
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    margin: 0 0 73px 0;
    font-style: normal;
}

.label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-bottom: 8px;
}

input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
}

.input,
.input:focus,
.input:hover,
.input:disabled,
.input[readonly],
.input:valid,
.input:invalid,
.input:active {
    display: flex;
    height: 48px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #4d4d4d;
    background: #f7f7f7;
    width: inherit;
    margin-bottom: 32px;
    font-family: inherit;
}

/* چیدمان ورودی رمز و آیکن چشم */
.password-wrapper {
    position: relative;
    width: 430px;
}

.eye-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

    .eye-icon:hover {
        opacity: 1;
    }

.remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 73px;
}

    .remember-me input {
        appearance: none;
        -webkit-appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 4px;
        border: 1px solid var(--Orange, #f5ad3b);
        background-color: #fff;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

    .remember-me label {
        color: var(--Gray500);
        font-size: 12px;
    }

    .remember-me input:checked {
        background-color: var(--Orange, #f5ad3b);
        border: 1px solid var(--Orange, #f5ad3b);
    }

        .remember-me input:checked::after {
            content: "✓";
            position: absolute;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            top: 2px;
            right: 6px;
        }

.submit-btn1 {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background-color: #f2ab39;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

    .submit-btn1:hover {
        background-color: #CC8C25;
        cursor: pointer;
    }

    .submit-btn1:active {
        background-color: #A66E14;
    }

    .submit-btn1:disabled {
        background: #f2ab39;
        color: #ffffff;
        border: none;
        cursor: wait;
    }
/*home page*/

.body-home {
    background: #fae9cd url(../images/BG-Landing.svg) no-repeat bottom -30px center / 1280px;
}

.container-home {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: calc(100vw - 32px); /* کم کردن 16px از هر طرف افقی */
    height: calc(100vh - 32px); /* کم کردن 16px از هر طرف عمودی */
    margin: 16px auto;
}

/* ===== منو ===== */
.menu {
    display: flex;
    width: calc(100vw - 32px);
    height: 72px;
    padding: 0 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    background: #FFFFFF;
    margin-bottom: 58px;
}

.menu-right img.logo {
    width: auto;
    height: 40px;
    margin: 16px 0px;
}

.menu-right {
    height: 72px;
}

.menu-left {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 8px;
}

.username {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

    .username .dropdownmenu {
        position: absolute;
        top: 50px;
        right: -40px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        list-style: none;
        padding: 8px 0;
        min-width: 200px;
        box-shadow: 0 16px 40px -8px rgba(0,0,0,0.25);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.25s ease;
        z-index: 1000;
    }

.dropdownmenu svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.username.active .dropdownmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.username .dropdownmenu .dropdown-item {
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-right: 10px;
}

    .username .dropdownmenu .dropdown-item img {
        margin-left: 5px;
    }
/* تول‌تیپ تلفن */
.tooltip-container {
    position: relative;
    display: inline-block;
    margin: 0 20px;
}

.tooltip {
    position: absolute;
    top: 50px;
    left: 110%;
    transform: translateX(-20%);
    background: #4d4d4d;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .tooltip::after {
        content: "";
        position: absolute;
        top: -12px;
        left: 10%;
        transform: translateX(0%);
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent #4d4d4d transparent;
    }

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -75px;
}

/* ===== عنوان‌ها ===== */
.title {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 16px;
}

.subtitle {
    color: var(--text-primary-secondary);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 77px;
}

/* ===== باکس‌ها ===== */
.cards {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.card {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    width: 320px;
    height: 427px;
}

.bg-card1 {
    background: var(--gray-white) url(../images/pic1.svg) no-repeat center bottom / cover;
}

.bg-card2 {
    background: var(--gray-white) url(../images/pic2.svg) no-repeat center bottom / cover;
}

.bg-card3 {
    background: var(--gray-white) url(../images/pic3.svg) no-repeat center bottom / cover;
}

.card-footer {
    width: 320px;
    height: 96px;
    position: absolute;
    bottom: 0;
    border-radius: 32px;
    background: var(--gray-white);
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.3s ease; /* انیمیشن نرم */
    overflow: hidden;
}

    .card-footer h4 {
        margin: 0 0 10px 0;
        padding-top: 30px;
        font-size: 14px;
        font-weight: 600;
    }

    .card-footer p {
        margin: 4px 0 0;
        font-size: 12px;
        color: var(--text-primary-secondary);
    }

    .card-footer .btn-supply {
        margin-top: 20px;
        background-color: #ffffff;
        color: #999999;
        border: 1px solid #999999;
        border-radius: 8px;
        padding: 6px 16px;
        font-size: 12px;
        cursor: pointer;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        width: 100px;
        /* تراز کردن محتوا */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .card-footer .activebtn {
        color: #f2ab39;
        margin-top: 20px;
        background-color: transparent;
        border: 1px solid #f2ab39;
        border-radius: 8px;
        padding: 6px 16px;
        font-size: 12px;
        cursor: pointer;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        width: 100px;
        /* تراز کردن محتوا */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .card-footer button svg {
        width: 16px;
        height: 16px;
        stroke: white; /* برای هماهنگی با رنگ متن */
    }

/* حالت Hover */
.card:hover .card-footer {
    height: 148px;
}

.card:hover button {
    opacity: 1;
    transform: translateY(-5px);
}

.contact-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    cursor: pointer;
}

/*home-buyer*/
.card-buttons {
    display: flex;
    gap: 6px; /* فاصله بین دو دکمه */
    margin-top: 10px;
    flex-wrap: nowrap; /* جلوگیری از رفتن دکمه‌ها زیر هم */
}

    .card-buttons button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px; /* فاصله بین آیکن و متن */
        width: 140px; /* اندازه ثابت */
        height: 36px;
        padding: 0px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 16px;
        cursor: pointer;
        background: transparent;
        flex: 0 0 auto; /* جلوگیری از گسترش یا کوچک شدن خودکار */
        opacity: 0;
        transition: all 0.3s ease;
    }

.btn-success {
    border: 1.5px solid #1cc860;
    color: #1cc860;
}

    .btn-success svg {
        stroke: #1cc860;
    }

.btn-danger {
    border: 1.5px solid #eb2222;
    color: #eb2222;
}

    .btn-danger svg {
        stroke: #eb2222;
    }

.ml-5 {
    margin-left: 5px;
}

.input-size1 {
    width: 340px !important;
    margin-bottom: 4px;
}

.input-size2 {
    width: 333px !important;
    margin-bottom: 4px;
}

.input-size3 {
    width: 368px !important;
    margin-bottom: 4px;
}
/*modal*/
/*body-Dashboard-Seller*/
.return-home,
.return-home:link,
.return-home:visited,
.return-home:hover,
.return-home:active,
.return-home:focus {
    color: white;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.x-center {
    bottom: 20px;
    width: 208px;
    position: absolute;
    text-align: center;
}

.span-footer {
    color: #666666;
    font-size: 10px;
}

.body-Dashboard-Seller {
    margin: 0;
    padding: 0;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar {
    width: 240px;
    height: auto;
    min-height: calc(90vh - 32px);
    max-height: calc(90vh - 32px);
    background: #f2ab39;
    border-radius: 16px;
    padding: 16px;
    box-sizing: border-box;
    margin-left: 16px;
    position: relative;
}

.sidebar-title {
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.main-dashboard-seller {
    width: calc(100vw - 288px);
    height: auto;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    min-height: calc(90vh - 32px);
    max-height: calc(90vh - 32px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: auto;
}

.sidebar-item {
    display: flex;
    height: 40px;
    padding-right: 10px;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #333333;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 5px;
    font-weight: 400;
}

    .sidebar-item svg {
        margin-left: 8px;
    }

    .sidebar-item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .sidebar-item.active {
        background: #F9F6F0 !important;
        color: #f2ab39;
    }

.menu-dashboard-seller {
    margin-bottom: 20px;
}

.w-1280 {
    width: 100%;
    display: flex;
}

.w-1024 {
    padding: 24px;
    display: flex;
}
/*Dashboard-seller*/



.section-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.box {
    display: flex;
    padding: var(--space-200, 12px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-150, 8px);
    flex: 1 0 0;
    border-radius: var(--radius-300, 16px);
    background: var(--background-secondary-default, #f2f2f2);
    min-height: 180px;
    max-height: 280px;
    box-sizing: border-box;
    text-align: justify;
}

    .box p {
        color: #4d4d4d;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .box h3 {
        margin-bottom: 12px;
    }
/* ===== Media Queries ===== */

/* حالت کوچک: 300px تا 905px */
@media (max-width: 905px) {
    .container {
        width: 300px;
    }

    .login-wrapper {
        flex-direction: column;
    }

    .login-image {
        display: none;
    }

    .login-form {
        width: 280px;
        height: auto;
        padding: 10px;
    }

    .form-content {
        width: 280px;
        height: auto;
    }

    .password-wrapper {
        width: 280px;
    }

    form {
        padding-top: 50px;
    }
    /*home page*/
    .container-home {
        width: calc(100vw - 32px); /* کم کردن 16px از هر طرف افقی */
        height: calc(100vh - 32px); /* کم کردن 16px از هر طرف عمودی */
    }

    .menu {
        width: 100%;
        flex-direction: column;
        height: auto;
        padding: 16px;
        margin-bottom: 32px;
    }

    .cards {
        flex-direction: column;
        gap: 16px;
    }

    .body-home {
        overflow: visible;
    }

    .Filters-modal {
        width: 95%;
        padding: 16px 0px;
    }

    .filters-header,
    .modal-dialog-box {
        width: 100%;
    }

    .filters-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-btn,
    .cancel-btn {
        width: 100%;
        justify-content: center;
    }

    .parent {
        flex-direction: column;
    }
}

/* حالت متوسط: 906px تا 1439px */
@media (min-width: 906px) and (max-width: 1439px) {
    .container {
        width: 900px;
    }

    .login-wrapper {
        flex-direction: column;
    }

    .login-image {
        display: none;
    }
    /*  home page*/
    .container-home {
        width: calc(100vw - 32px); /* کم کردن 16px از هر طرف افقی */
        height: calc(100vh - 32px); /* کم کردن 16px از هر طرف عمودی */
    }

    .menu {
        width: 100%;
    }

    .cards {
        gap: 20px;
    }

    .body-home {
        overflow: visible;
    }
}

/* حالت بزرگ: 1440px و بالاتر */
@media (min-width: 1440px) {
    .container {
        width: 1440px;
    }

    .login-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .login-image img {
        width: 746px;
        height: 956px;
    }

    form {
        padding-top: 50px;
    }
    /*home page*/
    .container-home {
        width: calc(100vw - 32px); /* کم کردن 16px از هر طرف افقی */
        height: calc(100vh - 32px); /* کم کردن 16px از هر طرف عمودی */
    }
}

/*Start Modal*/
/* Modal Container */
.Filters-modal {
    display: flex;
    flex-direction: column !important;
    align-items: center; /* مرکز شدن محتوا */
    width: 800px;
    height: auto;
    padding: 24px 0px;
    border-radius: var(--radius-300);
    box-shadow: 0 4px 88px var(--alpha-black-500);
    margin: 48px auto;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

.Board-Seller {
    min-height: 580px;
    max-height: 700px;
    overflow-y: hidden;
    overflow-wrap: break-word;
}

    .Board-Seller.scroll {
        overflow-y: auto;
    }
/* Header */
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 34px;
    margin-bottom: 6px;
    padding: 0 16px; /* فاصله از لبه‌ها */
    box-sizing: border-box;
    color: #333;
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
}

    .filters-header span {
        font-weight: 600;
        font-size: 18px;
        white-space: nowrap;
    }

.close-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px; /* فاصله از لبه راست */
}

    .close-btn svg {
        display: block;
        width: 16px;
        height: 16px;
    }

/* Divider */
.divider {
    margin-bottom: 24px;
    width: 100%;
    height: 1px !important;
    background-color: #e6e6e6;
}

/* Main content */
.modal-dialog-box {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-sizing: border-box;
    padding: 0 24px;
}

.modal-dialog-box2 {
    width: 100%;
    min-height: 500px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-sizing: border-box;
    padding: 0 16px; /* فاصله مساوی ستون‌ها از چپ و راست */
}

.filter-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.filter-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .filter-col label {
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 14px;
        color: #333333;
    }

        .filter-col label span {
            font-size: 12px;
            color: #666666;
        }

    .filter-col input {
        padding: 0px 16px;
        border-radius: var(--radius-200);
        border: 1px solid #666666;
        box-sizing: border-box;
        height: 48px;
        margin-bottom: 5px;
    }

/* Buttons */
.filters-actions {
    display: flex;
    justify-content: flex-end; /* سمت چپ قرار گیرد */
    width: 100%;
    gap: 24px;
    height: 48px;
}

.cancel-btn {
    color: #4d4d4d;
    font-size: 16px;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 81px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 155px; /* عرض جدید */
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--background-brand-satima-default);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 24px;
}

.btn4 {
    margin-left: 24px;
}

/* SVG داخل دکمه */
.submit-btn svg {
    width: 22px;
    height: 20px;
}

.input2 {
    background-image: url(../images/unit1.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 36px !important;
}

.input10 {
    background-image: url(../images/unit2.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 36px !important;
}

.calendar-icon {
    background-image: url(../images/calendar.svg);
    background-repeat: no-repeat;
    background-position: left 10px center;
    padding-right: 36px !important;
}
/* Media Queries */
@media (max-width: 1440px) {
    .Filters-modal {
        width: 90%;
    }

    .filters-header,
    .modal-dialog-box {
        width: 90%;
    }
}



/*درج عرضه*/
/* باکس‌های داخلی */
.modal-box {
    width: initial;
    background: #f2f2f2;
    border-radius: 24px;
    padding: 24px;
    box-sizing: border-box;
    margin: 0 16px;
}

.modal-top {
    height: 360px;
    overflow-y: auto;
}

.modal-bottom {
    height: 300px;
    overflow-y: auto;
}

.submit-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: #cccccc;
    color: #999999;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 24px;
}

    .submit-btn2 svg {
        margin-left: 5px;
    }

.submit-btn3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: #F2AB39;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 24px;
}

.bg-btn-yellow {
    background: #f2ab39;
    color: #ffffff;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    margin-bottom: 24px;
    background: white;
}

    .custom-table thead tr {
        background: #FFF9F0;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
    }

    .custom-table th,
    .custom-table td {
        border-bottom: 1px solid #ccc;
        font-size: 12px;
        text-align: center;
        width: 33%;
    }

    .custom-table th {
        padding: 16px 12px;
        background-color: #FFF9F0;
    }

    .custom-table td {
        padding: 30px 12px;
    }

    .custom-table tbody tr:last-child td {
        border-bottom: none;
    }

    .custom-table th:first-child,
    .custom-table td:first-child {
        text-align: center;
    }

.numeric-input {
    height: 38px;
    font-size: 16px;
    text-align: right;
    width: 244px;
    display: flex;
    padding: 0px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background: #F7F7F7;
}

.suffix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #F2AB39;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

    .suffix:hover {
        color: #F2AB39;
    }

.input-container {
    position: relative;
}

.p-0 {
    padding: 0px;
}

.heading-info {
    color: #333;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
    margin-bottom: 24px;
}

.rial-icon {
    background-image: url(../images/Rial.svg);
    background-repeat: no-repeat;
    background-position: left 10px center;
    width: 344px;
    color: #333333;
    font-weight: bold;
}

.filter-col .span {
    font-size: 12px;
    color: #666666;
    display: flex;
    align-items: center; /* ترازبندی عمودی کامل */
    padding-top: 10px;
}

    .filter-col .span svg {
        margin-left: 5px;
    }

.text-center {
    text-align: center;
}

.parent {
    display: flex;
    gap: 16px; /* فاصله بین دو div */
    height: auto;
}

.child {
    flex: 1; /* هر دو باکس عرض مساوی بگیرند (اختیاری) */

    border-radius: 8px;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%; /* عرض جدید */
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--background-brand-satima-default);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 12px;
}

    .search-btn svg {
        vertical-align: middle;
    }

.cancel-btn svg {
    vertical-align: middle;
}

.search-box-result {
    width: 376px;
    height: 240px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #20a2db;
    background: #ebf5fa;
    background-image: url(../images/search-box.svg);
    background-repeat: no-repeat;
    background-position: center top;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.align-bottom {
    justify-content: flex-end;
}

.search-box-result p {
    margin-top: 10px;
}

    .search-box-result p:last-child {
        color: #4d4d4d;
        font-weight: 400;
    }

    .search-box-result p:first-child {
        color: #333333;
        font-weight: 600;
    }

.readonly-box {
    text-align: center;
    background-color: #cccccc;
    color: #999999;
    border-radius: var(--radius-200);
    border: 1px solid #666666;
    box-sizing: border-box;
}

.input4 {
    background-image: url(../images/closex.svg);
    background-repeat: no-repeat;
    background-position: left 10px center;
}

.input5 {
    background-image: url(../images/closex2.svg);
    background-repeat: no-repeat;
    background-position: left 10px center;
}

.search-box-result2 {
    background-image: url(../images/BG-Search.svg);
}

.search-box-result3 {
    color: #1cc860;
    border-color: #1cc860;
    background-color: #F0FAF4;
}



.spinner {
    position: relative;
    display: inline-block;
    border-radius: 0;
    padding: 0;
    gap: 0;
}

    .spinner::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
    }

    .spinner::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 3px solid transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
        border-radius: 50%;
        animation: spin 1.5s ease-in-out infinite;
        animation-delay: 1ms;
    }

.spinner-32 {
    width: 32px;
    height: 32px;
}

.spinner-yellow::before {
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.spinner-yellow::after {
    border-top-color: var(--background-semantic-warning-default);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flex-center {
    display: flex;
    justify-content: center;
}

.finding-search {
    background-image: none;
    height: 160px;
}

.caption-search {
    font-size: 12px;
    font-weight: 400;
    color: #4d4d4d;
}

.result-searchtext {
    font-size: 10px;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    line-height: 14px;
    margin-left: 30px;
}

.result-searchtext2 {
    font-size: 12px;
    color: #333333;
    font-weight: 700;
    font-style: normal;
    line-height: 16px;
}

.btn-insert {
    width: 118px;
    height: 36px !important;
    border-radius: 8px;
    color: #ffffff;
    background-color: #63e597;
    padding: 10px;
    border-width: 0px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

    .btn-insert svg {
        margin-left: 5px;
    }

.btn-insert2 {
    display: flex;
    align-items: center;
    margin-right: auto;
}

    .btn-insert2 svg, .btn-delete svg {
        margin-left: 5px;
    }

.btn-delete {
    width: 118px;
    font-weight: 600;
    border-radius: 8px;
    color: #eb2222;
    background-color: transparent;
    padding: 4px;
    border: 2px solid #eb2222;
    margin-left: auto;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-modal {
    height: auto !important;
    min-height: 836px;
}


.search-box-result2 svg {
    vertical-align: middle;
}

.btn-group {
    text-align: center;
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
}

/*End Modal*/
/*Dashboard-Seller*/
.transaction-row {
    justify-content: end;
    width: 100%;
    margin-top: 24px;
}

.right-section-filter {
    flex-grow: 1;
    justify-content: flex-start;
}

.btn-filters {
    justify-content: center;
    background: #fff;
    border: 1px solid #F2AB39;
    border-radius: 8px;
    width: 103px;
    height: 36px;
    padding: 9px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #F2AB39;
    cursor: pointer;
}

.divider-filters {
    width: 1px;
    height: 32px;
    background: #D9D9D9;
    margin: 0 16px;
}

.lbl-selected {
    width: 112px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #666666;
    padding-top: 10px;
}

.filter-tags {
    gap: 8px;
    margin-right: 8px;
    flex-wrap: wrap;
}

.tag {
    background: #EBF5FA;
    border: 1px solid #20A2DB;
    border-radius: 4px;
    color: #20A2DB;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    height: 30px !important;
    padding: 0px 10px;
}

.divider-left {
    width: 1px;
    height: 32px;
    background: #D9D9D9;
    margin: 0 16px;
    flex-shrink: 0;
}

.btn-insert-supply {
    justify-content: center;
    background: #F2AB39;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 130px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}

.table-container {
    width: 100%;
    overflow: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

table {
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
    direction: rtl;
}

th {
    background-color: #FAFAFA;
    padding: 0px 24px;
    height: 44px;
    text-align: right;
    color: #535862;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

td {
    padding: 0px 24px;
    height: 70px;
    text-align: right;
    border-bottom: 1px solid #E0E0E0;
    font-size: 12px;
    color: #535862;
    font-weight: bold;
    white-space: nowrap;
}

.checkbox-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

    input[type="checkbox"]:checked {
        background-color: #F2AB39;
        border-color: #F2AB39;
    }

        input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 5px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

.with-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.svg-head {
    flex-shrink: 0;
    vertical-align: middle;
}

/*modal*/
.dropdown {
    position: relative;
}

.dropdown-selected {
    height: 48px;
    border: 1px solid #666;
    border-radius: 8px;
    padding: 0 48px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #F7F7F7;
    color: #666666 !important;
    width: 100%;
}


.dropdown-list {
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    border: 1px solid #666;
    border-radius: 8px;
    background: #fff;
    display: none;
    z-index: 10;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
}

    .dropdown-item:hover {
        background-color: #F2AB39;
        color: #fff;
    }

.dropdown.active .dropdown-list {
    display: block;
}

.Transactions-Seller {
    height: 364px;
}


.car-box {
    height: 48px;
    border: 1px solid #666666;
    display: flex;
    align-items: center;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 6px;
    direction: rtl;
}

.car-box-1 {
    width: 368x;
}

.car-box-2 {
    width: 314px;
}

.car-part {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 48px;
    position: relative;
}

.car-input {
    width: 100%;
    height: 100%;
    text-align: center;
    border: none !important;
    background: transparent;
    font-size: 16px;
    color: #666666;
    outline: none;
    padding: 0;
    margin: 0;
}

.part-120 {
    width: 120px;
    background: #F7F7F7;
}

.part-77 {
    width: 75px !important;
    background: #F7F7F7;
}

.part-62 {
    width: 62px !important;
    background: #F7F7F7;
}

.part-64 {
    width: 64px !important;
    background: #F7F7F7;
}

.divider-car {
    width: 1px;
    height: 100%;
    background-color: #666666;
    flex-shrink: 0;
}

/* خانه ۱: تصویر ایران سمت راست */
.part-bg-iran {
    background: #F7F7F7 url('../images/Iran.svg') no-repeat right center;
    background-size: 24px 24px;
    padding-right: 5px;
    text-align: left; /* متن سمت چپ */
}

/* خانه ۳: لیست بازشو */
.dropdown-car {
    position: relative;
    width: 76px; /* کل خانه سوم */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dropdown-car select {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 16px;
        color: #666666;
        text-align: right; /* متن وسط خانه */
        padding-left: 8px; /* فاصله متن از سمت چپ */
        padding-right: 8px; /* فاصله متن از سمت راست برای chevron */
        appearance: none;
        cursor: pointer;
    }

    .dropdown-car .icon-chevron {
        position: absolute;
        left: 4px; /* سمت چپ خانه سوم */
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        pointer-events: none;
    }


/* خانه ۵: پرچم کل بخش را پر کند */
.part-bg-flag {
    background: url('../images/FlagPart.svg') no-repeat center center;
    background-size: 64px;
}

.Transactions-Seller2 {
    height: 680px;
}

.payment-table {
    width: 100%;
    max-width: 752px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    direction: rtl;
    margin-bottom: 25px;
}

    .payment-table thead th {
        background-color: #FAFAFA;
        padding: 10px;
        color: #333;
        font-weight: 600;
        border-bottom: 1px solid #ddd;
    }

    .payment-table tbody td {
        padding: 10px;
        color: #444;
        border-bottom: 1px solid #ddd;
        background-color: #ffffff;
        vertical-align: middle;
    }

    .payment-table tr:last-child td {
        border-bottom: none;
    }

/* ورودی‌ها داخل جدول */
.table-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
}

    .table-input:focus {
        outline: none;
        border-color: #1CC860;
    }

/* دکمه افزودن نوبت */
.add-row td {
    text-align: center;
    padding: 12px;
}

.add-button {
    width: 136px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #1CC860;
    color: #1CC860;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

    .add-button:hover {
        background-color: #E8F9EE;
    }

/* ردیف مجموع */
.total-row td {
    background-color: #FAF0F0 !important;
    font-weight: bold;
}

.alignment-right {
    text-align: right !important;
}

.overflow-auto {
    overflow-y: auto;
}


/* send box*/
.send-modal {
    width: 960px;
    height: 594px;
    display: flex;
    flex-direction: column !important;
    align-items: center; /* مرکز شدن محتوا */

    padding: 24px 0px;
    border-radius: var(--radius-300);
    box-shadow: 0 4px 88px var(--alpha-black-500);
    margin: 48px auto;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

.sendRow {
    display: flex;
    justify-content: space-between;
    width: 912px;
    height: 394px;
    margin: 0px auto 40px auto;
    direction: rtl;
}

.sendRightColumn {
    width: 189px;
    height: 344px;
    display: flex;
    flex-direction: column;
}


.sendBox {
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    width: 189px;
    box-sizing: border-box;
    white-space: nowrap;
}

    .sendBox.activebox {
        border: 1px solid #F2AB39 !important;
    }

.sendLabelBox {
    display: inline-block;
    width: 165px;
    height: 28px;
    border-radius: 8px;
    background-color: #F2F2F2;
    border: none;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    margin-top: 12px;
    background-color: #F2F2F2;
}

.lbl-send1 {
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: #4D4D4D;
    margin-right: 5px;
}

.lbl-send2 {
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    color: #333333;
}

.sendLeftColumn {
    width: 691px;
    height: 394px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.sendFieldRow {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.sendField {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sendLabel {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 600;
}

.sendInput {
    border: 1px solid #666666;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
    outline: none;
    resize: none;
    background-color: #F7F7F7;
}

.disabledbox {
    border: 1px solid #999999;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
    outline: none;
    resize: none;
    background-color: #cccccc;
    text-align: center;
    margin-bottom: 15px;
    height: 48px;
}

.sendTextarea {
    border: 1px solid #666666;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
    outline: none;
    resize: none;
    height: 80px;
    background-color: #F7F7F7;
}
/* Collapse Box */
.Collapse {
    border: 1px solid #F2AB39;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    vertical-align: middle;
}

/* Header */
.CollapseHeader {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* دایره با فلش */
.CollapseCircle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.CollapseIcon {
    transition: transform 0.3s ease;
}

.Collapse.open .CollapseIcon {
    transform: rotate(180deg);
}

/* سطر اصلی و محتوای بازشونده */
.CollapseTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.CollapseInfo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.CollapseButtons {
    display: flex;
    gap: 12px; /* فاصله بین دو دکمه */
    align-items: flex-end;
}

/* دکمه‌ها */
.acceptance {
    min-width: 102px;
    height: 36px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #63E597;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    padding: 0 6px;
}

.non-acceptance {
    width: 102px;
    height: 36px;
    border-radius: 8px;
    color: #EB2222;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #EB2222;
    cursor: pointer;
}

.Close-invoice {
    min-width: 170px;
    height: 36px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #F2AB39;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    padding: 0 6px;
}
/* محتویات بازشونده */
.CollapseContent {
    display: none;
    flex-direction: column;
    margin-top: 12px;
}

.Collapse.open .CollapseContent {
    display: flex;
}

.CollapseLine {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
    margin: 12px 0;
}

/* متن‌ها */
.CollapseLbl1 {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    text-align: center;
}

.CollapseLbl2 {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    text-align: center;
}

.wait {
    width: auto;
    height: auto;
    background-color: #F2F2F2;
    color: #333333;
    font-weight: 400;
    font-size: 12px;
    border-radius: 8px;
    text-align: center;
    padding: 6px;
}

.blue-text {
    color: #20A2DB;
}

.pt-1 {
    padding-top: 10px;
}

.orange-text {
    color: #F2AB39;
    font-weight: 600;
    font-size: 10px;
    margin: 20px 0px;
    display: flex;
}

.bg-gray {
    background-color: #F7F7F7;
    padding: 10px 0px;
    margin-bottom: 10px;
}

.red-text {
    color: #EB2222;
    font-weight: 400;
    font-size: 12px;
    margin: 10px 0px;
    display: flex;
}




.send-modal2 {
    width: 800px;
    height: auto;
    display: flex;
    flex-direction: column !important;
    align-items: center; /* مرکز شدن محتوا */
    padding: 24px 0px;
    border-radius: var(--radius-300);
    box-shadow: 0 4px 88px var(--alpha-black-500);
    margin: 48px auto;
    box-sizing: border-box;
    background-color: #F7F7F7;
}

.sendRow2 {
    display: flex;
    justify-content: space-between;
    width: 752px;
    height: auto;
    margin: 0px auto 40px auto;
    direction: rtl;
}

.sendRightColumn2 {
    width: 189px;
    height: 344px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sendLeftColumn2 {
    width: 531px;
    height: auto;
    background-color: #F2F2F2;
    border-radius: 8px;
    padding: 16px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.sendLabelBox2 {
    display: inline-block;
    width: 140px;
    height: 28px;
    border-radius: 8px;
    border: none;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    margin-top: 12px;
}

.heading-6 {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
}



.disabledbox-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    height: 100%;
    align-items: center;
    text-align: center;
    border-radius: inherit;
    overflow: hidden;
    color: #999999;
    height: 34px;
}

.col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #999;
    padding: 0 6px;
}

    .col:last-child {
        border-left: none;
    }


.col1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.col3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.imgcol img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.7;
}

.status-box {
    width: 501px;
    height: 64px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    box-sizing: border-box;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 206px;
    height: 48px;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s;
}

/* حالت انتخاب شده: done */
.status-done:checked + label.status-item {
    background-color: #63E597;
    color: white;
    padding: 6px 10px;
}

/* حالت انتخاب شده: partial */
.status-partial:checked + label.status-item {
    background-color: #F2AB39;
    color: white;
    padding: 6px 10px;
}

/* حالت انتخاب شده: error */
.status-error:checked + label.status-item {
    background-color: #E56363;
    color: white;
    padding: 6px 12px;
}



.status-item svg {
    flex-shrink: 0;
}


.modal-size2 {
    height: 440px;
}

.modal-size3 {
    height: 500px;
}

.modal-size4 {
    height: 700px;
}

.invoice-table {
    width: 752px;
    height: 268px;
    border: 1px solid #E9EAEB;
    border-radius: 12px;
    border-collapse: collapse;
    overflow: hidden;
    text-align: center;
    font-size: 13px;
    direction: rtl;
    box-shadow: 0px 0px 1px 0px #999999;
}

/* هدر */
.invoice-thead {
    background-color: #E9EAEB;
    font-weight: 600;
    vertical-align: middle;
}

.invoice-th {
    padding: 10px;
    border-bottom: 1px solid #E9EAEB;
    vertical-align: middle;
}

/* بدنه */
.invoice-tbody .invoice-td {
    padding: 10px;
    border-bottom: 1px solid #E9EAEB;
    vertical-align: middle;
    color: #808080;
}

.invoice-tbody .invoice-row:last-child .invoice-td {
    border-bottom: none;
}

/* فوتر */
.invoice-tfoot {
    background-color: #FAF0F0;
    font-weight: 600;
    vertical-align: middle;
}

    .invoice-tfoot .invoice-td {
        padding: 10px;
        vertical-align: middle;
    }


.mobile-input-wrapper {
    width: 768px;
    display: flex;
    border: 1px solid #E9EAEB;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
}

.mobile-select {
    flex: 0 0 200px;
    border-right: 1px solid #E9EAEB;
    position: relative;
}

.mobile-country-select {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 14px;
    padding-left: 40px; /* جا برای تصویر پرچم */
    background-color: transparent;
    appearance: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 10px center;
}

/* جاوااسکریپت برای تنظیم تصویر پرچم انتخاب شده */
/* کادر داخلی filter-col */
.filter-input-wrapper {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    height: 40px;
    direction: rtl;
}

/* لیست کشور با پرچم سمت چپ و فلش سمت راست */
.country-select-wrapper {
    position: relative;
    flex: 0 0 200px;
    border-left: 1px solid #E9EAEB;
}

.country-select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    padding-left: 28px; /* جا برای پرچم */
    padding-right: 24px; /* فاصله از فلش سمت راست */
    appearance: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 4px center; /* پرچم سمت چپ */
    text-align: left; /* متن پیش‌شماره و کشور */
}

/* فلش بازشو سمت راست */
.country-select-arrow {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    height: 16px;
}

/* input شماره موبایل */
.mobile-input {
    flex: 1;
    border: none !important;
    border-left: 1px solid #E9EAEB !important;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    color: #333333;
    text-align: left;
}

.comment {
    width: 375x;
    border: 1px solid #666666;
    border-radius: 8px;
    height: 164px;
    padding: 12px;
}

.input-size {
    width: 368px;
}

.country-size {
    width: 127px !important;
    position: relative;
    flex: 0 0 150px;
    border-left: 1px solid #E9EAEB;
}

.mt-1 {
    margin-top: 20px;
}

/*modal*/
.sendBox2 {
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    font-size: 14px;
    line-height: 1.6;
    width: 189px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased !important; /* کروم و سافاری */
    -moz-osx-font-smoothing: grayscale !important;
    font-weight: 400 !important;
    letter-spacing: -0.5px;
}

    .sendBox2 label {
        display: block;
        cursor: pointer;
        text-align: center;
    }

        .sendBox2 label .line1 {
            display: inline-block; /* برای کنار هم بودن span های داخل خط اول */
            white-space: normal; /* اجازه شکستن متن فارسی داخل span اگر لازم باشد */
        }

        .sendBox2 label .line2 {
            margin-top: 4px; /* خط دوم کمی فاصله */
        }

    .sendBox2:has(input[type="radio"]:checked) {
        border: 1px solid #F2AB39 !important;
    }

input[type="radio"] {
    display: none;
}

/* Modal ---------------------------------------------------------------------------------------------------- */
.modal-container {
    top: 0;
    z-index: 11;
    width: 100vw;
    height: 100vh;
    display: none;
    overflow: auto;
    position: fixed;
    animation: fadeIn .5s;
}

.modal-overlay {
    z-index: 12;
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    background-color: rgba(0,0,0,0.50)
}

.modal {
    display: flex;
    flex-direction: column;
}

.modal-active {
    display: flex;
}

.modal-wrapper {
    width: 100%;
    z-index: 13;
}

.modal-topleft .modal-wrapper {
    top: 1rem;
    left: 1rem;
    position: absolute;
}

.modal-topright .modal-wrapper {
    top: 1rem;
    right: 1rem;
    position: absolute;
}

.modal-bottomleft .modal-wrapper {
    left: 1rem;
    bottom: 1rem;
    position: absolute;
}

.modal-bottomright .modal-wrapper {
    right: 1rem;
    bottom: 1rem;
    position: absolute;
}

.modal-center {
    justify-content: center;
}

.modal-header {
    display: flex;
    padding: 0 0 2rem 0;
    align-items: flex-start;
    justify-content: space-between;
}

.modal-title {
    margin-bottom: 0;
}

.modal-close {
    border: 0;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    -webkit-appearance: none;
    background-color: transparent;
    margin: -1rem -1rem -1rem auto;
}

/* Toast ---------------------------------------------------------------------------------------------------- */
.toast-container {
    z-index: 1500;
    display: flex;
    position: fixed;
    flex-direction: column;
}

.position-topleft {
    top: 1rem;
    left: 1rem;
}

.position-topright {
    top: 1rem;
    right: 1rem;
}

.position-topcenter {
    top: 1rem;
    left: 50%;
    margin-left: -15rem;
}

.position-bottomleft {
    left: 1rem;
    bottom: 1rem;
}

.position-bottomright {
    right: 1rem;
    bottom: 1rem;
}

.position-bottomcenter {
    left: 50%;
    bottom: 1rem;
    margin-left: -15rem;
}

.toast-main {
    opacity: 0;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background-color: var(--bg-color2);
    box-shadow: rgba(0,0,0,0.25) 0 10px 40px;
    animation: toast-animate 1s ease forwards;
}

.toast {
    color: #fff;
    width: 30rem;
    display: flex;
    flex-direction: row;
    padding: 1rem 1.25rem;
    animation: fadeIn 1.5s;
    border-radius: 0.75rem;
}

    .toast .icon {
        color: #fff;
        width: 3rem;
        height: 3rem;
        display: flex;
        font-size: 2rem;
        border-radius: 50%;
        align-items: center;
        margin-right: 0.75rem;
        border: 2px solid #fff;
        justify-content: center;
    }

    .toast .toast-body {
        flex: 1;
        display: flex;
        flex-direction: revert;
    }

        .toast .toast-body .text {
            flex: 1;
            display: flex;
            color: #333333;
            padding: 0 10px;
            font-size: 16px;
            flex-direction: column;
            justify-content: space-around;
        }


        .toast .toast-body .close {
            color: #666;
            font-size: 16px;
            cursor: pointer;
        }

.box-main {
    padding: 11px 16px; /* پدینگ بالا و پایین کمتر */
    background: #ffffff; /* پس‌زمینه سفید */
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    font-weight: 400;
    border-radius: 10px;
}

.box-default {
    border-bottom: 3px solid #4d4d4d;
}

    .box-default .icon {
        padding: 10px;
        background: #f2f2f2;
        content: url('../images/default.svg')
    }

.box-info {
    border-bottom: 3px solid #20a2db;
}

    .box-info .icon {
        padding: 10px;
        background: #ebf5fa;
        content: url('../images/info.svg')
    }

.box-success {
    border-bottom: 3px solid #1cc860;
}

    .box-success .icon {
        padding: 10px;
        background: #f0faf4;
        content: url('../images/success.svg')
    }

.box-warning {
    border-bottom: 3px solid #d48b0f;
}

    .box-warning .icon {
        padding: 10px;
        background: #fff9f0;
        content: url('../images/warning.svg')
    }

.box-danger {
    border-bottom: 3px solid #eb2222;
}

    .box-danger .icon {
        padding: 10px;
        background: #faf0f0;
        content: url('../images/danger.svg')
    }

@keyframes toast-animate {
    to {
        opacity: 1;
    }
}

/* Confirm ---------------------------------------------------------------------------------------------------- */
.confirm-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 14;
    position: fixed;
    background-color: rgba(0,0,0,0.50)
}

.confirm {
    top: 1rem;
    right: 1rem;
    position: fixed;
    user-select: none;
    padding-bottom: 1rem;
    -moz-user-select: none;
    -webkit-user-select: none;
    max-width: calc(100% - 3rem);
    transition: transform 0.15s ease-out;
}

.confirm-box {
    height: 6rem;
    display: flex;
    min-width: 400px;
    align-items: center;
    border-radius: 0.75rem;
    background-color: #fff;
    animation: flyIn 0.3s ease-out;
    box-shadow: 0 0.5em 1em hsla(223,10%,10%,0.1);
    transition: background-color 0.15s, color 0.15s;
}

.confirm-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    padding: 0.375rem 1em;
    flex-direction: column;
    justify-content: space-around;
}

    .confirm-content .text {
        color: #fff;
        line-height: 1.333;
    }

        .confirm-content .text .title {
            text-align: right;
        }

        .confirm-content .text .subtitle {
            margin: 0;
            opacity: 0.75;
            font-size: 16px;
            text-align: right;
        }

.confirm-buttons {
    height: 100%;
    display: flex;
    flex-shrink: 0;
    min-width: 6rem;
    flex-direction: column;
    transition: box-shadow 0.15s;
}

.confirm-button {
    color: #999;
    height: 100%;
    line-height: 1;
    appearance: none;
    padding: 0 0.5rem;
    -webkit-appearance: none;
    background-color: #eee;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s, color 0.15s;
}

    .confirm-button:active,
    .confirm-button:focus,
    .confirm-button:hover {
        background-color: #ccc;
    }

    .confirm-button:only-child {
        border-radius: 0.75rem 0 0 0.75rem;
    }

    .confirm-button:first-of-type {
        border-radius: 0.75rem 0 0 0;
    }

    .confirm-button:last-of-type {
        border-radius: 0 0 0 0.75rem;
    }

.center {
    display: flex;
    justify-content: center;
}

.m-auto {
    margin: auto;
}

.h-100 {
    height: 100%;
}
.overflow-box{
    overflow:auto !important;
}
