@import url(css/datatables.min.css);

.skin_main {
    z-index: 2;
    position: relative;
}

/* .spacer-color {
    width: 100%;
    height: 48px;
    background: #0360D9;
    position: relative;
    z-index: 2;
} */

/* ------------------ Reset Table bootstrap5 ---------------- */
:root {
    --table-th-color: #fff;
    --table-tr-color: #fff;
    --table-tr-td-color: #000;

}

/* ------------ Input Style --------------------- */
/* .item-input input.input-search2,
.dhxcombo_input {
    border: 1px solid#CCD1D9;
    border-radius: 10px;
    height: 45px !important;
    width: 100% !important;
}

div.dhxcombo_material {
    overflow: initial;
    height: 45px;
}

div.dt-container .dt-input {
    border: none;
    padding: 5px 13px;
}

@media (min-width: 768px) {
    div.dt-container .dt-input {
        width: 50%;
    }
}

.item-input {
    display: flex;
    flex-direction: column;
    font-weight: 300;
    font-size: 14px;
    line-height: 32px;
    color: #000;
}

input#btnSearch {
    margin-left: 26px;
    padding: 11px 58px;
    margin-top: 14px;
    border: 1px solid #0360D9;
    border-radius: 10px;
    color: #0360D9;
    font-weight: 700;
    font-size: 14px;
}

div.dhxcombo_material.dhxcombo_actv {
    border-bottom: initial;
}

div.dhxcombo_material input.dhxcombo_input {
    position: static;
    padding: 0 5px;
    color: #000;
}

.datepickerimg input {
    background-image: url("/Portals/1/Images/datepicker.png");
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 10px;
} */

/* ---------------- Table.Datatable ---------------------- */
table.dataTable {
    border-collapse: separate;
    border-spacing: 0px 8px;
    /* table-layout: fixed;  */
}

td {
    /* white-space: nowrap; جلوگیری از خط جدید */
    /*    word-break: keep-all;  جلوگیری از شکستن کلمات */
}

.table thead {
    border-radius: 20px;
    overflow: hidden;
}

.table thead tr>th {
    background-color: var(--blue);
    color: var(--table-th-color);
}

*[dir=rtl] table.dataTable thead th,
*[dir=rtl] table.dataTable thead td,
*[dir=rtl] table.dataTable tfoot th,
*[dir=rtl] table.dataTable tfoot td {
    text-align: center;
}

*[dir=rtl] table.dataTable th.dt-type-numeric,
*[dir=rtl] table.dataTable th.dt-type-date,
*[dir=rtl] table.dataTable td.dt-type-numeric,
*[dir=rtl] table.dataTable td.dt-type-date {
    text-align: center;
}

table thead tr>th:first-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

table thead tr>th:last-child,
th.previousTh {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    border-bottom: none;
}

table.dataTable>tbody>tr {
    background-color: var(--table-tr-color);
}

table.dataTable>thead>tr>th:first-child,
table.dataTable>thead>tr>td:first-child {
    border-bottom: none;
}

table.dataTable>tbody>tr>td,
table.dataTable.display>tbody>tr>td {
    /* border-top: 0; */
    color: var(--table-tr-td-color);
    border-top: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    /* white-space: nowrap;
    word-break: break-word;
    word-wrap: break-word; */
}

table.dataTable>tbody>tr.child>td {
    padding: 0;
}

