:root {
    --onlinedit-main-color: #3167e3;
    --onlinedit-main-color-2: #ebf0ff;
    --onlinedit-main-color-3: #98b1ff;
}

/**********
* toast
**********/
.nirweb_panel_toast_box {
    transition: all 0.3s ease-in-out, visibility 0s ease-in-out 0.3s;
    background: #EAFAED;
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translate(-50%);
    padding: 0 !important;
    border-radius: 8px !important;
    box-shadow: var(--nw-panel-shadow);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.nirweb_panel_toast_box.active {
    transition: all 0.3s ease-in-out, visibility 0s;
    bottom: 100px;
    opacity: 1;
    visibility: visible;
}

.nirweb_panel_toast_line {
    height: 4px;
    width: 100%;
    background: #24AF53;
    border-radius: 6px;
}

.nirweb_panel_toast_content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 10px 15px 20px 15px;
}

.nirweb_panel_toast_content > i {
    color: #6C757D;
    line-height: 1em;
    font-size: 20px;
    cursor: pointer;
}

.nirweb_panel_toast_content strong {
    color: #24AF53;
    font-size: 14px;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    display: block;
}

.nirweb_panel_toast_content p {
    color: #24AF53;
    font-size: 14px;
    margin: 0;
}

.nirweb_panel_toast_text {
    display: flex;
    align-items: start;
    justify-content: start;
}

.nirweb_panel_toast_text i {
    margin-right: 15px;
    font-size: 24px;
    color: #24AF53;
    line-height: 1em;
}

.np_toast_success {
    background: #EAFAED;
}

.np_toast_success .nirweb_panel_toast_line {
    background: #24AF53;
}

.np_toast_success .nirweb_panel_toast_text i, .np_toast_success .nirweb_panel_toast_content p, .np_toast_success .nirweb_panel_toast_content strong {
    color: #24AF53;
}

.np_toast_error {
    background: #FCF2F2;
}

.np_toast_error .nirweb_panel_toast_line {
    background: #DA1515;
}

.np_toast_error .nirweb_panel_toast_text i, .np_toast_error .nirweb_panel_toast_content p, .np_toast_error .nirweb_panel_toast_content strong {
    color: #DA1515;
}

.np_toast_warning {
    background: #FFF3E2;
}

.np_toast_warning .nirweb_panel_toast_line {
    background: #FF8D24;
}

.np_toast_warning .nirweb_panel_toast_text i, .np_toast_warning .nirweb_panel_toast_content p, .np_toast_warning .nirweb_panel_toast_content strong {
    color: #FF8D24;
}

.np_toast_notice {
    background: #E2EFF9;
}

.np_toast_notice .nirweb_panel_toast_line {
    background: #0658B4;
}

.np_toast_notice .nirweb_panel_toast_text i, .np_toast_notice .nirweb_panel_toast_content p, .np_toast_notice .nirweb_panel_toast_content strong {
    color: #0658B4;
}

/*************
* login
************/
.nwod_back_login {
    height: 100vh;
    width: 100%;
    /*background-image: url("../images/back-login.jpg");*/
    background-color: #E3F2F9;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center
}

.nwod_back_login * {
    box-sizing: border-box;
}

.nwod_login_box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px -4px #2b2b2b30;
    width: 95%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 90vh;
    overflow: auto;
}

.nwod_login_box h1 {
    font-size: 30px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 35px;
}

.nwod_login_box label {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 7px;
    font-size: 15px;
    width: 100%;
    font-weight: 500;
    max-width: 320px;
    margin-bottom: 15px;
}

.nwod_login_box input {
    border: 2px solid var(--onlinedit-main-color);
    height: 45px;
    border-radius: 8px;
    padding: 5px 10px;
    width: 100%;
}

.nwod_login_box button {
    background: var(--onlinedit-main-color);
    width: 100%;
    font-weight: 500;
    max-width: 320px;
    margin: 25px 0;
    font-size: 18px;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/*************
* panel
************/
.nwod_back_panel {
    height: 100vh;
    width: 100%;
    /*background-image: url("../images/back-login.jpg");*/
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    flex-direction: column;
}

.nwod_back_panel * {
    box-sizing: border-box;
}

.nwod_panel_row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: auto;
}

.nwod_panel_side_menu {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px -4px #2b2b2b30;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 90vh;
    overflow: auto;
}

.nwod_panel_side_content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px -4px #2b2b2b30;
    width: 65%;
    max-height: 90vh;
    overflow: auto;
    font-size: 16px;
}

.nwod_profile_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.nwod_profile_box img {
    width: 100%;
    max-width: 90px;
    border-radius: 200px;
    margin-bottom: 15px;
    display: block;
}

.nwod_profile_box h3 {
    margin: 0;
}

.nwod_panel_menu {

    width: 100%;
}

.nwod_panel_menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.nwod_panel_menu li {
    margin-bottom: 15px;
}

.nwod_panel_menu a {
    text-decoration: none;
    display: block;
    width: 100%;
    background: #EFEFEF;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px;
    color: #3B3A3A;
    font-weight: 500;
    line-height: 1.8em;
}

.nwod_panel_menu a.active {
    background: var(--onlinedit-main-color);
    color: #ffffff;
}

.nwod_dashboard_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 35px;
}

.nwod_dashboard_box_50 {
    width: 45%;
    background: var(--onlinedit-main-color-2);
    padding: 25px;
    border-radius: 8px;
}

.nwod_dashboard_box_50 strong {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
    display: block;
}

.nwod_dashboard_box_50 p {
    margin: 0;
    font-size: 23px;
    font-weight: 800;
    color: var(--onlinedit-main-color);
    text-align: left;
}

.nwod_new_order_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.nwod_new_order_select_box {
    width: max-content;
    min-width: 120px;
    padding: 15px;
    border-radius: 8px;
    background: var(--onlinedit-main-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--onlinedit-main-color);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}
.nwod_new_order_select_box span{
    display: flex;
    align-items: center;
    gap: 7px;
}
.nwod_new_order_select_box svg{
    fill: var(--onlinedit-main-color) !important;

}

.nwod_new_order_page h2 {
    text-align: center;
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 35px;
}

.nwod_new_order_form_page h3 {
    font-size: 21px;
    margin: 0 0 30px 0;
    font-weight: 700;
    color: #000000;
    border-right: solid 4px var(--onlinedit-main-color);
    padding: 5px 15px;
}

.nwod_new_order_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    /*gap: 20px;*/
}

.nwod_new_order_form_back {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    background: #F8F8F8;
    padding-top: 15px;
    border-radius: 6px;
}

.nwod_new_order_form_field_50 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 50%;
    /*margin-bottom: 20px;*/
    padding: 20px 15px;
    gap: 7px;
    flex-wrap: wrap;
    /*border-bottom: solid 1px #777777;*/
}

.nwod_new_order_form_field_100 {
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: start;
    align-items: start;
    width: 100%;
    margin: 15px 0;
    padding: 0 15px;
}

.nwod_new_order_form label {
    width: 100px;
    color: #070707;
    font-size: 16px;
    font-weight: 600;
}

.nwod_new_order_form input[type='text'], .nwod_new_order_form select {
    width: 55%;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    border: solid 1px var(--onlinedit-main-color);
    color: #2b2b2b;
}
.nwod_new_order_form input[type='text']:focus-visible ,.nwod_new_order_form select:focus-visible,.nwod_new_order_form textarea  :focus-visible{
    outline: none;
    border: var(--onlinedit-main-color-3) 1px solid;
}

.nwod_new_order_form input[type="file"] {
    color: #FFFFFF;
    padding: 25px;
    height: auto;
    background: var(--onlinedit-main-color);
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.nwod_new_order_form textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border-radius: 8px;
    border: solid 1px var(--onlinedit-main-color);
}

.nwod_new_order_payment_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 25px;
}

.nwod_new_order_form button {
    background: var(--onlinedit-main-color);
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.nwod_new_order_box_price {
    background: var(--onlinedit-main-color-2);
    color: var(--onlinedit-main-color);
    width: max-content;
    padding: 15px 15px;
    border-radius: 6px;
}

.nwod_new_order_box_price p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nwod_new_order_box_price strong {
    font-size: 21px;
    color: #070707;
}

.nwod_orders_page table {
    width: 100%;
    border-collapse: collapse;
}

.nwod_orders_page th {
    background: var(--onlinedit-main-color);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0;
}

.nwod_orders_page td {
    border-bottom: solid 1px var(--onlinedit-main-color-2);
    color: #000000;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.nwod_orders_page td a {
    background: var(--onlinedit-main-color-2);
    color: var(--onlinedit-main-color);
    text-align: center;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.nwod_view_order_page .box_description {
    background: var(--onlinedit-main-color-2);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 400;
    margin-bottom: 35px;
}

.nwod_view_order_page .box_description button {
    background: #ff9309;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.nwod_back_page {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 21px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 25px;
}

.nwod_back_page a {
    display: block;
}

.nwod_back_page svg {
    fill: var(--onlinedit-main-color) !important;
}

.nwod_box_download h3 {
    text-align: center;
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 15px;
}

.nwod_box_download a {
    background: var(--onlinedit-main-color);
    color: #FFFFFF;
    display: flex;
    width: max-content;
    gap: 10px;
    padding: 12px 35px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    margin: auto;
}
.nwod_box_download a:hover{
    color: #ffffff;
}
.nwod_box_download svg {
    fill: #FFFFFF;
}

.nwod_edit_file_popup_back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b2b2b60;
    backdrop-filter: blur(5px);
    z-index: 80;
    display: none;
}

.nwod_edit_file_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 400px;
    height: 90%;
    max-height: max-content;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 12px;
    background: #FFFFFF;
    z-index: 90;
    display: none;
}