table.dataTable>tbody>tr>td:first-child {
    border-right: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
table.dataTable>tbody>tr>td.border-left {
    border-left: 1px solid var(--blue);
}
table.dataTable>tbody>tr>td:last-child {
    border-left: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

td.previousTd {
    border-left: 1px solid var(--blue);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

table.dataTable>tbody>tr.child>td:last-child {
    border: 0;
}

table.dataTable>tbody>tr.child ul.dtr-details {
    width: 100%;
    padding: 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li {
    border-bottom: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
}

table.dataTable>tbody>tr.child ul>li:first-child span.dtr-title {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 25px;
}

table.dataTable>tbody>tr.child ul>li:last-child span.dtr-title {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 25px;
}

table.dataTable>tbody>tr.child span.dtr-title {
    background: var(--blue);
    color: #fff;
    padding: 15px 20px;
    width: 24%;
    font-size: 14px;
	white-space:normal;
}

table.dataTable>tbody>tr.child span.dtr-data {
    border-right: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
    padding: 15px 20px;
    width: 75%;
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    white-space: break-spaces;
}

table.dataTable>tbody>tr.child ul>li:first-child span.dtr-data {
    border-top: 1px solid var(--blue);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 25px;
}

table.dataTable>tbody>tr.child ul>li:last-child span.dtr-data {
    border-bottom: 1px solid var(--blue);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 25px;
}

table.dataTable.row-border>tbody>tr:first-child>*,
table.dataTable.display>tbody>tr:first-child>* {
    border-top: 1px solid var(--blue);
}

table.dataTable.row-border>tbody>tr:last-child>*,
table.dataTable.display>tbody>tr:last-child>* {
    border-bottom: 1px solid var(--blue);
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control,
table.dataTable.dtr-column>tbody>tr>th.dtr-control,
table.dataTable.dtr-column>tbody>tr>td.control,
table.dataTable.dtr-column>tbody>tr>th.control {
    text-align: center;
}

table.dataTable.dtr-column>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-column>tbody>tr>th.dtr-control:before,
table.dataTable.dtr-column>tbody>tr>td.control:before,
table.dataTable.dtr-column>tbody>tr>th.control:before,
table.dataTable td.dt-control:before,
table.dataTable tr.dt-hasChild td.dt-control:before {
    border: 0;
    background-image: url('images/datatable/more.png');
    background-repeat: no-repeat;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

table.dataTable.dtr-column>tbody>tr.dtr-expanded td.dtr-control:before,
table.dataTable.dtr-column>tbody>tr.dtr-expanded th.dtr-control:before,
table.dataTable.dtr-column>tbody>tr.dtr-expanded td.control:before,
table.dataTable.dtr-column>tbody>tr.dtr-expanded th.control:before {
    border: 0;
    background-image: url('images/datatable/more.png');
    background-repeat: no-repeat;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* ------ dt-Layout ----- */
.dt-layout-start,
.dt-layout-end {
    width: 50%;
    z-index: 0;
}


.dt-layout-cell.dt-layout-start {
    z-index: 1;
}

.search-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px;
    border: 1px solid #CCD1D9;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 0px #00000040;
	width:100%;
}

.search-box .item-input {
    display: flex;
    flex-direction: column;
    font-weight: 300;
    font-size: 14px;
    line-height: 32px;
    color: #000;
    flex: 1;
    min-width: 200px;
    gap: 5px;
}

.search-box-col3 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px;
    border: 1px solid #CCD1D9;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.search-box-col3 .item-input-col3 {}

.search-box .btn-search424 {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;

}

.search-box .btn-search424 input#btnSearchAdvanced, .search-box .btn-search424 input#btnSearch, .search-box .btn-search424 input#btn-go {
    float: left;
}

@media (max-width: 767px) {

    .dt-layout-start,
    .dt-layout-end {
        width: initial;
    }
}

/* ------ dt-date-update-box ----- */
.data-update {
    font-size: 16px;
    font-weight: 700;
}

/* ------ dt-filter-box ----- */

.dt-search {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 auto 35px auto;
}

div.dt-container .dt-search input.dt-input {
    background:#fff url('images/datatable/dt-search-icon.png');
    /* width: 80%; */
    width: 100%;
    display: inline-block;
    border: 1px solid var(--blue);
    padding: 8px 10px;
    text-align: center;
    /* border-top-right-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
    color: var(--blue);
    font-weight: 300;
    font-size: 14px;
    line-height: 27px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-align: right;
    outline: 0;
    background-repeat: no-repeat;
    background-position: right;
    background-origin: content-box;
    text-indent: 30px;
    overflow: hidden;
    border-radius: 10px;
}

div.dt-container .dt-search label {
    /* width: 20%; */
    /* display: inline-block; */
    /* border: 1px solid var(--blue); */
    /* padding: 8px 0; */
    /* text-align: center; */
    /* border-top-left-radius: 10px; */
    /* border-bottom-left-radius: 10px; */
    /* color: var(--blue); */
    /* font-weight: 700; */
    /* font-size: 14px; */
    /* line-height: 27px; */
}

/* ------ input-style-moradi ----- */
div.dt-container div.dt-layout-row {

    margin: 2.3em 0 0 0;
}

div.dt-container .dt-layout-row.dt-layout-table {
    margin-top: 0;
}

div.dt-container div.dt-layout-end>*:not(:first-child) {
    margin-left: 0;
    margin-right: 1em;
    padding-left: 0;
}

.no-border {
    border: none !important;
}

.dropd {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0px;
    border: 1px solid #CCD1D9;
    color: #000;
    height: 45px;
    width: 100%;
    padding: 0 15px;
}

.dropd4radius {
    border-radius: 10px;
    padding: 0px;
    border: 1px solid #CCD1D9;
    color: #000;
    height: 45px;
    width: 100%;
    padding: 0 15px;
}

.srchtextparent {
    padding: 0 !important;
    width: initial !important;
    margin-right: 0em !important;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
}

.srchtext {
    height: 45px;
    width: 100%;
    border: 1px solid #CCD1D9;
    color: #CCD1D9;
    padding: 0 9px;
}

.srchbtn {
    height: 45px;
    padding: 0px;
    border: 1px solid #0360D9;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #0360D9;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}

.bazgashtbtn {
    display: block;
    background-color: #0360D9;
    color: #fff !important;
    height: 45px;
    padding: 0 38px;
    border-radius: 10px;
    line-height: 45px;
    font-size: 14px;
    font-weight: 700;
}

.advsrch a {
    display: block;
    background: #0360d9;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
}


.advsrch {
    padding: 0 !important;
}

.advsrch img {
    margin-left: 6px;
}

.nemoodar a {
    display: block;
    border: 1px solid #0360d9;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.nemoodar img {
    margin-left: 8px;
}

.srchbtndiv {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
}

.drop-btndiv {
    margin-right: 0em !important;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
}

@media (max-width: 767px) {
    .dropd {
        border-radius: 10px;
    }

    .srchtext {
        border-radius: 10px;
    }

    .srchbtn {
        border-radius: 10px;
    }

    .bazgashtbtn {
        width: 100%;
    }
}

/* ------ search-advanced-input-moradi ----- */
.item-input input.input-search2,
.dhxcombo_input,
.item-input-col3 {
    border: 1px solid#CCD1D9;
    border-radius: 10px;
    height: 45px !important;
    width: 100% !important;
}

div.dhxcombo_material {
    overflow: initial;
    height: 45px;
}

div.dt-container .dt-input {
    border: none;
    padding: 5px 13px;
}

@media (min-width: 768px) {
    div.dt-container .dt-input {
        width: 33.3333%;
    }
}

.item-input {
    display: flex;
    flex-direction: column;
    font-weight: 300;
    font-size: 14px;
    line-height: 32px;
    color: #000;
}



input#btnSearchAdvanced, input#btnSearch, input#btn-go {
    margin-left: 0;
    padding: 11px 61px;
    margin-top: 14px;
    border: 1px solid #0360D9;
    border-radius: 10px;
    color: #0360D9;
    font-weight: 700;
    font-size: 14px;
}

div#example_wrapper .dt-layout-row:nth-child(3) {
    margin: 0;
}

div.dhxcombo_material.dhxcombo_actv {
    border-bottom: initial;
}

div.dhxcombo_material input.dhxcombo_input {
    position: static;
    padding: 0 5px;
    color: #000;
}

.datepickerimg input {
    background-image: url("../../Images/datepicker.png");
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 10px;
}

/* ------ dt-excell-btn-box ----- */
.dt-buttons {
    text-align: left;
}

div.dt-buttons>button.dt-button.buttons-excel.buttons-html5,
.dt-button.buttons-excel.buttons-html5 {
    background: #fff;
    border: 1px solid #00963F;
    border-radius: 10px;
    padding: 0 13px;
    font-weight: 700;
    color: #00963F;
    transition: all .3s ease-out;
    width: 100%;
    height: 45px;
}

div.dt-buttons:hover>button.dt-button.buttons-excel.buttons-html5,
.dt-button.buttons-excel.buttons-html5:hover {
    background: #00963F;
    color: var(--table-th-color);

}

.div.dt-buttons>.dt-button span,
div.dt-buttons>div.dt-button-split .dt-button span,
.dt-button.buttons-excel.buttons-html5 span {
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
}

/* ------ dt-paging-box ----- */
.dt-paging {
    /* direction: ltr;*/
    text-align: left;
    width: 100%;
}

div.dt-container .dt-paging .dt-paging-button {
    margin-left: 0;
    border: 1px solid var(--blue);
    border-radius: 0;
    color: var(--table-tr-td-color) !important;
}

div.dt-container .dt-paging .dt-paging-button.first {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

div.dt-container .dt-paging .dt-paging-button.last {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:hover,
div.dt-container .dt-paging .dt-paging-button.disabled:active {
    color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--blue);
    background: transparent;
    box-shadow: none;
   /* border-radius: 0 10px 10px 0;*/
}

.dt-paging.paging_simple_numbers button.dt-paging-button.next {
    border-radius: 10px 0 0 10px;
}

.dt-paging.paging_simple_numbers button.dt-paging-button.previous {
    border-radius: 0 10px 10px 0;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover,
div.dt-container .dt-paging .dt-paging-button:hover {
    color: var(--table-th-color) !important;
    border: 1px solid var(--blue);
    background: var(--blue);
    box-shadow: none;
}
/* ------------------------------------------------------------
----------- lengthMenu - box ---------------------------- */



.dt-length label {
    width: 100%;
}

.dt-length {
    width: 26%;
}
div.dt-container select.dt-input#dt-length-0 {
    border: 1px solid var(--blue);
    border-radius: 10px;
    width: 23%;
    padding: 5px 6px;
    margin: 0 11px;
}






/* ------------------------------------------------------------
----------- Description - box ---------------------------- */
.dt-desc-box {
    background: #E8F5E9;
    border: 1px solid #98CE9C;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    direction: rtl;
}

.inner-dt-desc {
    padding: 20px;
}

.inner-dt-desc ul li {
    list-style-image: url('../../shafaf.content/icon/bullet-ico.png');
    line-height: 24px;
    padding-bottom: 5px;
}

.inner-dt-desc h2 {
    color: #263238;
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

.inner-dt-desc ul {
    direction: rtl;
}

.inner-dt-desc ul li,
.inner-dt-desc p {
    color: #677F88;
    text-align: right;
    line-height: 24px;
    font-size: 14px;
    font-weight: 300;
}

/* ------------------ Content - Box -------------------- */
.content-box {
    border-top: 4px solid var(--blue);
    border-radius: 10px;
    padding: 40px 10px;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #E4E7EA;
}

.content-box.center-align {
    text-align: center;
}

.content-box.center-align p {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 30px;
}

.content-box.center-align a {
    direction: rtl;
    display: inline-block;
    border: 1px solid var(--blue);
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 20px;
}

.content-box.center-align a img {
    padding-left: 8px;
}

.color-link {
    color: #677F88 !important;
    font-weight: bold;
    font-size: 12px;
    text-decoration: underline !important;
}

/* ------------------- صفحه قراردادهای هزینه‌ای شهرداری تهران ---------------- */
a.sub-link.accordion-toggle.collapsed {
    display: block;
    margin-bottom: 10px;
}

a.sub-link.accordion-toggle.collapsed:before,
a.sub-link.accordion-toggle:before {
    background: #e4dada;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 25px;
    margin-left: 8px;
}

a.sub-link.accordion-toggle.collapsed:before {
    content: "+";
}

a.sub-link.accordion-toggle:before {
    content: "-";

}

.collapse,
.collapse.show,
.collapsing {
    margin-right: 42px;
}

/* ------------------- Link box ---------------- */
.link-box {
    width: 100%;
    max-width: 992px;
    margin: 0 auto;
}

.link-box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* gap: 15px; */
    /* display: block; */
    flex-direction: row-reverse;
}

.link-box.link-col-3 ul li {
    width: 25%;
    text-align: center;
    padding: 15px;
}

.link-box.link-col-4 ul li {
    width: 33.3333%;
    text-align: center;
    padding: 15px;
}

.link-box.link-col-6 ul li {
    width: 50%;
    text-align: center;
    padding: 15px;
}

.link-box.link-col-12 ul li {
    width: 100%;
    text-align: center;
    padding: 15px;
}

.link-box.link-col-12.text-right ul li {

    text-align: right;

}

span.img-icons-site {
    background: url('../../shafaf.content/icon/icon-img.png');
    display: inline-block;
    width: 20px;
    height: 20px;
    /* position: absolute; */
    /* right: 0; */
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
    padding: 22px;
}

span.excel-icons-site,
span.pdf-icons-site {
    padding: 22px;
}

span.excel-ico,
span.excel-icons-site {
    background: url('../../shafaf.content/icon/excel-ico.png');
    display: inline-block;
    width: 20px;
    height: 20px;
    /* position: absolute; */
    /* right: 0; */
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
}

span.pdf-ico,
span.pdf-icons-site {
    background: url('../../shafaf.content/icon/pdf-ico.png');
    display: inline-block;
    width: 26px;
    height: 28px;
    /* position: absolute; */
    /* right: 0; */
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
}

span.login-ico {
    background: url('../../shafaf.content/icon/login-ico.png');
    display: inline-block;
    width: 20px;
    height: 20px;
    /* position: absolute; */
    /* right: 0; */
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
}

.link-box ul li>a {
    display: inline-block;
    border: 1px solid #CCD1D9;
    font-size: 14px;
    padding: 1em 4em;
    font-weight: 700;
    border-radius: 10px;
    position: relative;
    direction: rtl;
    width: 100%;
}

.link-box ul li>a:hover {
    border: 1px solid var(--blue);

}

.login-link-box {
    text-align: center;
}

.login-link-box p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.login-link-box a {
    display: inline-block;
    border: 1px solid var(--blue);
    font-size: 14px;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 20px;
    color: var(--blue);
    direction: rtl;
}

.login-link-box a:hover {
    color: #000;
}


@media (max-width: 992px) {
    .link-box.link-col-3 ul li {
        width: 50%;
    }

    .tab-content .year-list-box ul.year-list>li,
    .tab-content .item-list-box ul.item-list>li {
        width: 50%;
    }

    div.dt-container div.dt-layout-end>*:not(:first-child) {
        margin-right: 0;
        padding-right: 3px;
    }

    .dt-button.buttons-excel.buttons-html5 {
        padding: 0
    }

    .dt-button.buttons-excel.buttons-html5 span {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .link-box.link-col-6 ul li {
        width: 100% !important;
    }

    .link-box.link-col-3 ul li {
        width: 100% !important;
    }

    .link-box.link-col-4 ul li {
        width: 100%;
    }

    .link-box.link-col-12 ul li {
        width: 100%;
    }

    .tab-content .year-list-box ul.year-list>li,
    .tab-content .item-list-box ul.item-list>li {
        width: 100%;
    }

    .tab-content .year-list-box ul.year-list,
    .tab-content .item-list-box ul.item-list {
        padding: 0
    }

    ul#nav-tab {
        margin: 0;
    }

    #nav-tab.nav.nav-tabs li.active {
        background: var(--blue);
        color: #fff;
        border-radius: 0;
    }

    ul.nav.nav-tabs li {
        border: 1px solid #ccc;
        border-radius: 0;
        font-size: 14px;
        width: 100%;

    }

    #newSection .year-list-box ul.year-list li,
    #newSection .item-list-box ul.item-list li {
        width: 100%;
        padding: 15px 0;
    }
	
	
	.search-box .btn-search424 input#btnSearchAdvanced, .search-box .btn-search424 input#btnSearch, .search-box .btn-search424 input#btn-go{width:100%}
	.btn-search424 .btn-shafaf4.bazgashtbtn{    margin-left: 0;}
}

/* ------------ Drop-Down-content-box ------------------- */
#dropdownMenuButton {
    font-weight: 500;
    background: transparent;
    color: #000;
    text-align: right;
    border: 1px solid #CCD1D9;
    height: 45px;
    vertical-align: middle;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 10px;
}

#dropdownMenuButton:hover {
    background-color: var(--blue) !important;
    color: #fff;
}

.dropdown-toggle::after {
    border-top: 0.4em solid;
    border-left: 0.4em solid transparent;
    border-bottom: 0;
    border-right: 0.4em solid transparent;
    position: absolute;
    left: 20px;
    top: 20px;
}

#dropdownMenuButton:hover .dropdown-toggle::after {
    border-color: #fff;
}

.dropdown-menu {
    width: 100%;
    text-align: right;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu li a.dropdown-item {
    padding: 15px 40px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #CCD1D9;
}

.dropdown-menu li a.dropdown-item:hover {
    background-color: var(--blue);
    color: #fff;
}

.dropdown-menu li:last-child a.dropdown-item {
    border-bottom: 0;
}

.dp-content-box {
    display: none;
    /* مخفی کردن محتوا به صورت پیش‌فرض */
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #CCD1D9;
    border-radius: 5px;
    background-color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dp-content-box.show {
    display: block;
    /* نمایش محتوا */
    opacity: 1;
    transform: translateY(0);
}

.dp-content-box.hide {
    opacity: 0;
    transform: translateY(-10px);
}

/* ================ Drop-Down - Tabs صورت های مالی   ----================= 
===========================صفحه مناطق و سازمان ها==========================
*/
select#CategoryDropdown {
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 0px 10px;
    height: 45px;
    border-radius: 10px;
    border-color: #CCD1D9;
    appearance: auto;
    direction: rtl;
}

div#newSection {
    margin-top: 3em !important;
}

.container.mt-4 {
    margin-top: 9rem !important;
}

.year-list-box ul.year-list,
.item-list-box ul.item-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: row-reverse;
    padding: 15px 40px;
    margin: 0;
}