.nwod_edit_file_popup p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8em;
    color: #3a3a3a;
}
.nwod_edit_file_popup button {
    background: var(--onlinedit-main-color);
    color: #FFFFFF;
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 12px 35px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.nwod_edit_file_popup textarea {
    min-height: 100px;
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
    border: solid 1px var(--onlinedit-main-color);
    margin-bottom: 15px;
    padding: 8px;
}

.add_file_btn_nsp {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px !important;
    border: dashed 1.5pt #696969;
    cursor: pointer;
    text-align: center;
    position: relative;
    color: #181818;
    width: 100px;
    height: 100px;
}
.label_main_image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px !important;
    border: dashed 1.5pt #696969;
    cursor: pointer;
    text-align: center;
    position: relative;
    font-size: 16px !important;
}
.row_nirweb_ticket_send .upfile_nirwebtick{
    display: flex;
    gap: 20px;
}

.main_image_nsp{
    display: none;
}

.add_file_btn_nsp svg {
    width: 40px;
}

.add_file_btn_nsp:hover {
    background-color: #f1f1f1;
}

.list_inputs_nsp {
    display: flex;
    flex-wrap: wrap;
}

.list_inputs_nsp label {
    margin-left: 20px;
    margin-bottom: 10px;
}
.remove_file_by_user {
    display: none;
    position: absolute;
    top: -9px;
    left: -8px;
    background: #fff;
}


/*-----------------------------------------------*/
/* ریسپانسیو پنل */

.nwod_back_panel_icon_menu {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
}

.nwod_back_panel_icon_menu svg{
    width: 30px;
    margin: 10px;
    display: none;
}

.nwod_back_panel_icon_menu svg:hover {
    cursor: pointer;
}

.nwod_back_panel_dark_screen {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* برای پشتیبانی بهتر در Safari */
    z-index: 20;
    display: none;
}

.nwod_back_panel_dark_screen.active {
    display: block;
}

.nwod_panel_side_menu svg {
    position: absolute;
    top: 9px;
    left: 9px;
    display: none;
}

@media (max-width: 769px) {

    .nwod_panel_side_content {
        width: 100%;
        padding: 10px;
    }

    .nwod_panel_side_menu.active svg {
        display: block;
    }

    .nwod_panel_row {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
    }

    .nwod_panel_side_menu {
        position: absolute;
        transition: all ease 0.5s;
        right: -1000px;
        top: 0;
        padding: 9px;
        border-radius: 8px 0px 0px 8px;
        width: 70%;
    }

    .nwod_panel_side_menu.active {
        right: 0;
        top: 0;
        transition: all ease 0.5s;
        z-index: 25;
    }

    .nwod_panel_side_menu {
        max-height: 100vh;
        height: 100%;
    }

    .nwod_back_panel_icon_menu svg{
        display: block;
    }

    .nwod_dashboard_box_50 {
        width: 48%;
    }

    /* tabel  */

    .nwod_orders_page {
        overflow-x: auto;
    }
    .nwod_orders_page th {
        white-space: nowrap;
        padding: 10px  10px;
    }
    .nwod_orders_page td {
        white-space: nowrap;
    }

    /* other */

    .nwod_profile_box img {
        width: 100%;
        max-width: 69px;
        border-radius: 200px;
        margin-bottom: 8px;
        display: block;
    }

    .nwod_panel_menu a {
        font-size: 13px;
    }

    .nwod_profile_box {
        margin-bottom: 12px;
    }

    .nwod_dashboard_box_50 {
        padding: 10px;
    }

    .nwod_dashboard_box_50 strong {
        font-size: 13px;
    }

    .nwod_dashboard_box_50 p {
        font-size: 15px;
    }

    .nwod_dashboard_row {
        margin-bottom: 21px;
    }

    /*  ثبت سفارش جدید  */

    .nwod_new_order_form label {
        width: 100% !important;
        max-width: max-content;
        font-size: 13px !important;
    }

    .nwod_new_order_form_field_50 {
        justify-content: center;
        align-items: start;
        flex-direction: column;
    }

    .nwod_new_order_form input[type='text'], .nwod_new_order_form select {
        width: 100%;
    }

    .nwod_new_order_form_field_50 {
        padding: 10px 15px;
    }

    .nwod_new_order_form input[type="file"] {
        padding: 17px;
    }

    .nwod_new_order_form_field_100 {
        padding: 0 15px;
    }

    .nwod_new_order_payment_row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding: 0px 15px;
    }

    .nwod_new_order_payment_row {
        margin-top: 11px;
    }

    .nwod_new_order_box_price {
        margin-bottom: 15px;
        width: 100%;
    }
    .nwod_new_order_form button {
        width: 100%;
    }

    .nwod_new_order_box_price p {
        font-size: 14px;
        display: flex ;
        align-items: center;
        justify-content: center;
    }

    .nwod_new_order_box_price strong {
        font-size: 16px;
    }

    .nwod_new_order_payment_row button{
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /*.nwod_back_page svg {*/
    /*    margin-top: 13px;*/
    /*}*/

    .nwod_back_page {
        margin-bottom: 9px;
    }

    /*  عنواع سفارش  */

    .nwod_new_order_select_box {
        padding: 11px;

        width: 45%;
    }

    .nwod_new_order_select_box svg {
        width: 100%;
        max-width: 23px;
    }

    .nwod_new_order_select_box span {
        font-size: 14px;
    }

}