.year-list-box ul.year-list li,
.item-list-box ul.item-list li {
    width: 25%;
    text-align: center;
    padding: 15px;
}

.year-list-box ul.year-list li>a,
.item-list-box ul.item-list li>a {
    display: flex;
    border: 1px solid #CCD1D9;
    font-size: 14px;
    padding: 0;
    font-weight: 700;
    border-radius: 10px;
    position: relative;
    direction: rtl;
    width: 100%;
    align-items: center;
    color: #000;
    font-family: 'IRANSansWeb';
    font-weight: 700;
}

.year-list-box ul.year-list li span.pdf-ico-white,
.item-list-box ul.item-list li span.list-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
    padding: 22px;
    border-radius: 0 10px 10px 0;
}

.year-list-box ul.year-list li span.pdf-ico-white {
    background-image: url(../../shafaf.content/icon/pdf-icon-white.png);
    background-color: var(--blue);
}


ul.nav.nav-tabs {
    direction: rtl;
    margin-bottom: 0 !important;
}

.nav-tabs .nav-link {
    color: #000;
    font-family: 'IRANSansWeb';
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    padding: 1em;
}

ul.nav.nav-tabs li.active {
    border-top: 3px solid var(--blue);
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid transparent;
    background: #fff;
    margin-bottom: -1px;
    border-radius: 10px 10px 0 0;
}

div#nav-tabContent {
    width: 100%;
    margin: 0 auto;
    padding: 2em 2em;
    display: block;
    margin-top: -1px;
    border: 1px solid #CCD1D9;
    background: #fff !important;
    min-height: 250px;
    border-radius: 10px 0 10px 10px;
}

@media (max-width: 1200px) {

    div.dt-container div.dt-layout-end>*:not(:first-child) {
        margin-right: 0
    }

    .dt-button.buttons-excel.buttons-html5 span {
        font-size: 13px;
    }
}

/* =========== Tabs ================ */
@media (max-width: 768px) {
    .livetabsshafaf-tab1 .ui-tabs .ui-tabs-panel {
        padding: 1em 0em;
    }

}

@media (max-width: 768px) {
    .link-box ul {
        margin: 0;
        padding: 0 10px;
    }

    .link-box.link-col-6 ul li,
    .link-box.link-col-12 ul li {
        padding: 5px 10px;
        text-align: right;
    }

    .link-box ul li>a {

        padding: 1em 2em;

    }

    .livetabsshafaf-tab1 .ui-tabs .ui-tabs-panel {
        padding: 2em 1em;

    }

    table.dataTable>tbody>tr.child span.dtr-title {
        padding: 15px 10px;
        width: 35%;
        font-size: 13px;
        white-space: normal;
        line-height: 28px;
    }

    table.dataTable > tbody > tr.child span.dtr-data {
        width: 64%;
    }
}

/* ================ PopUp-Table ==================== */


table.popup-table {
    direction: rtl;
    width: 100%;
}

table.popup-table tr>td:last-child {
    border: 0;
}

table.popup-table tr ul.dtr-details {
    width: 100%;
    padding: 0;
}

table.popup-table tr ul.dtr-details>li {
    border-bottom: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
}

table.popup-table tr ul>li:first-child span.dtr-title {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 25px;
}

table.popup-table tr ul>li:last-child span.dtr-title {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 25px;
}

table.popup-table tr span.dtr-title {
    background: var(--blue);
    color: #fff;
    padding: 15px 20px;
    width: 24%;
    font-size: 14px;
}

table.popup-table tr span.dtr-data {
    border-right: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
    padding: 15px 20px;
    width: 75%;
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    white-space: break-spaces;
}

table.popup-table tr ul>li:first-child span.dtr-data {
    border-top: 1px solid var(--blue);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 25px;
}

table.popup-table tr ul>li:last-child span.dtr-data {
    border-bottom: 1px solid var(--blue);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 25px;
}